@charset "UTF-8";

/*-----------------------------------

	base

-----------------------------------*/
html {
    overflow-y: auto;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 62.5%;
	overflow-x: hidden;
	scroll-behavior: smooth;
}
body {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
	line-height: 2;
	letter-spacing:0;
	font-weight: 500;
	color: #000000;
	margin:0 !important;
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	position: relative;
	z-index: 999;
}

/*::selection {
	background: #3C3C3C;
	color: #fff;
}*/

/*--Firefox--*/
/*::-moz-selection {
	background: #293844;
	color: #fff;
}*/

img {
    max-width: 100%;
    height: auto;
	display: block;
}
a{
	display: block;
	color: #000;
	text-decoration: none;
	font-size: 16px;
	line-height: 2;
	letter-spacing:0;
	font-weight: 500;
	cursor: pointer;
}
/*a, a:link, a:visited {
	text-decoration:none;
    cursor: pointer;
	color: #3C3C3C;
}*/
a:hover {
	text-decoration:none;
	transition: 0.3s;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
a img{
	transition : 0.2s ;
	-webkit-transition : 0.2s ;
	-moz-transition    : 0.2s ;
	-o-transition      : 0.2s ;
	-ms-transition     : 0.2s ;
}
a:hover img {
      opacity: 0.7;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.row_box{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],
input[type="reset"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="reset"]:focus {
    outline-offset: -2px;
}

/* device */
.sp {
	display:none!important;
}
.tab {
	display:none!important;
}
.pc {
	display:block!important;
}

/* contents */
/*#body{
	align-items: flex-start;
}*/

.contents_inner {
	max-width: 1088px;
	width: 90%;
	margin: 0 auto;
}
.header_inner{
	max-width: 1200px;
	width: 90%;
	margin: auto;
}

.en{
	font-family: "Outfit", sans-serif;
}

/*search_list*/
.search_list{
	gap: 60px;
}
.search_list li{
	width: calc((100% - 60px) / 2);
}
.search_list li a{
	position: relative;
	transition: 0.3s;
	overflow: hidden;
	border-radius: 30px;
	height: 250px;
}
.search_list li a::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.30);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.search_list li a img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 30px;
}
.search_list li a:hover img{
	transform: scale(1.1);
}
.search_list li a .list_ttl{
	font-size: 25px;
	font-weight: 700;
	text-align: center;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	color: #fff;
	z-index: 2;
	height: 46px;
}

/*flex_box*/
.flex_box{
	justify-content: space-between;
	width: 100%;
}
.flex_box:nth-child(odd){
	flex-direction: row-reverse;
}
.flex_box:not(:first-of-type){
	margin-top: 80px;
}
.flex_box .img_box{
	max-width: 536px;
	width: 50%;
}
.flex_box .img_box img{
	border-radius: 30px;
}
.flex_box .txt_box{
	max-width: 503px;
	width: 47%;
}
.flex_box .txt_box .txt_box_ttl{
	font-size: 18px;
	font-weight: 700;
	line-height: 1.8;
	margin-bottom: 15px;
}


/*---ttl---*/
.h2_ttl{
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.5;
	color: #000;
}
.h2_ttl .en{
	display: block;
	font-size: 20px;
	font-weight: 700;
	color: #00A040;
	line-height: 1;
}

/*---btn---*/
.btn_g{
	padding: 23px;
	border-radius: 50px;
	text-align: center;
	position: relative;
	background: #00A040;
	color: #fff;
	max-width: 370px;
	width: 100%;
	line-height: 1.5;
	transition: 0.3s;
}
.btn_g::before{
	content: "";
	position: absolute;
	background: url("../img/common/arrow_w.svg")no-repeat center / contain;
	top: 0;
	bottom: 0;
	right: 32px;
	margin: auto;
	width: 25px;
	height: 25px;
	transition: 0.3s;
}
.btn_g:hover{
	background: #1eb75b;
}
.btn_g:hover::before{
	right: 20px;
}

.btn_w{
	padding: 23px;
	border-radius: 50px;
	text-align: center;
	position: relative;
	background: #fff;
	border: 1px solid #00A040;
	color: #000;
	max-width: 370px;
	width: 100%;
	line-height: 1.5;
	transition: 0.3s;
}
.btn_w::before{
	content: "";
	position: absolute;
	background: url("../img/common/arrow_g.svg")no-repeat center / contain;
	top: 0;
	bottom: 0;
	right: 32px;
	margin: auto;
	width: 25px;
	height: 25px;
	transition: 0.3s;
}
.btn_w:hover{
	background: #d8ebd0;
}
.btn_w:hover::before{
	right: 20px;
}

