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

html {
    overflow-y: scroll;
	overflow-x: hidden;
	font-size: 62.5%;
}

/* -------------------------------------------
   ブレイクポイントのコントロール
------------------------------------------- */

/* 【第1段階】1200px 〜 1349px */
@media screen and (max-width: 1349px) {
    html {
        font-size: 55%; /* 1rem = 8.8px (14px相当) */
    }
}

/* 【第2段階】1080px 〜 1199px */
@media screen and (max-width: 1199px) {
    html {
        font-size: 52.5%; /* 1rem = 8.4px (13.4px相当) */
    }
}

/* 【第3段階】960px 〜 1079px */
@media screen and (max-width: 1079px) {
    html {
        font-size: 50%; /* 1rem = 8px (12.8px相当) */
    }
}

/* 【第4段階】840px 〜 959px */
@media screen and (max-width: 959px) {
    html {
        font-size: 47.5%; /* 1rem = 7.6px (12.1px相当) */
    }
}

/* 【第5段階】〜 839px：スマホ直前（限界まで小さく） */
@media screen and (max-width: 839px) {
    html {
        font-size: 45%; /* 1rem = 7.2px (11.5px相当) */
    }
}	
html.is-open {
	overflow: hidden;
}

@media print{
   /*アニメーションOFF*/
	
	.fadeUpTrigger{
        opacity: 1.0 !important;
	}

	.fadeUp{
        opacity: 1.0 !important;
	}

    
   /*印刷用CSSで適用させる定義を記述*/
    html {
        transform: scale(0.8);
        transform-origin: left top;
        width: calc(100% / 0.8);
        height: calc(100% / 0.8);
        overflow-y: auto;
    }  
}

:root {	
	--bg-color: #ffffff;	
	--text-color: #333333; /* 白背景に対して十分なコントラスト */	
	--link-color: #0056b3; /* リンク色もコントラストを確保 */	
	--focus-color: #ff9900;	
}

body {
  font-family: "BIZ UDPGothic", sans-serif;
	font-optical-sizing: auto;
  font-weight: 700;
	font-style: normal;
	font-size: 1.6rem;
	-webkit-text-size-adjust: 100%;
	/*-webkit-text-size-adjust: none;*/
	line-height: 1.5;
	color: var(--text-color);
	background: var(--bg-color);
/*	overflow: hidden;*/
	
	/* ▼ サイト全体の句読点・記号の行頭落ちを防ぐ設定 */
    line-break: strict;
    word-break: normal;
}

/* BIZ UDPGothic (Boldのみ) */
.font-biz {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
}

/* Noto Sans JP (各種ウェイト) */
.font-noto-400 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.font-noto-500 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.font-noto-700 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

h2, h3:not(.title), h4, h5, h6{
	transform: rotate(0.05deg);
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
    word-break: break-all;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: top;
	vertical-align: bottom;
}
.pc_hide {
	display: none !important;
}

.sp_hide {
}

a {
	color: var(--link-color);
	text-decoration: underline; /* 1.4.1 色の使用: 色以外でもリンクと分かるようにする */
	opacity: 1;
    transition: all 0.5s;
}

a:hover {
	opacity: 0.6;
	text-decoration: none;
}

a.disabled{
    pointer-events: none;
}

/* 2.4.7 フォーカスの可視化: キーボード操作時のフォーカス状態を視覚的に明確にする */
/* ① まず、すべての要素のブラウザ標準フォーカス（黒線など）を一律でリセット */
a:focus,
button:focus,
input:focus,
textarea:focus {
	outline: none;
}

/* ② キーボード操作時（focus-visible）のみ、最初からオレンジの線を出す */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--focus-color) !important; /* 他の干渉を防ぐため !important を推奨 */
	outline-offset: -2px;
}

/* 2.4.1 ブロックスキップ: メインコンテンツへのスキップリンク（視覚的には隠し、フォーカス時に表示） */
.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	padding: 12px 16px;
	background: #000;
	color: #fff;
	z-index: 10000;
	text-decoration: none;
}

.skip-link:focus,
.skip-link:focus-visible {
	top: 0;
}

.skip-link {
	transform: translateY(-120%);
	transition: transform 0.2s;
}

.skip-link:focus-visible {
	transform: translateY(0);
}


h1,
h2,
h3,
h4{
	font-size: 100%;
	font-weight: 500;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}


select::-ms-expand {
    display: none;
}

a.tel-link{
	pointer-events: none;
}

ol, ul {
    list-style: none;
	box-sizing: border-box;
}

#wrapper{
/*	position: relative;*/
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

:where(figure){
	margin-bottom: 0 !important;
}

/*===================================
	仕様
=====================================*/

/* 下から */

.fadeUpTrigger,
.fadeLeftTrigger{
	opacity: 0;
}


.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


