@charset "UTF-8";
/********************************************
 * modules
*********************************************/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	全体のベースとなるscss
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

.grecaptcha-badge {
  visibility: hidden;
}

.delayTime02 {
  animation-delay: 0.2s;
}

.delayTime04 {
  animation-delay: 0.4s;
}

.delayTime06 {
  animation-delay: 0.6s;
}

.delayTime08 {
  animation-delay: 0.8s;
}

/* --- fadeUp --- */
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  opacity: 0;
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- fadeLeft --- */
.fadeLeftTrigger {
  opacity: 0;
}

.fadeLeft {
  opacity: 0;
  animation-name: fadeLeftAnime;
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* --- fadeRight --- */
.fadeRightTrigger {
  opacity: 0;
}

.fadeRight {
  opacity: 0;
  animation-name: fadeRighttAnime;
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
}

@keyframes fadeRighttAnime {
  from {
    opacity: 0;
    transform: translateX(200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	ヘッダーのscss
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.general__header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 65px;
  background: transparent;
}
.general__header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: inherit;
  padding: 1rem 2rem;
}
.general__header__inner__logo {
  max-width: 120px;
}
.general__header__inner {
  /* --- メニューリスト --- */
}
.general__header__inner__nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  transition: ease 0.4s;
}
.general__header__inner__nav__items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0;
}
.general__header__inner__nav__items a {
  display: block;
  width: 100%;
  margin-bottom: 2.4rem;
  color: black;
  color: black;
  font-size: 2rem;
  text-align: center;
}
.general__header__inner__nav__items li:last-child a {
  margin-bottom: 0;
}
.general__header__inner__nav.active {
  transform: translateX(0);
}
.general__header__inner {
  /* --- ハンバーガーメニュー --- */
}
.general__header__inner__hamburger {
  z-index: 9999;
  width: 48px;
  height: 100%;
  border-color: transparent;
  background-color: transparent;
}
.general__header__inner__hamburger span {
  display: block;
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  transition: ease 0.4s;
}
.general__header__inner__hamburger span:nth-child(1) {
  top: 0;
}
.general__header__inner__hamburger span:nth-child(2) {
  margin: 0.8rem 0;
}
.general__header__inner__hamburger span:nth-child(3) {
  top: 0;
}
.general__header__inner__hamburger.active span {
  background-color: #000000;
}
.general__header__inner__hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.general__header__inner__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.general__header__inner__hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

.headerBgColorScroll {
  background: #013593;
  transition: background 1s, color 1s;
}

.general__header-thanks {
  background: #013593;
}

@media screen and (min-width: 600px) {
  .general__header {
    margin: 0 auto;
    background: #013593;
  }
}
@media screen and (min-width: 1025px) {
  .general__header {
    height: auto;
    background: #013593;
  }
  .general__header__inner {
    flex-wrap: wrap;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
  }
  .general__header__inner__logo {
    max-width: 150px;
    padding: 1rem 2rem;
  }
  .general__header__inner__nav {
    display: flex;
    justify-content: end;
    position: static;
    transform: initial;
    width: 100vw;
    height: inherit;
    height: auto;
    margin: 0 calc(50% - 50vw);
    padding: 1.5rem 0;
    background: #333333;
  }
  .general__header__inner__nav__items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    width: 100%;
    max-width: 1200px;
    height: initial;
    margin: 0 auto;
  }
  .general__header__inner__nav__items a {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 1.4rem;
  }
  .general__header__inner {
    /* --- ハンバーガーメニュー --- */
  }
  .general__header__inner__hamburger {
    display: none;
  }
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	フッターのscss
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.general__footer__inner {
  position: relative;
  padding: 15rem 2.5rem 0;
  overflow: hidden;
}
.general__footer__inner:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transform: skewY(-15deg) translateY(60px);
  background-color: #212121;
  content: "";
}
.general__footer__inner__menu__ttl {
  color: #ffffff;
  font-weight: bold;
  font-size: 3rem;
}
.general__footer__inner__menu figure {
  max-width: 120px;
  margin: 0 auto;
}
.general__footer__inner__menu ul {
  margin: 2rem 0 0;
}
.general__footer__inner__menu li {
  border-top: 1px solid #404040;
}
.general__footer__inner__menu li:last-child {
  border-bottom: 1px solid #404040;
}
.general__footer__inner__menu a {
  display: block;
  position: relative;
  padding: 2.5rem 1.8rem;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.3rem;
}
.general__footer__inner__menu a:after {
  position: absolute;
  top: 50%;
  right: 1.8rem;
  transform: translateY(-50%);
  color: #404040;
  font-family: "Font Awesome 5 free";
  content: "\f054";
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.general__footer__inner__contact {
  margin: 5rem 0 0;
}
.general__footer__inner__contact__ttl {
  margin-bottom: 4rem;
  color: #ffffff;
  font-weight: bold;
  font-size: 3rem;
}
.general__footer__inner__contact figure {
  max-width: 70px;
  margin: 2.5rem auto;
  text-align: center;
}
.general__footer__inner__contact__text {
  margin: 1.5rem 0;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
}
.general__footer__inner__contact .btn01 {
  display: block;
  min-width: 265px;
  width: 100%;
  margin: 0 auto 3rem;
  padding: 2rem 3rem;
  border-radius: 0.5rem;
  background: #013593;
  color: #000000;
  font-weight: 700;
  font-size: 2rem;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
}
.general__footer__inner__contact .btn01 a {
  color: #FFF831;
  font-size: 2.2rem;
}
.general__footer__inner__contact a {
  color: #212121;
}
.general__footer__inner__textBox {
  margin: 5rem 0 0;
}
.general__footer__inner__textBox figure {
  max-width: 250px;
  margin: 0 auto;
  text-align: center;
}
.general__footer__inner__textBox p {
  margin: 2.5rem 0;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1.7;
  text-align: center;
}
.general__footer__inner__textBox a {
  color: #ffffff;
}
.general__footer__inner__box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 5rem -2.5rem 0;
  padding: 2.5rem;
  background: #000000;
}
.general__footer__inner__box figure {
  display: none;
}
.general__footer__inner__box__sns {
  display: flex;
  align-items: center;
}
.general__footer__inner__box__sns a {
  display: block;
  margin-right: 1rem;
  color: #ffffff;
  font-size: 4rem;
}
.general__footer__inner__box__copyright {
  color: #999999;
  font-size: 1.3rem;
}

