@charset "UTF-8";

/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/

body, h1, h2, h3, h4, h5, h6, p, address,ul, ol, li, dl, dt, dd,table, th, td, img, form, input,figure {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-weight: 500;
	text-align: left;
	color: #2C2C2C;
	letter-spacing: 1px;
	-webkit-text-size-adjust: 100%;
	text-align: justify;
	hanging-punctuation: allow-end;
}

a{
	text-decoration: none;
	color: #2C2C2C;
}
a:hover{
	text-decoration: none;
	opacity: 0.5;
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	-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;
}
a:hover img{
	opacity: 1;
}
div,h1,h2,h3,h4,h5,h6,p,dl,dt,dd,ol,ul,li,form,input,textarea,button,table,tr,th,td,article,aside,footer,header,hgroup,nav,section,a,span,img,figure{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
body{
	width: 100%;
	word-break: break-all;
	-webkit-appearance: none;
	-webkit-text-size-adjust: 100%;
	background: #fff;
}
h1,h2,h3,h4,h5,p{
	text-align: justify;
	text-justify: distribute;
	line-height: 1.5;
}
img{
	max-width: 100%;
	vertical-align: bottom;
}
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
    display: none;
}

.wrap{
	max-width: 1200px;
	width: 90%;
	margin: auto;
}
.flex{
	display: flex;
	display: -webkit-flex;
	display: -ms-flex;
}
.flexwrap_wrap{
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}
.flexdirection_column{
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.justifycontent_flexend{
	-webkit-justify-content: flex-end;
	        justify-content: flex-end;
}
.justifycontent_center{
	-webkit-justify-content: center;
	        justify-content: center;
}
.justifycontent_spacebetween{
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}
.justifycontent_spacearound{
	-webkit-justify-content: space-around;
	        justify-content: space-around;
}
.aligncontent_spacebetween{
	-webkit-align-content: space-between;
	        align-content: space-between;
}
.alignitems_center{
	-webkit-align-items: center;
	        align-items: center;
}
.alignitems_flexend{
	-webkit-align-items: flex-end;
	        align-items: flex-end;
}
.alignitems_flexstart{
	-webkit-align-items: flex-start;
	        align-items: flex-start;
}
.mb1em{
	margin-bottom: 1em;
}
.mb2em{
	margin-bottom: 2em;
}
.mb3em{
	margin-bottom: 3em;
}
.mb4em{
	margin-bottom: 4em;
}
.tac{
	text-align: center;
}
.sp{
	display: none;
}

@media screen and (max-width: 840px){
	.sp{
		display: block;
	}
	.pc{
		display: none !important;
	}
	.sp_flex{
		display: flex;
	}
	body{
		min-width: inherit;
	}
	img{
		max-width: 100%;
		height: auto;
	}
	p{
		font-size: 1.2rem;
	}
}

/* ------------------------------
    clearfix
------------------------------ */

.cf:after{
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

.cf{
	display: inline-block;
}

/* Hides from IE Mac */
* html .cf{
	height: 1%;
}
.cf{
	display: block;
}
/* End Hack */

/* ------------------------------
    header
------------------------------ */
body.noscroll{
	overflow: hidden;
}
.header{
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 85px;
	padding: 0 120px 0 2vw;
	background: #fff;
	z-index: 90;
	transition: 0.5s;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.header #header_logo{
	max-width: 260px;
	width: 15vw;
	margin: 0 auto 0 0;
}
.header .g_nav{
	display: flex;
	align-items: center;
	height: 100%;
}
.header .g_nav li{
	height: 100%;
	margin: 0 1.5em;
	font-size: 17px;
}
.header .g_nav li a{
	display: flex;
	align-items: center;
	height: 100%;
	font-weight: 500;
}
.header .g_nav li a:hover{
	color: #DA382B;
	opacity: 1;
}
.header .g_nav li.menu:hover a{
	color: #DA382B;
}
.header .g_nav li.menu a:after{
	content: "";
	display: inline-block;
	width: 0.3em;
	height: 0.3em;
	margin-left: 0.5em;
	vertical-align: middle;
	border-bottom: 2px solid #2C2C2C;
	border-right: 2px solid #2C2C2C;
	transform: rotate( 45deg );
	z-index: 9;
}
.header .g_nav li.menu > a:after{
	transition: 0.3s ease-in-out;
}
.header .g_nav li.menu:hover a:after{
	border-bottom: 2px solid #DA382B;
	border-right: 2px solid #DA382B;
	transform: translateY(20%) rotate( 225deg );
}
.header .child_menu{
	position: absolute;
	top: 85px;
	left: 0;
	right: 0;
	width: 100vw;
	height: 105px;
	margin: auto;
	background: #004F3B;
	visibility: hidden;
	z-index: 1;
}
.header .menu:hover .child_menu{
	visibility: visible;
}
.header .child_menu ul{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.header .child_menu li{
	margin: 0 2em;
	font-size: 17px;
}
.header .g_nav li.menu .child_menu li a{
	color: #fff;
}
.header .g_nav li.menu .child_menu li a:after{
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(40%) rotate( 315deg );
}
.header .g_nav li.menu .child_menu li:hover a:after{
  transform: translateY(40%) rotate( 315deg );
}
.header .child_menu li a:hover{
	color: #fff;
	opacity: 0.5;
}
.header .search_keyword_top{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 182px;
	height: 28px;
	padding: 1.5em 0;
	margin: 0 1.5vw;
	font-size: 12px;
	border-bottom: 1px solid #2C2C2C;
}
.header .search_keyword_top input{
	background: none;
}
.header .search_keyword_top input[type='text']{
	border: none;
	padding: 0;
	width: 100%;
}
input::placeholder {
	color: rgba(44, 44, 44, 0.5);
}
.header .sub_nav{
	display: flex;
	align-items: center;
}
.header .sub_nav li{
	margin: 0 1vw;
}
.header .sub_nav li a{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.header .sub_nav li a:hover{
	opacity: 1;
}
.header .sub_nav li a img{
  transition: 0.3s ease-in-out;
}
.header .sub_nav li a:hover img{
	opacity: 1;
}
.header .sub_nav li a .on{
	display: none;
}
.header .sub_nav li a:hover .on{
	display: block;
}
.header .sub_nav li a:hover .off{
	display: none;
}
.header .sub_nav li a span{
	font-size: 12px;
}
.header .sub_nav li a:hover span{
	color: #DA382B;
}
.header .btn_menu{
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 107px;
	background: #00664C;
	border-radius: 0 0 0 16px;
}
.header .btn_menu a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.header .btn_menu a img{
  transition: 0.3s ease-in-out;
}
.header .menu_hum{
	position: absolute;
	top: 0;
	right: -400px;
	width: 400px;
	height: 100vh;
	background: #004F3B;
	transition: 0.3s ease-in-out;
	-webkit-overflow-scrolling:touch;
    overflow-y: auto;
	z-index: 200;
}
.header .over{
	content: "";
	position: absolute;
	top: 0;
	left: 100%;
	width: 100vw;
	height: 100vh;
	background: rgba(44, 44, 44, 0.5);
	z-index: 100;
}
body.noscroll .header .over{
	left: 0;
}
.header .menu_hum.on{
	right: 0;
}
.header .menu_hum *{
	color: #fff;
}
.header .menu_hum .btn_menu{
	width: 72px;
	height: 72px;
	background: none;
	border-radius: 0;
}
.header .menu_hum .menu_hum_top{
	padding: 70px 5% 30px;
	background: #044131;
}
.header .menu_hum .menu_hum_bottom{
	padding: 46px 5%;
}
.header .menu_hum .search_keyword_top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 44px;
	padding: 0;
	margin: 0 0 20px;
	font-size: 13px;
	background: #fff;
	border-radius: 3px;
	overflow: hidden;
}
.header .menu_hum .search_keyword_top input{
	background: none;
}
.header .menu_hum .search_keyword_top input[type='text']{
	width: 100%;
	border: none;
	padding: 1em;
	font-size: 13px;
	color: #2C2C2C;
	border: 1px solid #EEEBE8;
}
.header .menu_hum .search_keyword_top input::placeholder {
	color: #939393;
}
.header .menu_hum .search_keyword_top .top_search_btn{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	background: #BAA97A;
}
.header .menu_hum .btn_area{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.header .menu_hum .btn_area p{
	width: 49%;
}
.header .menu_hum .btn_area p a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 3.8em;
	font-size: 13px;
	border: 1px solid #fff;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
.header .menu_hum .btn_area p.cart{
	width: 100%;
	margin-top: 20px;
}
.header .menu_hum .btn_area p.cart a{
	background: #BAA97A;
	border: none;
	border-radius: 2px;
}
.header .menu_hum .menu_hum_bottom ul.menu_hum_nav li a{
	position: relative;
	display: block;
	padding: 1em;
	font-size: 17px;
	font-weight: 400;
}
.header .menu_hum .menu_hum_bottom ul.menu_hum_nav li a:after{
	content: "";
	position: absolute;
	top: 0;
	right: 3%;
	bottom: 0;
	display: inline-block;
	width: 0.3em;
	height: 0.3em;
	margin: auto;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate( -45deg );
}
.header .menu_hum .sns{
	margin-top: 45px;
	padding-top: 30px;
	border-top: 1px solid #00664C;
}
.header .menu_hum .sns h2{
	margin-bottom: 1em;
	font-size: 16px;
	text-align: center;
}
.header .menu_hum .sns ul{
	display: flex;
	justify-content: center;
}
.header .menu_hum .sns ul li{
	width: 28px;
	height: 28px;
	margin: 0 5px;
}

@media screen and (max-width: 1420px){
	.header{
		padding: 0 8vw 0 2vw;
	}
	.header .g_nav li{
		margin: 0 1em;
		font-size: 1.1vw;
	}
	.header .sub_nav li a span{
		font-size: 0.8vw;
	}
	.header .btn_menu{
		width: 8vw;
		height: 110%;
	}
	.header .btn_menu img{
		width: 60%;
	}
}

@media screen and (max-width: 840px){
	.header{
		height: 60px;
		padding: 0 75px 0 3%;
	}
	.header #header_logo{
		max-width: 176px;
		width: 47%;
	}
	.header .sub_nav{
		margin-right: 2vw;
	}
	.header .sub_nav li{
		margin: 0 1vw;
	}
	.header .btn_menu{
		width: 75px;
		height: 70px;
		border-radius: 0 0 0 10px;
	}
	.header .btn_menu img{
		width: 43px;
	}
	.header .menu_hum{
		right: -100%;
		width: 100%;
	}
	.header .menu_hum .btn_menu{
		width: 75px;
		height: 70px;
	}
	.header .menu_hum .btn_menu img{
		width: 20px;
	}
	.header .menu_hum .menu_hum_top{
		padding: 68px 6% 38px;
	}
	.header .menu_hum .menu_hum_bottom{
		padding: 30px 5% 30%;
	}
	.header .menu_hum .search_keyword_top{
		height: 41px;
		margin: 0 0 13px;
		font-size: 12px;
		border-radius: 0;
	}
	.header .menu_hum .search_keyword_top .top_search_btn{
		width: 41px;
		height: 41px;
	}
	.header .menu_hum .btn_area p a{
		font-size: 12px;
	}
	.header .menu_hum .btn_area p.cart{
		width: 100%;
		margin-top: 13px;
	}
	.header .menu_hum .menu_hum_bottom ul.menu_hum_nav li a{
		font-size: 14px;
	}
	.header .menu_hum .sns{
		margin-top: 35px;
		padding-top: 32px;
	}
	.header .menu_hum .sns h2{
		font-size: 15px;
	}
	.header .menu_hum .sns ul li{
		width: 26px;
		height: 26px;
	}
}
@media screen and (max-width: 320px){
}

/* ------------------------------
    footer
------------------------------ */
.footer{
	padding: 90px 0 60px;
	background: #00664C;
}
.footer *{
	color: #fff;
}
.footer .wrap{
	max-width: 1360px;
	padding-left: 10%;
}
.footer .left{
	width: 35%;
}
.footer .footer_logo{
	margin-bottom: 50px;
}
.footer .info{
	margin-bottom: 25px;
}
.footer .info p{
	font-size: 14px;
	font-weight: bold;
}
.footer .sns{
	margin-bottom: 28px;
}
.footer .sns h2{
	margin-bottom: 1em;
	font-size: 16px;
}
.footer .sns ul{
	display: flex;
}
.footer .sns ul li{
	width: 28px;
	height: 28px;
}
.footer .sns ul li + li{
	margin-left: 10px;
}
.footer .copy{
	font-size: 12px;
	font-weight: 100;
}
.footer .right{
	width: 60%;
}
.footer .con h2{
	margin-bottom: 1em;
	font-size: 20px;
	font-weight: bold;
}
.footer .con ul li{
	margin-bottom: 1.5em;
	font-size: 14px;
	font-weight: 100;
}

@media screen and (max-width: 1200px){
	.footer .wrap{
		padding-left: 0;
	}
}

@media screen and (max-width: 840px){
	.footer{
		padding: 10% 0 8%;
	}
	.footer *{
		text-align: center
	}
	.footer .wrap{
		padding-left: 0;
	}
	.footer .left{
		width: 100%;
	}
	.footer .footer_logo{
		margin-bottom: 8%;
	}
	.footer .info{
		margin-bottom: 8%;
	}
	.footer .sns{
		margin-bottom: 5%;
	}
	.footer .sns ul{
		justify-content: center;
	}
	.footer .sns ul li{
		width: 38px;
		height: 38px;
		margin: 0 4px;
	}
	.footer .sns ul li + li{
		margin-left: 0;
	}
}

/* ------------------------------
    common
------------------------------ */
.main_content{
	margin-top: 85px;
	overflow: hidden;
}

.btn a{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 372px;
	height: 3.8em;
	margin: auto;
	font-size: 20px;
	color: #fff;
	font-weight: 500;
	text-align: center;
	background: #DA382B;
	border: 3px solid #DA382B;
	border-radius: 63px;
}
.btn a:before{
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    right: 8%;
    bottom: 0;
    width: 0.3em;
    height: 0.3em;
    margin: auto;
    vertical-align: middle;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate( -45deg );
    transform: rotate( -45deg );
    z-index: 9;
}
.btn a:hover{
	color: #DA382B;
	background: #fff;
	opacity: 1;
}
.btn a:hover:before{
    border-bottom: 2px solid #DA382B;
    border-right: 2px solid #DA382B;
    transition: 0.3s ease-in-out;
}
.title_area{
	margin-bottom: 40px;
}
.title_area p.en{
	font-size: 50px;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.1em;
}
.title_area h2{
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.1em;
}
.main_title{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 230px;
	background: #FAD244;
}
.main_title h2{
	font-size: 33px;
	font-weight: bold;
	text-align: center;
}
.page_nav{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 100px auto;
}
.page_nav li{
	width: auto;
}
.page_nav li + li{
	border-left: 1px dashed #1A1311;	
}
.page_nav li a{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 1.5em;
	font-size: 20px;
	font-weight: 600;
}
.page_nav li a:after{
	content: "";
    display: inline-block;
    width: 0.3em;
    height: 0.3em;
    margin-top: 0.5em;
    border-bottom: 2px solid #2C2C2C;
    border-right: 2px solid #2C2C2C;
    transform: rotate( 45deg );
    transition: 0.3s ease-in-out;
}
.page_nav li a:hover{
	color: #DA382B;
	opacity: 1;
}
.page_nav li a:hover:after{
    border-bottom: 2px solid #DA382B;
    border-right: 2px solid #DA382B;
}
.wave{
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate( 180deg );
}
.wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 71px;
}

@media screen and (max-width: 840px){
	.main_content{
		margin-top: 60px;
	}

	.btn a{
		width: 60%;
		font-size: 13px;
		border: 2px solid #DA382B;
		border-radius: 30px;
	}
	.btn a:before{
	    width: 0.4em;
	    height: 0.4em;
	}
	.title_area{
		margin-bottom: 20px;
	}
	.title_area p.en{
		font-size: 30px;
	}
	.title_area h2{
		font-size: 15px;
	}

	#pagetop{
		position: fixed;
		right: 0;
		bottom: 0;
		opacity: 0;
		transition: .3s ease-in-out;
	}
	#pagetop.active{
		opacity: 1;
	}
	.main_title{
		height: 200px;
	}
	.main_title h2{
		font-size: 22px;
	}
	.page_nav{
		flex-wrap: wrap;
		margin: 10% auto;
	}
	.page_nav li{
		width: 50%;
		margin-bottom: 3%
	}
	.page_nav li + li{
		border-left: none;	
	}
	.page_nav li:nth-child(2n){
		border-left: 1px dashed #1A1311;	
	}
	.page_nav li a{
		padding: 0;
		font-size: 14px;
	}
	.wave svg {
	    height: 21px;
	}
}

