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

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

@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;
    }  
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: min(1.08vw, 1.6rem);
	-webkit-text-size-adjust: 100%;
	/*-webkit-text-size-adjust: none;*/
	line-height: 1.5;
	color: #000000;
	overflow: hidden;
}

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

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

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

.audiowide-regular {
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.jura {
  font-family: "Jura", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

*{
	margin: 0;
	padding: 0;
    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 {
	outline: none;
	color: #000000;
	text-decoration:none;	
	opacity: 1;
    transition: all 0.5s;
}

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

a.disabled{
    pointer-events: none;
}

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;
}

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

/* ホバーアクション */

.hvr-sweep-to-right{
	position: relative;
}

.hvr-sweep-to-right:hover::after, .hvr-sweep-to-right:focus::after, .hvr-sweep-to-right:active::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.hvr-sweep-to-right::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #61c1be;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}


.down-to-top02 {
	opacity: 0;
	transform: translateY(100px);
	transition: all 1s;
}

.down-to-top02.scrollin {
	opacity: 1;
	transform: translateY(0);
}

/* 下から */

.fadeUpTrigger{
	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);
  }
}

/* fadeIn Animation
---------------------------------------------------------- */
.list-mv {
	/*overflow: hidden;*/
	position: relative;
}

.list-mv01 {
	opacity: 0;
	-webkit-transition: 0.6s ease-out;
	transition: 0.6s ease-out;
	-webkit-transition-delay: 160ms;
	transition-delay: 160ms;
	-webkit-transform: translate(0, 24px);
	transform: translate(0, 24px);
}

.mv01 {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

.list-mv02 {
	opacity: 0;
	-webkit-transition: 0.8s;
	transition: 0.8s;
}

.mv02 {
	opacity: 1;
}

.list-mv03 {
	opacity: 0;
	-webkit-transition: 0.6s ease-out;
	transition: 0.6s ease-out;
	-webkit-transition-delay: 240ms;
	transition-delay: 240ms;
	-webkit-transform: scale3d(1.2, 1.2, 1);
	transform: scale3d(1.2, 1.2, 1);
}

.mv03 {
	opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

.list-mv04 {
	opacity: 0;
	-webkit-transition: 0.6s ease-out;
	transition: 0.6s ease-out;
	-webkit-transition-delay: 160ms;
	transition-delay: 160ms;
	-webkit-transform: translate(-24px, 0);
	transform: translate(-24px, 0);
}

.mv04 {
	opacity: 1;
	-webkit-transform: translate(0, 0) rotate(0deg);
	transform: translate(0, 0) rotate(0deg);
}

/* !wrapper
---------------------------------------------------------- */
#wrapper {
	position: relative;
	min-height: 100vh;
	width: 100%;
	-webkit-font-feature-settings: "pkna";
	font-feature-settings: "pkna";
	font-kerning: normal;
	overflow-x: hidden;
}

/* header
---------------------------------------------------------- */
#header {
/*	background: rgba(51,51,51,0.15);*/
	position: absolute;
	top: 0;
	z-index: 10;
	width: 100%;
}

#headerlogo {
	width: 27.0945%;/*401*/
	max-width: 401px;
	height: auto;
	aspect-ratio: 401 / 185;
}

#headerlogo img{
	width: 100%;
	height: auto;
}

a.logo-link {
	display: block;
	opacity: 1;
}

a:hover.logo-link {
	opacity: 0.6;
}

/* OVERLAY-navi
---------------------------------------------------------- */
.menu-btn {
	position: fixed;
	top: 40px;
	right: 2.5675%;/*38*/
	z-index: 9997;
	display: block;
	width: 7.4324%;/*110*/
	max-width: 110px;
	min-width: 80px;
	height: auto;
	aspect-ratio: 1 / 1;
}

