
:root {
 --brown: #281C15;
 --orange: #F6624D;
 --yellow: #FDBF5E;
 --green: #4ACBCB;
 --green2: #ACCB4C;
 --green3: #18AEAA;
}

/*
===================================================
        Reset
===================================================
*/
*{
 margin: 0px;
 padding: 0px;
}
li{
 list-style: none;
}
a{
 text-decoration: none;
}
address{
 font-style:normal;
}
/*
===================================================
        Base Setting
===================================================
*/
body {
 -webkit-text-size-adjust:100%;
 line-height: 1.75em;
 letter-spacing: 0.05em;
 color: #333;
 font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック","MS P Gothic","Osaka",arial,sans-serif;
 overflow-x: hidden;
 width: 100%;
}
img{
 max-width: 100%;
 height: auto;
 vertical-align: bottom;
}
.sp-visible{
 visibility: hidden;
 width: 0px;
 height: 0px;
}
.maxWidthFHD{
 max-width: 1920px;
 margin-left: auto;
 margin-right: auto
}
.maxWidth{
 max-width: 1200px;
 padding-left: 15px;
 padding-right: 15px;
 margin-left: auto;
 margin-right: auto
}
.maxWidth2{
 max-width: 1000px;
 padding-left: 15px;
 padding-right: 15px;
 margin-left: auto;
 margin-right: auto
}
.maxWidth3{
 max-width: 800px;
 padding-left: 15px;
 padding-right: 15px;
 margin-left: auto;
 margin-right: auto
}
.maxWidth4{
 max-width: 500px;
 padding-left: 15px;
 padding-right: 15px;
 margin-left: auto;
 margin-right: auto
}
#header .inner{
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 15px;
}
#header .inner #nav ul{
 display: flex;
 flex-wrap: wrap;
 justify-content: flex-end;
}
#header .inner #nav ul li{
 position: relative;
 margin-left: 20px;
}
#header .inner #nav ul li a{
 display: block;
 padding: 5px 0px;
 text-align: center;
}
#header .inner #nav>ul>li>a:before{
 display: block;
 content: "";
 width: 100%;
 height: 3px;
 position: absolute;
 bottom: 4px;
 left: 0px;
 opacity: 0;
 transition: 0.5s;
 background: #fff;
}
#header .inner #nav>ul>li>a:hover:before{
 background: var(--brown);
 opacity: 1;
 transform: translate(0px,4px);
}
#header .inner #nav>ul>li.subMenu>a:before{
 display: none;
}
#header .inner #nav>ul>li.subMenu{
 position: relative;
}
#header .inner #nav>ul>li.subMenu .sub{
 position: absolute;
 opacity: 0;
 pointer-events: none;
 transition:0.5s;
 background: #fff;
 box-sizing: border-box;
 z-index: 3;
 min-width: 10em;
 left: 50%;
 transform: translate(-50%,0);
}
#header .inner #nav>ul>li.subMenu .sub a{
 display: block;
 padding: 10px;
 border-top: solid 1px var(--brown);
 transition: .5s;
 background: #fff;
 text-align: left;
}
#header .inner #nav>ul>li.subMenu:hover .sub{
 opacity: 1;
 pointer-events: auto;
}
#header .inner #nav>ul>li.subMenu .sub a:hover{
 background: #eee;
}
#main{

}
#footer{
 background: var(--brown);
 padding: 50px 15px 15px;
}
#footer .info{
 display: flex;
 align-items: center;
}
#footer .info .logo{
 margin-right: 50px;
}
#footer .copyright{
 text-align: center;
}

#pagetop{
 position: fixed;
 z-index: 2;
 bottom: 15px;
 right: 15px;
 opacity: 0;
 transform: scale(0);
 transition: 0.5s;
}
#pagetop.active{
 opacity: 1;
 transform: scale(1);
}
#pagetop a{
 position: relative;
 transition: 1s;
}
#pagetop a img{
 transform: scale(0.9);
 transition: .5s;
}
#pagetop a:hover{
 filter: brightness(1.5);
}
#pagetop a:hover>img{
 transform: scale(1);
}

