@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Calligraffitti|Open+Sans");
html {
  font-size: 62.5%;
}

body {
  color: #141414;
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

/* フォントサイズ */
h1 {
  font-size: 5rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1rem;
}

/* color変数 */
/* フォント変数 */
/* コンポーネント */
.ly_section {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-right: 6vw;
  padding-left: 4vw;
  position: relative;
}

.ly_inner {
  margin: 0 auto;
  max-width: 1180px;
  min-height: 650px;
}

.ly_wrapper {
  position: relative;
  padding-left: 4vw;
  padding-right: 4vw;
}

.el_telBtn {
  color: #e7c21b;
  font-weight: bold;
  width: 340px;
  display: block;
  font-size: 2rem;
  text-align: left;
  line-height: 3;
  letter-spacing: 0.1rem;
  text-shadow: 0px 0px 10px #ffffff;
  z-index: 999;
}

.el_telBtn .fas.fa-phone {
  font-size: 1.2em;
  margin-right: 0.5em;
  display: inline-block;
}

.el_telBtn .fa-phone:before {
  vertical-align: middle;
}

.el_blueBox {
  position: absolute;
  background-color: #0d8cd0;
  height: 120px;
  width: 70vw;
  bottom: 0;
  z-index: -9999;
}

.el_splashLr {
  position: absolute;
  background-image: url(../img/水飛沫LR.png);
  background-repeat: no-repeat;
  width: 50%;
  height: 500px;
  bottom: -50px;
  left: 0;
  z-index: -9999;
}

.el_splashRl {
  position: absolute;
  background-image: url(../img/水飛沫RL.png);
  background-repeat: no-repeat;
  width: 50%;
  height: 500px;
  bottom: -50px;
  right: 0;
  z-index: -9999;
}

/* ローディングアニメーション */
.loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #20a3ea;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

.sea {
  border: none;
}

.LightWaves {
  -webkit-animation: lightwaves 2s infinite;
          animation: lightwaves 2s infinite;
  position: relative;
}

@-webkit-keyframes lightwaves {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(5px, 5px);
            transform: translate(5px, 5px);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  50% {
    -webkit-transform: translate(25px, 5px);
            transform: translate(25px, 5px);
  }
  75% {
    -webkit-transform: translate(12px, 10px);
            transform: translate(12px, 10px);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@keyframes lightwaves {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(5px, 5px);
            transform: translate(5px, 5px);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  50% {
    -webkit-transform: translate(25px, 5px);
            transform: translate(25px, 5px);
  }
  75% {
    -webkit-transform: translate(12px, 10px);
            transform: translate(12px, 10px);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.DarkWaves {
  -webkit-animation: darkwaves 3.8s infinite;
          animation: darkwaves 3.8s infinite;
}

@-webkit-keyframes darkwaves {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(25px, 5px);
            transform: translate(25px, 5px);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  50% {
    -webkit-transform: translate(12px, 10px);
            transform: translate(12px, 10px);
  }
  75% {
    -webkit-transform: translate(5px, 5px);
            transform: translate(5px, 5px);
  }
}

@keyframes darkwaves {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(25px, 5px);
            transform: translate(25px, 5px);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  50% {
    -webkit-transform: translate(12px, 10px);
            transform: translate(12px, 10px);
  }
  75% {
    -webkit-transform: translate(5px, 5px);
            transform: translate(5px, 5px);
  }
}

.WhiteWaves {
  -webkit-animation: whitewaves 4s alternate ease infinite;
          animation: whitewaves 4s alternate ease infinite;
}

@-webkit-keyframes whitewaves {
  0% {
    -webkit-transform: translate(0, 25px);
            transform: translate(0, 25px);
  }
  100% {
    -webkit-transform: translate(25px, 35px);
            transform: translate(25px, 35px);
  }
}

@keyframes whitewaves {
  0% {
    -webkit-transform: translate(0, 25px);
            transform: translate(0, 25px);
  }
  100% {
    -webkit-transform: translate(25px, 35px);
            transform: translate(25px, 35px);
  }
}

/* ヘッダー */
header {
  position: fixed;
  width: 60px;
  height: 100%;
  right: 0;
  border: 1px solid #dddddd;
}

header .el_location {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin: 100px auto 0 auto;
  letter-spacing: 0.5em;
}

/* ファーストビュー */
.ly_fv {
  height: 100vh;
  position: relative;
}

.ly_fv .el_telBtn {
  margin-left: auto;
}

.ly_fv .bl_fv_logo {
  position: absolute;
  top: 150px;
  left: 61vw;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  z-index: 999;
}

.ly_fv .bl_fv_logo_main {
  letter-spacing: 1em;
  font-family: rocknroll-one, sans-serif;
  font-size: 8rem;
  text-shadow: 0px 0px 10px #ffffff;
}

.ly_fv .bl_fv_logo_sub {
  letter-spacing: 2em;
  text-indent: 1em;
  font-weight: 600;
  margin-left: -20px;
  text-shadow: 0px 0px 10px #ffffff;
}

.ly_fv .bl_fv_logo_sub span {
  color: #0d8cd0;
}

.ly_fv .el_fv_img_big {
  background: url(../img/fv.jpg);
  background-position: center;
  width: 55vw;
  height: 600px;
  position: absolute;
  top: 0;
  left: 50px;
  z-index: -1;
}

.ly_fv .el_fv_img_small {
  background: url(../img/fv_small.jpg);
  background-position: top;
  background-size: cover;
  width: 30vw;
  height: 250px;
  position: absolute;
  bottom: 30px;
  right: 100px;
  z-index: -2;
}

.ly_fv .el_wave {
  background: url(../img/波@2x.png);
  background-position: top;
  background-size: cover;
  width: 38vw;
  height: 400px;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -999;
}

body.noscroll {
  overflow: hidden;
}

.bl_drawer {
  position: fixed;
  top: 0;
  right: -25px;
  width: 500px;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 62px 10px;
  -webkit-transform: translateX(500px);
  transform: translateX(500px);
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 9999;
  text-align: center;
}

.bl_drawer_item {
  margin-bottom: 50px;
}

.bl_drawer_item a {
  font-family: rocknroll-one, sans-serif;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
}

.bl_drawerBtn {
  position: fixed;
  top: 0px;
  left: -67px;
  width: 60px;
  height: 60px;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  cursor: pointer;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  color: #ffffff;
  padding-bottom: 2px;
  z-index: 999;
  border: 1px solid #dddddd;
}

.hambarg {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 4px;
  width: 40px;
  background: #000000;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.hambarg:nth-child(1) {
  top: 30%;
  left: 50%;
}

.hambarg:nth-child(2) {
  top: 50%;
  left: 50%;
}

.hambarg:nth-child(3) {
  top: 70%;
  left: 50%;
}

.bl_drawer.action {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.bl_drawerBtn.action {
  left: 0;
}

.bl_drawerBtn.action .hambarg:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #ffffff;
}

.bl_drawerBtn.action .hambarg:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  background-color: #ffffff;
}

.bl_drawerBtn.action .hambarg:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #ffffff;
}

/* ページトップボタン */
@-webkit-keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.el_pageTop {
  display: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.el_pageTop .fa-angle-double-up {
  color: #0d8cd0;
  font-weight: normal;
  font-family: FontAwesome;
  position: fixed;
  left: 50px;
  top: 87vh;
  z-index: 999;
  cursor: pointer;
  text-shadow: 0px 0px 5px #ffffff;
}

.el_pageTop .fa-angle-double-up::before {
  font-size: 5rem;
}

.el_pageTop.show {
  display: block;
  -webkit-animation: show 1s linear 0s;
          animation: show 1s linear 0s;
}

/*=== 9-1-2 丸が動いてスクロールを促す ====*/
/*スクロールダウン全体の場所*/
.scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: fixed;
  bottom: 0px;
  right: 30px;
  z-index: 999;
}

/* 魚アイコンの描写 */
.scrolldown2:before {
  content: "\f578";
  font-weight: 400;
  font-family: FontAwesome;
  font-size: 1em;
  color: #000000;
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -6px;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@-webkit-keyframes circlemove {
  0% {
    bottom: 90px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 90px;
  }
  100% {
    bottom: 0px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

/* 線の描写 */
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 100px;
  background: #000000;
}

/* ここから各セクション */
.bl_section_cont {
  max-width: 50%;
  width: 400px;
  padding: 50px 30px 50px 30px;
}

.bl_section_cont_lead {
  margin-bottom: 30px;
  text-align: center;
}

.bl_section_cont i {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}

.bl_section_cont > .fas {
  color: #0d8cd0;
  font-size: 4rem;
}

.bl_section_cont_ttl {
  text-align: center;
  font-family: rocknroll-one, sans-serif;
  white-space: nowrap;
  position: relative;
  margin-bottom: 90px;
  letter-spacing: 0.4em;
}

.bl_section_cont_ttl::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../img/タイトル下線.png) no-repeat;
  background-size: contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 70px;
  left: 50%;
}

.bl_section_img {
  width: 30vw;
  position: absolute;
  top: 40px;
  right: 50px;
  z-index: -1;
}

.bl_section_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#news .bl_section_img {
  height: 140%;
  max-height: 575px;
}

#about .bl_section_img {
  height: 90%;
}

#system .bl_section_img {
  height: 103%;
}

