﻿@charset "utf-8";

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

  Layout

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

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

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

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

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

.l-hd {
  position: relative;
  /*display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  justify-content:space-between;*/
}

.l-hd .main_logo{
  max-width: 280px;
  vertical-align: middle;
  width: 100%;
  padding-left: 10px;
  position: absolute;
  top: 50%;
  /*left: 50%;*/
  transform: translateY(-50%);
  -webkit- transform: translateY(-50%);
}

@media print,screen and (min-width:641px) {
  header {
    padding-left:40px;
    padding-right:40px;
  }
  
  .l-hd {
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
    /*padding-top:32px;
    padding-bottom:8px;*/
    -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.77em;
  }
}

@media screen and (max-width:640px) {
  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:0.5em;
  }
  
  .l-hd .p-siteTtl a {
    padding-left:44px;
  }

  .l-hd .p-siteTtl a:before {
    width:38px;
    height:40px;
  }
  
  .l-hd .p-siteTtl .ttl-en {
    font-size:10px;
  }
  
  .l-hd .p-siteTtl .ttl-jp {
    font-size:20px;
    display:inline-block;
  }
  
  .l-hd-tel {
    display:none;
  }
  
  .l-hd-conad address,
  .l-hd-accessBtn {
    display:none;
  }
}

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

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

@media screen and (max-width:640px) {
  .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:30px;
  height:21px;
}
      
.l-gNavBtn__icon span {
  position:absolute;
  left:0;
  width:100%;
  height:3px;
  background-color:#19873b;
}
  
.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-snsList{
  list-style: none;
  display: flex;
  margin-top: 15px;
  margin-bottom: 15px;
}

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

.l-snsList li:not(:last-child){
  margin-right: 15px;
}

.l-gNav-wrap{
  position: relative;    
}

body.m-fixed .l-gNav-wrap {
  position: fixed;
  top: 0px;
  left: 0%;
  z-index: 99;
  width: 100%;
}

@media print,screen and (min-width:641px) {
  body.m-fixed .l-gNav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    min-width: 1140px;
  }
    
  body.m-fixed .l-gNav-wrap .l-gNav__item:first-child{
    padding-left: 60px;
    position: relative;
    transition: 0.2s;
  }
    
  body.m-fixed .l-gNav-wrap .l-gNav__item:first-child::before{
    content: "";
    width: 50px;
    height:50px;
    display: block;
    background: url("../image/logo_txt_none.png") no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
  }
}

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

  .l-gNav__item > a,
  .l-gNav__item > a:visited { color:#585656; }
  .ua-pc .l-gNav__item > a:hover { color:#93c135; }

  .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:10px 0.5em;
    font-weight:300;
    position:relative;
    font-size:0.88em;
  }
  
  .l-gNav__item {
    align-self:center;
  }
    
  .l-gNav__item:not(:first-child) {
    margin-left: 30px;
  }
	
  .l-gNav__item:last-child {
    margin-left: auto;
  }
  
  .l-gNav__item.active > a:after {
    content:"";
    width:100%;
    height:2px;
    background-color:#92c035;
    position:absolute;
    left:0;
    bottom:0;
  }
  
  .l-gNav-access {
    display:none;
  }
  
  .l-gNav-conad {
    display:none;
  }
}

@media print,screen and (min-width:641px) and (max-width:1280px) {
  .l-gNavList{
    padding-left: 30px;
    padding-right:30px;
  }
	
  .l-gNav__item:not(:first-child) {
    margin-left: 20px;
  }

  .l-gNav__item:last-child {
    margin-left: auto;
  }
    
  body.m-fixed .l-gNav-wrap .l-gNav__item:first-child{
    padding-left:50px;
    position: relative;
    transition: 0.2s;
  }
    
  body.m-fixed .l-gNav-wrap .l-gNav__item:first-child::before{
    content: "";
    width: 40px;
    height:40px;
    display: block;
    background: url("../image/logo_txt_none.png") no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top:5px;
  }
       
}