#sec_pagettl{
 padding: 50px 0px;
}
#sec_pagettl,
#sec_pagettl h1>.inner{
 background: var(--green2);
}
#sec_pagettl h1>.inner{
 display: inline-block;
 padding-right: 15px;
 position: relative;
 z-index: 2;
}
#sec_pagettl h1{
 position: relative;
 padding:0px 10px 0px 65px ;
 max-width: 1200px;
 margin: 0 auto;
 color: #fff;
 box-sizing: border-box;
 line-height: 0.9em;
}

#sec_pagettl h1:before{
 display: block;
 content: "";
 background: url(../img/page_icon.png) no-repeat center center;
 background-size: 100% auto;
 width: 38px;
 height: 38px;
 position: absolute;
 left: 15px;
 top: 50%;
 transform:translate(0,-55%);
}
#sec_pagettl h1:after{
 display: block;
 content: "";
 width: calc( 100% - 220px );
 border-top: solid 2px #fff;
 position: absolute;
 top: calc( 50% - 2px );
 right: 15px;
}

.sec_info{
 background: var(--green2);
}
.bgGreen .sec_info{
 background: var(--green);
}
.bgGreen3 .sec_info{
 background: var(--green3);
}

/* common css */
.clearfix{
 overflow: hidden;
}
.fLeft{
 float: left;
}
.fRight{
 float: right;
}
.tLeft{
 text-align: left;
}
.tRight{
 text-align: right;
}
.tCenter{
 text-align: center;
}
.vTop{
 vertical-align: top;
}
.vMiddle{
 vertical-align: middle;
}
.vBottom{
 vertical-align: bottom;
}
.m0auto{
 margin: 0 auto;
}
.mb1em{
 margin-bottom: 1em;
}
.mb2em{
 margin-bottom: 2em;
}
.mb3em{
 margin-bottom: 3em;
}
.mb50{
 margin-bottom: 50px;
}
.mb100{
 margin-bottom: 100px;
}
.mt1em{
 margin-top: 1em;
}
.mt2em{
 margin-top: 2em;
}
.mt3em{
 margin-top: 3em;
}
.mt10{
 margin-top: 10px;
}
.mt20{
 margin-top: 20px;
}
.mt30{
 margin-top: 30px;
}
.mt40{
 margin-top: 40px;
}
.mt50{
 margin-top: 50px;
}
.mt100{
 margin-top: 100px;
}
.mr1em{
 margin-right: 1em;
}
.mr2em{
 margin-right: 2em;
}
.mr3em{
 margin-right: 3em;
}
.ml1em{
 margin-left: 1em;
}
.ml2em{
 margin-left: 2em;
}
.ml3em{
 margin-left: 3em;
}
.p5{
 padding: 5px;
}
.p10{
 padding: 10px;
}
.p15{
 padding: 15px;
}
.p20{
 padding: 20px;
}
.p30{
 padding: 30px;
}
.p40{
 padding: 40px;
}
.p50{
 padding: 50px;
}
.p0_5em{
	padding: .5em;
}
.pb1em{
 padding-bottom: 1em;
}
.pb2em{
 padding-bottom: 2em;
}
.pb3em{
 padding-bottom: 3em;
}
.pb50{
 padding-bottom: 50px;
}
.pb100{
 padding-bottom: 100px;
}
.pt1em{
 padding-top: 1em;
}
.pt2em{
 padding-top: 2em;
}
.pt3em{
 padding-top: 3em;
}
.pt10{
 padding-top: 10px;
}
.pt20{
 padding-top: 20px;
}
.pt30{
 padding-top: 30px;
}
.pt40{
 padding-top: 40px;
}
.pt50{
 padding-top: 50px;
}
.pt100{
 padding-top: 100px;
}
.pr1em{
 padding-right: 1em;
}
.pr2em{
 padding-right: 2em;
}
.pr3em{
 padding-right: 3em;
}
.pl1em{
 padding-left: 1em;
}
.pl2em{
 padding-left: 2em;
}
.pl3em{
 padding-left: 3em;
}
.font-s{
 font-size: 80%;
}
.font-ss{
 font-size: 70%;
}
.font-ml{
 font-size: 125%;
}
.font-l{
 font-size: 150%;
}
.font-ll{
 font-size: 180%;
}
.font-lll{
 font-size: 300%;
}
.flex{
 display: flex;
 justify-content: center;
}
.flex.start{
 justify-content: flex-start;
}
.flex.end{
 justify-content: end;
}
.flex.sa{
 justify-content: space-around;
}
.flex.sb{
 justify-content: space-between;
}
.flex.wrap{
 flex-wrap: wrap;
}
.flex.reverse{
 flex-direction: row-reverse;
}
.flex .asCenter{
 align-self: center;
}
.w10,.w20,.w25,.w30,.w33,.w40,.w45,.w50,.w60,.w70,.w80,.w90,.w100{
 box-sizing: border-box;
}
.w10{
 width: 10% !important;
}
.w20{
 width: 20% !important;
}
.w25{
 width: 25% !important;
}
.w30{
 width: 30% !important;
}
.w33{
 width: 33% !important;
}
.w40{
 width: 40% !important;
}
.w45{
 width: 45% !important;
}
.w50{
 width: 50% !important;
}
.w60{
 width: 60% !important;
}
.w70{
 width: 70% !important;
}
.w80{
 width: 80% !important;
}
.w90{
 width: 90% !important;
}
.w100{
 width: 100% !important;
}
.wAuto{
 width: auto;
}
.lh1_2em{
 line-height: 1.2em;
}
.lh1_5em{
 line-height: 1.5em;
}
.lh1_7em{
 line-height: 1.7em;
}
.lh1_75em{
 line-height: 1.75em;
}
.lh2em{
 line-height: 2em;
}
.sp-menuArea {
 display: none;
}
.b{
 font-weight: 700;
 font-family: 'Noto Sans JP', sans-serif;
 /*font-family: 'Noto Serif JP', serif;*/
}
/*
.black .b,
.black.b{
 font-weight: normal;
 text-shadow: 0px -1px 0.75px #333 , 0px -1px 0.75px #333 , 0px -1px 0.75px #333;
}
.white .b,
.white.b{
 font-weight: normal;
 text-shadow: 0px -1px 0.75px #fff , 0px -1px 0.75px #fff , 0px -1px 0.75px #fff;
}*/