#contact .bl_section_img {
  height: 43%;
}

.news_list {
  max-width: 907px;
  border-collapse: collapse;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-top: 33px;
}

.news_list dt {
  display: block;
  color: #333;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 5.8rem;
  width: 100%;
}

.news_list dt:hover,
.news_list dt :focus {
  text-decoration: underline;
}

.news_list dd {
  display: none;
  width: 70vw;
  color: #333;
  font-size: 1.2rem;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 28px 37px;
}

#results .bl_section_cont {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}

.bl_section_resultsCard {
  border: 1px solid #dddddd;
  background-color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.bl_section_resultsCard_img {
  width: 30%;
  text-align: center;
}

.bl_section_resultsCard_img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
}

.bl_section_resultsCard_cont {
  width: 40%;
}

.bl_section_resultsCard_cont_date {
  font-weight: bold;
  position: relative;
  padding: 0.25em 0;
}

.bl_section_resultsCard_cont_date:after {
  content: "";
  display: block;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#0d8cd0), to(transparent));
  background: linear-gradient(to right, #0d8cd0, transparent);
}

.bl_section_resultsCard_cont_detail {
  padding: 10px;
}

.bl_section_resultsCard.hp_flex {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

#about.ly_section.bl_section_cont {
  position: relative;
}

#about .bl_section_cont {
  text-align: right;
  max-width: 500px;
}

