@charset "UTF-8";

/******************************
  common
******************************/
.imgbox{
  text-align: center;
}
.link-txtunder,
.singlecontent a{
  color: #004B9E;
  text-decoration: underline;
}
.link-txtunder:hover,
.singlecontent a:hover{
  text-decoration: none;
}
.singlecontent p,
.txtbox p:not(:last-of-type){
  margin-bottom: 1rem;
}
.kome,
.ten{
  padding-left: 2rem;
  position: relative;
}
.kome::before,
.ten::before{
  content:"※";
  position: absolute;
  top: 0;
  left: 0;
}
.ten::before{
  content:"・";
}

.bg1 {
  background: rgba(215 ,232 ,222,.2);
}
.bg2{
  background: rgba(190, 233, 255, .2);
}

/******************************
スクルール連動アニメーション
******************************/
.leftover-box {
  overflow: hidden;
}
.leftover-box .leftover-box-in {
  overflow: hidden;
  position: relative;
  transition-delay: 0.1s;
  transform: translate3d(-100.5%, 0px, 0px);
  transition-delay: 0s;
  transition-duration: 1.5s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transform-origin: left center;
  transition-property: transform, -webkit-transform;
}
.leftover-box.animated .leftover-box-in::before {
  transform: scale(0, 1);
}
.leftover-box .leftover-box-in::before {
  content: "";
  background: #009BA3;
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  transform: scaleX(1);
  transition-delay: 0.4s;
  transition-duration: 1.5s;
  transform-origin: right center;
  transition-property: transform, -webkit-transform;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 5;
}
.leftover-box .leftover-box-in img {
  transform: scale(1);
  transition-duration: 4s;
  transition-property: transform, -webkit-transform;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 100%;
}

.leftover-box.animated .leftover-box-in {
  transform: translate3d(0px, 0px, 0px);
}

/******************************
  inner
******************************/
.inner1,
.inner2,
.inner3,
.inner4{
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 2rem;
}
.inner2{
  max-width: 1920px;
}
.inner3{
  max-width: 1280px;
}
.inner4{
  max-width: 1600px;
  padding: 0;
}
.innernp{
  margin: 0 auto;
  max-width: 1920px;
}
.inner2 .inner1,
.inner2 .inner3,
.inner3 .inner1{
  padding: 0 !important;
}

@media only screen and (max-width: 1180px) {
    
}
@media only screen and (max-width: 1024px) {
    
}
@media only screen and (max-width: 820px) {
    
}
@media only screen and (max-width: 768px) {
    
}
@media only screen and (max-width: 767px) {
    
}