.dNone{
 display: none;
}
.dIb{
 display: inline-block;
}
.dBlock{
 display: block;
}

.br10{
 border-radius: 10px;
}
.br20{
 border-radius: 20px;
}

.bgWhite{
 background: #fff;
}
.bgBrown{
 background: var(--brown);
}
.bgGreen{
 background: var(--green);
}
.bgGreen2{
 background: var(--green2);
}
.bgGreen3{
 background: #D5E591;
}
.bgGreen4{
 background: #DCEFED;
}
.bgGreen5{
 background: #18AEAA;
}
.bgOrange{
 background: var(--orange);
}
.bgGray{
 background: #F1F1F1;
}

.underline{
 text-decoration: underline;
}

.white,
.white a{
 color: #fff;
}
.black,
.black a{
 color: #333;
}
.brown,
.brown a{
 color: var(--brown);
}
.orange,
.orange a{
 color: var(--orange);
}
.yellow,
.yellow a{
 color: var(--yellow);
}
.green,
.green a{
 color: var(--green);
}
.green2,
.green2 a{
 color: var(--green2);
}
.green3,
.green3 a{
 color: var(--green3);
}

.border{
 background: linear-gradient(0deg,#4ACBCB 0%,#4ACBCB 38%,transparent 38%);
}

.hover{
 transition: .5s;
}
.hover:hover{
 opacity: .7;
}
.textV{
 -ms-writing-mode: tb-rl;
 writing-mode: vertical-rl;
}

.styleBtn{
 text-align: center;
}
.styleBtn a{
 display: inline-block;
 padding:  20px;
 border-radius: 50px;
 background: var(--brown);
 color: #fff;
 min-width: 250px;
 transition:0.5s;
}
.sec_info .styleBtn a{
 padding: 8px 20px;
}
.styleBtn a:hover{
 opacity: .7;
}
.sp-menuBtn{
 display: none;
}

/*
===================================================
        pc small
===================================================
*/
@media screen and (max-width: 1100px) {
 #header .inner{
  padding: 10px;
 }
 #header #logo img{
  height: 28px;
  width: auto;
 }
 #nav{
  display: none;
 }
 .sp-menuBtn {
  display: block;
  cursor: pointer;
  position: fixed;
  z-index: 999;
  top: 5px;
  right: 12px;
  width: 40px;
  height: 40px;
  line-height: 1.4em;
 }
 .sp-menuBtn .sp-menuBtn__inner {
  transition: transform 0.5s;
  position: relative;
  top: 18px;
  width: 40px;
  height: 2px;
 }
 .sp-menuBtn .sp-menuBtn__inner::after {
  transition: transform 0.5s;
  position: absolute;
  top: -5px;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brown);
  transition: .5s;
 }
 .sp-menuBtn .sp-menuBtn__inner::before {
  transition: transform 0.5s;
  position: absolute;
  top: 5px;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brown);
  transition: .5s;
 }

 .sp-menuBtn.active .sp-menuBtn__inner {
  background: transparent;
 }
 .sp-menuBtn.active .sp-menuBtn__inner::after {
  top:0px;
  animation: 1s animeCloseMenu1 forwards;
 }
 .sp-menuBtn.active .sp-menuBtn__inner::before {
  top:0px;
  animation: 1s animeCloseMenu2 forwards;
 }
 @keyframes animeCloseMenu1{
  0% {
   transform:rotate(0deg);
  }
  50% {
   transform:rotate(0deg);
   background:#fff;
  }
  100% {
   transform:rotate(45deg);
   background:#fff;
  }
 }
 @keyframes animeCloseMenu2{
  0% {
   transform:rotate(0deg);
  }
  50% {
   transform:rotate(0deg);
   background:#fff;
  }
  100% {
   transform:rotate(-45deg);
   background:#fff;
  }
 }
 .sp-menuBtn span {
  color: var(--brown);
  font-weight: bold;
  font-size: 13px;
  position: fixed;
  z-index: 999;
  top: 14px;
  right: 62px;
  display: block;
  width: 40px;
  text-align: center;
  transition: .5s;
 }
 .sp-menuBtn.active span {
  color: #fff;
 }
 .sp-menuArea {
  display: block;
  opacity: 0;
  pointer-events:none;
  position: fixed;
  top: 0px;
  height: 0px;
  width: 100%;
  height: 100%;
  background: var(--brown);
  overflow-y: auto;
  transition: opacity 0.5s;
 }
 .sp-menuArea.active {
  opacity: 1;
  pointer-events:auto;
  z-index: 998;
 }
 .sp-menuArea .sp-menu {
  padding: 50px 10px 10px;
 }
 .sp-menuArea .sp-menu li {
  border-bottom: solid 1px #eee;
 }
 .sp-menuArea .sp-menu li a {
  position: relative;
  display: block;
  padding: 10px 5px 10px 12px;
  color: #fff;
 }
 .sp-menuArea .sp-menu li a::before {
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -5px;
  vertical-align: middle;
  content: "";
  display: block;
  border-left: solid 6px #fff;
  border-top: solid 4px transparent;
  border-bottom: solid 4px transparent;
 }
}


