@charset "UTF-8";
/*
Getup.css is released under the Open Source MIT license.
http://www.opensource.org/licenses/mit-license.php

Getup.css is inspired by OOCSS, inuit.css, Twitter Bootstrap, HTML5 Boilerplate, PocketGrid

LICENSE
https://github.com/nibushibu/getup-css/blob/master/LICENSE
*/
/* @import "compass";
@import "./normalize.scss";
@import "animate";
@import "ceaser-easing";
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://use.fontawesome.com/releases/v6.2.0/css/all.css");
* {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 100.01%;
  list-style-type: none;
  text-align: left;
  zoom: 1;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.6;
}

body {
  line-height: 1.6;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  color: #444444;
  background-color: #ddd;
}

a {
  font-size: clamp(16px, 1rem, 18px);
}
@media screen and (max-width: 640px) {
  a {
    font-size: clamp(13px, 0.812rem, 14px);
  }
}
a:link, a:visited {
  transition: all 0.2s ease-out;
  color: #284e98;
}
a:hover {
  transition: all 0.2s ease-out;
  color: #e49c00;
}
a:not([href^="#"]):hover {
  opacity: 1;
}

img {
  vertical-align: top;
  font-size: 1px;
  line-height: 1.1;
}

/* common */
header {
  width: 100%;
  padding: 1rem 1.5rem;
  box-sizing: border-box;
  background-color: #ffffff;
  position: fixed; /* スクロール時も要素を固定化 */
  left: 0;
  z-index: 100; /* 大きい数値ほど手前に表示される */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 640px) {
  header {
    padding: 0.3rem 1rem;
  }
}

.header__inner {
  width: 100%;
  height: 100%;
  align-items: center;
  display: grid;
  grid-template-columns: auto 200px 63px;
  gap: 0;
  align-items: stretch;
  /* .header_btn */
}
@media screen and (max-width: 640px) {
  .header__inner {
    grid-template-columns: auto 100px 45px;
  }
}
.header__inner > div {
  box-sizing: border-box;
}
.header__inner > .hd__logo {
  display: flex;
  align-items: center;
}
.header__inner > .hd__logo h1 {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 640px) {
  .header__inner > .hd__logo h1 {
    gap: 10px;
  }
}
.header__inner > .hd__logo h1 .header-logo__img {
  height: 100%;
  width: auto;
  max-height: 45px;
}
@media screen and (max-width: 640px) {
  .header__inner > .hd__logo h1 .header-logo__img {
    max-height: 20px;
  }
}
.header__inner > .hd__logo h1 img {
  width: 50%;
  max-width: 140px;
}
.header__inner > .hd__logo h1 p {
  display: inline;
  font-size: clamp(20px, 0.91vw + 20px, 26px);
  line-height: 1.2;
  letter-spacing: 3px;
  font-weight: 600;
}
@media screen and (max-width: 640px) {
  .header__inner > .hd__logo h1 p {
    font-size: 16px;
    letter-spacing: 2px;
  }
}
.header__inner .hd__btn {
  display: flex;
  align-items: center;
  text-indent: 0.3em;
  /* a */
}
.header__inner .hd__btn a {
  width: 100%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4rem;
  font-size: clamp(16px, 0.91vw + 16px, 20px);
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  background-color: #61b7d9;
  transition: background-color 0.3s;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 640px) {
  .header__inner .hd__btn a {
    font-size: 13px;
    height: 55%;
    letter-spacing: 1px;
    border-radius: 30px;
  }
}
.header__inner .hd__btn a .triangle {
  font-size: 0.9rem;
  margin-left: 0.3em;
}
@media screen and (max-width: 640px) {
  .header__inner .hd__btn a .triangle {
    font-size: 0.7rem;
  }
}
.header__inner .hd__btn a:hover {
  background-color: #ff9b00;
}

/* .header__area */
/* ハンバーガーメニュー */
.menu__btn {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 100;
  cursor: pointer;
  position: relative;
}

.menu__btn span,
.menu__btn span:before,
.menu__btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 28px;
  margin: 2px 0;
  background-color: #444444;
  transition: 0.2s;
  position: absolute;
}

.menu__btn span:before {
  bottom: 8px;
}

.menu__btn span:after {
  top: 8px;
}

/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* クリック後の挙動 */
#drawer_input:checked ~ .menu__btn span {
  background: rgba(255, 255, 255, 0); /* クリックされたら真ん中の線を透明にする */
}

#drawer_input:checked ~ .menu__btn span::before {
  margin: 0;
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .menu__btn span::after {
  margin: 0;
  top: 0;
  transform: rotate(-45deg);
}

/* メニューのデザイン*/
#drawer-content {
  overflow: hidden;
  position: fixed;
  top: 0;
  bottom: 100%;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 100%;
  max-height: 100%;
  background: #61b7d9;
  transition: all 0.3s ease-in-out 0s;
  transform: translateX(-100%); /* 元は−10％。これで画面外に出せるっぽい */
  box-sizing: border-box;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 640px) {
  #drawer-content {
    width: 100%;
  }
}
#drawer-content > .drawer__inner {
  display: block;
  /* .header_btn */
}
#drawer-content > .drawer__inner .hd__btn {
  align-items: center;
  margin-top: 60px;
  /* a */
}
@media screen and (max-width: 640px) {
  #drawer-content > .drawer__inner .hd__btn {
    margin-top: 30px;
  }
}
#drawer-content > .drawer__inner .hd__btn a {
  width: 80%;
  margin-inline: auto;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4rem;
  font-size: clamp(16px, 0.91vw + 16px, 20px);
  font-weight: 500;
  color: #61b7d9;
  text-decoration: none;
  background-color: #ffffff;
  transition: background-color 0.3s;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 640px) {
  #drawer-content > .drawer__inner .hd__btn a {
    font-size: 16px;
    height: 55%;
    letter-spacing: 2px;
    border-radius: 30px;
  }
}
#drawer-content > .drawer__inner .hd__btn a:hover {
  background-color: #ff9b00;
}