.bar {
	position: absolute;
	left: 50%;
	display: block;
	width: 40.9090%;/*45*/
	height: 2px;
	background-color: #fff;
	transform: translateX(-50%);
}
.bar_top {
	top: 27%;
	transform: translate(-50%, -50%);
}
.bar_mid {
	top: 42%;
	transform: translate(-50%, -50%);
}
.bar_bottom {
	top: 55%;
	transform: translate(-50%, -50%);
}

.btn-close .bar_top {
	transition: transform 0.3s;
	margin-top: 13.5%;
	transform: translate(-50%, -50%) rotate(45deg);
/*	transform: translate(-50%, 13px) rotate(45deg);*/
}

.btn-close .bar_mid {
	opacity: 0;
	transition: opacity 0.3s;
}
.btn-close .bar_bottom {
	transition: transform 0.3s;
	margin-top: -13.5%;
	transform: translate(-50%, -50%) rotate(-45deg);
/*	transform: translate(-50%, -18px) rotate(-45deg);*/
}

.btn-open,
.btn-close {
	position: relative;
	height: 100%;
	border: solid 2px #fff;
	border-radius: 50%;
	cursor: pointer;
	background: #61c1be;
	box-shadow: 0 0 5px 1px rgba(12, 76, 70, 0.35);
	transition: all 0.5s;
}

.btn-open:hover,
.btn-close:hover {
	opacity: 0.6;
}

.btn-open:after,
.btn-close:after {
	width: 100%;
	font-size: min(1.08vw, 1.6rem);
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	position: absolute;
	bottom: 18.1818%;/*20*/
	left: 50%;
	transform: translateX(-50%);

}

.btn-open:after {
	content: "MENU";
}

.btn-close:after {
	content: "とじる";
}

.btn-open::before {
	content: '';
	width: 129.0909%;/*142*/
	height: auto;
	aspect-ratio: 1 / 1;
	border: solid 2px #fff;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* OVERLAY */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9996;
	display: none;
	overflow: auto;
	width: 100%;
	height: 100vh;
	background: rgba(26, 26, 26, 0.4);
	-webkit-backdrop-filter: blur(1px);
	backdrop-filter: blur(1px);
	overflow-y: scroll;
	-ms-overflow-style: none; /* IE, Edge 対応 */
	scrollbar-width: none;
}

.overlay::-webkit-scrollbar {
	display: none;
}


.slidein-nav {
	width: 50.0%;/*740*/
/*	max-width: 740px;*/
	min-height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	right: 0;
	transition: 0.3s;
	transform: translateX(100%);
}

.slidein-nav::before{
	content: '';
	background: url("images/common/menu_parts_head.webp")no-repeat;
	background-size: cover;
	width: 19.1891%;/*142*/
	height: auto;
	aspect-ratio: 142 / 147;
	position: absolute;
	top: 24px;
	left: 18.5135%;/*137*/
	z-index: -1;
}

.slidein-nav::after{
	content: '';
	background: url("images/common/menu_parts_bottom.webp")no-repeat;
	background-size: cover;
	width: 19.8648%;/*147*/
	height: auto;
	aspect-ratio: 147 / 151;
	position: absolute;
	bottom: 54px;
	right: 6.0810%;/*45*/
	z-index: -1;
}

/* iPad 縦向きのみ */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
	.pc-nav-area {
		padding: 4em 0 2em;
	}

	.overlay .slidein-nav {
		align-items: flex-start;
	}
}

.slidein-nav.slide-in {
	transition: 0.32s;
	transform: translateX(0);
}

.nav-area {
	width: 80.4054%;/*595*/
	height: 100%;
	margin: 0 0 0 8.1081%;/*60*/
	padding: 18px 0 57px;
	position: relative;
}

.nav-area .menu-wrap{
	width: 100%;
	display: flex;
}

.nav-area .menu-wrap .menu-title{
	width: 29.5798%;/*176*/
	font-size: min(3.72vw, 5.5rem);
	line-height: 1;
	color: #61c1be;
	margin-top: 69px;
}

.nav-area .menu-wrap .nyukou_btn{
	width: 52.9411%;/*315*/
}

.nav-area .menu-wrap .nyukou_btn img{
	width: 100%;
	height: auto;
}

