﻿@charset "utf-8";

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

  Layout

    1.  Header
    2.  Navigation
    3.  Contents
    4.  Footer

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

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

  1. Header
  
----------------------------------------------------------------------------------------------------*/

header {
  width:100%;
  position: absolute;
  z-index: 2;
}

.l-hd {
  text-align:left;
}

.l-hd {
	margin-left:auto;
	margin-right:auto;
}

.hd-inner {
	width: 100%;
	max-width: 1288px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
	position: relative;
}

.l-hd .p-siteTtl {
	position: absolute;
	left: 0;
	top: 0;
}

.l-hd .intro {
	position: absolute;		
	top: 24px;
	left: 200px;
	color: #737373;
	font-size: 14px;
	font-weight: 300;
}

.l-hd .l-hd-conad {
	position: absolute;
	top: 24px;
	right: 24px;
	list-style: none;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}	
.l-hd .l-hd-conad li {
	display: block;
}	
.l-hd .l-hd-conad li a {
	color: inherit;
	text-decoration: none;
}
.l-hd .l-hd-conad .tel a {
	display: block;
	padding-left: 24px;
	margin-right: 24px;
	background-image: url("../image/header/ic-tel.png");
	background-repeat: no-repeat;
	background-position: left center;
	font-size: 24px;
	font-weight: 700;
	line-height: 24px;
}
.l-hd .l-hd-conad .access a {
	display: block;
	padding-left: 24px;
	background-image: url("../image/header/ic-access.png");
	background-repeat: no-repeat;
	background-position: left center;
	font-size: 18px;
	font-weight: 300;
	line-height: 24px;
}

.l-hd-tel {
	font-size:1.77em;
}

@media screen and (max-width:890px) {
	.l-hd .intro {
		left: auto;
		right: 24px;
	}
	
	.l-hd .l-hd-conad {
		top: 54px;
	}	
}

@media screen and (max-width:800px) {
	.l-hd .intro {
		right: 80px;
	}
	
	.l-hd .l-hd-conad {
		right: 80px;
	}		
}

@media screen and (max-width:590px) {
	.l-hd .intro {
		display: none;
	}
	
	.l-hd .l-hd-conad {
		flex-wrap: wrap;
		width: 200px;
		top: 20px;
		right: 60px;
	}
	
	.l-hd .l-hd-conad .tel a {
		margin-right: 0;
		margin-bottom: 12px;
	}
}

@media screen and (max-width:460px) {
	.l-hd .p-siteTtl {
		width: 120px;
	}
}

@media screen and (max-width:400px) {		
	.l-hd .l-hd-conad {
		width: 100px;
		top: 26px;
	}
	.l-hd .l-hd-conad .tel {
		display: none;
	}
}

/*--------------------------------------------------------------------------------
  SP Nav button
--------------------------------------------------------------------------------*/

@media print,screen and (min-width:801px) {
  .l-gNavBtn {
    display:none;
  }
}

@media screen and (max-width:800px) {
  .l-gNavBtn {
    width:60px;
    height:60px;
    position:fixed;
    top:10px;
    right:0;
    cursor:pointer;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
  }
}

.l-gNavBtn__icon,
.l-gNavBtn__icon span,
.l-gNavBtn__icon span:before,
.l-gNavBtn__icon span:after {
  display:inline-block;
}
  
.l-gNavBtn__icon {
  position:relative;
  width:30px;
  height:21px;
}
      
.l-gNavBtn__icon span {
  position:absolute;
  left:0;
  width:100%;
  height:3px;
  background-color:#0f9984;
}
  
.l-gNavBtn__icon span:nth-of-type(1) {
  top:0;
}
.l-gNavBtn__icon span:nth-of-type(2) {
  top:9px;
}
.l-gNavBtn__icon span:nth-of-type(3) {
  bottom:0;
}
  
.l-gNavBtn.is-aniSet .l-gNavBtn__icon span:nth-of-type(1) {
  -webkit-animation:navBtn01 0.4s forwards;
  animation:navBtn01 0.4s forwards;
}
  
