@charset "UTF-8";

:root {
	--main-color: #005bab;
	--sub-color: #1bb0ce;
	--light-color: #f0f6fb;
   --hover-color: #f0f6fb;
	--text-color: #284762;
   --header-height: 120px;
	--shippori-mincho: "Shippori Mincho", serif;
    scroll-padding: var(--header);
}
html {
   font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
    font-size: 1.8rem;
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0;
}
/*--------------------------------------------------------------------------------------------------------------------------------
  Simple Sitemap
--------------------------------------------------------------------------------------------------------------------------------*/
.simple-sitemap-container h3 { padding: 1rem 2rem; white-space: nowrap; font-size: 1.8rem; font-weight: 800 !important; background-color: transparent; border: none; }
.simple-sitemap-container.tab-enabled label { margin-bottom: -1px !important; background-color: #f4f4f4; } /* Default tab */
.simple-sitemap-container.tab-enabled input:checked + label > * { position: relative; z-index: 1; color: #664c00 !important; background-color: #fff; border: 1px solid #ddd; border-bottom: none; border-radius: 4px 4px 0 0; } /* Current tab */
.simple-sitemap-container.tab-enabled input:checked + label { background-color: initial !important; }
.simple-sitemap-wrap { padding: 0 0 2rem; }
.simple-sitemap-container ul { margin: 0 auto !important; width: 94%; }
.sitemap-item { margin: 3rem 0 0; }
.sitemap-item a { display: block; padding: 0.2rem 1rem; background: #faf8f2; border: 1px solid #cacaca; font-size: 1.7rem; text-align: left; }
.children .sitemap-item { margin: 1rem 0 0; }
.children .sitemap-item a { display: inline-block; width: 90%; font-size: 1.5rem; background: none; border: none; }
.children .sitemap-item a:before { content: '\f30b'; font-family: "Font Awesome 5 Free"; font-weight: bold; color: #ccc; margin-right: 0.5rem; display: inline-block; }
.simple-sitemap-container ul.children { margin-left: 2rem !important; }
@media screen and (max-width: 600px) {
  .simple-sitemap-container.tab-enabled label { width: initial !important; }
  .simple-sitemap-container h3 { padding: 2vw; font-size: 1.6rem; }
}
/*--------------------------------------------------------------------------------------------------------------------------------
	　 Inview.js
--------------------------------------------------------------------------------------------------------------------------------*/
.--InviewFade { opacity: 0; /*表示前に透明にしておく */  transition: 0.1s; /*移動にかける時間 */ transition-delay: 0s; /*遅延をかける秒数 */ }
.--InviewFade.--InviewFadeUp { opacity: 0; /*表示前に透明にしておく */ transform: translateY(40px); /*表示前の位置 */ transition: 0.8s; /*移動にかける時間 */ transition-delay: 0.1s; /*遅延をかける秒数 */ }
.--InviewFade.--InviewFadeRight { opacity: 0; /*表示前に透明にしておく */ transform: translateX(20%); /*表示前の位置 */ transition: 0.8s; /*移動にかける時間 */ transition-delay: 0.1s; /*遅延をかける秒数 */ }
.--InviewFade.--InviewFadeLeft { opacity: 0; /*表示前に透明にしておく */ transform: translateX(-20%); /*表示前の位置 */ transition: 0.8s; /*移動にかける時間 */ transition-delay: 0.1s; /*遅延をかける秒数 */ }
.--InviewFade.is-show { opacity: 1; }
.--InviewFade.--InviewFadeUp.is-show { opacity: 1; transform: translateY(0); }
.--InviewFade.--InviewFadeRight.is-show { opacity: 1; transform: translateX(0); }
.--InviewFade.--InviewFadeLeft.is-show { opacity: 1; transform: translateX(0); }

/*--------------------------------------------------------------------------------------------------------------------------------
  TinyMCEのマーカー
--------------------------------------------------------------------------------------------------------------------------------*/
.yellow_marker {
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #FFFF88 0%) repeat scroll 0 0;
}
.red_marker {
    background:rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #FFABCE 0%) repeat scroll 0 0;
}
.blue_marker {
    background:rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #A7F1FF 0%) repeat scroll 0 0;
}
/*--------------------------------------------------------------------------------------------------------------------------------
  ワードプレススタイル
--------------------------------------------------------------------------------------------------------------------------------*/

  img.centered,
  img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  img.alignright {
    padding: 4px;
    margin: 0 0 2px 7px;
    display: inline;
  }

  img.alignleft {
    padding: 4px;
    margin: 0 7px 2px 0;
    display: inline;
  }

  .alignright {
    float: right;
  }

  .alignleft {
    float: left;
  }

  .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .wp-caption {
    margin: 0px 10px;
  }

  .wp-caption p {
    margin: 5px 10px 20px 0px;
    text-align: center;
  }
/*--------------------------------------------------------------------------------------------------------------------------------
  パンくずリスト
--------------------------------------------------------------------------------------------------------------------------------*/
#breadcrumbs {
    font-size: min(1.2rem, 1.2vw);
    padding: min(15px, 1.5vw) 0;
    font-weight: bold;
}
/*--------------------------------------------------------------------------------------------------------------------------------
  目次
--------------------------------------------------------------------------------------------------------------------------------*/
#toc_container {
    line-height: 1.7em;
}
.page__content #toc_container li:before {
	content: none;
}
.page__content #toc_container li {
    font-size: inherit;
}
/*--------------------------------------------------------------------------------------------------------------------------------
 ページナビ
--------------------------------------------------------------------------------------------------------------------------------*/
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink{
    display: none;
}
.wp-pagenavi .current {
    display: inline-flex;
    background: var(--main-color);
	 border-color: var(--main-color)!important;
    color: #fff;
    width: 50px;
    height: 50px;
    place-content: center;
    align-items: center;
	 margin: 0 6px;
}
.wp-pagenavi .page.larger {
    border: 1px solid;
    width: 50px;
    height: 50px;
    display: inline-flex;
    place-content: center;
    align-items: center;
    text-decoration: none;
    box-sizing: border-box;
	  margin: 0 6px;
}
.wp-pagenavi .page.larger:hover,
.wp-pagenavi .page.smaller:hover{
    background-color: var(--hover-color);
}
/*--------------------------------------------------------------------------------------------------------------------------------
  親子がある場合の一覧
--------------------------------------------------------------------------------------------------------------------------------*/
.related-articles {
    padding: 50px 0 0 0;
}
.related-articles__box {
    border-left: 1px solid var(--main-color);
    border-right: 1px solid var(--main-color);
}
 .page_footer_contents.pc {
    margin-top: 40px;
}
.related-articles__parent {
    color: #fff;
    background: var(--main-color);
    font-size: 1.6rem;
    padding: 18px 15px;
}
.related-articles__child li a {
    padding: 17px 30px;
    color: var(--main-color);
    text-decoration: none;
    font-size: 1.6rem;
    display: flex;
    position: relative;
    gap: 10px;
	color: var(--text-color);
}
.related-articles__child li {
    border-bottom: 1px solid var(--main-color);
    box-sizing: border-box;
}
.related-articles__child .children{
   border-top: 1px solid var(--main-color);
}
.related-articles__child .children li:last-child {
    border-bottom: none;
}
.related-articles__child {
}
.related-articles__child .children a {
    padding-left: 3em;
}
.related-articles__child li a:before {
    content: " \f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--main-color);
}
.related-articles__child li a:hover {
     background: var(--hover-color);
}
/*--------------------------------------------------------------------------------------------------------------------------------
	　ページネーション
--------------------------------------------------------------------------------------------------------------------------------*/
main ul.pagenation {
    border-top: 1px solid #efefef;
    text-align: center;
    margin: 40px 0;
    padding: 20px 0;
}
main .pagenation li {
    display: inline-block;
    padding: 0 5px;
}
main .pagenation li a {
    display: block;
    border: 1px solid var(--main-color);
    padding: 12px 30px;
    font-size: 14px;
    font-size: 1.4rem;
    color: #000;
    text-decoration: none;
}
main .pagenation li a:hover {
    background: var(--main-color);
    color: #fff;
}
main .wp-pagenavi {
    margin: 60px 0 0;
    text-align: center;
    height: 40px;
}

