@charset "utf-8";
/* ===========================================================
 *
 * ACEWEB スタイルシート
 * Last UpDate : 2025/02/28
 *
=========================================================== */

/* ----------------------------------------------------------
	style.css
---------------------------------------------------------- */

/* noto-sans-jp-regular - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url('noto-sans-jp-v53-japanese-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-700 - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url('noto-sans-jp-v53-japanese-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-900 - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 900;
  src: url('noto-sans-jp-v53-japanese-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* readex-pro-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Readex Pro';
  font-style: normal;
  font-weight: 400;
  src: url('readex-pro-v21-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* readex-pro-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Readex Pro';
  font-style: normal;
  font-weight: 700;
  src: url('readex-pro-v21-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ----------------------------------------------------------
 common
---------------------------------------------------------- */

html{ font-size: 62.5%; }
body {
	color: #333;
	background-color: #f5f5f5;
	font-family: 'Noto Sans JP',"Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 1px;
	font-feature-settings: "palt";
	font-size: 16px;
	font-size: 1.6rem;
}
/*
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .h2Wrap{ line-height: 1.7 !important; }

}
*/

.mb0{ margin-bottom: 0 !important; }

a.anker{ display: block; padding-top: 100px; margin-top: -100px; }

:root{
	--main-color: #b23952;
	--second-color: #3b3b3b;
}

strong{ font-weight: bold !important; }

