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

	+ wrapper
		- header
		- footer

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


/*----------------------------------------
	body
-----------------------------------------*/

html {
 visibility: hidden;
}

html.wf-active {
 visibility: visible;
animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

html{
		font-size: 62.5%;
		box-sizing: border-box;
	}

header,footer {
width:100%;
}
a { transition:opacity .2s; }
a,a:visited { color: #333;text-decoration: none; }
a:hover { opacity: .7; }

body {
font-family: "Zen Kaku Gothic New", sans-serif;
font-weight: 400;
line-height:2.5;
font-size:  1.6rem;
color: #333;
min-width:100%;
width:100%;
background: #f8f8ec;
}


/*縦書き*/
.text-vertical{
writing-mode:vertical-rl;
-ms-writing-mode:tb-rl;
-moz-writing-mode:vertical-rl;
-webkit-writing-mode:vertical-rl;
}

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

.map {
overflow: hidden;
padding-top: 0;
position: relative;
	height:400px;  
}
.map iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	
	height:400px;  
}

/*----------------------------------------
	header
-----------------------------------------*/
header{
	padding:15px 50px 15px 50px;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background:url("../img/cmn_head_bg.png")repeat-x bottom left;
	z-index: 100;
	position: fixed;
	border-bottom: 1px solid #333;
	background: #f8f8ec;
}

.globalLogo{
	display: flex;
	align-items: center;
}
.globalLogo dl{
	padding:0 10px 0 20px;
}
.globalLogo dt{
	font-size: 1.5rem;
	line-height: 1.7;
	font-weight: 700;
}
.globalLogo dd h1{
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.02rem;
	line-height: 1;
}


/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: absolute;
  z-index : 9999;
  right : 5%;
  top   : 12%;
  width : 45px;
  height: 45px;
  cursor: pointer;
  text-align: center;
}

.globalMenu{
	display: flex;
	align-items: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 45px;
  height  : 1px ;
  left    : 10px;
  background : #333;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 15px;
}
.hamburger span:nth-child(2) {
  top: 28px;
}
.hamburger span:nth-child(3) {
  top: 40px;
}
	
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 20px;
  left: 10px;
  background :#333;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 20px;
  background :#333;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}
	
.globalMenu nav {
	position: fixed;
	height: 100vh;
  z-index :999;
  top  : 0;
  left : 0;
  color: #333;
  background:#f8f8ec;
  text-align: center;
  width: 100%;
  opacity: 0;
	pointer-events: none;
  transition: opacity .6s ease, visibility .6s ease;
	overflow-y: scroll;
}
	
.globalMenu nav.is-active{
  pointer-events: auto;
  opacity: 1;
}
	
.globalMenu nav ul{
	display: block;
	width: 70%;
	margin: 0 auto;
	padding: 3rem 0 0 0;
}

.globalMenu nav li{
	border-bottom: 1px #333 solid;
}
.globalMenu nav li a{
	display: block;
	font-size: 1.8rem;
	text-align: left;
	position: relative;
	padding:30px 0;
	background: url("../img/cmn_arrow.png") no-repeat right center;
	background-size: 20px;
	margin-right: 0;
	color: #333;
}
.globalMenu li a:after {
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  background-color: none;
}
.globalMenu nav li:last-of-type{
	border-bottom: none;
}


/* このクラスを、jQueryで付与・削除する */
.globalMenu nav.active {
  opacity: 100;
transition: 0.5s;
}


	

/*----------------------------------------
	title
-----------------------------------------*/
.main_ttl {
	margin:0 auto;
	/* background: url("../img/cmn_main_ttl_l.png") no-repeat center left,url("../img/cmn_main_ttl_r.png") no-repeat center right; */
	padding:0 30px;
	display: inline-block;
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
}
.cmn_ttl {
	margin:0 auto;
	text-align: center;
	background: #fff;
	padding:150px 0 90px 0;
}

.cmn_sub_ttl {
	line-height: 1.7;
	margin-bottom: 60px;
	padding:20px 0;
	border-top:1px solid #333;
	border-bottom:1px solid #333;
	font-size: calc(18px + 15 * (100vw - 360px) / 840); 
	letter-spacing: 0.3em;
	font-weight: 700;
	text-align: center;
}
.cmn_ttl .ill_ttl{
	margin: -20px 0 0 0;
}
/*----------------------------------------
	wide
-----------------------------------------*/
.cmn_inner {
	position: relative;
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 7%;
}

