﻿@charset "utf-8";

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

  Layout

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

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

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

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

header {
  width:100%;
  background-color:#fff;
}

.l-hd {
  text-align:left;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  justify-content:space-between;
}

.l-hd-conad {
  line-height:1.5;
}

.l-hd-tel,
.l-hd-accessBtn {
  color: #127c56;
  display:inline-block;
  vertical-align:middle;
}

.l-hd-tel,
.l-hd-tel:visited,
.l-hd-tel:hover {
  text-decoration:none;
}

.l-hd-accessBtn {
  margin-top:4px;
  margin-left:16px;
  padding-left:1.25em;
  padding-right:1.25em;
  padding-top:0.3em;
  padding-bottom:0.3em;
}

@media print,screen and (min-width:901px) {
  header {
    padding-left:40px;
    padding-right:40px;
  }
  
  .l-hd {
    max-width:1180px;
    margin-left:auto;
    margin-right:auto;
    padding-top:30px;
	padding-bottom:32px;
    -webkit-box-align:end;
    -ms-flex-align:end;
    align-items:flex-end;
  }
  
  .l-hd .p-siteTtl {
    padding-bottom:0.2em;
  }
  
  .l-hd-tel {
    font-size:1.66em;
    margin-right: 20px;
  }
}

@media screen and (max-width:900px) {
  html.is-gNavOpen header {
    position:fixed;
    top:0;
  }
  
  header {
    position:relative;
    z-index:100;
  }
  
  .l-hd {
    height:70px;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
  }
  
  .l-hd .p-siteTtl {
    padding-top:0.5em;
    padding-bottom:0.5em;
	padding-left: 1em;
  }
  

  .l-hd .p-siteTtl a:before {
    width:38px;
    height:40px;
  }
  
  .l-hd .l-hd-tel {
    display:none;
  }
  
  .l-hd-conad address,
  .l-hd-accessBtn {
    display:none;
  }
}

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

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

@media screen and (max-width:900px) {
  .l-gNavBtn {
    width:70px;
    height:70px;
    position:fixed;
    top:0;
    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:26px;
  height:21px;
}
      
.l-gNavBtn__icon span {
  position:absolute;
  left:0;
  width:100%;
  height:3px;
  background-color:#6baaed;
}
  
.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;
}

@media print,screen and (min-width:1281px) {
  .l-gNav__item > a {
    font-size:1.25em;
  }
}