/* ----------------------------------------------------------
 link
---------------------------------------------------------- */
a:link		{ color: #333; text-decoration: none; }
a:visited	{ color: #333; text-decoration: none; }
a:hover		{ color: var(--main-color); text-decoration: none; }
a:active	{ color: var(--main-color); text-decoration: none; }

a { -ms-filter: "alpha( opacity=60 )"; -webkit-transition: 0.5s ease-in-out; -moz-transition: 0.5s ease-in-out; -o-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out; }

/* ----------------------------------------------------------
 header
---------------------------------------------------------- */
header{ position: relative; width: 100%; z-index: 100; }

.header_wrap{ background-color: #f5f5f5; height: 80px; display: flex; justify-content: space-between; align-items: center; }
.header_wrap .header_logo img{ width: 180px; height: 38px; }
.header_wrap .gnavi_item > a{ /* padding: 20px 0; */ }
/*
.header_wrap .gnavi_list li.has-child:before{ top: 27px; }
*/

.header_logo{ flex-basis: 10%; margin-left: 30px; transition: .2s ease-in-out; }
.header_logo:hover{ transform: translate(0, 5px); }

.header_sec{ }

.gnavi{ flex-basis: 49%; margin-left: auto; margin-right: 0; max-width: 700px; }
.gnavi_list{ display: flex; align-items: center; }
.gnavi_item{ flex: 1 0 auto; text-align: center; }
.gnavi_item > a{ display: block; font-size: 1.7rem; letter-spacing: 2px; height: 80px; line-height: 80px; font-family: 'Readex Pro', 'Noto Sans JP', sans-serif; font-weight: 500; font-style: normal; position: relative; transition: .3s; }
.header_wrap .gnavi_item > a{ color: #333; }
.gnavi_item > a:hover{  }
.gnavi_item > a:after{
	position: absolute;
	bottom: 18px;
	left: 0;
	right: 0;
	content: '';
	width: 90%;
	height: 2px;
	background: var(--main-color);
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
	margin: 0 auto;
}
.gnavi_item > a:hover:after{ transform-origin: left top; transform: scale(1, 1); }


.has-child{ position: relative; }

.gnavi_list li.has-child:before{ content:''; position: absolute; right: 5px; top: 35px; width: 6px; height: 6px; border-top: 2px solid #999; border-right:2px solid #999; transform: rotate(135deg); }

.gnavi_list li.has-child ul{ position: absolute; left: -35%; top: 80px; z-index: 4; background: #f5f5f5; width: 170%; visibility: hidden; opacity: 0; transition: all .3s; }

.gnavi_list li.has-child:hover > ul,
.gnavi_list li.has-child ul li:hover > ul,
.gnavi_list li.has-child:active > ul,
.gnavi_list li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

.gnavi_list li.has-child ul li a{ display: block; border-top: 1px solid #ddd; font-size: 1.6rem; color: #333; letter-spacing: 2px; padding: 20px 0; }

.gnavi_list li.has-child ul li a:hover,
.gnavi_list li.has-child ul li a:active{ background: #f8e9ec; }


/* バーガーメニュー */
.toggle {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: block;
	position: fixed;
	top: 0px;
	right: 0px;
	z-index: 101;
	margin: 0;
	padding: 0;
	width: 50px;
	height: 50px;
	border: none;
	background-color: #fff;
	transition: background-color 0.2s ease;
	cursor: pointer;
	border-radius: 0;
	border: 2px solid var(--main-color);
}
.toggle > span, .toggle:before, .toggle:after {
	display: block;
	position: absolute;
	top: 40%;
	right: 10px;
	width: 25px;
	height: 2px;
	margin: -2px 0 0 -15px;
}
.toggle > span {
	background-color: var(--main-color);
	transition: opacity 0.3s ease;
	will-change: opacity;
}
.toggle::before, .toggle::after {
	content: "";
	background-color: var(--main-color);
	transition: background-color 0.3s ease;
}
.toggle::before{ transform: translateY(-8px); }
.toggle::after{ transform: translateY(8px); }

.toggle p{ position: absolute; bottom: 5px; right: 0; left: 0; margin: 0 auto; color: var(--main-color); font-size: 1rem; letter-spacing: 1px; font-family: 'Readex Pro', sans-serif; font-weight: 400; font-style: normal; }

.toggle[aria-expanded=true] > span {
	opacity: 0;
}
.toggle[aria-expanded=true]::before, .toggle[aria-expanded=true]::after {
	background-color: white;
}
.toggle[aria-expanded=true]::before {
	-webkit-animation: 0.3s ease closeBar1 forwards;
	animation: 0.3s ease closeBar1 forwards;
}
.toggle[aria-expanded=true]::after {
	-webkit-animation: 0.3s ease closeBar2 forwards;
	animation: 0.3s ease closeBar2 forwards;
}
.toggle.-close::before {
	-webkit-animation: 0.3s ease closeBar1Rev forwards;
	animation: 0.3s ease closeBar1Rev forwards;
}
.toggle.-close::after {
	-webkit-animation: 0.3s ease closeBar2Rev forwards;
	animation: 0.3s ease closeBar2Rev forwards;
}

.toggle:hover{ background-color: #fff; color: var(--main-color); }
.toggle:hover p{ color: var(--main-color); }
.toggle:hover > span{ background-color: var(--main-color); }
.toggle:hover::before, .toggle:hover::after{ background-color: var(--main-color); }

.nav {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: rgba(178,57,82,.8);
	color: black;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav[aria-hidden=true] {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}
.nav[aria-hidden=false] {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.menu li {
	font-weight: bold;
	font-size: 1.8rem;
	line-height: calc(1em + 0.5rem);
	margin-bottom: 20px;
	color: #fff;
}
.menu li ul{ margin-left: 30px; margin-top: 10px; }

.menu li a { color: #fff; font-size: 2.5rem; }
.menu li a:hover{ opacity: .6; }
.menu li + li {
	margin-top: rem;
}
.menu li ul li ul{ display: flex; flex-wrap: wrap; margin-top: 20px; }
.menu li ul li ul li{ flex-basis: 48%; margin-right: 2%; list-style-type: disc; margin-bottom: 10px; }
.menu li ul li ul li a{ font-size: 1.4rem; }

@-webkit-keyframes closeBar1 {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(45deg);
  }
}

@keyframes closeBar1 {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(45deg);
  }
}
@-webkit-keyframes closeBar2 {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(-45deg);
  }
}
@keyframes closeBar2 {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(-45deg);
  }
}
@-webkit-keyframes closeBar1Rev {
  0% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes closeBar1Rev {
  0% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes closeBar2Rev {
  0% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes closeBar2Rev {
  0% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(10px);
  }
}

.header_tel{ flex-basis: 310px; margin: 0 180px 0 20px; display: flex; flex-wrap: wrap; align-items: center; }
.header_tel_ico{ width: 48px; height: 48px; background-color: var(--main-color); border-radius: 100%; text-align: center; margin-right: 10px; }
.header_tel_ico i{ font-size: 3rem; color: #fff; line-height: 48px; }
.header_tel_num{ flex-basis: 80%; font-size: 3rem; font-family: "Arial", Gadget, "sans-serif"; font-weight: 700; font-style: normal; line-height: 1; }
.header_tel_time{ font-size: 1.2rem; color: #444; font-weight: 400; margin-top: 5px; padding-left: 20px; }


.header_contact{ position: absolute; top: 0; right: 0; z-index: 999; }
.header_contact a{ display: flex; justify-content: center; align-items: center; width: 180px; height: 80px; background-color: var(--main-color); transition: background-color 0.2s ease; border: 3px solid var(--main-color); color: #fff; }
.header_contact a i{ display: block; font-size: 4rem; margin-right: 10px; }
.header_contact a span{ display: block; font-size: 1.6rem; line-height: 1.2; font-weight: 700; }
.header_contact a:hover{ background-color: #fff; color: var(--main-color); }

/* ----------------------------------------------------------
 footer
---------------------------------------------------------- */
footer{ background-color: #fff; padding-top: 100px; padding-bottom: 60px; }
.footer_sec{ width: 1100px; margin: 0 auto; }
.footer_sec_list{ display: flex; justify-content: space-between; align-items: center; }
.footer_sec_item{}
.footer_sec_item:nth-child(1){ flex-basis: 40%;  }
.footer_sec_item:nth-child(2){ flex-basis: 55%; display: flex; justify-content: space-between; border-left: 1px solid #ccc; padding-left: 5%; margin-left: 5%; }
.footer_logo{ margin-bottom: 10px; }
.footer_logo img{ width: 50%; height: auto; }
.footer_tit{ font-size: 1.8rem; margin-bottom: 20px; }
.footer_add{ font-size: 1.5rem; margin-bottom: 5px; }
.footer_telfax{ font-size: 1.5rem; letter-spacing: 2px; }
.footer_telfax span{}


.footer_sitemap{ width: 100%; }
.footer_sitemap_list{ display: flex; justify-content: space-between; }
.footer_sitemap_item{}
.footer_sitemap_item:nth-child(1){ flex-basis: 45%; }
.footer_sitemap_item:nth-child(2){ flex-basis: 45%; }
.footer_sitemap_list01{}
.footer_sitemap_item01{ position: relative; padding-left: 20px; font-size: 1.6rem; font-weight: 700; margin-bottom: 10px; }
.footer_sitemap_item01:before{ position: absolute; top: 8px; left: 0; display: block; content: ""; width: 10px; height: 10px; background-color: var(--main-color); border-radius: 100%;  }
.footer_sitemap_list02{ margin-left: 30px; margin-bottom: 10px; margin-top: 10px; }
.footer_sitemap_item02{ position: relative; font-size: 1.2rem; font-weight: normal; padding-left: 15px; margin-bottom: 5px; }
.footer_sitemap_item02:before{ position: absolute; top: 9px; left: 0; display: block; content: ""; width: 5px; height: 1px; background-color: #666; }

.footer_copyright{ font-size: 1rem; color: #999; margin-top: 80px; }

/* ----------------------------------------------------------
 hx
---------------------------------------------------------- */
.h1_wrap{ padding: 40px 0; position: relative; margin-bottom: 80px; background-color: #fff; }
.h1_tit{ width: 90%; margin: 0 auto; text-align: center; }
.h1_tit01{ font-size: 3rem; color: var(--main-color); font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal;  margin-bottom: 10px; letter-spacing: 1px; text-transform: uppercase; }
.h1_tit02{ font-size: 4.5rem; line-height: 1; margin-bottom: 40px; font-family: dnp-shuei-gothic-kin-std, sans-serif; font-weight: 600; font-style: normal; letter-spacing: 2px; }

h2{ position: relative; transition: .3s; font-size: 4rem; margin-bottom: 20px; font-weight: 900;  padding: 10px 10px 10px 20px; border-radius: 10px; background-color: #fff; }
h2:after{ position: absolute; left: 0; top: 0; content: ""; background-color: #fff;  }

h2.ani{
transition: 1s all;
opacity: 0;
position: relative;
top: 100px;
}

h2.ani.move{
opacity: 1;
top: 0;
}


h3{ font-size: 3.5rem; color: var(--main-color); padding: 15px 0; border-top: 2px solid #ccc; border-bottom: 2px solid #ccc; margin-bottom: 30px; }

h4{ position: relative; font-size: 2.5rem; padding-bottom: 10px; border-bottom: 3px solid #333; font-family: zen-kaku-gothic-antique, sans-serif; font-weight: 900; font-style: normal; margin-bottom: 30px; }
h4:before{ position: absolute; bottom: -3px; left: 0; width: 30%; height: 3px; content: ""; background: #b23952; }

/* ぱんくず */
.breadcrumbs{ position: relative; z-index: 1; margin-top: 10px; }  
.breadcrumbs > span{ display: inline-block; position: relative; margin: 0 0 0 20px; line-height: 1.2; color: #333; font-size: 1.4rem; }
.breadcrumbs > span:before{ content: "/"; display: block; position: absolute; top: 0; left: -12px; color: #333; font-size: 1.4rem; }
.breadcrumbs > span:first-child:before{ content: ""; }
.breadcrumbs > span a{ color: #333; font-size: 1.4rem; }
.breadcrumbs > span:first-child{ margin: 0 0 0 0; }
.breadcrumbs > span a:hover{ opacity: 0.6; }
/* ----------------------------------------------------------
 contents
---------------------------------------------------------- */

.main{  }


.top_img{ width: 100%; position: absolute; top: 70px; right: 0; height: 80vh; background: url("/wp-content/uploads/top_img01.jpg") no-repeat; background-size: cover; margin: 0; border-radius: 0; }
.top_img:before{ content: ""; display: block; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.2); border-radius: 0 0 0 80px; }

.top_tit{ position: absolute; bottom: 0; right: 0; color: #f5f5f5; font-size: 12rem; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; line-height: .75; text-align: right; }


.splide__slide img{ width: 100%; height: auto; }

/*
    .slide-media,
    .thumb-media {
      position: relative;
      overflow: hidden;
    }

    .slide-media img,
    .thumb-media img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    .splide {
      z-index: 0;
    }


    .splide__arrow--prev,
    .splide__arrow--next {
      display: grid;
      place-content: center;
      width: 6.4rem;
      height: 6.4rem;
      cursor: pointer;
      transition: var(--transition);
      background-color: var(--color-theme-darken);
      border-radius: 50%;
    }

    .splide__arrow--prev::after,
    .splide__arrow--next::after {
      width: 1.2rem;
      height: 1.2rem;
      content: "";
      border: solid var(--color-gray);
      border-width: 3px 3px 0 0;
    }

    .splide__arrow--prev::after {
      margin-left: 0.4rem;
      transform: rotate(-135deg);
    }

    .splide__arrow--next::after {
      margin-right: 0.4rem;
      transform: rotate(45deg);
    }

    .splide__arrow:disabled {
      pointer-events: none;
      opacity: 0;
    }

    .splide__arrow:focus-visible {
      outline: 3px solid rgba(180, 233, 0, 0.8);
      outline-offset: 3px;
      z-index: 1;
      transition: none;
    }

    .splide__pagination {
      font-size: 0;
    }

    .splide__pagination__page:focus-visible {
      outline: 3px solid rgba(180, 233, 0, 0.8);
      outline-offset: 3px;
      z-index: 1;
      transition: none;
    }

    .splide__slide:focus-visible {
      outline: 3px solid rgba(180, 233, 0, 0.8);
      outline-offset: 3px;
      z-index: 1;
      transition: none;
    }

    .splide-wrapper {
      position: relative;
    }

    .splide__arrow>svg {
      display: none;
    }

    .mv02 {
    }

    .mv02 .l-inner {
      padding-bottom: 0;
    }
.mv02 .splide__pagination {display: none;}

    .mv02 .splide__pagination {
      position: absolute;
      z-index: 1;
      top: 0;
      bottom: 0;
      left: 0;
      height: max-content;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .mv02 .splide__pagination__page {
      display: block;
      width: 1.6rem;
      height: 2px;
      cursor: pointer;
      transition: var(--transition);
      background-color: #fff;
    }

    .mv02 .splide__pagination>li:not(:first-child) {
      margin-top: 1.6rem;
    }

    .mv02 .splide__pagination__page.is-active {
      width: 4rem;
      background-color: var(--color-theme);
    }

    .mv02 .splide__track--fade .splide__slide {
      pointer-events: none;
    }

    .mv02 .splide__track--fade .splide__slide.is-active {
      pointer-events: auto;
    }

    .mv02 .slide {
      display: grid;
      place-content: center;
      min-height: 600px;
      padding: 0 8rem;
      text-align: center;
    }

    .mv02 .slide-media {
      position: absolute;
      z-index: -1;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
/*
    .mv02 .slide-media img {
      transition: 7s 1s linear;
      transform: translateX(-1.5%) scale(1.1);
    }

    .mv02 .slide-title,
    .mv02 .slide-text,
    .mv02 .slide-link {
      animation: 2s var(--easing) both;
      opacity: 0;
    }

    .mv02 .slide-title {
      font-size: 6rem;
      line-height: 1.1;
      color: var(--color-theme);
    }

    .mv02 .slide-text {
      font-size: 1.8rem;
      margin: 4rem 0;
      animation-delay: 0.2s;
      color: #fff;
    }

    .mv02 .slide-link {
      animation-delay: 0.4s;
    }

    .mv02 .slide-button {
      font-size: 1.2rem;
      font-weight: bold;
      display: inline-block;
      color: var(--color-theme);
    }

    .mv02 .slide-button::before {
      display: inline-block;
      width: 6rem;
      height: 1px;
      margin: -2px 1.6rem 0 0;
      content: "";
      vertical-align: middle;
      background-color: currentColor;
    }
/*
    .mv02 .splide__slide[class*=-active] .slide-media img {
      transition-delay: 0s;
      transform: translateX(1.5%) scale(1.05);
    }

    .mv02 .splide__slide.anm-started .slide-title,
    .mv02 .splide__slide.anm-started .slide-text,
    .mv02 .splide__slide.anm-started .slide-link {
      animation-name: mv02-fadeIn;
    }

    .mv02 .splide__slide.anm-finished .slide-title,
    .mv02 .splide__slide.anm-finished .slide-text,
    .mv02 .splide__slide.anm-finished .slide-link {
      animation-name: mv02-fadeOut;
    }

    @keyframes mv02-fadeIn {
      0% {
        transform: translateY(6rem);
        opacity: 0;
      }

      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes mv02-fadeOut {
      0% {
        transform: translateY(0);
        opacity: 1;
      }

      100% {
        transform: translateY(-6rem);
        opacity: 0;
      }
    }

*/

.top_sec{ width: 100%; background-color: #fff; }

.top_news{ margin: 0 0 30px 0; }
.top_news_sec{ width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; padding: 20px 60px 20px 0; }
.top_news_tit{ flex-basis: 35%; }
.top_news_list{ flex-basis: 60%; }
.top_news_item{ display: flex; justify-content: space-between; align-items: center; padding-bottom: 15px; border-bottom: 1px solid #ccc; margin-bottom: 15px; }
.top_news_date01{ flex-basis: 13%; font-size: 1.5rem; color: #999; text-align: center; font-family: 'Readex Pro', sans-serif; font-weight: 400; font-style: normal; background-color: #fff; border-radius: 30px; padding: 2px 5px; }
.top_news_tit02{ flex-basis: 65%; font-size: 1.6rem; font-weight: 700; }
.top_news_tit02 a:hover{ opacity: .6; }

.top_news_tit01{ font-size: 5rem; color: #ccc; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; text-align: right; margin-bottom: 10px; }
.top_news_tit01:first-letter{ color: var(--main-color); }
.top_news_tit01 span{ display: block; color: #333; font-size: 2rem; font-family: dnp-shuei-gothic-kin-std, sans-serif; font-weight: 600; font-style: normal; }

.top_news_btn01{ width: 150px; margin: 0 0 0 auto; }
.top_news_btn01 a{ display: block; color: #fff; font-size: 1.5rem; background-color: var(--main-color); border: 2px solid var(--main-color);  padding: 5px; text-align: center; border-radius: 5px; }
.top_news_btn01 a:hover{ background-color: #fff; color: var(--main-color); }

.top_news_btn{ width: 140px; margin: 0 0 0 auto; }
.top_news_btn a{ display: block; font-size: 1.5rem; color: #fff; border: 2px solid #425a9f; background-color: #425a9f; text-align: center; padding: 5px; }
.top_news_btn a:hover{ background: #fff; color: #425a9f; }

.top_news .top_news_cat01{ flex-basis: 13%; }
.top_news_cat01 .term_list{ display: flex; justify-content: flex-start !important; margin-bottom: 0; }
.top_column_item .term_list{ display: flex; justify-content: flex-start !important; margin-bottom: 10px; }
.column_item .term_list{ display: flex; justify-content: flex-start !important; margin-bottom: 10px; }
.top_news_cat01 .term_item{ flex-basis: auto !important; }
.top_news_cat01 .term_item a{ display: inline-block; font-size: 1.2rem; color: #fff; background-color: var(--main-color); padding: 3px 15px; border-radius: 40px; border: 1px solid var(--main-color); }
.top_news_cat01 .term_item a:hover{ background-color: #fff; color: var(--main-color); }

.news_item{ display: flex; justify-content: flex-start; flex-wrap: wrap; align-items: center; }
.top_news_cat01{ flex-basis: 8%; }
.news_date{ flex-basis: 7%; }
.news_tit{ flex-basis: 100%; margin-top: 5px; }


.top_works{ margin: 0 auro 100px auto; background-color: #f5f5f5; }
.top_works_tit{ margin-bottom: 50px; text-align: center; }
.top_works_tit01{ font-size: 5rem; color: #ccc; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; margin-right: 30px; text-align: center; }
.top_works_tit01:first-letter{ color: var(--main-color); }
.top_works_tit01 span{ display: block; color: #333; font-size: 2rem; font-family: dnp-shuei-gothic-kin-std, sans-serif; font-weight: 600; font-style: normal; }

.top_works_tit_btn{ width: 260px; margin: 0 auto 60px auto; }
.top_works_tit_btn a{ display: block; color: #fff; background-color: #333; font-size: 1.8rem; font-weight: 900; padding: 10px 30px 10px 20px; border-radius: 5px; text-align: center; border: 2px solid #333; }
.top_works_tit_btn a:hover{ background-color: #fff; color: #333; }


.top_voice{ padding: 40px 0; }
.top_voice .top_works_tit01{ text-align: left; width: 1300px; margin: 0 auto; }
.top_voice .top_works_tit01 span{ display: inline; margin-left: 20px; }
.top_voice .voicelist_list{ width: 1300px; margin: 0 auto; }
.top_voice .voicelist_list:after{ content: ""; display: block; width: 32%; }
.top_voice .voicelist_item{ flex-basis: 32%; }
.top_voice .voicelist_item img{ width: 100%; height: auto; }



/*
.top_works_tit_btn a:before,
.top_works_tit_btn a:after{ content: ""; display: block; position: absolute; }
.top_works_tit_btn a:before{ top: 55px; right: -80px; width: 30px; height: 30px; border-radius: 100%; background-color: var(--main-color); transition : .5s linear; opacity: 0; }
.top_works_tit_btn a:hover:before{ top: 65px; width: 20px; height: 20px; opacity: 1; }


.top_works_tit_btn a{ display: block; font-size: 1.8rem; font-weight: 900; padding: 60px 0 0 0; }
.top_works_tit_btn span::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 1px;
  background: black;
  transition: all .5s;
  transform: scale(0,1);
	transform-origin: left;
	left: 9em;
	top: 75px;
}
.top_works_tit_btn span:hover::after {
  transform: scale(1,1);
}
*/


.top_works_list{ display: flex; justify-content: flex-start; flex-wrap: wrap; width: 90%; margin: 0 auto; }
.top_works_item{ flex-basis: 23%; margin: 0 1% 40px 1%; display: flex; flex-wrap: wrap; transition: .5s; }



.top_works_cat{ margin-bottom: 5px; }
.top_works_cat a{ display: inline-block; color: #fff; font-size: 1.2rem; background-color: var(--main-color); padding: 3px 10px; border-radius: 30px; text-align: center; letter-spacing: 1px; border: 1px solid var(--main-color); }
.top_works_cat a:hover{ background-color: #fff; color: var(--main-color); }

.top_works_tit02{ flex-basis: 98%; font-size: 1.4rem; font-weight: 700; margin-bottom: 5px; }
.top_works_eyecatch{ flex-basis: 100%; }
.top_works_eyecatch{ margin-bottom: 5px; position: relative; box-shadow: 0px 0px 1px 1px #ccc; border-radius: 5px; transition: 0.5s ease-in-out; }
.top_works_eyecatch:hover{ opacity: .6; }

.top_works_eyecatch img,
.top_works_eyecatch canvas{ width: 100%; height: auto; border-radius: 5px; }
.top_works_eyecatch img:hover,
.top_works_eyecatch canvas:hover{ }




.top_service{ background-color: #f5f5f5; margin-bottom: 60px; }
.top_service{ padding: 40px 0; }
.top_service .top_works_tit01{ text-align: left; width: 1300px; margin: 0 auto; }
.top_service .top_works_tit01 span{ display: inline; margin-left: 20px; }

.top_service_list{ width: 100%; display: flex; justify-content: center; margin-bottom: 40px; }
.top_service_item{ flex-basis: 16%; margin: 0 1%; }
.top_service_item a{ display: block; padding: 30px; background-color: #fff; border-radius: 10px; }
.top_service_ico{ font-size: 7rem; text-align: center; }
.top_service_tit{ font-size: 2.1rem; font-weight: 700; text-align: center; margin-bottom: 10px; }
.top_service_txt{ font-size: 1.5rem; line-height: 1.8; min-height: 120px; }




.top_column{ background-color: #f5f5f5; padding: 40px 0; }

.top_column .top_works_tit01{ text-align: left; width: 1300px; margin: 0 auto; }
.top_column .top_works_tit01 span{ display: inline; margin-left: 20px; }

.top_column_list{ width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; }
.top_column_item{ flex-basis: 32%; margin-bottom: 20px; }
.top_column_item a{  }


.top_column_eyecatch{ margin-bottom: 20px; }
.top_column_eyecatch a:hover{ opacity: .6; }
.top_column_eyecatch img{ width: 100%; height: auto; }

.top_column_date{ font-size: 1.3rem; color: #999; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal;  }
.top_column_tit{ font-size: 1.7rem; font-weight: 400; }


/* トップページバナー */
.top_bnr_wrapper{background-color: #f5f5f5; padding: 20px 0;}
.top_bnr_sec{width: 90%; margin: 0 auto; max-width: 1220px;}
.top_bnr_list{display: flex; gap: 40px; flex-wrap: wrap; justify-content: center;}
.top_bnr_list li{width: calc((100% - 80px)/3);}
.top_bnr_list li a{transition: .5s;}
.top_bnr_list li a:hover{transition: .5s; opacity: 0.7;}
.top_bnr_list li img{width: 100%; height: auto;}



/* ページ内アンカーリンク */
.main_nav{ position: relative; background-color: #004070; }
.main_nav nav{ position: absolute; right: 0; top: -50px; background-color: #004f8a; width: 80%; margin: 0 0 0 auto; box-shadow: 0px 13px 10px -6px rgba(0, 0, 0, 0.29); padding: 40px 50px 50px 50px; }
.main_nav nav ul{ display: flex; justify-content: flex-start; }
.main_nav nav ul li{ margin-right: 30px; position: relative; }
.main_nav nav ul li a{ display: block; color: #fff; font-size: 2rem; line-height: 1; padding-left: 30px; }
.main_nav nav ul li:before{ position: absolute; left: 0; top: 15px; content: ""; display: block; width: 15px; height: 2px; background-color: #fff; }
.main_nav nav ul li a:hover{ opacity: .6; }

.main{ width: 1200px; margin: 0 auto 100px auto;}


/* 2カラム */
.column02{ display: flex !important; justify-content: space-between !important; }
.column02 .wp-block-column{ flex-basis: 48% !important; }
.column02 h3{ font-size: 4rem; font-weight: 700; margin-bottom: 10px; }
.column02 .wp-block-image{ margin-bottom: 20px !important; }
.column02 .wp-block-image img{ border-radius: 10px !important; }
.column02 .wp-block-column p{ font-size: 1.7rem; line-height: 1.8; }

/* 2カラム 33:66 */
.column36{ display: flex !important; justify-content: space-between !important; }
.column36 .wp-block-column:nth-child(1){ flex-basis: 26% !important; }
.column36 .wp-block-column:nth-child(2){ flex-basis: 72% !important; }

.txt01{ font-size: 1.7rem; line-height: 1.8; }


.tsudo_sec{}
.tsudo_list{ display: flex; justify-content: space-between; }
.tsudo_item{ flex-basis: 23%; border: 2px solid #b23952; background-color: #fff; border-radius: 10px; padding-bottom: 20px; }
.tsudo_tit{ font-size: 2.4rem; color: #fff; background-color: var(--main-color); padding: 5px; text-align: center; font-weight: bold; margin-bottom: 20px; }
.tsudo_ico{ text-align: center; font-size: 8rem; margin-bottom: 5px; }
.tsudo_txt{ font-size: 1.8rem; text-align: center; font-weight: bold; width: 86%; margin: 0 auto; letter-spacing: 1px; }




/* ブロックエディタ用 */
p + p {
  margin-top: 1.5em;
}
em {
  font-style: italic;
}
blockquote {
  margin: 1.5em 0;
  border-left: 5px solid #ddd;
  padding: 1em 0 1em 10px;
  color: #777;
}
blockquote p + p {
  margin-top: 0.5em;
}
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.alignright {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}
.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
/*
.wp-caption,
[class*='wp-image'] {
  display: block;
  max-width: 100% !important;
  margin-top: 1.5em;
  text-align: center;
}
*/
.wp-caption-text {
  margin-top: 0;
}

.wp-block-image{ margin: 0 !important; }


.main_contact{ width: 1100px; background-color: #fff; border-radius: 10px; margin: 0 auto 100px auto; padding: 60px; }
.main_contact_tit{ font-size: 6rem; text-align: center !important; width: 100% !important; }
.main_contact_txt{ font-size: 2.4rem; font-weight: 700; text-align: center; margin-bottom: 40px; }

.main_contact_sec{}
.main_contact_sec_list{ display: flex; align-items: center; }
.main_contact_sec_item{ flex-basis: 50%; }
.main_contact_sec_item:nth-child(1){ flex-basis: 48%; padding-right: 2%; border-right: 1px solid #ccc; }
.main_contact_sec_item:nth-child(2){ flex-basis: 46%; margin-left: 4%; }
.main_contact_sec_tel{ display: flex; align-items: center; flex-wrap: wrap; }
.main_contact_sec_tel_ico{ width: 80px; height: 80px; text-align: center; background-color: var(--main-color); border-radius: 100%; margin-right: 10px; }
.main_contact_sec_tel_ico i{ color: #fff; font-size: 4.5rem; line-height: 80px; }
.main_contact_sec_tel_num{ font-size: 5rem; font-family: "Arial", Gadget, "sans-serif"; font-weight: 700; font-style: normal; line-height: 1; }
.main_contact_sec_tel_time{ margin-left: 40px; margin-top: 5px; font-size: 2rem; font-weight: 400; }
.main_contact_sec_btn{}
.main_contact_sec_btn a{ display: block; font-size: 2.6rem; color: #fff; background-color: var(--main-color); border: 2px solid var(--main-color); text-align: center; padding: 20px; border-radius: 10px; font-weight: 700; }
.main_contact_sec_btn a i{ font-size: 3.5rem; margin-right: 15px; vertical-align: middle; }
.main_contact_sec_btn a:hover{ background-color: #fff; color: var(--main-color); }









.pdca_sec{}
.pdca_list{}
.pdca_item{ display: flex; align-items: center; border: 1px solid; background-color: #fff; padding: 5px 10px; border-radius: 5px; margin-bottom: 20px; }
.pdca_item_p{ border-color: #3e4292; }
.pdca_item_d{ border-color: #2469bf; }
.pdca_item_c{ border-color: #149fda; }
.pdca_item_a{ border-color: #01b2a8; }
.pdca_tit01{ color: #fff; font-size: 4rem; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; width: 50px; height: 50px; line-height: 50px; border-radius: 5px; text-align: center; margin-right: 20px; }
.pdca_item_p .pdca_tit01{ background-color: #3e4292; }
.pdca_item_d .pdca_tit01{ background-color: #2469bf; }
.pdca_item_c .pdca_tit01{ background-color: #149fda; }
.pdca_item_a .pdca_tit01{ background-color: #01b2a8; }
.pdca_tit02{ flex-basis: 14%; font-size: 4rem; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; }
.pdca_item_p .pdca_tit02{ color: #3e4292; }
.pdca_item_d .pdca_tit02{ color: #2469bf; }
.pdca_item_c .pdca_tit02{ color: #149fda; }
.pdca_item_a .pdca_tit02{ color: #01b2a8; }
.pdca_txt01{ font-size: 2.3rem; }


.works_agency_sec{ width: 1200px; margin: 0 auto 100px auto; }
.works_agency_list{ display: flex; justify-content: space-between; margin-bottom: 60px; }
.works_agency_item{ flex-basis: 48%; }
.works_agency_eyecatch{ margin-bottom: 10px; }
.works_agency_eyecatch a:hover{ opacity: .6; }
.works_agency_tit01{ font-size: 2.3rem; }
.works_agency_btn{ width: 480px; margin: 0 auto; }
.works_agency_btn a{ display: block; color: #fff; font-size: 2.5rem; font-weight: 700; letter-spacing: -.5px; background-color: var(--main-color); border: 2px solid var(--main-color); padding: 20px; border-radius: 10px; text-align: center; }
.works_agency_btn a:hover{ background-color: #fff; color: var(--main-color); }



/* サイト制作実績 single-website.php */
.works_single_sec{}
.works_single_list{  margin-bottom: 60px; }
.works_single_item{}
.works_single_item h2{}
.works_single_sec01{}
.works_single_sec01 h3{ font-size: 2rem; }
.works_single_sec01{}
.works_single_sec01_list{}
.works_single_sec01_item{}
.works_sec_spec_dl{ display: flex; flex-wrap: wrap; border: 1px solid #ccc; border-top: none; margin-bottom: 40px; border-left: 0; }
.works_sec_spec_dt{ flex-basis: 15%; background: #eee; padding: 10px 20px; border-top: 1px solid #ccc; border-left: 1px solid #ccc; font-size: 1.6rem; }
.works_sec_spec_dd{ flex-basis: 35%; padding: 10px 20px; margin: 0; border-left: 1px solid #ccc; border-top: 1px solid #ccc; font-size: 1.6rem; background-color: #fff; }
.works_sec_spec_dd_website_txt{ flex-basis: 85%; }


.sagyounaiyou_list{ }
.sagyounaiyou_item{ display: inline-block; }
.sagyounaiyou_item:not(:first-child)::before{ content: ","; }

.works_sec_img{}
.works_sec_img_list{ display: flex; justify-content: space-between; }
.works_sec_img_item{}
.works_sec_img_item_pc{ flex-basis: 78%; }
.works_sec_img_item_sp{ flex-basis: 20%; }
.works_sec_img_item img{ width: 100%; height: auto; object-fit: cover; object-position: top left; border: 1px solid #ccc !important; }

/* 実績（仮表示） */
#worksSec{ width: 100%; }
#worksSec > ul{ margin-bottom: 60px; width: 100%;  }
#worksSec > ul > li{}
/*
#worksSec > ul > li h3{ font-size: 4rem; margin-bottom: 10px; }
*/
#worksSec > ul > li .worksSecDate{}
#worksSec > ul > li .worksSecTxt{ margin-bottom: 40px; }
#worksSec > ul > li .worksSecTxt > ul{ }

#worksSec > ul > li .worksSecTxt h3{ font-size: 2rem; }
#worksSec > ul > li .worksSecTxt p{ font-size: 1.6rem; }
#worksSec dl#worksSecSpec{ display: flex; flex-wrap: wrap; border: 1px solid #ccc; border-top: none; margin-bottom: 40px; border-left: 0; }
#worksSec dl#worksSecSpec dt{ flex-basis: 15%; background: #eee; padding: 10px 20px; border-top: 1px solid #ccc; border-left: 1px solid #ccc; font-size: 1.6rem; }
#worksSec dl#worksSecSpec dd{ flex-basis: 35%; padding: 10px 20px; margin: 0; border-left: 1px solid #ccc; border-top: 1px solid #ccc; font-size: 1.6rem; background-color: #fff; }
#worksSec dl#worksSecSpec dd i{ margin-left: 10px; font-size: 1.6rem; }

#worksSecImg > ul{ display: flex; justify-content: space-between; }
#worksSecImg > ul > li:nth-child(1){ flex-basis: 78%; }
#worksSecImg > ul > li:nth-child(2){ flex-basis: 20%; }
#worksSecImg > ul > li img{ width: 100%; height: 1000px; object-fit: cover; object-position: top left; border: 1px solid #ccc !important; }

#workslistSec{  width: 1500px; margin: 0 auto 80px auto; }
#workslistSec > ul{ display: flex; justify-content: space-between; flex-wrap: wrap; margin-bottom: 60px; }
#workslistSec > ul > li{ flex-basis: 32%; margin-bottom: 40px; }
#workslistSec > ul > li h3{ font-size: 2.2rem;  margin-bottom: 10px; line-height: 1.6; }
#workslistSec > ul > li .worksSecTxt{ margin-bottom: 40px; }
#workslistSec > ul > li .worksSecTxt ul{ display: flex; justify-content: space-between;  flex-wrap: wrap; }
#workslistSec > ul > li .worksSecTxt ul li:first-child{ flex-basis: 100%; margin-bottom: 10px; display: flex; justify-content: space-between; }
#workslistSec > ul > li .worksSecTxt ul li:first-child .workslistSecImg:nth-child(1){ flex-basis: 79%; }
#workslistSec > ul > li .worksSecTxt ul li:first-child .workslistSecImg:nth-child(2){ flex-basis: 20%; }
#workslistSec > ul > li .worksSecTxt ul li:nth-child(2){ flex-basis: 100%; }
#workslistSec > ul > li .worksSecTxt ul li a:hover{ opacity: 0.6; }
#workslistSec > ul > li .worksSecTxt p{ font-size: 1.6rem; }
#workslistSec dl#worksSecSpec{ display: flex; flex-wrap: wrap; border: 1px solid #ccc; border-top: none; margin-bottom: 40px; }
#workslistSec dl#worksSecSpec dt{ background: #ddd; width: 30%; padding: 5px 15px; border-top: 1px solid #ccc; font-size: 1.5rem; }
#workslistSec dl#worksSecSpec dd{ padding: 5px 15px; margin: 0; width: 70%; border-left: 1px solid #ccc; border-top: 1px solid #ccc; font-size: 1.5rem; }
#workslistSec dl#worksSecSpec dd i{ margin-left: 10px; font-size: 1.6rem; }

#workslistSec .workslistSecImg img{ width: 100%; height: 300px; object-fit: cover; object-position: top left; border: 1px solid #ccc !important; }



.site_cat{ margin-bottom: 40px; }
.site_cat a{ display: inline-block; background-color: var(--main-color); color: #fff; padding: 3px 10px; border: 2px solid #b23952; }
.site_cat a:hover{ background-color: #fff; color: var(--main-color); }

.works_single_item h2{ position: relative; padding: 20px 20px 20px 20px; border-bottom: 4px solid #fff; margin-bottom: 30px; border-radius: 0 0 10px 10px; }
.works_single_item h2:before{ font-size: 1.5rem; position: absolute; top: -24px; left: 0; height: 24px; padding: 0 1em; color: #333; background-color: #fff; content: "サイト名"; border-radius: 10px 10px 0 0; }

.works_single_item h3{ position: relative; border-color: #ddd; }
.works_single_item h3:before{ font-size: 1.5rem; position: absolute; top: -24px; left: 0; height: 24px; padding: 0 1em; color: #333; background-color: #ddd; content: "企業名"; }


.pagination{ width: 1500px; margin: 0 0 80px auto; display: flex; justify-content: center; }
.pagination span,
.pagination a{ display: block; background-color: #fff; color: var(--main-color); font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; width: 30px; height: 30px; text-align: center; line-height: 30px; margin: 0 10px; border: 1px solid var(--main-color); border-radius: 5px; }
.pagination .current{ background-color: var(--main-color); color: #fff; }
.pagination a:hover{ background-color: var(--main-color); color: #fff; }

.pagination .modoru a{ width: 100px; font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif; padding: 0 10px; }

.pagination_news{ width: 1200px; margin: 0 0 80px auto; }
.pagination_news > ul{ display: flex; justify-content: space-between; }
.pagination_news > ul li{ flex-basis: 20%; }
.pagination_news span,
.pagination_news a{ display: flex; justify-content: center; width: 120px; font-size: 1.5rem; background-color: #fff; color: var(--main-color); text-align: center; padding: 3px 5px; border: 1px solid var(--main-color); border-radius: 40px; position: relative; }
.pagination_news span{ width: 130px; }
.pagination_news .current{ background-color: var(--main-color); color: #fff; }
.pagination_news a:hover{ background-color: var(--main-color); color: #fff; }

.pagination_news .modoru a{ width: 120px; font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;  padding: 3px 5px; }


.pagination_news .nonext i,
.pagination_news .next i{ position: absolute; left: 5px; top: 8px; display: block; font-size: 1.2rem; transform: rotate(180deg); }

.pagination_news .noprev i,
.pagination_news .prev i{ position: absolute; right: 5px; top: 8px; display: block; font-size: 1.2rem; }

.pagination_news .nonext,
.pagination_news .noprev{ opacity: .4 }


.ad_sec{ width: 1200px; margin: 0 auto 100px auto; }
.ad_sec_txt{ background-color: #fff; padding: 15px; font-size: 2.3rem; margin-bottom: 30px; }
.ad_list{ display: flex; justify-content: space-between; margin-bottom: 60px; }
.ad_item{ flex-basis: 48%; }
.ad_item_txt01{ font-size: 1.7rem; letter-spacing: 2px; line-height: 1.9; }
.ad_item_img01{  }
.ad_item_img01 img{ width: 100%; height: auto; }

.ad_sec_tit{ margin: 40px 0; }
.ad_sec_tit_list{ display: flex; align-items: center; margin-bottom: 30px; }
.ad_sec_tit_item{ margin-right: 30px; }
.ad_sec_tit_item span{ color: #fff; font-size: 1.8rem; font-weight: 700; text-align: center; border-radius: 5px; margin-right: 10px; padding: 10px 20px; }
.ad_sec_tit_item_companyname{}
.ad_sec_tit_item_companyname span{ background-color: var(--main-color); }
.ad_sec_tit_item_txt01{}
.ad_sec_tit_item_txt01 span{ background-color: #333; }

.ad_item_kadai01{ background-color: #fff; padding: 30px; border-radius: 10px; }
.ad_sec_tit_kadai{ display: flex; align-items: center; margin-bottom: 20px; }
.ad_sec_tit_kadai span{ display: block; content: ""; width: 60px; height: 60px; border-radius: 100%; text-align: center; background-color: #4974c2; }
.ad_sec_tit_kadai i{ color: #fff; font-size: 3.3rem; line-height: 60px; }
.ad_sec_tit_kadai p{ font-size: 3.5rem; color: #4974c2; font-weight: 700; margin-left: 20px; }
.ad_sec_txt_kadai{ font-size: 1.7rem; letter-spacing: 2px; line-height: 1.9; margin-bottom: 30px; }
.ad_sec_tit_mokuhyou{ font-size: 1.8rem; font-weight: 700; }
.ad_sec_tit_mokuhyou span{ font-size: 2.3rem; background-color: #ead83c; padding: 10px 25px; border-radius: 10px; margin-right: 25px; }
.ad_item_kaiketsu01{ background-color: #fff; padding: 30px; border-radius: 10px; }
.ad_sec_txt_kaiketsu{  }
.ad_sec_tit_kaiketsu{ display: flex; align-items: center; margin-bottom: 20px; }
.ad_sec_tit_kaiketsu span{ display: block; content: ""; width: 60px; height: 60px; border-radius: 100%; text-align: center; background-color: var(--main-color); }
.ad_sec_tit_kaiketsu i{ color: #fff; font-size: 3.3rem; line-height: 60px; }
.ad_sec_tit_kaiketsu p{ font-size: 3.5rem; color: var(--main-color); font-weight: 700; margin-left: 20px; }
.ad_sec_tit_kaiketsu01{ margin-left: 20px; font-size: 1.8rem; background-color: #ead83c; padding: 10px 25px; border-radius: 10px; font-weight: 700; }
.ad_sec_txt_kaiketsu{ font-size: 1.7rem; letter-spacing: 2px; line-height: 1.9; margin-bottom: 30px; }
.ad_sec_kekka{ display: flex; align-items: center; }
.ad_sec_kekka_tit{ font-size: 2.3rem; color: #fff; background-color: var(--main-color); padding: 10px 25px; border-radius: 10px; font-weight: 700; margin-right: 25px; }
.ad_sec_kekka_txt{ font-size: 2rem; letter-spacing: 2px; font-weight: 700; line-height: 1.5; }
.ad_sec_kekka_txt span{ color: var(--main-color); }


.table_subsidy01{ width: 80%; margin: 0 auto; }
.table_subsidy01 table{ border-collapse: collapse; border: 1px solid #ccc !important; }
.table_subsidy01 th{ width: 25%; font-size: 2.2rem; border: 1px solid #ccc !important; }
.table_subsidy01 td{ font-size: 2.2rem; background-color: #fff; border: 1px solid #ccc !important; }
.table_subsidy01 td span{ margin-left: 20px; background-color: var(--main-color); color: #fff; padding: 3px 10px; font-weight: 700; font-size: 2rem; }

.table_company01{ width: 90%; margin: 0 auto; }
.table_company01 table{ border-collapse: collapse; border: 0 !important; }
.table_company01 th{ width: 20%; font-size: 1.8rem; font-weight: 700; background-color: #f5f5f5 !important; border-top: 0 !important; border-left: 0 !important; border-right: 0 !important; border-bottom: 1px solid #ccc !important; padding: 20px !important; }
.table_company01 td{ font-size: 1.8rem; background-color: #f5f5f5 !important; border-top: 0 !important; border-left: 0 !important; border-right: 0 !important; border-bottom: 1px solid #ccc !important; padding: 20px !important; }
.table_company01 td span{ margin-left: 20px; background-color: var(--main-color); color: #fff; padding: 3px 10px; font-weight: 700; font-size: 2rem; }

.map_sec iframe {
  width: 100%;
  aspect-ratio: 16/9;
}


.child_sec{}
.child_sec_list{ display: flex; justify-content: space-between; flex-wrap: wrap; }
.child_sec_item{ flex-basis: 48%; margin-bottom: 40px; }
.child_sec_item a:hover{ opacity: .6; }
.child_sec_item_thumb{ margin-bottom: 20px; }
.child_sec_item_thumb img{ width: 100%; height: auto; border-radius: 10px; }
.child_sec_item_tit{ font-size: 2.3rem; font-weight: 700; margin-bottom: 10px; }





/* お問合せページ */
.form {
}

.form__table {
  width: 81.6%;
  max-width: 96rem;
  margin: 0 auto 100px auto;
	border-bottom: .1rem solid #ccc;
}

.form-head p{ text-align: right; }

input, button, textarea {
  border: .1rem solid #ccc;
  border-radius: .5rem;
  padding: 1rem;
	font-size: 1.8rem;
}

input.your-company,
input.your-division{
  width: 78%;
}

input.your-name-last,
input.your-name-first,
input.your-name-kana-last,
input.your-name-kana-first,
input.your-post{
  width: 37%;
	margin-right: 5px;
}

input.your-prefecture,
input.your-municipalities,
input.your-block,
input.your-others{
  width: 106%;
}

input.your-tell,
input.your-email,
input.your-email_confirm{
  width: 78%;
}

textarea {
  width: 78%;
  height: 10.6em;
  line-height: 1.3;
}

.form__table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: .1rem solid #ccc;
  padding: 2.5rem 3rem 2.7rem;
  width: 100%;
	position: relative;
}


.form__table .form-head {
  width: 51%;
  min-width: 18rem;
}

.form__table dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 3rem;
  font-size: 1.7rem;
  letter-spacing: 0.001em;
}

.textarea .form-head {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form__table dd {
  width: 100%;
}

.form__table .post {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.form__table .address {
  display: block;
}

.address-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.address-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.address-items .address-item {
  margin-top: 1.8rem;
}

.address-item dt {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.form-sub {
  color: #999;
  white-space: nowrap;
  padding-left: 1em;
	min-width: 6em;
}

.must {
	position: absolute;
	left: 0;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #fff;
  padding: .6rem 1rem 1rem 1rem;
  background: #bd2e2e;
  width: 7rem;
  height: 3.5rem;
  text-align: center;
}

.optional{ position: absolute; left: 0; font-size: 1.5rem; letter-spacing: 0.1em; color: #fff; padding: .6rem 1rem 1rem 1rem; background: #999; width: 7rem; height: 3.5rem; text-align: center; }

input.wpcf7-submit{
  font-size: 2rem;
  padding: .5rem 1.5rem;
  border: none;
  border-radius: .5rem;
  color: #000;
}

.form-btn {
  text-align: center;
	padding-bottom: 40px;
	padding-top: 40px;
	border-top: 1px solid #444;
}

input.wpcf7-submit {
  margin-right: 1rem;
  font-size: 2.5rem;
	cursor: pointer;
}

input.wpcf7-submit:hover{ background-color: #999; }

.wpcf7-spinner {
  display: none;
}

::placeholder{ color: #aaa; }

.contact_submit_btn{ text-align: center; margin-bottom: 60px; }
.contact_submit_btn input{ background-color: var(--main-color); color: #fff; font-size: 2rem; letter-spacing: 2px; padding: 15px 25px; cursor: pointer; transition: 0.5s ease-in-out; }


.contact .main p{ font-size: 2rem; line-height: 1.8; letter-spacing: 1px; }
.contact ol{ margin: 10px 0 0 30px; }
.contact ol li{ list-style-type: decimal; font-size: 2rem; }


.form_sec{ display: flex; background-color: #ebebeb; border-radius: 10px; padding: 40px; margin-bottom: 20px; }
.form_sec_tit{ position: relative; font-size: 2rem; font-weight: 700; padding-left: 25px; }
.form_sec_tit:before{ content: ""; display: block; position: absolute; left: 0; top: 7px; width: 16px; height: 16px; background-color: #222; }
.form_sec .form__table{ margin-bottom: 0; }



.wsp-pages-list{}
.page_item{ list-style: none; margin-bottom: 10px; position: relative; padding-left: 30px; }
.page_item:before{ position: absolute; content: ""; display: block; top: 10px; left: 0; width: 15px; height: 15px; background-color: var(--main-color); border-radius: 100%; }
.page_item a{ font-size: 2.3rem; font-weight: 700; }
.wsp-pages-list{}
.page_item_has_children{}
.children{ margin: 10px 0 0 30px; }
.children li{ position: relative; padding-left: 20px; list-style: none; }
.children li a{ font-size: 1.8rem; font-weight: normal; }
.children li:before{ position: absolute; content: ""; display: block; top: 12px; left: 0; width: 10px; height: 2px; background-color: var(--main-color); }


p.company_txt{ font-size: 2.5rem; }
.min{ font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif; }
p.min.company_txt{ font-size: 3rem; line-height: 1.8; letter-spacing: 3px; }

.news_sec{ margin-bottom: 200px; }
.news_list{}
.news_item{ margin-bottom: 30px; }
.news_item a{ display: flex; align-items: center; background-color: #fff; border-radius: 10px; padding: 20px; }
.news_date{ font-size: 1.4rem; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; margin-right: 20px; color: #999; }
.news_tit{ font-size: 1.8rem; font-weight: 700; }

.news_detail{}
.news_detail_date{ font-size: 1.6rem; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; color: #999; margin-bottom: 10px; }
.news_detail_txt{ background-color: #fff; padding: 40px; border-radius: 10px; }

.news_detail_cat{ margin-bottom: 20px; }
.news_detail_cat .term_list{  }



.pagination_single_list{ width: 100%; margin: 60px auto; display: flex; }
.pagination_single_item{ flex-basis: 33%; }
.pagination_single_item:nth-child(1){ text-align: left; }
.pagination_single_item:nth-child(2){ text-align: center; }
.pagination_single_item:nth-child(3){ text-align: right; }
.pagination_single_item{ flex-basis: 33%; }
.pagination_single_item a{ display: inline-block; width: 120px; color: var(--main-color); font-weight: 700; background-color: #fff; border: 2px solid var(--main-color); text-align: center; font-size: 1.4rem; padding: 5px 10px; border-radius: 40px; }
.pagination_single_item a:hover{ background-color: var(--main-color); color: #fff; }


.wp-pagenavi{ width: 90%; margin: 40px auto 80px auto; display: flex; justify-content: center; }
.wp-pagenavi a{ display: block; font-size: 1.8rem; text-align: center; color: var(--main-color); background-color: #fff; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; border-color: var(--main-color) !important; border-radius: 5px; width: 30px; height: 30px; line-height: 29px; padding: 0 !important; }
.wp-pagenavi a:hover{ background-color: var(--main-color); color: #fff; }
.wp-pagenavi span.current{ display: block; width: 32px; height: 32px; line-height: 25px; text-align: center; background-color: var(--main-color); color: #fff; border: 1px solid var(--main-color) !important; border-radius: 5px; margin: 2px; }


/* コラム */
.column_sec{ width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; }
.column_sec01{ flex-basis: 75%;  }

.column_list{ display: flex; justify-content: space-between; flex-wrap: wrap; }
.column_item{ flex-basis: 45%; margin-bottom: 40px; }

.column_sec_list{  }
.column_sec_item{ }

.column_sec_item .term_list{ margin-bottom: 10px; }

.column_sec_date01{ font-size: 1.2rem; color: #999; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; }
.column_sec_tit01{ font-size: 1.8rem; margin-bottom: 10px; }
.column_sec_tit01 br{ display: none; }
.column_sec_btn01{ width: 100px; margin: 10px 0 0 auto; }
.column_sec_btn01 a{ display: block; background-color: var(--main-color); color: #fff; text-align: center; border: 1px solid var(--main-color); padding: 3px 10px; border-radius: 40px; font-size: 1.5rem; }
.column_sec_btn01 a:hover{ background-color: #fff; color: var(--main-color); }
.column_sec_img01{ margin-bottom: 10px; transition: 0.5s ease-in-out; }
.column_sec_img01:hover{ opacity: .6; }
.column_sec_img01 img{ width: 100%; height: auto; }

.term_list{ display: flex; justify-content: flex-start !important; margin-bottom: 40px; }
.term_item{ flex-basis: auto !important; }
.term_item a{ display: inline-block; font-size: 1.2rem; color: #fff; background-color: var(--main-color); padding: 5px 15px; border-radius: 40px; border: 1px solid var(--main-color); }
.term_item a:hover{ background-color: #fff; color: var(--main-color); }

.yarpp-thumbnail img{ width: 100% !important; height: auto !important; }

.related_list{ display: flex; justify-content: space-between; margin-bottom: 100px;  }
.related_list:after{ content: ""; display: block; width: 30%; }
.related_item{ flex-basis: 30%; }
.related_img{}
.related_img img{ width: 100%; height: auto; }
.related_tit{}



/* 見出し */
.column_sec01 h2{ color: #333; font-size: 3.2rem; font-family: dnp-shuei-gothic-kin-std, sans-serif; font-weight: 600; font-style: normal; padding: 0; border-radius: 0; background: none; }
.column_sec01 h2 span{ text-align: left; color: #b13951; font-size: 2.3rem !important; }

.column_sec01 h3{
/*
padding: 10px;
border-top: 2px solid #b13951;
background-color: #eee;
color: #333;
margin-bottom: 30px;
*/
}

.column_sec01 h3{ position: relative; border-bottom: solid 1px #ccc; font-size: 3rem; font-weight: 600; border-top: 0; color: #222; letter-spacing: 2px; }
.column_sec01 h3:after{ position: absolute; content: ""; display: block; border-bottom: solid 1px var(--main-color); bottom: -1px; width: 20%; }




.column_sec01 h4{ position: relative; font-size: 1.8rem; background: linear-gradient(transparent 60%, #efcdd4 60%); padding: 0 20px 0 35px; margin-bottom: 30px; }
.postContents h4:before{ position: absolute; content: ""; left: 6px; top: 6px; width: 20px; height: 20px; border-radius: 100%; background-color: #b13951; }

.column_sec01 h5 {
	color: #333;
	min-height: auto;
	padding: 0 0 0 20px;
	line-height: 23px;
	position: relative;
	margin: 0 0 10px 0;
	text-align: left;
	border: none;
	font-weight: normal;
}
.column_sec01 h5:before { top: 5px; content: " "; display: inline-block; background: #0063b4; width: 15px; height: 15px; position: absolute; left: 0;}
.column_sec01 h6 {
	color: #333;
	font-weight: normal;
	padding: 2px 0 0 20px;
	margin-bottom: 10px;
	line-height: 22px;
	position: relative;
}
.column_sec01 h6:before { content: ''; width: 7px; height: 7px; border: 0px; border-top: solid 3px #0063b4; border-right: solid 3px #0063b4; -ms-transform: rotate(45deg); -webkit-transform: rotate(45deg); transform: rotate(45deg); position: absolute; top: 50%; left: 0; margin-top: -4px;}

#ez-toc-container nav{ margin-top: 10px; }

div#ez-toc-container p.ez-toc-title{ font-size: 2.5rem !important; font-family: 'Readex Pro', sans-serif; font-weight: 700 !important; font-style: normal; }
div#ez-toc-container{ padding: 30px !important; }
div#ez-toc-container ul li{ margin-bottom: 5px; }

.sidebar_sec figure img{ width: 100%; height: auto; }
.sidebar_sec_list{}
.sidebar_sec_item{ }
.sidebar_sec_item a{ display: block; }
.sidebar_sec_item figure{ margin-bottom: 10px; transition: 0.5s ease-in-out; }
.sidebar_sec_item figure:hover{ opacity: .6; }
.sidebar_sec_item figure img{ width: 100%; height: auto; object-fit: cover; }
.sidebar_sec_item p{ }
.sidebar_sec_item_date01{ display: block; font-size: 1.3rem; color: #999; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; line-height: 1; }
.sidebar_sec_item_tit01{ font-size: 1.3rem; line-height: 1.2; }


.sidebar_column{ flex-basis: 20%; }
.sidebar_column h3{ font-size: 2rem; padding: 0 !important; border-top: 0; border-bottom: 0; font-family: dnp-shuei-gothic-kin-std, sans-serif; font-weight: 600; font-style: normal; margin-bottom: 20px !important; }


.sidebar_sec{ padding-bottom: 20px; border-bottom: 1px solid #ccc; margin-bottom: 40px; }
.sidebar_sec > ul{  }
.sidebar_sec > ul > li{ font-size: 1.5rem; margin-bottom: 20px; }

.sidebar_sec_cat_list{ margin-left: 30px; }
.sidebar_sec_cat_item{ list-style-type: disc; margin-bottom: 10px !important; }
.sidebar_sec_cat_item a{}

.monthly_archives{ margin-left: 30px; }
.monthly_archives > li{ list-style-type: disc; margin-bottom: 10px !important; }


.sidebar_sec_search{ position: relative; margin-bottom: 100px; }
.sidebar_sec_search:before{ content: "\e90d"; display: block; font-size: 20px; width: 20px; height: 20px; font-family: 'icomoon'; position: absolute; top: 6px; left: 10px; color: #ccc; }
.sidebar_sec_search form{ width: 100%; }
.sidebar_sec_search input{ border-radius: 40px; padding: 10px 10px 10px 35px; }

.addtoany_share_save_container{ background-color: #fff; padding: 20px; border-radius: 10px; }


.pageLink01 { display: flex; justify-content: space-between; padding-top: 60px; margin-bottom: 200px; }
.pageLink01 > li { width: 18%;}
.pageLink01 > li a { font-size: 1.6rem; color: #fff; background-color: #333; padding: 10px; border-radius: 40px; }
.pageLink01 > li.prevBtn { float: left;}
.pageLink01 > li.nextBtn { float: right;}
.pageLink01 > li.prevBtn a { color: #fff; }
.pageLink01 > li.nextBtn a { color: #fff; }
.pageLink01 > li a:after { -webkit-transition: 0.5s ease-in-out; -moz-transition: 0.5s ease-in-out; -o-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out;}

.pageLink01 { /* border-top: 1px solid #ccc; */}
.pageLink01 > li a { position: relative; display: block; text-align: center; color: #fff; border: 1px solid #333; }
.pageLink01 > li a:hover { color: #fff; background-color: #b03951; border: 1px solid #b03951;}
.pageLink01 > li.prevBtn a:after,
.pageLink01 > li.nextBtn a:after {
    position: absolute; content: ''; top: 50%; width: 6px; height: 6px; border: 0px; border-top: 1px solid #fff; border-right: 1px solid #fff;
}
.pageLink01 > li:hover a:after { border-top: 1px solid #fff; border-right: 1px solid #fff;}
.pageLink01 > li.prevBtn a:after,
.pageLink02 > li.prevBtn a:after {
    -ms-transform: rotate(-135deg); -webkit-transform: rotate(-135deg); transform: rotate(-135deg); margin-top: -3px; left: 15px;
}
.pageLink01 > li.nextBtn a:after,
.pageLink02 > li.nextBtn a:after {
    -ms-transform: rotate(45deg); -webkit-transform: rotate(45deg); transform: rotate(45deg); margin-top: -3px; right: 15px;
}


.related_sec{ width: 1300px; margin: 0 auto 100px auto; }
.related_sec h2{ background: none; padding: 0; font-size: 2.3rem; }
.related_img{ margin-bottom: 10px; transition: 0.5s ease-in-out; }
.related_img:hover{ opacity: .6; }


h2{ position: relative; transition: .3s; font-size: 4rem; margin-bottom: 20px; font-weight: 900;  padding: 10px 10px 10px 20px; border-radius: 10px; background-color: #fff; }
h2:after{ position: absolute; left: 0; top: 0; content: ""; background-color: #fff;  }



/* お客様の声 */
.voice_sec{}
.voice_sec01{ position: relative; width: 80%; margin: 0 auto; background-color: #fff; border-radius: 10px; padding: 30px; margin-bottom: 40px; text-align: center; }
.voice_sec01_ico{ position: absolute; top: -40px; left: 0; right: 0; margin: 0 auto; width: 80px; height: 80px; background-color: var(--main-color); text-align: center; border-radius: 100%; }
.voice_sec01_ico i{ color: #fff; font-size: 4rem; line-height: 80px; }
.voice_sec01_tit{ font-size: 3.2rem; text-align: center; font-family: dnp-shuei-gothic-kin-std, sans-serif; font-weight: 600; font-style: normal; margin: 40px 0 0 0; }
.voice_sec01_dot{ text-align: center; margin: 20px auto; }
.voice_sec01_companyname{ font-size: 2rem; text-align: center; }
.voice_sec01_name{ font-size: 2.5rem; text-align: center; margin-bottom: 5px; }
.voice_sec01_name span{ font-size: 2rem; margin-left: 10px; }
.voice_sec01_img{ margin: 0 auto; }
.voice_sec01_img img{ border-radius: 10px; }

.smb-balloon__figure {
  height: 80px !important;
  width: 80px !important;
}

.smb-balloon{ margin-bottom: 30px; }
.smb-balloon__body{ padding: 30px !important; line-height: 1.8; }
.smb-balloon__name{ font-size: 1.2rem !important; }


.voice_sec02{ position: relative; width: 100%; margin: 100px auto 40px auto; background-color: #fff; border-radius: 10px; padding: 60px 40px 40px 40px; }
.voice_sec02_dot{ text-align: center; margin: 60px auto; }
.voice_sec02_bottomtit{ position: absolute; top: -60px; left: 0; right: 0; margin: 0 auto;  text-align: center; font-size: 3.2rem; font-family: dnp-shuei-gothic-kin-std, sans-serif; font-weight: 600; font-style: normal; }
.voice_sec02_bottomtit span{ display: block; font-size: 2rem; color: var(--main-color); font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; }
.voice_sec02_list{ display: flex; justify-content: space-between; }
.voice_sec02_item{ flex-basis: 48%; }
.voice_sec02_item_tit{ margin-bottom: 20px; }
.voice_sec02_item_txt{ font-size: 1.5rem; line-height: 2; letter-spacing: 1px; padding-bottom: 30px; border-bottom: 1px dashed #666; margin-bottom: 30px; }
.voice_sec02_item_add{ font-size: 1.5rem; }
.voice_link_list{ margin-top: 20px; }
.voice_link_item{ margin-bottom: 20px; }
.voice_link_item a{ display: inline-block; color: #fff; font-size: 1.4rem; background-color: var(--main-color); border: 2px solid var(--main-color); padding: 8px 20px; border-radius: 40px; }
.voice_link_item a:hover{ background-color: #fff; color: var(--main-color); }
.voice_sec02_item_img{}
.voice_sec02_item_img img{ width: 100%; height: auto; border-radius: 10px; }

.voice_pagenation{ width: 1200px; margin: 100px auto; }
.voice_pagenation_list{ display: flex; justify-content: space-between; }
.voice_pagenation_item{ flex-basis: 30%; }
.voice_pagenation_item a{ display: inline-block; font-size: 1.6rem; color: #fff; background-color: #333; padding: 10px 20px; border-radius: 40px; border: 2px solid #333; }
.voice_pagenation_item a:hover{ background-color: #fff; color: #333; }

.voice_pagenation_item_next a i{ margin-right: 10px; }
.voice_pagenation_item_prev a i{ margin-left: 10px; }

.voice_pagenation_item_next{}
.voice_pagenation_item_modoru{ text-align: center; }
.voice_pagenation_item_prev{ text-align: right; }

.voicelist_sec{}
.voicelist_list{ display: flex; justify-content: space-between; flex-wrap: wrap; }
.voicelist_list:after{ content: ""; display: block; width: 30%; }
.voicelist_item{ flex-basis: 30%; margin-bottom: 60px; }

.voicelist_img{ margin-bottom: 20px; }
.voicelist_img img{ width: 100%; height: auto; border-radius: 10px; }
.voicelist_img a:hover{ opacity: .6; }

.voicelist_txt{ display: flex; justify-content: space-between; align-items: center; }
.voicelist_tit{ }
.voicelist_tit01{ font-size: 1.7rem; margin-bottom: 5px; }
.voicelist_name{ position: relative; font-size: 1.3rem; padding-left: 15px; }
.voicelist_name:before{ position: absolute; content: ""; top: .7em; left: 0; display: block; width: 8px; height: 1px; background-color: #333; }
.voicelist_arrow a{ display: block; width: 50px; height: 50px; background-color: var(--main-color); text-align: center; border-radius: 100%; border: 2px solid var(--main-color); }
.voicelist_arrow a i{ line-height: 50px; color: #fff; font-size: 2.5rem; transition: all .3s; }
.voicelist_arrow a:hover{ background-color: #fff; color: var(--main-color); }
.voicelist_arrow a:hover i{ color: var(--main-color); }



.company .top_works_tit01{ text-align: left; width: 1300px; margin: 0 auto; }
.company .top_works_tit01 span{ display: inline; margin-left: 20px; }

.concept_txt01{ width: 80%; font-size: 1.6rem; letter-spacing: 2px; line-height: 2.3; margin: 0 auto; }
.message_txt01{ font-size: 2rem; letter-spacing: 2px; line-height: 2.5; }

.president_name{ text-align: right; }
.president_name01{ font-size: 2.5rem; }
.president_name01 span{ font-size: 1.5rem; margin-right: 20px; }
.president_name02{ font-size: 1.4rem; color: #ccc; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; }


/* ----------------------------------------------------------
 SP CSS
---------------------------------------------------------- */
@media screen and (max-width: 767px){
img,video {
  max-width: 100%;
  height: auto;
}

/* フォントサイズ10px=62.5% */
html{ font-size: 60%; }

/* 基本のフォントサイズ */
body{ font-size: 1.8rem; height: auto !important; height: 100%; padding-top: 0; }

/* 非表示用 */
.noneSP		{ display: none !important; }

/* テーブル関連のスタイル */
.js-scrollable{
	white-space: nowrap;
/* max-height: 500px; */
}
.scroll-hint-icon{ height: 85px !important; }

/* ----------------------------------------------------------
 header
---------------------------------------------------------- */

header{ position: fixed; width: 100%; height: 50px; z-index: 100; }

.header_wrap{ background-color: #eee; height: 50px; display: flex; justify-content: space-between; align-items: center; }
.header_wrap .header_logo img{ width: 100%; height: auto; max-height: 25px; }
.header_wrap .gnavi_item > a{ padding: 35px 0; }
.header_wrap .gnavi_list li.has-child:before{ top: 45px; }

.header_logo{ flex-basis: 120px; margin-left: 10px; text-align: left; }

.header_sec{ }

.gnavi{ display: none; }

.header_contact{ position: absolute; top: 0; right: 50px; z-index: 999; }
.header_contact a{ display: flex; justify-content: center; align-items: center; width: 150px; height: 50px; border: 3px solid var(--main-color); }
.header_contact a i{ display: block; font-size: 3rem; margin-right: 10px; }
.header_contact a span{ display: block; font-size: 1.4rem; line-height: 1.2; font-weight: 700; }
.header_contact a:hover{ background-color: #fff; color: var(--main-color); }


.header_tel{ display: none; }




/* ----------------------------------------------------------
 footer
---------------------------------------------------------- */

/* ページ下部 固定メニュー */
.btm_menu { position: fixed; bottom: -50px; width: 100%; border-top: 1px solid #aaa; z-index: 99; }
.btm_menu li { float: left; width: 50%; }
.btm_menu li:first-child a { border-right: 1px solid #aaa; }
.btm_menu li a { display: block; height: 50px; text-align: center; font-size: 1.6rem; font-weight: 700; padding: 15px 5px 5px; background-color: #eee; color: #333; }
.btm_menu li a i{ font-size: 2rem; margin-right: 10px; }
.btm_menu li a:hover { background-color: #333; color: #fff; }
.btm_menu ul:after { content: ''; clear: both; display: block; }


footer{ background-color: #fff; padding-top: 100px; padding-bottom: 60px; }
.footer_sec{ width: 90%; margin: 0 auto; }
.footer_sec_list{ flex-wrap: wrap; }
.footer_sec_item{ text-align: center; }
.footer_sec_item:nth-child(1){ flex-basis: 1000%;  }
.footer_sec_item:nth-child(2){ display: none; }
.footer_logo{ margin-bottom: 10px; text-align: center; }
.footer_logo img{ width: 50%; height: auto; }
.footer_tit{ font-size: 1.6rem; margin-bottom: 20px; }
.footer_add{ font-size: 1.2rem; margin-bottom: 5px; }
.footer_telfax{ font-size: 1.2rem; letter-spacing: 2px; }
.footer_telfax span{}

.footer_contact{ display: none; }

.footer_sitemap{ display: none; }

.footer_copyright{ font-size: 1rem; text-align: center; color: #999; margin-top: 20px; margin-bottom: 40px; }

/* ----------------------------------------------------------
 hx
---------------------------------------------------------- */
.h1_wrap{ padding: 30px 0; position: relative; height: auto; margin-bottom: 50px; }
.h1_tit{ width: 90%; margin: 0 auto; }
.h1_tit01{ font-size: 1.5rem; margin-bottom: 10px; }
.h1_tit02{ font-size: 3rem; margin-bottom: 0px; }

h2{ font-size: 2.6rem; margin-bottom: 20px; padding: 10px 10px 10px 20px; line-height: 1.3; }

h3{ font-size: 2.4rem; color: var(--main-color); padding: 15px 0; border-top: 2px solid #ccc; border-bottom: 2px solid #ccc; font-family: zen-kaku-gothic-antique, sans-serif; font-weight: 900; font-style: normal; margin-bottom: 30px; }

h4{ position: relative; font-size: 2.3rem; padding-bottom: 10px; border-bottom: 3px solid #333; font-family: zen-kaku-gothic-antique, sans-serif; font-weight: 900; font-style: normal; margin-bottom: 30px; }
h4:before{ position: absolute; bottom: -3px; left: 0; width: 30%; height: 3px; content: ""; background: #b23952; }

/* ぱんくず */
.breadcrumbs{ display: none; }


/* ----------------------------------------------------------
 contents
---------------------------------------------------------- */

.main{  }


.top_img{ width: 100%; position: absolute; top: 50px; right: 0; height: 350px; background: url("/wp-content/uploads/top_img01_sp.jpg") no-repeat center center; background-size: cover; margin: 0; border-radius: 0 ; }
.top_img:before{ border-radius: 0 0 0 30px; }

.top_tit{ bottom: 0; right: 0; font-size: 9rem; }


.top_sec{ width: 100%; margin: 0 auto; }

.top_news_sec{ width: 100%; margin: 0 auto; flex-wrap: wrap; padding: 20px 0; }
.top_news_tit{ flex-basis: 100%; padding: 0 20px; margin-bottom: 20px; }
.top_news_list{ flex-basis: 100%; padding: 0 10px; }
.top_news_item{ flex-wrap: wrap; padding-bottom: 15px; border-bottom: 1px solid #ccc; margin-bottom: 15px; }
.top_news_date01{ flex-basis: 30%; font-size: 1.3rem; color: #999; text-align: left; }
.top_news_tit02{ flex-basis: 100%; font-size: 1.5rem; font-weight: 700; margin-top: 5px; }
.top_news_tit02 a:hover{ opacity: .6; }

.top_news_tit01{ font-size: 4rem; text-align: left; margin-bottom: 10px; }
.top_news_tit01:first-letter{ color: var(--main-color); }
.top_news_tit01 span{ display: block; color: #333; font-size: 1.8rem; }

.top_news_btn01{ width: 150px; margin: 0 auto; }
.top_news_btn01 a{ display: block; color: #fff; font-size: 1.5rem; background-color: var(--main-color); border: 2px solid var(--main-color);  padding: 5px; text-align: center; border-radius: 5px; }
.top_news_btn01 a:hover{ background-color: #fff; color: var(--main-color); }

.top_news_btn{ width: 140px; margin: 0 0 0 auto; }
.top_news_btn a{ display: block; font-size: 1.5rem; color: #fff; border: 2px solid #425a9f; background-color: #425a9f; text-align: center; padding: 5px; }
.top_news_btn a:hover{ background: #fff; color: #425a9f; }

.top_news_cat01{ flex-basis: 70%; }
.top_news_cat01 .term_list{ display: flex; justify-content: flex-start !important; margin-bottom: 0; }
.top_column_item .term_list{ display: flex; justify-content: flex-start !important; margin-bottom: 10px; }
.column_item .term_list{ display: flex; justify-content: flex-start !important; margin-bottom: 10px; }
.top_news_cat01 .term_item{ flex-basis: auto !important; margin-right: 20px; }
.top_news_cat01 .term_item a{ display: inline-block; font-size: 1.2rem; color: #fff; background-color: var(--main-color); padding: 3px 15px; border-radius: 40px; border: 1px solid var(--main-color); }
.top_news_cat01 .term_item a:hover{ background-color: #fff; color: var(--main-color); }


.top_works{ margin: 0 auto 100px auto; padding-top: 30px; }
.top_works_tit{ margin-bottom: 50px; text-align: center; }
.top_works_tit01{ font-size: 5rem; color: #ccc; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; margin-right: 0; text-align: center; }
.top_works_tit01:first-letter{ color: var(--main-color); }
.top_works_tit01 span{ display: block; color: #333; font-size: 2rem; font-family: dnp-shuei-gothic-kin-std, sans-serif; font-weight: 600; font-style: normal; }

.top_works_tit_btn{ width: 260px; margin: 0 auto 60px auto; }
.top_works_tit_btn a{ display: block; color: #fff; background-color: #333; font-size: 1.8rem; font-weight: 900; padding: 10px 30px 10px 20px; border-radius: 5px; text-align: center; border: 2px solid #333; }
.top_works_tit_btn a:hover{ background-color: #fff; color: #333; }


.top_voice{ padding: 40px 0; }
.top_voice .top_works_tit01{ text-align: left; width: 90%; margin: 0 auto; }
.top_voice .top_works_tit01 span{ display: block; margin-left: 0px; }
.top_voice .voicelist_list{ width: 90%; margin: 0 auto; }
.top_voice .voicelist_list:after{ content: ""; display: block; width: 32%; }
.top_voice .voicelist_item{ flex-basis: 100%; }
.top_voice .voicelist_item img{ width: 100%; height: auto; }



.top_works_list{ display: flex; justify-content: flex-start; flex-wrap: wrap; width: 90%; margin: 0 auto; }
.top_works_item{ flex-basis: 48%; margin: 0 1% 40px 1%; display: flex; flex-wrap: wrap; transition: .5s; }



.top_works_cat{ margin-bottom: 5px; }
.top_works_cat a{ display: inline-block; color: #fff; font-size: 1.2rem; background-color: var(--main-color); padding: 3px 10px; border-radius: 30px; text-align: center; letter-spacing: 1px; border: 1px solid var(--main-color); }
.top_works_cat a:hover{ background-color: #fff; color: var(--main-color); }

.top_works_tit02{ flex-basis: 98%; font-size: 1.4rem; font-weight: 700; margin-bottom: 5px; }
.top_works_eyecatch{ flex-basis: 100%; }
.top_works_eyecatch{ margin-bottom: 5px; position: relative; box-shadow: 0px 0px 1px 1px #ccc; border-radius: 10px; transition: 0.5s ease-in-out; }
.top_works_eyecatch:hover{ opacity: .6; }

.top_works_eyecatch img,
.top_works_eyecatch canvas{ width: 100%; height: auto; border-radius: 10px; }
.top_works_eyecatch img:hover,
.top_works_eyecatch canvas:hover{ }




.top_service{ background-color: #f5f5f5; margin-bottom: 60px; }
.top_service{ padding: 40px 0; }
.top_service .top_works_tit01{ text-align: left; width: 90%; margin: 0 auto; }
.top_service .top_works_tit01 span{ display: block; margin-left: 0px; }

.top_service_list{ width: 90%; flex-wrap: wrap; margin: 0 auto 40px auto; }
.top_service_item{ flex-basis: 100%; margin: 0 0 30px 0; }
.top_service_item a{ display: block; padding: 20px; background-color: #fff; border-radius: 10px; }
.top_service_ico{ font-size: 7rem; text-align: center; }
.top_service_tit{ font-size: 2.1rem; font-weight: 700; text-align: center; margin-bottom: 10px; }
.top_service_txt{ font-size: 1.5rem; line-height: 1.8; min-height: 70px; }




.top_column{ background-color: #f5f5f5; padding: 40px 0; }

.top_column .top_works_tit01{ text-align: left; width: 90%; margin: 0 auto; }
.top_column .top_works_tit01 span{ display: block; margin-left: 0px; }

.top_column_list{ width: 90%; margin: 0 auto; flex-wrap: wrap; }
.top_column_item{ flex-basis: 100%; margin-bottom: 40px; }
.top_column_item a{  }


.top_column_eyecatch{ margin-bottom: 20px; }
.top_column_eyecatch a:hover{ opacity: .6; }
.top_column_eyecatch img{ width: 100%; height: auto; }

.top_column_date{ font-size: 1.3rem; color: #999; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal;  }
.top_column_tit{ font-size: 1.7rem; font-weight: 400; }


/* トップページバナー */
.top_bnr_sec{max-width: 380px;}
.top_bnr_list{flex-direction: column; gap: 20px;}
.top_bnr_list li{width: 100%;}




/* ページ内アンカーリンク */
.main_nav{ position: relative; background-color: #004070; }
.main_nav nav{ position: absolute; right: 0; top: -50px; background-color: #004f8a; width: 80%; margin: 0 0 0 auto; box-shadow: 0px 13px 10px -6px rgba(0, 0, 0, 0.29); padding: 40px 50px 50px 50px; }
.main_nav nav ul{ display: flex; justify-content: flex-start; }
.main_nav nav ul li{ margin-right: 30px; position: relative; }
.main_nav nav ul li a{ display: block; color: #fff; font-size: 2rem; font-family: dnp-shuei-mincho-pr6n, sans-serif; font-weight: 400; font-style: normal; line-height: 1; padding-left: 30px; }
.main_nav nav ul li:before{ position: absolute; left: 0; top: 15px; content: ""; display: block; width: 15px; height: 2px; background-color: #fff; }
.main_nav nav ul li a:hover{ opacity: .6; }

.main{ width: 90%; margin: 0 auto 60px auto;}


/* 2カラム */
.column02{ display: flex !important; justify-content: space-between !important; }
.column02 .wp-block-column{ flex-basis: 48% !important; }
.column02 h3{ font-size: 4rem; font-weight: 700; margin-bottom: 10px; }
.column02 .wp-block-image{ margin-bottom: 20px !important; text-align: center; }
.column02 .wp-block-image img{ border-radius: 10px !important; }
.column02 .wp-block-column p{ font-size: 1.7rem; line-height: 1.8; }

/* 2カラム 33:66 */
.column36{ display: flex !important; justify-content: space-between !important; }
.column36 .wp-block-column:nth-child(1){ flex-basis: 26% !important; }
.column36 .wp-block-column:nth-child(2){ flex-basis: 72% !important; }

.txt01{ font-size: 1.7rem; line-height: 1.8; }


.tsudo_sec{}
.tsudo_list{ display: flex; justify-content: space-between; row-gap: 20px;}
.tsudo_item{ flex-basis: 48%; border: 2px solid #b23952; background-color: #fff; border-radius: 10px; padding-bottom: 20px; }
.tsudo_tit{ font-size: 2.4rem; color: #fff; background-color: var(--main-color); padding: 5px; text-align: center; font-weight: bold; margin-bottom: 20px; }
.tsudo_ico{ text-align: center; font-size: 8rem; margin-bottom: 5px; }
.tsudo_txt{ font-size: 1.5rem; text-align: center; font-weight: bold; width: 86%; margin: 0 auto; letter-spacing: 1px; }




/* ブロックエディタ用 */
p + p {
  margin-top: 1.5em;
}
em {
  font-style: italic;
}
blockquote {
  margin: 1.5em 0;
  border-left: 5px solid #ddd;
  padding: 1em 0 1em 10px;
  color: #777;
}
blockquote p + p {
  margin-top: 0.5em;
}
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.alignright {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}
.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
/*
.wp-caption,
[class*='wp-image'] {
  display: block;
  max-width: 100% !important;
  margin-top: 1.5em;
  text-align: center;
}
*/
.wp-caption-text {
  margin-top: 0;
}

.wp-block-image{ margin: 0 !important; text-align: center; }
.wp-block-image figure{  width: 50%; margin: 0 auto; }

.main_contact{ width: 90%; background-color: #fff; border-radius: 10px; margin: 0 auto 100px auto; padding: 30px; }
.main_contact_tit{ font-size: 5rem; text-align: center !important; }
.main_contact_txt{ font-size: 2.2rem; font-weight: 700; text-align: center; margin-bottom: 40px; }

.main_contact_sec{}
.main_contact_sec_list{ flex-wrap: wrap; }
.main_contact_sec_item{ flex-basis: 100%; }
.main_contact_sec_item:nth-child(1){ flex-basis: 100%; padding-right: 2%; border-right: 0; }
.main_contact_sec_item:nth-child(2){ flex-basis: 100%; margin-left: 0; }
.main_contact_sec_tel{ display: flex; align-items: center; flex-wrap: wrap; }
.main_contact_sec_tel_ico{ width: 50px; height: 50px; margin-right: 10px; }
.main_contact_sec_tel_ico i{ font-size: 3rem; line-height: 50px; }
.main_contact_sec_tel_num{ font-size: 3.3rem; }
.main_contact_sec_tel_time{ margin-left: 10px; margin-top: 5px; font-size: 1.4rem; font-weight: 400; }
.main_contact_sec_btn{ margin-top: 20px; }
.main_contact_sec_btn a{ display: block; font-size: 2.2rem; padding: 10px; }
.main_contact_sec_btn a i{ font-size: 3.5rem; margin-right: 15px; vertical-align: middle; }
.main_contact_sec_btn a:hover{ background-color: #fff; color: var(--main-color); }

.pdca_sec{}
.pdca_list{}
.pdca_item{ flex-wrap: wrap; margin-bottom: 20px; }

.pdca_tit01{ font-size: 3.5rem; width: 40px; height: 40px; line-height: 40px; margin-right: 20px; }

.pdca_tit02{ flex-basis: 14%; font-size: 3.5rem; }

.pdca_txt01{ flex-basis: 100%; font-size: 1.9rem; }


.works_agency_sec{ width: 90%; margin: 0 auto 100px auto; }
.works_agency_list{ flex-wrap: wrap; margin-bottom: 60px; }
.works_agency_item{ flex-basis: 100%; }
.works_agency_eyecatch{ margin-bottom: 10px; }
.works_agency_eyecatch a:hover{ opacity: .6; }
.works_agency_tit01{ font-size: 2.3rem; }
.works_agency_btn{ width: 480px; margin: 0 auto; }
.works_agency_btn a{ display: block; color: #fff; font-size: 2.5rem; font-weight: 700; letter-spacing: -.5px; background-color: var(--main-color); border: 2px solid var(--main-color); padding: 20px; border-radius: 10px; text-align: center; }
.works_agency_btn a:hover{ background-color: #fff; color: var(--main-color); }


/* 企業情報 */
.company .top_works_tit01{ font-size: 5rem; color: #ccc; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; margin-right: 0; text-align: center; width: initial;}
.company .top_works_tit01:first-letter{ color: var(--main-color); }
.company .top_works_tit01 span{ display: block; color: #333; font-size: 2rem; font-family: dnp-shuei-gothic-kin-std, sans-serif; font-weight: 600; font-style: normal; }
.company .message_txt01{font-size: 1.7rem; line-height: 1.8;}
.company .wp-block-image figure{width: 100%; max-width: 740px; margin: 0 auto;}



/* 制作実績 */
#worksSec{ width: 90%; margin: 0 auto 80px auto; }
#worksSec > ul{ display: flex; margin-bottom: 60px  }
#worksSec > ul > li{}
#worksSec > ul > li h3{ font-size: 2rem; font-family: ryo-gothic-plusn, sans-serif; font-weight: 700; font-style: normal; margin-bottom: 10px; }
#worksSec > ul > li .worksSecDate{}
#worksSec > ul > li .worksSecTxt{ margin-bottom: 40px; }
#worksSec > ul > li .worksSecTxt > ul{  }
#worksSec > ul > li .worksSecTxt > ul > li:nth-child(1){  }
#worksSec > ul > li .worksSecTxt > ul > li:nth-child(2){  }
#worksSec > ul > li .worksSecTxt h3{ font-size: 2rem; font-family: ryo-gothic-plusn, sans-serif; font-weight: 700; font-style: normal; }
#worksSec > ul > li .worksSecTxt p{ font-size: 1.6rem; }
#worksSec dl#worksSecSpec{ display: flex; flex-wrap: wrap; border: 1px solid #ccc; border-top: none; margin-bottom: 40px; }
#worksSec dl#worksSecSpec dt{ flex-basis: 100%; background: #ddd; width: 100%; padding: 5px 15px; border-top: 1px solid #ccc; font-size: 1.4rem; border-left: 1px; }
#worksSec dl#worksSecSpec dd{ flex-basis: 100%; padding: 5px 15px; margin: 0; width: 100%; border-left: 0; border-top: 1px solid #ccc; font-size: 1.4rem; }
#worksSec dl#worksSecSpec dd i{ margin-left: 10px; font-size: 1.6rem; }

#worksSecImg ul{ flex-wrap: wrap; }
#worksSecImg ul > li:nth-child(1){ flex-basis: 100%; margin-bottom: 10px; }
#worksSecImg ul > li:nth-child(1) img{ }
#worksSecImg ul > li:nth-child(2){ flex-basis: 100%; text-align: center; margin: 0 auto; }

#worksSecImg ul > li img{ width: 100%; height: 400px; object-fit: cover; object-position: top left; border: 1px solid #ccc !important; }
#worksSecImg ul > li:nth-child(2) img{ width: 60%; height: 800px; margin: 0 auto; }


.site_cat{ margin-bottom: 40px; }
.site_cat a{ display: inline-block; background-color: var(--main-color); color: #fff; padding: 3px 10px; border: 2px solid #b23952; }
.site_cat a:hover{ background-color: #fff; color: var(--main-color); }

#worksSec h2{ position: relative; padding-bottom: 10px; border-bottom: 4px solid #fff; margin-bottom: 60px; line-height: 1.2; }
#worksSec h2:before{ font-size: 1.5rem; position: absolute; top: -24px; left: 0; height: 24px; padding: 0 1em; color: #333; background-color: #fff; content: "サイト名"; }

#worksSec h3{ position: relative; }
#worksSec h3:before{ font-size: 1.5rem; position: absolute; top: -24px; left: 0; height: 24px; padding: 0 1em; color: #333; background-color: #fff; content: "企業名"; }


.pagination{ width: 90%; margin: 0 auto 80px auto; display: flex; justify-content: center; }
.pagination span,
.pagination a{ display: block; background-color: #fff; color: var(--main-color); font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; width: 30px; height: 30px; text-align: center; line-height: 30px; margin: 0 10px; border: 1px solid var(--main-color); border-radius: 5px; }
.pagination .current{ background-color: var(--main-color); color: #fff; }
.pagination a:hover{ background-color: var(--main-color); color: #fff; }

.pagination .modoru a{ width: 100px; font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif; padding: 0 10px; }


.pagination_news{ width: 100%; margin: 0 0 40px auto; }
.pagination_news > ul{ display: flex; justify-content: space-between; }
.pagination_news > ul li{ flex-basis: 20%; }
.pagination_news span,
.pagination_news a{ display: flex; justify-content: center; width: 90px; font-size: 1.3rem; }
.pagination_news span{ width: 100px; }

.pagination_news .modoru a{ width: 90px; }

.pagination_news .nonext i,
.pagination_news .next i{ top: 6px; font-size: 1rem; }

.pagination_news .noprev i,
.pagination_news .prev i{ top: 6px; font-size: 1rem; }




.pagination_single_list{ width: 100%; margin: 0 auto; display: flex; justify-content: space-between; }
.pagination_single_item{ flex-basis: 26%; }
.pagination_single_item:nth-child(1){ text-align: left; }
.pagination_single_item:nth-child(2){ text-align: center; }
.pagination_single_item:nth-child(3){ text-align: right; }
.pagination_single_item a{ display: block; width: auto; color: var(--main-color); font-weight: 700; background-color: #fff; border: 2px solid var(--main-color); text-align: center; font-size: 1.2rem; padding: 5px 10px; border-radius: 40px; }
.pagination_single_item a:hover{ background-color: var(--main-color); color: #fff; }


.ad_sec{ width: 1200px; margin: 0 auto 100px auto; }
.ad_sec_txt{ background-color: #fff; padding: 15px; font-size: 2.3rem; margin-bottom: 30px; }
.ad_list{ display: flex; justify-content: space-between; margin-bottom: 60px; }
.ad_item{ flex-basis: 48%; }
.ad_item_txt01{ font-size: 1.7rem; letter-spacing: 2px; line-height: 1.9; }
.ad_item_img01{  }
.ad_item_img01 img{ width: 100%; height: auto; }

.ad_sec_tit{ margin: 40px 0; }
.ad_sec_tit_list{ display: flex; align-items: center; margin-bottom: 30px; }
.ad_sec_tit_item{ margin-right: 30px; }
.ad_sec_tit_item span{ color: #fff; font-size: 1.8rem; font-weight: 700; text-align: center; border-radius: 5px; margin-right: 10px; padding: 10px 20px; }
.ad_sec_tit_item_companyname{}
.ad_sec_tit_item_companyname span{ background-color: var(--main-color); }
.ad_sec_tit_item_txt01{}
.ad_sec_tit_item_txt01 span{ background-color: #333; }

.ad_item_kadai01{ background-color: #fff; padding: 30px; border-radius: 10px; }
.ad_sec_tit_kadai{ display: flex; align-items: center; margin-bottom: 20px; }
.ad_sec_tit_kadai span{ display: block; content: ""; width: 60px; height: 60px; border-radius: 100%; text-align: center; background-color: #4974c2; }
.ad_sec_tit_kadai i{ color: #fff; font-size: 3.3rem; line-height: 60px; }
.ad_sec_tit_kadai p{ font-size: 3.5rem; color: #4974c2; font-weight: 700; margin-left: 20px; }
.ad_sec_txt_kadai{ font-size: 1.7rem; letter-spacing: 2px; line-height: 1.9; margin-bottom: 30px; }
.ad_sec_tit_mokuhyou{ font-size: 1.8rem; font-weight: 700; }
.ad_sec_tit_mokuhyou span{ font-size: 2.3rem; background-color: #ead83c; padding: 10px 25px; border-radius: 10px; margin-right: 25px; }
.ad_item_kaiketsu01{ background-color: #fff; padding: 30px; border-radius: 10px; }
.ad_sec_txt_kaiketsu{  }
.ad_sec_tit_kaiketsu{ display: flex; align-items: center; margin-bottom: 20px; }
.ad_sec_tit_kaiketsu span{ display: block; content: ""; width: 60px; height: 60px; border-radius: 100%; text-align: center; background-color: var(--main-color); }
.ad_sec_tit_kaiketsu i{ color: #fff; font-size: 3.3rem; line-height: 60px; }
.ad_sec_tit_kaiketsu p{ font-size: 3.5rem; color: var(--main-color); font-weight: 700; margin-left: 20px; }
.ad_sec_tit_kaiketsu01{ margin-left: 20px; font-size: 1.8rem; background-color: #ead83c; padding: 10px 25px; border-radius: 10px; font-weight: 700; }
.ad_sec_txt_kaiketsu{ font-size: 1.7rem; letter-spacing: 2px; line-height: 1.9; margin-bottom: 30px; }
.ad_sec_kekka{ display: flex; align-items: center; }
.ad_sec_kekka_tit{ font-size: 2.3rem; color: #fff; background-color: var(--main-color); padding: 10px 25px; border-radius: 10px; font-weight: 700; margin-right: 25px; }
.ad_sec_kekka_txt{ font-size: 2rem; letter-spacing: 2px; font-weight: 700; line-height: 1.5; }
.ad_sec_kekka_txt span{ color: var(--main-color); }


.table_subsidy01{ width: 100%; margin: 0 auto; }
.table_subsidy01 table{ border-collapse: collapse; border: 1px solid #ccc !important; }
.table_subsidy01 th{ width: 25%; font-size: 1.6rem; }
.table_subsidy01 td{ font-size: 1.6rem; }
.table_subsidy01 td span{ margin-left: 20px; background-color: var(--main-color); color: #fff; padding: 3px 10px; font-weight: 700; font-size: 1.6rem; }

.table_company01{ width: 96%; margin: 0 auto; }
.table_company01 th{ width: 35%; font-size: 1.6rem; padding: 15px 10px !important; }
.table_company01 td{ font-size: 1.6rem; padding: 15px 10px !important; }
.table_company01 td span{ margin-left: 20px; background-color: var(--main-color); color: #fff; padding: 3px 10px; font-weight: 700; font-size: 1.6rem; }

.map_sec iframe {
  width: 100%;
  aspect-ratio: 16/9;
}


.child_sec{}
.child_sec_list{ display: flex; justify-content: space-between; flex-wrap: wrap; }
.child_sec_item{ flex-basis: 48%; margin-bottom: 40px; }
.child_sec_item a:hover{ opacity: .6; }
.child_sec_item_thumb{ margin-bottom: 20px; }
.child_sec_item_thumb img{ width: 100%; height: auto; border-radius: 10px; }
.child_sec_item_tit{ font-size: 1.7rem; font-weight: 700; margin-bottom: 10px; }





/* お問合せページ */
.form {
}

.form__table {
  width: 96%;
  max-width: 96rem;
  margin: 0 auto 100px auto;
	border-bottom: .1rem solid #ccc;
}

.form-head p{ text-align: left; }

input, button, textarea {
  border: .1rem solid #ccc;
  border-radius: .5rem;
  padding: 1rem;
	font-size: 1.8rem;
}

input.your-company,
input.your-company-furigana,
input.your-division{
  width: 100%;
}

input.your-name-last,
input.your-name-first,
input.your-name-kana-last,
input.your-name-kana-first,
input.your-post{
  width: 41%;
	margin-right: 5px;
}

input.your-prefecture,
input.your-municipalities,
input.your-block,
input.your-others{
  width: 106%;
}

input.your-tell,
input.your-email,
input.your-email_confirm{
  width: 100%;
}

textarea {
  width: 100%;
  height: 10.6em;
  line-height: 1.3;
}

.form__table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	flex-wrap: wrap;
  border-top: .1rem solid #ccc;
  padding: 1.5rem 2rem 1.7rem;
  width: 100%;
	position: relative;
}


.form__table .form-head {
  width: 100%;
  min-width: 18rem;
}

.form__table dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0;
  font-size: 1.7rem;
  letter-spacing: 0.001em;
}

.textarea .form-head {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form__table dd {
  width: 100%;
	flex-basis: 100%;
}
.form__table dd p{ width: 100%; }

.form__table .post {
          justify-content: flex-start;
	margin-bottom: 10px;
	padding-left: 50px;
}

.form__table .address {
  display: block;
}

.address-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.address-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.address-items .address-item {
  margin-top: 1.8rem;
}

.address-item dt {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.form-sub {
  color: #999;
  white-space: nowrap;
  padding-left: 1em;
	min-width: 6em;
}

.must {
	position: absolute;
	left: 0;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #fff;
  padding: .3rem 1rem 1rem 1rem;
  background: #bd2e2e;
  width: 6rem;
  height: 3rem;
  text-align: center;
}

.optional{ position: absolute; left: 0; font-size: 1.5rem; letter-spacing: 0.1em; color: #fff; padding: .3rem .5rem .5rem .5rem; background: #999; width: 7rem; height: 3.5rem; text-align: center; }



.form-btn {
  text-align: center;
	padding-bottom: 40px;
	padding-top: 40px;
	border-top: 1px solid #444;
}



.wpcf7-spinner {
  display: none;
}

::placeholder{ color: #aaa; }

.contact .main p{ width: 100%; margin: 0 auto; font-size: 1.8rem; line-height: 1.8; letter-spacing: 1px; }
.contact ol{ margin: 10px 0 0 30px; }
.contact ol li{ list-style-type: decimal; font-size: 1.8rem; }


.form_sec{ display: flex; background-color: #ebebeb; border-radius: 10px; padding: 40px; margin-bottom: 20px; }
.form_sec_tit{ position: relative; font-size: 2rem; font-weight: 700; padding-left: 25px; }
.form_sec_tit:before{ content: ""; display: block; position: absolute; left: 0; top: 7px; width: 16px; height: 16px; background-color: #222; }
.form_sec .form__table{ margin-bottom: 0; }



.wsp-pages-list{}
.page_item{ list-style: none; margin-bottom: 10px; position: relative; padding-left: 30px; }
.page_item:before{ position: absolute; content: ""; display: block; top: 10px; left: 0; width: 15px; height: 15px; background-color: var(--main-color); border-radius: 100%; }
.page_item a{ font-size: 2.3rem; font-weight: 700; }
.wsp-pages-list{}
.page_item_has_children{}
.children{ margin: 10px 0 0 30px; }
.children li{ position: relative; padding-left: 20px; list-style: none; }
.children li a{ font-size: 1.8rem; font-weight: normal; }
.children li:before{ position: absolute; content: ""; display: block; top: 12px; left: 0; width: 10px; height: 2px; background-color: var(--main-color); }


p.company_txt{ font-size: 1.9rem; width: 90%; margin: 0 auto; }

.news_sec{ margin-bottom: 60px; }
.news_list{}
.news_item{ margin-bottom: 20px; }
.news_item a{ flex-wrap: wrap; padding: 15px; }
.news_date{ flex-basis: 100%; font-size: 1.4rem; margin-right: 0px; }
.news_tit{ flex-basis: 100%; font-size: 1.8rem; font-weight: 700; }

.news_detail{}
.news_detail_date{ font-size: 1.4rem; margin-right: 0; }
.news_detail_txt{ padding: 20px; }


	
.wp-pagenavi{ width: 90%; margin: 40px auto 80px auto; display: flex; justify-content: center; }
.wp-pagenavi a{ display: block; font-size: 1.8rem; text-align: center; color: var(--main-color); background-color: #fff; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; border-color: var(--main-color) !important; border-radius: 5px; width: 30px; height: 30px; line-height: 29px; padding: 0 !important; }
.wp-pagenavi a:hover{ background-color: var(--main-color); color: #fff; }
.wp-pagenavi span.current{ display: block; width: 32px; height: 32px; line-height: 25px; text-align: center; background-color: var(--main-color); color: #fff; border: 1px solid var(--main-color) !important; border-radius: 5px; margin: 2px; }

	

/* コラム */
.column_sec{ width: 90%; margin: 0 auto; flex-wrap: wrap; }
.column_sec01{ flex-basis: 100%;  }

.column_list{ display: flex; justify-content: space-between; flex-wrap: wrap; }
.column_item{ flex-basis: 45%; margin-bottom: 40px; }

.column_sec_list{  }
.column_sec_item{ }

.column_sec_item .term_list{ margin-bottom: 10px; }

.column_sec_date01{ font-size: 1.2rem; color: #999; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; }
.column_sec_tit01{ font-size: 1.8rem; margin-bottom: 10px; }
.column_sec_tit01 br{ display: none; }
.column_sec_btn01{ width: 100px; margin: 10px 0 0 auto; }
.column_sec_btn01 a{ display: block; background-color: var(--main-color); color: #fff; text-align: center; border: 1px solid var(--main-color); padding: 3px 10px; border-radius: 40px; font-size: 1.5rem; }
.column_sec_btn01 a:hover{ background-color: #fff; color: var(--main-color); }
.column_sec_img01{ margin-bottom: 10px; transition: 0.5s ease-in-out; }
.column_sec_img01:hover{ opacity: .6; }
.column_sec_img01 img{ width: 100%; height: auto; }

.term_list{ display: flex; justify-content: flex-start !important; margin-bottom: 40px; }
.term_item{ flex-basis: auto !important; margin-right: 20px; }
.term_item a{ display: inline-block; font-size: 1.2rem; color: #fff; background-color: var(--main-color); padding: 5px 15px; border-radius: 40px; border: 1px solid var(--main-color); }
.term_item a:hover{ background-color: #fff; color: var(--main-color); }

.yarpp-thumbnail img{ width: 100% !important; height: auto !important; }

.related_list{ flex-wrap: wrap; margin-bottom: 100px;  }
.related_list:after{ content: ""; display: block; width: 30%; }
.related_item{ flex-basis: 100%; margin-bottom: 30px; }
.related_img{}
.related_img img{ width: 100%; height: auto; }
.related_tit{}



/* 見出し */
.column_sec01 h2{ color: #333; font-size: 2.9rem; font-family: dnp-shuei-gothic-kin-std, sans-serif; font-weight: 600; font-style: normal; padding: 0; border-radius: 0; background: none; }
.column_sec01 h2 span{ text-align: left; color: #b13951; font-size: 2.3rem !important; }

.column_sec01 h3{
/*
padding: 10px;
border-top: 2px solid #b13951;
background-color: #eee;
color: #333;
margin-bottom: 30px;
*/
}

.column_sec01 h3{ position: relative; border-bottom: solid 1px #ccc; font-size: 3rem; font-weight: 600; border-top: 0; color: #222; letter-spacing: 2px; }
.column_sec01 h3:after{ position: absolute; content: ""; display: block; border-bottom: solid 1px var(--main-color); bottom: -1px; width: 20%; }




.column_sec01 h4{ position: relative; font-size: 1.8rem; background: linear-gradient(transparent 60%, #efcdd4 60%); padding: 0 20px 0 35px; margin-bottom: 30px; }
.postContents h4:before{ position: absolute; content: ""; left: 6px; top: 6px; width: 20px; height: 20px; border-radius: 100%; background-color: #b13951; }

.column_sec01 h5 {
	color: #333;
	min-height: auto;
	padding: 0 0 0 20px;
	line-height: 23px;
	position: relative;
	margin: 0 0 10px 0;
	text-align: left;
	border: none;
	font-weight: normal;
}
.column_sec01 h5:before { top: 5px; content: " "; display: inline-block; background: #0063b4; width: 15px; height: 15px; position: absolute; left: 0;}
.column_sec01 h6 {
	color: #333;
	font-weight: normal;
	padding: 2px 0 0 20px;
	margin-bottom: 10px;
	line-height: 22px;
	position: relative;
}
.column_sec01 h6:before { content: ''; width: 7px; height: 7px; border: 0px; border-top: solid 3px #0063b4; border-right: solid 3px #0063b4; -ms-transform: rotate(45deg); -webkit-transform: rotate(45deg); transform: rotate(45deg); position: absolute; top: 50%; left: 0; margin-top: -4px;}

#ez-toc-container nav{ margin-top: 10px; }

div#ez-toc-container p.ez-toc-title{ font-size: 2.5rem !important; font-family: 'Readex Pro', sans-serif; font-weight: 700 !important; font-style: normal; }
div#ez-toc-container{ padding: 30px !important; }
div#ez-toc-container ul li{ margin-bottom: 5px; }

.sidebar_sec figure img{ width: 100%; height: auto; }
.sidebar_sec_list{}
.sidebar_sec_item{ }
.sidebar_sec_item a{ display: block; }
.sidebar_sec_item figure{ margin-bottom: 10px; transition: 0.5s ease-in-out; }
.sidebar_sec_item figure:hover{ opacity: .6; }
.sidebar_sec_item figure img{ width: 100%; height: auto; object-fit: cover; }
.sidebar_sec_item p{ }
.sidebar_sec_item_date01{ display: block; font-size: 1.3rem; color: #999; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; line-height: 1; }
.sidebar_sec_item_tit01{ font-size: 1.3rem; line-height: 1.2; }


.sidebar_column{ flex-basis: 100%; }
.sidebar_column h3{ font-size: 2rem; padding: 0 !important; border-top: 0; border-bottom: 0; font-family: dnp-shuei-gothic-kin-std, sans-serif; font-weight: 600; font-style: normal; margin-bottom: 20px !important; }


.sidebar_sec{ padding-bottom: 20px; border-bottom: 1px solid #ccc; margin-bottom: 40px; }
.sidebar_sec > ul{  }
.sidebar_sec > ul > li{ font-size: 1.5rem; margin-bottom: 20px; }

.sidebar_sec_cat_list{ margin-left: 30px; }
.sidebar_sec_cat_item{ list-style-type: disc; margin-bottom: 10px !important; }
.sidebar_sec_cat_item a{}

.monthly_archives{ margin-left: 30px; }
.monthly_archives > li{ list-style-type: disc; margin-bottom: 10px !important; }


.sidebar_sec_search{ position: relative; margin-bottom: 100px; }
.sidebar_sec_search:before{ content: "\e90d"; display: block; font-size: 20px; width: 20px; height: 20px; font-family: 'icomoon'; position: absolute; top: 6px; left: 10px; color: #ccc; }
.sidebar_sec_search form{ width: 100%; }
.sidebar_sec_search input{ border-radius: 40px; padding: 10px 10px 10px 35px; }

.addtoany_share_save_container{ background-color: #fff; padding: 20px; border-radius: 10px; }


.pageLink01 { display: flex; justify-content: space-between; padding-top: 60px; margin-bottom: 200px; }
.pageLink01 > li { width: 30%;}
.pageLink01 > li a { font-size: 1.4rem; color: #fff; background-color: #333; padding: 10px; border-radius: 40px; }
.pageLink01 > li.prevBtn { float: left;}
.pageLink01 > li.nextBtn { float: right;}
.pageLink01 > li.prevBtn a { color: #fff; }
.pageLink01 > li.nextBtn a { color: #fff; }
.pageLink01 > li a:after { -webkit-transition: 0.5s ease-in-out; -moz-transition: 0.5s ease-in-out; -o-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out;}

.pageLink01 { /* border-top: 1px solid #ccc; */}
.pageLink01 > li a { position: relative; display: block; text-align: center; color: #fff; border: 1px solid #333; }
.pageLink01 > li a:hover { color: #fff; background-color: #b03951; border: 1px solid #b03951;}
.pageLink01 > li.prevBtn a:after,
.pageLink01 > li.nextBtn a:after {
    position: absolute; content: ''; top: 50%; width: 6px; height: 6px; border: 0px; border-top: 1px solid #fff; border-right: 1px solid #fff;
}
.pageLink01 > li:hover a:after { border-top: 1px solid #fff; border-right: 1px solid #fff;}
.pageLink01 > li.prevBtn a:after,
.pageLink02 > li.prevBtn a:after {
    -ms-transform: rotate(-135deg); -webkit-transform: rotate(-135deg); transform: rotate(-135deg); margin-top: -3px; left: 15px;
}
.pageLink01 > li.nextBtn a:after,
.pageLink02 > li.nextBtn a:after {
    -ms-transform: rotate(45deg); -webkit-transform: rotate(45deg); transform: rotate(45deg); margin-top: -3px; right: 15px;
}


.related_sec{ width: 90%; margin: 0 auto 100px auto; }
.related_sec h2{ background: none; padding: 0; font-size: 2.3rem; }
.related_img{ margin-bottom: 10px; transition: 0.5s ease-in-out; }
.related_img:hover{ opacity: .6; }


h2{ position: relative; transition: .3s; font-size: 4rem; margin-bottom: 20px; font-weight: 900;  padding: 10px 10px 10px 20px; border-radius: 10px; background-color: #fff; }
h2:after{ position: absolute; left: 0; top: 0; content: ""; background-color: #fff;  }


/* お客様の声 */
.voice_sec{}
.voice_sec01{ width: 100%; padding: 20px; margin-bottom: 40px; }
.voice_sec01_ico{ top: -30px; width: 60px; height: 60px; }
.voice_sec01_ico i{ font-size: 3.5rem; line-height: 60px; }
.voice_sec01_tit{ font-size: 2rem; margin: 40px 0 0 0; }
.voice_sec01_dot{ text-align: center; margin: 5px auto 20px auto; }
.voice_sec01_companyname{ font-size: 1.6rem; }
.voice_sec01_name{ font-size: 1.8rem; }
.voice_sec01_name span{ font-size: 1.5rem; margin-left: 10px; }

.smb-balloon__figure {
  height: 80px !important;
  width: 80px !important;
}

.smb-balloon{ margin-bottom: 30px; }
.smb-balloon__body{ padding: 20px !important; line-height: 1.6; }
.smb-balloon__name{ font-size: 1.2rem !important; }


.voice_sec02{ position: relative; width: 100%; margin: 100px auto 40px auto; background-color: #fff; border-radius: 10px; padding: 50px 30px 30px 30px; }
.voice_sec02_dot{ text-align: center; margin: 60px auto; }
.voice_sec02_bottomtit{ top: -50px; font-size: 3rem; }
.voice_sec02_bottomtit span{ font-size: 1.8rem; }
.voice_sec02_list{ flex-wrap: wrap; }
.voice_sec02_item{ flex-basis: 100%; }
.voice_sec02_item_tit{ text-align: center; }
.voice_sec02_item_txt{ font-size: 1.5rem; line-height: 2; letter-spacing: 1px; padding-bottom: 30px; border-bottom: 1px dashed #666; margin-bottom: 30px; }
.voice_sec02_item_add{ font-size: 1.5rem; }
.voice_link_list{ margin-top: 20px; }
.voice_link_item{ margin-bottom: 20px; }
.voice_link_item a{ display: block; text-align: center; }

.voice_pagenation{ width: 90%; margin: 100px auto; }
.voice_pagenation_list{ display: flex; justify-content: space-between; }
.voice_pagenation_item{ flex-basis: 32%; }
.voice_pagenation_item a{ display: inline-block; font-size: 1.4rem; padding: 5px 10px; }
.voice_pagenation_item a:hover{ background-color: #fff; color: #333; }

.voice_pagenation_item_next a i{ margin-right: 10px; }
.voice_pagenation_item_prev a i{ margin-left: 10px; }

.voice_pagenation_item_next{}
.voice_pagenation_item_modoru{ text-align: center; }
.voice_pagenation_item_prev{ text-align: right; }

.voicelist_sec{}
.voicelist_list{ display: flex; justify-content: space-between; flex-wrap: wrap; }
.voicelist_item{ flex-basis: 100%; margin-bottom: 60px; }

.voicelist_img{ margin-bottom: 20px; }
.voicelist_img img{ border-radius: 10px; }
.voicelist_img a:hover{ opacity: .6; }

.voicelist_txt{ display: flex; justify-content: space-between; align-items: center; }
.voicelist_tit{ }
.voicelist_tit01{ font-size: 1.5rem; margin-bottom: 5px; }
.voicelist_name{ position: relative; font-size: 1.3rem; padding-left: 15px; }
.voicelist_name:before{ position: absolute; content: ""; top: .7em; left: 0; display: block; width: 8px; height: 1px; background-color: #333; }
.voicelist_arrow a{ display: block; width: 40px; height: 40px; background-color: var(--main-color); text-align: center; border-radius: 100%; border: 2px solid var(--main-color); }
.voicelist_arrow a i{ line-height: 40px; color: #fff; font-size: 2.2rem; transition: all .3s; }
.voicelist_arrow a:hover{ background-color: #fff; color: var(--main-color); }
.voicelist_arrow a:hover i{ color: var(--main-color); }





}
/* ----------------------------------------------------------
 SP CSS END
---------------------------------------------------------- */

/* ----------------------------------------------------------
 TAB CSS
---------------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1280px){

img,video {
  max-width: 100%;
  height: auto;
}

/* フォントサイズ10px=62.5% */
html{ font-size: 50%; }

/* 基本のフォントサイズ */
body{ font-size: 1.8rem; padding-top: 0; }

/* 非表示用 */
.noneTAB		{ display: none !important; }

/* ----------------------------------------------------------
 header
---------------------------------------------------------- */
header{ position: fixed; width: 100%; height: 50px; z-index: 100; }

.header_wrap{ background-color: #eee; height: 50px; display: flex; justify-content: space-between; align-items: center; }
.header_wrap .header_logo img{ width: 100%; height: auto; max-height: 35px; }
.header_wrap .gnavi_item > a{ padding: 35px 0; }
.header_wrap .gnavi_list li.has-child:before{ top: 45px; }

.header_logo{ flex-basis: 180px; margin-left: 10px; text-align: left; }

.header_sec{ }

.gnavi{ display: none; }

.header_contact{ position: absolute; top: 0; right: 50px; z-index: 999; }
.header_contact a{ display: flex; justify-content: center; align-items: center; width: 150px; height: 50px; border: 3px solid var(--main-color); }
.header_contact a i{ display: block; font-size: 4rem; margin-right: 10px; }
.header_contact a span{ display: block; font-size: 1.6rem; line-height: 1.2; font-weight: 700; }
.header_contact a:hover{ background-color: #fff; color: var(--main-color); }


.header_tel{ display: none; }





/* ----------------------------------------------------------
 footer
---------------------------------------------------------- */
/* ページ下部 固定メニュー */
.btm_menu{ display: none; }
	
footer{ background-color: #fff; padding-top: 40px; padding-bottom: 20px; }
.footer_sec{ width: 90%; margin: 0 auto; }
.footer_sec_list{ flex-wrap: wrap; }
.footer_sec_item{ text-align: center; }
.footer_sec_item:nth-child(1){ flex-basis: 100%; border-right: 0; padding-right: 0; margin-right: 0;  }
.footer_sec_item:nth-child(2){ flex-basis: 100%; }
.footer_logo{ width: 50%; margin: 0 auto 10px auto; }
.footer_logo img{ width: 100%; height: auto; max-height: 50px; }
.footer_tit{ font-size: 1.7rem; font-weight: 700; margin-bottom: 10px; }
.footer_add{ font-size: 1.4rem; }
.footer_telfax{ font-size: 1.4rem; }
.footer_telfax span{}

.footer_contact{ display: none; width: 70%; margin: 20px auto 0 auto; padding: 30px; flex-wrap: wrap; }
.footer_contact_tit{ flex-basis: 100%; margin-bottom: 20px; }
.footer_contact_tel{ flex-basis: 100%; display: flex; font-size: 2.7rem; justify-content: center; }
.footer_contact_tel i{ margin-right: 10px; }
.footer_contact_time{ font-size: 1.2rem; margin: 5px auto 0 auto; margin-bottom: 20px; padding-left: 0; text-align: center; }
.footer_contact_btn{ width: 100%; }
.footer_contact_btn a{ display: block; font-size: 1.6rem; text-align: center; font-weight: 700; padding: 15px; background-color: #fff; border-radius: 10px; }
.footer_contact_btn a:hover{ background-color: #ccc; }

.footer_sitemap{ display: none; }


	
/* ----------------------------------------------------------
 hx
---------------------------------------------------------- */
.h1_wrap{ padding: 20px 0; position: relative; height: auto; margin-bottom: 50px; }
.h1_tit{ width: 90%; margin: 0 auto; }
.h1_tit01{ font-size: 2rem; }
.h1_tit02{ font-size: 4.5rem; margin-bottom: 20px; }

h2{ font-size: 4rem; margin-bottom: 20px; font-family: zen-kaku-gothic-antique, sans-serif; font-weight: 900; font-style: normal; padding: 10px 10px 10px 20px; background-color: #fff; border-radius: 10px; }

h3{ font-size: 3.5rem; color: var(--main-color); padding: 15px 0; border-top: 2px solid #ccc; border-bottom: 2px solid #ccc; font-family: zen-kaku-gothic-antique, sans-serif; font-weight: 900; font-style: normal; margin-bottom: 30px; }

h4{ position: relative; font-size: 2.5rem; padding-bottom: 10px; border-bottom: 3px solid #333; font-family: zen-kaku-gothic-antique, sans-serif; font-weight: 900; font-style: normal; margin-bottom: 30px; }
h4:before{ position: absolute; bottom: -3px; left: 0; width: 30%; height: 3px; content: ""; background: #b23952; }

/* ぱんくず */
.breadcrumbs{ position: relative; z-index: 1; margin-top: 10px; }  
.breadcrumbs > span{ display: inline-block; position: relative; font-size: 1.4rem; margin: 0 0 0 20px; line-height: 1.2; color: #999; }
.breadcrumbs > span:before{ content: "/"; display: block; position: absolute; top: 0; left: -12px; color: #999; font-size: 1.4rem; }
.breadcrumbs > span:first-child:before{ content: ""; }
.breadcrumbs > span a{ color: #999; font-size: 1.4rem; }
.breadcrumbs > span:first-child{ margin: 0 0 0 0; }
.breadcrumbs > span a:hover{ opacity: 0.6; }



/* ----------------------------------------------------------
 contents
---------------------------------------------------------- */
.main{  }


.top_img{ width: 100%; position: absolute; top: 50px; right: 0; height: 350px; background: url("/wp-content/uploads/top_img01_sp.jpg") no-repeat center center; background-size: cover; margin: 0; border-radius: 0 ; }
.top_img:before{ border-radius: 0 0 0 30px; }

.top_tit{ bottom: 0; right: 0; font-size: 9rem; }


.top_sec{ width: 100%; margin: 0 auto; }

.top_news_sec{ width: 100%; margin: 0 auto; flex-wrap: wrap; padding: 20px 0; }
.top_news_tit{ flex-basis: 100%; padding: 0 20px; margin-bottom: 20px; }
.top_news_list{ flex-basis: 100%; }
.top_news_item{ display: flex; justify-content: space-between; align-items: center; padding-bottom: 15px; border-bottom: 1px solid #ccc; margin-bottom: 15px; }
.top_news_date01{ flex-basis: 13%; font-size: 1.5rem; color: #999; text-align: center; font-family: 'Readex Pro', sans-serif; font-weight: 400; font-style: normal; background-color: #fff; border-radius: 30px; padding: 2px 5px; }
.top_news_tit02{ flex-basis: 60%; font-size: 1.6rem; font-weight: 700; }
.top_news_tit02 a:hover{ opacity: .6; }

.top_news_tit01{ font-size: 5rem; text-align: left; margin-bottom: 10px; }
.top_news_tit01:first-letter{ color: var(--main-color); }
.top_news_tit01 span{ display: block; color: #333; font-size: 2rem; font-family: dnp-shuei-gothic-kin-std, sans-serif; font-weight: 600; font-style: normal; }

.top_news_btn01{ width: 150px; margin: 0 auto; }
.top_news_btn01 a{ display: block; color: #fff; font-size: 1.5rem; background-color: var(--main-color); border: 2px solid var(--main-color);  padding: 5px; text-align: center; border-radius: 5px; }
.top_news_btn01 a:hover{ background-color: #fff; color: var(--main-color); }

.top_news_btn{ width: 140px; margin: 0 0 0 auto; }
.top_news_btn a{ display: block; font-size: 1.5rem; color: #fff; border: 2px solid #425a9f; background-color: #425a9f; text-align: center; padding: 5px; }
.top_news_btn a:hover{ background: #fff; color: #425a9f; }

.top_news_cat01{ flex-basis: 18%; }
.top_news_cat01 .term_list{ display: flex; justify-content: flex-start !important; margin-bottom: 0; }
.top_column_item .term_list{ display: flex; justify-content: flex-start !important; margin-bottom: 10px; }
.column_item .term_list{ display: flex; justify-content: flex-start !important; margin-bottom: 10px; }
.top_news_cat01 .term_item{ flex-basis: auto !important; margin-right: 20px; }
.top_news_cat01 .term_item a{ display: inline-block; font-size: 1.2rem; color: #fff; background-color: var(--main-color); padding: 3px 15px; border-radius: 40px; border: 1px solid var(--main-color); }
.top_news_cat01 .term_item a:hover{ background-color: #fff; color: var(--main-color); }


.top_works{ margin: 0 auto 100px auto; padding-top: 30px; }
.top_works_tit{ margin-bottom: 50px; text-align: center; }
.top_works_tit01{ font-size: 5rem; color: #ccc; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; margin-right: 0; text-align: center; }
.top_works_tit01:first-letter{ color: var(--main-color); }
.top_works_tit01 span{ display: block; color: #333; font-size: 2rem; font-family: dnp-shuei-gothic-kin-std, sans-serif; font-weight: 600; font-style: normal; }

.top_works_tit_btn{ width: 260px; margin: 0 auto 60px auto; }
.top_works_tit_btn a{ display: block; color: #fff; background-color: #333; font-size: 1.8rem; font-weight: 900; padding: 10px 30px 10px 20px; border-radius: 5px; text-align: center; border: 2px solid #333; }
.top_works_tit_btn a:hover{ background-color: #fff; color: #333; }


.top_voice{ padding: 40px 0; }
.top_voice .top_works_tit01{ text-align: left; width: 90%; margin: 0 auto; }
.top_voice .top_works_tit01 span{ display: inline; margin-left: 20px; }
.top_voice .voicelist_list{ width: 90%; margin: 0 auto; }
.top_voice .voicelist_list:after{ content: ""; display: block; width: 32%; }
.top_voice .voicelist_item{ flex-basis: 48%; }
.top_voice .voicelist_item img{ width: 100%; height: auto; }



.top_works_list{ display: flex; justify-content: flex-start; flex-wrap: wrap; width: 90%; margin: 0 auto; }
.top_works_item{ flex-basis: 31%; margin: 0 1% 40px 1%; display: flex; flex-wrap: wrap; transition: .5s; }



.top_works_cat{ margin-bottom: 5px; }
.top_works_cat a{ display: inline-block; color: #fff; font-size: 1.2rem; background-color: var(--main-color); padding: 3px 10px; border-radius: 30px; text-align: center; letter-spacing: 1px; border: 1px solid var(--main-color); }
.top_works_cat a:hover{ background-color: #fff; color: var(--main-color); }

.top_works_tit02{ flex-basis: 98%; font-size: 1.4rem; font-weight: 700; margin-bottom: 5px; }
.top_works_eyecatch{ flex-basis: 100%; }
.top_works_eyecatch{ margin-bottom: 5px; position: relative; box-shadow: 0px 0px 1px 1px #ccc; border-radius: 10px; transition: 0.5s ease-in-out; }
.top_works_eyecatch:hover{ opacity: .6; }

.top_works_eyecatch img,
.top_works_eyecatch canvas{ width: 100%; height: auto; border-radius: 10px; }
.top_works_eyecatch img:hover,
.top_works_eyecatch canvas:hover{ }




.top_service{ background-color: #f5f5f5; margin-bottom: 60px; }
.top_service{ padding: 40px 0; }
.top_service .top_works_tit01{ text-align: left; width: 90%; margin: 0 auto; }
.top_service .top_works_tit01 span{ display: inline; margin-left: 20px; }

.top_service_list{ width: 100%; flex-wrap: wrap; margin-bottom: 40px; }
.top_service_item{ flex-basis: 40%; margin: 0 1% 30px 1%; }
.top_service_item a{ display: block; padding: 30px; background-color: #fff; border-radius: 10px; }
.top_service_ico{ font-size: 7rem; text-align: center; }
.top_service_tit{ font-size: 2.1rem; font-weight: 700; text-align: center; margin-bottom: 10px; }
.top_service_txt{ font-size: 1.5rem; line-height: 1.8; min-height: 70px; }




.top_column{ background-color: #f5f5f5; padding: 40px 0; }

.top_column .top_works_tit01{ text-align: left; width: 90%; margin: 0 auto; }
.top_column .top_works_tit01 span{ display: inline; margin-left: 20px; }

.top_column_list{ width: 90%; margin: 0 auto; flex-wrap: wrap; }
.top_column_item{ flex-basis: 48%; margin-bottom: 40px; }
.top_column_item a{  }


.top_column_eyecatch{ margin-bottom: 20px; }
.top_column_eyecatch a:hover{ opacity: .6; }
.top_column_eyecatch img{ width: 100%; height: auto; }

.top_column_date{ font-size: 1.3rem; color: #999; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal;  }
.top_column_tit{ font-size: 1.7rem; font-weight: 400; }










/* ページ内アンカーリンク */
.main_nav{ position: relative; background-color: #004070; }
.main_nav nav{ position: absolute; right: 0; top: -50px; background-color: #004f8a; width: 80%; margin: 0 0 0 auto; box-shadow: 0px 13px 10px -6px rgba(0, 0, 0, 0.29); padding: 40px 50px 50px 50px; }
.main_nav nav ul{ display: flex; justify-content: flex-start; }
.main_nav nav ul li{ margin-right: 30px; position: relative; }
.main_nav nav ul li a{ display: block; color: #fff; font-size: 2rem; font-family: dnp-shuei-mincho-pr6n, sans-serif; font-weight: 400; font-style: normal; line-height: 1; padding-left: 30px; }
.main_nav nav ul li:before{ position: absolute; left: 0; top: 15px; content: ""; display: block; width: 15px; height: 2px; background-color: #fff; }
.main_nav nav ul li a:hover{ opacity: .6; }

.main{ width: 90%; margin: 0 auto 60px auto;}


/* 2カラム */
.column02{ display: flex !important; justify-content: space-between !important; }
.column02 .wp-block-column{ flex-basis: 48% !important; }
.column02 h3{ font-size: 4rem; font-weight: 700; margin-bottom: 10px; }
.column02 .wp-block-image{ margin-bottom: 20px !important; text-align: center; }
.column02 .wp-block-image img{ border-radius: 10px !important; }
.column02 .wp-block-column p{ font-size: 1.7rem; line-height: 1.8; }

/* 2カラム 33:66 */
.column36{ display: flex !important; justify-content: space-between !important; }
.column36 .wp-block-column:nth-child(1){ flex-basis: 26% !important; }
.column36 .wp-block-column:nth-child(2){ flex-basis: 72% !important; }

.txt01{ font-size: 1.7rem; line-height: 1.8; }


.tsudo_sec{}
.tsudo_list{ display: flex; justify-content: space-between; }
.tsudo_item{ flex-basis: 23%; border: 2px solid #b23952; background-color: #fff; border-radius: 10px; padding-bottom: 20px; }
.tsudo_tit{ font-size: 2.4rem; color: #fff; background-color: var(--main-color); padding: 5px; text-align: center; font-weight: bold; margin-bottom: 20px; }
.tsudo_ico{ text-align: center; font-size: 8rem; margin-bottom: 5px; }
.tsudo_txt{ font-size: 1.8rem; text-align: center; font-weight: bold; width: 86%; margin: 0 auto; letter-spacing: 1px; }




/* ブロックエディタ用 */
p + p {
  margin-top: 1.5em;
}
em {
  font-style: italic;
}
blockquote {
  margin: 1.5em 0;
  border-left: 5px solid #ddd;
  padding: 1em 0 1em 10px;
  color: #777;
}
blockquote p + p {
  margin-top: 0.5em;
}
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.alignright {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}
.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
/*
.wp-caption,
[class*='wp-image'] {
  display: block;
  max-width: 100% !important;
  margin-top: 1.5em;
  text-align: center;
}
*/
.wp-caption-text {
  margin-top: 0;
}

.wp-block-image{ margin: 0 !important; text-align: center; }
.wp-block-image figure{  width: 50%; margin: 0 auto; }

.main_contact{ width: 90%; background-color: #fff; border-radius: 10px; margin: 0 auto 100px auto; padding: 30px; }
.main_contact_tit{ font-size: 6rem; text-align: center !important; }
.main_contact_txt{ font-size: 2.4rem; font-weight: 700; text-align: center; margin-bottom: 40px; }

.main_contact_sec{}
.main_contact_sec_list{ display: flex; align-items: center; justify-content: space-between; }
.main_contact_sec_item{ flex-basis: 50%; }
.main_contact_sec_item:nth-child(1){ flex-basis: 56%; padding-right: 2%; border-right: 1px solid #ccc; }
.main_contact_sec_item:nth-child(2){ flex-basis: 40%; margin-left: 2%; }
.main_contact_sec_tel{ display: flex; align-items: center; flex-wrap: wrap; }
.main_contact_sec_tel_ico{ width: 60px; height: 60px; text-align: center; background-color: var(--main-color); border-radius: 100%; margin-right: 10px; }
.main_contact_sec_tel_ico i{ color: #fff; font-size: 4rem; line-height: 60px; }
.main_contact_sec_tel_num{ font-size: 5rem; font-family: "Arial", Gadget, "sans-serif"; font-weight: 700; font-style: normal; line-height: 1; }
.main_contact_sec_tel_time{ margin-left: 40px; margin-top: 5px; font-size: 2rem; font-weight: 400; }
.main_contact_sec_btn{}
.main_contact_sec_btn a{ display: block; font-size: 2.6rem; color: #fff; background-color: var(--main-color); border: 2px solid var(--main-color); text-align: center; padding: 20px; border-radius: 10px; font-weight: 700; }
.main_contact_sec_btn a i{ font-size: 3.5rem; margin-right: 15px; vertical-align: middle; }
.main_contact_sec_btn a:hover{ background-color: #fff; color: var(--main-color); }


.pdca_sec{}
.pdca_list{}
.pdca_item{ display: flex; align-items: center; border: 1px solid; background-color: #fff; padding: 5px 10px; border-radius: 5px; margin-bottom: 20px; }
.pdca_item_p{ border-color: #3e4292; }
.pdca_item_d{ border-color: #2469bf; }
.pdca_item_c{ border-color: #149fda; }
.pdca_item_a{ border-color: #01b2a8; }
.pdca_tit01{ color: #fff; font-size: 4rem; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; width: 50px; height: 50px; line-height: 50px; border-radius: 5px; text-align: center; margin-right: 20px; }
.pdca_item_p .pdca_tit01{ background-color: #3e4292; }
.pdca_item_d .pdca_tit01{ background-color: #2469bf; }
.pdca_item_c .pdca_tit01{ background-color: #149fda; }
.pdca_item_a .pdca_tit01{ background-color: #01b2a8; }
.pdca_tit02{ flex-basis: 14%; font-size: 4rem; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; }
.pdca_item_p .pdca_tit02{ color: #3e4292; }
.pdca_item_d .pdca_tit02{ color: #2469bf; }
.pdca_item_c .pdca_tit02{ color: #149fda; }
.pdca_item_a .pdca_tit02{ color: #01b2a8; }
.pdca_txt01{ font-size: 2.3rem; }


.works_agency_sec{ width: 100%; margin: 0 auto 100px auto; }
.works_agency_list{ display: flex; justify-content: space-between; margin-bottom: 60px; }
.works_agency_item{ flex-basis: 48%; }
.works_agency_eyecatch{ margin-bottom: 10px; }
.works_agency_eyecatch a:hover{ opacity: .6; }
.works_agency_tit01{ font-size: 2.3rem; }
.works_agency_btn{ width: 480px; margin: 0 auto; }
.works_agency_btn a{ display: block; color: #fff; font-size: 2.5rem; font-weight: 700; letter-spacing: -.5px; background-color: var(--main-color); border: 2px solid var(--main-color); padding: 20px; border-radius: 10px; text-align: center; }
.works_agency_btn a:hover{ background-color: #fff; color: var(--main-color); }



/* 実績（仮表示） */
#worksSec{ width: 100%; margin: 0 auto 80px auto; }
#worksSec > ul{ display: flex; margin-bottom: 60px  }
#worksSec > ul > li{}
/*
#worksSec > ul > li h3{ font-size: 4rem; margin-bottom: 10px; }
*/
#worksSec > ul > li .worksSecDate{}
#worksSec > ul > li .worksSecTxt{ margin-bottom: 40px; }
#worksSec > ul > li .worksSecTxt > ul{ }

#worksSec > ul > li .worksSecTxt h3{ font-size: 2rem; }
#worksSec > ul > li .worksSecTxt p{ font-size: 1.6rem; }
#worksSec dl#worksSecSpec{ border-left: 0; }
#worksSec dl#worksSecSpec dt{ flex-basis: 25%; background: #eee; padding: 10px 20px; border-top: 1px solid #ccc; border-left: 1px solid #ccc; font-size: 1.6rem; }
#worksSec dl#worksSecSpec dd{ flex-basis: 75%; padding: 10px 20px; margin: 0; border-left: 1px solid #ccc; border-top: 1px solid #ccc; font-size: 1.6rem; background-color: #fff; }
#worksSec dl#worksSecSpec dd i{ margin-left: 10px; font-size: 1.6rem; }

#worksSecImg > ul{ display: flex; justify-content: space-between; }
#worksSecImg > ul > li:nth-child(1){ flex-basis: 78%; }
#worksSecImg > ul > li:nth-child(2){ flex-basis: 20%; }
#worksSecImg > ul > li img{ width: 100%; height: 1000px; object-fit: cover; object-position: top left; border: 1px solid #ccc !important; }

#workslistSec{  width: 1500px; margin: 0 auto 80px auto; }
#workslistSec > ul{ display: flex; justify-content: space-between; flex-wrap: wrap; margin-bottom: 60px; }
#workslistSec > ul > li{ flex-basis: 32%; margin-bottom: 40px; }
#workslistSec > ul > li h3{ font-size: 2.2rem;  margin-bottom: 10px; line-height: 1.6; }
#workslistSec > ul > li .worksSecTxt{ margin-bottom: 40px; }
#workslistSec > ul > li .worksSecTxt ul{ display: flex; justify-content: space-between;  flex-wrap: wrap; }
#workslistSec > ul > li .worksSecTxt ul li:first-child{ flex-basis: 100%; margin-bottom: 10px; display: flex; justify-content: space-between; }
#workslistSec > ul > li .worksSecTxt ul li:first-child .workslistSecImg:nth-child(1){ flex-basis: 79%; }
#workslistSec > ul > li .worksSecTxt ul li:first-child .workslistSecImg:nth-child(2){ flex-basis: 20%; }
#workslistSec > ul > li .worksSecTxt ul li:nth-child(2){ flex-basis: 100%; }
#workslistSec > ul > li .worksSecTxt ul li a:hover{ opacity: 0.6; }
#workslistSec > ul > li .worksSecTxt p{ font-size: 1.6rem; }
#workslistSec dl#worksSecSpec{ display: flex; flex-wrap: wrap; border: 1px solid #ccc; border-top: none; margin-bottom: 40px; }
#workslistSec dl#worksSecSpec dt{ background: #ddd; width: 30%; padding: 5px 15px; border-top: 1px solid #ccc; font-size: 1.5rem; }
#workslistSec dl#worksSecSpec dd{ padding: 5px 15px; margin: 0; width: 70%; border-left: 1px solid #ccc; border-top: 1px solid #ccc; font-size: 1.5rem; }
#workslistSec dl#worksSecSpec dd i{ margin-left: 10px; font-size: 1.6rem; }

#workslistSec .workslistSecImg img{ width: 100%; height: 300px; object-fit: cover; object-position: top left; border: 1px solid #ccc !important; }



.site_cat{ margin-bottom: 40px; }
.site_cat a{ display: inline-block; background-color: var(--main-color); color: #fff; padding: 3px 10px; border: 2px solid #b23952; }
.site_cat a:hover{ background-color: #fff; color: var(--main-color); }

#worksSec h2{ position: relative; padding-bottom: 5px; border-bottom: 4px solid #fff; margin-bottom: 60px; line-height: 1.3; }
#worksSec h2:before{ font-size: 1.5rem; position: absolute; top: -24px; left: 0; height: 24px; padding: 0 1em; color: #333; background-color: #fff; content: "サイト名"; }

#worksSec h3{ position: relative; }
#worksSec h3:before{ font-size: 1.5rem; position: absolute; top: -24px; left: 0; height: 24px; padding: 0 1em; color: #333; background-color: #fff; content: "企業名"; }


.pagination{ width: 1500px; margin: 0 0 80px auto; display: flex; justify-content: center; }
.pagination span,
.pagination a{ display: block; background-color: #fff; color: var(--main-color); font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; width: 30px; height: 30px; text-align: center; line-height: 30px; margin: 0 10px; border: 1px solid var(--main-color); border-radius: 5px; }
.pagination .current{ background-color: var(--main-color); color: #fff; }
.pagination a:hover{ background-color: var(--main-color); color: #fff; }

.pagination .modoru a{ width: 100px; font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif; padding: 0 10px; }



.pagination_news{ width: 100%; margin: 0 0 40px auto; }




.ad_sec{ width: 1200px; margin: 0 auto 100px auto; }
.ad_sec_txt{ background-color: #fff; padding: 15px; font-size: 2.3rem; margin-bottom: 30px; }
.ad_list{ display: flex; justify-content: space-between; margin-bottom: 60px; }
.ad_item{ flex-basis: 48%; }
.ad_item_txt01{ font-size: 1.7rem; letter-spacing: 2px; line-height: 1.9; }
.ad_item_img01{  }
.ad_item_img01 img{ width: 100%; height: auto; }

.ad_sec_tit{ margin: 40px 0; }
.ad_sec_tit_list{ display: flex; align-items: center; margin-bottom: 30px; }
.ad_sec_tit_item{ margin-right: 30px; }
.ad_sec_tit_item span{ color: #fff; font-size: 1.8rem; font-weight: 700; text-align: center; border-radius: 5px; margin-right: 10px; padding: 10px 20px; }
.ad_sec_tit_item_companyname{}
.ad_sec_tit_item_companyname span{ background-color: var(--main-color); }
.ad_sec_tit_item_txt01{}
.ad_sec_tit_item_txt01 span{ background-color: #333; }

.ad_item_kadai01{ background-color: #fff; padding: 30px; border-radius: 10px; }
.ad_sec_tit_kadai{ display: flex; align-items: center; margin-bottom: 20px; }
.ad_sec_tit_kadai span{ display: block; content: ""; width: 60px; height: 60px; border-radius: 100%; text-align: center; background-color: #4974c2; }
.ad_sec_tit_kadai i{ color: #fff; font-size: 3.3rem; line-height: 60px; }
.ad_sec_tit_kadai p{ font-size: 3.5rem; color: #4974c2; font-weight: 700; margin-left: 20px; }
.ad_sec_txt_kadai{ font-size: 1.7rem; letter-spacing: 2px; line-height: 1.9; margin-bottom: 30px; }
.ad_sec_tit_mokuhyou{ font-size: 1.8rem; font-weight: 700; }
.ad_sec_tit_mokuhyou span{ font-size: 2.3rem; background-color: #ead83c; padding: 10px 25px; border-radius: 10px; margin-right: 25px; }
.ad_item_kaiketsu01{ background-color: #fff; padding: 30px; border-radius: 10px; }
.ad_sec_txt_kaiketsu{  }
.ad_sec_tit_kaiketsu{ display: flex; align-items: center; margin-bottom: 20px; }
.ad_sec_tit_kaiketsu span{ display: block; content: ""; width: 60px; height: 60px; border-radius: 100%; text-align: center; background-color: var(--main-color); }
.ad_sec_tit_kaiketsu i{ color: #fff; font-size: 3.3rem; line-height: 60px; }
.ad_sec_tit_kaiketsu p{ font-size: 3.5rem; color: var(--main-color); font-weight: 700; margin-left: 20px; }
.ad_sec_tit_kaiketsu01{ margin-left: 20px; font-size: 1.8rem; background-color: #ead83c; padding: 10px 25px; border-radius: 10px; font-weight: 700; }
.ad_sec_txt_kaiketsu{ font-size: 1.7rem; letter-spacing: 2px; line-height: 1.9; margin-bottom: 30px; }
.ad_sec_kekka{ display: flex; align-items: center; }
.ad_sec_kekka_tit{ font-size: 2.3rem; color: #fff; background-color: var(--main-color); padding: 10px 25px; border-radius: 10px; font-weight: 700; margin-right: 25px; }
.ad_sec_kekka_txt{ font-size: 2rem; letter-spacing: 2px; font-weight: 700; line-height: 1.5; }
.ad_sec_kekka_txt span{ color: var(--main-color); }


.table_subsidy01{ width: 80%; margin: 0 auto; }
.table_subsidy01 table{ border-collapse: collapse; border: 1px solid #ccc !important; }
.table_subsidy01 th{ width: 25%; font-size: 2.2rem; border: 1px solid #ccc !important; }
.table_subsidy01 td{ font-size: 2.2rem; background-color: #fff; border: 1px solid #ccc !important; }
.table_subsidy01 td span{ margin-left: 20px; background-color: var(--main-color); color: #fff; padding: 3px 10px; font-weight: 700; font-size: 2rem; }

.table_company01{ width: 90%; margin: 0 auto; }
.table_company01 table{ border-collapse: collapse; border: 1px solid #ccc !important; }
.table_company01 th{ width: 25%; font-size: 2rem; border: 1px solid #ccc !important; }
.table_company01 td{ font-size: 2rem; background-color: #fff; border: 1px solid #ccc !important; }
.table_company01 td span{ margin-left: 20px; background-color: var(--main-color); color: #fff; padding: 3px 10px; font-weight: 700; font-size: 2rem; }

.map_sec iframe {
  width: 100%;
  aspect-ratio: 16/9;
}


.child_sec{}
.child_sec_list{ display: flex; justify-content: space-between; flex-wrap: wrap; }
.child_sec_item{ flex-basis: 48%; margin-bottom: 40px; }
.child_sec_item a:hover{ opacity: .6; }
.child_sec_item_thumb{ margin-bottom: 20px; }
.child_sec_item_thumb img{ width: 100%; height: auto; border-radius: 10px; }
.child_sec_item_tit{ font-size: 2.3rem; font-weight: 700; margin-bottom: 10px; }


/* 企業情報 */
.company .top_works_tit01{ font-size: 5rem; color: #ccc; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; margin-right: 0; text-align: center; width: initial;}
.company .top_works_tit01:first-letter{ color: var(--main-color); }
.company .top_works_tit01 span{ display: block; color: #333; font-size: 2rem; font-family: dnp-shuei-gothic-kin-std, sans-serif; font-weight: 600; font-style: normal; }
.company .wp-block-image figure{width: 100%; max-width: 740px; margin: 0 auto;}


/* お問合せページ */
.form {
}

.form__table {
  width:100%;
  max-width: auto;
  margin: 0 auto 40px auto;
	border-bottom: .1rem solid #ccc;
}

.form-head p{ text-align: right; }

input, button, textarea {
  border: .1rem solid #ccc;
  border-radius: .5rem;
  padding: 1rem;
	font-size: 1.8rem;
}

input.your-company,
input.your-division{
  width: 78%;
}

input.your-name-last,
input.your-name-first,
input.your-name-kana-last,
input.your-name-kana-first,
input.your-post{
  width: 37%;
	margin-right: 5px;
}

input.your-prefecture,
input.your-municipalities,
input.your-block,
input.your-others{
  width: 106%;
}

input.your-tell,
input.your-email,
input.your-email_confirm{
  width: 78%;
}

textarea {
  width: 78%;
  height: 10.6em;
  line-height: 1.3;
}

.form__table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: .1rem solid #ccc;
  padding: 15px;
  width: 100%;
	position: relative;
}


.form__table .form-head {
  width: 40%;
  min-width: auto;
}

.form__table dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 3rem;
  font-size: 1.7rem;
  letter-spacing: 0.001em;
}

.textarea .form-head {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form__table dd {
  width: 60%;
}

.form__table .post {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.form__table .address {
  display: block;
}

.address-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.address-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.address-items .address-item {
  margin-top: 1.8rem;
}

.address-item dt {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.form-sub {
  color: #999;
  white-space: nowrap;
  padding-left: 1em;
	min-width: 6em;
}

.must {
	position: absolute;
	left: 0;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #fff;
  padding: .6rem 1rem 1rem 1rem;
  background: #bd2e2e;
  width: 7rem;
  height: 3.5rem;
  text-align: center;
}

.optional{ position: absolute; left: 0; font-size: 1.5rem; letter-spacing: 0.1em; color: #fff; padding: .6rem 1rem 1rem 1rem; background: #999; width: 7rem; height: 3.5rem; text-align: center; }

input.wpcf7-submit{
  font-size: 2rem;
  padding: .5rem 1.5rem;
  border: none;
  border-radius: .5rem;
  color: #000;
}

.form-btn {
  text-align: center;
	padding-bottom: 40px;
	padding-top: 40px;
	border-top: 1px solid #444;
}

input.wpcf7-submit {
  margin-right: 1rem;
  font-size: 2.5rem;
	cursor: pointer;
}

input.wpcf7-submit:hover{ background-color: #999; }

.wpcf7-spinner {
  display: none;
}

::placeholder{ color: #aaa; }

.contact_submit_btn{ text-align: center; margin-bottom: 60px; }
.contact_submit_btn input{ background-color: var(--main-color); color: #fff; font-size: 2rem; letter-spacing: 2px; padding: 15px 25px; cursor: pointer; transition: 0.5s ease-in-out; }


.contact .main p{ font-size: 2rem; line-height: 1.8; letter-spacing: 1px; }
.contact ol{ margin: 10px 0 0 30px; }
.contact ol li{ list-style-type: decimal; font-size: 2rem; }


.form_sec{ display: flex; background-color: #ebebeb; border-radius: 10px; padding: 40px; margin-bottom: 20px; }
.form_sec_tit{ position: relative; font-size: 2rem; font-weight: 700; padding-left: 25px; }
.form_sec_tit:before{ content: ""; display: block; position: absolute; left: 0; top: 7px; width: 16px; height: 16px; background-color: #222; }
.form_sec .form__table{ margin-bottom: 0; }



.wsp-pages-list{}
.page_item{ list-style: none; margin-bottom: 10px; position: relative; padding-left: 30px; }
.page_item:before{ position: absolute; content: ""; display: block; top: 10px; left: 0; width: 15px; height: 15px; background-color: var(--main-color); border-radius: 100%; }
.page_item a{ font-size: 2.3rem; font-weight: 700; }
.wsp-pages-list{}
.page_item_has_children{}
.children{ margin: 10px 0 0 30px; }
.children li{ position: relative; padding-left: 20px; list-style: none; }
.children li a{ font-size: 1.8rem; font-weight: normal; }
.children li:before{ position: absolute; content: ""; display: block; top: 12px; left: 0; width: 10px; height: 2px; background-color: var(--main-color); }


p.company_txt{ font-size: 2.5rem; }

.news_sec{ margin-bottom: 60px; }
.news_list{}
.news_item{ display: flex; align-items: center; background-color: #fff; border-radius: 10px; padding: 20px; margin-bottom: 20px; }
.news_date{ font-size: 1.4rem; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; margin-right: 20px; color: #999; }
.news_tit{ font-size: 1.8rem; font-weight: 700; }

.news_detail{}
.news_detail_date{ font-size: 1.6rem; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; margin-right: 20px; color: #999; margin-bottom: 10px; text-align: right; }
.news_detail_txt{}


.pagination_single_list{ width: 100%; margin: 0 auto; display: flex; }
.pagination_single_item{ flex-basis: 33%; }
.pagination_single_item:nth-child(1){ text-align: left; }
.pagination_single_item:nth-child(2){ text-align: center; }
.pagination_single_item:nth-child(3){ text-align: right; }
.pagination_single_item{ flex-basis: 33%; }
.pagination_single_item a{}
.pagination_single_item a:hover{}


.wp-pagenavi{ width: 100%; margin: 40px auto 80px auto; display: flex; justify-content: center; }
.wp-pagenavi a{ display: block; font-size: 1.8rem; text-align: center; color: var(--main-color); background-color: #fff; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; border-color: var(--main-color) !important; border-radius: 5px; width: 30px; height: 30px; line-height: 29px; padding: 0 !important; }
.wp-pagenavi a:hover{ background-color: var(--main-color); color: #fff; }
.wp-pagenavi span.current{ display: block; width: 32px; height: 32px; line-height: 25px; text-align: center; background-color: var(--main-color); color: #fff; border: 1px solid var(--main-color) !important; border-radius: 5px; margin: 2px; }



/* コラム */
.column_sec{ width: 90%; margin: 0 auto 0 auto; flex-wrap: wrap; }
.column_sec01{ flex-basis: 100%;  }
.column_sec_list{}
.column_sec_item{ background-color: #fff; border-radius: 10px; padding: 20px; margin-bottom: 20px; }
.column_sec_item > ul{ display: flex; justify-content: space-between; align-items: center; }
.column_sec_item > ul > li{ }
.column_sec_item > ul > li:nth-child(1){ flex-basis: 75%; }
.column_sec_item > ul > li:nth-child(2){ flex-basis: 20%; text-align: center; }
.column_sec_date01{ font-size: 1.2rem; color: #999; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; }
.column_sec_tit01{ font-size: 2.2rem; font-weight: 700; margin-bottom: 10px; }
.column_sec_txt01{ font-size: 1.6rem; }
.column_sec_btn01{ width: 100px; margin: 10px 0 0 auto; }
.column_sec_btn01 a{ display: block; background-color: var(--main-color); color: #fff; text-align: center; border: 1px solid var(--main-color); padding: 3px 10px; border-radius: 40px; font-size: 1.5rem; }
.column_sec_btn01 a:hover{ background-color: #fff; color: var(--main-color); }
.column_sec_img01{}
.column_sec_img01 a:hover{ opacity: .6; }
.column_sec_img01 img{ width: 130px; height: 130px; object-fit: cover; border-radius: 100%; }


/* 見出し */
.column_sec01 h2 {
font-size: 2.3rem;
	line-height: 1.3;
padding: 15px 0 15px 15px;
margin-bottom: 40px !important;
}
.column_sec01 h2 span{ text-align: left; color: #b13951; font-size: 2.3rem !important; }

.column_sec01 h3 {
padding: 10px;
border-top: 2px solid #b13951;
background-color: #eee;
color: #333;
margin-bottom: 30px;
}

.column_sec01 h4{ position: relative; font-size: 1.8rem; background: linear-gradient(transparent 60%, #efcdd4 60%); padding: 0 20px 0 35px; margin-bottom: 30px; font-family: ryo-gothic-plusn, sans-serif; font-weight: 800; font-style: normal; }
.postContents h4:before{ position: absolute; content: ""; left: 6px; top: 6px; width: 20px; height: 20px; border-radius: 100%; background-color: #b13951; }

.column_sec01 h5 {
	color: #333;
	min-height: auto;
	padding: 0 0 0 20px;
	line-height: 23px;
	position: relative;
	margin: 0 0 10px 0;
	text-align: left;
	border: none;
	font-weight: normal;
}
.column_sec01 h5:before { top: 5px; content: " "; display: inline-block; background: #0063b4; width: 15px; height: 15px; position: absolute; left: 0;}
.column_sec01 h6 {
	color: #333;
	font-weight: normal;
	padding: 2px 0 0 20px;
	margin-bottom: 10px;
	line-height: 22px;
	position: relative;
}
.column_sec01 h6:before { content: ''; width: 7px; height: 7px; border: 0px; border-top: solid 3px #0063b4; border-right: solid 3px #0063b4; -ms-transform: rotate(45deg); -webkit-transform: rotate(45deg); transform: rotate(45deg); position: absolute; top: 50%; left: 0; margin-top: -4px;}


.sidebar_sec figure img{ width: 100%; height: auto; }
.sidebar_sec_list{}
.sidebar_sec_item{ }
.sidebar_sec_item a{ display: flex; flex-direction: initial; justify-content: space-between; align-items: center; }
.sidebar_sec_item figure{ width: 15%; margin: 0 auto; }
.sidebar_sec_item figure img{ width: 80px; height: 80px; object-fit: cover; }
.sidebar_sec_item p{ flex-basis: 78%; }
.sidebar_sec_item_date01{ display: block; font-size: 1.3rem; color: #999; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; }
.sidebar_sec_item_tit01{ font-size: 1.7rem; font-weight: 700; line-height: 1.2; }

.monthly_archives{}
.monthly_archives li{ display: inline-block; }
	
.sidebar_column{ flex-basis: 100%; }
.sidebar_column h3{ font-size: 2rem; }
.sidebar_sec{ background-color: #fff; padding: 20px; border-radius: 10px; margin-bottom: 40px; }
.sidebar_sec > ul{  }
.sidebar_sec > ul > li{ border-bottom: 1px solid #ccc; font-size: 1.5rem; padding: 5px; }

.pageLink01 { padding-top: 60px; margin-bottom: 200px; }
.pageLink01 > li { width: 49%;}
.pageLink01 > li a { font-size: 1.4rem; background-color: #fff; }
.pageLink01 > li.prevBtn { float: left;}
.pageLink01 > li.nextBtn { float: right;}
.pageLink01 > li.prevBtn a { padding: 20px 10px 20px 30px;}
.pageLink01 > li.nextBtn a { padding: 20px 30px 20px 10px;}
.pageLink01 > li a:after { -webkit-transition: 0.5s ease-in-out; -moz-transition: 0.5s ease-in-out; -o-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out;}

.pageLink01 { border-top: 1px solid #ccc;}
.pageLink01 > li a { position: relative; display: block; text-align: center; color: #333; border: 1px solid #ccc; letter-spacing: .08em; text-indent: .08em; line-height: 1.6; height: 100%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.pageLink01 > li a:hover { color: #fff; background-color: #b03951; border: 1px solid #b03951;}
.pageLink01 > li.prevBtn a:after,
.pageLink01 > li.nextBtn a:after {
    position: absolute; content: ''; top: 50%; width: 6px; height: 6px; border: 0px; border-top: 1px solid #333; border-right: 1px solid #333;
}
.pageLink01 > li:hover a:after { border-top: 1px solid #fff; border-right: 1px solid #fff;}
.pageLink01 > li.prevBtn a:after,
.pageLink02 > li.prevBtn a:after {
    -ms-transform: rotate(-135deg); -webkit-transform: rotate(-135deg); transform: rotate(-135deg); margin-top: -3px; left: 15px;
}
.pageLink01 > li.nextBtn a:after,
.pageLink02 > li.nextBtn a:after {
    -ms-transform: rotate(45deg); -webkit-transform: rotate(45deg); transform: rotate(45deg); margin-top: -3px; right: 15px;
}


/* お客様の声 */
.voice_sec{}
.voice_sec01{ position: relative; width: 90%; margin: 0 auto; background-color: #fff; border-radius: 10px; padding: 30px; margin-bottom: 40px; text-align: center; }
.voice_sec01_ico{ position: absolute; top: -40px; left: 0; right: 0; margin: 0 auto; width: 80px; height: 80px; background-color: var(--main-color); text-align: center; border-radius: 100%; }
.voice_sec01_ico i{ color: #fff; font-size: 4rem; line-height: 80px; }
.voice_sec01_tit{ font-size: 3.2rem; text-align: center; font-family: dnp-shuei-gothic-kin-std, sans-serif; font-weight: 600; font-style: normal; margin: 40px 0 0 0; }
.voice_sec01_dot{ text-align: center; margin: 20px auto; }
.voice_sec01_companyname{ font-size: 2rem; text-align: center; }
.voice_sec01_name{ font-size: 2.5rem; text-align: center; margin-bottom: 20px; }
.voice_sec01_name span{ font-size: 2rem; margin-left: 10px; }
.voice_sec01_img{ margin: 0 auto; }
.voice_sec01_img img{ border-radius: 10px; }

.smb-balloon__figure {
  height: 80px !important;
  width: 80px !important;
}

.smb-balloon{ margin-bottom: 30px; }
.smb-balloon__body{ padding: 30px !important; line-height: 1.8; }
.smb-balloon__name{ font-size: 1.2rem !important; }


.voice_sec02{ position: relative; width: 100%; margin: 100px auto 40px auto; background-color: #fff; border-radius: 10px; padding: 60px 40px 40px 40px; }
.voice_sec02_dot{ text-align: center; margin: 60px auto; }
.voice_sec02_bottomtit{ position: absolute; top: -40px; left: 0; right: 0; margin: 0 auto;  text-align: center; font-size: 3.2rem; font-family: dnp-shuei-gothic-kin-std, sans-serif; font-weight: 600; font-style: normal; }
.voice_sec02_bottomtit span{ display: block; font-size: 2rem; color: var(--main-color); font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; }
.voice_sec02_list{ display: flex; justify-content: space-between; }
.voice_sec02_item{ flex-basis: 48%; }
.voice_sec02_item_tit{ margin-bottom: 20px; }
.voice_sec02_item_txt{ font-size: 1.5rem; line-height: 2; letter-spacing: 1px; padding-bottom: 30px; border-bottom: 1px dashed #666; margin-bottom: 30px; }
.voice_sec02_item_add{ font-size: 1.5rem; }
.voice_link_list{ margin-top: 20px; }
.voice_link_item{ margin-bottom: 20px; }
.voice_link_item a{ display: inline-block; color: #fff; font-size: 1.4rem; background-color: var(--main-color); border: 2px solid var(--main-color); padding: 8px 20px; border-radius: 40px; }
.voice_link_item a:hover{ background-color: #fff; color: var(--main-color); }
.voice_sec02_item_img{}
.voice_sec02_item_img img{ width: 100%; height: auto; border-radius: 10px; }

.voice_pagenation{ width: 90%; margin: 100px auto; }
.voice_pagenation_list{ display: flex; justify-content: space-between; }
.voice_pagenation_item{ flex-basis: 30%; }
.voice_pagenation_item a{ display: inline-block; font-size: 1.6rem; color: #fff; background-color: #333; padding: 10px 20px; border-radius: 40px; border: 2px solid #333; }
.voice_pagenation_item a:hover{ background-color: #fff; color: #333; }

.voice_pagenation_item_next a i{ margin-right: 10px; }
.voice_pagenation_item_prev a i{ margin-left: 10px; }

.voice_pagenation_item_next{}
.voice_pagenation_item_modoru{ text-align: center; }
.voice_pagenation_item_prev{ text-align: right; }

.voicelist_sec{}
.voicelist_list{ display: flex; justify-content: space-between; flex-wrap: wrap; }
.voicelist_item{ flex-basis: 43%; margin-bottom: 60px; }

.voicelist_img{ margin-bottom: 20px; }
.voicelist_img img{ border-radius: 10px; }
.voicelist_img a:hover{ opacity: .6; }

.voicelist_txt{ display: flex; justify-content: space-between; align-items: center; }
.voicelist_tit{ }
.voicelist_tit01{ font-size: 1.7rem; margin-bottom: 5px; }
.voicelist_name{ position: relative; font-size: 1.3rem; padding-left: 15px; }
.voicelist_name:before{ position: absolute; content: ""; top: .7em; left: 0; display: block; width: 8px; height: 1px; background-color: #333; }
.voicelist_arrow a{ display: block; width: 50px; height: 50px; background-color: var(--main-color); text-align: center; border-radius: 100%; border: 2px solid var(--main-color); }
.voicelist_arrow a i{ line-height: 50px; color: #fff; font-size: 2.5rem; transition: all .3s; }
.voicelist_arrow a:hover{ background-color: #fff; color: var(--main-color); }
.voicelist_arrow a:hover i{ color: var(--main-color); }


}
/* ----------------------------------------------------------
TAB CSS END
---------------------------------------------------------- */

/* ----------------------------------------------------------
PC CSS
---------------------------------------------------------- */
@media print, screen and (min-width: 1281px) and (max-width: 1500px){

/* フォントサイズ10px */
html{ font-size: 62.5%; }

/* 基本のフォントサイズ */
body{ font-size: 16px; font-size: 1.8rem; }

/* 非表示用 */
.nonePC		{ display: none !important; }

/* ----------------------------------------------------------
 header
---------------------------------------------------------- */
header{ position: relative; width: 100%; z-index: 100; }

.header_wrap{ background-color: #eee; height: 80px; display: flex; justify-content: space-between; align-items: center; }
.header_wrap .header_logo img{ width: 200px; height: 43px; }
.header_wrap .gnavi_item > a{ /* padding: 20px 0; */ }
/*
.header_wrap .gnavi_list li.has-child:before{ top: 27px; }
*/

.header_logo{ flex-basis: 10%; margin-left: 50px; }
.header_logo a:hover{ opacity: 0.6; }

.header_sec{ }

.gnavi{ flex-basis: 54%; margin-left: 5%; margin-right: 1%; }
.gnavi_list{ display: flex; align-items: center; }
.gnavi_item{ flex: 1 0 auto; text-align: center; }
.gnavi_item > a{ display: block; font-size: 1.5rem; letter-spacing: 2px; height: 80px; line-height: 80px; font-family: 'Readex Pro', 'Noto Sans JP', sans-serif; font-weight: 500; font-style: normal; position: relative; transition: .3s; }
.header_wrap .gnavi_item > a{ color: #333; }
.gnavi_item > a:hover{  }
.gnavi_item > a:after{
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	content: '';
	width: 90%;
	height: 2px;
	background: var(--main-color);
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
	margin: 0 auto;
}
.gnavi_item > a:hover:after{ transform-origin: left top; transform: scale(1, 1); }


.has-child{ position: relative; }

.gnavi_list li.has-child:before{ content:''; position: absolute; right: 10px; top: 35px; width: 6px; height: 6px; border-top: 2px solid #999; border-right:2px solid #999; transform: rotate(135deg); }

.gnavi_list li.has-child ul{ position: absolute; left: -25%; top: 80px; z-index: 4; background: #eee; width: 150%; visibility: hidden; opacity: 0; transition: all .3s; }

.gnavi_list li.has-child:hover > ul,
.gnavi_list li.has-child ul li:hover > ul,
.gnavi_list li.has-child:active > ul,
.gnavi_list li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

.gnavi_list li.has-child ul li a{ display: block; border-top: 1px solid #ddd; font-size: 1.6rem; color: #333; letter-spacing: 2px; padding: 20px 0; }

.gnavi_list li.has-child ul li a:hover,
.gnavi_list li.has-child ul li a:active{ background: #fff; }


/* バーガーメニュー */
.toggle { display: none; }

.header_tel{ flex-basis: 350px; margin: 0 180px 0 auto; display: flex; flex-wrap: wrap; align-items: center; }
.header_tel_ico{ width: 40px; height: 40px; margin-right: 10px; }
.header_tel_ico i{ font-size: 2.5rem; color: #fff; line-height: 40px; }
.header_tel_num{ flex-basis: 80%; font-size: 2.8rem; line-height: 1; }
.header_tel_time{ font-size: 1.2rem; color: #444; font-weight: 400; margin-top: 5px; padding-left: 0px; }


.header_contact{ position: absolute; top: 0; right: 0; z-index: 999; }
.header_contact a{ display: flex; justify-content: center; align-items: center; width: 180px; height: 80px; background-color: var(--main-color); transition: background-color 0.2s ease; border: 3px solid var(--main-color); color: #fff; }
.header_contact a i{ display: block; font-size: 4rem; margin-right: 10px; }
.header_contact a span{ display: block; font-size: 1.6rem; line-height: 1.2; font-weight: 700; }
.header_contact a:hover{ background-color: #fff; color: var(--main-color); }


/* ----------------------------------------------------------
 footer
---------------------------------------------------------- */
/* ページ下部 固定メニュー */
.btm_menu{ display: none; }


footer{ background-color: #fff; padding-top: 100px; padding-bottom: 20px; }
.footer_sec{ width: 90%; margin: 0 auto; }
.footer_sec_list{ display: flex; }
.footer_sec_item{}
.footer_sec_item:nth-child(1){ flex-basis: 50%; border-right: 1px solid #eee; padding-right: 5%; margin-right: 5%;  }
.footer_sec_item:nth-child(2){ flex-basis: 40%; display: flex; justify-content: space-between; }
.footer_logo{}
.footer_logo img{ width: 50%; height: auto; }
.footer_tit{ font-size: 1.7rem; font-weight: 700; margin-bottom: 10px; }
.footer_add{ font-size: 1.4rem; }
.footer_telfax{ font-size: 1.4rem; }
.footer_telfax span{}

.footer_contact{ background-color: var(--main-color); margin-top: 20px; border-radius: 20px; padding: 30px; display: flex; flex-wrap: wrap; }
.footer_contact_tit{ flex-basis: 100%; font-size: 4rem; line-height: 1; margin-bottom: 20px; }
.footer_contact_tel{ flex-basis: 100%; display: flex; font-size: 2.7rem; }
.footer_contact_tel i{ margin-right: 10px; }
.footer_contact_time{ font-size: 1.2rem; margin-top: 5px; margin-bottom: 20px; padding-left: 40px; }
.footer_contact_btn{ width: 100%; }
.footer_contact_btn a{ font-size: 1.6rem; }

.footer_sitemap{ width: 100%; }
.footer_sitemap_list{ display: flex; justify-content: space-between; }
.footer_sitemap_item{}
.footer_sitemap_item:nth-child(1){ flex-basis: 58%; }
.footer_sitemap_item:nth-child(2){ flex-basis: 35%; }
.footer_sitemap_list01{}
.footer_sitemap_item01{ position: relative; padding-left: 20px; font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.footer_sitemap_item01:before{ position: absolute; top: 8px; left: 0; display: block; content: ""; width: 10px; height: 10px; background-color: var(--main-color); border-radius: 100%;  }
.footer_sitemap_list02{ margin-left: 30px; margin-bottom: 10px; margin-top: 10px; }
.footer_sitemap_item02{ position: relative; font-size: 1.2rem; font-weight: normal; padding-left: 15px; margin-bottom: 5px; }
.footer_sitemap_item02:before{ position: absolute; top: 9px; left: 0; display: block; content: ""; width: 5px; height: 1px; background-color: #666; }




/* ----------------------------------------------------------
 hx
---------------------------------------------------------- */


/* ----------------------------------------------------------
 contents
---------------------------------------------------------- */

.main{  }

    .mv02 .slide {
      display: grid;
      place-content: center;
      min-height: 500px;
      padding: 0 8rem;
      text-align: center;
    }

.top_sec{ width: 100%; }

.top_news{ margin: 0 0 30px 0; }
.top_news_sec{ width: 100%; margin: 0 auto; display: flex; justify-content: space-between; padding: 20px 60px 20px 0; }
.top_news_tit{ flex-basis: 35%; }
.top_news_list{ flex-basis: 60%; }
.top_news_item{ display: flex; justify-content: space-between; align-items: center; padding-bottom: 15px; border-bottom: 1px solid #ccc; margin-bottom: 15px; }
.top_news_date01{ flex-basis: 13%; font-size: 1.5rem; color: #999; text-align: center; font-family: 'Readex Pro', sans-serif; font-weight: 400; font-style: normal; background-color: #fff; border-radius: 30px; padding: 2px 5px; }
.top_news_tit02{ flex-basis: 60%; font-size: 1.6rem; font-weight: 700; }
.top_news_tit02 a:hover{ opacity: .6; }

.top_news_tit01{ font-size: 5rem; color: #ccc; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; text-align: right; margin-bottom: 10px; }
.top_news_tit01:first-letter{ color: var(--main-color); }
.top_news_tit01 span{ display: block; color: #333; font-size: 2rem; font-family: dnp-shuei-gothic-kin-std, sans-serif; font-weight: 600; font-style: normal; }

.top_news_btn01{ width: 150px; margin: 0 0 0 auto; }
.top_news_btn01 a{ display: block; color: #fff; font-size: 1.5rem; background-color: var(--main-color); border: 2px solid var(--main-color);  padding: 5px; text-align: center; border-radius: 5px; }
.top_news_btn01 a:hover{ background-color: #fff; color: var(--main-color); }

.top_news_btn{ width: 140px; margin: 0 0 0 auto; }
.top_news_btn a{ display: block; font-size: 1.5rem; color: #fff; border: 2px solid #425a9f; background-color: #425a9f; text-align: center; padding: 5px; }
.top_news_btn a:hover{ background: #fff; color: #425a9f; }

.top_news_cat01{ flex-basis: 18%; }
.top_news_cat01 .term_list{ display: flex; justify-content: flex-start !important; margin-bottom: 0; }
.top_column_item .term_list{ display: flex; justify-content: flex-start !important; margin-bottom: 10px; }
.column_item .term_list{ display: flex; justify-content: flex-start !important; margin-bottom: 10px; }
.top_news_cat01 .term_item{ flex-basis: auto !important; margin-right: 20px; }
.top_news_cat01 .term_item a{ display: inline-block; font-size: 1.2rem; color: #fff; background-color: var(--main-color); padding: 3px 15px; border-radius: 40px; border: 1px solid var(--main-color); }
.top_news_cat01 .term_item a:hover{ background-color: #fff; color: var(--main-color); }


.top_works_list{ display: flex; justify-content: flex-start; flex-wrap: wrap; width: 96%; margin: 0 auto; }
.top_works_item{ flex-basis: 23%; margin: 0 1% 40px 1%; display: flex; flex-wrap: wrap; transition: .5s; }



.top_works_cat{ margin-bottom: 5px; }
.top_works_cat a{ display: inline-block; color: #fff; font-size: 1.2rem; background-color: var(--main-color); padding: 3px 10px; border-radius: 30px; text-align: center; letter-spacing: 1px; border: 1px solid var(--main-color); }
.top_works_cat a:hover{ background-color: #fff; color: var(--main-color); }

.top_works_tit02{ flex-basis: 98%; font-size: 1.4rem; font-weight: 700; margin-bottom: 5px; }
.top_works_eyecatch{ flex-basis: 100%; }
.top_works_eyecatch{ margin-bottom: 5px; position: relative; box-shadow: 0px 0px 1px 1px #ccc; border-radius: 10px; transition: 0.5s ease-in-out; }
.top_works_eyecatch:hover{ opacity: .6; }

.top_works_eyecatch img,
.top_works_eyecatch canvas{ width: 100%; height: auto; border-radius: 10px; }
.top_works_eyecatch img:hover,
.top_works_eyecatch canvas:hover{ }


.top_voice{ padding: 40px 0; }
.top_voice .top_works_tit01{ text-align: left; width: 90%; margin: 0 auto; }
.top_voice .top_works_tit01 span{ display: inline; margin-left: 20px; }
.top_voice .voicelist_list{ width: 90%; margin: 0 auto; }
.top_voice .voicelist_list:after{ content: ""; display: block; width: 32%; }
.top_voice .voicelist_item{ flex-basis: 32%; }
.top_voice .voicelist_item img{ width: 100%; height: auto; }





.top_column{ background-color: #f5f5f5; padding: 40px 0; }

.top_column .top_works_tit01{ text-align: left; width: 90%; margin: 0 auto; }
.top_column .top_works_tit01 span{ display: inline; margin-left: 20px; }

.top_column_list{ width: 90%; margin: 0 auto; display: flex; justify-content: space-between; }
.top_column_item{ flex-basis: 32%; margin-bottom: 20px; }
.top_column_item a{  }


.top_column_eyecatch{ margin-bottom: 20px; }
.top_column_eyecatch a:hover{ opacity: .6; }
.top_column_eyecatch img{ width: 100%; height: auto; }

.top_column_date{ font-size: 1.3rem; color: #999; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal;  }
.top_column_tit{ font-size: 1.7rem; font-weight: 400; }




.top_number{ margin: 0 0 80px auto; padding-right: 100px; }
.top_number_list{ display: flex; justify-content: space-between; }
.top_number_item{ flex-basis: 30%; padding-right: 3%; border-right: 1px solid #ccc; }
.top_number_item:last-child{ border-right: 0; }
.top_number_tit{ font-size: 2rem; padding: 10px; margin-bottom: 20px; }
.top_number_percent{ font-size: 10rem; }
.top_number_percent span{ font-size: 5rem; }
.top_number_txt{ width: 96%; margin: 0 auto; font-size: 1.7rem; line-height: 1.8; letter-spacing: 2px; }


.top_service{ background-color: #f5f5f5; margin-bottom: 60px; }
.top_service{ padding: 40px 0; }
.top_service .top_works_tit01{ text-align: left; width: 90%; margin: 0 auto; }
.top_service .top_works_tit01 span{ display: inline; margin-left: 20px; }

.top_service_list{ width: 100%; display: flex; justify-content: center; margin-bottom: 40px; }
.top_service_item{ flex-basis: 23%; margin: 0 1%; }
.top_service_item a{ display: block; padding: 30px; background-color: #fff; border-radius: 10px; }
.top_service_ico{ font-size: 7rem; text-align: center; }
.top_service_tit{ font-size: 2.1rem; font-weight: 700; text-align: center; margin-bottom: 10px; }
.top_service_txt{ font-size: 1.5rem; line-height: 1.8; min-height: 120px; }




/* ページ内アンカーリンク */
.main_nav{ position: relative; background-color: #004070; }
.main_nav nav{ position: absolute; right: 0; top: -50px; background-color: #004f8a; width: 80%; margin: 0 0 0 auto; box-shadow: 0px 13px 10px -6px rgba(0, 0, 0, 0.29); padding: 40px 50px 50px 50px; }
.main_nav nav ul{ display: flex; justify-content: flex-start; }
.main_nav nav ul li{ margin-right: 30px; position: relative; }
.main_nav nav ul li a{ display: block; color: #fff; font-size: 2rem; font-family: dnp-shuei-mincho-pr6n, sans-serif; font-weight: 400; font-style: normal; line-height: 1; padding-left: 30px; }
.main_nav nav ul li:before{ position: absolute; left: 0; top: 15px; content: ""; display: block; width: 15px; height: 2px; background-color: #fff; }
.main_nav nav ul li a:hover{ opacity: .6; }

.main{ width: 1200px; margin: 0 auto 100px auto;}


/* 2カラム */
.column02{ display: flex !important; justify-content: space-between !important; }
.column02 .wp-block-column{ flex-basis: 48% !important; }
.column02 h3{ font-size: 4rem; font-weight: 700; margin-bottom: 10px; }
.column02 .wp-block-image{ margin-bottom: 20px !important; }
.column02 .wp-block-image img{ border-radius: 10px !important; }
.column02 .wp-block-column p{ font-size: 1.7rem; line-height: 1.8; }

/* 2カラム 33:66 */
.column36{ display: flex !important; justify-content: space-between !important; }
.column36 .wp-block-column:nth-child(1){ flex-basis: 26% !important; }
.column36 .wp-block-column:nth-child(2){ flex-basis: 72% !important; }

.txt01{ font-size: 1.7rem; line-height: 1.8; }


.tsudo_sec{}
.tsudo_list{ display: flex; justify-content: space-between; }
.tsudo_item{ flex-basis: 23%; border: 2px solid #b23952; background-color: #fff; border-radius: 10px; padding-bottom: 20px; }
.tsudo_tit{ font-size: 2.4rem; color: #fff; background-color: var(--main-color); padding: 5px; text-align: center; font-weight: bold; margin-bottom: 20px; }
.tsudo_ico{ text-align: center; font-size: 8rem; margin-bottom: 5px; }
.tsudo_txt{ font-size: 1.8rem; text-align: center; font-weight: bold; width: 86%; margin: 0 auto; letter-spacing: 1px; }




/* ブロックエディタ用 */
p + p {
  margin-top: 1.5em;
}
em {
  font-style: italic;
}
blockquote {
  margin: 1.5em 0;
  border-left: 5px solid #ddd;
  padding: 1em 0 1em 10px;
  color: #777;
}
blockquote p + p {
  margin-top: 0.5em;
}
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.alignright {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}
.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
/*
.wp-caption,
[class*='wp-image'] {
  display: block;
  max-width: 100% !important;
  margin-top: 1.5em;
  text-align: center;
}
*/
.wp-caption-text {
  margin-top: 0;
}

.wp-block-image{ margin: 0 !important; }

/*
.main_contact{ width: 1100px; background-color: #fff; border-radius: 10px; margin: 0 auto 100px auto; padding: 60px; }
.main_contact_tit{ font-size: 6rem; text-align: center !important; }
.main_contact_txt{ font-size: 2.4rem; font-weight: 700; text-align: center; margin-bottom: 40px; }

.main_contact_sec{}
.main_contact_sec_list{ display: flex; align-items: center; }
.main_contact_sec_item{ flex-basis: 50%; }
.main_contact_sec_item:nth-child(1){ flex-basis: 48%; padding-right: 2%; border-right: 1px solid #ccc; }
.main_contact_sec_item:nth-child(2){ flex-basis: 46%; margin-left: 4%; }
.main_contact_sec_tel{ display: flex; align-items: center; flex-wrap: wrap; }
.main_contact_sec_tel_ico{ width: 80px; height: 80px; text-align: center; background-color: var(--main-color); border-radius: 100%; margin-right: 10px; }
.main_contact_sec_tel_ico i{ color: #fff; font-size: 4.5rem; line-height: 80px; }
.main_contact_sec_tel_num{ font-size: 5rem; font-family: "Arial", Gadget, "sans-serif"; font-weight: 700; font-style: normal; line-height: 1; }
.main_contact_sec_tel_time{ margin-left: 40px; margin-top: 5px; font-size: 2rem; font-weight: 400; }
.main_contact_sec_btn{}
.main_contact_sec_btn a{ display: block; font-size: 2.6rem; color: #fff; background-color: var(--main-color); border: 2px solid var(--main-color); text-align: center; padding: 20px; border-radius: 10px; font-weight: 700; }
.main_contact_sec_btn a i{ font-size: 3.5rem; margin-right: 15px; vertical-align: middle; }
.main_contact_sec_btn a:hover{ background-color: #fff; color: var(--main-color); }
*/

.pdca_sec{}
.pdca_list{}
.pdca_item{ display: flex; align-items: center; border: 1px solid; background-color: #fff; padding: 5px 10px; border-radius: 5px; margin-bottom: 20px; }
.pdca_item_p{ border-color: #3e4292; }
.pdca_item_d{ border-color: #2469bf; }
.pdca_item_c{ border-color: #149fda; }
.pdca_item_a{ border-color: #01b2a8; }
.pdca_tit01{ color: #fff; font-size: 4rem; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; width: 50px; height: 50px; line-height: 50px; border-radius: 5px; text-align: center; margin-right: 20px; }
.pdca_item_p .pdca_tit01{ background-color: #3e4292; }
.pdca_item_d .pdca_tit01{ background-color: #2469bf; }
.pdca_item_c .pdca_tit01{ background-color: #149fda; }
.pdca_item_a .pdca_tit01{ background-color: #01b2a8; }
.pdca_tit02{ flex-basis: 14%; font-size: 4rem; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; }
.pdca_item_p .pdca_tit02{ color: #3e4292; }
.pdca_item_d .pdca_tit02{ color: #2469bf; }
.pdca_item_c .pdca_tit02{ color: #149fda; }
.pdca_item_a .pdca_tit02{ color: #01b2a8; }
.pdca_txt01{ font-size: 2.3rem; }


.works_agency_sec{ width: 1200px; margin: 0 auto 100px auto; }
.works_agency_list{ display: flex; justify-content: space-between; margin-bottom: 60px; }
.works_agency_item{ flex-basis: 48%; }
.works_agency_eyecatch{ margin-bottom: 10px; }
.works_agency_eyecatch a:hover{ opacity: .6; }
.works_agency_tit01{ font-size: 2.3rem; }
.works_agency_btn{ width: 480px; margin: 0 auto; }
.works_agency_btn a{ display: block; color: #fff; font-size: 2.5rem; font-weight: 700; letter-spacing: -.5px; background-color: var(--main-color); border: 2px solid var(--main-color); padding: 20px; border-radius: 10px; text-align: center; }
.works_agency_btn a:hover{ background-color: #fff; color: var(--main-color); }



/* 実績（仮表示） */
#worksSec{ width: 1120px; margin: 0 auto 80px auto; }
#worksSec > ul{ display: flex; margin-bottom: 60px  }
#worksSec > ul > li{}
/*
#worksSec > ul > li h3{ font-size: 4rem; margin-bottom: 10px; }
*/
#worksSec > ul > li .worksSecDate{}
#worksSec > ul > li .worksSecTxt{ margin-bottom: 40px; }
#worksSec > ul > li .worksSecTxt > ul{ }

#worksSec > ul > li .worksSecTxt h3{ font-size: 2rem; }
#worksSec > ul > li .worksSecTxt p{ font-size: 1.6rem; }
#worksSec dl#worksSecSpec{ display: flex; flex-wrap: wrap; border: 1px solid #ccc; border-top: none; margin-bottom: 40px; }
#worksSec dl#worksSecSpec dt{ flex-basis: 15%; background: #eee; padding: 10px 20px; border-top: 1px solid #ccc; font-size: 1.6rem; }
#worksSec dl#worksSecSpec dd{ flex-basis: 35%; padding: 10px 20px; margin: 0; border-left: 1px solid #ccc; border-top: 1px solid #ccc; font-size: 1.6rem; background-color: #fff; }
#worksSec dl#worksSecSpec dd i{ margin-left: 10px; font-size: 1.6rem; }

#worksSecImg > ul{ display: flex; justify-content: space-between; }
#worksSecImg > ul > li:nth-child(1){ flex-basis: 78%; }
#worksSecImg > ul > li:nth-child(2){ flex-basis: 20%; }
#worksSecImg > ul > li img{ width: 100%; height: 1000px; object-fit: cover; object-position: top left; border: 1px solid #ccc !important; }

#workslistSec{  width: 1500px; margin: 0 auto 80px auto; }
#workslistSec > ul{ display: flex; justify-content: space-between; flex-wrap: wrap; margin-bottom: 60px; }
#workslistSec > ul > li{ flex-basis: 32%; margin-bottom: 40px; }
#workslistSec > ul > li h3{ font-size: 2.2rem;  margin-bottom: 10px; line-height: 1.6; }
#workslistSec > ul > li .worksSecTxt{ margin-bottom: 40px; }
#workslistSec > ul > li .worksSecTxt ul{ display: flex; justify-content: space-between;  flex-wrap: wrap; }
#workslistSec > ul > li .worksSecTxt ul li:first-child{ flex-basis: 100%; margin-bottom: 10px; display: flex; justify-content: space-between; }
#workslistSec > ul > li .worksSecTxt ul li:first-child .workslistSecImg:nth-child(1){ flex-basis: 79%; }
#workslistSec > ul > li .worksSecTxt ul li:first-child .workslistSecImg:nth-child(2){ flex-basis: 20%; }
#workslistSec > ul > li .worksSecTxt ul li:nth-child(2){ flex-basis: 100%; }
#workslistSec > ul > li .worksSecTxt ul li a:hover{ opacity: 0.6; }
#workslistSec > ul > li .worksSecTxt p{ font-size: 1.6rem; }
#workslistSec dl#worksSecSpec{ display: flex; flex-wrap: wrap; border: 1px solid #ccc; border-top: none; margin-bottom: 40px; }
#workslistSec dl#worksSecSpec dt{ background: #ddd; width: 30%; padding: 5px 15px; border-top: 1px solid #ccc; font-size: 1.5rem; }
#workslistSec dl#worksSecSpec dd{ padding: 5px 15px; margin: 0; width: 70%; border-left: 1px solid #ccc; border-top: 1px solid #ccc; font-size: 1.5rem; }
#workslistSec dl#worksSecSpec dd i{ margin-left: 10px; font-size: 1.6rem; }

#workslistSec .workslistSecImg img{ width: 100%; height: 300px; object-fit: cover; object-position: top left; border: 1px solid #ccc !important; }

.topWorksCat{ margin-bottom: 10px; }
.topWorksCat > ul{ display: flex; justify-content: flex-start; width: 100%; }
.topWorksCat > ul > li{ flex-basis: auto; color: #fff; font-size: 1.3rem; font-weight: 500; letter-spacing: 1px; padding: 3px 10px; text-align: center; margin-right: 3px; }
.topWorksCat > ul > li a{ display: block; color: #fff; }
.topWorksCat > ul > li a:hover{ opacity: 0.6; }
/*
.pagination{ width: 1120px; margin: 0 auto; padding-bottom: 60px; }
.pagination ul{ display: flex; justify-content: space-between; }
.pagination ul li{ flex-basis: 20%; }
.pagination ul li a{ display: block; border: 1px solid #b13951; color: #b13951; font-size: 14px; padding: 10px; text-align: center; }
.pagination ul li a:hover{ background: #b13951; color: #fff; opacity: 1; }
.pagination ul li:nth-child(1){ text-align: left; }
.pagination ul li:nth-child(1) a i{ margin-right: 20px; }
.pagination ul li:nth-child(2) {  }
.pagination ul li:nth-child(2) a{ display: block; }
.pagination ul li:nth-child(3) a{ display: block; }
.pagination ul li:nth-child(3) a i{ margin-left: 20px; }
.pagination ul li.nonext{ border: 1px solid #999; color: #999; font-size: 14px; text-align: center; padding: 10px; }
.pagination ul li.nonext i{ margin-right: 10px; }
.pagination ul li.nonext span{ text-align: left; padding-top: 5px; }
.pagination ul li.prev span{ display: block; text-align: right; vertical-align: middle; padding-top: 5px; }
.pagination ul li.noprev{ border: 1px solid #999; color: #999; font-size: 14px; text-align: center; padding: 10px; }
.pagination ul li.noprev i{ margin-left: 20px; }
.pagination ul li.noprev span{ text-align: right; padding-top: 5px; }
*/
.site_cat{ margin-bottom: 40px; }
.site_cat a{ display: inline-block; background-color: var(--main-color); color: #fff; padding: 3px 10px; border: 2px solid #b23952; }
.site_cat a:hover{ background-color: #fff; color: var(--main-color); }

#worksSec h2{ position: relative; padding-bottom: 20px; border-bottom: 4px solid #fff; margin-bottom: 60px; }
#worksSec h2:before{ font-size: 1.5rem; position: absolute; top: -24px; left: 0; height: 24px; padding: 0 1em; color: #333; background-color: #fff; content: "サイト名"; }

#worksSec h3{ position: relative; }
#worksSec h3:before{ font-size: 1.5rem; position: absolute; top: -24px; left: 0; height: 24px; padding: 0 1em; color: #333; background-color: #fff; content: "企業名"; }



/* ページネーション　---------------- */

.pagination span, .pagination a {
    display: block;
    width: auto;
    margin: 4px;
    padding: 8px 10px;
    border: 0px solid var(--main-color);
	color: var(--main-color);
    background-color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 16px;
	font-size: 1.8rem;
	font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal;
	border-radius: 5px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 200px 0 50px;
    position: relative;
    font-size: 13px;
}

.pagination a:hover {
    background-color: var(--main-color);
    color: #fff;
}

.pagination a.next{ color: #fff; background-color: var(--second-color); }



.ad_sec{ width: 1200px; margin: 0 auto 100px auto; }
.ad_sec_txt{ background-color: #fff; padding: 15px; font-size: 2.3rem; margin-bottom: 30px; }
.ad_list{ display: flex; justify-content: space-between; margin-bottom: 60px; }
.ad_item{ flex-basis: 48%; }
.ad_item_txt01{ font-size: 1.7rem; letter-spacing: 2px; line-height: 1.9; }
.ad_item_img01{  }
.ad_item_img01 img{ width: 100%; height: auto; }
.ad_item_kadai01{ background-color: #fff; padding: 30px; border-radius: 10px; }
.ad_sec_tit_kadai{ display: flex; align-items: center; margin-bottom: 20px; }
.ad_sec_tit_kadai span{ display: block; content: ""; width: 60px; height: 60px; border-radius: 100%; text-align: center; background-color: #4974c2; }
.ad_sec_tit_kadai i{ color: #fff; font-size: 3.3rem; line-height: 60px; }
.ad_sec_tit_kadai p{ font-size: 3.5rem; color: #4974c2; font-weight: 700; margin-left: 20px; }
.ad_sec_txt_kadai{ font-size: 1.7rem; letter-spacing: 2px; line-height: 1.9; margin-bottom: 30px; }
.ad_sec_tit_mokuhyou{ font-size: 1.8rem; font-weight: 700; }
.ad_sec_tit_mokuhyou span{ font-size: 2.3rem; background-color: #ead83c; padding: 10px 25px; border-radius: 10px; margin-right: 25px; }
.ad_item_kaiketsu01{ background-color: #fff; padding: 30px; border-radius: 10px; }
.ad_sec_txt_kaiketsu{  }
.ad_sec_tit_kaiketsu{ display: flex; align-items: center; margin-bottom: 20px; }
.ad_sec_tit_kaiketsu span{ display: block; content: ""; width: 60px; height: 60px; border-radius: 100%; text-align: center; background-color: var(--main-color); }
.ad_sec_tit_kaiketsu i{ color: #fff; font-size: 3.3rem; line-height: 60px; }
.ad_sec_tit_kaiketsu p{ font-size: 3.5rem; color: var(--main-color); font-weight: 700; margin-left: 20px; }
.ad_sec_tit_kaiketsu01{ margin-left: 20px; font-size: 1.8rem; background-color: #ead83c; padding: 10px 25px; border-radius: 10px; font-weight: 700; }
.ad_sec_txt_kaiketsu{ font-size: 1.7rem; letter-spacing: 2px; line-height: 1.9; margin-bottom: 30px; }
.ad_sec_kekka{ display: flex; align-items: center; }
.ad_sec_kekka_tit{ font-size: 2.3rem; color: #fff; background-color: var(--main-color); padding: 10px 25px; border-radius: 10px; font-weight: 700; margin-right: 25px; }
.ad_sec_kekka_txt{ font-size: 2rem; letter-spacing: 2px; font-weight: 700; line-height: 1.5; }
.ad_sec_kekka_txt span{ color: var(--main-color); }



/* コラム */
.column_sec{ width: 80%; margin: 0 200px 0 auto; display: flex; justify-content: space-between; }
.column_sec01{ flex-basis: 70%;  }
.column_sec_list{}
.column_sec_item{ background-color: #fff; border-radius: 10px; padding: 20px; margin-bottom: 20px; }
.column_sec_item > ul{ display: flex; justify-content: space-between; align-items: center; }
.column_sec_item > ul > li{ }
.column_sec_item > ul > li:nth-child(1){ flex-basis: 75%; }
.column_sec_item > ul > li:nth-child(2){ flex-basis: 20%; text-align: center; }
.column_sec_date01{ font-size: 1.2rem; color: #999; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-style: normal; }
.column_sec_tit01{ font-size: 2.2rem; font-weight: 700; margin-bottom: 10px; }
.column_sec_txt01{ font-size: 1.6rem; }
.column_sec_btn01{ width: 100px; margin: 10px 0 0 auto; }
.column_sec_btn01 a{ display: block; background-color: var(--main-color); color: #fff; text-align: center; border: 1px solid var(--main-color); padding: 3px 10px; border-radius: 40px; font-size: 1.5rem; }
.column_sec_btn01 a:hover{ background-color: #fff; color: var(--main-color); }
.column_sec_img01{}
.column_sec_img01 a:hover{ opacity: .6; }
.column_sec_img01 img{ width: 150px; height: 150px; object-fit: cover; border-radius: 100%; }



}
/* ----------------------------------------------------------
 PC CSS END
---------------------------------------------------------- */
/* ----------------------------------------------------------
 PC WIDE CSS
---------------------------------------------------------- */
@media screen and (min-width: 1501px){
/* フォントサイズ10px */
html{ font-size: 62.5%; height: 100%; }

/* 基本のフォントサイズ */
body{ font-size: 16px; font-size: 1.8rem; height: 100%; }

/* 非表示用 */
.nonePCWIDE		{ display: none !important; }

/* ----------------------------------------------------------
 header
---------------------------------------------------------- */

.toggle{ display: none; }

/* ----------------------------------------------------------
 footer
---------------------------------------------------------- */
/* ページ下部 固定メニュー */
.btm_menu{ display: none; }



/* ----------------------------------------------------------
 hx
---------------------------------------------------------- */



/* ----------------------------------------------------------
 contents
---------------------------------------------------------- */





}
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 PCWIDE CSS END
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
