@charset "UTF-8";

/* CSS Document */

/* -------------------------------- 

Primary style

-------------------------------- */
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@-ms-viewport {
	width: auto!important;
	initial-scale: 1;
}

body.overflow-hidden {
  overflow: hidden;
}

a {
  color: white;
  text-decoration: none;
}

/* -------------------------------- 

Main components 

-------------------------------- */
html{
	overflow: hidden;
}

html, body {
  height: 100%;
}

header {
  position: fixed;
  width: 100%;
  background: transparent;
  z-index: 100;
  transition:  0.2s;
	height: 120px;
	top: 0;
	left: 0;
	z-index: 100!important;
}

header.change-color {
  background: rgba(251,250,246,0.9);
  transition: 0.3s;
}

.head .logo{
	position: absolute;
	top:10px ;
	left: 30px;
	max-width: 300px;
	width: 55%;
	z-index: 5;
}
.head .logo img{
	width: 100%;
	height: auto;
}
@media (max-width: 960px) {
.head .logo {
/*	top:5px ;*/
	top: 5px;
	left: 20px;
	max-width: 250px;
	width: 55%;
  }
	
header {
	height: 80px;
	}
}
@media (max-width: 480px) {
.head .logo {
/*	top:5px ;*/
	top: 5px;
	left: 20px;
	max-width: 220px;
	width: 55%;
  }
}

/*==================================================

container
=================================================*/

body {
    position: relative;
    left: 0;
	background-size: 100% auto;
}
section{
	position: relative;
}
article{
	position: relative;
}

img {
width:100%;
max-width: 100%;
height: auto;
}

.tC{
	text-align: center;
}
.tS{
	font-size: 86%;
}

.selector {
  font-feature-settings: "palt";
}
#wrapper {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}
/*
#wrapper section{
	max-width: 1200px;
	margin: auto;
}*/

header .headr{
	position: absolute;
	right: 70px;
	top: 15px;
	font-size: 1.5rem;
}
header .headr a{
	max-width: 40px;
	display: block;
} 
/*==================================================

header
=================================================*/

/* -------------------------------- 

Main components 

-------------------------------- */

@media (min-width: 961px) {
header{
	height: 100px;
}
header .headr{
	position: absolute;
	right: 20px;
	top: 35px;
	font-size: 1.5rem;
}
	
nav{
	font-weight: 500;
	font-size: 1.5rem;
	letter-spacing: 0.05em;
	z-index: 100;
	position: relative;
	margin: 0px 50px 0px 32%;
}	
nav > .navinner > ul{
	display: flex;
	justify-content: space-around;
	align-items: center;
}
nav > .navinner > ul > li{
	text-align: center;
	position: relative;
	padding: 0;
}	
nav > .navinner > ul > li > a{
	text-decoration: none;
	line-height: 120px;
	display: block;
	font-weight: 700;
} 	
nav a{
	color: #5b514c;
} 	
nav a:hover{
	color: #f29c50;
	opacity: 1;
} 	
nav ul li ul{
	width: 300%;
	position: absolute;
	visibility: hidden;
	opacity: 0;
	transition: .2s;
	text-align: center;
	margin: auto;
	border-radius: 15px;
	left:-100%;
	right:-100%;
}
nav > .navinner > ul > li ul{
	background: #fcfcfc;
	border:3px solid #5b514c;
}	
nav ul li ul:after {
  content: "";
  position: absolute;
  top:  -28px;
  left: 50%;
  margin-left: -18px;
  border: 18px solid transparent;
  z-index: 200;
}
nav > .navinner > ul > li ul:after{
  border-bottom: 8px solid #fcfcfc;
  border-bottom: 8px solid #5b514c;
}

/* サブメニュー表示設定 */

nav li:hover ul {
  	visibility: visible;
	top:90px;
	opacity: 1;
}
nav li ul li a {
	visibility: hidden;
	opacity: 0;
	transition: .5s;
}
nav li:hover ul li a {
	visibility: visible;
	opacity: 1;
}

/* サブメニュー詳細設定 */

nav > ul > li > ul li {
	width: 100%;
	position: relative;
}
nav > .navinner > ul > li > ul > li > a {
	width: 100%;
	display: block;
	font-size: 1.4rem;
	line-height: 180%;
	text-align: center;
	text-decoration: none;
	background-size: auto;
	padding: 15px;
	vertical-align: middle;
	text-decoration: none;
	line-height:1.5em;
	border-bottom:1px dashed #c5c1be;
}
nav > .navinner > ul > li > ul > li > a:hover {
	opacity: 0.7;
}
nav ul li .back{
	display: none;
}	
nav ul li ul li:last-child{
	display: none;
}
}