@media print,screen and (min-width:641px) and (max-width:1180px) {
  .l-gNav__item > a {
    font-size:1.15em;
  }
}

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

  .l-gNav__item > a,
  .l-gNav__item > a:visited { color:#50403b; }
  .ua-pc .l-gNav__item > a:hover { color:#eb5f73 }

  .l-gNav {
    text-align:center;
    background-color:#fff;
  }
  
  .l-gNavList {
    position:relative;
    max-width:1180px;
    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 {
	font-size:0.88em;
    display:block;
    padding:18px 0.5em;
    position:relative;
  }
  
  .l-gNav__item {
    -webkit-box-flex:2;
    -ms-flex-positive:2;
    flex-grow:2;
    align-self:center;
  }
  
  .l-gNav__item > a:before {
    content:"";
    width:1px;
    height:2em;
    background-color:#dee1e2;
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
  }
	
  .l-gNav__item:after {
    content:"";
    width:1px;
    height:2em;
    background-color:#dee1e2;
    position:absolute;
    right: 0;
    top:50%;
    transform:translateY(-50%);
  }
  
  .l-gNav__item.active > a:after {
    content:"";
    width:100%;
    height:2px;
    background-color:#6baaed;
    position:absolute;
    left:0;
    bottom:0;
  }
  
  .l-gNav-access {
    display:none;
  }
  
  .l-gNav-conad {
    display:none;
  }
}


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

  .l-gNavList a,
  .l-gNavList a:visited,
  .l-gNavList a:hover { color: #50403b; }
  
  .l-gNav-wrap {
    display:none;
    pointer-events:none;
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:99;
    background-color:#fff;
    padding-top:70px; /* headerの分 */
  }
  
  .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;
    text-align:left;
  }
  
  .l-gNav__item > a {
    display:block;
    padding:0.6em 0.8em;
    border-bottom:1px solid #dee1e2;
    font-size:1.11em;
    font-weight:400;
  }
  
  .l-gNav-conad {
    padding-bottom:2em;
  }
  
  .l-gNav-conad address {
    line-height:1.7;
    display:block;
    padding-bottom:0.8em;
  }
  
  .l-gNav-tel {
    font-size:2.2em;
  }
	
  .l-hd-access{
      display: none;
  }
}


/*--------------------------------------------------------------------------------
  Dropdown
--------------------------------------------------------------------------------*/

.l-gNav-parent {
  overflow:visible;
}

.l-gNav-child-wrap {
  min-width: calc(100%/7);
}

.l-gNav-child {
  width:100%;
  list-style:none;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  justify-content: center;
  /*-ms-flex-wrap:wrap;
  flex-wrap:wrap;*/
  flex-flow: column;
}

.l-gNav-child li a {
    display:block;
}

@media print,screen and (min-width:901px) {
  .l-gNav-parent.is-active > a {
    color:#E3485E;
  }

  .l-gNav-child-wrap {
    display:none;
    position:absolute;
    top:100%;
    z-index:90;
    -webkit-transition:padding 0.3s ease-out;
    transition:padding 0.3s ease-out;
  }
  
  .l-gNav-child-wrap.is-active {
    display:block;
    padding-top:1.5em;
  }
  
  .l-gNav-child a,
  .l-gNav-child a:visited { color:#50403b; }
  .ua-pc .l-gNav-child a:hover { color:#FF96A5; }

  .l-gNav-child {
    border:2px solid #FFEDEF;
    background-color:#fff;
	font-weight: 300;
    padding:1em;
	box-sizing: border-box;
  }

  .l-gNav-child li {
    width:100%;
  }
  
  .l-gNav-child li a {
    padding:0.5em 0;
	box-sizing: border-box;
  }
}

@media screen and (max-width:900px) {  
  .l-gNav-parent > a {
    padding-top:0.8em;
    padding-bottom:0.4em;
    border-bottom:0;
    cursor:inherit;
  }
  
  .l-gNav-child a,
  .l-gNav-child a:visited,
  .l-gNav-child a:hover { color:#eb5f73; }
  
  .l-gNav-child-wrap {
    display:block;
  }
  
  .l-gNav-child {
    font-weight:400;
    padding-left:1em;
    padding-bottom:1em;
    border-bottom:1px solid #dee1e2;
  }

  .l-gNav-child li {
    width:50%;
  }
  
  .l-gNav-child li a {
    padding-top:0.4em;
    padding-bottom:0.4em;
    padding-left:1.4em;
    display:block;
    position:relative;
  }

  .l-gNav-child li a::before {
    content:"";
    display:inline-block;
    width: 0;
    height: 0;
    border-left: 0.5em solid #eb5f73;
    border-top: 0.25em solid transparent;
    border-bottom: 0.25em solid transparent;
    padding-right: 0.25em;
    vertical-align: 1px;
  }
}


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

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

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

.l-cnt,
.l-cnt--pc {
  max-width:1180px;
  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;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background: rgba(112,204,105,0.6);
  background: linear-gradient(135deg, rgba(112,204,105,0.6) 0%, rgba(110,187,171,0.6) 50%, rgba(107,170,237,0.6) 100%);
}

.l-pgTtl h1 {
  position: absolute;
  font-family:'Shippori Mincho', serif; 
  font-weight:500;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  top: 50%;
  left:50%;
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
  overflow:hidden;
  line-height: 1.2;
}


@media print,screen and (min-width:641px) {
  .l-pgTtl {
	text-align: left;
    height:200px;
  }
  
  .l-pgTtl h1 {
    font-size:2.44em;
  }
	
  .l-pgTtl h1 span.jp-ttl{
    font-size:16px;
  }
	
}

@media print,screen and (min-width:641px) and (max-width:1180px) {
  .l-pgTtl h1{
    padding-left: 40px;
    padding-right: 40px;	
  }
}

@media screen and (max-width:640px) {
  .l-pgTtl {
    height:160px;
  }
  
  .l-pgTtl h1 {
    font-size:2.22em;
	text-align: center;
  }
	
	.l-pgTtl h1 span.jp-ttl{
    font-size:14px;
  }
  
}

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

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

.l-pan ul {
  text-align:left;
  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;
  }
}


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

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

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

.l-backtoTop {
  display:none;
  width:56px;
  height:56px;
  background-color:rgba(19,179,155,0.6);
  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:#127c56;
}

.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:2.6em;
    height:2.6em;
    right:1em;
    bottom:1em;
  }
  
  .l-backtoTop__icon:after {
    width:0.7em;
    height:0.7em;
  }
}


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

footer .l-hd-tel{
  color: #13b39b; 
}

.l-ftNav__item a{
  color: #fff;
  text-decoration: none;
}

.l-ft{
  display: flex;
}

.l-ftNavList{
  list-style: none;
  text-align: left;
  width: 100%;
}

.l-ftNav-child{
  list-style: none;
  text-align: left;
}

.l-ftNav-child li a::before{
  content:"_";
  padding-right: 5px;
}

.l-ft .outline-list{
  list-style: none;
}

.l-ft-copy{
  padding-top:1em; 
  color: #127c56;
}

@media print,screen and (min-width:1001px) {
  footer{
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .l-ft{
    justify-content: space-between;
  }

  .l-ft .p-siteTtl {
    padding-bottom:0.2em;
    margin-right: 60px;
    margin-bottom: 15px;
  }
	
  footer .outline-list{
    margin-top: 20px;
  }
	
  .l-ftNavList{
    display: flex;
    justify-content: space-between;
    max-width: 790px;
  }

  .l-ftNav__item > a {
    font-size: 0.88em;
  }

  .l-ftNav__item > div:not(:first-of-type){
    margin-top: 24px;
  }

  .l-ftNav-child {
    margin-top: 20px;
  }

  .l-ftNav-child a {
    font-size: 0.77em;
  }

  .l-ft-copy{
    font-size: 0.77em;
  }
}

@media print,screen and (max-width:1000px) {
  footer{
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .l-ft{
	flex-wrap: wrap;
    justify-content: center;
  }

  .l-ft .p-siteTtl {
    padding-bottom:0.2em;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }
	
  .l-ft .p-siteTtl + p{
    margin-bottom: 5px;
  }

  .l-ft .p-siteTtl > a{
    font-size: 1.22em;
  }

  .l-ft-copy{
    font-size: 0.88em;
  }
	
  footer .l-hd-tel{
    font-size: 1.6em; 
  }
	
}

