@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 0;
  }
}

body {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 300;
  color: #000000;
  font-size: 16px;
  line-height: 1.7;
  background-color: #ff9800;
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.button__text {
  font-size: 20px;
}

.section {
  padding-block: 30px;
}
@media screen and (min-width: 768px) {
  .section {
    padding-block: 48px;
  }
}

.underline {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.bold {
  font-weight: 700;
}

.header {
  background-color: #f8b819;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
}
@media screen and (min-width: 768px) {
  .header {
    position: sticky;
    -ms-flex-preferred-size: 20.8%;
        flex-basis: 20.8%;
    padding: 0px 20px;
    height: 100vh;
  }
}

.header__container {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header__container {
    display: block;
    width: 160px;
    margin: 0 auto;
    top: 50px;
  }
}

.inner {
  padding-inline: 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-inline: 40px;
    max-width: 980px;
  }
}

.heading__en {
  font-size: 40px;
}
@media screen and (min-width: 768px) {
  .heading__en {
    font-size: 60px;
  }
}

.heading__ja {
  font-size: 12px;
  padding-bottom: 10px;
}

.header__logo {
  display: inline-block;
  padding-block: 14px;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .header__logo {
    font-size: 35px;
    line-height: 1;
    padding: 14px 0;
  }
}

.header__icon {
  z-index: 51;
  position: absolute;
  top: 30px;
  right: 0;
  width: 40px;
  height: 28px;
}

.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  top: 17px;
  -webkit-transform: translateY(-5px) rotate(-135deg);
          transform: translateY(-5px) rotate(-135deg);
  width: 100%;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  opacity: 0;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 17px;
  -webkit-transform: translateY(-5px) rotate(135deg);
          transform: translateY(-5px) rotate(135deg);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  position: absolute;
  left: 0;
  height: 4px;
  background: #000000;
  border-radius: 6px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.drawer-icon__bar:nth-child(1) {
  width: 100%;
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  width: 90%;
  top: 12px;
}
.drawer-icon__bar:nth-child(3) {
  width: 70%;
  top: 24px;
}

.header__contents {
  display: none;
  height: calc(100vh - 88px);
  border-top: 1px solid #f5f5f5;
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .header__contents {
    width: auto;
    height: calc(100vh - 88px);
    display: block;
    border-top: none;
  }
}

@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.header__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .header__nav-items {
    gap: 20px;
  }
}

.header__nav-link {
  width: 136px;
  padding: 5px 0;
  margin: 0 auto;
  width: 170px;
  margin: 0 auto;
  padding: 6px 10px;
  width: 180px;
}
.header__nav-link:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header__nav-link:hover .button__text {
  border-bottom: 1px solid #000000;
}
.header__nav-link img {
  width: 35px;
  height: 35px;
  margin-top: -10px;
  margin-right: 10px;
}