/* クリックされたらメニューを表示 */
#drawer_input:checked ~ #drawer-content {
  transform: translateX(0);
  opacity: 1;
}

dl.hd__white {
  color: #ffffff;
}
dl.hd__white dt {
  font-size: 16px;
  font-weight: 500;
}
dl.hd__white dd.hd__list {
  border-top: 1px solid #ffffff;
  letter-spacing: 1px;
}
dl.hd__white dd.hd__list.txt__small a {
  font-size: 13px !important;
}
dl.hd__white dd.hd__list.btn-area {
  display: flex;
  justify-content: center;
}
dl.hd__white dd.hd__list.btn-area a.btn-w {
  background-color: #ffffff;
}
dl.hd__white dd.hd__list.btn-area a.btn-w::after {
  content: "▶";
}
dl.hd__white dd.hd__list a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  font-size: 16px !important;
  font-weight: 500;
  box-sizing: border-box;
}
dl.hd__white dd.hd__list a:link, dl.hd__white dd.hd__list a:visited {
  color: #fff;
}
dl.hd__white dd.hd__list a:hover {
  color: #ffc400;
}
dl.hd__white dd.hd__list a span.txt__small {
  font-size: 13px;
}
dl.hd__white img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  vertical-align: text-top;
}

.lp__body {
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}
.lp__body img {
  width: 100%;
  height: auto;
}
.lp__body section.block__mov .block__mov__wrapper {
  position: relative;
}
.lp__body section.block__mov .block__mov__wrapper .layer__mov {
  position: absolute;
  top: 1rem;
  width: 90%;
  margin-left: 5%;
  box-sizing: border-box;
  padding: 15px;
  background-color: #fff;
}
.lp__body section.block__mov .mov-buttons {
  position: absolute;
  width: 100%;
  background-color: transparent;
  box-sizing: border-box;
  text-align: center;
  top: 295px;
}
@media screen and (max-width: 640px) {
  .lp__body section.block__mov .mov-buttons {
    top: 255px;
  }
}
.lp__body section.block__mov .mov-buttons button {
  width: 85%;
  border: 0;
  background-color: #fff;
  border-radius: 45px;
  font-size: 24px;
  line-height: 1;
  padding: 1.15rem 1.5rem;
  box-sizing: border-box;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.8s ease-out;
  position: relative;
}
.lp__body section.block__mov .mov-buttons button svg {
  width: 30px;
  height: auto;
  position: absolute;
  right: 20px;
  top: 16px;
}
.lp__body section.block__mov .mov-buttons button i {
  position: absolute;
  right: 20px;
  top: 16px;
  font-size: 28px;
}
.lp__body section.block__mov .mov-buttons button:hover {
  background-color: #ffd200;
  transition: all 0.2s ease-out;
}
.lp__body section.block__mov .mov-buttons button:nth-of-type(1) {
  color: #179fac;
}
.lp__body section.block__mov .mov-buttons button:nth-of-type(2) {
  color: #2350a1;
}
.lp__body section.block__mov .mov-buttons button:nth-of-type(3) {
  color: #438938;
}
.lp__body section.block__mov .mov-buttons button.btn__fullscreen {
  background-color: #fff100;
  color: #00bbff;
  border-radius: 6px;
  padding: 7px 30px 7px;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  position: static;
  margin-inline: auto;
  white-space: nowrap;
  width: fit-content;
  text-align: center;
}
.lp__body section.block__mov .mov-buttons button.btn__fullscreen:hover {
  background-color: #ffbb00;
  transition: all 0.2s ease-out;
}
.lp__body section.block__mov .mov-buttons button.btn__fullscreen i {
  position: relative;
  margin-left: 0.2em;
  font-size: 21px;
  top: 1px;
  right: 0;
}
.lp__body section.block__mov .mov-buttons button.btn__keisoku {
  color: #179fac;
}
.lp__body section.block__mov .mov-buttons button.btn__data {
  color: #2350a1;
}
.lp__body section.block__mov .mov-buttons button.btn__alc {
  color: #438938;
}
.lp__body section.block__mov .mov-buttons button + button {
  margin-top: 20px;
}
.lp__body section.block__inquiry {
  padding: 4rem;
  text-align: center;
}
.lp__body section.block__inquiry div {
  text-align: center;
}
.lp__body section.block__inquiry .inquiry__catch {
  width: 85%;
}
.lp__body section.block__inquiry a {
  border-radius: 8px;
  background-color: #fff100;
  box-shadow: 0 3px 0 #006da1;
  display: block;
  margin-top: 0.8rem;
  transition: all 0.2s ease-out;
}
.lp__body section.block__inquiry a:hover {
  filter: brightness(1.4);
  transition: all 0.2s ease-out;
}/*# sourceMappingURL=main.css.map */