/*----------------------------------------
	contents_wrap
-----------------------------------------*/

/*----------------------------------------
	cmn_btn
-----------------------------------------*/
a.cmn_btn_y {
	display: block;
	background:url("../img/cmn_arrow.png")no-repeat center right 20px #ffdf2b;
	border-radius: 50px;
	padding: 10px 0;
	max-width: 380px;
	border:1px #333 solid;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0 auto;
	box-shadow: 3px 3px 0px 1px rgba(77,184,122,1);
}

a.cmn_btn_g {
	display: block;
	background:url("../img/cmn_arrow.png")no-repeat center right 20px #ffdf2b;
	border-radius: 50px;
	padding: 10px 0;
	max-width: 380px;
	border:1px #333 solid;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0 auto;
	box-shadow: 3px 3px 0px 1px rgba(225,225,208,1);
}

a.cmn_btn_b {
	display: block;
	background:url("../img/cmn_arrow02.png")no-repeat center right 20px #333;
	border-radius: 50px;
	padding: 10px 0;
	max-width: 380px;
	border:1px #333 solid;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0 auto;
	color: #fff;
	box-shadow: 3px 3px 0px 1px rgba(231,203,48,1);
}
/*----------------------------------------
	footer
-----------------------------------------*/

footer{
	padding:0;
	margin: 0 auto;
}

footer .sns_foot{
	padding:30px 0;
	margin: 0 auto;
	background: #ffdf2b;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
footer .sns_foot ul{
	display: flex;
	justify-content: center;
}
footer .sns_foot ul li{
	padding: 0 10px;
	width: 140px;
}
footer .sns_foot p{
	font-family: 'Montserrat', sans-serif;
font-weight:800;
	font-size: 2.0rem;
}
footer .sns_foot ul:after{
content: "";
	width: 120px;
	display: block;
}

footer .link_foot{
	padding:40px 0;
	margin: 0 auto;
}
footer .link_foot ul{
	display: flex;
	justify-content: center;
}
footer .link_foot ul li{
	padding: 0 10px;
	width: 220px;
}

footer .foot_area{
	background: #cac7b7;
	padding: 0 auto 0 auto;
}
footer .foot_area .cmn_inner{
	display: flex;
	justify-content: space-between;
}
footer .foot_area .map{
	width: 60%;
	margin-top: 6%;
}
footer .foot_area .foot_right{
	width: 35%;
	margin-top: 6%;
}

footer .foot_area  dl{
	padding: 5% 0;
}
footer .foot_area  dt{
	line-height: 1.7;
	font-weight: 700;
}
footer .foot_area  dd{
	line-height: 1.7;
	font-weight: 700;
	font-size: 2.4rem;
}
footer .foot_area ul{
	display: flex;
}
footer .foot_area li{
	padding:0 10px 0 0;
}


footer .foot_copy{
	padding:20px 7%;
	font-size: 12px;
	max-width: 1200px;
	margin: 0 auto;
}
/*ページトップボタン*/
.page-top{
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 9999;
	background: #ffdf2b url("../img/cmn_pagetop.png")no-repeat center center;
	display: block;
	border:1px #777 solid;
	width: 70px;
	height: 70px;
	border-radius: 50%;
}



/*media Queries スマートフォンサイズ（767px以下）で適応したいCSS - スマホ
---------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 767px) {



body {

line-height:2;
font-size:  1.4rem;
}
.pc{
	display:none;
}
.sp{
	display:block;
}

/*----------------------------------------
	header
-----------------------------------------*/
header{
	padding:15px 7% 15px 7%;
	width: 100%;
	box-sizing: border-box;
	z-index: 100;
}
header .logo{
	width: 50px;
}
.globalLogo dl{
	padding:0 0 0 10px;
}
.globalLogo dt{
	font-size: 1.0rem;
	line-height: 1.5;
	font-weight: 700;
}
.globalLogo dd h1{
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.02rem;
	line-height: 1.9;
}
.globalLogo .ico{
	display:none;
}
	
/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: absolute;
  z-index : 9999;
  right : 7%;
  top   : 15%;
  width : 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
}

.globalMenu{
	display: flex;
	align-items: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 40px;
  height  : 1px ;
  left    : 10px;
  background : #333;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 13px;
}
.hamburger span:nth-child(2) {
  top: 24px;
}
.hamburger span:nth-child(3) {
  top: 35px;
}
	