@media (max-width: 1030px) {
	
nav{
	font-size: 1.4rem;
}	
}

@media (max-width: 960px) {
/*
header {
	height: 60px;
}*/
header .head_right{
	display: none;
}
nav{
	display: none;
}

/** メニュー開閉ボタン */
    .navopen {
        position: fixed;
        top: 0; right: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        margin: auto;
        background: rgba(91,81,76,0.9);
        transition: background-color 0.2s;
        z-index: 100;
    }
    .navopen:hover {
        background: rgba(91,81,76,0.7);
    }
    .navopen .icon {
        display: block;
        position: relative;
        width: 30%;
        height: 2px;
        border-radius: 2px;
        background: white;
    }
    .navopen .icon::before,
    .navopen .icon::after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background: white;
        transition: top 0.2s, transform 0.2s;
    }
    .navopen .icon::before { top: -6px; }
    .navopen .icon::after { top: 6px; }

    .navopen.active .icon { height: 0; }
    .navopen.active .icon::before { top: 0; transform: rotate(45deg); }
    .navopen.active .icon::after { top: 0; transform: rotate(-45deg); }

	
/** ナビ */
    nav {
        display: block;
        width: 350px;
        position: fixed;
        top: 60px;
        right: 0;
        bottom: 0;
        perspective: 1000px;
        opacity: 0;
        transition: opacity 0.3s;
        z-index: 1000;
        pointer-events: none;
		margin: 0;
		padding: 0;
    }
    nav.active {
        opacity: 1;
        pointer-events: all;
    }
    nav .navinner {
        width: 100%;
        height: 100%;
        padding: 30px 60px;
        color: white;
        background: rgba(91,81,76,0.9);
        font-size: 16px;
        font-weight: 300;
        transform: rotateY(90deg);
        transform-origin: right center;
        transition: transform 0.3s;
    }
    nav.active .navinner {
        transform: none;
    }
    nav li ul {
        display: none;
    }
	nav > .navinner > ul > li > a{
		margin: 0 auto;
	padding: 15px;
	
}
	
    nav li a {
        display: block;
        position: relative;
        padding: 15px 15px;
        line-height: 1.7;
		color: #fff;
		text-decoration: none;
    }
	
    nav li a:not(.expand)::before {
        content: "";
        display: block;
        position: absolute;
        top: 1px; left: 1px; bottom: 0;
        width: 5px;
        height: 5px;
        margin: auto;
        border-top: 1px solid white;
        border-right: 1px solid white;
        transform: rotate(45deg);
    }
    nav li a.expand::before {
        content: "";
        display: block;
        position: absolute;
        top: 1px; left: 0; bottom: 0;
        width: 9px;
        height: 1px;
        margin: auto;
        background: white;
    }
    nav li a.expand::after {
        content: "";
        display: block;
        position: absolute;
        top: 1px; left: 4px; bottom: 0;
        width: 1px;
        height: 9px;
        margin: auto;
        background: white;
    }
    nav li a.expand + ul {
        display: block;
        position: absolute;
        top: 0; right: 350px; bottom: 0;
        padding: 20px 10px 20px 30px;
        width: 350px;
        background: rgba(91,81,76,0.8);
        transform: rotateY(90deg);
        transform-origin: right center;
        transition: all 0.3s;
        opacity: 0;
        visibility: hidden;
    }
    nav li a.expand.active + ul {
        opacity: 1;
        transform: none;
        visibility: visible;
        overflow: auto;
    }
    nav li a.expand + ul li {
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.2s 0.2s;
    }
    nav li a.expand.active + ul > * {
        opacity: 1;
        transform: none;
    }

	nav .navinner ul li a{
	font-weight: 400;
		
	}
	

}
@media (max-width: 767px) {

        nav {
            width: calc(100% - 10px);
        top: 60px;
        }
        nav .navinner {
            padding: 10px;
        }
        nav li a.expand + ul {
            left: 35px;
            width: calc(100% - 35px);
        background: rgba(91,81,76,0.95);
            z-index: 150;
        }
	}