.nav-area ul.nav_list{
	width: 98.4873%;/*586*/
	margin: 0 auto;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.nav-area ul.nav_list.mtop-01{
	margin-top: 32px;
}

.nav-area ul.nav_list.mtop-02{
	margin-top: 22px;
}

.nav-area ul.nav_list li{
	width: 42.8327%;/*251*/
}

.nav-area ul.nav_list li:nth-child(even){
	width: 46.4163%;/*272*/
}

.nav-area ul.nav_list li.wide{
	width: 51.1945%;/*300*/
}

.nav-area ul.nav_list li:nth-child(n + 3){
	margin-top: 28px;
}
.nav-area ul.nav_list li a{
	display: flex;
	align-items: center;
	width: 100%;
	height: 35px;
	font-size: min(1.31vw, 1.942rem);
	line-height: 1;
	color: #333333;
	padding-left: 20px;
	box-sizing: border-box;
	background: url("images/common/menu_link_ico.svg")no-repeat right 5px center;
	background-size: 28px auto;
	position: relative;
}

.nav-area ul.nav_list li a::before{
	content: '';
	background: #61c1be;
	width: 5px;
	height: 26px;
	border-radius: 2px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

.nav-area ul.nav_list li a:hover{
	color: #fff;
	text-decoration: none;
	background: url("images/common/hov-menu_link_ico.svg")no-repeat right 5px center;
	background-size: 28px auto;
	opacity: 1;
}

.nav-area .sub_tit{
	display: flex;
	align-items: center;
	margin-top: 56px;
}

.nav-area .sub_tit p.tit_en{
	font-size: min(1.89vw, 2.8rem);
	line-height: 1;
	color: #35a59f;
}

.nav-area .sub_tit p.tit_jp{
	font-size: min(1.32vw, 1.949rem);
	line-height: 1;
	color: #35a59f;
	padding-left: 18px;
	box-sizing: border-box;
}

.nav-area .sns_area{
	width: 35.2941%;/*210*/
	margin: 10px 0 0 auto;
}

.nav-area .sns_area ul{
	list-style: none;
	display: flex;
	justify-content: space-between;
}

.nav-area .sns_area ul li{
	width: 27.6190%;/*58*/
}

.nav-area .sns_area ul li img{
	width: 100%;
	height: auto;
}


/* footer部分
---------------------------------------------------------- */


.conatct-sp-wrap {
	display: none;
}

#footer{
	margin-top: 100px;
	background: #61c1be;
	padding: 17px 0 0;
	position: relative;
}

#footer::before{
	content: '';
	background: url("images/common/foot_parts01.webp")no-repeat;
	background-size: cover;
	width: 100%;
	height: auto;
	aspect-ratio: 1480 / 101;
	position: absolute;
	top: 1px;
	left: 0;
	transform: translateY(-100%); /* ← 下端を footer の上端に合わせる */
	z-index: 1;
}

#footer .foot_inn{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

#footer .foot_inn .foot_head{
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

#footer .foot_inn .foot_head .foot_info{
	width: 74.2%;
	display: flex;
	align-items: flex-end;
}

#footer .foot_inn .foot_head .foot_info .logo{
	width: 29.9191%;/*222*/
	margin-right: 2.9649%;/*22*/
}

#footer .foot_inn .foot_head .foot_info .logo img{
	width: 100%;
	height: auto;
}

#footer .foot_inn .foot_head .foot_info .add{
	width: 58.6253%;/*435*/
}

#footer .foot_inn .foot_head .foot_info .add .lv1{
	font-size: min(1.28vw, 1.9rem);
}

#footer .foot_inn .foot_head .foot_info .add .lv1 a{
	color: #fff;
	text-decoration: none;
}

#footer .foot_inn .foot_head .foot_info .add .lv2{
	font-size: min(1.15vw, 1.7rem);
	line-height: 1.2741;
	color: #fff;
	margin-top: 12px;
}

