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

@media (max-width: 700px) {
html{
	scroll-behavior: smooth;
}
[id] {
  scroll-margin-top: 100px; /* ヘッダー分のズレ調整を一括管理 */
}
body{
	font-family: 'Noto Sans JP', sans-serif;
    margin: 0px;
    padding: 0px;
    line-height: 1;
    color:#000000;
	height: 100%;
}
img{
max-width: 100%;
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_inner {
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-repeat: no-repeat;
}
#head_logo{
    width: 128px;
    min-width: 128px;
}
#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: 80px;
    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: 40px;
    padding-right: 40px;
    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;
    justify-content: space-around;
    margin-bottom: 0px;
    flex-wrap: wrap;
}
#sp_menu_btn .btn_link {
    display: block;
    width: 94.61%;
    margin-bottom: 24px;
    margin-right: auto;
}
#sp_menu_btn .btn_link._yellow {
    margin-right: auto;
}
#sp_menu_btn .btn_link a {
    padding-left: 16px;
    padding-right: 16px;
}






/* メニューが開いた時 */
#sp_menu.active {
  opacity: 1;
  visibility: visible;
}
/* メニューリスト */
.sp_menu_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* メニューアイテム */
.sp_item > a {
    display: flex;
    justify-content: space-between; /* アイテムとアイコンの間にスペースを確保 */
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    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 center;
    background-size: 32px 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: 16px;
	line-height: 1em;
	font-weight: 500;
	    display: inline-block;
	box-sizing: border-box;
}
.btn_link a{
	display: block;
	padding: 16px 32px;
	position: relative;
	box-sizing: border-box;
}
.btn_link a::before{
	position: absolute;
    content: "";
    background-image: url("../images/arrow.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 2;
	box-sizing: border-box;
}
	.btn_link.sp_center a::before{
    background-position: right center;
}
	.btn_link.sp_center{
		display: inherit;
        width: 73.07%;
        min-width: inherit;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
		box-sizing: border-box;
	}
.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._green{
	background-color: #8bc25f;
}
.btn_link._yellow{
	background-color: #efbf32;
}
.btn_link._center{
	display: block;
	width: 73.07%;
        min-width: inherit;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
		box-sizing: border-box;
}
.font_green{
	color: #78b844;
}
.h2_h2{
	text-align: center;
}
.h2h2_abc{
  font-style: normal;
	color: #78b844;
	margin-bottom: 10px;
	font-weight: 600;
	line-height: 1em;
	font-size: 19px;
}
.h2h2_ja{
	font-size: 24px;
    line-height: 1.4em;
    font-weight: 600;
	letter-spacing: .048em;
}
.vertical-line {
    position: relative;
}
.vertical-line::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 56px;
    top: -28px;
    left: 50%;
    background-color: #000000;
}
	.inline-b{
		display: inline-block;
	}

/*以下、フッター*/
    footer {
		margin-top: 24px;
        padding-top:32px;
		background-image: url(../images/foot_illust.svg);
    background-repeat: no-repeat;
    background-position: right 6.15% top;
		background-size: 22.3% auto;
    }
#foot_contact{
	padding-top: 40px;
	padding-bottom: 11.53%;
	background-size: 0;
}
#foot_contact_l{
	width: 100%;
	min-width: inherit;
	margin-right: auto;
}
footer h2{
	border-left: 1px solid #78b844;
    padding-left: 20px;
        font-size: 24px;
    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: 20px;
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	        justify-content: center;
}
#foot_contact_btn-name .btn_link{
	margin-right: 0
}
#foot_contact_name{
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 100%;
	margin-top: 16px;
}
#foot_contact_logo{
	width: 104px;
    min-width: 104px;
	margin-right: 16px;
	box-sizing: border-box;
}
#foot_contact_logo img{
	width: 100%;
	box-sizing: border-box;
}
#foot_contact_name p{
	border: 1px solid #000000;
    font-size: 17px;
    line-height: 1em;
    font-weight: 500;
    background-color: #f2f8ed;
    letter-spacing: .08em;
    padding: 6px 12px;
    padding-bottom: 8px;
	box-sizing: border-box;
}
#allright{
	color: #FFFFFF;
	font-size: 12px;
	line-height: 1em;
	font-weight: 400;
	background-color: #000000;
	padding: 8px;
	text-align: center;
	box-sizing: border-box;
}
/*	フッターここまで*/
	
	.br_sp{
		display: inherit;
	}
	.br_pc{
		display: none;
	}
	.pc_only{
	display: none;
}
.sp_only{
	display: inherit;
}
	.pagetitle_en {
    letter-spacing: .0048em;
    font-family: "Roboto", sans-serif;
    color: #78b844;
    font-weight: 600;
    line-height: 1em;
    font-size: 21px;
    margin-bottom: 10px;
}
	.pagetitle_ja {
    letter-spacing: .056em;
    font-weight: 600;
    font-size: 28px;
    line-height: 1em;
}
	#pagetitle_wrap {
    margin-top: 84px;
    margin-bottom: 40px;
}
	#pagetitle_wrap hgroup {
    border-left: 3px solid #78b844;
    padding-top: 2px;
    padding-bottom: 4px;
    padding-left: 32px;
}
}