.drawer-content {
  background: #f8b819;
  height: calc(100% - 96px);
  position: fixed;
  top: 96px;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  z-index: 20;
}
.drawer-content.is-checked {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
@media screen and (min-width: 768px) {
  .drawer-content {
    display: none !important;
  }
}

.drawer__lists {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.drawer__list {
  width: 150px;
}
.drawer__list:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.drawer__list:hover .drawer-text {
  border-bottom: 1px solid #000000;
}

.drawer__link img {
  width: 35px;
  height: 35px;
  margin-top: -10px;
  margin-right: 10px;
}

.drawer-text {
  font-size: 20px;
}

.drawer-content__link img {
  width: 35px;
  height: 35px;
}

.main {
  width: 100%;
  margin-top: 96px;
}
@media screen and (min-width: 768px) {
  .main {
    -ms-flex-preferred-size: 79.2%;
        flex-basis: 79.2%;
    margin-top: 0;
  }
}

.fv {
  position: relative;
}

.fv__img img {
  width: 100%;
}

.fv__contents {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 209px;
  background: url(../img/sp/fv__bg.png) center center no-repeat;
  background-size: 100% 70%;
  padding: 32px;
}
@media screen and (min-width: 768px) {
  .fv__contents {
    background: url(../img/fv_bg.png) center center no-repeat;
    background-size: 100% auto;
    top: 100px;
    left: 0;
    max-width: 627px;
    height: 174px;
    padding-top: 12px;
    padding-left: 96px;
  }
}

.fv__heading {
  display: block;
}

.fv__heading-main {
  font-size: 20px;
  font-family: "Sawarabi Gothic", sans-serif;
}
@media screen and (min-width: 768px) {
  .fv__heading-main {
    font-size: 40px;
  }
}

.TextTyping span {
  display: none;
}

/*文字列後ろの線の設定*/
.TextTyping::after {
  content: "|";
  -webkit-animation: typinganime 0.8s ease infinite;
          animation: typinganime 0.8s ease infinite;
}

@-webkit-keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fv__heading-sub {
  display: block;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .fv__heading-sub {
    margin-top: 12px;
  }
}

.service__items {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .service__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.service__item + .service__item {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .service__item + .service__item {
    margin-top: 0;
  }
}

.service__content {
  position: relative;
  z-index: 1;
  visibility: visible;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}
.service__content::after {
  content: "";
  border-radius: 50%;
  width: 140px;
  height: 140px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), color-stop(50%, #26c6da));
  background: linear-gradient(180deg, #f5f5f5 0%, #26c6da 50%);
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.service__img {
  margin: 0 auto;
  width: 80px;
  height: 80px;
}

.service__heading {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.about {
  background-color: #fb8c00;
}

@media screen and (min-width: 768px) {
  .about__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
  }
}

.about__img {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__img {
    max-width: 400px;
    margin: auto;
  }
}

.heading {
  margin-bottom: 24px;
  display: inline-block;
  border-bottom: dashed 2px #000000;
}
@media screen and (min-width: 768px) {
  .heading {
    margin-bottom: 32px;
  }
}

.about__text + .about__text {
  margin-top: 1em;
}

.gallery {
  background-color: #fb8c00;
}

.gallery__slider {
  margin-top: 30px;
}

.gallery__swiper {
  padding-bottom: 20px;
}

.gallery__slide {
  text-align: center;
}

.swiper-slide {
  height: auto;
}

.gallery__card {
  border-radius: 20px;
  border: 3px solid #000000;
  background: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 540px;
  margin: 0 auto;
  overflow: hidden;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .gallery__card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 700px;
  }
}
@media screen and (min-width: 900px) {
  .gallery__card {
    max-width: 780px;
  }
}

.gallery__card-img {
  width: 80%;
  padding: 20px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .gallery__card-img {
    width: 100%;
  }
}
.gallery__card-img__sp {
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 30%;
}
.gallery__card-container {
  padding: 0px 20px 20px 20px;
  width: 100%;
  display: grid;
  place-content: center;
}
@media screen and (min-width: 768px) {
  .gallery__card-container {
    padding: 20px 20px 40px 20px;
  }
}

.gallery__card-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.gallery__card-text {
  font-size: 14px;
  text-align: left;
}

.gallery__card-text + .gallery__card-text {
  margin-top: 5px;
}

.gallery__card-link {
  margin-top: 20px;
}
.gallery__card-link a {
  font-weight: 700;
}

.gallery__card-link__text {
  margin-top: 10px;
  font-size: 14px;
}

.gallery__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  bottom: 0 !important;
}
.gallery__pagination .swiper-pagination-bullet {
  background: #bcbcbc;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.gallery__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #f5f5f5;
}

.gallery__prev,
.gallery__next {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #26c6da;
  background-repeat: no-repeat;
  background-image: url(../img/gallery_arrow.png);
  background-size: 30px;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  top: var(--swiper-navigation-top-offset, 20%);
}
@media screen and (min-width: 600px) {
  .gallery__prev,
  .gallery__next {
    top: var(--swiper-navigation-top-offset, 50%);
  }
}
.gallery__prev::after,
.gallery__next::after {
  display: none;
}
.gallery__prev:hover,
.gallery__next:hover {
  background-position: center left 80%;
}

.gallery__prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.flow__container {
  margin-top: 40px;
}

@media screen and (min-width: 900px) {
  .flow__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .flow__items {
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
  }
}

.flow__item {
  position: relative;
  padding-top: 30px;
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .flow__item {
    margin-top: 0;
  }
}

.flow__head {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 3px solid #000000;
  background: #26c6da;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flow__head-text {
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 1.3px;
}

.flow__head-num {
  font-size: 18px;
  line-height: 100%;
}

.flow__item-box {
  border-radius: 30px;
  border: 3px solid #000000;
  background: #f5f5f5;
  overflow: hidden;
  padding: 47px 10px 23px;
  text-align: center;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.flow__item-img img {
  width: 50px;
}

.flow__item-heading {
  font-weight: 700;
}

.flow__item-text {
  margin-top: 10px;
  font-size: 14px;
}

.contact {
  background-color: #fb8c00;
}

.contact__form {
  margin-top: 20px;
  max-width: 900px;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-top: 40px;
    padding-inline: 100px;
  }
}

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.contact__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .contact__field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}

.contact__field-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .contact__field-head {
    width: 200px;
  }
}

.contact__form-label {
  font-weight: 700;
}

.contact__field-head__tab {
  display: inline-block;
  border-radius: 4px;
  background: #ff5722;
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 700;
  padding-block: 4px;
  padding-inline: 8px;
}
.contact__field-head__tab.is-option {
  background: #f8b819;
}

.form-text,
.form-field__item-select,
.form-field__textarea {
  border-radius: 8px;
  background: #f5f5f5;
  padding: 16px;
  width: 100%;
  border: 1px solid transparent;
}
.form-text:focus,
.form-field__item-select:focus,
.form-field__textarea:focus {
  border: 1px solid #000000;
  background: #e9f6f8;
  outline: none;
}

@media screen and (min-width: 900px) {
  .form-field__item,
  .form-field__textarea {
    width: calc(100% - 180px - 40px);
  }
}

.form-text.is-error,
.form-field__textarea.is-error {
  border-color: #ce2073;
}

.js-form-input:checked + .form__radio-text {
  background: #26c6da;
}

.form-field__item-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/contact_arrow.png);
  background-repeat: no-repeat, no-repeat;
  background-position: center right 9px, center center;
  background-size: 30px 30px, cover;
  cursor: pointer;
  position: relative;
  height: 56px;
}

.contact__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form__radio:nth-child(1) .form__radio-text {
  border-radius: 8px 0 0 8px;
}
.form__radio:nth-child(2) .form__radio-text {
  border-radius: 0 8px 8px 0;
}

.form__radio-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.form__radio-text {
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  width: 80px;
  height: 40px;
  display: grid;
  place-items: center;
}

.contact__field-head__top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form-field__textarea {
  height: 155px;
}

.contact__footer {
  margin-top: 24px;
}

.contact__privacy {
  text-align: center;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}

.form-checkbox__text {
  font-size: 14px;
  position: relative;
  padding-left: 36px;
}
.form-checkbox__text::before {
  content: "";
  display: inline-block;
  position: absolute;
  background: #f5f5f5;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #000000;
  border-radius: 4px;
}
.form-checkbox__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/contact_check.png) no-repeat center center/contain;
  left: 0;
  width: 23px;
  height: 23px;
  opacity: 0;
}

.contact__submit {
  text-align: center;
  margin-top: 20px;
}

.button {
  display: inline-block;
  background: #26c6da;
  padding: 5px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
}
.button:hover {
  border: 1px solid #000000;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.footer {
  background: #000000;
  color: #f5f5f5;
  text-align: center;
  padding-block: 10px;
}