@media screen and (min-width: 600px) {
  .general__footer {
    background: #212121;
  }
  .general__footer__inner {
    display: flex;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    overflow: inherit;
  }
  .general__footer__inner:before {
    display: none;
  }
  .general__footer__inner__menu {
    order: 1;
    width: calc(70% - 5px);
    margin: 4rem 1rem 0 0;
  }
  .general__footer__inner__menu ul {
    display: flex;
    flex-wrap: wrap;
  }
  .general__footer__inner__menu li {
    width: 25%;
    border: none;
  }
  .general__footer__inner__menu li:last-child {
    border-bottom: none;
  }
  .general__footer__inner__menu figure {
    max-width: 180px;
    margin: 0;
    padding: 0 1.8rem;
  }
  .general__footer__inner__menu a {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .general__footer__inner__menu a:after {
    display: none;
  }
  .general__footer__inner__contact {
    order: 2;
    width: calc(30% - 5px);
    margin: 4rem 0 0;
  }
  .general__footer__inner__contact figure {
    max-width: 90px;
    margin: 0 auto;
  }
  .general__footer__inner__textBox {
    display: none;
    order: 3;
    width: 30%;
  }
  .general__footer__inner__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    order: 4;
    width: 100vw;
    margin: 5rem calc(50% - 50vw) 0;
    padding: 1.5rem 10%;
  }
  .general__footer__inner__box figure {
    display: block;
    max-width: 100px;
  }
  .general__footer__inner__box__copyright {
    font-size: 1.4rem;
  }
  .general__footer__inner .general__btn-tel__textBox p {
    font-size: 2.4rem;
  }
  .general__footer__inner .general__btn-tel__textBox:before {
    width: 30px;
    height: 34px;
  }
}
@media screen and (min-width: 1025px) {
  .general__footer__inner {
    max-width: 1200px;
  }
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	パンくずのscss
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.general__breadcrumb__inner {
  list-style: none;
  width: 100%;
  margin: 0.5rem 0 0 0;
  padding: 1rem;
  overflow: hidden;
  background: #f4f4f4;
  color: #474747;
  font-size: 1.2rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.general__breadcrumb__inner li {
  display: inline;
  list-style: none;
  margin: 0 0.5rem;
}
.general__breadcrumb__inner a {
  border-bottom: none !important;
  color: #474747;
  text-decoration: none;
}
.general__breadcrumb__inner a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 600px) {
  .general__breadcrumb {
    max-width: 780px;
    margin: 0 auto;
  }
  .general__breadcrumb__inner {
    margin: 1rem 0 0 0;
    padding: 2rem;
    font-size: 1.8rem;
  }
  .general__breadcrumb__inner li {
    margin: 0 1rem;
  }
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	フォーム
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.general__form {
  margin: 3rem auto 8rem;
}
.general__form__object01 {
  margin: 0 auto 3rem;
  padding: 0 0 3rem;
  border-bottom: 1px solid #e6e6e6;
  color: #3c3c3c;
}
.general__form__object01 label {
  font-size: 1.5rem;
}
.general__form__object01 .wpcf7-list-item {
  position: relative;
}
.general__form__object01 .wpcf7-list-item.first {
  margin: 0;
}
.general__form__object01 input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.general__form__object01 input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  border: none;
  background: #008aff;
}
.general__form__object01 input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  top: 1px;
  left: 7px;
  transform: rotate(40deg);
  width: 10px;
  height: 18px;
  border-right: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
  content: "";
}
.general__form__object01 .wpcf7-list-item-label::before {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0 1.2rem 0 0;
  border: 2px solid #e6e6e6;
  border-radius: 50%;
  background-color: #ffffff;
  text-align: center;
  vertical-align: middle;
  content: "";
  cursor: pointer;
}
.general__form__object01__text {
  display: flex;
  justify-content: center;
  margin: 0 auto 2.5rem;
}
.general__form__object01__text p {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.5;
}
.general__form__object01__text span {
  padding: 0.2rem 0.6rem;
  border-radius: 15px;
  background: #de0000;
  color: #ffffff;
  font-size: 0.8rem;
}
.general__form__object01__box {
  text-align: center;
}
.general__form__object02 {
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
  color: #222222;
}
.general__form__object02__ttl {
  margin: 0 0 3rem;
  font-weight: bold;
  font-size: 1.3rem;
}
.general__form__object02__text {
  margin: 0 auto 2rem;
}
.general__form__object02__text .wpcf7-list-item.first {
  margin: 0;
}
.general__form__object02__text .wpcf7-list-item-label {
  display: flex;
  color: #3c3c3c;
  font-size: 1.5rem;
  cursor: pointer;
}
.general__form__object02__text .wpcf7-list-item-label::before {
  width: 2.2rem;
  height: 2.2rem;
  margin-top: auto;
  margin-right: 0.5em;
  margin-bottom: auto;
  border: 2px solid #e6e6e6;
  border-radius: 100%;
  background: #ffffff;
  content: "";
  transition: background-color 0.5s;
}
.general__form__object02__text input[type=radio] {
  opacity: 0;
  position: absolute;
}
.general__form__object02__text input[type=radio]:checked + .wpcf7-list-item-label::before {
  box-shadow: inset 0 0 0 2px #ffffff;
  background-color: #de0000;
}
.general__form__object02__text__ttl {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}
.general__form__object02__text__ttl p {
  margin: 0 0.6rem 1rem 0;
}
.general__form__object02__text__ttl__desc {
  color: #bcbcbc;
  font-weight: bold;
  font-size: 1rem;
}
.general__form__object02__text__ttl__required {
  padding: 0.2rem 0.6rem;
  border-radius: 15px;
  background: #de0000;
  color: #ffffff;
  font-size: 0.8rem;
}
.general__form__object02__text__ttl__any {
  padding: 0.2rem 0.6rem;
  border-radius: 15px;
  background: #dad8d8;
  color: #ffffff;
  font-size: 0.8rem;
}
.general__form__object02__text__namebox {
  display: flex;
  align-items: center;
}
.general__form__object02__text__namebox .wpcf7-form-control-wrap {
  width: calc(50% - 3px);
}
.general__form__object02__text__namebox .wpcf7-form-control-wrap:first-of-type {
  margin-right: 0.6rem;
}
.general__form__object02__text__namebox input {
  width: 100%;
  padding: 1.2rem 0.9rem;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  background: #f7f7f7;
  font-size: 1.6rem;
}
.general__form__object02__text__namebox input::-moz-placeholder {
  color: #b1b1b1;
}
.general__form__object02__text__namebox input::placeholder {
  color: #b1b1b1;
}
.general__form__object02__text__box select {
  width: 100%;
  padding: 1.2rem 0.9rem;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  background: #f7f7f7;
  color: #222222;
  font-size: 1.6rem;
}
.general__form__object02__text__box select::-moz-placeholder {
  color: #b1b1b1;
}
.general__form__object02__text__box select::placeholder {
  color: #b1b1b1;
}
.general__form__object02__text__box textarea {
  width: 100%;
  padding: 1.2rem 0.9rem;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  font-size: 1.6rem;
}
.general__form__object02__text__box textarea::-moz-placeholder {
  color: #b1b1b1;
}
.general__form__object02__text__box textarea::placeholder {
  color: #b1b1b1;
}
.general__form__object02__text__notes {
  margin-bottom: 1rem;
  color: #bcbcbc;
  font-weight: bold;
  font-size: 1rem;
}
.general__form__object02__text__notes p {
  margin: 0;
}
.general__form__object03 {
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem 2rem;
  border-bottom: 1px solid #e6e6e6;
  color: #222222;
}
.general__form__object03__ttl {
  margin: 0 0 3rem;
  font-size: 2rem;
}
.general__form__object03__ttl span[data-current-value="0"] {
  color: red;
}
.general__form__object03__strong {
  margin-bottom: 1.5rem;
  color: #222222;
  font-weight: bold;
  font-size: 1.4rem;
}
.general__form__object03__text {
  margin: 0 auto 2rem;
}
.general__form__object03__text__ttl {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
}
.general__form__object03__text__ttl p {
  margin: 0 0.6rem 1rem 0;
}
.general__form__object03__text__ttl__sub {
  display: inline-block;
  padding-left: 0.6rem;
  font-size: 1rem;
}
.general__form__object03__text__ttl__desc {
  color: #bcbcbc;
  font-weight: bold;
  font-size: 1rem;
}
.general__form__object03__text__ttl__required {
  padding: 0.2rem 0.6rem;
  border-radius: 15px;
  background: #de0000;
  color: #ffffff;
  font-size: 0.8rem;
}
.general__form__object03__text__ttl__any {
  padding: 0.2rem 0.6rem;
  border-radius: 15px;
  background: #dad8d8;
  color: #ffffff;
  font-size: 0.8rem;
}
.general__form__object03__text__box label {
  font-size: 1.5rem;
}
.general__form__object03__text__box .wpcf7-checkbox label {
  font-size: 1.2rem;
}
.general__form__object03__text__box .wpcf7-list-item {
  position: relative;
  margin-right: 0.8rem;
  margin-left: 0;
}
.general__form__object03__text__box input[type=checkbox] {
  opacity: 0;
  height: auto !important;
  margin-left: -1rem;
}
.general__form__object03__text__box input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  border: none;
  background: #008aff;
}
.general__form__object03__text__box input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  top: 1px;
  left: 11px;
  transform: rotate(40deg);
  width: 7px;
  height: 14px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  content: "";
}
.general__form__object03__text__box .wpcf7-list-item-label::before {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 0.8rem;
  border: 2px solid #e6e6e6;
  border-radius: 4px;
  background-color: #ffffff;
  text-align: center;
  vertical-align: middle;
  content: "";
  cursor: pointer;
}
.general__form__object03__text__box input[type=tel] {
  width: 100%;
  padding: 1.2rem 0.9rem;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  background: #f7f7f7;
  font-size: 1.6rem;
}
.general__form__object03__text__box input[type=email] {
  width: 100%;
  padding: 1.2rem 0.9rem;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  background: #f7f7f7;
  font-size: 1.6rem;
}
.general__form__object03__text__box input[type=number] {
  width: 100%;
  padding: 1.2rem 0.9rem;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  background: #f7f7f7;
  font-size: 1.6rem;
}
.general__form__object03__text__box input[type=date] {
  width: 100%;
  padding: 1.2rem 0.9rem;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  background: #f7f7f7;
  font-size: 1.6rem;
}
.general__form__object03__text__box select {
  width: 100%;
  padding: 1.2rem 0.9rem;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  background: #f7f7f7;
  font-size: 1.6rem;
}
.general__form__object03__text__box input[type=date]::-webkit-date-and-time-value {
  text-align: left;
}
.general__form__object03__text__box input::-moz-placeholder {
  color: #b1b1b1;
}
.general__form__object03__text__box input::placeholder {
  color: #b1b1b1;
}
.general__form__object03__text__arrow .wpcf7-form-control-wrap {
  display: block;
  width: 60%;
}
.general__form__object03__text__arrow .wpcf7-form-control-wrap:after {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  color: #808080;
  font-weight: 900;
  font-size: 1.5rem;
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  pointer-events: none;
}
.general__form__object03__text__notes {
  margin-bottom: 1rem;
  color: #bcbcbc;
  font-weight: bold;
  font-size: 1rem;
}
.general__form__object03__text__notes p {
  margin: 0;
}
.general__form__object05 {
  text-align: center;
}
.general__form__object05__btn {
  display: block;
  width: 75%;
  height: 60px;
  margin: 0 auto;
  border: 1px solid #008cd6;
  border-radius: 30px;
  background: #008cd6;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.5rem;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
}
.general__form__object05__btn:hover {
  background: #ffffff;
  color: #008cd6;
}
.general__form__object05__btn:active {
  background: #ffffff;
  color: #008cd6;
}
.general__form .privacypolicy-formbox {
  margin: 0 auto 3rem;
  padding: 0;
  background-color: #f2f2f2;
}
.general__form .privacypolicy-formbox__inner {
  width: 100%;
  height: 80px;
  margin: 0 auto;
  padding: 1rem;
  overflow: scroll;
  border: 1px solid #ced4da;
  border-radius: 0.4rem;
  background-color: #ffffff;
}
.general__form div.wpcf7-validation-errors {
  padding: 1rem;
  border: 1px solid #f4c6cb;
  background: #f7d7da;
  color: #711d26;
}
.general__form div.wpcf7-acceptance-missing {
  padding: 1rem;
  border: 1px solid #f4c6cb;
  background: #f7d7da;
  color: #711d26;
}
.general__form div.wpcf7-mail-sent-ng {
  padding: 1rem;
  border: 1px solid #f4c6cb;
  background: #f7d7da;
  color: #711d26;
}
.general__form div.wpcf7-spam-blocked {
  padding: 1rem;
  border: 1px solid #feedbd;
  background: #fff2cf;
  color: #846314;
}
.general__form .recapcha-text {
  margin: 3rem 0;
  padding: 0 1.5rem;
  font-size: 1.2rem;
  line-height: 1.5;
}
.general__form .recapcha-text a {
  color: #012f61;
}

