@charset "utf-8";
/* CSS Document */

*{
	margin:0;
	padding:0;
}

*:focus {
  outline: none;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}

/*ハンバーガーメニューを表示している時はスクロールさせない*/
body.scrolloff {
    width: 100%;
    height: 100%;
    /*position: fixed;*/
}

/* ========================================
   Typography
======================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

p {
  /*margin: 0 0 1.2em;*/
	margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .3s ease;
}

ul, ol {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

dl, dt, dd {
  margin: 0;
  padding: 0;
}

dl {
  display: block;
}

dd {
  margin-left: 0;
}

/* ========================================
   Form Reset (safe)
======================================== */

input,
textarea,
select,
button {
  font: inherit;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #222;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

input[type="submit"],
input[type="button"] {
  appearance: none;
  border-radius: 0;
}

/* ========================================
   WordPress Content Safe Area
======================================== */

/* 投稿エリアを限定的に整える */
.entry-content {
  font-size: 1rem;
  line-height: 1.8;
}

.entry-content h2 {
  font-size: 1.5rem;
  margin-top: 2em;
}

.entry-content h3 {
  font-size: 1.25rem;
  margin-top: 1.6em;
}

.entry-content img {
  margin: 1.5em 0;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  border: 1px solid #ddd;
  padding: .75em;
}

.entry-content iframe {
  max-width: 100%;
}

/* WPのalign系対応 */

.aligncenter {
  display: block;
  margin: 1.5em auto;
}

.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

/* clearfix */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* ========================================
   Utility
======================================== */

.spHide {
    display: none !important;
}

/* ========================================
   Accessibility
======================================== */

:focus-visible {
  outline: 2px solid #0073aa;
  outline-offset: 2px;
}

/* ========================================
   Scrollbar (optional)
======================================== */

::-webkit-scrollbar {
  width: 0;
}

/*-----------------------------------------------------------*/
/*フォント*/

.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.reem-kufi {
  font-family: "Reem Kufi", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/*-----------------------------------------------------------*/
/*リンク（横幅・高さ指定無し）*/

a.normal{
	width: 100%;
	height: 100%;
	border: 2px solid #8cb74f;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	background-color: #fff;
	font-size: 13px;
	color: #333;
	font-weight: 700;
	position: relative;
	padding-left: 15px;
}
a.normal::before{
    content: '';
    background: url("../image/common/megaIconArrow.svg") 0 center / contain no-repeat;
    width: 7px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
	bottom: 0;
	margin: auto;
    right: 10px;
}

a.kadomaru{
	border-radius: 15px;
}

/*-----------------------------------------------------------*/
/*アンカーリンクの着地地点を調整*/
:root {
    --header-h: 60px;/*headerの高さ*/
}
[id] {
    scroll-margin-top: var(--header-h);
}
/*-----------------------------------------------------------*/
/*ヘッダー*/

body.menu-open {
    /*position: fixed;*/
	overflow: hidden;
	width: 100%;
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	height: var(--header-h);
    z-index: 1000;
    transition: transform 0.3s ease;
    background-color: #fff;
}
.site-header.is-hidden {
    transform: translateY(-100%);
}
body {
    padding-top: var(--header-h); /* ヘッダー高さに合わせる */
}

/* ===============================
   ユーティリティ
================================ */
.header-top{
	width: 100%;
	margin: 0 auto;
}
.header-top .header-inner {
	width: 100%;
	display: flex;
}
.header-inner .leftColumns{
	width: 62.78%;/*452*/
	display: flex;
	justify-content: center;
	align-items: center;
}
.header-inner .leftColumns .logo img{
	width: 200px;
	height: auto;
}
.header-inner .rightColumns{
	width: calc( 100% - 62.78% );
	display: flex;
	justify-content: flex-end;
}
.header-inner .rightColumns .column{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.header-inner .rightColumns .column .telInfo{
	width: 66px;
	height: var(--header-h);
	position: relative;
}
.header-inner .rightColumns .column .telInfo > a {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 3px 0;
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	line-height: 125%;
	text-align: center;
	background-color: #29a6dd;
	position: relative;
}
.header-inner .rightColumns .column .telInfo > a::before{
    content: '';
	display: block;
    background: url("../image/common/utilityIcon03.svg") 0 center / contain no-repeat;
    width: 14px;
    height: auto;
    aspect-ratio: 1 / 1;
	z-index: 1;
}
.header-inner .rightColumns .column .telInfo > a::after{
    content: 'お電話は\Aこちら';
	white-space: pre-line;
	font-size: 10px;
	color: #fff;
	font-weight: 700;
	text-align: center;
	line-height: 120%;
	display: flex;
    justify-content: center;
	z-index: 2;
	pointer-events: none;
}
.header-inner .rightColumns .column .telInfo.is-open > a::after{
    content: '閉じる';
}

.header-inner .rightColumns .column .telInfo .telMenu {
	display: none;
	position: fixed;
	top: var(--header-h);
	left: 0;
	width: 100vw;
	background-color: #fff;
	border-top: 3px solid #dfeef4;
	border-bottom: 3px solid #dfeef4;
	box-sizing: border-box;
	padding: 13px 7px;
	box-shadow: 0 4px 6px rgba(31,90,119,0.55);
	z-index: 1000;
	transition: all 0.3s ease;
}
.header-inner .rightColumns .column .telInfo.is-open .telMenu {
    display: block;
}

.header-inner .rightColumns .column .telInfo .telMenu dl.tel > dt{
	font-size: 1.13rem;/*18*/
	font-weight: 700;
	border-bottom: 2px solid #29a6dd;
	padding-bottom: 10px;
	text-align: center;
}
.header-inner .rightColumns .column .telInfo .telMenu dl.tel:not(:first-of-type){
	margin-top: 10px;
}
.header-inner .rightColumns .column .telInfo .telMenu dl.tel > dd ul.address{
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 10px 5px;
}
.header-inner .rightColumns .column .telInfo .telMenu dl.tel > dd ul.address > li{
	display: flex;
	align-items: center;
	gap: 0 10px;
}
.header-inner .rightColumns .column .telInfo .telMenu dl.tel > dd ul.address > li .label{
	width: 105px;
	height: 23px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.94rem;/*15*/
	color: #fff;
	font-weight: 700;
	border-radius: 5px;
}
.header-inner .rightColumns .column .telInfo .telMenu dl.tel > dd ul.address > li .label.green{
	background-color: #61a01f;
}
.header-inner .rightColumns .column .telInfo .telMenu dl.tel > dd ul.address > li .label.orange{
	background-color: #f28e1e;
}
.header-inner .rightColumns .column .telInfo .telMenu dl.tel > dd ul.address > li > a{
	font-size: 1.19rem;/*19*/
	font-weight: 700;
	color: #000;
	letter-spacing: 0.05em;
}
.header-inner .rightColumns .column .telInfo .telMenu dl.tel > dd > dl.reception{
	margin-top: 10px;
	background-color: #ebf5f7;
	padding: 10px 0;
	display: flex;
	justify-content: center;
	gap: 0 10px;
	font-size: 0.88rem;/*14*/
	font-weight: 500;
	line-height: 121.4%;
}

.header-inner .rightColumns .column ul.links{
	display: flex;
	list-style-type: none;
	gap: 0 10px;
}
.header-inner .rightColumns .column ul.links > li{
	width: 148px;
	height: 30px;
}
.header-inner .rightColumns .column ul.links > li > a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #87c13f;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 14px;
	font-weight: 500;
	position: relative;
}
.header-inner .rightColumns .column ul.links > li:not(.lang) > a::before{
    content: '';
    background: url("../image/common/utilityIcon05.svg") 0 center / contain no-repeat;
    width: 8px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
	bottom: 0;
	margin: auto;
    right: 11px;
	z-index: 1;
}
.header-inner .rightColumns .column ul.links > li.lang > a{
	border: 1px solid #dae3ea;
	gap: 0 10px;
}
.header-inner .rightColumns .column ul.links > li.lang > a::before{
    content: '';
	display: inline-block;
    background: url("../image/common/utilityIcon06.svg") 0 center / contain no-repeat;
    width: 22px;
    height: auto;
    aspect-ratio: 1 / 1;
	z-index: 1;
}

/* ===============================
   ハンバーガー
================================ */
.hamburger {
    width: 66px;
    height: 100%;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
	background-color: #81b327;
}
.hamburger::before{
    content: 'MENU';
	font-size: 10px;
	color: #fff;
	font-weight: 700;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	bottom: 10px;
}
body.menu-open .hamburger::before{
    content: '閉じる';
}
.hamburger span {
    position: absolute;
    left: 0;
	right: 0;
	margin: auto;
    width: 30px;
    height: 1px;
    background: #fff;
    transition: 0.3s;
}
.hamburger span:nth-child(1) {
    top: 15px;
}
.hamburger span:nth-child(2) {
    top: 22px;
}
.hamburger span:nth-child(3) {
    top: 29px;
}
.hamburger.is-open span:nth-child(1) {
    transform: rotate(45deg);
    top: 20px;
}
.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
    transform: rotate(-45deg);
	top: auto;
    bottom: 39px;
}
/* ===============================
   グローバルナビ
================================ */
.global-nav{
	position: fixed;
	top: var(--header-h);
	right: -100%;
	width: 100%;
    height: calc(100vh - var(--header-h));
    overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background-color: #fff;
	transition: right 0.3s ease;
	z-index: 9999;
}
.global-nav.is-open{
	right: 0;
}

/*検索窓*/
.global-nav .search{
	width: 83.33%;/*600*/
	height: 42px;
	margin: 10px auto;
}
.global-nav .search form{
	border: 1px solid #87c13f;
	background-color: #f9f5ed;
	border-radius: 22px;
	position: relative;
}
.global-nav .search form input[type="text"]{
	width: calc( 100% - 84px );
	height: 42px;
	border: 0;
	background-color: #f9f5ed;
	font-size: 15px;
	border-radius: 22px;
	padding: 0 64px 0 20px;
}
.global-nav .search form input[type="image"]{
	position: absolute;
	top: -1px;
	right: -1px;
	width: 44px;
	height: 44px;
}

/*グローバルメニュー*/
ul.gnav:nth-of-type(1){
	border-top: 1px solid #81b327;
}
ul.gnav li.gnav-item{
	border-bottom: 1px solid #81b327;
	width: 100%;
	margin: 0 auto;
}
ul.gnav > li > a{
	display: flex;
	padding: 15px 15px;
	font-size: 15px;
	font-weight: 500;
	color: #000;
}
ul.gnav > li > a > span{
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

/*アイコンほか*/
.gnav-item.spOnlyTop > a > span::before{
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	background-color: #81b327;
	border-radius: 30px;
}

.gnav-item > a > span::before{
	content: '';
	margin-right: 10px;
}
.gnav-item:nth-child(2) > a > span::before{
	content: '';
	display: block;
	background: url("../image/common/gnaviIcon01.svg") 0 0 / contain no-repeat;
	width: 20px;
	height: 16px;
}
.gnav-item:nth-child(3) > a > span::before{
	content: '';
	display: block;
	background: url("../image/common/gnaviIcon02.svg") 0 0 / contain no-repeat;
	width: 20px;
	height: 16px;
}
.gnav-item:nth-child(4) > a > span::before{
	content: '';
	display: block;
	background: url("../image/common/gnaviIcon03.svg") 0 0 / contain no-repeat;
	width: 22px;
	height: 22px;
}
.gnav-item:nth-child(5) > a > span::before{
	content: '';
	display: block;
	background: url("../image/common/gnaviIcon04.svg") 0 0 / contain no-repeat;
	width: 24px;
	height: 20px;
}
.gnav-item:nth-child(6) > a > span::before{
	content: '';
	display: block;
	background: url("../image/common/gnaviIcon05.svg") 0 0 / contain no-repeat;
	width: 22px;
	height: 20px;
}
.gnav-item > a > span::after{
	content: '';
	display: block;
	background: url("../image/common/hamburgerIcon01.webp") 0 center / contain no-repeat;
	width: 21px;
	height: auto;
    aspect-ratio: 1 / 1;
	z-index: 1;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 0;
}
.gnav-item.spOnlyTop > a > span::after{
	background: url("../image/common/hamburgerIcon03.webp") 0 center / contain no-repeat;
	width: 14px;
    aspect-ratio: 1 / 1;
	right: 2px;
}
.gnav-item.is-open > a > span::after{
	background: url("../image/common/hamburgerIcon02.webp") 0 center / contain no-repeat;
	width: 20px;
    aspect-ratio: 20 / 2;
}

/*子メニュー*/
.mega-menu{
	display: none;
	position: static;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
}
.gnav-item.is-open > .mega-menu{
	display: block;
}
.mega-inner {
}
.mega-content-area {
    display: flex;
	flex-direction: column;
    background: #fffbee;
}
.mega-content-area .mega-left, .mega-content-area .mega-right{
	width: 100%;
}

.mega-content-area ul.mega-category > li{
	width: calc( 100% - 44px );
	margin: 0 auto;
	padding: 15px 22px;
	background-color: #fffbee;
	border-top: 1px solid #81b327;
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
	position: relative;
}
li.gnav-item .mega-category > li::before{
	content: '';
	display: block;
	width: 27px;
	height: fit-content;
	aspect-ratio: 1 / 1;
	margin-right: 12px;
}
li.gnav-item.green .mega-category > li:nth-of-type(1)::before{
	background: url(../image/common/mega02Icon02.webp) 0 center / contain no-repeat;
}
li.gnav-item.green .mega-category > li:nth-of-type(2)::before{
	background: url(../image/common/mega02Icon03.webp) 0 center / contain no-repeat;
}
li.gnav-item.orange .mega-category > li:nth-of-type(1)::before{
	background: url(../image/common/mega03Icon02.webp) 0 center / contain no-repeat;
}
li.gnav-item.orange .mega-category > li:nth-of-type(2)::before{
	background: url(../image/common/mega03Icon03.webp) 0 center / contain no-repeat;
}
li.gnav-item.red .mega-category > li:nth-of-type(1)::before{
	background: url(../image/common/mega04Icon02.svg) 0 center / contain no-repeat;
}
li.gnav-item.red .mega-category > li:nth-of-type(2)::before{
	background: url(../image/common/mega04Icon03.svg) 0 center / contain no-repeat;
}
li.gnav-item.pink .mega-category > li:nth-of-type(1)::before{
	background: url(../image/common/mega05Icon02.svg) 0 center / contain no-repeat;
}
li.gnav-item.pink .mega-category > li:nth-of-type(2)::before{
	background: url(../image/common/mega05Icon03.svg) 0 center / contain no-repeat;
}

.mega-content-area ul.mega-category > li::after{
	content: '';
	display: block;
	background: url("../image/common/hamburgerIcon01.webp") 0 center / contain no-repeat;
	width: 15px;
	height: auto;
    aspect-ratio: 1 / 1;
	z-index: 1;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 25px;
}
.mega-content-area ul.mega-category > li.is-open::after{
	background: url("../image/common/hamburgerIcon02.webp") 0 center / contain no-repeat;
	width: 15px;
    aspect-ratio: 20 / 2;
}

/*※孫メニュー*/
/*開閉はclassで制御*/
li.gnav-item:not(.blue) .mega-right{
/* PC用は隠す。ただし「会のことを知りたい」は除く */
	display:none; 
}

.sp-clone{
	display:none;
}
.sp-clone.is-open{
	display:block;
}
.mega-content {
    display: none;
  }
.mega-content.is-open {
	display: block;
}
.gnav-item.blue .sp-clone{
	display:block !important;
}
.gnav-item.blue .mega-content{
    display:block !important;
}

.mega-content-area .mega-content ul{
	border-top: 1px solid #81b327;
	padding: 5px 0;
}
.mega-content-area .mega-content ul > li{
	width: calc( 100% - 120px );
	margin: 0 auto;
	padding: 10px 60px;
	font-size: 13px;
	font-weight: 500;
	position: relative;
}
.mega-content-area .mega-content ul > li:not(:last-of-type){
	border-bottom: 0;
}
.mega-content-area .mega-content ul > li::before{
	width: 100%;
	margin: 0 auto;
	padding: 15px 60px;
	font-size: 13px;
	font-weight: 500;
	position: relative;
}
.mega-content-area .mega-content ul > li::after{
	content: '';
	display: block;
	background: url("../image/common/utilityIcon05.svg") 0 center / contain no-repeat;
	width: 10px;
	height: auto;
	aspect-ratio: 10 / 12;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 27px;
}

/*メガお問い合わせ先は非表示*/
.mega-banner{
	display: none;
}

/*バナー*/
.global-nav .otherBanneres ul{
	list-style-type: none;
}

.global-nav .otherBanneres ul.infoBanneres{
	padding: 20px 0 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 17px 0;
}
.global-nav .otherBanneres ul.infoBanneres > li{
	width: 90.28%;/*650*/
	height: 50px;
}
.global-nav .otherBanneres ul.infoBanneres > li > a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #fff;
	border-radius: 20px;
	position: relative;
}
.global-nav .otherBanneres ul.infoBanneres > li:nth-child(1) > a{
	background-color: #ec5a24;
}
.global-nav .otherBanneres ul.infoBanneres > li:nth-child(2) > a{
	background-color: #8cb74f;
}
.global-nav .otherBanneres ul.infoBanneres > li:nth-child(1) > a::before{
	content: '';
	display: block;
	background: url("../image/common/hamburgerIcon04.svg") 0 center / contain no-repeat;
	width: 33px;
	height: auto;
	aspect-ratio: 33 / 26;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 17px;
}
.global-nav .otherBanneres ul.infoBanneres > li:nth-child(2) > a::before{
	content: '';
	display: block;
	background: url("../image/common/hamburgerIcon05.svg") 0 center / contain no-repeat;
	width: 30px;
	height: auto;
	aspect-ratio: 1 / 1;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 17px;
}
.global-nav .otherBanneres ul.infoBanneres > li > a::after{
	content: '';
	display: block;
	background: url("../image/common/hamburgerIcon06.svg") 0 center / contain no-repeat;
	width: 11px;
	height: auto;
	aspect-ratio: 11 / 13;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 17px;
}

.global-nav ul.txtBanneres{
	padding: 30px 0 13px;
	background-color: #fffbee;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px 0;
}
.global-nav ul.txtBanneres li{
	width: 69.44%;/*500*/
	height: 77px;
}
.global-nav ul.txtBanneres li > a{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	background-color: #fff;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 0px 10px 0px rgba(116,184,209,0.55);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.03em;
}
.global-nav ul.txtBanneres li > a::before{
	content: '';
	width: 29.3%;/*82*/
	height: 100%;
	display: flex;
	background-color: gray;
	position: absolute;
}
.global-nav ul.txtBanneres li > a::after{
    content: '';
    width: 55px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
	bottom: 0;
	margin: auto;
    left: 12px;
}
.global-nav ul.txtBanneres li > a.blue::before{
	background-color: #0db2ad;
}
.global-nav ul.txtBanneres li> a.blue::after{
    background: url("../image/top/sideBnr01.svg") 0 center / contain no-repeat;
}
.global-nav ul.txtBanneres li > a.green::before{
	background-color: #4ea81a;
}
.global-nav ul.txtBanneres li> a.green::after{
    background: url("../image/top/sideBnr02.svg") 0 center / contain no-repeat;
}
.global-nav ul.txtBanneres li > a.orange::before{
	background-color: #f28e1e;
}
.global-nav ul.txtBanneres li> a.orange::after{
    background: url("../image/top/sideBnr03.svg") 0 center / contain no-repeat;
}
.global-nav ul.txtBanneres li > a.brown::before{
	background-color: #af8d00;
}
.global-nav ul.txtBanneres li> a.brown::after{
    background: url("../image/top/sideBnr04.svg") 0 center / contain no-repeat;
}
.global-nav ul.txtBanneres li > a span{
	width: 100%;
	padding-left: 98px;
	color: #666;
	font-weight: 700;
	letter-spacing: 0.03em;
	position: relative;
}
.global-nav ul.txtBanneres li > a span::before{
    content: '';
    background: url("../image/common/utilityIcon05.svg") 0 center / contain no-repeat;
    width: 11px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
	bottom: 0;
	margin: auto;
    right: 15px;
}

.global-nav ul.imageBanneres{
	background-color: #fffbee;
	padding: 13px 0 35px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px 0;
}
.global-nav ul.imageBanneres li{
	width: 69.44%;/*500*/
	height: auto;
}

.global-nav ul.circleLinks{
	padding: 25px 0 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px 0;
}
.global-nav ul.circleLinks li{
	width: 69.44%;/*500*/
}
.global-nav ul.circleLinks li > a{
	position: relative;
	font-weight: 500;
	letter-spacing: 0.05em;
	display: flex;
	align-content: center;
	gap: 0 5px;
}
.global-nav ul.circleLinks li > a::before{
	content: '';
	display: block;
	background: url("../image/common/hamburgerIcon03.webp") 0 center / contain no-repeat;
	width: 13px;
    aspect-ratio: 1 / 1;
}
.global-nav .engBtn{
	width: 50.00%;/*360*/
	height: 40px;
	margin: 0 auto 125px;
}
.global-nav .engBtn > a{
	width: 100%;
	height: 100%;
	border: 1px solid #dae3ea;
	box-sizing: border-box;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 12px;
	font-size: 15px;
	font-weight: 500;
}
.global-nav .engBtn > a::before{
	content: '';
	display: block;
	background: url("../image/common/utilityIcon06.svg") 0 center / contain no-repeat;
	width: 22px;
    aspect-ratio: 1 / 1;
}

/*2026.04.24追加*/
.mega-close{
	display: none;
}

/*-----------------------------------------------------------*/
/*コアページ*/

#pageTitle{
	/*margin-top: var(--header-h);*/
	width: 100%;
}

#pageTitle h2.pageHd{
    width: calc( 100% - 60px );
	height: 90px;
	background-color: #fffbee;
    margin: 0 auto 0;
    padding: 0 30px 0;
	position: relative;
	z-index: 1;
	font-size: 18px;
	font-weight: 700;
	display: flex;
	align-items: center;
	position: relative;
}
#pageTitle h2.pageHd::before{
    content: '';
    background: url("../image/common/pageTitlePartsSmh.webp") 0 center / cover no-repeat;
    width: 100%;
	height: 90px;
    aspect-ratio: 721 / 184;
    position: absolute;
    top: 0;
    left: 0;
}