/******************************
  flex
******************************/
.flexbox1{
  display: flex;
  flex-wrap: wrap;
}
.flexbox2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flexbox3{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.flex{
  display: flex;
}
.frr{
  flex-direction: row-reverse;
}
.fac{
  align-items: center;
}
.fast{
  align-items: stretch;
}
.fafe{
  align-items: flex-end;
}
.fafs{
  align-items: flex-start;
}
.fabl{
  align-items: baseline;
}

.fbox,
.ftxtbox,
.fimgbox{
  width: 48%;
}
.fimgbox{
  text-align: center;
}

/******************************
  ttl
******************************/
.ttlbox1 {
  margin-bottom: 3rem;
  text-align: center;
}
.ttlbox1 .ttlen{
  color: #009BA3;
  font-size: 5rem;
  line-height: 1.4;
}
.ttlbox1 .ttl{
  color: #565656;
  font-size: 2.4rem;
  font-weight: 500;
}

@media only screen and (max-width: 1180px) {
  
}
@media only screen and (max-width: 1024px) {
  
}
@media only screen and (max-width: 820px) {
  
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  .ttlbox1 .ttlen{
    font-size: 3.2rem;
  }
  .ttlbox1 .ttl{
    font-size: 1.8rem;
  }
}

/******************************
  btn
******************************/
.morebtn1 {
  text-align: center;
}
.morebtn1 a{
  background: #fff;
  border: 1px solid #009BA3;
  color: #009BA3;
  display: block;
  opacity: 1;
  max-width: 350px;
  position: relative;
  width: 100%;
  transition: .5s;
}
.morebtn1 a span{
  display: block;
  padding: 1rem;
  position: relative;
}
.morebtn1 a::before,
.morebtn1 a::after,
.morebtn1 a span::before,
.morebtn1 a span::after{
  content: "";
  background: #009BA3;
  position: absolute;
  transition: .5s;
}
.morebtn1 a::before,
.morebtn1 a::after{
  height: calc(100% - 10px);
  width: 1px;
  transform: scaleY(1);
}
.morebtn1 a span::before,
.morebtn1 a span::after{
  height: 1px;
  width: calc(100% - 10px);
  transform: scaleX(1);
}
.morebtn1 a::before{
  top: 5px;
  left: 4px;
  transform-origin: top left;
}
.morebtn1 a::after{
  right: 4px;
  bottom: 5px;
  transform-origin: bottom right;
}
.morebtn1 a span::before{
  right: 5px;
  bottom: 5px;
  transform-origin: top left;
}
.morebtn1 a span::after{
  top: 5px;
  left: 5px;
  transform-origin: bottom right;
}

.morebtn1 a:hover{
  background: #009BA3;
  color: #fff;
  transition-delay: .4s;
}
.morebtn1 a:hover::before,
.morebtn1 a:hover::after{
  transform: scaleY(0);
}
.morebtn1 a:hover span::before,
.morebtn1 a:hover span::after{
  transform: scaleX(0);
}

/******************************
  tbl
******************************/
.tblbox1 .tbl{
  margin-bottom: .5rem;
}
.tblbox1 .tbl dt,
.tblbox1 .tbl dd{
  border-top: 1px solid #009BA3;
  border-bottom: 1px solid #009BA3;
  padding: .5rem 1rem;
}
.tblbox1 .tbl dt{
  background: #009BA3;
  color: #fff;
  width: 150px;
}
.tblbox1 .tbl dd{
  border-right: 1px solid #009BA3;
  width: calc(100% - 150px);
}
@media only screen and (max-width: 1180px) {
  
}
@media only screen and (max-width: 1024px) {
  
}
@media only screen and (max-width: 820px) {
  
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  .tblbox1 .tbl dt,
  .tblbox1 .tbl dd{
    border-left: 1px solid #009BA3;
    border-right: 1px solid #009BA3;
    width: 100%;
  }
  .tblbox1 .tbl dt{
    border-top: none;
    border-bottom: none;
  }
  .tblbox1 .tbl dd{
    padding: 1rem;
  }
}

/******************************
  header
******************************/
.cmnhead{
  background: rgba(255, 255, 255, .7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.cmnnav ul{
  gap: 1.5rem;
}
.cmnnav a{
  display: block;
  opacity: 1;
  position: relative;
}
.cmnnav a::before{
  content: "";
  background: #009BA3;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: .5s;
  transform-origin: center;
  transform: scaleX(0);
  height: 2px;
  width: 100%;
}
.cmnnav a:hover::before,
.cmnnav a.nowpage::before{
  transform: scaleX(1);
}

.spbtn,
.splogo{
  display: none;
}
.spbtn {
  background: #fff;
  cursor: pointer;
  position: relative;
  width: 50px;
  height: 50px;
  z-index: 9999;
}
.spbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  right: 14px;
  height: 2px;
  border-radius: 2px;
  background: #009BA3;
}
.spbtn span:nth-of-type(1) {
  top:15px;	
  width: 45%;
}
.spbtn span:nth-of-type(2) {
  top:23px;
  width: 35%;
}
.spbtn span:nth-of-type(3) {
  top:31px;
  width: 20%;
}
.spbtn.active span:nth-of-type(1) {
  top: 18px;
  right: 18px;
  transform: translateY(6px) rotate(-135deg);
  width: 30%;
}
.spbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.spbtn.active span:nth-of-type(3){
  top: 30px;
  right: 18px;
  transform: translateY(-6px) rotate(135deg);
  width: 30%;
}
.splogo{
  margin-bottom: 2rem;
}

@media only screen and (max-width: 1180px) {
  
}
@media only screen and (max-width: 1024px) {
  
}
@media only screen and (max-width: 820px) {
  .spbtn,
  .splogo{
    display: block;
  }
  .cmnnav {
    background-color: #f0fdfe;
    max-width: 380px;
    padding: 2rem 3rem;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    transform: translateX(100%);
    transition: ease.4s;
  }
  .cmnnav.active {
    transform: translateX(0);
  }
  .cmnnav li{
    width: 100%;
  }
  .cmnnav li a{
    background: #009BA3;
    border: 1px solid #009BA3;
    color: #fff;
    font-weight: bold;
    padding: .3rem 1rem;
  }
  .cmnnav li a::before{
    display: none;
  }
  .cmnnav li a:hover,
  .cmnnav li a.nowpage{
    background: #fff;
    color: #009BA3;
  }
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  
}

/******************************
  footer
******************************/
.cmnfot{
  padding: 5rem 0 0;
}
.cmnfot::before,
.cmnfot::after{
  content: "";
  background: url(../images/common/fotbg.webp) no-repeat center / cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cmnfot::before{
  opacity: .2;
}
.cmnfot::after{
  background: rgba(190, 233, 255, .2);
}
.cmnfot .fotlogo{
  margin-bottom: 2rem;
}
.cmnfot .fotinfo address{
  font-style: normal;
}
.cmnfot .fotcon dt{
  padding-right: 1.8rem;
  position: relative;
}
.cmnfot .fotcon dt::before{
  content: "：";
  position: absolute;
  top: 0;
  right: 0;
}
.cmnfot .fotlinks{
  gap: 4rem;
}
.cmnfot .fotlinks > ul:last-of-type{
  display: none;
}
.cmnfot .fotlinks .haschild ul li{
  padding-left: 1rem;
  position: relative;
}
.cmnfot .fotlinks .haschild ul li::before{
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}
.fotcopy{
  padding: 4rem 0 2rem;
  text-align: center;
}
@media only screen and (max-width: 1180px) {
  
}
@media only screen and (max-width: 1024px) {
  
}
@media only screen and (max-width: 820px) {
  
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  .cmnfot .fotlinks{
    margin-top: 2rem;
  }
  .cmnfot .fotlinks > ul{
    display: none;
  }
  .cmnfot .fotlinks > ul:last-of-type{
    display: block;
  }
  .fotcopy{
    font-size: 1.4rem;
  }
}