@media print, screen and (min-width:1px) and (max-width: 960px) {

	.sp-only {
		display: block;
	}
	.pc-only {
		display: none;
	}
	
}

@media print{
	header,.navopen{
		position: absolute;
	}
}


/*FOOTER-CONTACT*/
.fcontact{
	background: #f29c50;
	padding: 20px;
}
.fcontact .txt{
	width: 50%;
}
.fcontact .txt h2{
	color: #fff;
	text-align: left;
	line-height: 1.8em;
	font-weight: 500;
	letter-spacing: 0.02;
}
.fcontact .txt h2 span{
	font-size: 1.5rem;
	display: block;
	line-height: 1.8em;
}
.fcontact .txt p{
	color: #fff;
	padding: 30px 0;
	line-height: 1.8em;
}
.fcontact .btn{
	width: 50%;
	text-align: center;
}
.fcontact .btn img{
	max-width: 280px;
}


/*FOOTER*/

.finfo .flogo{
	width: 180px;
	margin: auto;
}
.finfo p{
	text-align: center;
	font-size: 1.3rem;
	margin: 10px auto;
}


footer{
	background-size: 100% auto;
	position:relative;
	background: #fff;
}
.pagetop{
	position:fixed;
	bottom:10px;
	right:10px;
	width:60px;
	height:60px;
	margin:auto;
	z-index:10;
}
.pagetop img{
	width:100%;
	height:auto;
}

.footer-inner{
	max-width: 1280px;
	margin: 0 auto;
	font-size: 1.4rem;
	line-height: 1.8em;
	font-weight: 500;
	padding: 30px 20px;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: flex-start;
}
.footer-inner .footer-info{
	width: 35%;
	padding: 10px;
	margin: 0px auto;
}
.footer-inner .footer-info h2{
	font-size: clamp(15px, 1.6vw, 16px);
	text-align: center;
}
.footer-inner .footer-info p{
	text-align: center;
	margin-bottom: 20px;
}
.footer-inner .footer-info .btnmail{
	max-width: 300px;
	margin: auto;
}
.footer-inner .fnav{
	width: 65%;
	padding: 0 20px;
	margin: 0px auto;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: flex-start;
}
.footer-inner .fnav-link{
	width: 33.3333%;
	padding: 0 0 0 10px;
	margin: 0px auto;
}
.footer-inner .fnav_bl ul.FFlex{
	display: flex;
	flex-wrap: wrap;
}
.footer-inner .fnav ul{
	padding:10px;	
}
.footer-inner .fnav ul li a{
	text-decoration:none;
	color: #5b514c;
	position: relative;
	display: block;
	padding: 2px 0;
	vertical-align: middle;
	text-decoration: none;
}
.footer-inner .fnav ul li a:hover{
	color: #fd6b16;
}
.copyright{
	text-align:center;
	margin:auto;
	font-size:1.3rem;
	padding:10px;
	background: #fff;
}



@media print, screen and (min-width:1px) and (max-width: 960px) {

.footer-inner .footer-info{
	width: 100%;
	padding: 10px;
	margin: 0px auto;
}
.footer-inner .fnav{
	width: 100%;
	padding: 0 20px;
	margin: 0px auto;
}
}
@media print, screen and (min-width:1px) and (max-width: 768px) {

footer .pagetop{
	width:50px;
	height:50px;
}
.footer-inner .fnav-link{
	width: auto;
	padding: 20px 0 0;
	margin: 0px auto;
}
.footer-inner .fnav ul{
	padding:0 10px;	
}
	
}

@media print, screen and (min-width:1px) and (max-width: 530px) {


.footer-inner .fnav-link{
	width: 220px;
	padding: 0 20px;
	margin: 0px auto;
}
	
	
}


.footer-inner .flapielubtn{
	border: 1px solid #999;
	padding: 10px;
	max-width: 220px;
	display: flex;
	align-items: flex-start;
	margin: auto;
	background: #fff;
	margin-bottom: 10px;
	text-align: left;
	margin: 20px auto 10px 0;
}

.footer-inner .flapielubtn .lapieluinsta{
	width: 40px;
}

.footer-inner .seahorsesbtn{
	max-width: 220px;
	text-align: center;
}