/*contact*/
.contact{
	position: relative;
	padding: 70px 0 90px;
	background: #FAF6ED;
}
.contact .wrap{
	max-width: 1080px;
	width: 95%;
}
.contact .contact_con{
	width: calc(94% / 3);
	height: 160px;
	border-radius: 10px;
	overflow: hidden;
}
.contact .contact_con a,
.contact .contact_con.tel{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 5px;
	background: #fff;
}
.contact .contact_con a{
	width: 100%;
	height: 100%;
}
.contact .contact_con + .contact_con{
	margin-left: 2%;
}
.contact .contact_con h3{
	margin-bottom: 1em;
	font-size: 22px;
	text-align: center;
}
.contact .contact_con.tel h3{
	margin-bottom: 0.5em;
}
.contact .contact_con .btn{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 270px;
	width: 100%;
	height: 3.3em;
	font-size: 15px;
	color: #fff;
	background: #009944;
	border-radius: 60px;
}
.contact .contact_con .btn img{
	height: 1.2em;
	margin-right: 0.5em;
}
.contact .contact_con.tel p{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	font-size: 28px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.1em;
}
.contact .contact_con.tel p img{
	height: 1em;
	margin-right: 0.5em;
}
.contact .contact_con.tel p.small{
	font-size: 13px;
	line-height: 1;
	font-weight: 600;
}

@media screen and (max-width: 840px){
	.contact{
		padding: 10% 0;
	}
	.contact .flex{
		display: block;
	}
	.contact .contact_con{
		width: 100%;
		height: 120px;
	}
	.contact .contact_con a,
	.contact .contact_con.tel{
		padding: 0;
	}
	.contact .contact_con + .contact_con{
		margin-left: 0;
		margin-top: 5%;
	}
	.contact .contact_con h3{
		font-size: 16px;
	}
	.contact .contact_con.tel h3{
		margin-bottom: 0;
	}
	.contact .contact_con .btn{
		font-size: 14px;
	}
	.contact .contact_con.tel p.small{
		font-size: 11px;
	}
}
