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

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html{
	scroll-behavior: smooth;
}
[id] {
  scroll-margin-top: 100px; /* ヘッダー分のズレ調整を一括管理 */
}
body{
	font-family: 'Noto Sans JP', sans-serif;
    margin: 0px;
    padding: 0px;
}


img {
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
	height: auto;
}




h1,h2,h3,h4,h5,h6,p,ul {
margin-top: 0px;
margin-right: 0px;
margin-left: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-right: 0px;
padding-left: 0px;
padding-bottom: 0px;
line-height:1;
}
ul {
list-style-type: none;
	margin: 0;
	padding: 0;
}
.cl {
clear: both;
}
a {
	text-decoration: none;
color: inherit;
}
a:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha( opacity=70 )";
    -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;
}
header {
    width: 100%;
    position: fixed;
    z-index: 1000;
    top: 0px;
    left: 0px;
    transition: background-color 0.3s 
ease;
    background-color: hsla(0,0%,100%,0.72);
}


header.scrolled {
    background-color: hsla(0,0%,100%,0.86);
    color: #002236;
    box-shadow: 0 6px 16px hsla(0,0%,40%,0.08);
}


#header_inner {
    padding-bottom: 16px;
    box-sizing: border-box;
    padding-right: 32px;
    padding-left: 32px;
    padding-top: 16px;
    display: flex;
	align-items: center;
    justify-content: space-between;
    background-repeat: no-repeat;
}
#head_logo{
    width: 144px;
    min-width: 144px;
}
#head_logo a{
    display: block;
}
#head_logo img{
	width: 100%;
}


/* ハンバーガーアイコン */

#hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
/*    gap: 11px;*/
    width: 40px;
    height: 31px;
    cursor: pointer;
    z-index: 1001;
}
#hamburger span {
    display: block;
    width: 100%;
    height: 2px; /* 実際は2px */
    background-color: #396F2E;
    border-radius: 1px;
    transform: scaleY(0.7); /* 実質 1.7pxくらいに見える */
    transform-origin: center;
    transition: all 0.3s ease;
}

/* ハンバーガー開閉時のアニメーション */
#hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 14px);
	background-color: #fff;
}
#hamburger.active span:nth-child(2) {
  opacity: 0;
}
#hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -10px);background-color: #fff;
}



/* SPメニュー全体 */
#sp_menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: hsla(0,0%,29%,0.88);
    padding-top: 96px;
    padding-bottom: 80px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 80px;
    padding-right: 80px;
    overflow-y: scroll;  /* 常に縦スクロールバーを表示 */
    background-image: url(../images/logo_mark_wht.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 50% auto;
    z-index: 1000;
}
#sp_menu_btn {
    display: flex;
    /* [disabled]justify-content: space-around; */
    margin-bottom: 24px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
#sp_menu_btn .btn_link {
    font-size: 17px;
}

#sp_menu_btn .btn_link._yellow {
    margin-right: 56px;
}



/* メニューが開いた時 */
#sp_menu.active {
  opacity: 1;
  visibility: visible;
}
/* メニューリスト */
.sp_menu_list {
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    max-width: 960px;
}

/* メニューアイテム */
.sp_item {
    color: #fff;
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 0.1em solid #C4C4C4;
}

/* メニューアイテム */
.sp_item > a {
    display: flex;
    justify-content: space-between; /* アイテムとアイコンの間にスペースを確保 */
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding-top: 20px;
    padding-bottom: 20px;
    transition: background-color 0.3s ease;
    width: 100%;  /* 親要素いっぱいに広がらないように */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
/*    border-bottom: 0.1em solid #C4C4C4;*/
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 48px auto;
    padding-right: 16px;
    background-image: url(../images/arrow_wht.svg);
}

.sp_item > a:hover {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.sp_item.has-accordion > a {
	background-image: none;
}

/* アコーディオンアイコン（+ と -） */
.sp_item > a .accordion-toggle {
    font-size: 20px;
    display: inline-block;
    position: relative;
    width: 20px;  /* アイコンの幅 */
    height: 20px;  /* アイコンの高さ */
    margin-left: 10px; /* アイコンとテキストの間にスペース */
    transition: transform 0.3s ease;
}

/* 直線の縦線（+） */
.sp_item > a .accordion-toggle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 9px;  /* 横にセンタリング */
    width: 2px;  /* 縦線の太さ */
    height: 100%;
    transition: transform 0.3s ease;  /* 回転時のトランジション */
    background-color: #FFFFFF;
}

/* 直線の横線（+） */
.sp_item > a .accordion-toggle::after {
    content: "";
    position: absolute;
    top: 9px;  /* 横にセンタリング */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
}

/* 開いた状態で「-」にする（縦線を回転） */
.sp_item > a .accordion-toggle.open::before {
  transform: rotate(90deg);  /* 縦線を45度回転 */
}

/* 閉じた状態で「+」に戻る（回転なし） */
.sp_item > a .accordion-toggle:not(.open)::before {
  transform: rotate(0);  /* 縦線は回転しない */
}

/* 子メニュー */
.sp_submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 8px;
}

.sp_submenu.open {
  max-height: 500px;
}

.sp_submenu li {
  padding: 5px 0;
}

