@charset "UTF-8";

/* -------------------- COMMON -------------------- */
body {
  font-family: "游ゴシック", "YuGothic", "メイリオ", meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 62.5%;
  color: #333;
  background: #fff;
  line-height: 1;
}

a {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #0089b0;
  text-decoration: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.spN {display: none!important;}
.pcN {display: block!important;}
  @media screen and (min-width: 768px) {
    .spN {display: block!important;}
    .pcN {display: none!important;}
  }

p {
  font-size: 1.4em;
  line-height: 1.5;
}

/* ------- Fade ------- */
.fadeIn{
  animation-name:fadeInAnime;
  animation-duration:2s;
  animation-fill-mode:forwards;
  opacity:0;
}
  @keyframes fadeInAnime{
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

/* -- scroll -- */
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}
.fade-in-up {
  transform: translate(0, 50px);
}
.fade-in-down {
  transform: translate(0, -50px);
}
.fade-in-left {
  transform: translate(-50px, 0);
}
.fade-in-right {
  transform: translate(50px, 0);
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}


/* -------------------- HEADER -------------------- */
#header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  top: 0;
  width: 100%;
  height: 75px;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 10;
}
#header .logo {
  position: absolute;
  padding-left: 40px;
}
#header .logo img {
  height: 40px;
  width: auto;
}
  @media screen and (max-width: 767px) {
    #header {
      position: fixed;
      display: block;
      align-items: center;
      justify-content: space-between;
      text-align: center;
      top: 0;
      width: 100%;
      height: 75px;
      margin: 0 auto;
      padding: 10px 20px;
      background-color: rgba(255, 255, 255, 0.8);
      z-index: 10;
    }
    #header .logo {
      position: absolute;
      padding: 10px 40px 0 0;
    }
    #header .logo img {
      height: 40px;
      width: auto;
    }
  }

/* ------- Navigation Button ------- */
.nav-menu {
  position: absolute;
  right: 60px;
}

.nav-wrap .nav-inner {
}
.nav-wrap ul li {
  display: inline-block;
  margin-left: 40px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 1.8em;
}
.nav-wrap ul li a {
  text-decoration: none;
  color: #333;
}
.nav-wrap ul li a:hover {
  text-decoration: none;
  color: #0089b0;
}