nav.breadcrumb{
	width: calc(100% - 20px);
	padding: 0 10px;
	margin: 10px auto 0;
}
nav.breadcrumb ul{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0 20px;
}
nav.breadcrumb ul li {
	font-size: 13px;
	position: relative;
}
nav.breadcrumb ul li:not(:last-child)::before{
	content: '>';
	font-family: 'Noto Sans JP', sans-serif;
	position: absolute;
	top: 1px;
	right: -13px;
}

#pageWrap, #searchWrap, #postWrap{
    width: calc( 100% - 30px );
    margin: 35px auto 70px;
    padding: 0 15px;
}

/*-----------------------------------------------------------*/
/*フッター*/
#footer_wrap {
	background-color: #8cb74f;
	padding: 20px 0;
}
#footer_wrap > .inner{
	width: calc( 100% - 60px );
	padding: 0 20px;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 14px;
	padding: 20px 30px;
}

#footer_wrap .info .logo{
	width: 100%;
}
#footer_wrap .info .logo img{
	width: 100%;
	height: auto;
}
#footer_wrap .info .address{
	margin-top: 20px;
	font-weight: 500;
	color: #000;
	text-align: center;
}
#footer_wrap .info .address dl{
	display: flex;
	flex-direction: column;
	gap: 5px 0;
}
#footer_wrap .info .address dl dt{
	display: flex;
	flex-direction: column;
	font-size: 13px;
}
#footer_wrap .info .address dl dd{
	font-size: 12px;
	line-height: 120.0%;
}