.btn_or{
	padding: 4px;
	border-radius: 50px;
	text-align: center;
	position: relative;
	background: #fff;
	max-width: 200px;
	width: 100%;
	margin: auto;
	transition: 0.3s;
}
.btn_or::before{
	content: "";
	position: absolute;
	background: url("../img/common/arrow_ore.svg")#fff no-repeat center / contain;
	border-radius: 50%;
	top: 0;
	bottom: 0;
	right: 22px;
	margin: auto;
	width: 20px;
	height: 20px;
	transition: 0.3s;
}
.btn_or:hover{
	background: #ccc;
}
.btn_or:hover::before{
	right: 15px;
}

.btn_arrow{
	padding-left: 33px;
	position: relative;
	font-size: 14px;
	font-weight: 700;
	display: inline-block;
	transition: 0.3s;
}
.btn_arrow::before{
	content: "";
	width: 25px;
	height: 25px;
	background: url("../img/common/arrow_g.svg")no-repeat center / contain;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	margin: auto;
}
.btn_arrow:hover{
	text-decoration: underline;
	opacity: 0.7;
}

@media screen and (max-width: 960px){
	.search_list li a .list_ttl{
		font-size: 20px;
	}
}
@media screen and (max-width: 840px) {

	body {
		font-size: 14px;
		line-height: 1.6;
		letter-spacing: 0.05rem;
	}

/* device */
	.sp{
		display:none!important;
	}
	.pc{
		display:none!important;
	}
	.tab{
		display:block!important;
	}
	
/* contents */
	.search_list{
		gap: 20px;
	}
	.search_list li{
		width: 100%;
	}
	.search_list li a{
		height: 100px;
		border-radius: 20px;
	}
	.search_list li a img{
		border-radius: 20px;
	}
	.search_list li a .list_ttl{
		height: 40px;
	}
	
	.flex_box .img_box{
		max-width: 302px;
		width: 46%;
	}
	.flex_box .txt_box{
		width: 50%;
	}
	.flex_box .txt_box .txt_box_ttl{
		font-size: 16px;
	}

}

@media screen and (max-width: 640px) {
	body {
		font-size: 13px;
		line-height: 1.6;
		letter-spacing: 0.05rem;
	}
	
	/*.row_box{
		flex-direction: column;
	}*/
	
/* device */
	.pc{
		display:none!important;
	}
	.tab{
		display:none!important;
	}
	.sp{
		display:block!important;
	}

/* contents */
	.flex_box,
	.flex_box:nth-child(odd) {
		flex-direction: column;
	}
	.flex_box:not(:first-of-type){
		margin-top: 47px;
	}
	.flex_box .txt_box{
		margin-top: 25px;
		width: 100%;
	}
	.flex_box .txt_box .txt_box_ttl{
		text-align: center;
	}
	.flex_box .img_box{
		width: 100%;
	}
	
/* ttl */
	.h2_ttl{
		font-size: 20px;
	}
	.h2_ttl .en{
		font-size: 15px;
	}
	
/* btn */
	.btn_g{
		max-width: 302px;
	}
	
	.none{
		display: none;
	}
}

/*-----------------------------------

	clearfix

-----------------------------------*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
}
* html .clearfix {
    height: 1%;
}
.clearfix {
    display: block;
}

/*-----------------------------------

	header

-----------------------------------*/
header {
	position: absolute;
	z-index: 90;
}
header .logo a{
	padding: 25px 0;
	width: 352px;
	background: #fff;
	border-radius: 20px;
	margin: 30px 0 0;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
header .logo img{
	margin: auto;
}


@media screen and (max-width: 840px){
	
}
@media screen and (max-width: 640px) {
	header .logo a{
		padding: 14px 12px;
		width: 208px;
		margin: 15px 0 0;
	}
	
}

/*-----------------------------------

	side_box

-----------------------------------*/
#body .side_box{
	width: 105px;
	/*order: 1;*/
	position: fixed;
	z-index: 999;
	right: 0;
	
	height: 100%;
	overflow-y: auto;
}
.side_box .menu{
  position: fixed;
  top: 0;
  right: -100%;
  width: 594px;
  height: 100%;
  background: #00A040;
  transition: right 0.3s ease; 
  padding: 0 20px;
  box-sizing: border-box;
  z-index: -1;
	
  overflow: hidden;
  display: flex;
}

.side_box .menu.open {
  right: 105px;
}
.side_box .menu .scroll{
	overflow-y: auto;
	flex: 1;
}

.side_box .ham_wrap{
	position: relative;
	background: #EAEAEA;
	height: 120px;
}
.side_box .hamburger {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	cursor: pointer;
	z-index: 20;
	gap: 8px;
	flex-direction: column;
}
.side_box .hamburger::before{
	content: "MENU";
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	text-align: center;
	position: absolute;
	bottom: 35px;
	left: 0;
	right: 0;
	margin: auto;
}