@media screen and (max-width: 767px) {

    /* -- Close Button -- */
    .nav-button {
      position: fixed;
      top: 25px;
      right: 20px;
      width: 36px;
      height: 28px;
      cursor: pointer;
      z-index: 101;
    }
    .nav-line {
      position: absolute;
      top: 0;
      bottom: 0;  
      left: 0;
      right: 0;
      margin: auto;
      height: 3px;
      width: 100%;
      background: #333;
    }
    .nav-line::before,
    .nav-line::after {
      content: "";
      height: 3px;
      width: 100%;
      background: #333;
      position: absolute;
      left: 0;
      -webkit-transition: inherit;
      transition: inherit;
    }
    .nav-line::before{
      top: -12px;
    }
    .nav-line::after{
      top: 12px;
    }

    /* -- Open Button -- */
    /*--openNav---*/
    .openNav nav{
      opacity:1;
      visibility:visible;
    }
    .openNav .nav-wrap {
      visibility: visible;
      opacity: 1;
    }
    .openNav .nav-button {
      border-color: #fff
    }
    .openNav .nav-line {
      background-color: transparent;
    }
    .openNav .nav-line::before,
    .openNav .nav-line::after {
      top: 0;
      background: #fff;
    }
    .openNav .nav-line::before {
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    .openNav .nav-line::after {
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }

    /* -- Button Menu -- */
    .nav-wrap {
      position: fixed;
      display: block;
      justify-content: center;
      right: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      visibility: hidden;
      opacity: 0;
      z-index: 100;
    }
    .nav-wrap .nav-inner {
      position: relative;
      align-items: center;
      justify-content: space-between;
      top: 70px;
      left: 0;
      overflow-x: hidden;
      overflow-y: auto;
    }
    .nav-wrap ul {
      padding: 0;
    }
    .nav-wrap ul li {
      text-align: center;
      width: 100%;
      margin: 0;
    }
    .nav-wrap ul li a {
      display: block;
      padding: 30px; 
      font-size: 1.5rem;
      font-weight: 500;
      line-height: 0;
      color: #fff;
      text-shadow: initial;
      transition: .4s ease;
    }
    .nav-wrap ul li a:hover {
      background: rgba(92,185,207,0);
      color: #fff;
    }
}


/* -------------------- MAIN -------------------- */

/* ------- キービジュアル ------- */
#mainVisual {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  border: solid 1px #fff;
  z-index: 1;
}
#mainVisual-inner {
  position: relative;
  width: 70%;
  margin: 10vw auto 7vw;
  text-align: right;
  background: #fff;
}
#mainVisual img {
  max-width: 65%;
  height: auto;
}
#mainVisual p.message01 {
  position: absolute;
  top: 30%;
  left: 0;
  padding: 5px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 3vw;
  line-height: 1.3em;
  color: #333;
  text-align: left;
  text-shadow:
     1px 1px 0px #fff, -1px -1px 0px #fff,
    -1px 1px 0px #fff,  1px -1px 0px #fff,
     1px 0px 0px #fff, -1px  0px 0px #fff,
     0px 1px 0px #fff,  0px -1px 0px #fff;
}
#mainVisual p.message02 {
  position: absolute;
  top: 56%;
  left: 0;
  margin: 20px 0;
  padding-left: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 0.8vw;
  /*letter-spacing: 0.02em;*/
  color: #333;
  text-shadow:
     1px 1px 0px #fff, -1px -1px 0px #fff,
    -1px 1px 0px #fff,  1px -1px 0px #fff,
     1px 0px 0px #fff, -1px  0px 0px #fff,
     0px 1px 0px #fff,  0px -1px 0px #fff;
}
  @media screen and (max-width: 767px) {
    #mainVisual {
      position: static;
      width: 100%;
      margin: 60px auto 40px;
      text-align: center;
      border: solid 1px #fff;
      background: #fff;
    }
    #mainVisual-inner {
      position: static;
      width: 100%;
      margin: 0;
      text-align: center;
    }
    #mainVisual img {
      max-width: 85%;
      height: auto;
      margin: 20px auto 10px;
    }
    #mainVisual p.message01 {
      position: static;
      top: 0;
      left: 0;
      margin: 5px auto;
      padding: 0 10px;
      text-align: center;
      font-size: 2em;
      font-weight: 600;
      letter-spacing: 0.06em;
    }
    #mainVisual p.message02 {
      position: static;
      width: 100%;  
      margin: 0 auto 20px;
      padding: 0;
      font-weight: 500;
      font-size: 1.2em;
    }
  }

/* -------------------- Contents -------------------- */
#contents {
  margin: 0 auto;
  margin-top:-70px;
  padding-top:70px;
  text-align: center;
  color: #333;
}
  @media screen and (max-width: 767px) {
    #contents {
      padding-top: 30px;
      overflow:hidden;
    }
  }

/* ------- 背景固定 ------- */
.cnt-fixed-bg {
  position: relative;
}
.cnt-fixed-bg::after {
  content: "";
  width: 100vw;
  height: 100vh;
  background-image: url('../img/top/bgImg.jpg');
  background-size: cover;
  position: fixed;
  top: 75px;
  left: 0px;
  z-index: -1;
}

/*.cnt-fixed-bg {
  background-image: url('../img/top/bgImg.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
}*/


 @media screen and (max-width: 767px) {
    .cnt-fixed-bg::after {
      background-image: url('../img/top/bgImg_sp.jpg');
    }
 /*    .cnt-fixed-bg::before {
      background-image: url('../img/top/bgImg_sp.jpg') no-repeat center;
      background-size: cover; 
      content: ""; 
      display: block; 
      position: fixed;
      top: 70px; 
      left: 0;
      z-index: -1;
      width: 100%;
      height: 100vh;
    }*/
  }