#footer_wrap .sitemaps{
	margin-top: 25px;
}
#footer_wrap .sitemaps ul{
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 15px 0;
}
#footer_wrap .sitemaps ul li{
	width: 100%;
	height: 38px;
	display: flex;
	align-items: center;
	position: relative;
}
#footer_wrap .sitemaps ul li::before{
    content: '';
	display: block;
    background: url("../image/common/megaIconArrow.svg") center / contain no-repeat;
    width: 9px;
    height: auto;
    aspect-ratio: 1 / 1;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 10px;
}
#footer_wrap .sitemaps ul li a{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	font-weight: 500;
	letter-spacing: 0.05em;
	border: 2px solid #8cb74f;
	box-sizing: border-box;
	border-radius: 19px;
	padding: 0 20px;
}

#footer_wrap > .copyright{
	margin-top: 25px;
	font-size: 13px;/*13*/
	color: #fff;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-align: center;
}
/*-----------------------------------------------------------*/
#pagetop {
    position: fixed;
    right: 2%;
    bottom: 3%;
    z-index: 10;
	width: 50px;
}
#pagetop img{
	filter: drop-shadow(0 0 5px rgba(116,184,209,0.55));
}

#sidebnrLeft{
	position: fixed;
    left: 2%;
    bottom: 3%;
	width: 100px;
	z-index: 4;
}
#sidebnrLeft img{
	filter: drop-shadow(0 0 10px rgba(242,149,65,0.70));
}

#sidebnrRight{
	display: none;
}

/*-----------------------------------------------------------*/
/*アニメーション*/
/*フェードアップ*/
.fadeUpTrigger, .afterloadfadeUp {
    opacity: 0;
}
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*ipad横向き時*/
@media screen and (max-width: 1500px) and (orientation: landscape) {} /*ここまで*/
/*ipad縦向き時*/
@media screen and (min-width: 820px) and (orientation: portrait) {} /*ここまで*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/