@charset "UTF-8";
:root {
	--main-color: #429b6f;
	--sub-color: #eb8d13;
	--light-color: #eef8f3;
	--hover-color: #eef8f3;
	--header-height: min(98px, 9vw);
	--global-navi-height: min(48px, 4.5vw);
    scroll-padding: var(--global-navi-height);
	
}
html {
   font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
/* 	font-weight: 400; */
    font-size: min(1.8rem, 1.8vw);
    color: #333;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.03em;
}
/*------------------------------------------------------------------------------------
  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 6 Free"; font-weight: 600; color: #ccc; margin-right: 0.5rem; display: inline-block; }
.simple-sitemap-container ul.children { margin-left: 2rem !important; }
.simple-sitemap-wrap { border-top-color: var(--main-color)!important;}
@media screen and (max-width: 600px) {
  .simple-sitemap-container.tab-enabled label { width: initial !important; }
  .simple-sitemap-container h3 { padding: 2vw 1vw; font-size: 2.8vw; }
	.simple-sitemap-container.tab-enabled label { margin: 0 1vw 0 0 !important;}
	.sitemap-item a { font-size: 3.8vw;}
	.children .sitemap-item a { font-size: 3.6vw;}
}
/*------------------------------------------------------------------------------------
	　 Inview.js
------------------------------------------------------------------------------------*/
.--InviewFade { opacity: 0; /*表示前に透明にしておく */  transition: 0.1s; /*移動にかける時間 */ transition-delay: 0s; /*遅延をかける秒数 */ }
.--InviewFade.--InviewFadeUp { /*表示前に透明にしておく */ 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.--InviewDelay1 { transition-delay: 0.4s; /*遅延をかける秒数 */ }
.--InviewFade.--InviewDelay2 { transition-delay: 0.8s; /*遅延をかける秒数 */ }
.--InviewFade.--InviewDelay3 { transition-delay: 1.2s; /*遅延をかける秒数 */ }
.--InviewFade.--InviewDelay4 { transition-delay: 1.4s; /*遅延をかける秒数 */ }
.--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の独自スタイル
------------------------------------------------------------------------------------*/
.lightweight-accordion { margin-bottom: 3rem !important; }
.--BulletPoint,
.--BulletCheck,
.--BulletNumber { margin: 1em auto; padding: 0.5em 1.5em; border: 3px solid #e5efea; background-color: #f4fbf8; }
.--BulletPoint li,
.--BulletCheck li,
.--BulletNumber li { list-style-type: none !important; border-bottom: 1px solid #daece3; }
.--BulletPoint li:last-child,
.--BulletCheck li:last-child,
.--BulletNumber li:last-child { list-style-type: none !important; border-bottom: none; }
.--BulletPoint li:before { padding-right: min(15px, 1.5vw); content: "\f111"; color: #429b6f; font-size: 0.48em; font-family: "Font Awesome 6 Free"; font-weight: bold; vertical-align: middle; }
.--BulletCheck li:before { padding-right: min(15px, 1.5vw); content: "\f00c"; color: #429b6f; font-size: 1.2em; font-family: "Font Awesome 6 Free"; font-weight: bold; vertical-align: middle; }
.--BulletNumber { counter-reset: bullet_number; }
.--BulletNumber li:before {     margin-right: min(10px, 1vw);
    display: inline-grid;
    place-content: center;
    counter-increment: bullet_number;
    content: counter(bullet_number);
    color: #f4fbf8;
    background: #429b6f;
    width: min(29px, 2.9vw);
    border-radius: 100px;
    aspect-ratio: 1 / 1; }
.--RelatedLinkBox a:before { padding-right: min(15px, 1.5vw); content: "\f111"; color: #d5d5d5; font-size: 0.48em; font-family: "Font Awesome 6 Free"; font-weight: bold; vertical-align: middle; }

.--RelatedLinkBox p {
    border-bottom: 1px solid #daece3;
}
.--RelatedLinkBox p:last-child {
    border: none;
}
.--RelatedLinkBox a { text-decoration: none; transition: 0.3s ease-in-out;}
.--RelatedLinkBox { margin: 1em auto; padding: 0.5em 1.5em; border: 3px solid #e5efea; background-color: #fff; }
.--RelatedLinkBox a:hover {
    opacity: 0.7;
    cursor: pointer;
	transition: 0.3s ease-in-out;
}
.--RelatedLinkBox::before {
    content: "関連リンク"; /* タイトルを固定 */
    display: block;
    font-weight: bold;
    font-size: 1.1em;
    color: #333;
     margin: min(15px, 1.5vw) 0 min(10px, 1vw);
    padding-left: min(35px, 3.5vw);
    background-image: url(/wp-content/uploads/2026/02/icon__file.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: min(22px, 2.2vw) auto;
}
.--CatchHeading {
    font-size: min(2.6rem, 2.6vw);
	font-weight: bold;
	border-top: 1px solid #429b6f;
	border-bottom: 1px solid #c8c8c8;
	margin: min(20px, 2vw) 0;
}
.sub-page .--CatchHeading p,
#tinymce .--CatchHeading p {
    padding: min(12px, 1.2vw) min(5px, 0.5vw);
    font-size: min(2.6rem, 2.6vw);
	font-weight: bold;
	line-height: 1.3;
}
.--Catch {
    background: #429b6f;
    color: #fff;
    font-size: min(1.6rem, 1.6vw);
    display: inline-block;
    padding: min(9px, 0.9vw) min(15px, 1.5vw);
    line-height: 1;
	position: relative;
	margin: 0 min(30px, 3vw) 0 0;
}
.--Catch:after {
	content: '';
    background: #429b6f;
    width: min(15px, 1.5vw);
	height: 100%; 
    display: block;
	position: absolute;top: 50%;
	transform: translateX(100%) translateY(-50%);
    right: min(1px, 0.01vw);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.--SupplementaryFrame,
.--CautionFrame { position: relative; display: block; margin: 0 auto 3rem; padding: 15px 15px 15px 63px; width: 760px; line-height: 1.7; border-width: 1px; border-style: solid; border-radius: 5px; }
.--SupplementaryFrame { background: #fff7cc; border-color: #ffe766; }
.--CautionFrame { background: #fdf2f2; border-color: #f6b8b8; }
.--SupplementaryFrame:before { content: "\21"; background: #ffd700; border-radius: 50%; }
.--CautionFrame:before { content: "\21"; }
.--SupplementaryFrame:before,
.--CautionFrame:before { position: absolute; z-index: 1; top: 10px; left: 10px; display: flex; justify-content: center; align-items: center; width: 40px; height: 40px; color: #fff; font-size: 2.2rem; font-family: "Font Awesome 6 Free"; font-weight: bold; }
.--CautionFrame:after { position: absolute; z-index: 0; top: -12px; left: 12px; content: "\f04b"; color: #f6b8b8; font-size: 4.6rem; font-family: "Font Awesome 6 Free"; font-weight: bold; transform: rotate(-90deg); }
.--SimpleFrame { display: block; margin: 0 auto 3rem; padding: 15px; width: 810px; line-height: 1.7; border: 1px solid #ccc; border-radius: 5px; }
.--LabelBox { position: relative; display: flex; flex-direction: column; align-items: flex-start; margin: 3rem auto; padding: 15px; width: 810px; background: #f3fafe; border: 1px solid #bde3fb; border-radius: 5px; }
.--LabelBoxTitle { display: inline-block; margin: -35px 0 15px; padding: 10px 15px; color: #fff; font-weight: 500; background: #87cefa; border-radius: 5px; }
.--DefaultButton,
.--SimpleButton { display: flex; justify-content: center; align-items: center; margin: 0 auto 3rem; }
.--DefaultButton a,
.--SimpleButton a { display: flex; justify-content: center; align-items: center; margin: 0 auto; font-size: 1.8rem; font-weight: 500; text-decoration: none; border-radius: 5px; box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .15); }
.--DefaultButton a { padding: 15px 30px; color: #fff !important; }
.--SimpleButton a { padding: 15px 35px; border-width: 2px; border-style: solid; }
.--RedMarker { background:rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #FFABCE 0%) repeat scroll 0 0; /*赤色マーカー*/ }
.--BlueMarker { background:rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #A7F1FF 0%) repeat scroll 0 0; /*青色マーカー*/ }
.--YellowMarker { background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #FFFF88 0%) repeat scroll 0 0; /*黄色マーカー*/ }
/* テーブル */
table { max-width: 100% !important; border-collapse: collapse; margin-bottom: 2rem; }
table tbody { max-width: 100% !important; }
table th { padding: 10px 20px; border-width: 1px; border-style: solid; border-color: #eaeaea; word-break: break-all; }
table td { padding: 10px 20px; border-width: 1px; border-style: solid; border-color: #eaeaea; line-height: 1.5; word-break: break-all; }
table th p,
table td p { margin-bottom: 0 !important; }
.Body__Page table th { background-color: #fff6f6; }
table.mainstyle th { background: #ffffCC; }
table.NoLine th { border: none; }
table.NoLine td { border: none; }

@media only screen and (min-width:600px) and (max-width:1200px) {
  .--BulletPoint,
	.--BulletCheck,
  .--BulletNumber { }
  .--SupplementaryFrame,
  .--CautionFrame { margin: 0 auto 2.5vw; padding: 1.25vw 1.25vw 1.25vw 5.21vw; width: 63.3vw; border-radius: 0.4vw; }
  .--SupplementaryFrame:before,
  .--CautionFrame:before { top: 0.83vw; left: 0.83vw; width: 3.33vw; height: 3.33vw; font-size: 1.8vw; }
  .--CautionFrame:after { top: -1vw; left: 1vw; font-size: 3.83vw; }
  .--SimpleFrame { margin: 0 auto 2.5vw; padding: 1.25vw; width: 67.5vw; border-radius: 0.4vw; }
  .--LabelBox { margin: 2.5vw auto; padding: 1.25vw; width: 67.5vw; border-radius: 0.4vw; }
  .--LabelBoxTitle { margin: -2.9vw 0 1.25vw; padding: 0.83vw 1.25vw; border-radius: 0.4vw; }
  .lightweight-accordion-body { padding: 0.83vw !important; border-width: 0.2vw !important; }
  .lightweight-accordion-title p,
  .lightweight-accordion .lightweight-accordion-title span { font-size: 1.5vw !important; }
  .--SupplementaryFrame,
  .--CautionFrame,
  .--SimpleFrame,
  .--LabelBox { font-size: 1.33vw; }
  .--DefaultButton,
  .--SimpleButton { margin: 0 auto 2.5vw; }
  .--DefaultButton a,
  .--SimpleButton a { font-size: 1.5vw; border-radius: 0.4vw; }
  .--DefaultButton a { padding: 1.25vw 2.49vw; }
  .--SimpleButton a { padding: 1.25vw 2.9vw; }
  table th,
  table td,
  table th p,
  table td p { font-size: 1.33vw; }
  table th { padding: 0.83vw 1.66vw; }
  table td { padding: 0.83vw 1.66vw; }
}

@media screen and (max-width: 600px) {
  table { width: 100% !important; /* table-layout: fixed; */ }
  table td { white-space: pre-wrap; }
  .lightweight-accordion-title p,
  .lightweight-accordion .lightweight-accordion-title span { font-size: 1.7rem !important; }
	.--BulletPoint li:before,.--BulletCheck li:before {
    padding-right: 2vw;
}
	.--BulletNumber li:before {
    margin-right: 2vw;
    width: 6vw;
}
  .--BulletPoint, .--BulletCheck, .--BulletNumber, .--RelatedLinkBox {
    padding: 0.3em 1em;
    border-width: 2px;
}
	.sub-page .--CatchHeading p {
    padding: 3vw 1vw;
    font-size: 4.6vw;
    line-height: 1.2;
}
	.--CatchHeading {
    font-size: 3.4vw;
    margin: 3vw 0;
}
	.--Catch {
    font-size: 3.4vw;
    padding: 1.2vw 2.5vw;
		    margin: 0 4vw 0 0;
}
	.--Catch:after {
    width: 2vw;
}
	.--RelatedLinkBox::before {
    margin: 3vw 0 1vw;
    padding-left: 6vw;
    background-size: 4vw auto;
}
  .--SupplementaryFrame,
  .--CautionFrame { padding: 2% 2% 2% 14%; width: 84%; line-height: 1.5; }
  .--SupplementaryFrame:before,
  .--CautionFrame:before { top: 2vw; left: 2vw; width: 8vw; height: 8vw; }
  .--CautionFrame:after { top: -1.5vw; left: 2.5vw; font-size: 4.4rem; }
  .--SimpleFrame { padding: 2%; width: 96%; line-height: 1.5; }
  .--LabelBox { padding: 2%; width: 96%; }
  .--LabelBoxTitle { margin: -5vw 0 2vw; padding: 2% 3vw; }
  .--DefaultButton a { padding: 3.5vw 6vw; }
  .--SimpleButton a { padding: 3vw 7vw; }
}
/*------------------------------------------------------------------------------------
  ワードプレススタイル
------------------------------------------------------------------------------------*/

  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.3rem, 1.3vw);
    margin: min(10px, 1vw) auto 0;
    width: min(1100px, 96%);
}
/*------------------------------------------------------------------------------------
  目次
------------------------------------------------------------------------------------*/
#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);
}
/*------------------------------------------------------------------------------------
  .searchandfilter
------------------------------------------------------------------------------------*/
/* .searchandfilter div > ul { display: block; width: 100%; }
.searchandfilter div > ul li { display: block; width: 100%; }
.searchandfilter div > ul li ul { display: flex; justify-content: flex-start; flex-wrap: wrap; }
.searchandfilter input[type="checkbox"],
.searchandfilter input[type="radio"] { display: none; }
.searchandfilter div > ul li.cat-item { position: relative; display: flex; margin: 0 1% 1% 0; padding: 0; width: 32%; font-size: 1.5rem; font-weight: 500; background: -moz-linear-gradient(top, #fff, #ededed); background: -webkit-linear-gradient(top, #fff, #ededed); background: linear-gradient(to bottom, #fff, #ededed); border: 1px solid #e3e3e3; }
.searchandfilter div > ul li.cat-item:nth-child(3n) { margin-right: 0; }
.searchandfilter div > ul li.cat-item:before { position: absolute; right: 0; top: 50%; transform: translate(-50%, -50%); content: " \f0da";
  font-family: "Font Awesome 6 Free"; font-weight: bold; color: #fff; font-size: 1.0rem; z-index: 1; }
.searchandfilter div > ul li.cat-item:after { content: ""; position: absolute; top: 0; right: 0; width: 8px; height: 100%; background: var(--main-color); }
.searchandfilter div > ul li.cat-item label { display: block; width: 100%; padding: 10px 20px 10px 10px; }
.searchandfilter div > ul li.cat-item label:hover { cursor: pointer; opacity: 0.7; }
.searchandfilter input[type="submit"] { display: none; } */
/*------------------------------------------------------------------------------------
	　ページネーション
------------------------------------------------------------------------------------*/
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 {
    margin: min(35px, 3.5vw) auto min(55px, 5.5vw);
    display: flex;
    justify-content: space-between;
    width: min(1100px, 96%);
    flex-direction: row-reverse;
}
.sub-page h2:first-child {
    margin-top: 0;
}
main {
    width: 75.5%;
}
#tinymce p, .sub-page p {
    line-height: 2;
    padding: min(15px, 1.5vw) 0;
    font-size: min(1.8rem, 1.8vw);
    font-weight: 500;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
.br-pc {
    display: block;
}
a {
    color: var(--sub-color);
	cursor: pointer;
}
a:hover {
	text-decoration: none;
}

img {
	vertical-align: top;
    max-width: 100%;
	height: auto;
}
.hv:hover {
	opacity: 0.7;
	cursor: pointer;
}
.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;
}
.center {
    text-align: center;
}
.tel-num {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #3e765f;
	font-family: 'Roboto Condensed', 'arial', sans-serif;
}

.sub-page .btn {
    width: min(529px, 52.9vw);
    padding: min(32px, 3.2vw) 4% min(32px, 3.2vw) 0;
    font-weight: 600;
    font-size: min(2rem, 2vw);
}
.sub-page .btn:after {
    right: 9%;
    font-size: 1em;
}
.single__content li,
.page__content li,
#tinymce li {
    padding: 1em 0;
    font-size: min(1.8rem, 1.8vw);
    font-weight: 500;
}
blockquote {
    border-left: 3px solid #429b6f;
    background-color: #f4fbf8;
	display: flex;
	gap: min(30px, 3vw);
	padding: min(10px, 1vw) min(20px, 2vw);
}
.sub-page blockquote p {
    padding: 0;
}
blockquote:before {
    content: "“";
    color: #cbe1d6;
    font-size: 2.7em;
    font-weight: bold;
    vertical-align: middle;
    line-height: 1;
    font-family: "Noto Sans Jp", "Noto Sans CJK JP", sans-serif;
}
.page__content .simple-sitemap-container li {
    padding: 0;
    font-size: inherit;
}
.page__content .simple-sitemap-container li:before {
	content: none;
}

/*------------------------------------------------------------------------------------
	　見出し
------------------------------------------------------------------------------------*/
h1 {
    width: min(430px, 43vw);
}
h1 a {
	display: block;
}
h1 img {
	width: 100%;
	height: 100%;
	object-fit :contain;
} 
h2 {
    font-size: min(3rem, 3vw);
    font-weight: 900;
    position: relative;
    margin: 0 0 min(35px, 3.5vw);
    padding: min(18px, 1.8vw) min(20px, 2vw);
    background: var(--main-color);
    color: #fff;
	clear: both;
}
h2:before {
    content: '';
    display: block;
    background: #fff;
    width: 100%;
    height: 1px;
    position: absolute;
	left: 0;
    top: min(5px, 0.5vw);
}
h2:after {
    content: '';
    display: block;
    background: #fff;
    width: 100%;
    height: 1px;
    position: absolute;
	left: 0;
    bottom: min(5px, 0.5vw);
}
h3 {
    font-size: min(2.8rem, 2.8vw);
    font-weight: 900;
    margin: min(30px, 3vw) 0;
    padding: min(13px, 1.3vw) 0;
    border-top: 1px solid var(--main-color);
    border-bottom: 1px solid #c8c8c8;
    line-height: 1.2;
    box-sizing: border-box;
    clear: both;
}
h4 {
	font-size: min(2.4rem, 2.4vw);
    font-weight: 900;
    margin: min(30px, 3vw) 0;
    padding: min(12px, 1.2vw);
    background: var(--light-color);
    border-bottom: 2px solid var(--main-color);
    box-sizing: border-box;
    clear: both;
}
h5 {
    font-size: min(2.2rem, 2.2vw);
    font-weight: 900;
    margin: min(30px, 3vw) 0;
    padding: min(4px, 0.4vw) min(10px, 1vw);
    border-left: 3px solid var(--main-color);
	clear: both;
}
h6 {
    font-size: min(1.8rem, 1.8vw);
	font-weight: 900;
    margin: min(30px, 3vw) 0;
    padding: min(19px, 1.9vw);
    background: #f8f6f2;
	clear: both;
}
main.top h2,
.contact-banner h2 {
    padding: 0;
    text-align: center;
    background: none;
    margin: 0;
	display: flex;
    flex-direction: column;
    gap: min(8px, 0.8vw);
}
main.top h2 .jp,
.contact-banner h2 .jp{
    font-size: min(3.8rem, 3.8vw);
    color: #333;
    display: block;
	font-weight: 600;
}
main.top h2 .en,
.contact-banner h2 .en {
    font-size: min(1.9rem, 1.9vw);
    color: var(--sub-color);
    font-family: "Montserrat", sans-serif;
	 display: block;
	 font-weight: 500;
}
main.top h2:before,
main.top h2:after,
.contact-banner h2:before,
.contact-banner h2:after,
.page-title__h2:before,
.page-title__h2:after {
    content: none;
}
.page-title {
    box-sizing: border-box;
    position: relative;
    height: min(210px, 21vw);
    background-color: var(--light-color);
	background-image: url(/wp-content/uploads/2026/01/page-title__bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.page-title__container {
    margin: 0 auto;
    height: 100%;
    display: grid;
    place-content: center;
    text-align: center;
    width: min(1100px, 98%);
    gap: min(25px, 2.5vw);
	position: relative;
}
.page-title__h2 {
    font-size: min(3.2rem, 3.2vw);
    color: #333;
    box-sizing: border-box;
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    background: none;
}
.page-title__h2:before {
    content: none;
}
/*------------------------------------------------------------------------------------
	　ヘッダ、フッター
------------------------------------------------------------------------------------*/
header {
    width: 100%;
    background: #fff;
	box-sizing: border-box;
}
.header__container {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    height: var(--header-height);
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 min(23px, 0.8vw) 0 min(10px, 0.8vw);
	gap: min(35px, 3vw);
}
.header__corporation-logo {
    width: min(71px, 7.1vw);
}
.header__corporation {
    text-align: center;
    width: min(202px, 15vw);
    margin: 0 min(20px, 1vw) 0 0;
    display: flex;
    flex-direction: column;
    gap: min(4px, 0.4vw);
}
.header__corporation-logo img {
	width: 100%;
	height: 100%;
	object-fit :contain;
} 
.header__corporation-name {
    font-size: min(1.5rem, 1.3vw);
    font-weight: 600;
}
.header__title {
    display: flex;
    flex-direction: column;
    gap: min(7px, 0.7vw);
	margin: 0 auto 0 0;
}
.header__title-corporation {
    font-size: min(1.6rem, 1.4vw);
    font-weight: 500;
}

.header__contact {
    display: flex;
    flex-direction: column;
    gap: min(10px, 1vw);
}
.header__contact-inner {
    display: flex;
    gap: min(10px, 1vw);
}
.header__contact-title {
	color: var(--main-color);
    font-size: min(1.6rem, 1.5vw);
    position: relative;
    text-align: center;
    font-weight: 500;
    z-index: 2;
}
.header__contact-title span {
    display: inline-block;
	padding: 0 min(10px, 1vw);
    background: #fff;
}
.header__contact-title:after {
    content: '';
    display: block;
    background: var(--main-color);
    height: 1px;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: -1;
}

.header__btns {
    display: flex;
    gap: min(16px, 0.8vw);
}
.header__btn {
    border-radius: 50px;
    width: min(167px, 16.7vw);
    height: min(37px, 3.7vw);
    box-sizing: border-box;
	background: var(--sub-color);
}
.header__btn a {
    text-decoration: none;
    display: flex;
    height: 100%;
    align-items: center;
    place-content: center;
    text-align: center;
    color: #fff;
    gap: min(10px, 1vw);
}
.header__mail .header__btn-icon {
    width: min(22px, 2.2vw);
    height: min(17px, 1.7vw);
    display: block;
}
.header__btn-icon img {
    width: 100%;
    height: 100%;
	object-fit: contain;
}
.header__btn-title {
    font-size: min(1.4rem, 1.3vw);
    font-weight: bold;
    display: block;
}
.header__tel-title {
    font-size: min(1.6rem, 1.5vw);
    color: var(--main-color);
}
.header__tel {
    text-align: center;
	height: 100%;
	box-sizing: border-box;
}
.header__tel-num {
    font-size: min(3.6rem, 3.2vw);
    gap: min(7px, 0.3vw);
    justify-content: center;
    line-height: 1;
}
.header__tel-num-icon {
    display: block;
    width: min(2.5rem, 2.2vw);
    height: min(2.5rem, 2.2vw);
}
footer {
    padding: min(45px, 4.5vw) 0;
    background: var(--main-color);
}
.footer__inner {
    display: flex;
    justify-content: space-between;
}
.footer__box {
    flex: 1;
}
.footer__ttile-contaienr {
    display: flex;
    align-items: center;
    gap: min(30px, 3vw);
}
.footer__corporation-logo {
    width: min(71px, 7.1vw);
}
.footer__title {
    display: flex;
    flex-direction: column;
    gap: min(15px, 1.5vw);
}
.footer__title-logo {
    width: min(435px, 43.5vw);
}
.footer__title-corporation {
    font-size: min(1.4rem, 1.3vw);
    font-weight: 500;
    color: #fff;
}
.footer-office__title {
    width: min(288px, 28.8vw);
}
.footer-office__address {
    font-weight: 500;
    font-size: min(1.6rem, 1.5vw);
	padding: min(10px, 1vw) 0 min(13px, 1.3vw) 0;
}
.footer-office__text {
	font-weight: 500;
    font-size: min(1.5rem,1.4vw);
	color: #878787;
	padding: 0 0 min(18px, 1.8vw) 0;
}
/* .footer-menu */
.footer-menu {
	padding: min(70px, 6vw) 0;
}
.footer-menu a {
    color: #fff;
    text-decoration: none;
    font-size: min(1.6rem, 1.5vw);
    display: flex;
    align-items: baseline;
    line-height: 1.1;
    transition: 0.3s ease-in-out;
    gap: min(5px, 0.5vw);
}
@media (hover: hover) and (pointer: fine) {
    .footer-menu a:hover {
        opacity: 0.7;
        -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;
    }
}
.footer-menu a:before {
    content: '\f054';
    font-family: "Font Awesome 6 Free";
    display: block;
    font-weight: 900;
    font-size: 0.75em;
}
.footer__inner .menu {
    display: flex;
    flex-wrap: wrap;
    gap: min(25px, 2vw) min(30px, 3vw);
}
.footer-office {
    background: #fff;
    width: 43.5%;
    box-sizing: border-box;
    padding: 1.5%;
    height: min(296px, 28vw);
}
.footer-office__menu-list {
    display: flex;
    gap: min(30px, 3vw);
	padding: 0 0 0 min(5px, 0.5vw);
}
.footer-office__menu-item a {
	display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
    color: #333;
    position: relative;
    font-size: min(1.6rem, 1.4vw);
    font-weight: 500;
    gap: min(8px, 0.5vw);
}
.footer-office__menu-title {
    display: block;
}
.footer-office__menu-icon {
    display: block;
	width: min(19px, 1.6vw);
    height: min(19px, 1.6vw);
}
.copyright {
}
.copyright p {
    font-size: min(1.2rem, 1.2vw);
	color: #fff;
}
/* .footer-floating */
.footer-floating {
    position: fixed;
    right: 0;
    top: min(200px, 20vw);
    z-index: 9999;
/* 	width: 100%; */
    box-sizing: border-box;
}
.footer-floating__list {
    display: flex;
    flex-direction: column;
	width: 100%;
    gap: min(11px, 1vw);
}
.footer-floating__item {
    border-radius: min(10px, 1vw) 0 0 min(10px, 1vw);
    border: solid 1px #fff;
    border-right: 0;
}
.footer-floating__item a {
    text-decoration: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    place-content: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    gap: min(10px, 1vw);
    padding: min(15px, 1.2vw) min(12px, 0.8vw);
}
.footer-floating__tel {
    background: var(--main-color);
}
.footer-floating__colmun {
    background: #3e4b76;
}
.footer-floating__seminar {
    background: #b04a75;
}
.footer-floating__mail {
    background: #eb8d13;
}
.footer-floating__item-icon {
    display: block;
    width: min(28px, 2.5vw);
    height: min(28px, 2.5vw);
}
.footer-floating__item-icon img {
    width: 100%;
	height: 100%;
	object-fit: contain;
}
.footer-floating__item-title {
    color: #fff;
    font-size: min(1.5rem, 1.3vw);
    font-weight: 500;
    writing-mode: vertical-rl;
    place-content: center;
}
/*------------------------------------------------------------------------------------
	　.sidebar
------------------------------------------------------------------------------------*/
.sidebar {
    width: 20.9%;
}
.sidebar__menu {
    margin: 0 0 min(35px, 3.5vw) 0;
}
.sidebar__menu-list {
    display: flex;
	flex-direction: column;
	gap: min(10px, 1vw);
}
.sidebar__menu-item a {
    display: block;
    text-decoration: none;
    color: var(--main-color);
    position: relative;
}
.sidebar__menu-item-title {
    font-size: min(1.6rem, 1.6vw);
    font-weight: 600;
    line-height: 1.31;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: min(17px, 1.7vw);
}
.sidebar__title {
    font-size: min(1.6rem, 1.5vw);
    font-weight: 500;
    position: relative;
    padding: min(15px, 1.5vw) min(10px, 1vw);
    background: var(--main-color);
    color: #fff;
}
.sidebar__title:after {
    content: '';
    display: block;
    background: #fff;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: min(3px, 0.3vw);
}
.sidebar .widget_nav_menu {
    margin: min(28px, 2.8vw) 0 0 0;
}
.sidebar .menu-sidemenu-container {
	padding: min(10px, 1vw) 0 min(20px, 2vw);
}
.sidebar .menu a {
    text-decoration: none;
    color: #333;
    font-size: min(1.6rem, 1.5vw);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #e2e2e2;
    margin-top: -1px;
    box-sizing: border-box;
    height: min(53px, 5.3vw);
    padding: 0 min(12px, 1vw) 0 min(10px, 0.9vw);
    transition: 0.3s ease-in-out;
}
.sidebar .menu a:after {
    content: '\f0da';
    font-family: "Font Awesome 6 Free";
    display: block;
    font-weight: 900;
    font-size: 0.9em;
    color: var(--main-color);
}
.sidebar .sub-menu {
    display: none;
}
.sidebar .menu .sub-menu a {
    padding-left: min(20px, 2vw);
    font-size: 0.8em;
    line-height: 1.1;
    background: #f8f8f8;
}
@media (hover: hover) {
    .sidebar .menu a:hover {
        background-color: var(--hover-color);
    }
}
.sidebar__contact {
    border: min(4px, 0.4vw) solid #000000;
	margin: 0 0 min(20px, 2vw) 0;
}
.sidebar__contact-title {
    padding: min(16px, 1.6vw) 0;
    background: #000000;
    color: #fff;
    font-size: min(2rem, 1.8vw);
    font-weight: 600;
    text-align: center;
}
.sidebar__contact-tel-num {
    font-size: min(2.8rem, 2.8vw);
    justify-content: center;
    gap: min(7px, 0.4vw);
    white-space: pre;
	padding: min(13px, 1.3vw) 0;
}
.sidebar__contact-tel__icon {
    display: block;
    width: min(19px, 1.9vw);
}
.sidebar__contact-tel__icon img {
    display: block;
    width: 100%;
	height: 100%;
	object-fit: contain;
}
.sidebar__contact-mail a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    background: var(--sub-color);
    color: #fff;
    font-size: min(1.4rem, 1.3vw);
    border-radius: 5px;
    height: min(45px, 4.5vw);
    align-items: center;
    gap: min(10px, 0.5vw);
    font-weight: 500;
    margin: 0 min(15px, 1vw) min(20px, 2vw) min(15px, 1vw);
    box-sizing: border-box;
}
.sidebar__contact-mail__icon {
    display: block;
    width: min(15px, 1.5vw);
}
.sidebar__contact-mail__icon img {
    display: block;
    width: 100%;
	height: 100%;
	object-fit: contain;
}
.sidebar__map {
    aspect-ratio: 230 / 195;
}
/*------------------------------------------------------------------------------------
	　gn
------------------------------------------------------------------------------------*/

.global-nav {
    background: var(--main-color);
    box-sizing: border-box;
}
.global-navi-pc.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.global-nav__list {
	  display: flex;
    width: min(1200px, 99vw);
    margin: 0 auto;
}
.global-nav__list > li {
    flex: 1;
	position: relative;
}
.global-nav__list > li > a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    display: grid;
    place-content: center;
    height: min(65px, 6.2vw);
    -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-align: center;
    font-size: min(1.6rem, 1.5vw);
    box-sizing: border-box;
    line-height: 1.1;
    position: relative;
}
.global-nav__list > li:has(.sub-menu) > a {
	pointer-events: none;
}
.global-nav__list > li:before {
    content: "";
    display: inline-block;
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background: #75b595;
}
.global-nav__list > li:last-child:after {
    content: "";
    display: inline-block;
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background: #75b595;
}
.global-nav .nav-title {
    width: 100%;
}
.global-nav .sub-menu {
    display: none;
    background: var(--main-color);
    position: absolute;
    opacity: 0.95;
    min-width: 100%;
    bottom: 0;
    transform: translateY(100%);
    z-index: 2;
}
.global-nav .sub-menu a {
    font-size: min(1.6rem, 1.5vw);
    text-align: left;
    display: block;
    text-decoration: none;
    color: #fff;
    white-space: pre;
    padding: 10px;
    text-align: center;
    border-top: 1px solid #75b595;
}
@media (hover: hover) and (pointer: fine) {
	.global-nav__list a:hover {
     opacity: 0.7;
    -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;
}
	.global-nav__list li:hover .sub-menu {
  		display: block;
	}
}
  /*----------------------------------------------------
    テーブルデザイン
  ----------------------------------------------------*/

table, table td, table th {
    border-collapse: collapse;
    border: 1px solid #d7d7d7;
}
table th {
	padding: 15px;
    background: #eef1f3;
    vertical-align: middle;
	font-size: min(1.7rem, 1.7vw);
  }
table td {
    padding: 15px;
    background: #fff;
    font-size: min(1.6rem, 1.6vw);
    line-height: 1.375;
    vertical-align: middle;
}
/*------------------------------------------------------------------------------------
	　共通
------------------------------------------------------------------------------------*/
/* .contact-banner */
.contact-banner {
    position: relative;
    background-image: url(/wp-content/uploads/2026/01/contact-banner__bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: min(60px, 5vw) 0 min(120px, 9vw);
}
.contact-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(66, 155, 111, .92);
    pointer-events: none;
    z-index: 1;
}
.contact-banner__container {
    position: relative;
    z-index: 2;
}
.contact-banner h2 .jp,
main.top .contact-banner h2 .jp,
.contact-banner h2 .en,
main.top .contact-banner h2 .en{
    color: #fff;
}
.contact-banner__message {
    text-align: center;
    color: #fff;
    font-size: min(1.8rem, 1.8vw);
    line-height: 1.89;
    padding: min(20px, 2vw) 0 min(70px, 7vw) 0;
}
.contact-banner__contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: min(42px, 4.2vw) 0;
}
.contact-banner__btn {
    width: 48.73%;
    aspect-ratio: 532 / 140;
	background:#fff;
}
.contact-banner__btn a {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
	position: relative;
}
.contact-banner__item-title {
    color: #333;
    font-weight: bold;
    font-size: min(2.6rem, 2.5vw);
}
.contact-banner__btn-icon {
    display: block;
    width: min(102px, 9vw);
    aspect-ratio: 1 / 1;
    top: 0;
    top: 0;
    transform: translateY(-50%);
    position: absolute;
}
.contact-banner__btn-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.contact-banner__btn-title {
    display: block;
    font-weight: 900;
    color: #333;
    font-size: min(2.6rem, 2.6vw);
    height: 100%;
    box-sizing: border-box;
    padding: min(80px, 7vw)0 0 0;
}
.sub-page + .contact-banner::before {
    background-color: rgba(0, 0, 0, .8);
}
/*------------------------------------------------------------------------------------
	　.top
------------------------------------------------------------------------------------*/

main.top {
	width: 100%;
}
.top-btn a {
	position: relative;
    display: flex;
    align-items: center;
    place-content: center;
    height: min(61px, 6vw);
    width: min(240px, 24vw);
    font-size: min(1.6rem, 1.6vw);
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: #000;
    border-radius: 50px;
    box-sizing: border-box;
}
.top-btn a:after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: '\f054';
    font-family: "Font Awesome 6 Free";
    display: block;
    font-weight: 900;
    font-size: 0.7em;
    right: 7%;
}
/* .mv */
.mv {
	background-image: url(/wp-content/uploads/2026/01/mv__bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    max-width: 2000px;
    margin: 0 auto;
}
.mv__container {
    margin: 0 auto;
    width: min(1200px, 100vw);
    height: min(580px, 49vw);
    box-sizing: border-box;
    position: relative;
    flex-direction: column;
    display: flex;
    align-items: center;
    padding: min(85px, 6vw) 0 0 0;
    gap: min(5px, 0.5vw);
}
.mv__inner {
    display: flex;
    align-items: center;
    gap: min(150px, 8vw);
    width: 95%;
	justify-content: space-between;
}
.mv__title {
    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);
    width: 60%;
}
.mv__title-main {
    color: var(--main-color);
    font-size: min(6.1rem, 5.7vw);
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.mv__title-main span {
    display: block;
    text-align: right;
}
.mv__title-sub {
    font-size: min(3.8rem, 3.3vw);
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: bold;
    line-height: 1.15;
	padding: min(15px, 1.5vw) 0;
    color: #000;
}
.mv__title-main strong {
    font-size: 1.18em;
}
.mv__title-text {
    font-size: min(1.7rem, 1.4vw);
    line-height: 1.6;
    font-weight: 500;
}
.mv__title-text strong {
	display: block;
    font-size: 1.18em;
}
/* .seminar */
.seminar {
    background: #fff;
    width: 26.5%;
    aspect-ratio: 318 / 405;
    box-sizing: border-box;
    padding: 2.2%;
}
.seminar a {
    text-decoration: none;
    display: block;
    color: #333;
}
.seminar__image {
    display: block;
    aspect-ratio: 268 / 168;
}
.seminar__image img {
	width: 100%;
    height: 100%;
    object-fit: contain;
}
.seminar__style {
    display: inline-block;
    font-size: min(1.5rem, 1.4vw);
    color: #fff;
    font-weight: bold;
    background: var(--main-color);
    padding: min(4px, 0.4vw) min(7px, 0.7vw);
	margin: min(15px, 1.5vw) 0 0 0;
}
.seminar__title {
	display: block;
    font-size: min(2rem, 1.8vw);
    font-weight: bold;
    line-height: 1.15;
	margin: min(12px, 1.2vw) 0 0 0;
}
.seminar__date {
    display: flex;
    gap: min(10px, 1vw);
    font-size: min(1.5rem, 1.4vw);
	margin: min(12px, 1.2vw) 0 0 0;
    font-weight: 500;
}
.seminar__date-icon {
    display: block;
    width: min(20px, 1.9vw);
}
.seminar__category-list {
    display: flex;
    gap: min(10px, 0.8vw);
    flex-wrap: wrap;
	margin: min(12px, 1.25vw) 0 0 min(5px, 0.5vw);
}
.seminar__category-item {
	display: block;
    font-size: min(1.3rem, 1.2vw);
    border: 1px solid var(--main-color);
    padding: min(5px, 0.5vw);
    text-align: center;
    font-weight: 500;
}
/* .field */
.field {
    padding: min(75px, 7.5vw) 0 min(110px, 11vw) 0;
	background-image: url(/wp-content/uploads/2026/01/field__bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.field__main-menu-container {
    display: flex;
    justify-content: space-between;
    padding: min(60px, 6vw) 0 0 0;
}
.field__main-menu {
    width: 48.7%;
    background: #fff;
    box-shadow: 0px 0px 7px #ddd;
    box-sizing: border-box;
    padding: min(15px, 1.5vw) min(25px, 2.5vw) min(25px, 2.5vw) min(25px, 2.5vw);
}
.field__main-menu-list {
    display: flex;
    flex-wrap: wrap;
	gap: min(24px, 2vw) 5%;
}
.field__main-menu-item {
    width: 47.5%;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0px 0px 3px #ddd;
}
.field__main-menu-item a {
    color: #333;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
    padding: 5% 3%;
    gap: 4.5%;
    background: var(--light-color);
}
.field__main-menu-item a[href=""] {
    pointer-events: none;
}
.field__main-menu-item a:after {
    content: '\f061';
    font-family: "Font Awesome 6 Free";
    display: grid;
    place-content: center;
    font-weight: 900;
    font-size: 0.6em;
    color: #fff;
    background: var(--main-color);
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: min(1.8rem, 1.8vw);
    aspect-ratio: 1 / 1;
}
.field__main-menu-item-icon {
    display: block;
    width: min(51px, 5.1vw);
	height: min(51px, 5.1vw);
}
.field__main-menu-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.field__main-menu-item-title {
    display: inline-block;
    color: #333;
    font-weight: 500;
    font-size: min(1.7rem, 1.7vw);
    line-height: 1.15;
}
.field__main-menu-item.parent {
    width: 100%;
    box-shadow: 0px 0px 3px #ddd;
}
.field__main-menu-item.parent a {
    background: #fff;
    padding: 2% 2%;
	gap: 9%;
}
.field__main-menu-item.parent .field__main-menu-item-title {
    display: inline-block;
    color: #333;
    font-weight: bold;
    font-size: min(2.8rem, 2.8vw);
}
.field__main-menu-item.parent .field__main-menu-item-icon {
    display: block;
    width: min(85px, 8.5vw);
    height: min(85px, 8.5vw);
}
.field__list {
    padding: min(28px, 2.8vw) 0 0 0;
	display: flex;
	flex-wrap: wrap;
    gap: min(28px, 2.8vw) 2.75%;
}
.field__item {
    width: 31.5%;
    aspect-ratio: 347 / 109;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0px 0px 7px #ddd;
}
.field__item a {
    background: #fff;
    color: #333;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
    padding: 3%;
    gap: 5.5%;
}
.field__item a[href=""] {
    pointer-events: none;
}
.field__item a:after {
    content: '\f061';
    font-family: "Font Awesome 6 Free";
    display: grid;
    place-content: center;
    font-weight: 900;
    font-size: 0.6em;
    color: #fff;
    background: var(--main-color);
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: min(1.8rem, 1.8vw);
    aspect-ratio: 1 / 1;
}
.field__item-icon {
    display: block;
    width: min(83px, 8.3vw);
    height: min(83px, 8.3vw);
}
.field__item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.field__item-title {
    display: block;
    font-size: min(2.1rem, 2vw);
    line-height: 1.2;
    font-weight: bold;
    flex: 1;
}
.field__item-title span {
    display: block;
}
/* .industry */
.industry {
    padding: min(63px, 6.3vw) 0 min(95px, 9.5vw);
}
.industry__list {
    padding: min(65px, 6.5vw) 0 0 0;
	display: flex;
	flex-wrap: wrap;
    gap: min(40px, 4vw) 3.33%;
}
.industry__item {
    width: 22.5%;
    aspect-ratio: 248 / 263;
    box-sizing: border-box;
    box-shadow: 0px 0px 7px #ddd;
    overflow: hidden;
}
.industry__item a {
    background: var(--light-color);
    color: #333;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    transition: 0.3s ease-in-out;
}
.industry__item a[href=""] {
    pointer-events: none;
}
.industry__item a:after {
    content: '\f061';
    font-family: "Font Awesome 6 Free";
    display: grid;
    place-content: center;
    font-weight: 900;
    font-size: 0.6em;
    color: #fff;
    background: var(--main-color);
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    right: 0;
    width: min(1.8rem, 1.8vw);
    aspect-ratio: 1 / 1;
}
.industry__item-image {
    display: block;
    aspect-ratio: 248 / 161;
}
.industry__item-image img {
	transition: 0.3s ease-in-out;
}
.industry__item-title {
    font-size: min(2.1rem, 2vw);
    font-weight: bold;
    height: 100%;
    display: grid;
    place-content: center;
}
/* .greeting */
.greeting {
    background-color: var(--light-color);
    background-image: url(/wp-content/uploads/2026/01/greeting__bg.png);
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: top left;
    padding: min(80px, 8vw) 0 min(80px, 8vw);
    box-sizing: border-box;
    height: min(1470px, 147vw);
}
.greeting__container {
    padding: min(65px, 6.5vw) 0 0 0;
    position: relative;
    height: min(1162px,116.2vw);
}
.greeting__image {
    width: min(310px, 31vw);
    position: sticky;
    top: min(65px, 6.5vw);
	margin: 0 min(50px, 5vw) 0 auto;
    z-index: 2;
}
.greeting__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.greeting__inner {
    padding: min(55px, 5.5vw) 0 min(50px, 5vw) min(35px, 3.5vw);
    background: #fff;
    margin: 0 min(125px, 12.5vw) 0 min(55px, 5.5vw);
    position: absolute;
    top: 100px;
    box-sizing: border-box;
    height: min(1127px, 112.7vw);
}

.greeting__title {
    color: var(--main-color);
    font-weight: bold;
    font-size: min(2.8rem, 2.7vw);
	padding: 0 0 min(30px, 3vw) 0;
}
.greeting__text {
    line-height: 1.76;
    font-size: min(1.7rem, 1.6vw);
    width: 68%;
    display: flex;
    flex-direction: column;
    gap: min(30px, 3vw);
}
.greeting .top-btn a {
    margin: min(25px, 2.5vw) auto 0;
}
/* .voice */
.voice {
    padding: min(90px, 9vw) 0 min(85px, 8.5vw);
}
.voice__list {
    padding: min(50px, 5vw) 0 0 0;
    display: flex;
    gap: min(30px, 3vw) 2.65%;
    flex-wrap: wrap;
}
.voice__item {
    width: 23%;
}
.voice__item a {
    display: block;
}
.voice__item-logo {
    display: block;
    aspect-ratio: 251 / 107;
    margin: auto;
}
.voice__item-logo img {
    width: 100%;
    height: 100%;
	object-fit: contain;
}
/*.tab-information */
.tab-information {
    padding: min(65px, 6.5vw) 0 min(75px, 7.5vw) 0;
    background: var(--light-color);
}
.tab-information__list {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
}
.tab-information__list li {
    width: 100%;
    border-bottom: solid 1px #d7d7d7;
}
.tab-information__list a {
    display: flex;
	align-items: center;
    padding: min(20px, 2vw) min(10px, 1vw);
    text-decoration: none;
    color: #333;
}
.tab-information__list dl {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 35px;
}
.tab-information__date {
    box-sizing: border-box;
    display: block;
	font-size: min(1.6rem, 1.6vw);
}
.tab-information__title {
    line-height: 1.2;
    display: block;
    flex: 1;
    font-size: min(1.8rem, 1.8vw);
}
.tab-information__type {
    background: var(--main-color);
    color: #fff;
    width: min(135px, 13.5vw);
    display: grid;
    place-content: center;
    font-size: min(1.4rem, 1.4vw);
    line-height: 2.3;
    white-space: pre;
	margin: 0 min(25px, 2.5vw) 0 min(15px, 1.5vw);
}
.tab-information__type:empty {
    display: none;
}
.tab-information__column {
	display: flex;
    justify-content: space-between;
	 align-items: center;
}
.tabs { 
    display: flex;
    cursor: pointer;
	padding: min(75px, 7.5vw) 0 0 0;
}
.tab { 
    border: 1px solid var(--main-color);
    border-bottom: none;
    background: #fff;
    width: 16.4%;
    text-align: center;
    padding: min(16px, 1.6vw) 0px;
    font-size: min(1.6rem, 1.6vw);
    font-weight: 500;
    display: grid;
    place-content: center;
}
.tab.active { 
    background-color: var(--main-color);
    color: #fff;
}
.tab-contents {
    background: #fff;
    padding: min(20px, 2vw) min(30px, 3vw);
    border-top: 7px solid var(--main-color);
    height: min(379px, 37.9vw);
    box-sizing: border-box;
    overflow-y: scroll;
    box-shadow: 0px 0px 2px #ddd;
}
.tab-content {
	display: none;
}
.tab-content.active {
	display: block;
}
/* .access */
.access {
    padding: min(80px, 8vw) 0 min(80px, 8vw) 0;
    background: linear-gradient(180deg, #fff 0%, #fff 40%, var(--light-color) 40%, var(--light-color) 100%);
}
.access__map {
    height: min(430px, 43vw);
    box-sizing: border-box;
    margin: min(60px, 6vw) 0 min(45px, 4.5vw) 0;
}
.access__info {
    display: flex;
    justify-content: space-between;
}
.access__info-content {
    flex: 1;
	padding: min(10px, 1vw) 0 0 0;
}
.access__info-image {
    width: 47%;
}
.access__info-content-title {
    font-size: min(2.4rem, 2.4vw);
    font-weight: bold;
}
.access__info-content-address {
    font-size: min(1.7rem, 1.7vw);
    padding: min(20px, 2vw) 0;
	font-weight: 500;
}
.access__info-content-tel {
    font-size: min(3.6rem, 3.6vw);
	gap: min(8px, 0.8vw);
}
.access__info-content-tel-icon {
    display: block;
    width: min(2.5rem, 2.2vw);
    height: min(2.5rem, 2.2vw);
}
.access__info-content-hour {
    font-size: min(1.7rem, 1.7vw);
    padding: min(10px, 1vw) 0 min(30px, 3vw);
	font-weight: 500;
}
/*------------------------------------------------------------------------------------
	　archive
------------------------------------------------------------------------------------*/

/* .archive */
.archive__list {
    display: flex;
    flex-direction: column;
	gap: min(20px, 2vw);
}
.archive__item {
}
.archive__item a {
    text-decoration: none;
    color: #333;
	padding: min(15px, 1.5vw) 0;
}
.archive__item-image {
    display: block;
    width: 25.4%;
    aspect-ratio: 21 / 13;
}
.archive__item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.archive__item-inner {
    display: flex;
    gap: min(25px, 2.5vw);
    padding: min(20px, 2vw) 0 min(30px, 3vw);
}
h3.archive__item-title {
    margin: 0;
}
.archive__item-text {
    display: block;
    font-size: min(1.6rem, 1.6vw);
    line-height: 1.5;
    flex: 1;
}
.archive__item-category {
    display: flex;
    gap: min(10px, 1vw);
    padding: 0 0 min(10px, 1vw);
    flex-wrap: wrap;
}
.archive__item-category span {
    display: inline-block;
    padding: min(5px, 0.5vw) min(10px, 1vw);
    border-radius: 2px;
    background: #eaeaea;
    font-size: min(1.4rem, 1.4vw);
}
.archive__item-date {
    display: block;
    color: #666;
    font-size: min(1.3rem, 1.3vw);
	padding: 0 0 min(10px, 1vw) 0;
}
.archive__item-btn {
    width: min(157px, 15.7vw);
    height: min(38px, 3.8vw);
    color: #fff;
    background: var(--main-color);
    font-size: min(1.6rem, 1.6vw);
    font-weight: 500;
    border-radius: 5px;
    pointer-events: none;
    display: grid;
    place-content: center;
    margin: 0 0 0 auto;
}
/* .archive-voice */
.archive-voice .archive__item-image {
	aspect-ratio: 502 / 214;
}
.archive-voice .archive__item-image img {
    object-fit: contain;
}
/* .archive__search */
.archive__search {
    padding: 0 0 min(30px,3vw) 0;
}
.archive__search ul {
    display: flex;
    gap: min(15px, 1.5vw);
}
.archive__search li {
	height: min(42px, 4.2vw);
	position: relative;
}
.archive__search select {
    font-size: min(1.6rem, 1.6vw);
    border: 1px solid #c5c5c5;
    border-radius: 3px;
    height: 100%;
	box-sizing: border-box;
	width: min(170px, 17vw);
}
.archive__search input[type="text"] {
    height: 100%;
    font-size: min(1.6rem, 1.6vw);
    border: 1px solid #c5c5c5;
    border-radius: 3px;
    box-sizing: border-box;
    padding: 0 0 0 min(35px, 3.5vw);
	width: min(230px, 23vw);
}
.archive__search li:has(input[type="text"]):before {
    position: absolute;
    left: min(10px, 1vw);
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    content: "\f002";
    color: #666;
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
}
.archive__search [type="submit"] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
    font-size: min(1.8rem, 1.8vw);
    font-weight: bold;
    text-align: center;
    background: var(--main-color);
    border: none;
    appearance: none;
    border-radius: 3px;
	box-sizing: border-box;
	width: min(70px, 7vw);
}
/*------------------------------------------------------------------------------------
	　single
------------------------------------------------------------------------------------*/

.single__content-thumbnail {
	text-align: center;
    margin: 0 0 min(10px,1vw) 0;
}
/* .page-parts-related 同じカテゴリーの記事*/
.page-parts-related__list {
    display: flex;
    flex-wrap: wrap;
	gap: min(25px,2.5vw) 2.75%;
}
.page-parts-related__item {
    width: 31.5%;
}
.page-parts-related__item a {
    display: block;
    text-decoration: none;
    color: #333;
    box-sizing: border-box;
    position: relative;
}
.page-parts-related__thumb {
    display: block;
    aspect-ratio: 283 / 175;
    width: 100%;
}
.page-parts-related__thumb img {
    display: block;
    width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-parts-related__title {
    display: block;
    font-size: min(1.7rem, 1.6vw);
    font-weight: bold;
    height: min(95px, 9.5vw);
    box-sizing: border-box;
    padding: min(15px, 1.5vw) 0 0 0;
}
.page-parts-related__category-list {
    display: flex;
    flex-wrap: wrap;
    gap: min(7px, 0.7vw);
    position: absolute;
    top: 0;
    left: 0;
}
.page-parts-related__category-item {
    background: var(--main-color);
    font-size: min(1.4rem, 1.3vw);
    color: #fff;
    padding: min(3px, 0.3vw) min(15px, 1.5vw);
}
/*------------------------------------------------------------------------------------
	　page
------------------------------------------------------------------------------------*/
.page__content {
    padding: 0 0 min(85px, 8.5vw) 0;
}
.page__content:empty {
    padding: 0;
}
.page__content-thumbnail {
	text-align: center;
    margin: 0 0 min(10px,1vw) 0;
}
/* .page-parts-child 関連子ページ記事*/
.page-parts-child__list {
    display: flex;
    flex-wrap: wrap;
	gap: min(25px,2.5vw) 2.75%;
}
.page-parts-child__item {
    width: 31.5%;
}
.page-parts-child__item a {
    display: block;
    text-decoration: none;
    color: #333;
    box-sizing: border-box;
}
.page-parts-child__thumb {
    display: block;
    aspect-ratio: 283 / 175;
    width: 100%;
}
.page-parts-child__thumb img {
    display: block;
    width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-parts-child__title {
    display: block;
    font-size: min(1.7rem, 1.6vw);
    font-weight: bold;
    height: min(95px, 9.5vw);
    box-sizing: border-box;
    padding: min(15px, 1.5vw) 0 0 0;
}
/*------------------------------------------------------------------------------------
	　.main.page-404
------------------------------------------------------------------------------------*/
main.page-404 {
    padding-bottom: 80px;
}
.page-404__main-text {
    text-align: center;
    font-size: 17.6rem;
    font-weight: 600;
    color: #d8d8d8;
}
.page-404__text {
    text-align: center;
    font-size: 2rem;
}
.page-404__search {
    text-align: center;
}

/*------------------------------------------------------------------------------------
	　.main.page-search
------------------------------------------------------------------------------------*/
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);
}
/*------------------------------------------------------------------------------------
	　.contact-form
------------------------------------------------------------------------------------*/
.contact-form table {
	width: 100%;
	margin: 0 0 min(40px, 4vw); 0;
}
.sub-page .contact-form p {
    padding: 0;
}
.contact-form table th {
	width: 33%;
    text-align: left;
}
.contact-form table td {
    width: 67%;
}
.contact-form table td p {
    font-size: min(1.7rem, 1.7vw);
}
.contact-form table th p {
	display: flex;
    justify-content: space-between;
	align-items: cebter;
}
.contact-form .required {
    color: red;
	font-size: 0.9em;
}
.contact-form input[type=text],
.contact-form input[type=tel],
.contact-form input[type=email] {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d7d7d7;
    padding: min(12px, 1.2vw);
}
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d7d7d7;
    padding: min(12px, 1.2vw);
}
.contact-form .privacy-policy {
    margin: min(30px, 3vw) 0;
    padding: min(20px, 2vw);
    background: #eee;
    text-align: left;
}
.contact-form .privacy-policy__inner {
    height: min(250px, 25vw);
    padding: min(15px, 1.5vw);
    background: #fff;
    border: 1px solid #ccc;
	overflow-y: scroll;
}
.sub-page .contact-form .privacy-policy p {
    font-size: min(1.5rem, 1.5vw);
}
.sub-page .contact-form p:has(input[type=submit]){
	text-align: center;
}
.contact-form .wpcf7-spinner {
    position: absolute;
}