/* 左から */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
	transform: translateX(-100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/**/


/*===================================
	header
=====================================*/

header{
	position: fixed; /* ★追加：メガメニューの絶対配置の基準点にする */
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	padding: 0 37px;
	box-sizing: border-box;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, visibility 0.3s;
	z-index: 1000;       /* ★追加：メインコンテンツより前面に出す */
}


/* ログイン時（管理バーがある時）の調整 */
body.customize-support header {
  top: 32px;
}

header.is-hide {
	transform: translateY(-100%);
	visibility: hidden; 
}

header .head_inner{
	width: 100%;
	height: 124px;
	display: flex;
	align-items: center;
}

header .head_inner h1{
	width: 26.69%;
	max-width: 395px;
}

header .head_inner h1 img{
	width: 100%;
	height: auto;
}

header .head_inner nav{
	flex: 1;
	height: 100%;
}

header .head_inner nav ul.menu-root{
	display: flex;
	justify-content: flex-end;
	height: 100%;
	list-style: none; /* 追加 */
	margin: 0;        /* 追加 */
	padding: 0;       /* 追加 */
}

header .head_inner nav ul.menu-root li.menu-item-has-child{
	width: 12.07%;
	max-width: 131px;
	height: 100%;     /* ★追加：liの高さも124pxいっぱいに広げる */
	display: flex;    /* ★追加：子要素のbuttonを縦中央に整列しやすくする */
	align-items: center;
}

header .head_inner nav ul.menu-root li.menu-item-has-child button,
header .head_inner nav ul.menu-root li.menu-item-has-child > a{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 100%;
	background: none;
	border: none;
	font-size: 100%;
	line-height: 1.19;
	color: #333333;
	text-decoration: none;
	padding-top: 73px;
	box-sizing: border-box;
	cursor: pointer; /* ★追加：ボタンらしくマウスカーソルをポインターにする */
	position: relative;
	transition: background-color 0.3s ease;
}


/* --- 【新規追記】ホバー時とキーボード選択時の背景色 --- */
header .head_inner nav ul.menu-root li.menu-item-has-child button:hover,
header .head_inner nav ul.menu-root li.menu-item-has-child button:focus-visible{
	background-color: #ebf7f4; /* 指定の薄いエメラルドグリーン */
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(2) button:hover,
header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(2) button:focus-visible{
	background-color: #edf4e6; /* 指定の薄いエメラルドグリーン */
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(3) button:hover,
header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(3) button:focus-visible{
	background-color: #fcf5e8; /* 指定の薄いエメラルドグリーン */
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(4) button:hover,
header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(4) button:focus-visible{
	background-color: #fffbee; /* 指定の薄いエメラルドグリーン */
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(5) button:hover,
header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(5) button:focus-visible{
	background-color: #e4efe6; /* 指定の薄いエメラルドグリーン */
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(6) button:hover,
header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(6) button:focus-visible{
	background-color: #e5f5f9; /* 指定の薄いエメラルドグリーン */
}

/* --- アイコン用の疑似要素（既存のまま） --- */
header .head_inner nav ul.menu-root li.menu-item-has-child button::before{
	content: '';
	background: url("images/common/nav_ico01.svg")no-repeat;
	background-size: 100% auto;
	width: 49.62%;/*65*/
	height: auto;
	aspect-ratio: 65 / 55;
	position: absolute;
	top: 17px;
	left: 50%;
	transform: translateX(-50%);
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(2) button::before{
	background: url("images/common/nav_ico02.svg")no-repeat;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(3) button::before{
	background: url("images/common/nav_ico03.svg")no-repeat;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(4) button::before{
	background: url("images/common/nav_ico04.svg")no-repeat;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(5) button::before{
	background: url("images/common/nav_ico07.svg")no-repeat;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(6) button::before{
	background: url("images/common/nav_ico05.svg")no-repeat;
}

header .head_inner nav ul.menu-root li.menu-item-has-child > a::before{
	content: '';
	background: url("images/common/nav_ico06.svg")no-repeat;
	background-size: 100% auto;
	width: 49.62%;/*65*/
	height: auto;
	aspect-ratio: 65 / 55;
	position: absolute;
	top: 17px;
	left: 50%;
	transform: translateX(-50%);
}


/*===================================
	mega-menu (新規最適化スタイル＋スライド追加)
=====================================*/

/* 基本は非表示 */
header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu[hidden] {
  display: none;
}

/* メガメニュー本体：画面幅100%でヘッダー直下に配置 */
header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu {
  width: 100%;
	background: #ebf7f4;
	box-shadow: 0 30px 15px rgba(0, 0, 0, 0.15);
	position: absolute;
	left: 0;
	top: 100%;	
	z-index: 999;
	
	opacity: 0;                  /* ① 最初は透明にしておく */
	visibility: hidden; /* 🌟隠れている間は当たり判定を完全に消去する（超重要） */
	margin-top: -15px;           /* ② 本来の位置より15pxだけ上にずらしておく */
	/* ③ JavaScriptのタイマー（0.3秒）に合わせて、透明度と位置を滑らかに変化させる */
	 transition: opacity 0.3s ease, margin-top 0.3s ease, visibility 0.3s ease; /* 🌟visibilityも移行対象に */
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(2) .mega-menu {
	background: #edf4e6;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(3) .mega-menu {
	background: #fcf5e8;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(4) .mega-menu {
	background: #fffbee;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(5) .mega-menu {
	background: #e4efe6;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(6) .mega-menu {
	background: #e5f5f9;
}

/* ★ここを追加！閉じているときと「全く同じ長さ」で .is-show を指定して勝たせる */
header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu.is-show {
  opacity: 1;                  /* クッキリ表示 */
	visibility: visible; /* 🌟表示されたら当たり判定を戻す */
  margin-top: 0;               /* 上のズレを戻してスッと降ろす */
}

/* メガメニューの内側：1480pxのデザイン枠を作る */
header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu .mega-menu-inner {
  width: 100%;
	max-width: 1250px;
	min-height: 500px;	
	margin: 0 auto;
	padding: 30px 25px 70px;
	box-sizing: border-box;
}

header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu .mega-menu-inner h2.megamenu_midashi{
	padding: 28px 0 28px 8.75%;/*105*/
	border-bottom: 3px solid #36998f;
	box-sizing: border-box;
	font-size: 250%;/*40*/
	line-height: 1;
	color: #333333;
	position: relative;
}

header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu .mega-menu-inner h2.megamenu_midashi::before{
	content: '';
	background: url("images/common/nav_ico01.svg")no-repeat;
	background-size: 100% auto;
	width: 5.42%;/*65*/
	height: auto;
	aspect-ratio: 65 / 61;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 1.08%;/*13*/
	z-index: 1;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(2) .mega-menu .mega-menu-inner h2.megamenu_midashi{
	border-bottom: 3px solid #76b220;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(2) .mega-menu .mega-menu-inner h2.megamenu_midashi::before{
	background: url("images/common/nav_ico02.svg")no-repeat;
	background-size: 100% auto;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(3) .mega-menu .mega-menu-inner h2.megamenu_midashi{
	border-bottom: 3px solid #e05927;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(3) .mega-menu .mega-menu-inner h2.megamenu_midashi::before{
	background: url("images/common/nav_ico03.svg")no-repeat;
	background-size: 100% auto;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(4) .mega-menu .mega-menu-inner h2.megamenu_midashi{
	border-bottom: 3px solid #876239;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(4) .mega-menu .mega-menu-inner h2.megamenu_midashi::before{
	background: url("images/common/nav_ico04.svg")no-repeat;
	background-size: 100% auto;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(5) .mega-menu .mega-menu-inner h2.megamenu_midashi{
	border-bottom: 3px solid #008d45;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(5) .mega-menu .mega-menu-inner h2.megamenu_midashi::before{
	background: url("images/common/nav_ico07.svg")no-repeat;
	background-size: 100% auto;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(6) .mega-menu .mega-menu-inner h2.megamenu_midashi{
	border-bottom: 3px solid #2f9cce;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(6) .mega-menu .mega-menu-inner h2.megamenu_midashi::before{
	background: url("images/common/nav_ico05.svg")no-repeat;
	background-size: 100% auto;
}

header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu .mega-menu-inner ul.link_list{
	margin-top: 50px;
	width: 100%;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px 0;
}

header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu .mega-menu-inner ul.link_list::after{
	content: '';
	width: 31.67%;/*380*/
}

header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu .mega-menu-inner ul.link_list li{
	width: 31.67%;/*380*/
}

header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu .mega-menu-inner ul.link_list li a{
	display: flex;
	align-items: center;
	width: 100%;
	height: 110px;
	border-radius: 20px;
	background: #fff;
	background-image: url("images/common/link_ico_col01.svg");
	background-repeat: no-repeat;
	background-size: 7.89% auto;/*30*/
	background-position: right 7.11% center;/*27*/
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	font-size: 112.5%;/*18*/
	line-height: 1.39;
	color: #333333;
	text-decoration: none;
	padding-left: 32.11%;/*122*/
	box-sizing: border-box;
	position: relative;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(2) .mega-menu .mega-menu-inner ul.link_list li a{
	background-image: url("images/common/link_ico_col02.svg");
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(3) .mega-menu .mega-menu-inner ul.link_list li a{
	background-image: url("images/common/link_ico_col03.svg");
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(4) .mega-menu .mega-menu-inner ul.link_list li a{
	background-image: url("images/common/link_ico_col04.svg");
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(5) .mega-menu .mega-menu-inner ul.link_list li a{
	background-image: url("images/common/link_ico_col10.svg");
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(6) .mega-menu .mega-menu-inner ul.link_list li a{
	background-image: url("images/common/link_ico_col05.svg");
}


header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu .mega-menu-inner ul.link_list li a::before{
	content: '';
	background: url("images/common/sub_menu_ico01.svg")no-repeat;
	background-size: 100% auto;
	width: 20.26%;/*77*/
	height: auto;
	aspect-ratio: 1 / 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 5.53%;/*21*/
	z-index: 1;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:first-child .mega-menu .mega-menu-inner ul.link_list li:nth-child(2) a::before{
	background: url("images/common/sub_menu_ico02.svg")no-repeat;
	background-size: 100% auto;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:first-child .mega-menu .mega-menu-inner ul.link_list li:nth-child(3) a::before{
	background: url("images/common/sub_menu_ico03.svg")no-repeat;
	background-size: 100% auto;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:first-child .mega-menu .mega-menu-inner ul.link_list li:nth-child(4) a::before{
	background: url("images/common/sub_menu_ico04.svg")no-repeat;
	background-size: 100% auto;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:first-child .mega-menu .mega-menu-inner ul.link_list li:nth-child(5) a::before{
	background: url("images/common/sub_menu_ico05.svg")no-repeat;
	background-size: 100% auto;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(2) .mega-menu .mega-menu-inner ul.link_list li:first-child a::before{
	background: url("images/common/sub_menu_ico06.svg")no-repeat;
	background-size: 100% auto;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(2) .mega-menu .mega-menu-inner ul.link_list li:nth-child(2) a::before{
	background: url("images/common/sub_menu_ico07.svg")no-repeat;
	background-size: 100% auto;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(3) .mega-menu .mega-menu-inner ul.link_list li:first-child a::before{
	background: url("images/common/sub_menu_ico08.svg")no-repeat;
	background-size: 100% auto;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(3) .mega-menu .mega-menu-inner ul.link_list li:nth-child(2) a::before{
	background: url("images/common/sub_menu_ico09.svg")no-repeat;
	background-size: 100% auto;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(3) .mega-menu .mega-menu-inner ul.link_list li:nth-child(3) a::before{
	background: url("images/common/sub_menu_ico10.svg")no-repeat;
	background-size: 100% auto;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(3) .mega-menu .mega-menu-inner ul.link_list li:nth-child(4) a::before{
	background: url("images/common/sub_menu_ico11.svg")no-repeat;
	background-size: 100% auto;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(4) .mega-menu .mega-menu-inner ul.link_list li:first-child a::before{
	background: url("images/common/sub_menu_ico12.svg")no-repeat;
	background-size: 100% auto;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(4) .mega-menu .mega-menu-inner ul.link_list li:nth-child(2) a::before{
	background: url("images/common/sub_menu_ico13.svg")no-repeat;
	background-size: 100% auto;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(5) .mega-menu .mega-menu-inner ul.link_list li:first-child a::before{
	background: url("images/common/sub_menu_ico16.svg")no-repeat;
	background-size: 100% auto;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(5) .mega-menu .mega-menu-inner ul.link_list li:nth-child(2) a::before{
	background: url("images/common/sub_menu_ico17.svg")no-repeat;
	background-size: 100% auto;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(6) .mega-menu .mega-menu-inner ul.link_list li:first-child a::before{
	background: url("images/common/sub_menu_ico14.svg")no-repeat;
	background-size: 100% auto;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(6) .mega-menu .mega-menu-inner ul.link_list li:nth-child(2) a::before{
	background: url("images/common/sub_menu_ico15.svg")no-repeat;
	background-size: 100% auto;
}


header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu .mega-menu-inner ul.link_list li a::after{
	content: '';
	border: 3px solid;
	border-color: #36998f;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	box-sizing: border-box;
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
/* ★追加：最初は透明にする */
	opacity: 0;
	/* ★追加：0.3秒かけてふんわり変化させる設定（時間は好みで調整してください） */
	transition: opacity 0.3s ease;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(2) .mega-menu .mega-menu-inner ul.link_list li a::after{
	border-color: #76b220;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(3) .mega-menu .mega-menu-inner ul.link_list li a::after{
	border-color: #e05927;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(4) .mega-menu .mega-menu-inner ul.link_list li a::after{
	border-color: #876239;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(5) .mega-menu .mega-menu-inner ul.link_list li a::after{
	border-color: #008d45;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:nth-child(6) .mega-menu .mega-menu-inner ul.link_list li a::after{
	border-color: #2f9cce;
}

header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu .mega-menu-inner ul.link_list li a:hover,
header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu .mega-menu-inner ul.link_list li a:focus-within{
	opacity: 1;
}

header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu .mega-menu-inner ul.link_list li a:hover::after,
header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu .mega-menu-inner ul.link_list li a:focus-within::after{
	opacity: 1;
}

/*===================================
	footer
=====================================*/

footer{
	width: 100%;
	padding-top: 24px;
}

footer .foot_inner{
	width: 100%;
	max-width: 1050px;
	margin: 0 auto;
	padding: 0 25px;
	box-sizing: border-box;
}

footer .foot_inner .sns-share-container{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px 0;
	width: 58.2%;
	height: 159px;
	margin: 0 auto;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 0 9px rgba(0, 0, 0, 0.15);
}

footer .foot_inner .sns-share-container p.sns-share-title{
	font-size: 125%;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #754c24;
}

footer .foot_inner .sns-share-container ul.sns-share-list{
	width: 100%;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 0 10.14%;/*59*/
}

footer .foot_inner .sns-share-container ul.sns-share-list li{
	width: 9.97%;/*58*/
}

footer .foot_inner .sns-share-container ul.sns-share-list li img{
	width: 100%;
	height: auto;
}

/**/

footer .foot_inner .foot_container {
	width: 100%;
	padding: 43px 0 90px;
	position: relative;
}

/* 画面いっぱいの薄黄色背景（上側に40pxはみ出させる設定） */
footer .foot_inner .foot_container::before {
	content: '';
	background: #fffbee; /* 薄黄色 */
	width: 100vw;
	height: calc(100% + 40px);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -2;
}

/* ★修正：画面いっぱいに広げ、背景の「一番上」にぴったり合わせる */
footer .foot_inner .foot_container::after {
	content: '';
	position: absolute;
	
	bottom: calc(100% + 40px - 34px); /* 背景の高さの天辺から、円の半径（34px）分だけ下にずらす */
	left: 50%;
	width: 100vw;
	height: 68px;
	transform: translateX(-50%);
	z-index: -1;
	

	background-image: radial-gradient(#fffbee 70%, transparent 71%);
	background-size: 68px 68px;
	background-repeat: repeat-x;
	background-position: center top;
}

footer .foot_inner .foot_container .foot_area01{
	width: 96.7%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

footer .foot_inner .foot_container .foot_area01 .foot_logo{
	width: 40.85%;/*395*/
}

footer .foot_inner .foot_container .foot_area01 .foot_logo img{
	width: 100%;
	height: auto;
}

footer .foot_inner .foot_container .foot_area01 .contact_area{
	width: 55.33%;/*535*/
}

footer .foot_inner .foot_container .foot_area01 .contact_area .area_lv01{
	display: flex;
}

footer .foot_inner .foot_container .foot_area01 .contact_area .area_lv01 .koumoku{
	width: 25.42%;/*136*/
}

footer .foot_inner .foot_container .foot_area01 .contact_area .area_lv01 .koumoku p{
	font-size: 125%;/*20*/
	line-height: 1;
	letter-spacing: 0.05em;
	color: #754c24;
	margin-top: 3px;
}

footer .foot_inner .foot_container .foot_area01 .contact_area .area_lv01 .naiyou{
	width: 74.58%;
}

footer .foot_inner .foot_container .foot_area01 .contact_area .area_lv01 .naiyou p.txt_lv1{
	font-size: 112.5%;/*18*/
	line-height: 1.44;
	letter-spacing: 0.05em;
	color: #333333;
}

footer .foot_inner .foot_container .foot_area01 .contact_area .area_lv01 .naiyou p.txt_lv2{
	margin-top: 7px;
	font-size: 93.75%;/*15*/
	line-height: 1.53;
	letter-spacing: 0.05em;
	color: #333333;
}

footer .foot_inner .foot_container .foot_area01 .contact_area .area_lv01 .naiyou p.txt_lv2 a.tel-link{
	text-decoration: none;
	color: #333;
	padding-right: 1.5em;
}

footer .foot_inner .foot_container .foot_area01 .contact_area .area_lv01 .naiyou p.txt_lv2 span{
	font-size: 93.33%;/*14*/
}

footer .foot_inner .foot_container .foot_area01 .contact_area .area_lv01 + .area_lv01{
	margin-top: 10px;
}

/**/

footer .foot_inner .foot_container .foot_area02{
	width: 100%;
	margin-top: 25px;
}

footer .foot_inner .foot_container .foot_area02 .area_inner{
	width: 100%;
	background: #fff;
	border-radius: 60px;
	padding: 19px 5.0% 35px;/*50*/
	box-sizing: border-box;
	display: flex;
}

footer .foot_inner .foot_container .foot_area02 .area_inner ul.foot_menu_list01{
	list-style: none;
	width: 28.56%;/*257*/
	margin-top: 38px;
}

footer .foot_inner .foot_container .foot_area02 .area_inner ul.foot_menu_list01 li{
	width: 100%;
	padding-left: 5.84%;/*15*/
	box-sizing: border-box;
	position: relative;
}

footer .foot_inner .foot_container .foot_area02 .area_inner ul.foot_menu_list01 li::before{
	content: '';
	background: url("images/common/foot_link_ico.webp")no-repeat;
	background-size: 100% auto;
	width: 3.11%;/*8*/
	height: auto;
	aspect-ratio: 8 / 10;
	position: absolute;
	top: 5px;
	left: 0;
}


footer .foot_inner .foot_container .foot_area02 .area_inner ul.foot_menu_list01 li + li{
	margin-top: 23px;
}

footer .foot_inner .foot_container .foot_area02 .area_inner ul.foot_menu_list01 li a{
	display: block;
	width: fit-content;
	font-size: 100%;
	line-height: 1.31;
	letter-spacing: 0.05em;
	color: #333333;
	text-decoration: none;
	position: relative;
}

footer .foot_inner .foot_container .foot_area02 .area_inner ul.foot_menu_list01 li a:hover,
footer .foot_inner .foot_container .foot_area02 .area_inner ul.foot_menu_list01 li a:focus-visible{
	opacity: 1;
}

footer .foot_inner .foot_container .foot_area02 .area_inner ul.foot_menu_list01 li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: -2px;
    left: 0;
    /*線の形状*/
    width: 100%;
    height: 1px;
    background: #333;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}

/*現在地とhoverの設定*/
footer .foot_inner .foot_container .foot_area02 .area_inner ul.foot_menu_list01 li a:hover::after,
footer .foot_inner .foot_container .foot_area02 .area_inner ul.foot_menu_list01 li a:focus-visible::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap{
	width: 32.22%;/*290*/
}

footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap + .menu_wrap{
	margin: 0 0 0 auto;
}

footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .menu_area01{
	width: 100%;
}

footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .menu_area01 + .menu_area01{
	margin-top: 36px;
}

footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .menu_area01 h3.menu_midashi{
	border-bottom: 2px solid #36998f;
	padding: 17px 0 17px 15.86%;/*46*/
	box-sizing: border-box;
	font-size: 125%;/*20*/
	line-height: 1;
	letter-spacing: 0.05em;
	color: #754c24;
	position: relative;
}

footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .menu_area01 h3.menu_midashi::before{
	content: '';
	background: url("images/common/nav_ico01.webp")no-repeat;
	background-size: 100% auto;
	width: 14.48%;/*42*/
	height: auto;
	aspect-ratio: 66 / 56;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -1.38%;/*4*/
}

footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .menu_area01 h3.menu_midashi.color02{
	border-bottom-color: #76b220;
}

footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .menu_area01 h3.menu_midashi.color02::before{
	background: url("images/common/nav_ico02.webp")no-repeat;
	background-size: 100% auto;
}


footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .menu_area01 h3.menu_midashi.color03{
	border-bottom-color: #ec5a24;
}

footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .menu_area01 h3.menu_midashi.color03::before{
	background: url("images/common/nav_ico03.webp")no-repeat;
	background-size: 100% auto;
}

footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .menu_area01 ul.foot_menu_list02{
	list-style: none;
	width: 100%;
	margin-top: 15px;
}

footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .menu_area01 ul.foot_menu_list02 li{
	width: 100%;
	padding-left: 5.84%;/*15*/
	box-sizing: border-box;
	position: relative;
}

footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .menu_area01 ul.foot_menu_list02 li::before{
	content: '';
	background: url("images/common/foot_link_ico.webp")no-repeat;
	background-size: 100% auto;
	width: 2.76%;/*8*/
	height: auto;
	aspect-ratio: 8 / 10;
	position: absolute;
	top: 5px;
	left: 0;
}


footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .menu_area01 ul.foot_menu_list02 li + li{
	margin-top: 18px;
}

footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .menu_area01 ul.foot_menu_list02 li a{
	display: block;
	width: fit-content;
	font-size: 100%;
	line-height: 1.31;
	letter-spacing: 0.05em;
	color: #333333;
	text-decoration: none;
	position: relative;
}

footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .menu_area01 ul.foot_menu_list02 li a:hover,
footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .menu_area01 ul.foot_menu_list02 li a:focus-visible{
	opacity: 1;
}

footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .menu_area01 ul.foot_menu_list02 li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: -2px;
    left: 0;
    /*線の形状*/
    width: 100%;
    height: 1px;
    background: #333;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}

/*現在地とhoverの設定*/
footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .menu_area01 ul.foot_menu_list02 li a:hover::after,
footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .menu_area01 ul.foot_menu_list02 li a:focus-visible::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .contact_btn{
	width: 100%;
	margin-top: 68px;
}

footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .contact_btn a{
	display: flex;
	align-items: center;
	width: 100%;
	height: 67px;
	border: 3px solid #f28e1e;
	border-radius: 33px;
	box-sizing: border-box;
	background-color: #fff;
	background-image: url("images/common/link_ico_col06.svg");
	background-repeat: no-repeat;
	background-size: 10.69% auto;/*31*/
	background-position: right 5.86% center;/*17*/
	padding-left: 30.34%;/*88*/
	font-size: 93.75%;/*15*/
	line-height: 1;
	letter-spacing: 0.1em;
	color: #000000;
	text-decoration: none;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	position: relative;
}

footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .contact_btn a::before{
	content: '';
	background: url("images/common/contact_ico.svg")no-repeat;
	background-size: 100% auto;
	width: 17.24%;/*50*/
	height: auto;
	aspect-ratio: 50 / 38;
	position: absolute;
	top: calc(50% + 3px);
	transform: translateY(-50%);
	left: 8.97%;/*26*/
	z-index: 1;
}

footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .contact_btn a:hover,
footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .contact_btn a:focus-visible{
	opacity: 1;
	color: #fff;
	background-color: #f28e1e;
}

footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .contact_btn a:hover::before,
footer .foot_inner .foot_container .foot_area02 .area_inner .menu_wrap .contact_btn a:focus-visible::before{
	background: url("images/common/hov_contact_ico.svg")no-repeat;
	background-size: 100% auto;
}


/**/

footer .foot_inner .foot_container .foot_area03{
	width: 100%;
	margin-top: 55px;
}

footer .foot_inner .foot_container .foot_area03 .ft_bnr_list{
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 0 3.6%;
}

footer .foot_inner .foot_container .foot_area03 .ft_bnr_list li{
	width: 24.8%;
}

footer .foot_inner .foot_container .foot_area03 .ft_bnr_list li a{
	display: block;
	text-decoration: none;
}

footer .foot_inner .foot_container .foot_area03 .ft_bnr_list li a .bnr_img{
	width: 100%;
}

footer .foot_inner .foot_container .foot_area03 .ft_bnr_list li a .bnr_img img{
	width: 100%;
	height: auto;
	filter: drop-shadow(0px 0px 5px rgba(119, 119, 119, 0.45));
}

footer .foot_inner .foot_container .foot_area03 .ft_bnr_list li a p.link_txt{
	margin-top: 11px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 2.82%;/*7*/
	font-size: 100%;
	line-height: 1;
	color: #333333;
}

footer .foot_inner .foot_container .foot_area03 .ft_bnr_list li a p.link_txt::after{
	content: '';
	background: url("images/common/ex_ico_col01.webp")no-repeat;
	background-size: 100% auto;
	width: 8.06%;/*20*/
	height: auto;
	aspect-ratio: 20 / 19;
}

/**/

footer .foot_inner .copy_area{
	padding: 20px 0 30px;
	background: #dff4ee;
	position: relative;
}

footer .foot_inner .copy_area::before{
	content: '';
	background: #dff4ee;
	width: 100vw;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -2;
}

footer .foot_inner .copy_area::after {
	content: '';
	position: absolute;
	
	bottom: calc(100% - 34px);
	left: 50%;
	
	width: 100vw;
	height: 68px;
	transform: translateX(-50%);
	z-index: -1;
	
	background-image: radial-gradient(#dff4ee 70%, transparent 71%);
	background-size: 68px 68px;
	background-repeat: repeat-x;
	background-position: center top;
}

footer .foot_inner .copy_area p{
	font-size: 81.25%;/*13*/
	line-height: 1;
	letter-spacing: 0.05em;
	color: #333333;
	text-align: center;
}


/*===================================
	.totop
=====================================*/

.totop{
	display: none;
	width: 4.46%;/*66*/
	max-width: 66px;
	position: fixed;
	bottom: 37px;
	right: 10px;
	z-index: 100;
}

.totop img{
	width: 100%;
	height: auto;
	filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.15));
}


/*===================================
	.page_title_wrap
=====================================*/

section.page_title_wrap{
	margin-top: 211px;/*(87 + 124)*/
	background: #fffbee;
	padding: 28px 0 33px;
	margin-bottom: 45px;
	position: relative;
}

/* ── 上の装飾（54pxはみ出す） ── */
section.page_title_wrap::before {
    content: '';
    position: absolute;
    
    /* 天辺から54px上に配置 */
    top: -54px; 
    left: 50%;
    width: 100vw;
    height: 68px; /* 円の直径 */
    transform: translateX(-50%);
    z-index: -1;

    background-image: radial-gradient(#fffbee 70%, transparent 71%);
    background-size: 68px 68px;
    background-repeat: repeat-x;
    background-position: center top;
}

/* ── 下の装飾（45pxはみ出す） ── */
section.page_title_wrap::after {
    content: '';
    position: absolute;
    
    /* 底辺から45px下に配置 */
    bottom: -45px; 
    left: 50%;
    width: 100vw;
    height: 68px; /* 円の直径 */
    transform: translateX(-50%);
    z-index: -1;

    background-image: radial-gradient(#fffbee 70%, transparent 71%);
    background-size: 68px 68px;
    background-repeat: repeat-x;
    background-position: center top; 
}

section.page_title_wrap .tit_inner {
	width: 100%;
	max-width: 1150px;
	padding: 0 25px;
	box-sizing: border-box;
	margin: 0 auto;
}

section.page_title_wrap .tit_inner h2.page_title{
	padding-bottom: 30px;
	font-size: 218.75%;/*35*/
	line-height: 1;
	letter-spacing: 0.05em;
	color: #754c24;
	text-align: center;
	position: relative;
}

section.page_title_wrap .tit_inner h2.page_title::before{
	content: '';
	background: url("images/common/tit_parts01.webp")no-repeat;
	background-size: 100% auto;
	width: 6.91%;/*76*/
	height: auto;
	aspect-ratio: 76 / 11;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

section.page_title_wrap .tit_inner nav.bread_crumb{
	width: 100%;
	position: relative;
	top: 26px;
}

section.page_title_wrap .tit_inner nav.bread_crumb ul.bread_crumb_list{
	list-style: none;
	display: flex;
	align-items: center;
}

section.page_title_wrap .tit_inner nav.bread_crumb ul.bread_crumb_list li{
	display: flex;
	align-items: center;
	font-size: 93.75%;/*15*/
	line-height: 1;
	letter-spacing: 0.05em;
	color: #754c24;
}

section.page_title_wrap .tit_inner nav.bread_crumb ul.bread_crumb_list li a{
	color: #754c24;
	text-decoration: none;
}

section.page_title_wrap .tit_inner nav.bread_crumb ul.bread_crumb_list li + li::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	border-top: 1.5px solid #754c24;
	border-right: 1.5px solid #754c24;
	transform: rotate(45deg);
	margin: 0 8px;
	flex-shrink: 0;
}

/*===================================
	.共通パーツ
=====================================*/

.sec-inner{
	width: 100%;
	max-width: 1150px;
	padding: 0 25px;
	box-sizing: border-box;
	margin: 0 auto;
}

h2.h2_midashi{
	width: 100%;
	max-width: 1100px;
	height: 75px;
	margin: 0 auto;
	padding: 17px 0 0 min(4.55%, 50px);
	box-sizing: border-box;
	font-size: 187.5%;/*30*/
	line-height: 1;
	letter-spacing: 0.05em;
	color: #754c24;
	position: relative;
}

h2.h2_midashi::before{
	content: '';
	background: url("images/common/tit_parts01.svg")no-repeat;
	background-size: 100% auto;
	width: 6.91%;/*76*/
	height: auto;
	aspect-ratio: 76 / 11;
	position: absolute;
	top: 0;
	transform: rotate(90deg);
	transform-origin: top left;
	left: 10px;
	z-index: 1;
}

h2.h2_midashi::after{
	content: '';
	background: #c7c7c7;
	width: calc(100% - min(4.55%, 50px));
	height: 3px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
}

h3.h3_midashi, section.single .contentsInner h3.wp-block-heading{
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 1100px;
	height: 90px;
	margin: 0 auto;
	background: #fffbee;
	border-radius: 20px;
	padding-left: min(4.55%, 50px);
	box-sizing: border-box;
	font-size: 156.25%;/*25*/
	line-height: 1;
	letter-spacing: 0.05em;
	color: #603813;
	position: relative;
}

h3.h3_midashi::before, section.single .contentsInner h3.wp-block-heading::before{
	content: '';
	background: #f28e1e;
	width: 0.45%;/*5*/
	height: 45px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: min(2.55%, 28px);
	z-index: 1;
}

h4.h4_midashi, section.single .contentsInner h4.wp-block-heading{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 0 20px min(3.1%, 31px);
	border-bottom: 3px solid #f28e1e;
	box-sizing: border-box;
	font-size: 125%;/*20*/
	line-height: 1;
	letter-spacing: 0.05em;
	color: #603813;
	position: relative;
}

h4.h4_midashi::before, section.single .contentsInner h4.wp-block-heading::before{
	content: '';
	background: #f28e1e;
	width: 1.4%;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	position: absolute;
	top: calc(7px / 2);
	left: 0.5%;/*5*/
	z-index: 1;
}

.dl_btn, .is-style-dl_btn{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

.dl_btn a, .is-style-dl_btn a{
	display: flex;
	align-items: center;
	width: 100%;
	height: 80px;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	background-color: #fff;
	background-image: url("images/common/dl_ico.webp");
	background-repeat: no-repeat;
	background-size: 3.1% auto;
	background-position: right 3.0% center;
	padding: 0 7.5%;
	box-sizing: border-box;
	font-size: 100%;
	line-height: 1.875;
	letter-spacing: 0.05em;
	color: #333333;
	text-decoration: none;
	position: relative;
}

.dl_btn a::before, .is-style-dl_btn a:before{
	content: '';
	background: url("images/common/pdf_ico.webp")no-repeat;
	background-size: 100% auto;
	width: 3.3%;
	height: auto;
	aspect-ratio: 33 / 40;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 2.0%;
	z-index: 1;
}

.pdf_btn{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.pdf_btn a{
	display: flex;
	align-items: center;
	width: 100%;
	height: 80px;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	background-color: #fff;
	background-image: url("images/common/ex_ico.webp");
	background-repeat: no-repeat;
	background-size: 3.1% auto;
	background-position: right 3.0% center;
	padding: 0 7.5%;
	box-sizing: border-box;
	font-size: 100%;
	line-height: 1.875;
	letter-spacing: 0.05em;
	color: #333333;
	text-decoration: none;
	position: relative;
}
.pdf_btn a::before{
	content: '';
	background: url("images/common/pdf_ico.webp")no-repeat;
	background-size: 100% auto;
	width: 3.3%;
	height: auto;
	aspect-ratio: 33 / 40;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 2.0%;
	z-index: 1;
}

.external_link_btn, .is-style-external_link_btn{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

.external_link_btn a, .is-style-external_link_btn a{
	display: flex;
	align-items: center;
	width: 100%;
	height: 80px;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	background-color: #fff;
	background-image: url("images/common/ex_ico.webp");
	background-repeat: no-repeat;
	background-size: 3.1% auto;
	background-position: right 3.0% center;
	padding: 0 7.5%;
	box-sizing: border-box;
	font-size: 100%;
	line-height: 1.875;
	letter-spacing: 0.05em;
	color: #333333;
	position: relative;
}

.external_link_btn a:hover, .is-style-external_link_btn a:hover{
	text-decoration: underline;
}

.external_link_btn a::before, .is-style-external_link_btn a::before{
	content: '';
	background: #6bbf97;
	width: 1.7%;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 2.8%;
}


/*===================================
	pager
=====================================*/

section .pager {
	border-top: 3px solid #e1e1e1;
}
section.archive .pager {
    margin: 70px auto 0;
}
section.single .pager {
    margin: 110px auto 0;
}

section .pager .wp-pagenavi {
    width: calc(100% - 100px);
	margin: 0 auto;
	padding: 45px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 15px;
    position: relative;
}
section .pager .wp-pagenavi a{
	text-decoration: none;
}
section .pager .wp-pagenavi a.page, section .pager .wp-pagenavi span{
	width: 49px;
	height: 49px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "BIZ UDPGothic", sans-serif;
	font-weight: 700;
	font-size: 156.3%; /*25*/
	border-radius: 30px;
	background-color: #fffbee;
	color: #876239;
}
section .pager .wp-pagenavi span.current {
    background-color: #876239;
    color: #fff;
}
section .pager .wp-pagenavi a.previouspostslink, section .pager .wp-pagenavi a.nextpostslink {
    position: absolute;
    top: 40px;
    font-size: 112.50%; /*18*/
    font-weight: 500;
    display: flex;
	flex-direction: column;
	align-items: center;
    gap: 13px 0;
	font-size: 112.50%;/*18*/
	color: #000;
	letter-spacing: 0.1em;
}
section .pager .wp-pagenavi a.previouspostslink {
    left: 0;
}
section .pager .wp-pagenavi a.nextpostslink {
    right: 0;
}
section .pager .wp-pagenavi a.previouspostslink::before, section .pager .wp-pagenavi a.nextpostslink::before{
    content: '';
    display: block;
    background: url("./images/common/arrow_pager.svg") 0 center / contain no-repeat;
    width: 60px;
    height: auto;
    aspect-ratio: 1 / 1;
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.15));
}
section .pager .wp-pagenavi a.nextpostslink::before {
	transform: scale(-1, 1);
}

section .pager .wp-pagenavi a.toarchivelink{
	min-width: 250px;
	height: 75px;
	border: 3px solid #f28e1e;
	box-sizing: border-box;
	border-radius: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 112.50%; /*18*/
	background-color: #fff;
	color: #333;
	letter-spacing: 0.1em;
	position: relative;
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.15));
}
section .pager .wp-pagenavi a.toarchivelink::before{
    content: '';
    display: block;
    background: url("./images/common/archivelink_ico.svg") 0 center / contain no-repeat;
    width: 36px;
    height: auto;
    aspect-ratio: 1 / 1;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 15px;
}
section .pager .wp-pagenavi a.toarchivelink:hover{
	background-color: #f28e1e;
	color: #fff;
	opacity: 1.0;
}
section .pager .wp-pagenavi a.toarchivelink:hover::before{
    background: url("./images/common/archivelink_ico_h.svg") 0 center / contain no-repeat;
}

/*===================================
	nav.page_sub_menu
=====================================*/

nav.page_sub_menu{
	position: relative;
}

nav.page_sub_menu::before{
	content: '';
	background: #fffbee;
	width: 100%;
	height: 132px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	z-index: -1;
}

nav.page_sub_menu .nav-inner{
	width: 100%;
	max-width: 1050px;
	padding: 0 25px;
	box-sizing: border-box;
	margin: 0 auto;
}

nav.page_sub_menu .nav-inner ul.sub_menu_list{
	width: 100%;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px 3.0%;
	position: relative;
}


/* ── 上の装飾 ── */
nav.page_sub_menu .nav-inner ul.sub_menu_list::before {
    content: '';
    position: absolute;
    
    /* 天辺から11px下に配置 */
    top: 11px; 
    left: 50%;
    width: 100vw;
    height: 68px; /* 円の直径 */
    transform: translateX(-50%);
    z-index: -1;

    background-image: radial-gradient(#fffbee 70%, transparent 71%);
    background-size: 68px 68px;
    background-repeat: repeat-x;
    background-position: center top;
}

/* ── 下の装飾 ── */
nav.page_sub_menu .nav-inner ul.sub_menu_list::after {
    content: '';
    position: absolute;
    
    /* 底辺から7px上に配置 */
    bottom: 7px; 
    left: 50%;
    width: 100vw;
    height: 68px; /* 円の直径 */
    transform: translateX(-50%);
    z-index: -1;

    background-image: radial-gradient(#fffbee 70%, transparent 71%);
    background-size: 68px 68px;
    background-repeat: repeat-x;
    background-position: center top; 
}


nav.page_sub_menu .nav-inner ul.sub_menu_list li{
	width: 38.0%;/*380*/
}

nav.page_sub_menu .nav-inner ul.sub_menu_list li a{
	display: flex;
	align-items: center;
	width: 100%;
	height: 110px;
	border-radius: 20px;
	background: #fff;
	background-image: url("images/common/link_ico_col03.svg");
	background-repeat: no-repeat;
	background-size: 7.89% auto;/*30*/
	background-position: right 7.11% center;/*27*/
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	font-size: 112.5%;/*18*/
	line-height: 1.39;
	color: #333333;
	text-decoration: none;
	padding-left: 32.11%;/*122*/
	box-sizing: border-box;
	position: relative;
}

nav.page_sub_menu .nav-inner ul.sub_menu_list li a::before{
	content: '';
	background: url("images/common/sub_menu_ico08.svg")no-repeat;
	background-size: 100% auto;
	width: 20.26%;/*77*/
	height: auto;
	aspect-ratio: 1 / 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 5.53%;/*21*/
	z-index: 1;
}

nav.page_sub_menu .nav-inner ul.sub_menu_list li:nth-child(2) a::before{
	background: url("images/common/sub_menu_ico09.svg")no-repeat;
	background-size: 100% auto;
}

nav.page_sub_menu .nav-inner ul.sub_menu_list li:nth-child(3) a::before{
	background: url("images/common/sub_menu_ico10.svg")no-repeat;
	background-size: 100% auto;
}

nav.page_sub_menu .nav-inner ul.sub_menu_list li:nth-child(4) a::before{
	background: url("images/common/sub_menu_ico11.svg")no-repeat;
	background-size: 100% auto;
}

nav.page_sub_menu .nav-inner ul.sub_menu_list li a::after{
	content: '';
	border: 3px solid #f28e1e;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	box-sizing: border-box;
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
/* ★追加：最初は透明にする */
	opacity: 0;
	/* ★追加：0.3秒かけてふんわり変化させる設定（時間は好みで調整してください） */
	transition: opacity 0.3s ease;
}

nav.page_sub_menu .nav-inner ul.sub_menu_list li a:hover,
nav.page_sub_menu .nav-inner ul.sub_menu_list li a:focus-within{
	opacity: 1;
}

nav.page_sub_menu .nav-inner ul.sub_menu_list li a:hover::after,
nav.page_sub_menu .nav-inner ul.sub_menu_list li a:focus-within::after{
	opacity: 1;
}


/**/
	#list_refer{
		background: #FFFBEE;
		    margin-bottom: 10.31em;
	}
	#list_refer .sec-inner{
		   max-width: 1200px;
		height: 8.25em;
	}
	#list_refer ul{
		   display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1.875em;
		    transform: translateY(max(-4.39vw,-65px));}
		
	#list_refer ul li a{
	
        display: flex;
        align-items: center;
        width: 100%;
           height: 6.11em;
        border-radius: 1.33em;
        background: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
        font-size: 1.125em;
        line-height: 1.39;
        color: #333333;
        text-decoration: none;
        box-sizing: border-box;
        position: relative;
	
	font-weight: bold;
		padding-inline: 1.33em 1.5em;
		font-family: "Noto Sans JP", sans-serif;
	border:3px solid #fff;
	}

#list_refer ul li a:hover{
	opacity: 1;
	border:3px solid #36998f;
	
	
}
	
#list_refer ul li a span.icon {
  content: "";
  display: block;
  width: 3.61em;
  height: 3.28em;
  margin-right: 1.94em;

  background-size: 110% auto;
  background-position: center center;
  background-repeat: no-repeat;
}

#list_refer ul li a span.text {
  display: block;
}

#list_refer ul li a span.text .break {
  display: block;
}

#list_refer ul li a span.text .break .break {
  display: inline-block;
}

#list_refer ul li a[href*="inspection/"] span.icon {
  background-image: url("../images/common/sub_menu_ico01.svg");
}

#list_refer ul li a[href*="inspection/"] span.text {
  width: 8.33em;
}

#list_refer ul li a[href*="db/"] span.icon {
  background-image: url("../images/common/sub_menu_ico02.svg");
}

#list_refer ul li a[href*="db/"] span.text {
  width: 6em;
}

#list_refer ul li a[href*="system/"] span.icon {
  background-image: url("../images/common/sub_menu_ico03.svg");
}

#list_refer ul li a[href*="type/"] span.icon {
  background-image: url("../images/common/sub_menu_ico04.svg");
}

#list_refer ul li a[href*="tool/"] span.icon {
  background-image: url("../images/common/sub_menu_ico05.svg");
}


	#list_refer ul li a span.arrow{
		content: "";
		display: block;
        background-image: url("../images/common/link_ico_col01.svg");
        background-repeat: no-repeat;
		    background-size: auto;
		width: 1.67em;
		height: 1.67em;
		margin-left: auto;
		
	}


/*===================================
	#fixed_menu_wrap
=====================================*/

/* 固定メニュー全体の囲み（画面の右端に固定） */
#fixed_menu_wrap {
	position: fixed;
	right: calc(100vw - 100%);
	top: 275px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 15px 0;
	align-items: flex-end;       /* 常に右詰めに揃える */
}

/* 検索窓全体のエリア */
#fixed_menu_wrap .search_wrap {
	position: relative;
	display: inline-flex;
	justify-content: flex-end;
	width: 96px;
	height: 135px;
}

/* ★【起点】サイト内検索ボタン */
#fixed_menu_wrap .search_wrap #search-toggle-btn {
	width: 96px;
	height: 135px;
	background-image: url("images/top/top_search_ico.webp");
	background-repeat: no-repeat;
	background-position: center top 9px;
	background-size: 73.96% auto;
	border: none;
	background-color: transparent;
	cursor: pointer;
	position: absolute;
	top: 3px;
	right: 0px;
	z-index: 3;                  /* フォームのパーツより常に前面 */
	
	/* 下のテキスト設定 */
	font-size: 100%;
	line-height: 1.25;
	letter-spacing: 0.05em;
	color: #000000;
	text-align: center;
	padding-top: 76px;
	white-space: nowrap;
	box-sizing: border-box;

	/* ボタン自体がスライドするためのアニメーション設定 */
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateX(0);
}

/* ★開いたとき、トグルボタンを左側に移動させる距離
   デザイン通りのフォーム幅（254px）の分だけ、ぴったり左へスライド */
#fixed_menu_wrap .search_wrap #search-toggle-btn[aria-expanded="true"] {
	transform: translateX(-280px); 
}


/* ★外側のベース（初期状態は閉じた状態の四角、開くとカプセルに伸びる） */
#fixed_menu_wrap .search_wrap .form_area {
	position: absolute;
	right: 0;
	top: 0;
	height: 135px;
	width: 96px;                 /* 初期状態：閉じたときのベースの横幅 */
	overflow: hidden;            /* 閉じている時は、右側にはみ出させたフォームを隠す */
	visibility: visible;
	
	transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-radius 0.4s ease;
	
	background: #ffffff;
	border: 4px solid #9fc1bd;   /* くすんだグリーンのフチ線 */
	border-right: none;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;

	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
	z-index: 2;
}

/* ★クリックされて開いた状態の全体の横幅
   [左フチ4px] + [フォーム中身254px] + [トグルボタン96px] = 354px */
#fixed_menu_wrap .search_wrap .form_area.is-open {
	width: 377px;
}


/* ★フォームの中身（デザイン通りのサイズに完全固定） */
#fixed_menu_wrap .search_wrap .form_area form {
	position: absolute;
	/* ★修正：起点を right から「left: 96px」にします。
	   こうすることで、閉じている時はフォーム全体がトグルボタンの右側（画面の外側）に
	   綺麗にはみ出すため、ボタンの裏に透けて見えるバグが絶対に起きません。 */
	left: 96px;
	top: 0;
	width: 254px;                /* デザイン通りの 254px */
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0;
	box-sizing: border-box;
	gap: 0 7px;                  /* 入力欄と青ボタンの隙間（7px） */
	
	/* ★AA要件：閉じている時は隠す */
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.4s, opacity 0.2s;
}

/* 開いた時はフォームの中身を表示 */
#fixed_menu_wrap .search_wrap .form_area.is-open form {
	visibility: visible;
	opacity: 1;
	transition: visibility 0.4s, opacity 0.3s 0.1s;
}


/* ★キーワード入力欄（サイズを完全固定） */
#fixed_menu_wrap .search_wrap .form_area #s-box {
	-webkit-appearance: none;
	width: 180px;                /* ★ユーザー様指定：180pxに完全固定 */
	flex-shrink: 0;              /* 絶対に縮ませない */
	height: 44px;
	padding: 0 15px;
	border: 1px solid #9bb5c1;
	background-color: #f6f6f6;
	border-radius: 6px;
	font-size: 15px;
	color: #333;
	outline: none;
	box-sizing: border-box;
}

/* フォーム内にある、実際の青い「検索」実行ボタン（サイズを完全固定） */
#fixed_menu_wrap .search_wrap .form_area #s-btn-area {
	width: 67px;                 /* 67pxに完全固定 */
	height: 42px;
	flex-shrink: 0;              /* 絶対に縮ませない */
	background-color: #4587af;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s;
}

#fixed_menu_wrap .search_wrap .form_area #s-btn-area:hover {
	background-color: #3b6f94;
}

#fixed_menu_wrap .search_wrap .form_area #s-btn-area p {
	color: #ffffff;
	font-size: 106.25%;
	line-height: 1;
	letter-spacing: 0.2em;
	margin: 0;
}

/**/

#fixed_menu_wrap .contact_btn{
	width: 96px;
}

#fixed_menu_wrap .contact_btn a{
	display: flex;
	justify-content: center;
	align-items: flex-end;
	width: 100%;
	height: 135px;
	border: 4px solid #f28e1e;
	border-right: none;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	padding-bottom: 21px;
	box-sizing: border-box;
	background-image: url("images/top/top_contact_ico.webp");
	background-repeat: no-repeat;
	background-position: center top 15px;
	background-size: 73.96% auto;/*71*/
	background-color: #fff;
	font-size: 100%;
	line-height: 1.25;
	letter-spacing: 0.05em;
	color: #000000;
	text-decoration: none;
	box-shadow: 0 0 10px rgba(139, 69, 19, 0.15);
}



.grecaptcha-badge {
    bottom: 125px !important; /* デフォルトより上に移動 */
}