.l-gNavBtn.is-aniSet .l-gNavBtn__icon span:nth-of-type(2) {
  transition:opacity 0.2s 0.2s;
  opacity:1;
}
  
.l-gNavBtn.is-aniSet .l-gNavBtn__icon span:nth-of-type(3) {
  -webkit-animation:navBtn02 0.4s forwards;
  animation:navBtn02 0.4s forwards;
}
  
.l-gNavBtn.is-close .l-gNavBtn__icon span:nth-of-type(1) {
  -webkit-animation:active-navBtn01 0.4s forwards;
  animation:active-navBtn01 0.4s forwards;
}
  
.l-gNavBtn.is-close .l-gNavBtn__icon span:nth-of-type(2) {
  opacity:0;
}
  
.l-gNavBtn.is-close .l-gNavBtn__icon span:nth-of-type(3) {
  -webkit-animation:active-navBtn03 0.4s forwards;
  animation:active-navBtn03 0.4s forwards;
}

@-webkit-keyframes navBtn01 {
  0% {
    -webkit-transform:translateY(9px) rotate(45deg);
  }
  50% {
    -webkit-transform:translateY(9px) rotate(0);
  }
  100% {
    -webkit-transform:translateY(0) rotate(0);
  }
}
@keyframes navBtn01 {
  0% {
    transform:translateY(9px) rotate(45deg);
  }
  50% {
    transform:translateY(9px) rotate(0);
  }
  100% {
    transform:translateY(0) rotate(0);
  }
}
@-webkit-keyframes navBtn02 {
  0% {
    -webkit-transform:translateY(-9px) rotate(-45deg);
  }
  50% {
    -webkit-transform:translateY(-9px) rotate(0);
  }
  100% {
    -webkit-transform:translateY(0) rotate(0);
  }
}
@keyframes navBtn02 {
  0% {
    transform:translateY(-9px) rotate(-45deg);
  }
  50% {
    transform:translateY(-9px) rotate(0);
  }
  100% {
    transform:translateY(0) rotate(0);
  }
}
@-webkit-keyframes active-navBtn01 {
  0% {
    -webkit-transform:translateY(0) rotate(0);
  }
  50% {
    -webkit-transform:translateY(9px) rotate(0);
  }
  100% {
    -webkit-transform:translateY(9px) rotate(45deg);
  }
}
@keyframes active-navBtn01 {
  0% {
    transform:translateY(0) rotate(0);
  }
  50% {
    transform:translateY(9px) rotate(0);
  }
  100% {
    transform:translateY(9px) rotate(45deg);
  }
}
@-webkit-keyframes active-navBtn03 {
  0% {
    -webkit-transform:translateY(0) rotate(0);
  }
  50% {
    -webkit-transform:translateY(-9px) rotate(0);
  }
  100% {
    -webkit-transform:translateY(-9px) rotate(-45deg);
  }
}
@keyframes active-navBtn03 {
  0% {
    transform:translateY(0) rotate(0);
  }
  50% {
    transform:translateY(-9px) rotate(0);
  }
  100% {
    transform:translateY(-9px) rotate(-45deg);
  }
}


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

  2. Navigation
  
----------------------------------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------------
  Global navigation
--------------------------------------------------------------------------------*/

.l-gNav a,
.l-gNav a:visited,
.l-gNav a:hover { text-decoration:none; }

.l-gNavList {
  list-style:none;
}

.l-sns__item > a{
  width: 80px;
  height:80px;
  display: block;
}

.l-gNav-wrap{
  position: absolute;
	top: 80px;
	right: 0px;
	transition: .3s;
}

.not-top .l-gNav-wrap{
  right: 0px;
}

@media print,screen and (max-width:890px) {
	.l-gNav-wrap{
		top: 92px;
		right: 0px;
	}
}