.side_box .hamburger span {
	display: block;
	height: 3px;
	width: 40px;
	background-color: #333;
	transition: 0.4s;
	border-radius: 5px;
	transform: translateY(-10px);
}

.side_box .hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
}

.side_box .hamburger.active span:nth-child(2) {
  opacity: 0;
}

.side_box .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(15px, -15px);
}

.side_box .menu ul{
	max-width: 360px;
	width: 100%;
	margin: 112px auto 60px;
}
.side_box .menu li a {
	padding: 25px 0 0;
	color: #fff;
	font-weight: 700;
	font-size: 19px;
	transition: 0.3s;
	display: inline-block;
}
.side_box .menu li a:hover{
	text-decoration: underline;
}
.side_box .green_box{
	background: #00A040;
}
.side_box .green_box .side_list li a{
	padding: 19px 25px 23px;
	position: relative;
}
.side_box .green_box .side_list li:not(:last-child) a::before{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 55px;
	height: 2px;
	border-radius: 5px;
	background: #fff;
}
.side_box .green_box .side_list li img{
	margin: auto;
}

/*.side_box .sns_box{
	background: #fff;
}*/
.side_box .sns_box .box{
	padding: 14px 0 10px;
	background: #fff;
}
.side_box .sns_box .box .box_ttl{
	font-size: 12px;
	text-align: center;
	font-weight: 700;
	line-height: 1;
}
.side_box .sns_box .box .row_box{
	margin: 10px 0 0;
	gap: 10px;
}
.side_box .sns_box .box .language a{
	font-size: 15px;
	line-height: 25px;
	color: #00A040;
	border-radius: 50%;
	width: 25px;
	height: 25px;
	text-align: center;
}
.side_box .sns_box .box .language a:first-child{
	background: #00A040;
	color: #fff;
}

@media screen and (max-width: 840px) {
	
}
@media screen and (max-width: 640px) {
	#body .side_box{
		width: 80px;
		height: 80px;
	}
	.side_box .ham_wrap{
		height: 80px;
	}
	.side_box .hamburger{
		gap: 6px;
	}
	.side_box .hamburger::before{
		font-size: 10px;
		bottom: 21px;
	}
	.side_box .hamburger span{
		width: 30px;
		transform: translateY(-8px);
	}
	.side_box .hamburger.active span:nth-child(1){
		transform: rotate(45deg);
	}
	.side_box .hamburger.active span:nth-child(3){
		transform: rotate(-45deg) translate(12px, -13px);
	}
	.side_box .menu{
		padding: 0;
		width: 100%;
	}
	.side_box .menu.open{
		right: 0;
	}
	.side_box .menu ul{
		text-align: center;
		margin: 88px auto 0;
	}
	.side_box .sns_box .box{
		padding: 46px 0 131px;
		background: transparent;
	}
	.side_box .sns_box .box .row_box{
		gap: 15px;
		margin: 0;
	}
	.side_box .sns_box .box .sns a img{
		width: 45px;
	}
	
	.side_box .green_box{
		position: fixed;
		right: 0;
		left: 0;
		bottom: 0;
		background: #EAEAEA;
	}
	.side_box .green_box .side_list{
		display: flex;
	}
	.side_box .green_box .side_list li{
		width: calc(100% / 3);
	}
	.side_box .green_box .side_list li a{
		padding: 15px 0 13px;
	}
	.side_box .green_box .side_list li:not(:last-child) a::before{
		background: #00A040;
		width: 1px;
		height: 46px;
		left: auto;
		top: 0;
	}
	.side_box .green_box .side_list li p{
		text-align: center;
		line-height: 1;
		margin-top: 7px;
		font-size: 12px;
		font-weight: 700;
	}
}

/*-----------------------------------

	left_box

-----------------------------------*/
#body .left_box{
	width: calc(100% - 105px);
	background: #F1F4E0;
	position: relative;
}
@media screen and (max-width: 840px) {
	
}
@media screen and (max-width: 640px) {
	#body .left_box{
		width: 100%;
	}
}

/*-----------------------------------

	footer

-----------------------------------*/
footer {
	padding: 83px 0 0;
	background: #fff;
	font-size: 14px;
}
footer .footer_top{
	gap: 17px;
	padding: 0 0 31px;
}
footer .menu{
	border-top: 1px solid #707070;
}
footer .menu ul{
	gap: 25px;
	padding: 32px 0;
}
footer .menu ul li a{
	font-weight: 700;
	transition: 0.3s;
	display: inline-block;
}
footer .menu ul li a:hover{
	text-decoration: underline;
}
footer .menu_bottom ul{
	padding: 25px 0 0;
}
footer .menu_bottom ul li a{
	font-size: 14px;
	color: rgba(0,0,0,0.46);
}
footer .sns_wrap{
	gap: 29px;
	padding: 35px 0 29px;
}
footer .copy{
	text-align: center;
	font-size: 12px;
	color: #fff;
	padding: 16px 0;
	background: #00A040;
	line-height: 1.5;
}