@media screen and (min-width: 600px) {
  .general__form__object01 .wpcf7-list-item {
    padding: 0 0 0 1.5rem;
  }
  .general__form__object01 input[type=checkbox]:checked + .wpcf7-list-item-label::after {
    left: 21px;
  }
  .general__form__object03__text__box .wpcf7-list-item {
    padding: 0 0 0 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .general__form__object01__text p {
    font-size: 1.8rem;
  }
  .general__form__object01 label {
    font-size: 2.2rem;
  }
  .general__form__object01 .wpcf7-list-item-label:before {
    width: 36px;
    height: 36px;
  }
  .general__form__object01 input[type=checkbox]:checked + .wpcf7-list-item-label::after {
    left: 25px;
    width: 15px;
    height: 27px;
  }
  .general__form__object02__ttl {
    font-size: 1.8rem;
  }
  .general__form__object02__text__ttl {
    font-size: 1.6rem;
  }
  .general__form__object02__text__notes {
    font-size: 1.2rem;
  }
  .general__form__object03__text__ttl {
    font-size: 1.6rem;
  }
  .general__form__object03__text__notes {
    font-size: 1.2rem;
  }
  .general__form__object05__btn {
    height: 70px;
    border-radius: 45px;
    font-size: 2rem;
  }
}
/********************************************
 * pages
*********************************************/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	トップページのscss
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@keyframes zoom-in-anim {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.general__btn-tel__ttl {
  margin-bottom: 2.5rem;
  color: #000000;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
}
.general__btn-tel a {
  display: block;
  padding: 2rem;
  box-shadow: 0 3px 0 #001f60;
  background: #013593;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
}
.general__btn-tel a:hover {
  transform: translate3d(0, 3px, 0);
  box-shadow: none;
  background: #013593;
}
.general__btn-tel__textBox {
  display: inline-block;
  position: relative;
  padding: 0 1.8rem 0 3.5rem;
  text-align: center;
}
.general__btn-tel__textBox:before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 25px;
  height: 33px;
  background-image: url(../../assets/images/icon-tel-01-all.png);
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.general__btn-tel__textBox p {
  font-size: 2.7rem;
  color: #FFF831;
}
.general__btn-tel__note {
  display: block;
  margin-top: 2rem;
  color: #000000;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}

.front__hero {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.front__hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.front__hero__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 0;
  color: #ffffff;
  font-weight: bold;
  font-size: 6rem;
  line-height: 1.7;
  letter-spacing: 5px;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.front__hero .swiper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.front__hero .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.front__hero .swiper .swiper-slide-active .image01, .front__hero .swiper .swiper-slide-active .image02, .front__hero .swiper .swiper-slide-active .image03, .front__hero .swiper .swiper-slide-active .image04 {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  animation: zoom-in-anim 2s forwards;
}
.front__hero .swiper #slider01.swiper-slide-active .overlay01 {
  position: absolute;
  top: 0;
  left: -160%;
  z-index: 8;
  transform: skew(-30deg);
  width: 200%;
  height: 100%;
  background: rgba(14, 22, 104, 0.5);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: skew(-30deg);
}
.front__hero .swiper #slider01.swiper-slide-active .overlay02 {
  position: absolute;
  top: 0;
  left: -165%;
  z-index: 7;
  transform: skew(30deg);
  width: 200%;
  height: 100%;
  background: rgba(30, 72, 157, 0.5);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0.2s;
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-delay: 0.2s;
  -webkit-transform: skew(30deg);
}
.front__hero .swiper #slider02.swiper-slide-active .overlay01 {
  position: absolute;
  top: 0;
  left: -160%;
  z-index: 8;
  transform: skew(-30deg);
  width: 200%;
  height: 100%;
  background: rgba(14, 22, 104, 0.5);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: skew(-30deg);
}
.front__hero .swiper #slider02.swiper-slide-active .overlay02 {
  position: absolute;
  top: 0;
  left: -165%;
  z-index: 7;
  transform: skew(30deg);
  width: 200%;
  height: 100%;
  background: rgba(30, 72, 157, 0.5);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0.2s;
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-delay: 0.2s;
  -webkit-transform: skew(30deg);
}
.front__hero .swiper #slider02.swiper-slide-active .overlay01 {
  left: 70%;
  transform: skew(70deg);
  width: 300% !important;
  -webkit-transform: skew(70deg);
}
.front__hero .swiper #slider02.swiper-slide-active .overlay02 {
  left: 70%;
  transform: skew(50deg);
  width: 300% !important;
  -webkit-transform: skew(50deg);
}
.front__hero .swiper #slider03.swiper-slide-active .overlay01 {
  position: absolute;
  top: 0;
  left: -160%;
  z-index: 8;
  transform: skew(-30deg);
  width: 200%;
  height: 100%;
  background: rgba(14, 22, 104, 0.5);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: skew(-30deg);
}
.front__hero .swiper #slider03.swiper-slide-active .overlay02 {
  position: absolute;
  top: 0;
  left: -165%;
  z-index: 7;
  transform: skew(30deg);
  width: 200%;
  height: 100%;
  background: rgba(30, 72, 157, 0.5);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0.2s;
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-delay: 0.2s;
  -webkit-transform: skew(30deg);
}
.front__hero .swiper #slider03.swiper-slide-active .overlay01 {
  left: 70%;
  transform: skew(-20deg);
  -webkit-transform: skew(-20deg);
}
.front__hero .swiper #slider03.swiper-slide-active .overlay02 {
  left: 70%;
  transform: skew(40deg);
  -webkit-transform: skew(40deg);
}
.front__hero .swiper #slider04.swiper-slide-active .overlay01 {
  position: absolute;
  top: 0;
  left: -160%;
  z-index: 8;
  transform: skew(-30deg);
  width: 200%;
  height: 100%;
  background: rgba(14, 22, 104, 0.5);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: skew(-30deg);
}
.front__hero .swiper #slider04.swiper-slide-active .overlay02 {
  position: absolute;
  top: 0;
  left: -165%;
  z-index: 7;
  transform: skew(30deg);
  width: 200%;
  height: 100%;
  background: rgba(30, 72, 157, 0.5);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0.2s;
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-delay: 0.2s;
  -webkit-transform: skew(30deg);
}
.front__hero .swiper #slider04.swiper-slide-active .overlay01 {
  left: 80%;
  transform: skew(-70deg);
  width: 300% !important;
  -webkit-transform: skew(-70deg);
}
.front__hero .swiper #slider04.swiper-slide-active .overlay02 {
  left: 60%;
  transform: skew(-50deg);
  width: 300% !important;
  -webkit-transform: skew(-50deg);
}
.front__about__inner {
  position: relative;
  padding: 4.5rem 2rem 6rem;
  overflow: hidden;
  color: #ffffff;
}
.front__about__inner:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transform: skewY(-25deg) translateY(-300px);
  background: #013593;
  content: "";
}
.front__about__inner__ttl p {
  color: #ffffff;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
}
.front__about__inner__ttl h2 {
  margin-top: 2.5rem;
  color: #ffffff;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1.7;
}
.front__about__inner h3 {
  margin-top: 2.5rem;
  color: #ffffff;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1.7;
}
.front__about__inner__text {
  margin: 4rem 0;
  font-size: 1.8rem;
  line-height: 1.7;
}
.front__about__inner__text span {
  font-weight: bold;
}
.front__about__inner figure {
  margin: 5rem -2rem;
}
.front__about__inner__line {
  margin: 8rem auto 3rem;
}
.front__information {
  padding: 3rem 2rem 12rem;
}
.front__information__inner {
  padding: 3rem 1.5rem;
  background: #232323;
  color: #ffffff;
}
.front__information__inner__ttl {
  text-align: center;
}
.front__information__inner__ttl p {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
}
.front__information__inner__ttl h2 {
  margin-top: 1.5rem;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 1;
}
.front__information__inner__list {
  margin-top: 3rem;
}
.front__information__inner__list li {
  margin-top: 3rem;
}
.front__information__inner__list li:first-of-type {
  margin-top: 0;
}
.front__information__inner__list a {
  display: block;
  font-size: 1.4rem;
  line-height: 1.7;
}
.front__information__inner__list .date {
  display: block;
  font-size: 1.2rem;
}
.front__information__inner__btn {
  margin-top: 4rem;
}
.front__information__inner__btn a {
  display: block;
  position: relative;
  width: 100%;
  padding: 1.5rem;
  border-radius: 5px;
  background: #013593;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
}
.front__information__inner__btn a:after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.front__instagram__ttl {
  position: relative;
}
.front__instagram__ttl img {
  width: 100%;
}
.front__instagram__ttl__textBox {
  position: absolute;
  bottom: 50px;
  left: 20px;
  color: #ffffff;
  font-weight: bold;
  font-size: 2.2rem;
  letter-spacing: 2px;
}
.front__instagram__ttl__textBox h2 {
  margin-top: 1.5rem;
}
.front__instagram__inner {
  padding: 0 0 6rem;
  background: #e4eaf1;
}
.front__instagram__inner__content {
  position: relative;
  top: -20px;
  margin: 0 2rem;
  padding: 0 0 2.5rem;
  box-shadow: 0 8px 10px 0 #bdbdbd;
  background: #ffffff;
}
.front__instagram__inner__content #sb_instagram {
  padding-bottom: 0 !important;
}
.front__instagram__inner__content .sb_instagram_header {
  display: none;
}
.front__instagram__inner__content #sbi_load {
  display: none;
}
.front__instagram__inner__content__btn a {
  display: block;
  position: relative;
  width: 60%;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 5px;
  background: #013593;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
}
.front__instagram__inner__content__btn a:after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.front__firstTime {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #ffffff 50%, #ffffff 100%);
}
.front__firstTime__inner {
  clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
  padding: 14rem 2rem 10rem;
  background: #013593;
  color: #ffffff;
}
.front__firstTime__inner h2 {
  position: relative;
  margin: 0 auto 5rem;
  color: #fff831;
  font-weight: bold;
  font-size: 2.2rem;
  text-align: center;
}
.front__firstTime__inner h2:before {
  display: inline-block;
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff831;
  content: "";
  -webkit-transform: translateX(-50%);
}
.front__firstTime__inner p {
  margin: 4.5rem 0;
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (min-width: 600px) {
  .general__btn-tel__ttl {
    font-size: 2.8rem;
  }
  .general__btn-tel a {
    padding: 3rem;
    box-shadow: 0 6px 0 #001f60;
  }
  .general__btn-tel a:hover {
    transform: translate3d(0, 6px, 0);
  }
  .general__btn-tel__textBox {
    padding: 0 3.6rem 0 7rem;
  }
  .general__btn-tel__textBox:before {
    width: 50px;
    height: 66px;
  }
  .general__btn-tel__textBox p {
    font-size: 4rem;
  }
  .general__btn-tel__note {
    font-size: 2.5rem;
  }
  .front {
    max-width: 780px;
    margin: 0 auto;
  }
  .front__hero__ttl {
    font-size: 9.6rem;
  }
  .front__about__inner {
    padding: 10rem 4rem 8rem;
  }
  .front__about__inner__ttl p {
    font-size: 3.8rem;
  }
  .front__about__inner__ttl h2 {
    font-size: 4.1rem;
  }
  .front__about__inner__text {
    margin: 8rem 0;
    font-size: 2.7rem;
  }
  .front__about__inner figure {
    margin: 10rem -4rem;
  }
  .front__about__inner__line {
    margin: 10rem auto 8rem;
  }
  .front__information {
    padding: 6rem 4rem 24rem;
  }
  .front__information__inner {
    padding: 6rem 3rem;
  }
  .front__information__inner__ttl p {
    font-size: 2.8rem;
  }
  .front__information__inner__ttl h2 {
    margin-top: 3rem;
    font-size: 3.5rem;
  }
  .front__information__inner__list {
    margin-top: 6rem;
  }
  .front__information__inner__list li {
    margin-top: 6rem;
  }
  .front__information__inner__list a {
    font-size: 2.2rem;
  }
  .front__information__inner__list .date {
    font-size: 1.9rem;
  }
  .front__information__inner__btn {
    margin-top: 8rem;
  }
  .front__information__inner__btn a {
    padding: 3rem;
    border-radius: 10px;
    font-size: 1.9rem;
  }
  .front__information__inner__btn a:after {
    right: 20px;
  }
  .front__instagram__ttl__textBox {
    bottom: 100px;
    left: 40px;
    font-size: 3.5rem;
    letter-spacing: 4px;
  }
  .front__instagram__ttl__textBox h2 {
    margin-top: 3rem;
  }
  .front__instagram__inner {
    padding: 0 0 12rem;
  }
  .front__instagram__inner__content {
    top: -40px;
    margin: 0 4rem;
    padding: 5rem 4rem;
    box-shadow: 0 16px 20px 0 #bdbdbd;
  }
  .front__instagram__inner__content__btn {
    margin-top: 8rem;
  }
  .front__instagram__inner__content__btn a {
    padding: 3rem;
    border-radius: 10px;
    font-size: 1.9rem;
  }
  .front__instagram__inner__content__btn a:after {
    right: 20px;
  }
  .front__firstTime__inner {
    padding: 28rem 4rem 20rem;
  }
  .front__firstTime__inner h2 {
    margin: 0 auto 10rem;
    font-size: 3.5rem;
  }
  .front__firstTime__inner h2:before {
    bottom: -36px;
    width: 200px;
    height: 4px;
    border-radius: 4px;
  }
  .front__firstTime__inner p {
    margin: 9rem 0;
    font-size: 2.5rem;
  }
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	料金案内のscss
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.price {
  background: #ffffff;
}
.price__inner {
  padding: 4rem 1.6rem;
  background: #e7e7e7;
}
.price__ttl p {
  color: #013593;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.096rem;
}
.price__ttl h2 {
  margin-top: 2rem;
  color: #06040c;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1.7;
}
.price__list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 3.2rem 0;
  list-style: none;
}
.price__list__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  box-shadow: 0 6px 14px 0 rgba(0, 0, 0, 0.08);
}
.price__list__item__thumb {
  position: relative;
  height: 24rem;
  overflow: hidden;
}
.price__list__item__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.price__list__item__tag {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.6rem;
  background: #013593;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.75;
  white-space: nowrap;
}
.price__list__item__table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.6rem;
}
.price__list__item__table__heading {
  padding: 0.8rem 0;
  color: #000000;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.08rem;
  text-align: center;
}
.price__list__item__table__row {
  padding: 1.6rem 0.8rem;
  border-bottom: 1px solid #e4e4e4;
}
.price__list__item__table__row--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price__list__item__table__row--stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.price__list__item__table__row__title {
  color: #000000;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0.08rem;
}
.price__list__item__table__row__title small {
  font-size: 1.4rem;
  font-weight: bold;
}
.price__list__item__table__row__price {
  display: flex;
  align-items: flex-end;
  gap: 0.2rem;
  color: #013593;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
}
.price__list__item__table__row__price--range {
  align-items: flex-end;
}
.price__list__item__table__row__price__lines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}
.price__list__item__table__row__price__line {
  display: flex;
  align-items: flex-end;
  gap: 0.2rem;
}
.price__list__item__table__row__price__num {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  letter-spacing: -0.08rem;
  line-height: 1;
}
.price__list__item__table__row__price__unit {
  font-size: 2.4rem;
  letter-spacing: 0.096rem;
}
.price__list__item__table__row__price__suffix {
  font-size: 1.6rem;
  letter-spacing: 0.064rem;
}
.price__list__item__table__note {
  width: 100%;
  padding: 0.8rem 1.6rem;
  color: #000000;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1.75;
}
.price__list__item__table__note--lead {
  font-size: 1.8rem;
  line-height: 1.5;
}
.price__list__item--primary .price__list__item__tag {
  color: #fff831;
}
.price__note {
  padding: 0.8rem 0;
  color: #000000;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
}
.price__divider {
  height: 11.7rem;
  background: #e7e7e7;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.price .price__list__item__table__row--stack .price__list__item__table__row__title {
  width: 100%;
  color: #013593;
}
.price .price__list__item__table__row--stack .price__list__item__table__row__price {
  width: 100%;
  justify-content: center;
  padding: 0.8rem 0;
}