/*--------------------------------------------------------------------------------------------------------------------------------
	　共通クラス
--------------------------------------------------------------------------------------------------------------------------------*/
.sub-page {
    width: min(1000px, 98%);
    margin: 0 auto min(70px, 7vw);
}
.sub-page h2:first-child {
    margin-top: 0;
}
#tinymce p, main p {
    line-height: 1.89;
    padding: 0.5em 0;
    font-size: min(1.8rem, 1.8vw);
}
.pc {
	display: block;
}
.sp {
	display: none;
}
.br-pc {
    display: block;
}
a {
    color: var(--main-color);
}
a:hover {
text-decoration: none;
}

img {
vertical-align: top;
    max-width: 100%;
  height: auto;
}
.hv:hover {
opacity: 0.7;
}
.hv {
  -webkit-transition: 0.3s ease-in-out;
-moz-transition: 0.3s ease-in-out;
-o-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;

}
.wrap {
	width: min(1100px, 96%);
	margin: 0 auto;
    z-index: 1;
}
.center {
    text-align: center;
}
.tel-num {
    font-family: var(--shippori-mincho);
    display: flex;
    align-items: center;
}

.btn {
    text-decoration: none;
    color: #fff;
    font-size: min(2rem, 1.9vw);
    width: min(457px, 42vw);
    display: flex;
    align-items: center;
    place-content: space-around;
    box-sizing: border-box;
    padding: min(30px, 2.6vw) 0;
    position: relative;
    margin: 0 auto;
    border: 1px solid;
    border-radius: 50px;
    background: var(--main-color);
    overflow: hidden;
    transition-duration: .4s;
    font-family: var(--shippori-mincho);
}
.btn:after {
    content: '\f061';
    font-family: Font Awesome\ 5 Free;
    display: block;
    top: 50%;
    right: 10%;
    transform: translateX(50%) translateY(-50%);
    position: absolute;
    font-weight: bold;
	font-size: 0.8em;
}
 @media (hover: hover) and (pointer: fine) {
	.btn:hover {
		color: var(--main-color);
		background: #fff;
    	transform: scale(1.03);
	}
}
.single__content li,
.page__content li {
    padding: 0.4em 0;
    font-size: 1.7rem;
	 line-height: 1.5;
}
.page__content .simple-sitemap-container li {
    padding: 0;
    font-size: inherit;
}
.single__content li:before,
.page__content li:before {
	 content: '・';
    padding-right: 0.4em;
    color: var(--sub-color);
}
.page__content .simple-sitemap-container li:before {
	content: none;
}

/*--------------------------------------------------------------------------------------------------------------------------------
  執筆者
--------------------------------------------------------------------------------------------------------------------------------*/
.writer {
    padding: 60px 0 0px;
    clear: both;
}
.writer__container {
    padding: 20px 25px 35px 25px;
    position: relative;
    border: 2px solid var(--main-color);
}
.writer__title {
    text-align: center;
    color: #fff;
    position: absolute;
    background: var(--main-color);
    font-size: min(1.7rem, 1.7vw);
    padding: 8px 21px;
    top: 0;
    left: -2px;
    transform: translateY(-100%);
}
.writer__katagaki {
    font-size: min(1.6rem, 1.6vw);
    margin: 0 0 10px 0;
    display: inline-block;
}
.writer__content {
    display: flex;
    gap: 40px;
    margin: 0 0 27px 0;
    border-bottom: 1px solid #e5e4df;
}
.writer__text {
    flex: 1;
}
.writer__image {
    width: 172px;
}
.writer__image img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.writer__item-title {
    background: var(--light-color);
    width: 64px;
    display: grid;
    place-content: center;
    padding: 4px 0;
    font-size: min(1.2rem, 1.2vw);
}
.writer__item-text {
    flex: 1;
    font-size: min(1.6rem, 1.6vw);
    line-height: 1.5;
}
.writer__item-container {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin: 0 0 15px 0;
}
.writer__shozoku {
    display: block;
    padding: 0 0 min(13px, 1.3vw) 0;
	font-size: min(1.4rem, 1.4vw);
}
.writer__name {
    font-size: min(2.5rem, 2.5vw);
    font-weight: 500;
    margin: 0 0 0 min(20px, 2vw);
    font-family: var(--shippori-mincho);
}
.writer__item {
    padding: 15px 0 0 0;
    border-top: 1px solid #e5e4df;
}
.writer__btn {
    width: min(292px, 29.2vw);
    font-size: min(1.8rem, 1.8vw);
    padding: min(15px, 1.5vw) 0;
}
/*--------------------------------------------------------------------------------------------------------------------------------
	　見出し
--------------------------------------------------------------------------------------------------------------------------------*/
h1 {
}
h2 {
	font-size: min(2.7rem, 2.7vw);
    position: relative;
    margin: min(30px, 3vw) 0;
    padding: min(20px, 2vw) min(18px, 1.8vw);
    font-family: var(--shippori-mincho);
    font-weight: 500;
    background: var(--main-color);
    color: #fff;
    clear: both;
}
h2:before {
    content: '';
    width: 100%;
    height: 1px;
    display: block;
    background: #fff;
    position: absolute;
    top: 4px;
	left: 0;
}
h2:after {
    content: '';
    width: 100%;
    height: 1px;
    display: block;
    background: #fff;
    position: absolute;
    bottom: 4px;
	left: 0;
}
h3 {
    font-size: min(2.5rem, 2.5vw);
    margin: min(30px, 3vw) 0;
    font-weight: 600;
    padding: min(15px, 1.5vw);
    position: relative;
	color: var(--main-color);
	border-top: var(--sub-color) 1px solid;
	border-bottom: #c8c8c8 1px solid;
	font-family: var(--shippori-mincho);
	clear: both;
}
 h4 {
    font-size: min(2.2rem, 2.2vw);
    margin: min(30px, 3vw) 0;
    padding: min(13px, 1.3vw);
    font-family: var(--shippori-mincho);
    font-weight: 600;
    background: #f9f9f9;
    border-bottom: var(--main-color) 2px solid;
    clear: both;
}
h5 {
    font-size: min(2rem, 2vw);
    margin: min(30px, 3vw) 0;
    border-left: min(3px, 0.3vw) solid var(--sub-color);
    padding: min(5px, 0.5vw) min(12px, 1.2vw);
	font-weight: 600;
	font-family: var(--shippori-mincho);
	clear: both;
}
 h6 {
    font-size: min(1.8rem, 1.8vw);
    margin: min(30px, 3vw) 0;
	font-weight: 600;
	 background: #f2fdff;
	 padding: min(16px, 1.6vw);
	 font-family: var(--shippori-mincho);
	 clear: both;
}
main.top h2 {
    background: inherit;
    text-align: center;
    font-size: min(4.5rem, 4.4vw);
    margin: 0;
    padding: 0;
    border: none;
    letter-spacing: 0.03em;
    color: #284762;
    font-weight: 500;
}
main.top h2:before,
main.top h2:after {
    content: none;
}
.page-title {
    box-sizing: border-box;
    position: relative;
    height: min(200px, 20vw);
    margin-top: var(--header-height);
    background: var(--light-color);
}
.page-title__thumbnail {
    height: 100%;
}
.page-title__thumbnail img {
	width: 100%;
    height: 100%;
	object-fit: cover;
	filter: brightness(0.7);
}
.page-title__h1 {
    font-size: min(4rem, 4vw);
    color: var(--text-color);
    font-weight: 600;
    box-sizing: border-box;
    border: none;
    letter-spacing: 0.2em;
    font-family: var(--shippori-mincho);
    position: absolute;
    height: 100%;
    display: flex;
    margin: 0 auto;
    inset: 0;
    width: min(1100px, 95%);
    place-content: center;
    align-items: center;
}
/*--------------------------------------------------------------------------------------------------------------------------------
	　ヘッダ、フッター
--------------------------------------------------------------------------------------------------------------------------------*/
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;
    background: #fffffff2;
	 z-index: 9999;
}
.header__inner {
    box-sizing: border-box;
    position: relative;
    justify-content: space-between;
    margin: 0 auto;
    height: var(--header-height);
    align-items: end;
    display: flex;
}
.header__title {
    padding: 0 0 0 min(12px, 0.8vw);
    height: 100%;
    display: flex;
    align-items: center;
}
.header__title a {
    text-decoration: none;
    color: #333;
    font-family: var(--shippori-mincho);
    font-size: min(2.7rem, 2.4vw);
    font-weight: 600;
}
.header__info {
    padding: 0 min(20px, 1.5vw) 0 0;
}
.header__contact {
    display: flex;
    align-items: center;
    gap: min(20px,1.5vw);
    justify-content: end;
    padding: 0 0 7px 0;
}
.header__contact-btn {
    text-decoration: none;
    border-radius: 50px;
	font-size: min(1.5rem, 1.4vw);
	box-sizing: border-box;
	height: min(38px, 3.6vw);
	display: flex;
	align-items: center;
	place-content: center;
	font-weight: 500;
}
.header__contact-recruit {
    color: var(--text-color);
    border: 1px solid;
    width: min(120px, 10vw);
}
.header__contact-mail {
    color: #fff;
    background: var(--main-color);
    width: min(155px, 15vw);
    align-items: center;
    gap: min(5px, 0.5vw);
}
.header__contact-tel-num {
    font-size: min(3rem,2.8vw);
    gap: 7px;
    line-height: 1.3;
}
.header__contact-tel-num-icon {
	width: min(24px, 2.2vw);
	height: min(24px, 2.2vw);
}
.header__contact-tel-num-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.header__contact-tel {
    line-height: 1;
}
.header__contact-hour {
    font-size: min(1.5rem, 1.3vw);
    color: #868686;
	font-weight: 500;
}
.header__contact-mail-icon {
	width: min(17px, 1.5vw);
	height: min(17px, 1.5vw);
}
.header__contact-mail-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