#footer .foot_inn .foot_head .foot_info .add .lv2 a{
	color: #fff;
	text-decoration: none;
}

#footer .foot_inn .foot_head .foot_info .add .lv2 a.foot_tel{
	pointer-events: none;
}

#footer .foot_inn .foot_head .sns_area{
	width: 25.8%;
}

#footer .foot_inn .foot_head .sns_area ul{
	list-style: none;
	display: flex;
	justify-content: space-between;
}

#footer .foot_inn .foot_head .sns_area ul li{
	width: 27.5193%;/*71*/
}

#footer .foot_inn .foot_head .sns_area ul li img{
	width: 100%;
	height: auto;
}

#footer .foot_inn .foot_bottom{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 65px auto 50px;
}

#footer .foot_inn .foot_bottom .txt01{
	width: calc(100% - 82.5%);
	padding-left: 4.5%;
	box-sizing: border-box;
	font-size: min(1.22vw, 1.8rem);
	letter-spacing: 0.05em;
	color: #fff;
}

#footer .foot_inn .foot_bottom .foot_menu{
	width: 82.5%;
	list-style: none;
	display: flex;
	justify-content: space-between;
}

#footer .foot_inn .foot_bottom .foot_menu li{
	width: 32.0%;/*264*/
}

#footer .foot_inn .foot_bottom .foot_menu li a{
	display: block;
	width: 100%;
	line-height: 59px;
	border-radius: 8px;
	background: #fff;
	font-size: min(1.28vw, 1.9rem);
	color: #000;
	text-align: center;
	text-decoration: none;
	position: relative;
}

#footer .foot_inn .foot_bottom .foot_menu li a::before{
	content: '';
	background: url("images/common/foot_link_ico.svg")no-repeat;
	background-size: cover;
	width: 4.1666%;/*11*/
	height: auto;
	aspect-ratio: 1 / 1;
	position: absolute;
	top: 50%;
	right: 8.3333%;/*22*/
	transform: translateY(-50%);
}

/**/


#copyright{
	background: #fff;
	padding: 30px 0 37px;
	margin-bottom: 0;
}

#copyright p{
	font-size: min(1.08vw, 1.6rem);
	color: #61c1be;
	text-align: center;
}

/* ページ遷移
---------------------------------------------------------- */
.fade_group div,
.fade_group2 div {
	content: "";
	position: fixed;
	top: 0;
	left: -100vw;
	width: 100vw;
	height: 100%;
	pointer-events: none;
}
.fade_group div {
	z-index: 9999;
	transition: 0.6s;
}
.fade_group2 div {
	z-index: 9998;
	transition: 0.8s;
}
.fade_group div:nth-of-type(1) {
	background: rgba(97, 193, 190, 0.25);
}
.fade_group div:nth-of-type(2) {
	background: rgba(97, 193, 190, 0.5);
	transition-delay: 0.1s;
}
.fade_group div:nth-of-type(3) {
	background: rgba(97, 193, 190, 0.7);
	transition-delay: 0.2s;
}
.fade_group div:nth-of-type(4) {
	background: rgb(255, 255, 255);
	transition-delay: 0.3s;
}
.fade_group2 div:nth-of-type(1) {
	background: rgba(97, 193, 190, 0.8);
	transition-delay: 0.2s;
}
.fade_group2 div:nth-of-type(2) {
	background: rgba(97, 193, 190, 0.8);
	transition-delay: 0.3s;
}
body.fo .fade_group div {
	left: 0;
}
body.fo .fade_group2 div {
	left: 100vw;
}


/* 画面右バナー
---------------------------------------------------------- */
.right-banner-wrap {
	z-index: 5;
	position: fixed;
	top: 198px;
	right: clamp(0px, 1.8243%, 27px);
	width: 3.9864%;/*59*/
	max-width: 59px;
}

a.right-banner-link {
	display: inline-block;
	opacity: 1;
	width: 100%;
}

a.right-banner-link + a.right-banner-link{
	padding-top: 10px;
}

a.right-banner-link:hover {
	opacity: 0.6;
}