.globalMenu nav ul{
	display: block;
	width: 90%;
	margin: 0 auto;
	padding:20% 0 0 0;
}

.globalMenu nav li{
	border-bottom: 1px #333 solid;
}
.globalMenu nav li a{
	display: block;
	font-size: 1.6rem;
	text-align: left;
	position: relative;
	padding:20px 0;
	background-size: 15px;
	margin-right: 0;
	color: #333;
}
/*----------------------------------------
	title
-----------------------------------------*/
.main_ttl {
	padding:0 20px;
	font-size: 1.5rem;
	background-size: 5px;
}

.cmn_ttl {
	margin:0 auto;
	text-align: center;
	padding:100px 7% 40px 7%;
}
.cmn_ttl .ill_ttl{
	margin: -10px 0 0 0;
}
.cmn_sub_ttl {
	line-height: 1.5;
	margin-bottom: 10%;
	padding:20px 0;
	font-size: calc(22px + 22 * (100vw - 360px) / 840); 
}
/*----------------------------------------
	wide
-----------------------------------------*/
.cmn_inner {
	padding:0 7%;
}
/*----------------------------------------
	cmn_btn
-----------------------------------------*/
a.cmn_btn_y {
	background-size: 18px;
	border-radius: 50px;
	padding:10px 0 10px 0;
	max-width: 90%;
	border:1px #333 solid;
	text-align: center;
	font-size: 1.5rem;
}
a.cmn_btn_g {
	background-size: 18px;
	border-radius: 50px;
	padding:10px 0 10px 0;
	max-width: 90%;
	border:1px #333 solid;
	text-align: center;
	font-size: 1.5rem;
}
a.cmn_btn_b {
	background-size: 18px;
	border-radius: 50px;
	padding:10px 0 10px 0;
	max-width: 90%;
	border:1px #333 solid;
	text-align: center;
	font-size: 1.5rem;
}
/*----------------------------------------
	footer
-----------------------------------------*/

footer{
	padding:0;
	margin: 0 auto;
}

footer .sns_foot{
	padding:30px 0;
	margin: 0 auto;
	position: relative;
	display: block;
}
footer .sns_foot ul{
	display: flex;
	justify-content: center;
}
footer .sns_foot ul li{
	padding: 0 10px;
	width: 120px;
}
footer .sns_foot p{
	text-align: center;
}
footer .sns_foot ul:after{
content: "";
	width: 0;
	display: block;
}

footer .link_foot{
	padding:20px 0;
	margin: 0 auto;
}
footer .link_foot ul{
	display: block;
}
footer .link_foot ul li{
	padding: 0 0;
	background: #fff;
	width:90%;
	margin: 0 auto 10px auto;
	text-align: center;
}
	footer .link_foot ul li img{
	padding: 0 0;
	width:60%;
		margin: 0 auto;
		text-align: center;
}

footer .foot_area{
	padding: 0 auto;
}
footer .foot_area .cmn_inner{
	display: block;
}
	
.map {
overflow: hidden;
padding-top: 0;
position: relative;
	height:250px;  
}
.map iframe{
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 100%;
	
	height:250px;  
}
footer .foot_area .map{
	width: auto;
	margin: 6%;
}
footer .foot_area .foot_right{
	width: auto;
	margin-top: 0;
	padding: 3%;
}
footer .foot_area .foot_set{
	display: flex;
	align-items: center;
	padding:0 0 5% 0;
}
	
footer .foot_area  .foot_logo{
	width: 120px;
}
footer .foot_area  dl{
	padding:0;
	margin-left: 15px;
}
footer .foot_area  dt{
	line-height: 1.7;
	font-weight: 700;
	font-size: 1.1rem;
}
footer .foot_area  dd{
	line-height: 1.7;
	font-weight: 700;
	font-size: 1.5rem;
}
footer .foot_area ul{
	display: flex;
}
footer .foot_area li{
	padding:0 10px 0 0;
}


footer .foot_copy{
	padding:20px 7%;
	font-size: 1.0rem;
	max-width: 1200px;
	margin: 0 auto;
}
/*ページトップボタン*/
.page-top{
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 40px;
	height: 40px;
	background-size: 7px;
}
	
}/*解像度736px以下*/