.sp_submenu li a {
    font-size: 16px;
    text-decoration: none;
    padding-top: 12px;
    padding-right: 10px;
    padding-left: 16px;
    padding-bottom: 12px;
    transition: background-color 0.3s ease;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    font-weight: 500;
    background-image: url(../images/arrow_wht_s.svg);
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 26px auto;
    background-color: #8A8A8A;
}
/*ヘッダーここまで*/


.content_wrap{
	max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 6.15%;
    padding-right: 6.15%;
}
.btn_link{
	font-size: 18px;
	line-height: 1em;
	font-weight: 500;
	    display: inline-block;
}
.btn_link a{
	display: block;
	padding: 20px 48px;
	position: relative;
}
.btn_link a::before{
	position: absolute;
    content: "";
    background-image: url("../images/arrow.svg");
    background-repeat: no-repeat;
    background-position: center center;  /* right center → center center に変更 */
    background-size: contain;  /* 24px auto → contain に変更 */
    top: 50%;
    right: -24px;  /* left: 0% → right: 20px に変更（ボタンの右側に配置） */
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 56px;
    height: 40px;  /* 1px → 24px に変更 */
    z-index: 2;
}
.btn_link a::after{
	position: absolute;
    content: "";
    top: 4.8px;
    left: 4.8px;
    width: 100%;
    height: 100%;
    border: 1px solid #000000; /* 色は適宜変更 */
    box-sizing: border-box;
    z-index: 1;
}
.btn_link .border_wht::before{
    background-image: url("../images/arrow_wht.svg");
}
.btn_link .border_wht::after {
	border: 1px solid #fff; /* 色は適宜変更 */
}

.btn_link._green{
	background-color: #8bc25f;
}
.btn_link._yellow{
	background-color: #efbf32;
}
.btn_link._center{
	display: block;
	width: 33.07%;
	    min-width: 274px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}
.font_green{
	color: #78b844;
}
.h2_h2{
	text-align: center;
}
.h2h2_abc{
	font-family: "Roboto", sans-serif;
  font-style: normal;
	color: #78b844;
	margin-bottom: 10px;
	font-weight: 600;
	line-height: 1em;
	font-size: 24px;
}
.h2h2_ja{
	font-size: 30px;
    line-height: 1.6em;
    font-weight: 600;
	letter-spacing: .048em;
}
.vertical-line {
    position: relative;
}
.vertical-line::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 88px;
    top: -44px;
    left: 50%;
    background-color: #000000;
}

/*以下、フッター*/
footer{
	margin-top: 6.92%;
}
#foot_contact{
	padding-top: 3.07%;
	padding-bottom: 9.23%;
	background-image:url("../images/foot_illust.svg");
	background-repeat: no-repeat;
	background-position: right top;
	background-size: 20%;
}
#foot_contact_l{
	width: 73.07%;
	min-width: 682px;
	margin-right: auto;
}
footer h2{
	border-left: 1px solid #78b844;
    padding-left: 32px;
    font-size: 30px;
    line-height: 1.6em;
    font-weight: 600;
    letter-spacing: .048em;
}
footer p{
	font-size: 16px;
	line-height: 1.8em;
	font-weight: 500;
}
#foot_contact_btn-name{
	margin-top: 4.61%;
	display: flex;
}
#foot_contact_btn-name .btn_link{
	margin-right: 48px;
}
#foot_contact_name{
	display: flex;
	align-items: center;
}
#foot_contact_logo{
	width: 168px;
    min-width: 168px;
	margin-right: 16px;
}
#foot_contact_logo img{
	width: 100%;
}
#foot_contact_name p{
	border: 1px solid #000000;
    font-size: 22px;
    line-height: 1em;
    font-weight: 500;
    background-color: #f2f8ed;
    letter-spacing: .08em;
    padding: 8px 14px;
    padding-bottom: 8px;
}
#allright{
	color: #FFFFFF;
	font-size: 13px;
	line-height: 1em;
	font-weight: 400;
	background-color: #000000;
	padding: 10px;
	text-align: center;
}
.br_sp{
	display: none;
}
.br_pc{
		display: inherit;
	}
.sp_center{
	display: none;
}
.pc_only{
	display: inherit;
}
.sp_only{
	display: none;
}

/*以下、下層ページ*/
#pagetitle_wrap{
    margin-top: 104px;
    margin-bottom: 56px;
}
#pagetitle_wrap .content_wrap {

}
#pagetitle_wrap hgroup{
	border-left: 4px solid #78b844;
	padding-top: 2px;
	padding-bottom: 3px;
    padding-left: 40px;
}
.pagetitle_en{
	letter-spacing: .0048em;
    font-family: "Roboto", sans-serif;
    color: #78b844;
   font-weight: 600;
    line-height: 1em;
    font-size: 26px;
	margin-bottom: 16px;
}
.pagetitle_ja {
    letter-spacing: .056em;
    font-weight: 600;
    font-size: 40px;
    line-height: 1em;
}
.inline-b{
	display: inline-block;
}
.marker_green{
background:linear-gradient(transparent 66.92%, #8bc25f 0%);
}
.marker_yellow{
background:linear-gradient(transparent 66.92%, #efbf32 0%);
}
.bg_green{
	background-color: #8bc25f;
}
.bg_yellow{
	    background-color: #efbf32;
}