@media print,screen and (min-width:801px) {
  .l-gNav-wrap,
  .l-gNav {
    display:block !important;
  }

  .l-gNav__item > a,
  .l-gNav__item > a:visited { color:#3e3937; }
  .ua-pc .l-gNav__item > a:hover { color:#ef858c; }

  .l-gNav {
    text-align:center;
    background-color:#fff;
  }
  
  .l-gNavList {
    position:relative;
    max-width:1260px;
    list-style:none;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    /*-ms-flex-pack:distribute;
    justify-content:space-around;*/
    margin-left:auto;
    margin-right:auto;
  }

  .l-gNav__item > a {
    display:block;
    padding:0;
    font-weight:300;
    position:relative;
  }
  
  .l-gNav__item {
    /*-webkit-box-flex:2;
    -ms-flex-positive:2;
    flex-grow:2;*/
    align-self:center;
		padding-right: 15px;
		margin-right: 15px;
		line-height: 1;
  }
    
	.l-gNav__item:not(:last-child) {
		border-right: 1px solid #d9d9d9;
	}
  
	/*
  .l-gNav__item.active > a:after {
    content:"";
    width:100%;
    height:2px;
    background-color:#ef858c;
    position:absolute;
    left:0;
    bottom:0;
  }
	*/
  
  .l-gNav-access {
    display:none;
  }
  
  .l-gNav-conad {
    display:none;
  }   

}

@media print,screen and (max-width:1500px) {
    .l-gNav__item:first-child {
        margin-left: 30px;
    }	
}

@media screen and (max-width:800px) {
  html.is-gNavOpen {
    overflow-y:hidden;
  }
  
  html.is-gNavOpen .l-gNav-wrap {
    z-index: -1;
    display:block;
  }

  .l-gNavList a,
  .l-gNavList a:visited,
  .l-gNavList a:hover { color:#373737; }
  
  .l-gNav-wrap {
    display:none;
    pointer-events:none;
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1;
    background-color:#fff;
    padding-top:100px; /* headerの分 */
    text-align: right;
  }
  
  .l-gNav {
    display:none;
    pointer-events:auto;
    padding-left:-webkit-calc(40 / 760 * 100vw);
    padding-right:-webkit-calc(40 / 760 * 100vw);
    padding-left:calc(40 / 760 * 100vw);
    padding-right:calc(40 / 760 * 100vw);
    height:100%;
    pointer-events:auto;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
  }
  
  .l-gNavList {
    padding-top:1em;
    padding-bottom:2em;
    
  }
  
  .l-gNav__item > a {
    display:block;
    padding:0.6em 0.8em;
    border-bottom:1px solid #dee1e2;
    font-size:1.2em;
    font-weight:500;
  }
  
  .l-gNav-conad {
    text-align: center;
  }
  
  .l-gNav-conad address {
    line-height:1.7;
    display:block;
    font-size:2.0rem;
    text-align: center;
  }
  
  .l-gNav-tel {
    font-size:2em;
    text-align: center;
  }
    
  .l-gNav__item:first-child {
    margin-left: 0px;
  }  

    
}

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

  3. Contents
  
----------------------------------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------------
  Container
--------------------------------------------------------------------------------*/

.inner {
	width: 100%;
	max-width: 1124px;
	margin-right: auto;
	margin-left: auto;
}

@media screen and (max-width:1164px) {
	.inner {
		width: calc(100% - 40px);
	}
}

.l-cnt,
.l-cnt--pc {
  max-width:1260px;
  box-sizing: border-box;
  /*box-sizing:content-box;*/
  margin-left:auto;
  margin-right:auto;
}

@media print,screen and (min-width:641px) {
  .l-cnt,
  .l-cnt--pc {
      
    padding-left:30px;
    padding-right:30px;
  }
}

@media screen and (max-width:640px) {
  .l-cnt,
  .l-cnt--sp {
    padding-left:-webkit-calc(40 / 760 * 100vw);
    padding-right:-webkit-calc(40 / 760 * 100vw);
    padding-left:calc(40 / 760 * 100vw);
    padding-right:calc(40 / 760 * 100vw);
  }
}


/*--------------------------------------------------------------------------------
  Page title
--------------------------------------------------------------------------------*/

 .l-pgTtl {
 position:relative;
}

.l-pgTtl h2 {
  background: linear-gradient(to right, #d4f3fd, #eafaff);
  color: #0f9984;
	font-weight: 500;
  height:100%;
  display:flex;
  align-items:center;
  overflow:hidden;
	letter-spacing: .2ex;
}
.l-pgTtl h2 .sub-ttl{
	display: block;
  color: #3e3937;
}

.l-pgTtl {
	padding-top: 120px;
	height:300px;
}

.l-pgTtl h2 {
	height:300px;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
}

.l-pgTtl h2 .sub-ttl{
	font-size: 1.8rem;
	text-align: center;
}

@media screen and (max-width:880px) {
	.l-pgTtl {
		padding-top: 130px;
	}
}

@media screen and (max-width:800px) {
	.l-pgTtl {
		padding-top: 108px;
	}
}

@media screen and (max-width:400px) {
	.l-pgTtl {
		padding-top: 80px;
	}
}



/*
@media screen and (max-width:640px) {
  .l-pgTtl {
    height:120px;	
  }
  
  .l-pgTtl h2 {
    height:120px;
    font-size: 2.8rem;
		justify-content: flex-end;
	  padding-right: calc(40 / 760 * 100vw); 
  }
    
  .l-pgTtl h2 .sub-ttl{
    font-size: 1.4rem;
	  text-align: right;
  }
}

@media screen and (max-width:560px) {
  .l-pgTtl {
    height:-webkit-calc(160 / 560 * 100vw);
    height:calc(120 / 560 * 100vw);
  }
  
  .l-pgTtl h2 {
    height:-webkit-calc(180 / 560 * 100vw);
    height:calc(120 / 560 * 100vw);
  }
}

@media screen and (max-width:480px) {
  .l-pgTtl h2 { font-size:2.0rem; }
}
*/

/*--------------------------------------------------------------------------------
  パンくず
--------------------------------------------------------------------------------*/

.l-pan {
	margin-top: 120px;
  margin-bottom:56px;
  padding-top:0.5em;
  padding-bottom:0.5em;
}

.l-pan ul {
  font-size:0.85em;
}

.l-pan li {
  display:inline-block;
  position:relative;
  padding-left:1.25em;
}

.l-pan li:before {
  content:"";
  display:inline-block;
  width:0.5em;
  height:1px;
  position:absolute;
  top:50%;
  left:0.25em;
  background-color:rgba(33,53,62,0.6);
}

.l-pan li:first-child { padding-left:0; }
.l-pan li:first-child:before { display:none; }

@media screen and (max-width:640px) {  
  .l-pan {
    margin-bottom:1.5em;
  }
    
  .ua-tab .l-pan,
  .ua-sp .l-pan {
    -webkit-overflow-scrolling:touch;
    overflow-x:auto;
  }
  
  .ua-tab .l-pan ul,
  .ua-sp .l-pan ul {
    white-space:nowrap;
  }

  .ua-tab .l-pan::-webkit-scrollbar,
  .ua-sp .l-pan::-webkit-scrollbar {
    height:2px;
  }
  .ua-tab .l-pan::-webkit-scrollbar-track,
  .ua-sp .l-pan::-webkit-scrollbar-track {
    background:transparent;
    border-radius:1px;
  }
  .ua-tab .l-pan::-webkit-scrollbar-thumb,
  .ua-sp .l-pan::-webkit-scrollbar-thumb {
    border-radius:1px;
    background:#ccc;
  }
}


/*--------------------------------------------------------------------------------
  text-indent
--------------------------------------------------------------------------------*/

.txt-id {
	display: inline-block;
}

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

  3. Footer
  
----------------------------------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------------
  Back to top
--------------------------------------------------------------------------------*/

.l-backtoTop {
  display:none;
  width:58px;
  height:58px;
  background-color: rgba(148,227,253,0.6);
  background-size: contain;
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:90;
  cursor:pointer;
  -webkit-transition:background 0.15s ease-out;
  transition:background 0.15s ease-out;
}

.ua-pc .l-backtoTop:hover {
  background-color:rgba(148,227,253,1);
}

.l-backtoTop__icon {
  height:100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:center;
  -ms-flex-pack:center;
  justify-content:center;
  -webkit-box-align:center;
  -ms-flex-align:center;
  align-items:center;
}

.l-backtoTop__icon:after {
  content:"";
  display:inline-block;
  width:0.8em;
  height:0.8em;
  margin-top:0.2em;
  border-top:2px solid #fff;
  border-right:2px solid #fff;
  -webkit-transform:rotate(-45deg);
  transform:rotate(-45deg);
}

@media screen and (max-width:640px) {
  .l-backtoTop {
    width:40px;
    height:40px;
    right:1em;
    bottom:1em;
  }
}

/*--------------------------------------------------------------------------------
  fix-icon
--------------------------------------------------------------------------------*/

.fix-tel-ic {
	position: fixed;
	top: 200px;
	right: 0;
  cursor:pointer;
}

.ua-pc .fix-tel-ic {
	display: none;
}

.fix-line-ic {
	position: fixed;
	top: 260px;
	right: 0;
  cursor:pointer;
}

footer {
	margin-top: 62px;
}

footer .inner {
	display: flex;
	justify-content: space-between;
}

.ft-box {
	width: calc(50% - 18px);
	line-height: 1.4;
}

.ft-box .ft-logo {
	margin-bottom: .5em;
}

.ft-box .ft-tel {
	display: block;
	width: 200px;
	padding-left: 24px;
	margin-right: 24px;
	background-image: url("../image/header/ic-tel.png");
	background-repeat: no-repeat;
	background-position: left center;
	color: inherit;
	font-size: 24px;
	font-weight: 700;
	text-decoration: none;
}

.ft-box .ft-sinryo {
	margin: .5em 0;
}
.ft-box .ft-sinryo p {
	display: inline-block;
	width: 150px;
	height: 30px;
	line-height: 30px;
	border-radius: 15px;
	margin-right: .5em;
	background-color: #0f9984;
	color: #fff;
	text-align: center;
}
.ft-box .ft-sinryo p:last-of-type {
	margin-right: 0;
}

.ft-box .p-hrsTbl {
	margin-top: .5em;
}

.ft-box .ft-cartion span {
	color: #ef858c;
}

.ft-copy {
	margin: 1em 0;
	text-align: center;
}

@media screen and (max-width:860px) {
	footer .inner {
		flex-wrap: wrap;
	}
	.ft-box {
		width: 100%;
		max-width: 580px;
		overflow: hidden;
		margin: 0 auto 36px;
	}
	.ft-logo {
		display: block;
		float: left;
		margin-right: 16px;
	}	
	.ft-position {
		float: right;
		width: 320px;
	}	
}

@media screen and (max-width:620px) {
	.ft-box {
		text-align: center;
	}
	.ft-logo {
		float: none;
		margin: 0 auto;
	}
	.ft-position {
		float: none;
		margin: 0 auto;
	}
	.ft-box .ft-tel {
		margin: 0 auto;
	}
}

@media screen and (max-width:480px) {
	.fix-tel-ic {
		top: 240px;
	}
	.fix-line-ic {
		top: 180px;
	}
}

@media screen and (max-width:400px) {
	.fix-line-ic {
		top: 280px;
	}
	.fix-tel-ic img,
	.fix-line-ic img {
		width: 40px;
		height: 40px;
	}
}


@media screen and (max-width:360px) {
	.ft-position {
		width: 260px;
	}	
	.ft-box .ft-sinryo p {
		width: 120px;
	}
}