footer {
    position: relative;
    margin: min(90px, 9vw) 0 0 0;
}
.footer-company-menu {
	padding: 0 0 min(100px, 10vw) 0;
}
.footer-company-menu__list {
    display: flex;
    justify-content: space-between;
}
 .footer-company-menu__item {
    width: 31.6%;
    position: relative;
    aspect-ratio: 348 / 310;
}
.footer-company-menu__item a {
    position: relative;
    display: grid;
    place-content: center;
    color: #fff;
    text-decoration: none;
    height: 100%;
    transition: 0.3s ease-in-out;
}
.footer-company-menu__item a::before {
	content: "";
	position: absolute;
	inset: 0;
    background-color: rgba(0, 0, 0, .68);
	mix-blend-mode: multiply;
	pointer-events: none;
	z-index: 1;
}
.footer-company-menu__item a:hover::before {
	content: none;
	transition: 0.3s ease-in-out;
}
.footer-company-menu__item a:hover {
	transition: 0.3s ease-in-out;
}
.footer-company-menu__item a:after {
    content: '';
    display: block;
    background: #d6d6d6;
    width: min(13px, 1.3vw);
    height: min(13px, 1.3vw);
    position: absolute;
    right: min(9px, 0.9vw);
    bottom: min(9px, 0.9vw);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 2;
}
.footer-company-menu__item-image {
    display: block;
    position: absolute;
}
.footer-company-menu__item-title {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: min(10px, 1vw);
    text-align: center;
}
.footer-company-menu__item-title-en {
    display: block;
    font-size: min(3.6rem, 3.6vw);
    font-weight: 600;
	letter-spacing: 0.03em;
}
.footer-company-menu__item-title-jp {
    display: block;
    font-size: min(1.6rem, 1.6vw);
}
.footer-contents {
	background: var(--main-color);
}
.footer-contents__container {
    display: flex;
    justify-content: space-between;
    width: min(1100px, 96%);
    margin: 0 auto;
    padding: 0 0 min(35px, 3.5vw) 0;
}
.footer-contents__info {
    width: 27.5%;
}
.footer-contents__info-title {
    background: #fff;
    width: min(250px, 22vw);
    border-radius: 0 0 min(20px, 1.5vw) min(20px, 1.5vw);
    aspect-ratio: 250 / 120;
}
.footer-contents__info-title a {
    text-decoration: none;
	color: #333;
    font-family: var(--shippori-mincho);
    font-size: min(1.7rem, 1.5vw);
    font-weight: 700;
	display: grid;
	place-content: center;
	height: 100%;
}
.footer-contents__info-address {
    color: #fff;
    font-size: min(1.4rem, 1.4vw);
    line-height: 1.7;
    padding: min(30px, 3vw) 0 0 0;
}
.footer-contents__menu {
    display: flex;
    flex: 1;
    align-items: end;
    padding: min(20px, 2vw) 0 0 0;
}
.footer-contents__menu-service {
	width: 55%;
}
.footer-contents__menu-service-container {
    display: flex;
}
.footer-contents__menu-service-title {
    color: #fff;
    font-size: min(1.6rem, 1.6vw);
    margin: 0 0 min(18px, 1.8vw) 0;
	position: relative;
}
.footer-contents__menu-service-title:after {
    content: '';
    display: block;
    background: #ffffffab;
    height: 1px;
    width: 68%;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}
.footer-contents__menu-other {
    display: flex;
	width: 45%;
}
.footer-contents__menu-item {
    width: 50%;
}
.footer-contents__menu a {
    color: #fff;
    text-decoration: none;
    font-size: min(1.4rem, 1.4vw);
    display: flex;
    gap: min(10px, 1vw);
    padding: 0 0 min(12px, 1.2vw) 0;
}
.footer-contents__menu a:before {
    content: '\f105';
    font-family: Font Awesome\ 5 Free;
    display: inline-block;
    font-weight: bold;
}
footer .copyright {
    text-align: center;
    color: #fff;
    background: #272727;
    font-size: min(1.1rem, 1.1vw);
    padding: min(13px, 1.3vw) 0;
}

/*--------------------------------------------------------------------------------------------------------------------------------
	　gn
--------------------------------------------------------------------------------------------------------------------------------*/

.global-nav {
}
.global-nav .global-nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: min(50px, 4vw);
}
.global-nav a {
  -webkit-transition: 0.3s ease-in-out;
-moz-transition: 0.3s ease-in-out;
-o-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
	text-decoration: none;
	font-size: min(1.5rem, 1.5vw);
	 cursor: pointer;
}
.global-nav .global-nav__list > li > a {
    color: var(--text-color);
    display: block;
    box-sizing: border-box;
    height: 40px;
    display: flex;
    align-items: center;
    font-weight: 500;
}
 @media (hover: hover) and (pointer: fine) {
	.global-nav .global-nav__list > li > a:hover {
		color: var(--main-color);
	}
}
/* .global-nav__sub-menu */
.global-nav__sub-menu-wrapper {
    width: 100vw;
    background: #005babf5;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    padding: min(35px, 3.5vw) 0;
	display: none;
}
.global-nav__sub-menu {
    width: min(1100px, 95%);
    margin: 0 auto;
    display: flex;
    gap: 6%;
    align-items: center;
}
.global-nav__sub-menu a {
	color: #fff;
}
.global-nav__sub-menu a:hover {
   opacity: 0.7;
}
.global-nav__sub-menu-block.block-1 a {
    color: var(--main-color);
    background: #fff;
    font-size: min(2.2rem, 2.2vw);
    width: 100%;
    height: min(109px, 10.9vw);
    display: grid;
    place-content: center;
}
.global-nav__sub-menu-block.block-1 {
	width: 27%;
    text-align: center;
    font-weight: bold;
}

.global-nav__sub-menu-block.block-2,
.global-nav__sub-menu-block.block-3,
.global-nav__sub-menu-block.block-4 {
    display: flex;
    flex-direction: column;
    gap: min(5px, 0.1vw);
    min-width: 16%;
}
 @media (hover: hover) and (pointer: fine) {
	.menu-item-has-children:hover .global-nav__sub-menu-wrapper {
    	display: block;
	}
}

  /*----------------------------------------------------
    テーブルデザイン
  ----------------------------------------------------*/
  table {
    font-size: inherit;
    font: 100%;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
    border-top-width: 1px;
    border-right-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-top-color: #e0e0e0;
    border-right-color: #e0e0e0;
  }

  table th {
    padding: 10px;
    border: 1px #e0e0e0 solid;
    border-width: 0 0 1px 1px;
    background: var(--light-color);
    vertical-align: middle;
	  font-size: min(1.8rem, 1.8vw);
	     font-weight: 500;
  }

  table td {
    padding: 10px;
    border: 1px #e0e0e0 solid;
    border-width: 0 0 1px 1px;
    background: #fff;
    font-size: min(1.8rem, 1.8vw);
    line-height: 1.5;
    vertical-align: middle;
  }