.el_ownerImg {
  display: none;
  width: 70%;
}

.bl_ownerName {
  position: absolute;
  top: 70%;
  left: 30%;
  background-color: #ffffff;
  border: 3px solid #0d8cd0;
  padding: 10px 20px;
}

.bl_ownerName p {
  text-align: right;
}

.bl_ownerName_main {
  font-weight: bold;
}

.bl_ownerName_main span {
  color: #0d8cd0;
  font-size: 3rem;
}

.bl_ownerName_sub {
  text-align: center;
  letter-spacing: 0.2rem;
  font-weight: lighter;
}

.bl_about_style {
  margin-top: 30px;
  background-color: #ffffff;
  padding: 10px;
}

.bl_about_style_ttl {
  color: #0d8cd0;
  font-weight: bold;
  margin-bottom: 10px;
}

.bl_about_style_item {
  list-style: disc;
}

#system {
  height: 80vh;
}

.bl_system_place {
  margin-bottom: 30px;
}

.bl_system_place_ttl {
  color: #0d8cd0;
  font-weight: bold;
  margin-bottom: 10px;
}

.bl_system_place_list {
  text-indent: 1em;
}

.bl_system_price_ttl {
  color: #0d8cd0;
  font-weight: bold;
  margin-bottom: 10px;
}

.bl_system_price div dt {
  text-indent: 1em;
  text-align: left;
  display: inline-block;
  width: 50%;
}

.bl_system_price div dd {
  display: inline-block;
  width: 50%;
}

#question .bl_section_cont {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}

#question .bl_section_img {
  top: 240px;
  height: 70%;
}

/* よくある質問・アコーディオン */
.bl_faq_list {
  border-collapse: collapse;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-top: 33px;
  padding: 10px 0px 80px 0px;
}

.bl_faq_list dt {
  display: block;
  color: #333;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  border: 1px solid #e5e5e5;
  background-color: #ffffff;
  padding: 28px 37px;
}

.bl_faq_list dd {
  display: none;
  color: #333;
  font-size: 1.2rem;
  text-align: left;
  border: 1px solid #e5e5e5;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 28px 37px;
}

/* ギャラリー */
#gallery {
  background: #dddddd url(../img/背景2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: overlay;
  background-position: right;
  z-index: -99;
  height: auto;
}

#gallery .ly_wrapper {
  padding-right: 0;
  padding-left: 0;
}

#gallery .bl_section_cont {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}

.bl_section_cont_txt {
  text-align: center;
}

.container {
  margin: 30px auto 30px;
  padding-bottom: 30px;
  width: 100%;
}

.slick-img img {
  height: auto;
  opacity: 0.3;
  -webkit-transform: rotate(-15deg) scale(0.5);
          transform: rotate(-15deg) scale(0.5);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
  width: 100%;
  -webkit-filter: drop-shadow(-10px 10px 1px #0d8cd0);
          filter: drop-shadow(-10px 10px 1px #0d8cd0);
}

.slider .slick-center img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* コンタクト */
#contact .el_telBtn {
  margin-right: 0px;
  text-align: center;
}

#contact .bl_section_cont_txt {
  margin-top: 20px;
  max-width: 500px;
}

#contact .bl_section_cont_txt div {
  margin-top: 10px;
}

#contact .bl_section_cont_txt div:first-child {
  margin-top: 0;
}

#contact .bl_section_cont_txt dt {
  font-weight: bold;
  display: inline-block;
  width: 30%;
}

#contact .bl_section_cont_txt dd {
  display: inline-block;
  width: 50%;
}

#contact .bl_section_cont_txt p {
  margin-top: 10px;
}

#contact iframe {
  width: 100%;
  margin-bottom: 100px;
}

/* フッター */
footer {
  text-align: center;
  padding-top: 100px;
}

.bl_production {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.5;
  color: black;
}

.bl_production img {
  width: 80px;
}

.bl_production p {
  font-size: 10px;
}

/* ヘルパークラス */
.hp_left {
  left: 0;
}

.hp_right {
  right: 0;
}

.hp_imgLeft {
  right: 0;
  left: 50px;
}

.hp_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hp_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.hp_sponlyBr {
  display: none;
}

.hp_100vh {
  height: 100vh;
}

.hp_tal {
  text-align: left !important;
}

.hp_centering {
  margin-right: auto;
  margin-left: auto;
  display: table;
}
/*# sourceMappingURL=style.css.map */