@media screen and (min-width: 600px) {
  .price__inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 8rem 3.2rem;
  }
  .price__ttl p {
    font-size: 3.8rem;
    letter-spacing: 0.152rem;
  }
  .price__ttl h2 {
    margin-top: 4rem;
    font-size: 4.1rem;
  }
  .price__list {
    gap: 4.8rem;
    padding: 6.4rem 0;
  }
  .price__list__item {
    gap: 2rem;
  }
  .price__list__item__thumb {
    height: 48rem;
  }
  .price__list__item__tag {
    padding: 1.2rem 3.2rem;
    font-size: 2.8rem;
  }
  .price__list__item__table {
    gap: 2rem;
    padding: 3.2rem;
  }
  .price__list__item__table__heading {
    padding: 1.6rem 0;
    font-size: 4rem;
    letter-spacing: 0.16rem;
  }
  .price__list__item__table__row {
    padding: 3.2rem 1.6rem;
  }
  .price__list__item__table__row--stack {
    gap: 2rem;
  }
  .price__list__item__table__row__title {
    font-size: 4rem;
  }
  .price__list__item__table__row__title small {
    font-size: 2.8rem;
  }
  .price__list__item__table__row__price {
    gap: 0.4rem;
  }
  .price__list__item__table__row__price__lines {
    gap: 0.4rem;
  }
  .price__list__item__table__row__price__line {
    gap: 0.4rem;
  }
  .price__list__item__table__row__price__num {
    font-size: 8rem;
    letter-spacing: -0.16rem;
  }
  .price__list__item__table__row__price__unit {
    font-size: 4.8rem;
    letter-spacing: 0.192rem;
  }
  .price__list__item__table__row__price__suffix {
    font-size: 3.2rem;
    letter-spacing: 0.128rem;
  }
  .price__list__item__table__note {
    padding: 1.6rem 3.2rem;
    font-size: 3.2rem;
  }
  .price__list__item__table__note--lead {
    font-size: 3.6rem;
  }
  .price__note {
    padding: 1.6rem 0;
    font-size: 3.6rem;
  }
  .price__divider {
    max-width: 780px;
    margin: 0 auto;
    height: 23.4rem;
  }
  .price .price__list__item__table__row--stack .price__list__item__table__row__price {
    padding: 1.6rem 0;
  }
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	レンタルタックルのscss
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.rental__inner {
  padding: 4rem 1.6rem;
  background: #ffffff;
}
.rental__ttl {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.6rem 0;
}
.rental__ttl p {
  padding: 0.8rem 0;
  color: #013593;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.24rem;
}
.rental__ttl h2 {
  padding: 0.8rem 0;
  color: #06040c;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 1.5;
}
.rental__list {
  padding: 3.2rem 0;
  list-style: none;
}
.rental__list__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
}
.rental__list__item__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 358/328;
  overflow: hidden;
}
.rental__list__item__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rental__list__item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0.8rem;
}
.rental__list__item__row__title {
  color: #013593;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.064rem;
}
.rental__list__item__row__price {
  display: flex;
  align-items: flex-end;
  gap: 0.2rem;
  color: #013593;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
}
.rental__list__item__row__price__num {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  letter-spacing: -0.08rem;
  line-height: 1;
}
.rental__list__item__row__price__unit {
  font-size: 2.4rem;
  letter-spacing: 0.096rem;
}
.rental__list__item__notes {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  width: 100%;
  padding: 0.8rem 0;
}
.rental__list__item__notes__note {
  width: 100%;
  color: #000000;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: left;
}
.rental__list__item__notes__note__accent {
  color: #013593;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .rental__inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 8rem 3.2rem;
  }
  .rental__ttl {
    gap: 1.6rem;
    padding: 3.2rem 0;
  }
  .rental__ttl p {
    font-size: 4.8rem;
    letter-spacing: 0.48rem;
  }
  .rental__ttl h2 {
    padding: 1.6rem 0;
    font-size: 4.4rem;
  }
  .rental__list {
    padding: 6.4rem 0;
  }
  .rental__list__item {
    gap: 2rem;
  }
  .rental__list__item__row {
    padding: 3.2rem 1.6rem;
  }
  .rental__list__item__row__title {
    font-size: 3.2rem;
    letter-spacing: 0.128rem;
  }
  .rental__list__item__row__price {
    gap: 0.4rem;
  }
  .rental__list__item__row__price__num {
    font-size: 8rem;
    letter-spacing: -0.16rem;
  }
  .rental__list__item__row__price__unit {
    font-size: 4.8rem;
    letter-spacing: 0.192rem;
  }
  .rental__list__item__notes {
    gap: 3.2rem;
    padding: 1.6rem 0;
  }
  .rental__list__item__notes__note {
    font-size: 3.2rem;
  }
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	乗船までの流れのscss
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.flow__inner {
  padding: 9rem 2rem 0;
  background: #ffffff;
}
.flow__inner__ttl p {
  color: #013593;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
}
.flow__inner__ttl h2 {
  margin-top: 2rem;
  color: #000000;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1.7;
}
.flow__inner__figure {
  margin: 3rem 0;
}
.flow__inner__figure img {
  width: 100%;
}
.flow__inner__text {
  margin: 4rem 0;
  color: #181818;
  font-size: 1.8rem;
  line-height: 1.7;
}