/* ------- 背景 Block ------- */
.blueBlockLT {
  position: relative;
  padding: 20px 0;
  /*background-color:rgba(255,255,255,0);*/
}
.blueBlockLT::before{
  content:"";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 0 0 100vw ;
  border-color: transparent transparent transparent rgba(221, 221, 221, 0.6);
}
.blueBlockLT p {
  width: 50%;
  margin: 0 auto;
  padding: 0 0 20px;
}
.blueBlockMB {
  text-align: center;
  padding: 20px;
  /*background-color: #eee;*/
  background-color: rgba(221, 221, 221, 0.6);
}
.blueBlockRB {
  position: relative;
  padding: 20px 0;
}
.blueBlockRB::before{
  content:"";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 0 0 100vw ;
  border-color: rgba(221, 221, 221, 0.6) rgba(221, 221, 221, 0.6) rgba(221, 221, 221, 0.6) transparent;
}
.blueBlockMF {
  text-align: center;
  padding: 20px;
}
.blueBlockMG {
  text-align: center;
  padding: 20px;
  /*background-color: #eee;*/
  background-color: rgba(221, 221, 221, 0.6);
}
.blueBlockRT {
  position: relative;
  padding: 20px 0;
}
.blueBlockRT::before {
  content:"";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 100vw;
  border-color: rgba(221, 221, 221, 0.6) rgba(221, 221, 221, 0.6) rgba(221, 221, 221, 0.6) transparent;
}
.blueBlockLB {
  position: relative;
  padding: 20px 0;
}
.blueBlockLB::before {
  content:"";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 100vw;
  border-color: transparent transparent transparent rgba(221, 221, 221, 0.6);
}

.mainBox {
  margin: 0 auto;
  width: 60%;
}
.mainBox p {
  padding-top: 10px; 
  font-size: 1.5em;
}
  @media screen and (max-width: 767px) {
    .mainBox {
      margin: 0 auto;
      width: 100%;
    }
  }

/* ------- テキスト ------- */
h1 {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.4em;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  border-bottom: 2px solid #97cfda;
}
h1::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 2px;
  background-color: #5cb9cf;
}
h1 span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.detail01, .detail02, .detail03 {
  text-align: center;
  font-size: 1.5em;
}
.detail01 {
  position: relative;
  padding: 10px 0 15px;
}
.detail01::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: #97cfda;
  border-radius: 6px;
}
.detail02 {
  position: relative;
  padding: 10px 0 2px;
  text-align: center;
}
.detail03 {
  position: relative;
  padding: 15px 0 2px;
}
.detail03::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: #97cfda;
  border-radius: 6px;
}

/* ------- Accordion ------- */
.accordion-area {
  list-style: none;
  width: 90%;
  margin: 0 auto;
}
.accordion-area li {
  margin: 0 0 20px;
  border-bottom: solid 1px #ccc;
}

.detailA {
  position: relative;
  cursor: pointer;
  font-size: 1.1em;
  padding: 10px;
  transition: all .5s ease;
}
.detailA::before,
.detailA::after {
  position: absolute;
  content:'';
  width: 12px;
  height: 2px;
  background-color: #999; 
}
.detailA::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
.detailA::after {    
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}
.detailA.close::before {
  transform: rotate(45deg);
}
.detailA.close::after {
  transform: rotate(-45deg);
}

.boxA {
  display: none;
  margin: 0;
  padding: 10px;
  text-align: left;
  font-size: 1.2em;
  line-height: 1.6;
  background: #f3f3f3;
  border-top: solid 1px #ccc;
}
.boxA span {
  padding: 0 2px 0;
  font-size: 1em;
  color: #ccc;
}


/* ------- PAGETOP ------- */
.ScrollTop {
  position: fixed;
  right: 15px;
  bottom: 55px;
  height: 50px;
  text-decoration: none;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 12px;
  line-height: 1.5rem;
  color: #737373;
  padding: 0 0 0 35px;
  border-top: solid 1px;
  opacity: 0;
  transition: all 0.65s;
}
.ScrollTop:before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}
.ScrollTop.isActive {
  opacity: 1;
  transition: all 0.65s;
}


/* -------------------- FOOTER -------------------- */
#footer {
  display: block;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  background: #bbb;
}
#footer p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 1.5em;
  color: #666;
}