a.right-banner-link img{
	width: 100%;
	height: auto;
	filter: drop-shadow(0 0 2px rgba(12, 76, 70, 0.35));
}

/* back-to-top
---------------------------------------------------------- */

#back-to-top {
	z-index: 99;
	position: fixed;
	right: 0.7432%;/*11*/
	bottom: 25px;
	width: 6.0135%;/*89*/
	max-width: 89px;
	display: none;
}

a.back-to-btn {
	display: block;
	width: 100%;
	height: auto;
	color: #333;
	font-size: min(0.95vw, 1.4rem);
	text-align: center;
	text-decoration: none;
}

/*===================================
	.page-tit_wrap
=====================================*/

.page-tit_wrap{
	width: 100%;
	height: auto;
	max-height: 326px;
	aspect-ratio: 1480 / 326;
	position: relative;
}

.page-tit_wrap .page_img{
	width: 53.2432%;/*788*/
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.page-tit_wrap .page_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-tit_wrap::after{
	content: '';
	background: url("images/common/title_parts01.webp")no-repeat;
	background-position: left top;
	background-size: cover;
	width: 58.9864%;/*873*/
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

.page-tit_wrap .wrap_inner{
	width: 100%;
	max-width: 1150px;
	height: 100%;
	padding: 0 25px;
	box-sizing: border-box;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
	position: relative;
	z-index: 2;
}

.page-tit_wrap .wrap_inner .tit_area{
	width: 52.7272%;/*580*/
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 16px;
	box-sizing: border-box;
}

.page-tit_wrap .wrap_inner .tit_area .page_title{
	width: 82.7586%;/*480*/
	padding: 0 0 48px 3px;
	border-bottom: 2px solid #fff;
	box-sizing: border-box;
}

.page-tit_wrap .wrap_inner .tit_area .page_title p.en_tit{
	font-size: min(2.03vw, 3.0rem);
	line-height: 1;
	color: #fff;
}

.page-tit_wrap .wrap_inner .tit_area .page_title h1{
	padding-top: 52px;
	font-size: min(2.70vw, 4.0rem);
	line-height: 1;
	color: #fff;
}

.page-tit_wrap .wrap_inner .tit_area .bread_crumbs{
	margin-top: 37px;
}

.page-tit_wrap .wrap_inner .tit_area .bread_crumbs p{
	font-size: min(1.22vw, 1.8rem);
	line-height: 1;
	color: #fff;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.page-tit_wrap .wrap_inner .tit_area .bread_crumbs p a{
	font-size: min(1.01vw, 1.5rem);
	color: #fff;
}

.page-tit_wrap .wrap_inner .tit_area .bread_crumbs p span{
	font-size: min(1.01vw, 1.5rem);
	color: #fff;
	padding: 0 4px;
}

/**/

.page-tit_wrap02{
	width: 100%;
	height: auto;
	max-height: 240px;
	aspect-ratio: 1480 / 240;
	background: url("images/common/title_bg_news.webp");
	background-size: cover;
}

.page-tit_wrap02 .wrap_inner{
	width: 100%;
	max-width: 1150px;
	height: 100%;
	padding: 0 25px;
	box-sizing: border-box;
	margin: 0 auto;
	position: relative;
}

.page-tit_wrap02 .wrap_inner .tit_area{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 12px;
	box-sizing: border-box;
}

.page-tit_wrap02 .wrap_inner .tit_area .page_title{
	width: 43.6363%;/*480*/
	margin: 0 auto;
	padding: 0 0 40px;
	border-bottom: 2px solid #fff;
	box-sizing: border-box;
	text-align: center;
}

.page-tit_wrap02 .wrap_inner .tit_area .page_title p.en_tit{
	font-size: min(2.03vw, 3.0rem);
	line-height: 1;
	color: #fff;
}

.page-tit_wrap02 .wrap_inner .tit_area .page_title h1{
	padding-top: 20px;
	font-size: min(2.70vw, 4.0rem);
	line-height: 1;
	color: #fff;
}

.page-tit_wrap02 .wrap_inner .tit_area .bread_crumbs{
	margin-top: 20px;
}

.page-tit_wrap02 .wrap_inner .tit_area .bread_crumbs p{
	font-size: min(1.01vw, 1.5rem);
	line-height: 1;
	color: #fff;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.page-tit_wrap02 .wrap_inner .tit_area .bread_crumbs p a{
	color: #fff;
}

.page-tit_wrap02 .wrap_inner .tit_area .bread_crumbs p span{
	color: #fff;
	padding: 0 4px;
}

/*===================================
	.anchor_wrap
=====================================*/

.anchor_wrap{
	width: 100%;
	height: 67px;
	background: #fff;
	box-shadow: 0 0 5px rgba(134, 134, 134, 0.75);
}

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

.anchor_wrap .wrap_inner ul.anchor_list{
	height: 100%;
	list-style: none;
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	justify-content: center;
}

.anchor_wrap .wrap_inner ul.anchor_list li{
	padding: 0 3.5%;
	box-sizing: border-box;
	margin-bottom: 23px;
}

.anchor_wrap .wrap_inner ul.anchor_list li + li{
	border-left: 1.5px solid #333333;
}

.anchor_wrap .wrap_inner ul.anchor_list li a{
	font-size: min(1.08vw, 1.6rem);
	line-height: 1.15;
	color: #333;
	position: relative;
}

/* 下線のスタイル */
.anchor_wrap .wrap_inner ul.anchor_list li a::after {
	content: '';
	background: #61c1be; /* 下線の色 */
	width: 60px;
	height: 3px;
	margin: auto;
	position: absolute;
	bottom: -2.15rem; /* 要素の下端からの距離 */
	left: 0;
	right: 0;
	transform: scale(0, 1); /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
	transform-origin: left top; /* 変形の原点を左上に指定 */
	transition: transform .3s; /* 変形をアニメーション化 */
}

/* リンクにホバーした際の下線の表示 */
.anchor_wrap .wrap_inner ul.anchor_list li a:hover::after {
  transform: scale(1, 1); /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}


/****************************************
    .contact_wrap
*****************************************/

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

.contact_wrap .wrap_inner .midashi_area{
	text-align: center;
}

.contact_wrap .wrap_inner .midashi_area p.en_tit{
	font-size: min(4.39vw, 6.5rem);
	line-height: 1;
	color: #61c1be;
}

.contact_wrap .wrap_inner .midashi_area h2.contact_midashi{
	padding: 21px 0 0;
	font-size: min(1.69vw, 2.5rem);
	line-height: 1;
	color: #0eafa3;
	position: relative;
}


.contact_wrap .wrap_inner .contact_area{
	width: 100%;
	margin-top: 28px;
	background: #fff;
	border-radius: 20px;
	padding: 35px 0 26px;
	border: 3px solid #61c1be;
	position: relative;
}

.contact_wrap .wrap_inner .contact_area::before{
	content: '';
	background: url("images/top/contact_parts01.webp")no-repeat;
	background-size: cover;
	width: 14.9090%;/*164*/
	height: auto;
	aspect-ratio: 164 / 184;
	position: absolute;
	top: 31px;
	transform: translateY(-100%);
	left: 7.1818%;/*79*/
	z-index: 1;
}

.contact_wrap .wrap_inner .contact_area p.c_txt01{
	font-size: min(1.35vw, 2.0rem);
	line-height: 1;
	text-align: center;
	color: #000;
}

.contact_wrap .wrap_inner .contact_area .flex_area01{
	width: 90.9090%;/*1000*/
	margin: 24px auto 0;
	display: flex;
	justify-content: space-between;
}

.contact_wrap .wrap_inner .contact_area .flex_area01 .tel_area{
	width: 50.0%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact_wrap .wrap_inner .contact_area .flex_area01 .tel_area img{
	width: 78.4%;/*392*/
}

.contact_wrap .wrap_inner .contact_area .flex_area01 .link_area{
	width: 50.0%;
	border-left: 3px solid #c6c6c6;
}

.contact_wrap .wrap_inner .contact_area .flex_area01 .link_area ul.link_list{
	width: 92.2%;/*461*/
	display: flex;
	justify-content: space-between;
	margin-left: 5.8%;
}

.contact_wrap .wrap_inner .contact_area .flex_area01 .link_area ul.link_list li{
	width: 47.7223%;/*220*/
}

.contact_wrap .wrap_inner .contact_area .flex_area01 .link_area ul.link_list li a{
	display: flex;
	justify-content: center;
	align-items: flex-end;
	width: 100%;
	height: 11.35rem;
	background: url("images/top/doc_ico_1.webp")no-repeat #0071b7 center top 16px;
	background-size: 15.9090% auto;/*35*/
	border-radius: 18px;
	padding-bottom: 21px;
	box-sizing: border-box;
	font-size: min(1.59vw, 2.355rem);
	line-height: 1;
	color: #fff;
	position: relative;
}

.contact_wrap .wrap_inner .contact_area .flex_area01 .link_area ul.link_list li:nth-child(2) a{
	background: url("images/top/check_ico_1.webp")no-repeat #ec5a24 center top 20px;
	background-size: 17.2727% auto;/*38*/
}

.contact_wrap .wrap_inner .contact_area .flex_area01 .link_area ul.link_list li a::before{
	content: '';
	background: url("images/top/link_ico_wh_2.webp")no-repeat;
	background-size: cover;
	width: 3.6363%;/*8*/
	height: auto;
	aspect-ratio: 8 / 18;
	position: absolute;
	bottom: 23px;
	right: 7.2727%;/*16*/
}

.contact_wrap .wrap_inner .contact_area .flex_area02{
	width: 100%;
	margin-top: 18px;
	display: flex;
	justify-content: center;
	gap: 0 5.1818%;/*57*/
}

.contact_wrap .wrap_inner .contact_area .flex_area02 .c_btn{
	width: 42.1818%;/*464*/
}

.contact_wrap .wrap_inner .contact_area .flex_area02 .c_btn a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 56px;
	border: 3px solid #c6c6c6;
	border-radius: 10.6px;
	background: url("images/top/link_ico_bla.webp")no-repeat #fff right 3.8793% center;/*18*/
	background-size: 1.9396% auto;/*9*/
}

.contact_wrap .wrap_inner .contact_area .flex_area02 .c_btn a span{
	display: flex;
	align-items: center;
	font-size: min(1.62vw, 2.4rem);
	line-height: 1;
	color: #000;
}

.contact_wrap .wrap_inner .contact_area .flex_area02 .c_btn:not(.mail) a span::before{
	content: '';
	background: url("images/top/que_ico.svg")no-repeat;
	background-size: cover;
	width: 31px;
	height: 31px;
	margin-right: 15px;
}

.contact_wrap .wrap_inner .contact_area .flex_area02 .c_btn.mail a span::before{
	content: '';
	background: url("images/top/mail_ico.svg")no-repeat;
	background-size: cover;
	width: 32px;
	height: 25px;
	margin-right: 18px;
}

.contact_wrap .wrap_inner .contact_area p.c_txt02{
	margin-top: 28px;
	font-size: min(1.08vw, 1.6rem);
	line-height: 1;
	color: #000;
	text-align: center;
}

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

h2.mokuji_midashi{
	padding-bottom: 22px;
	font-size: min(2.16vw, 3.2rem);
	line-height: 1.15625;
	color: #000000;
	text-align: center;
	position: relative;
}

h2.mokuji_midashi::after{
	content: '';
	background: #61c1be;
	width: 29.6%;
	max-width: 296px;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

h3.mokuji_sub_midashi{
	padding-bottom: 19px;
	border-bottom: 2px solid #1eafa7;
	font-size: min(1.69vw, 2.5rem);
	line-height: 1.12;
	color: #000000;
	text-align: center;
}