/*
===================================================
        sp
===================================================
*/
@media screen and (max-width: 960px) {
 #footer{
  background: var(--brown);
  padding: 25px 15px 60px;
 }
 #footer .info{
  display: block;
 }
 #footer .info .logo{
  margin-right: 0px;
 }
 #footer .sp_border{
  border-bottom: solid 1px #fff;
  margin-bottom: 5px;
 }

 #sec_pagettl{
  padding: 20px 0px 15px;
 }
 #sec_pagettl h1:after {
  display: none;
 }

 .font-l{
  font-size: 120%;
 }
 .font-ll{
  font-size: 140%;
 }
 .font-lll{
  font-size: 160%;
 }

 .sp-visible{
  visibility: visible;
  width: auto;
  height: auto;
 }
 .sp-hidden{
  visibility: hidden;
  width: 0px;
  height: 0px;
 }
 .sp-dBlock{
  display: block;
 }
 .sp-dIb{
  display: inline-block;
 }
 .sp-dNone{
  display: none;
 }

 .sp-font-ll{
  font-size: 200%;
 }
 .sp-font-l{
  font-size: 140%;
 }
 .sp-font-m{
  font-size: 100%;
 }
 .sp-font-s{
  font-size: 80%;
 }
 .sp-fLeft{
  float: left;
 }
 .sp-fRight{
  float: right;
 }
 .sp-tLeft{
  text-align: left;
 }
 .sp-tRight{
  text-align: right;
 }
 .sp-tCenter{
  text-align: center;
 }
 .sp-vTop{
  vertical-align: top;
 }
 .sp-vMiddle{
  vertical-align: middle;
 }
 .sp-vBottom{
  vertical-align: bottom;
 }
 .sp-mb0{
  margin-bottom: 0px;
 }
 .sp-mb1em{
  margin-bottom: 1em;
 }
 .sp-mb2em{
  margin-bottom: 2em;
 }
 .sp-mb3em{
  margin-bottom: 3em;
 }
 .sp-mb25{
  margin-bottom: 25px;
 }
 .sp-mb50{
  margin-bottom: 50px;
 }
 .sp-mt0{
  margin-top: 0px;
 }
 .sp-mt1em{
  margin-top: 1em;
 }
 .sp-mt2em{
  margin-top: 2em;
 }
 .sp-mt3em{
  margin-top: 3em;
 }
 .sp-mt10{
  margin-top: 10px;
 }
 .sp-mt25{
  margin-top: 25px;
 }
 .sp-mt50{
  margin-top: 50px;
 }
 .sp-mr0{
  margin-right: 0px;
 }
 .sp-ml0{
  margin-left: 0px;
 }
 .sp-pb0{
  padding-bottom: 0px;
 }
 .sp-pb1em{
  padding-bottom: 1em;
 }
 .sp-pb2em{
  padding-bottom: 2em;
 }
 .sp-pb3em{
  padding-bottom: 3em;
 }
 .sp-pb25{
  padding-bottom: 25px;
 }
 .sp-pb50{
  padding-bottom: 50px;
 }
 .sp-pt0{
  padding-top: 0px;
 }
 .sp-pt1em{
  padding-top: 1em;
 }
 .sp-pt2em{
  padding-top: 2em;
 }
 .sp-pt3em{
  padding-top: 3em;
 }
 .sp-pt10{
  padding-top: 10px;
 }
 .sp-pt25{
  padding-top: 25px;
 }
 .sp-pt50{
  padding-top: 50px;
 }
 .sp-pr0{
  padding-right: 0px;
 }
 .sp-pr10{
  padding-right: 10px;
 }
 .sp-pr1em{
  padding-right: 1em;
 }
 .sp-pl0{
  padding-left: 0px;
 }
 .sp-pl10{
  padding-left: 10px;
 }
 .sp-pl1em{
  padding-left: 1em;
 }
 .sp-w10,.sp-w20,.sp-w25,.sp-w30,.sp-w33,.sp-w40,.sp-w50,.sp-w60,.sp-w70,.sp-w80,.sp-w90,.sp-w100{
  box-sizing: border-box;
 }
 .sp-w10{
  width: 10% !important;
 }
 .sp-w20{
  width: 20% !important;
 }
 .sp-w30{
  width: 30% !important;
 }
 .sp-w40{
  width: 40% !important;
 }
 .sp-w50{
  width: 50% !important;
 }
 .sp-w60{
  width: 60% !important;
 }
 .sp-w70{
  width: 70% !important;
 }
 .sp-w80{
  width: 80% !important;
 }
 .sp-w90{
  width: 90% !important;
 }
 .sp-w100{
  width: 100% !important;
 }
 .sp-p0{
  padding: 0px;
 }
 .sp-p10{
  padding: 10px;
 }
 .sp-p20{
  padding: 20px;
 }
 .sp-wAuto{
  width: auto;
 }
 .sp-lh1_5em{
  line-height: 1.5em;
 }
}
/*
===================================================
        animate.css用
===================================================
*/

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes animate__bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.7);
    transform: scale(.7);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes animate__bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.7);
    -ms-transform: scale(.7);
    transform: scale(.7);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes heartBeat {
  0% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9)
  }

  14% {
      -webkit-transform: scale(1.1);
      transform: scale(1.1)
  }

  28% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9)
  }

  42% {
      -webkit-transform: scale(1.1);
      transform: scale(1.1)
  }

  70% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9)
  }
}

@keyframes heartBeat {
  0% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9)
  }

  14% {
      -webkit-transform: scale(1.1);
      transform: scale(1.1)
  }

  28% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9)
  }

  42% {
      -webkit-transform: scale(1.1);
      transform: scale(1.1)
  }

  70% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9)
  }
}