@media screen and (max-width:640px) {
  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:#92c035; }
  
  .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;
    
  }
  
  .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 {
    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-snsList{
margin-top: 30px; 
margin-left: 12px;
}
    
}
/*----------------------------------------------------------------------------------------------------

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

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

.l-cnt,
.l-cnt--pc {
  max-width:1260px;
  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:before {
  content:"";
  width:100%;
  height:100%;
  position:absolute;
  left:0;
  top:0;
}

.l-pgTtl h2 {
  background:url("../image/headline.jpg");
  height:100%;
  font-weight:400;
  color:#19873b;
  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;
  overflow:hidden;
}

@media print,screen and (min-width:641px) {
  .l-pgTtl {
    height:180px;
  }
  
  .l-pgTtl h2 {
    height:180px;
    font-size:2.22em;
  }
	
}

@media print,screen and (min-width:641px) and (max-width:1400px) {
  .l-pgTtl:before {
    background-size:88% auto;
  }
}

@media screen and (max-width:640px) {
  .l-pgTtl {
    height:180px;
  }
  
  .l-pgTtl h2 {
    height:180px;
    font-size:2em;
  }
}

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

@media screen and (max-width:480px) {
  .l-pgTtl h2 { font-size:1.88em; }
}

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

.l-pan {
  margin-top:1em;
  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;
  }
}


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

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

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

.l-backtoTop {
  display:none;
  width:56px;
  height:56px;
/*width:80px;
  height:102px;*/
  border-radius:100%;
  background-color:rgba(18,170,165,0.6);
  background-color: #19873b;
  /*background: url("../image/back-to-top.jpg") no-repeat center;*/
  /*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(18,170,165,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:2.6em;
    height:2.6em;
  /*width:40px;
    height:51px;*/
    right:1em;
    bottom:1em;
  }
  
  .l-backtoTop__icon:after {
    width:0.7em;
    height:0.7em;
  }
}


/*--------------------------------------------------------------------------------
  Map
--------------------------------------------------------------------------------*/

.l-ft-gmap {
  height:400px;
}

.l-ft-gmap iframe {
  width:100%;
  height:100%;
  vertical-align:bottom;
}

@media screen and (max-width:640px) {
  .l-ft-gmap {
    width:100%;
    height:400px;
  }
}

footer {
  background-color:#fff; 
}

.l-ft-cliinfo > a > img{
    margin-bottom: 20px;
}
 
.l-ft-cliinfo address {
  line-height:1.7;
  display:block;
}
  
.l-ft-cliinfo address .yno {
  display:inline-block;
  padding-right:1em;
}

.l-ft-tel {
  display:inline-block;
  padding-top:0.2em;
}

.l-ft-tel a,
.l-ft-tel a:visited,
.l-ft-tel a:hover {
  color:inherit;
  text-decoration:none;
}

.ua-tab .l-ft-tel a,
.ua-sp .l-ft-tel a {
  text-decoration:underline;
}

.l-ft-cliinfo address {
  display:block;
}

.l-ft-accessBtn {
  display:inline-block;
  vertical-align:middle;
  padding-left:1.25em;
  padding-right:1.25em;
  padding-top:0.3em;
  padding-bottom:0.3em;
}

.l-ft .p-siteTtl {
  padding-bottom:1.2em;
}

.l-ft-clipointList {
  padding-top:1.6em;
  list-style:none;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  justify-content:space-between;
}

.l-ft-clipointList li {
  width:49%;
  padding:0.4em;
  line-height:1.4;
  text-align:center;
  background-color:#369854;
  border-radius:10px;
}

.l-ft-ssl {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
  -ms-flex-align:center;
  align-items:center;
}

@media print,screen and (min-width:641px) {
  footer {
    padding-top:56px;
    padding-bottom:56px;
  }
  
  .l-ft {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
    /*align-items:baseline;*/
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
  }
  
  .l-ft-cliinfo {
    width:43%;
  }
  
  .l-ft-hrs {
    width:57%;
    padding-left:6.25%;
    padding-top:32px;
  }
  
  .l-ft-cliinfo address .ad {
    display:inline-block;
    margin-right:1em;
  }

  .l-ft-clipointList {
    font-size:0.9em;
  }

  .l-ft-btm {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
    -webkit-box-align:end;
    -ms-flex-align:end;
    align-items:flex-end;
    padding-top:40px;
  }
}

@media screen and (max-width:640px) {
  footer {
    padding-top:2.25em;
    padding-bottom:2.5em;
    text-align:center;
  }
    
  .l-ft-clipointList {
    flex-wrap: wrap;
  }

  .l-ft-clipointList li {
    width:100%;
  }
    
  .l-ft-clipointList li:first-child{
    margin-bottom: 10px;
  }
  
  .l-ft .p-siteTtl {
    display:inline-block;
    padding-bottom:1.25em;
  }
  
  .l-ft-cliinfo address {
    font-size:1em;
  }
  
  .l-ft-cliinfo address .yno {
    display:block;
    padding-right:0;
  }
  
  .l-ft-cliinfo address .ad {
    display:block;
    padding-bottom:1em;
  }
  
  .l-ft-tel {
    font-size:1.8em;
    padding-top:0.4em;
    padding-bottom:0.2em;
  }
  
  .l-ft-hrs {
    padding-top:2em;
  }

  .l-ft-btm {
    padding-top:2.5em;
  }
  
  .l-ft-ssl .pc-view {
    display:none;
  }
  
  .l-ft-copy {
    padding-top:2em;
  }
}

.fixed-snsList{
    position: fixed;
    right:0;
    top:160px;
    z-index: 30;
}

.fixed-snsList{
    list-style: none;
}
.fixed-snsList li:not(:last-child){
    margin-bottom: 10px;
}