@media screen and (max-width: 1170px){
	footer .menu ul{
		gap: 10px 15px;
		justify-content: flex-start;
		max-width: 430px;
		width: 100%;
		margin: auto;
	}
	footer .menu ul li{
		width: calc((100% - 30px) / 3);
	}
	footer .menu_bottom ul{
		max-width: 560px;
	}
	footer .menu_bottom ul li{
		width: calc((100% - 15px) / 2);
	}
}
@media screen and (max-width: 840px) {
	footer{
		padding: 42px 0 0;
	}
	footer .footer_top{
		gap: 12px;
	}
}

@media screen and (max-width: 640px) {
	footer .footer_top{
		padding: 0 0 33px;
	}
	footer .footer_top p{
		text-align: center;
	}
	footer .menu{
		border: none;
	}
	footer .menu ul{
		max-width: 352px;
		padding: 0;
		gap: 0;
	}
	footer .menu ul li{
		width: 100%;
		border-bottom: 1px solid #707070;
	}
	footer .menu ul li a{
		padding: 15px 37px;
		display: block;
	}
	footer .menu ul li a:hover{
		text-decoration: none;
		background: rgb(241, 244, 224);
	}
	
	footer .menu_bottom ul{
		margin: 19px auto 0;
	}
	footer .menu_bottom ul li{
		border: none;
	}
	footer .menu_bottom ul li a{
		font-size: 13px;
		padding: 0 0 0 37px;
	}
	footer .menu_bottom ul li a:hover{
		background: transparent;
		text-decoration: underline;
	}
	
	footer .sns_wrap{
		padding: 26px 0;
	}
	
	footer .copy{
		padding-bottom: 86px;
	}
}

/*-----------------------------------

	reserve_modal

-----------------------------------*/
#reserve_modal{
	display: none;
	background: rgba(0, 0, 0, 0.4);
	width: 100vw;
	height: 100vh;
	margin: auto;
	position: fixed;
	inset: 0;
	z-index: 9998;
}
#reserve_modal .reserve_modal_wrap {
	background: #FFFFFF;
	width: 92%;
	max-width: 800px;
	height: max-content;
	padding: 42px 27px 53px;
	margin: auto;
	position: absolute;
	inset: 0;
}
#reserve_modal .reserve_ttl {
    padding-left: 25px;
    position: relative;
    color: #00A040;
    font-weight: 700;
    width: max-content;
    margin: 0 auto 12px;
    font-size: 20px;
}
#reserve_modal .reserve_ttl img {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    margin: auto;
    width: 20px;
}
#reserve_modal #closeReserveModal {
	width: 16px;
	height: 16px;
	position: absolute;
	top: 17px;
	right: 15px;
	cursor: pointer;
}
#reserve_modal .feedback-modal {
	color: #dc3232;
}
#reserve_modal select {
	-webkit-appearance: none;
    appearance: none;
	width: 100%;
    border-radius: 0;
    font-size: 14px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
    line-height: 1.5;
    padding: 6px 46px 6px 11px;
    background: url(../img/index/reserve_arrow.svg) #fff no-repeat right top / 35px;
    margin: 0 auto 18px;
    border: 1px solid #CCCCCC;
    color: #000;
}
#reserve_modal .btn_g {
	max-width: 200px;
	padding: 8px 23px;
	margin: 0 auto;
}
#reserve_modal .btn_g::before {
	width: 20px;
	height: 20px;
	right: 23px;
}
@media screen and (max-width: 640px) {
	#reserve_modal .reserve_modal_wrap {
		padding: 26px 26px 73px;
	}
	#reserve_modal .reserve_ttl {
		margin: 0 auto 16px;
	}
	#reserve_modal #closeReserveModal {
		font-size: 14px;
		font-weight: 500;
		line-height: 1.43;
		letter-spacing: 0;
		color: #CCCCCC;
		width: max-content;
		height: auto;
		margin: auto;
		top: auto;
		left: 0;
		right: 0;
		bottom: 20px;
	}
}

/*-----------------------------------

	pagetop

-----------------------------------*/
#pagetop{
	z-index: 900;
}

@media screen and (max-width: 840px){
	
}
@media screen and (max-width: 640px){
	
}