main table {
  margin-top: 10px;
  margin-bottom: 30px;
	width: 100%;
}
main table th {
  vertical-align: middle;
}

main table tr {
  vertical-align: middle;
}

main table td {
  vertical-align: middle;
}

/*--------------------------------------------------------------------------------------------------------------------------------
	　TOP
--------------------------------------------------------------------------------------------------------------------------------*/
main.top {
    margin-top: var(--header-height);
}
.section-title {
    text-align: center;
}
.section-title__en {
    color: var(--sub-color);
    font-size: min(2rem, 2vw);
	padding: 0 0 min(10px, 1vw) 0;
    font-weight: 500;
}
.section-title__jp {
    font-size: min(2rem, 2vw);
    padding: min(20px, 2vw) 0;
    font-weight: 500;
}
/* .mv */
.mv {
    background-image: url(/wp-content/uploads/2025/12/mv__bg.jpg);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.mv__container {
    position: relative;
	width: 96%;
    height: min(695px, 50vw);
	margin: 0 auto;
}
.mv__title {
    font-family: var(--shippori-mincho);
    padding: min(180px, 10vw) 0 0;
    display: flex;
    flex-direction: column;
    gap: min(25px, 2.5vw);
    box-sizing: border-box;
    letter-spacing: 0.06em;
    font-weight: bold;
}
.mv__main-title {
    color: var(--main-color);
	font-size: min(6.5rem, 6vw);
    filter: drop-shadow(0 0 1px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 3px #fff) drop-shadow(0 0 4px #fff) drop-shadow(0 0 6px #fff) drop-shadow(0 0 9px #fff);
}
.mv__sub-title {
	font-size: min(2.6rem, 2.4vw);
    filter: drop-shadow(0 0 1px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 3px #fff) drop-shadow(0 0 4px #fff) drop-shadow(0 0 9px #fff);
}
.mv__btn {
    font-size: min(2.3rem, 2.3vw);
    position: absolute;
    bottom: 4%;
    right: 0;
}
/* .news */
.news {
	background: #f0f6fb;
	padding: min(65px, 6.5vw) 0 min(95px, 9.5vw);
}
main.top .news h2 {
    font-size: min(4rem, 4vw);
    font-weight: normal;
}
.news__container {
}
.news__list {
    padding: 0 8%;
	margin: min(60px, 6vw) 0 0 0;
}
.news__item {
    overflow: hidden;
    box-sizing: border-box;
}
.news__item a {
    text-decoration: none;
    display: block;
    margin: 0 4.7%;
}
.news__item-image {
    display: block;
    background: #e3e3e3;
    aspect-ratio: 499 / 283;
}
.news__item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news__prev,
.news__next {
    display: grid;
    place-content: center;
    width: min(34px, 3vw);
    aspect-ratio: 34 / 92;
    background: #307abb;
    transition: all .3s ease;
    cursor: pointer;
    position: absolute;
    border: none;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}
.news__prev {
	left: 0;
	border-radius: 0 10px 10px 0;
}
.news__next {
	right: 0;
	border-radius: 10px 0 0 10px;
}
.news__prev::before,
.news__next::before{
    content: '\f053';
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    color: #fff;
    font-size: min(1.7rem, 1.5vw);
    inset: 0;
}
.news__next::before{
    transform: rotate(180deg);
}
/* .message */
.message {
    padding: min(85px, 8.5vw) 0 min(55px, 5.5vw) 0;
    position: relative;
}
.message .section-title {
    text-align: left;
}
main.top .message h2 {
    color: var(--main-color);
    text-align: left;
    font-weight: 600;
}
.message .section-title__jp {
    font-size: min(3.3rem, 3.3vw);
    font-family: var(--shippori-mincho);
    font-weight: 600;
    padding: min(13px, 1.3vw) 0 0 0;
}
.message__content {
    display: flex;
    justify-content: space-between;
    padding: min(35px, 3.5vw) 0 0;
}
.message__content-image {
    width: 48%;
    height: auto;
}
.message__content-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.message__content-text-container {
    width: 46%;
    padding: min(50px, 5vw) 0 0 0;
}
.message__content-title {
    font-family: var(--shippori-mincho);
    font-size: min(2.8rem, 2.8vw);
    padding: 0 0 min(45px, 4.5vw) min(10px, 1vw);
}
main.top .message__content-text p {
    font-size: min(1.8rem, 1.8vw);
    line-height: 1.83;
    font-family: var(--shippori-mincho);
    padding: 0;
}
/* .service */
.service {
    padding: min(60px, 6vw) 0 min(100px, 10vw);
    background: #f0f6fb;
    position: relative;
}
.service__sub-title {
    text-align: center;
    color: var(--main-color);
    padding: 10px 0 0 0;
    font-size: min(1.6rem, 1.6vw);
}
.service__list {
    display: flex;
    flex-wrap: wrap;
    gap: min(25px, 2.5vw) 2%;
    padding: min(65px, 6.5vw) 0 min(55px, 5.5vw) 0;
    justify-content: center;
}
.service__item {
    width: 32%;
    background: #fff;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 7px #ddd;
}
.page__content .service__item {
    padding: 0;
}
.service__item:nth-child(1),
.service__item:nth-child(2) {
        width: 49%;
}
.service__item a {
    text-decoration: none;
	color: #284762;
    height: min(237px, 21vw);
    background-image: url(/wp-content/uploads/2025/12/service__image-01.jpg);
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    display: grid;
    place-content: center;
    background-color: rgba(255, 255, 255, 0.85);
    background-blend-mode: lighten;
	transition: 0.3s ease-in-out;
}
@media (hover: hover) {
    .service__item a:hover {
    	background-color: transparent;
   }
}

.service__item:nth-child(2) a {
    background-image: url(/wp-content/uploads/2025/12/service__image-02.jpg);
}
.service__item:nth-child(3) a {
    background-image: url(/wp-content/uploads/2025/12/service__image-03.jpg);
}
.service__item:nth-child(4) a {
    background-image: url(/wp-content/uploads/2025/12/service__image-04.jpg);
}
.service__item:nth-child(5) a {
    background-image: url(/wp-content/uploads/2025/12/service__image-05.jpg);
}
.service__item:nth-child(6) a {
    background-image: url(/wp-content/uploads/2025/12/service__image-06.jpg);
}
.service__item:nth-child(7) a {
    background-image: url(/wp-content/uploads/2025/12/service__image-07.jpg);
}
.service__item:nth-child(8) a {
    background-image: url(/wp-content/uploads/2025/12/service__image-08.jpg);
}
.service__item-num {
    position: absolute;
    background: var(--sub-color);
    color: #fff;
    font-size: min(3rem, 2.8vw);
    border-radius: 20px 0 20px 0;
    width: min(63px, 5.5vw);
    aspect-ratio: 1 / 1;
    display: grid;
    place-content: center;
}
.service__item-inner {
    display: flex;
    flex-direction: column;
    gap: min(20px, 2vw);
}
.service__item-title-container {
    display: grid;
    place-content: center;
    box-sizing: border-box;
	height: min(70px, 7vw);
}
.service__item-title {
    font-size: min(2.8rem, 2.7vw);
    text-align: center;
    font-family: var(--shippori-mincho);
    line-height: 1.2;
	font-weight: 600;
}
.service__item-text-container {
    display: grid;
    place-content: center;
	height: min(45px, 4.5vw);
}
.service__item-text {
    text-align: center;
    font-size: min(1.6rem, 1.5vw);
    font-weight: 500;
}
.service__btn-list {
	display: flex;
    justify-content: space-evenly;
}
.service__btn {
    margin: 0;
}
/* reason */
.reason {
    padding: min(95px, 9.5vw) 0 min(90px, 9vw);
    background-image: url(/wp-content/uploads/2025/12/reason__bg.jpg);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
main.top .reason h2 {
    font-size: min(4rem, 4vw);
    font-weight: normal;
}
.reason__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: min(130px, 13vw) 0 0 0;
	gap: min(101px, 9vw) 0;
}
.reason__item {
	border-radius: 20px;
    background: var(--light-color);
    box-sizing: border-box;
    width: 47%;
    position: relative;
    aspect-ratio: 517 / 260;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.reason__item-num {
	color: var(--sub-color);
    font-size: min(3.8rem, 3.7vw);
    position: absolute;
    top: 6%;
    left: 6%;
}
.reason__item-image {
    display: block;
    width: 33%;
    aspect-ratio: 1 / 1;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    top: max(-55px, -5.5vw);
}
.reason__item-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.reason__item-text {
	display: grid;
    place-content: center;
    font-size: min(2.6rem, 2.5vw);
    line-height: 1.46;
    height: min(145px, 14.5vw);
    text-align: center;
    font-family: var(--shippori-mincho);
}
/* .case */
.case {
	padding: min(60px, 6vw) 0 min(90px, 9vw);
    background: #f0f6fb;
}
.case__container {
    width: min(1100px, 96%);
    margin: 0 auto;
}
.case__inner {
    display: flex;
	justify-content: space-between;
	padding: min(35px, 3.5vw) 0 0 0;
}
.case__list {
    margin: min(40px, 4vw) 0 0 0;
    width: 58.7%;
    box-sizing: border-box;
    padding: 0 min(15px, 1.5vw);
}
.case__item a {
    display: block;
    text-decoration: none;
    color: #333;
    margin: 0 min(18px, 1.6vw);
	position: relative;
	background: #fff;
    border-radius: min(20px, 2vw);
    overflow: hidden;
	aspect-ratio: 277 / 426;
}
.case__item-image {
    display: block;
    aspect-ratio: 277 / 171;
}
.case__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case__item-title {
    align-items: center;
    font-weight: bold;
    display: flex;
    font-size: min(2rem, 1.8vw);
    height: min(75px, 7vw);
	padding: 0 min(15px, 1.4vw);
    color: var(--text-color);
    font-family: var(--shippori-mincho);
    line-height: 1.45;
}
.case__item-info-list {
    display: flex;
    flex-direction: column;
    gap: min(10px, 1vw);
    padding: min(15px, 1.3vw) min(17px, 1.5vw);
}
.case__item-info-item {
    display: flex;
    font-size: min(1.6rem, 1.4vw);
    gap: min(10px, 1vw);
    font-weight: 500;
}
.case__item-info-item-title {
    display: block;
    width: 30%;
	background: var(--light-color);
	text-align: center;
}
.case__item-info-item-text {
    flex: 1;
	display: block;
}
.case__item-comment {
    display: block;
    font-size: min(1.6rem, 1.4vw);
    padding: 0 min(17px, 1.5vw);
    color: var(--text-color);
    font-weight: 500;
}
.case__prev,
.case__next {
    background: none;
    transition: all .3s ease;
    cursor: pointer;
    position: absolute;
    border: none;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
}
.case__prev {
	left: 0;
}
.case__next {
	right: 0;
}
.case__prev::before,
.case__next::before{
    content: '\f0d9';
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    color: var(--sub-color);
    font-size: min(3.5rem, 3.5vw);
    inset: 0;
}
.case__next::before{
    content: '\f0da';
}

.case__voice {
    width: 38.6%;
    display: flex;
    flex-direction: column;
    gap: min(25px, 2.5vw);
}
.case__voice-btn {
    font-size: min(2rem, 2vw);
    width: min(348px, 34.8vw);
    padding: min(24px, 2.4vw) 0;
}
/* .column */
.column {
    padding: min(70px,7vw) 0 min(110px,11vw);
}
main.top .column h2 {
    display: flex;
    justify-content: end;
    gap: 2.5%;
    font-size: min(4.5rem, 3.9vw);
}
.column__title-icon {
    display: block;
    width: min(124px, 12.4vw);
    height: min(124px, 12.4vw);
}
.column__title-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.column__popular-container {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: min(75px, 7.5vw) 0 min(60px, 6vw) 0;
}
.column__most-popular {
    width: 46.5%;
    height: min(460px, 46vw);
}
.column__most-popular a {
    display: block;
    position: relative;
    color: #fff;
    height: 100%;
}
.column__most-popular-info {
    position: absolute;
    background: #0000009e;
    bottom: 0;
    height: 155px;
}
.column__most-popular-tag {
    font-weight: bold;
    background: var(--main-color);
    text-align: center;
    font-size: 1.4rem;
    display: block;
    padding: 7px 0;
    width: 152px;
}
.column__most-popular-title {
    display: block;
    font-size: min(2.2rem, 2.2vw);
    font-weight: bold;
    line-height: 1.32;
    padding: 13px 20px;
}
.column__most-popular-date {
    font-size: min(1.4rem, 1.4vw);
    color: #b3b3b3;
    font-weight: 500;
    padding: 0 0 0 32px;
    display: block;
    position: absolute;
    right: 25px;
    bottom: 13px;
}
.column__most-popular-date:before {
    content: '\f017';
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    position: absolute;
    left: 10px;
    top: 2px;
}
.column__most-popular-category {
    font-weight: bold;
    font-size: min(1.4rem, 1.4vw);
    border: 1px solid;
    padding: 5px 20px;
    box-sizing: border-box;
    margin: 0 0 0 20px;
}
/*.column__tab-container */
.column__tab-container {
    width: 50%;
}
.tab-information {
   padding: 65px 0 130px;
	background-image: url(/wp-content/uploads/2024/07/information__bg.jpg.webp);
}
.tab-information .btn {
    font-size: 2rem;
    margin: 30px auto 0;
    width: 260px;
    padding: 21px 0;
	border: 1px solid var(--main-color);
	color: var(--main-color);
}
.tab-information .btn:after {
    background: var(--sub-color);
}
.tab-information__list {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 4%;
}
.tab-information__list li {
    width: 100%;
	height: 22%;
}
.tab-information__list a {
    display: flex;
    text-decoration: none;
    color: #333;
    gap: 3%;
    justify-content: space-between;
    position: relative;
    height: 100%;
}
.tab-information__title {
    font-size: min(2rem, 2vw);
    line-height: 1.45;
    display: block;
    font-weight: bold;
}
.tab-information__type {
    background: var(--sub-color);
    color: #fff;
    font-size: 1.6rem;
    width: 125px;
    display: inline-flex;
    place-content: center;
    padding: 7px 0;
	 border-radius: 50px;
}
.tab-information__type:empty {
    display: none;
}
.tab-information__column {
	display: flex;
    justify-content: space-between;
	 align-items: center;
}
.tabs { 
    display: flex;
    cursor: pointer;
}
.tab { 
    border: 1px solid #c1c1c1;
    border-bottom: none;
    background: #fff;
    flex: 1;
    text-align: center;
    padding: 10px 0px;
    font-size: min(1.6rem, 1.6vw);
    font-weight: bold;
}
.tab.active { 
	background-color: var(--main-color);
	color: #fff;
}
.tab-content { 
	display: none;
	height: 100%;
}
.tab-content.active { 
	display: block; 
}
.tab-contents {
    background: #fff;
    padding: min(18px, 1.5vw);
    border: 1px solid #c1c1c1;
    height: min(472px, 47vw);
    box-sizing: border-box;
}
.tab-information__text-container {
    flex: 1;
}
.tab-information__image {
	width: 21%;
}
.tab-information__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tab-information__date {
    font-size: min(1.4rem, 1.4vw);
    color: #b3b3b3;
    font-weight: 500;
    position: relative;
    padding: 0 0 0 32px;
    display: block;
}
.tab-information__date:before {
    content: '\f017';
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    position: absolute;
    left: 10px;
    top: 2px;
}
.tab-information__btn {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: min(1.4rem, 1.4vw);
    font-weight: bold;
    border: 1px solid;
    border-radius: 3px;
    padding: min(6px, 0.6vw) 0;
    width: min(131px, 12vw);
    box-sizing: border-box;
    text-align: center;
}
.tab-information__btn:after {
    content: "\f0da";
    display: inline;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    font-weight: bold;
    top: 50%;
    transform: translateY(-50%);
    right: 6%;
}
/* .faq */
.faq { 
	padding: min(90px, 9vw) 0 min(120px, 12vw) 0;
	background: #f0f6fb;
}
.faq__list {
	padding: min(75px, 7.5vw) 0 0 0;
	display: flex;
	gap: min(25px, 2.5vw);
	flex-direction: column;
}
.faq__item {
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
	background: #fff;
}
.faq__q {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 min(30px, 3vw) 0 min(22px, 2.2vw);
    height: min(87px, 8.7vw);
    box-sizing: border-box;
    gap: min(30px, 3vw);
    transition: 0.3s ease-in-out;
}
.faq__q-toggle {
    position: relative;
    margin: 0 0 0 auto;
	    width: min(29px,2.9vw);
	height: min(29px,2.9vw);
}
.faq__q-toggle:before {
	content: '';
    background: var(--main-color);
    width: 100%;
	height: min(2px,0.2vw);
	display: block;
	position: absolute;
top: 50%;
	left: 50%;
transform: translateX(-50%) translateY(-50%);

}
.faq__q-toggle:after {
	content: '';
    background: var(--main-color);
    width: min(2px,0.2vw);
	height: 100%;
	display: block;
	position: absolute;
top: 50%;
	left: 50%;
transform: translateX(-50%) translateY(-50%);

}
.faq__q-toggle.active:after {
	content: none;
}
.faq__q-q {
	font-family: var(--shippori-mincho);
	color: var(--main-color);
	font-size: min(3.3rem, 3.3vw);
}
.faq__q-text {
	font-size: min(2.7rem, 2.6vw);
    font-weight: 500;
    font-family: var(--shippori-mincho);
    flex: 1;
    line-height: 1.1;
}
.faq__a {
	display: none;
    padding: min(22px, 2.2vw) 0;
	margin: 0 min(25px, 2.5vw);
	transition: 0.3s ease-in-out;
	border-top: 1px solid #ebebeb;
    gap: min(30px, 3vw);
}
.faq__a-a {
    font-family: var(--shippori-mincho);
	color: var(--sub-color);
	font-size: min(3.3rem, 3.3vw);
}
.faq__a-text {
    line-height: 1.56;
    font-size: min(1.8rem, 1.7vw);
	padding: 0;
    font-weight: 500;
}
.faq__a.active {
	display: flex;
	transition: 0.3s ease-in-out;
}
/* .staff */
.staff {
	padding: min(75px, 7.5vw) 0 min(95px, 9.5vw);
}
.staff__container {
    width: min(1076px, 94%);
    margin: 0 auto;
}
.staff__list {
    margin: min(60px, 6vw) 0 0 0;
    box-sizing: border-box;
}
.staff__item a {
    display: block;
    text-decoration: none;
    color: #333;
    margin: 0 min(26px, 2vw);
    position: relative;
    background: #fff;
    border-radius: min(20px, 2vw);
    overflow: hidden;
}
.staff__item-image {
    display: block;
    aspect-ratio: 307 / 226;
}
.staff__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.staff__item-inner {
    display: block;
    background: var(--light-color);
	    aspect-ratio: 307 / 250;
}
.staff__item-title {
    align-items: center;
    font-weight: 500;
    display: block;
    font-size: min(2.2rem, 2vw);
    text-align: center;
    padding: min(28px, 2.8vw) 0;
    color: var(--text-color);
    font-family: var(--shippori-mincho);
}
.staff__item-comment {
    display: block;
    font-size: min(1.7rem, 1.5vw);
    padding: 0 7%;
    color: var(--text-color);
    font-weight: 500;
}
.staff__prev,
.staff__next {
    display: grid;
    place-content: center;
    width: min(34px, 3vw);
    aspect-ratio: 34 / 92;
    background: #307abb;
    transition: all .3s ease;
    cursor: pointer;
    position: absolute;
    border: none;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}
.staff__prev {
	left: max(-30px, -2.5vw);
	border-radius: 10px 0 0 10px;
}
.staff__next {
	right: max(-30px, -2.5vw);
	border-radius: 0 10px 10px 0;
}
.staff__prev::before,
.staff__next::before{
    content: '\f053';
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    color: #fff;
    font-size: min(1.7rem, 1.5vw);
    inset: 0;
}
.staff__next::before{
    transform: rotate(180deg);
}
/* .recruit */
.recruit {
    padding: min(100px, 10vw) 0 min(135px, 13.5vw);
    background-image: url(/wp-content/uploads/2025/12/recruit__bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.recruit__message {
    font-family: var(--shippori-mincho);
    text-align: center;
    font-weight: 500;
    font-size: min(4.5rem, 4.5vw);
    padding: min(130px, 13vw) 0 0;
}
.recruit__text {
    padding: min(45px, 4.5vw) 0 min(65px, 6.5vw);
    font-family: var(--shippori-mincho);
    text-align: center;
    font-size: min(2.3rem, 2.3vw);
    line-height: 1.7;
    font-weight: 500;
}
/* .company */
.company {
	padding: min(98px, 9.8vw) 0 0;
}
main.top .company h2 {
    color: var(--main-color);
    padding: min(60px, 6vw) 0 min(35px, 3.5vw);
}
.company__text {
    display: flex;
    flex-direction: column;
    gap: min(35px, 3.5vw);
}
main .company__text p {
	text-align: center;
	font-family: var(--shippori-mincho);
    line-height: 1.75;
    padding: 0;
    font-size: min(2rem, 2vw);
    font-weight: 500;
}
/*--------------------------------------------------------------------------------------------------------------------------------
	　共通ブロック
--------------------------------------------------------------------------------------------------------------------------------*/
/* contact-banner */
.contact-banner {
    padding: min(55px, 5vw) 0;
    background: var(--main-color);
    position: relative;
}
.contact-banner__container {
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;
    margin: 0 min(50px, 4vw);
    height: min(173px, 17.3vw);
    box-sizing: border-box;
    padding: min(18px, 1.8vw) 0;
}
.contact-banner__tel {
	text-align: center;
    border-right: 1px solid #e4e4e4;
	text-decoration: none;
	color: #333;
	width: 50%;
}
.contact-banner__tel a {
	text-decoration: none;
    display: block;
}
.contact-banner__tel-title {
    font-size: min(2rem, 2vw);
    font-weight: 500;
    display: block;
    color: var(--text-color);
}
.contact-banner__tel-num {
	font-size: min(5.3rem, 5.1vw);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: min(10px, 0.7vw);
    justify-content: center;
    padding: min(5px, 0.5vw) 0 min(10px, 1vw) 0;
    color: var(--text-color);
}
.contact-banner__tel-num-icon {
	display: block;
    width: min(31px, 3.1vw);
	height: min(31px, 3.1vw);
}
.contact-banner__tel-num-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.contact-banner__tel-hour {
    font-size: min(1.5vw, 1.4rem);
    color: #868686;
    display: block;
    font-weight: 500;
}
.contact-banner__mail {
    width: 50%;
    box-sizing: border-box;
    height: 100%;
}
.contact-banner__mail a {
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    height: 100%;
    box-sizing: border-box;
    gap: min(25px, 2.5vw);
    justify-content: center;
}
.contact-banner__mail-title {
    font-size: min(2.6rem, 2.6vw);
    color: var(--text-color);
    display: block;
    line-height: 1.4;
    font-weight: 500;
    font-family: var(--shippori-mincho);
    text-align: center;
}
.contact-banner__mail-icon {
    display: block;
    width: min(38px, 3.8vw);
	height: min(38px, 3.8vw);
}
.contact-banner__mail-icon img {
    width: 100%;
	height: 100%;
	object-fit: contain;
}

/*--------------------------------------------------------------------------------------------------------------------------------
	　archive
--------------------------------------------------------------------------------------------------------------------------------*/

.archive__image {
    height: 200px;
    width: 280px;
    background: #eeeeee;
}
.archive__image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.archive__column {
    display: flex;
    gap: 20px;
}
.archive__list {
    border-top: 1px solid #eee;
}
.archive__item {
    position: relative;
    border-bottom: 1px solid #eee;
    width: 100%;
    padding: 20px 0;
}
.archive__text {
    flex: 1;
}
.archive__item a {
    text-decoration: none;
}
.archive__date {
    color: var(--sub-color);
    font-size: 1.7rem;
    margin-right: 10px;
}
.archive__category {
    color: var(--main-color);
    font-size: 1.3rem;
    width: 111px;
    display: inline-flex;
    place-content: center;
    padding: 7px 0;
    border: 1px solid var(--main-color);
    margin-right: 10px;
}
.archive__title {
    font-size: 2rem;
    width: 100%;
    padding-top: 10px;
	 color: var(--sub-color);
	 font-weight: bold;
	 display: block;
	 line-height: 1.6;
}
.archive__item:hover {
       background-color: var(--hover-color);
 }
/* .archive__staff */
.archive__staff-list {
    display: flex;
    flex-wrap: wrap;
    gap: min(40px, 4vw) 3%;
}
.archive__staff-item {
    width: 48.5%;
    position: relative;
    padding: 2%;
    box-sizing: border-box;
    background: var(--light-color);
    z-index: 1;
}
.archive__staff-item:before {
	content: "";
    display: block;
    width: min(40px,4vw);
    height: min(40px,4vw);
    background-color: var(--main-color);
    position: absolute;
    left: 0;
    top: 0;
}
.archive__staff-item:after {
    content: "";
    display: block;
    width: min(40px,4vw);
    height: min(40px,4vw);
    background-color: var(--main-color);
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.archive__staff-item-image {
    display: block;
    aspect-ratio: 1 / 1;
    background: #dedede;
	    position: relative;
}
.archive__staff-item-image img {
    width: 100%;
    height: 100%;
	object-fit: cover;
}
.archive__staff-item-inner {
    display: block;
    box-sizing: border-box;
    padding: 3%;
}
.archive__staff-item-name {
    font-size: min(2.3rem, 2.3vw);
    display: block;
    color: #333;
    font-weight: bold;
}
.archive__staff-item-title {
    color: var(--main-color);
    font-size: min(2rem, 2vw);
    border-bottom: 1px solid #dee2e6;
    padding: 0 0 min(5px, 0.5vw) 0;
    margin: min(15px, 1.5vw) 0 min(5px, 0.5vw) 0;
}
.archive__staff-item-text {
	font-size: min(1.8rem, 1.8vw);
}
/* .archive__voice */
.archive__voice-list {
    display: flex;
    flex-wrap: wrap;
    gap: min(20px, 2vw) 2%;
}
.archive__voice-item {
    width: 48%;
	    background: #f6f6f6;
}
.archive__voice-item a {
    display: block;
    text-decoration: none;
    padding: 2.5%;
}
.archive__voice-date {
    display: block;
    color: var(--text-color);
    font-size: min(1.4rem, 1.4vw);
}
.archive__voice-title {
    font-size: min(1.8rem, 1.8vw);
    font-weight: bold;
    display: block;
    padding: min(8px, 0.8vw) 0;
}
.archive__voice-inner {
    display: flex;
    gap: 3%;
}
.archive__voice-image {
    display: block;
    width: 31%;
    aspect-ratio: 15 / 11;
    background: #d0d0d0;
}
.archive__voice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.archive__voice-text {
    font-size: min(1.7rem, 1.7vw);
    display: block;
    color: var(--text-color);
	flex: 1;
}
/*--------------------------------------------------------------------------------------------------------------------------------
	　single
--------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------
	　.main.page-404
--------------------------------------------------------------------------------------------------------------------------------*/
main.page-404 {
    padding-bottom: 80px;
}
.page-404__main-text {
    text-align: center;
    font-size: 17.6rem;
    font-weight: bold;
    color: #d8d8d8;
}
.page-404__text {
    text-align: center;
    font-size: 2rem;
}
.page-404__search {
    text-align: center;
}
/*--------------------------------------------------------------------------------------------------------------------------------
	　.main.page-search
--------------------------------------------------------------------------------------------------------------------------------*/
.sub-page:has(.page-search) {
    margin-top: var(--header);
}
main.page-search {
    padding-bottom: 80px;
}
.page-search__list a {
    display: block;
    text-decoration: none !important;
    padding: 15px 0;
    border-bottom: 1px solid #e2e2e2;
}
.page-search__list a:hover {
	background: var(--hover-color);
}
/*--------------------------------------------------------------------------------------------------------------------------------
	　.main.page-contact
--------------------------------------------------------------------------------------------------------------------------------*/


.page-contact table {
	width: 100%;
}
.page-contact table th {
    font-weight: bold;
}
.page-contact th .required {
    color: red;
    margin-left: auto;
	  white-space: nowrap;
}
.page-contact .wpcf7-text, .page-contact .wpcf7-number {
    width: 100%;
    height: min(45px, 4.5vw);
    font-size: min(1.5rem, 1.5vw);
    box-sizing: border-box;
    border: 1px #b9b9b9 solid;
    padding: 2%;
}
.page-contact .wpcf7-date, .page-contact .wpcf7-select {
    width: 20%;
    height: min(45px, 4.5vw);
    font-size: min(1.5rem, 1.5vw);
    box-sizing: border-box;
    border: 1px #b9b9b9 solid;
    padding: 1%;
}
.page-contact .date-and-time .wpcf7-date {
    width: inherit;
}
.page-contact table th p {
    padding: 0;
}
.page-contact textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px #b9b9b9 solid;
    padding: 1.5%;
}
main:has(.page-contact) .related-articles {
	display: none;
}
.page-contact .wpcf7-list-item {
    display: block;
}
.page-contact .post-code > p {
    display: flex;
    align-items: center;
    gap: min(10px, 1vw);
}
.page-contact .date-and-time {
    display: flex;
    align-items: center;
    gap: min(10px, 1vw);
}
.page-contact .date-and-time > p {
    display: flex;
    align-items: center;
    gap: min(10px, 1vw);
}

/*--------------------------------------------------------------------------------------------------------------------------------
	　サービスページ　共通
--------------------------------------------------------------------------------------------------------------------------------*/

body .sub-page:has(main.page-service) + .contact-banner {
    display: none;
}
.sub-page:has(main.page-service) {
    width: 100%;
}
main.page-service h2 {
    color: var(--main-color);
    background: none;
    margin: 0;
    text-align: center;
    font-size: min(4.5rem, 4.5vw);
    padding: 0;
}
main.page-service h2:before {
    content: none;
}
main.page-service h2:after {
    content: '';
    width: min(51px, 5.1vw);
    height: min(5px, 0.5vw);
    display: block;
    background: var(--sub-color);
    position: inherit;
    bottom: inherit;
    left: inherit;
    margin: min(15px, 1.5vw) auto 0;
}
.page-service-title {
    display: grid;
    place-content: center;
    height: min(330px, 33vw);
    background: linear-gradient(45deg, var(--main-color), var(--sub-color));
    text-align: center;
	color: #fff;
	gap: min(25px, 2vw);
	margin-top: var(--header-height);
}
.page-service-title__h1 {
    font-size: min(5.9rem, 5.9vw);
    font-family: var(--shippori-mincho);
    font-weight: 600;
}
.page-service-message {
    font-size: min(2.1rem, 2.1vw);
    font-family: var(--shippori-mincho);
    font-weight: 600;
    line-height: 1.76;
}
.page-service-block-01 {
    padding: min(50px, 5vw) 0 min(80px, 8vw) 0;
}
.page-service-block-01__container {
    display: flex;
    justify-content: space-between;
    gap: 4.5%;
    align-items: center;
}
.page-service-block-01__image {
    width: 41%;
    border-radius: min(20px, 2vw);
    overflow: hidden;
    aspect-ratio: 450 / 307;
}
.page-service-block-01__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-service-block-01__inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: min(20px, 1.5vw);
}
.page-service-block-01__title {
    font-size: min(3.9rem, 3.9vw);
    color: var(--main-color);
	    font-family: var(--shippori-mincho);
    font-weight: 600;
}
.page-service-block-01__text {
    font-size: min(1.8rem, 1.8vw);
    line-height: 1.83;
}
.page-service-block-02 {
    padding: 0 0 min(90px, 9vw) 0;
}
.page-service-block-02__text {
    text-align: center;
    font-size: min(2rem, 2vw);
    font-weight: 500;
	padding: min(35px, 3.5vw) 0 0;
}
.page-service-block-02__image {
	padding: min(45px, 4.5vw) 0 0 0;
	text-align: center;
}
.page-service-block-03 {
    background: var(--light-color);
	padding: min(55px, 5.5vw) 0 min(120px, 12vw) 0;
}
.page-service-block-03__list {
    display: flex;
    flex-direction: column;
    gap: min(60px, 6vw);
	padding: min(60px, 6vw) 0 0 0;
}
.page-service-block-03__item {
    display: flex;
    justify-content: space-between;
    gap: 4.5%;
    align-items: center;
}
.page-service-block-03__item:nth-child(even) {
    flex-direction: row-reverse;
}
.page-service-block-03__image {
    width: 41%;
    border-radius: min(20px, 2vw);
    overflow: hidden;
    aspect-ratio: 450 / 307;
}
.page-service-block-03__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-service-block-03__inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: min(20px, 1.5vw);
}
.page-service-block-03__title {
    font-size: min(3.3rem, 3.3vw);
    color: var(--sub-color);
    font-family: var(--shippori-mincho);
    font-weight: 600;
}
.page-service-block-03__text {
    font-size: min(1.8rem, 1.8vw);
    font-weight: 500;
    line-height: 1.83;
}
.page-service-block-04 {
    padding: min(55px, 5.5vw) 0 min(120px, 12vw) 0;
}
.page-service-block-04__image {
	padding: min(75px, 7.5vw) min(15px, 1.5vw) 0 min(15px, 1.5vw);
}

.page-service-block-05 {
    background: var(--light-color);
    padding: min(55px, 5.5vw) 0 min(120px, 12vw) 0;
}
.page-service-block-05__list {
    display: flex;
    flex-wrap: wrap;
    gap: min(60px,6vw) 5%;
	padding: min(50px, 5vw) 0 0 0;
}
.page-service-block-05__item {
    background: #fff;
    border-radius: min(20px, 2vw);
    text-align: center;
    width: 47.5%;
    box-sizing: border-box;
    padding: 3%;
}
.page-service-block-05__image {
    border-radius: min(10px, 1vw);
    overflow: hidden;
}
.page-service-block-05__image img {
    width: 100%;
	height: 100%;
    object-fit: cover;
}
.page-service-block-05__title {
    font-size: min(3.2rem, 3.2vw);
    color: var(--main-color);
    font-family: var(--shippori-mincho);
    font-weight: 600;
    height: min(82px, 8.2vw);
    display: grid;
    place-content: center;
}
.page-service-block-05__text {
    font-size: min(1.8rem, 1.8vw);
    line-height: 1.83;
    font-weight: 500;
}
.page-service-block-06 {
	padding: min(60px, 6vw) 0 min(80px, 8vw) 0;
}
.page-service-block-06__content {
    padding: min(55px, 5.5vw) 0 0 0;
}
.page-service-block-07 {
    background: var(--light-color);
	padding: min(85px, 8.5vw) 0 min(80px, 8vw) 0;
}
main.page-service .page-service-block-07 h2 {
    color: var(--text-color);
}
/*--------------------------------------------------------------------------------------------------------------------------------
	　クラウド導入支援ページ　
--------------------------------------------------------------------------------------------------------------------------------*/
.page-service-block-06__content .service-page-cloud table {
    width: 100%;
	margin: 0;
}
.page-service-block-06__content .service-page-cloud thead th {
    background: var(--main-color);
    color: #fff;
    font-family: var(--shippori-mincho);
    font-weight: 500;
    font-size: min(2.5rem, 2.5vw);
    padding: min(21px, 2.1vw);
}
.page-service-block-06__content .service-page-cloud tbody th {
    font-family: var(--shippori-mincho);
    font-weight: 600;
    font-size: min(3rem, 3vw);
	line-height: 1.1;
    width: 57%;
	padding: min(30px, 3vw) 0 min(50px, 5vw);
}
.page-service-block-06__content .service-page-cloud tbody th span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-size: min(1.5rem, 1.5vw);
    display: block;
    padding: min(15px, 1.5vw) 0 0;
}
.page-service-block-06__content .service-page-cloud tbody td {
    font-family: var(--shippori-mincho);
    font-weight: bold;
    font-size: min(6.6rem, 6.6vw);
	line-height: 1.1;
	width: 43%;
    text-align: center;
}
.page-service-block-06__content .service-page-cloud tbody td span {
    font-size: 0.62em;
}
/*--------------------------------------------------------------------------------------------------------------------------------
	　経理アウトソーシングページ　
--------------------------------------------------------------------------------------------------------------------------------*/
.service-page-keiri__text {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: min(20px, 2vw);
}
.page-service-block-06__content .service-page-keiri p {
    font-size: min(1.6rem, 1.6vw);
	padding: 0;
}
.service-page-keiri__list {
    display: flex;
    flex-wrap: wrap;
    gap: min(40px, 4vw) 4%;
	padding: min(60px, 6vw) 0 0 0;
}
.service-page-keiri__item {
    width: 48%;
    border: 1px solid #e9eae9;
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
}
.service-page-keiri__item-title {
    font-size: min(2.5rem, 2.5vw);
    background: #1b69d3;
    padding: min(20px, 2vw) 0;
    color: white;
    text-align: center;
    position: relative;
    font-weight: bold;
}
.service-page-keiri__item-title:after {
    content: "";
    display: block;
    width: min(20px, 2vw);
    height: min(10px, 1vw);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #1b69d3;
    position: absolute;
    transform: translate(-50%, 100%);
    bottom: 1px;
    left: 50%;
}
.service-page-keiri__item-text-container {
    padding: 4%;
    box-sizing: border-box;
    height: min(210px, 21vw);
}
.service-page-keiri__item-sub-title {
	font-weight: bold;
    color: #1b69d3;
    font-size: min(1.9rem, 1.9vw);
	padding: 0 0 min(15px, 1.5vw) 0;
}
.service-page-keiri__item-text {
    font-size: min(1.6rem, 1.5vw);
    line-height: 1.6;
}
.service-page-keiri__item-fee-container {
    display: flex;
    justify-content: center;
    width: 100%;
}
.service-page-keiri__item-fee-after-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.service-page-keiri__item-fee-before {
	background: #ebebeb;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35%;
	position: relative;
}

.service-page-keiri__item-fee-after {
    background: #ebf3f9;
    min-height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}
.service-page-keiri__item-fee-after-num {
    font-size: min(4rem, 4vw);
    font-weight: bold;
    text-align: center;
    color: #c43f2e;
}
.service-page-keiri__item-fee-before-text {
    font-weight: bold;
    font-size: min(2rem, 2vw);
    text-align: center;
}
.service-page-keiri__item-fee-after-list {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: min(5px, 0.5vw);
    width: 90%;
}
.service-page-keiri__item-fee-after-item {
    background: #a8976d;
    color: white;
    font-weight: bold;
    font-size: min(1.6rem, 1.5vw);
    padding: min(5px, 0.5vw);
}
.service-page-keiri__item-fee-before:after {
    content: "";
    position: absolute;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8rem 0 8rem min(40px,3vw);
    border-color: transparent transparent transparent #eaebec;
    transform: translate(100%, 0%);
}
/*--------------------------------------------------------------------------------------------------------------------------------
	　創業支援・資金調達サポートページ　
--------------------------------------------------------------------------------------------------------------------------------*/
.service-page-funding td strong {
	color: #be3134;
	font-size: 1.4em;
}
.service-page-funding td span {
	font-weight: bold;
	font-size: 1.2em;
}
.service-page-funding__notes {
    font-size: 0.85em;
}
/*--------------------------------------------------------------------------------------------------------------------------------
	　よくある質問ページ　
--------------------------------------------------------------------------------------------------------------------------------*/
main.page .faq__item {
    background: var(--light-color);
}
main.page .faq__list {
    padding: 0;
}
main.page .page__content li:before {
    content: none;
}

/*--------------------------------------------------------------------------------------------------------------------------------
	　経理アウトソーシングページ　
--------------------------------------------------------------------------------------------------------------------------------*/
.outsourcing-banner { margin: 0 auto; padding: 80px 0 0; }
.outsourcing-banner img { border: 1px solid #005bab; }
.outsourcing-banner a:hover { opacity: 0.7; }