@media screen and (min-width: 600px) {
  .flow {
    max-width: 780px;
    margin: 0 auto;
  }
  .flow__inner {
    padding: 18rem 4rem 0;
  }
  .flow__inner__ttl p {
    font-size: 3.8rem;
  }
  .flow__inner__ttl h2 {
    margin-top: 4rem;
    font-size: 4.1rem;
  }
  .flow__inner__figure {
    margin: 6rem 0;
  }
  .flow__inner__text {
    margin: 8rem 0;
    font-size: 2.8rem;
  }
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	ご予約についてのscss
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.reserve {
  background: linear-gradient(180deg, #e4eaf1 0%, #e4eaf1 50%, #E7E7E7 50%, #E7E7E7 100%);
}
.reserve__inner {
  clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
  background: #013593;
  padding: 14rem 2rem 10rem;
  color: #ffffff;
}
.reserve__inner__text {
  text-align: center;
  font-size: 2rem;
  line-height: 1.7;
  margin: 0 auto 4.4rem;
}
.reserve__inner h2 {
  position: relative;
  margin: 0 auto 5rem;
  color: #fff831;
  font-weight: bold;
  font-size: 2.2rem;
  text-align: center;
}
.reserve__inner h2:before {
  display: inline-block;
  position: absolute;
  bottom: -1.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 12rem;
  height: 0.2rem;
  border-radius: 0.2rem;
  background-color: #fff831;
  content: "";
  -webkit-transform: translateX(-50%);
}
.reserve__inner__figure {
  margin: 3rem 0;
}
.reserve__inner__figure a {
  display: block;
}
.reserve__inner__figure img {
  border-radius: 10px;
}
.reserve__inner__btn {
  margin: 5rem 0;
}
.reserve__inner__btn a {
  display: block;
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 5px;
  color: #013593;
  background: #ffffff;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
}
.reserve__inner__btn a:after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (min-width: 600px) {
  .reserve {
    max-width: 780px;
    margin: 0 auto;
  }
  .reserve__inner {
    padding: 18rem 4rem 20rem;
  }
  .reserve__inner h2 {
    font-size: 4.1rem;
  }
  .reserve__inner h2:before {
    bottom: -2.4rem;
    width: 24rem;
  }
  .reserve__inner__text {
    margin-bottom: 8.8rem;
    font-size: 4rem;
  }
  .reserve__inner__btn {
    margin-top: 6rem;
  }
  .reserve__inner__btn a {
    padding: 3rem;
    border-radius: 10px;
    font-size: 1.9rem;
  }
  .reserve__inner__btn a:after {
    right: 40px;
  }
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	船体についてのscss
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.ship {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #ffffff 50%, #ffffff 100%);
}
.ship__inner {
  clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
  padding: 14rem 2rem 10rem;
  background: #013593;
}
.ship__inner__ttl p {
  color: #fff831;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
}
.ship__inner__ttl h2 {
  margin-top: 2rem;
  color: #fff831;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1.7;
}
.ship__inner__performance {
  margin-bottom: 7rem;
}
.ship__inner__performance figure {
  margin: 3rem -2rem 0;
}
.ship__inner__performance figure img {
  width: 100%;
}
.ship__inner__performance__box {
  margin: 2.4rem 0;
  padding: 1.5rem 2rem 2rem;
  background: #ffffff;
}
.ship__inner__performance__box__ttl {
  margin-bottom: 2.5rem;
  color: #013593;
  font-weight: bold;
}
.ship__inner__performance__box__ttl h3 {
  margin-top: 1.2rem;
  font-size: 2.6rem;
  line-height: 1;
}
.ship__inner__performance__box__text {
  font-size: 1.8rem;
  line-height: 2;
}
.ship__inner__figureBox {
  margin: 4rem 0;
}
.ship__inner__figureBox p {
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 1;
  color: #ffffff;
}
.ship__inner__figureBox figure {
  margin: 2rem -2rem 0;
}
.ship__inner__figureBox img {
  aspect-ratio: 125/91;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 600px) {
  .ship {
    max-width: 780px;
    margin: 0 auto;
  }
  .ship__inner {
    padding: 18rem 4rem 30rem;
  }
  .ship__inner__ttl p {
    font-size: 3.8rem;
  }
  .ship__inner__ttl h2 {
    margin-top: 4rem;
    font-size: 4.1rem;
  }
  .ship__inner__performance {
    margin-bottom: 14rem;
  }
  .ship__inner__performance figure {
    margin: 6rem -4rem 0;
  }
  .ship__inner__performance__box {
    top: -40px;
    padding: 3rem 4rem 4rem;
    box-shadow: 0 16px 20px 0 #bdbdbd;
  }
  .ship__inner__performance__box__ttl {
    margin-bottom: 5rem;
  }
  .ship__inner__performance__box__ttl h3 {
    margin-top: 2.4rem;
    font-size: 3.9rem;
  }
  .ship__inner__performance__box__text {
    font-size: 2.7rem;
  }
  .ship__inner__figureBox {
    margin: 8rem 0;
  }
  .ship__inner__figureBox p {
    margin-bottom: 4rem;
    font-size: 3.2rem;
  }
  .ship__inner__figureBox figure {
    margin: 4rem -4rem 0;
  }
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	アクセスのscss
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.access {
  background: #ffffff;
}
.access__inner {
  clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
  padding: 9rem 2rem 5rem;
  background: #ffffff;
}
.access__inner__ttl p {
  color: #013593;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
}
.access__inner__ttl h2 {
  margin-top: 2rem;
  color: #000000;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1.7;
}
.access__inner__figure {
  margin: 4rem -2rem;
}
.access__inner__textBox {
  margin: 4rem 0;
  padding: 0 3rem;
  text-align: center;
}
.access__inner__textBox h3 {
  color: #000000;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 2;
}
.access__inner__textBox span {
  display: block;
  margin: 2rem 0;
  color: #696969;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 2;
}
.access__inner__g-map {
  margin: 5rem auto 8rem;
}
.access__inner__g-map p {
  margin-bottom: 1.5rem;
  color: #000000;
  font-weight: bold;
  font-size: 2.2rem;
  text-align: center;
}
.access__inner__g-map figure {
  margin: 0 -2rem;
}
.access__inner__g-map__btn {
  margin: 3rem 0 4rem;
}
.access__inner__g-map__btn a {
  display: block;
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 5px;
  background: #013593;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.3rem;
  text-align: center;
}
.access__inner__g-map__btn a:after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.access__inner__g-map__photo {
  margin: 3rem -2rem 0;
}
.access__inner__g-map__photo img {
  width: 100%;
  aspect-ratio: 390/260;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 600px) {
  .access {
    max-width: 780px;
    margin: 0 auto;
  }
  .access__inner {
    padding: 18rem 4rem 10rem;
  }
  .access__inner__ttl p {
    font-size: 3.8rem;
  }
  .access__inner__ttl h2 {
    margin-top: 4rem;
    font-size: 4.1rem;
  }
  .access__inner__figure {
    margin: 8rem -4rem;
  }
  .access__inner__textBox {
    margin: 8rem 0;
    padding: 0 6rem;
  }
  .access__inner__textBox h3 {
    font-size: 2.8rem;
  }
  .access__inner__textBox span {
    margin: 4rem 0;
    font-size: 1.9rem;
  }
  .access__inner__g-map {
    margin: 10rem auto 16rem;
  }
  .access__inner__g-map p {
    margin-bottom: 3rem;
    font-size: 3.5rem;
  }
  .access__inner__g-map figure {
    margin: 0 -4rem;
  }
  .access__inner__g-map__btn {
    margin: 6rem 0 8rem;
  }
  .access__inner__g-map__btn a {
    padding: 3rem;
    border-radius: 10px;
    font-size: 1.9rem;
  }
  .access__inner__g-map__btn a:after {
    right: 40px;
  }
  .access__inner__g-map__photo {
    margin: 6rem -4rem 0;
  }
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	よくある質問のscss
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.faq__ttl {
  padding: 0 1.5rem;
}
.faq__ttl p {
  color: #013593;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
}
.faq__ttl h2 {
  margin-top: 2rem;
  color: #000000;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1.7;
}
.faq__listTtl {
  margin: 6rem 0;
  padding: 1rem 0;
  background: #3687cf;
  color: #ffffff;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1.5;
  text-align: center;
}
.faq ul {
  padding: 0 2rem 0 4rem;
}
.faq__list {
  margin: 4rem 0;
}
.faq__list__question {
  position: relative;
  margin-bottom: 2rem;
  padding: 0 2rem 2rem 0;
  border-bottom: 2px solid #dfe3e3;
}
.faq__list__question p {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
}
.faq__list__question:before {
  position: absolute;
  top: 12px;
  left: -25px;
  transform: translateY(-50%);
  width: 13.5px;
  height: 15.75px;
  background-image: url(../../assets/images/icon-question-01-all.png);
  background-size: cover;
  background-repeat: no-repeat;
  color: #dfe3e3;
  content: "";
}
.faq__list__question:after {
  position: absolute;
  top: 8px;
  right: 0;
  color: #dfe3e3;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
}
.faq__list__answer {
  display: none;
}
.faq__list__answer p {
  font-size: 1.4rem;
  line-height: 1.6;
}
.faq__list__answer a {
  display: block;
  margin: 3.5rem 0;
  color: #0878b3;
  font-weight: bold;
  font-size: 1.4rem;
}
.faq__list:first-of-type .faq__list__answer {
  display: block;
}
.faq__list .active:after {
  position: absolute;
  top: 8px;
  right: 0;
  color: #dfe3e3;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  content: "\f068";
}

@media screen and (min-width: 600px) {
  .faq {
    max-width: 780px;
    margin: 0 auto;
  }
  .faq__ttl {
    padding: 0 3rem;
  }
  .faq__ttl p {
    font-size: 3.8rem;
  }
  .faq__ttl h2 {
    margin-top: 4rem;
    font-size: 4.1rem;
  }
  .faq__listTtl {
    margin: 12rem 0;
    padding: 2rem 0;
    font-size: 4.1rem;
  }
  .faq ul {
    padding: 0 4rem 0 8rem;
  }
  .faq__list {
    margin: 8rem 0;
  }
  .faq__list__question {
    margin-bottom: 4rem;
    padding: 0 4rem 4rem 0;
    border-bottom: 4px solid #dfe3e3;
  }
  .faq__list__question p {
    font-size: 2.5rem;
  }
  .faq__list__question:before {
    top: 24px;
    left: -50px;
    width: 27px;
    height: 31.5px;
  }
  .faq__list__question:after {
    top: 16px;
  }
  .faq__list__answer p {
    font-size: 2.2rem;
  }
  .faq__list__answer a {
    margin: 7rem 0;
    font-size: 2.2rem;
  }
  .faq__list .active:after {
    top: 16px;
  }
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	お問い合わせのscss
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.contact {
  margin: 10rem auto 0;
}
.contact__ttl {
  padding: 0 1.5rem;
}
.contact__ttl p {
  color: #013593;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
}
.contact__ttl h2 {
  margin-top: 2rem;
  color: #000000;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1.7;
}
.contact__box {
  margin: 4rem auto 6rem;
}
.contact__box__ttl {
  padding: 1.2rem 0;
  background: #013593;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}
.contact__box h2,
.contact__box h3 {
  margin: 3rem 0;
  font-weight: bold;
  font-size: 3.2rem;
  text-align: center;
}
.contact__box__line {
  padding: 0 2rem;
}
.contact__box__lineText {
  margin: 2rem auto 0;
  padding: 0 2rem;
  color: #1a1a1a;
  font-size: 1.6rem;
  line-height: 2;
}
.contact__box .general__btn-tel {
  padding: 0 2.5rem;
}

@media screen and (min-width: 600px) {
  .contact {
    max-width: 780px;
    margin: 0 auto;
    margin: 20rem auto 0;
  }
  .contact__ttl {
    padding: 0 3rem;
  }
  .contact__ttl p {
    font-size: 3.8rem;
  }
  .contact__ttl h2 {
    margin-top: 4rem;
    font-size: 4.1rem;
  }
  .contact__box {
    margin: 8rem auto 12rem;
  }
  .contact__box__ttl {
    padding: 2.4rem 0;
    font-size: 2.8rem;
  }
  .contact__box h2,
  .contact__box h3 {
    margin: 6rem 0;
    font-size: 5.1rem;
  }
  .contact__box__line {
    padding: 0 4rem;
  }
  .contact__box__lineText {
    margin: 4rem auto 0;
    padding: 0 4rem;
    font-size: 2.5rem;
  }
  .contact__box .general__btn-tel {
    padding: 0 5rem;
  }
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	サンクスページのscss
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.thanks {
  margin-top: 6.5rem;
}
.thanks__inner {
  position: relative;
  z-index: 0;
  padding: 7rem 2rem 6rem;
}
.thanks__inner__ttl p {
  color: #1f489e;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
}
.thanks__inner__ttl h1 {
  margin-top: 2.5rem;
  color: #000000;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1.7;
}
.thanks__inner__text {
  margin: 4rem 0;
  color: #181818;
  font-size: 1.8rem;
  line-height: 1.6;
}
.thanks__inner__btn a {
  display: block;
  width: 100%;
  max-width: 180px;
  margin: 1.5rem auto;
}

@media screen and (min-width: 600px) {
  .thanks__inner {
    max-width: 780px;
    margin: 0 auto;
  }
  .thanks__inner__ttl {
    margin: 0 0 5rem;
  }
  .thanks__inner__ttl p {
    font-size: 3.8rem;
  }
  .thanks__inner__ttl h1 {
    font-size: 4.1rem;
  }
  .thanks__inner__text {
    margin: 0 auto 3rem;
    font-size: 2rem;
  }
  .thanks__inner__btn a {
    max-width: 230px;
    margin: 3rem auto;
  }
}
@media screen and (min-width: 1025px) {
  .thanks {
    margin-top: 10.8rem;
  }
}/*# sourceMappingURL=common.css.map */