@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
body {
  color: #333;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}

/*モバイルのみ表示*/

/*画像の縦横比設定*/
img {
  display: block;
  width: 100%;
  height: auto;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

/* マウスホバーがあるデバイスでのアニメーション */
/* pc幅での電話発信しない*/
body.js-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.body-wrapper {
  background-image: url(../images/bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.main {
  padding-bottom: 1rem;
}

html {
  font-size: 16px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  font: inherit;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  position: absolute;
  opacity: 0;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*addressタグのフォントリセット*/
address {
  font-style: normal;
}

.about__top {
  width: 86.9565217391%;
  min-width: 18.75rem;
  margin-top: 0.8125rem;
  margin-inline: auto;
}

.about__images {
  margin-top: 1.875rem;
}

.about__image {
  position: relative;
  aspect-ratio: 291/172;
  width: 82.6086956522%;
  min-width: 17.8125rem;
  margin-inline: auto;
  -webkit-box-shadow: 0.3125rem 0.3125rem 0 #42ABC8;
          box-shadow: 0.3125rem 0.3125rem 0 #42ABC8;
}

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

.about__image:first-child {
  z-index: 1;
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
}

.about__image:nth-child(2) {
  z-index: 2;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}

.about__image:nth-child(3) {
  z-index: 3;
  -webkit-transform: rotate(-0.7deg);
          transform: rotate(-0.7deg);
}

.about__bottom {
  position: relative;
  width: 95.9420289855%;
  min-width: 20.6875rem;
  margin-top: 1.375rem;
  margin-inline: auto;
}

.about__bottom-image {
  position: absolute;
  right: -1.25rem;
  bottom: -0.8125rem;
  max-width: 7.25rem;
}

.about__video {
  aspect-ratio: 345/185;
  margin-top: 0.8125rem;
  margin-inline: auto;
}

.about__video video {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.anchor-link {
  scroll-margin-top: 3.75rem;
}

.btn {
  display: inline-block;
  position: relative;
  padding: 0.875rem 4.0625rem 2.6875rem 5.9375rem;
  background-image: url(../images/btn.webp);
  background-size: contain;
  background-repeat: no-repeat;
  color: #333;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
  font-family: "RocknRoll One", sans-serif;
  text-align: center;
  cursor: pointer;
}

.btn::before {
  position: absolute;
  top: 0.9375rem;
  left: 4.0625rem;
  width: 0.9375rem;
  height: 1.25rem;
  background-image: url(../images/icon-btn.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.drawer {
  visibility: hidden;
  z-index: 9998;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  overflow-y: auto;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background-color: #42ABC8;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  will-change: transform;
}

.drawer.is-openSP {
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
  pointer-events: auto;
}

.drawer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: inherit;
  gap: 2.375rem;
}

.drawer__inner.inner {
  padding-inline: 1.6875rem;
}

.drawer__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 5.625rem;
  gap: 1.5rem;
}

.drawer__link {
  display: inline-block;
  width: 100%;
  height: inherit;
  color: #FFF;
  font-weight: 400;
  font-size: 1rem;
  font-family: "RocknRoll One", sans-serif;
}

.drawer__contact {
  margin-top: 2.1875rem;
  margin-left: -0.625rem;
}

.drawer__icon {
  margin-top: 2.1875rem;
}

.drawer__icon.icon__items {
  -webkit-box-pack: initial;
  -webkit-justify-content: initial;
      -ms-flex-pack: initial;
          justify-content: initial;
}

.flow__items {
  margin-top: 1rem;
}

.flow__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 98.2608695652%;
  min-width: 21.1875rem;
  margin-inline: auto;
  gap: 0.625rem;
}

.flow__item:not(:first-child) {
  margin-top: -1.5625rem;
}

.flow__step {
  padding: 1.5625rem 0.8125rem 5rem;
  background-image: url(../images/step.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #FFF;
  font-weight: 900;
  font-size: 1.125rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}

.flow__step.flow__step--first {
  background-image: url(../images/step01.svg);
}

.flow__step-number span {
  display: block;
  font-size: 1.75rem;
}

.flow__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 73.3333333333%;
  min-width: 15.8125rem;
  margin-top: 0.3125rem;
  padding: 1.1875rem 1.5rem;
  border: 1px solid;
  border-radius: 0.375rem;
  background-color: #FFF;
}

.flow__title {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  font-family: "RocknRoll One", sans-serif;
  letter-spacing: 0.03em;
}

.flow__text {
  width: 81.0276679842%;
  min-width: 12.8125rem;
  margin-top: 0.625rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6;
}

.flow__item.flow__item--last .flow__content {
  position: relative;
  padding: 0.5rem 1.5rem;
}

.flow__image {
  position: absolute;
  right: 0.5625rem;
  bottom: -0.375rem;
  max-width: 4.625rem;
}

.footer__logo {
  max-width: 13.8125rem;
  margin-top: 1.9375rem;
  margin-inline: auto;
}

.footer__copy {
  margin-top: 1.5rem;
  color: #DCDDD8;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
}

.form {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1;
  font-family: "RocknRoll One", sans-serif;
}

.form__wrap:not(:first-child) {
  margin-top: 1.25rem;
}

.form__input {
  border: 1px solid;
  border-radius: 0.375rem;
  background-color: #FFF;
}

.form__input-text {
  width: 100%;
  padding: 0.625rem 0.625rem;
  font-size: 0.75rem;
  line-height: 1;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.form__input-text::-webkit-input-placeholder {
  color: #D0D0D0;
  font-size: 0.75rem;
  line-height: 1;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.form__input-text::-moz-placeholder {
  color: #D0D0D0;
  font-size: 0.75rem;
  line-height: 1;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.form__input-text:-ms-input-placeholder {
  color: #D0D0D0;
  font-size: 0.75rem;
  line-height: 1;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.form__input-text::-ms-input-placeholder {
  color: #D0D0D0;
  font-size: 0.75rem;
  line-height: 1;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.form__input-text::placeholder {
  color: #D0D0D0;
  font-size: 0.75rem;
  line-height: 1;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.form__input,
.form__radio {
  margin-top: 1rem;
}

.form__radio label {
  display: block;
}

.form__radio label:not(:first-of-type) {
  margin-top: 0.625rem;
}

.form__radio input {
  display: none;
}

.form__radio input + span {
  display: block;
  position: relative;
  padding-left: 1.1875rem;
  cursor: pointer;
}

.form__radio input + span::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.6875rem;
  height: 0.6875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid;
  border-radius: 50%;
  background-color: #FFF;
  content: "";
}

.form__radio input + span::after {
  position: absolute;
  top: 50%;
  left: 0.125rem;
  width: 0.4375rem;
  height: 0.4375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid;
  border-radius: 50%;
  background-color: #333;
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.form__radio input:checked + span::after {
  opacity: 1;
}

.form__btn {
  margin-top: 1.25rem;
  text-align: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.btn02 {
  width: 100%;
  padding: 0.8125rem;
  border-radius: 0.375rem;
  background-color: #333;
  color: #FFF;
  font-weight: 400;
  font-size: 0.75rem;
  font-family: "RocknRoll One", sans-serif;
}

.fv {
  padding-top: 4.3125rem;
}

.fv__image {
  aspect-ratio: 345/643;
}

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

/*ハンバーガー*/
.hamburger {
  z-index: 9999;
  position: fixed;
  top: 0.875rem;
  right: 0.75rem;
  width: 1.875rem;
  height: 1.625rem;
  padding: 0;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
}

.hamburger__line {
  right: 0;
  width: 100%;
  height: 0.125rem;
  border-radius: 0.125rem;
  background-color: #054D67;
  content: "";
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.hamburger__text {
  top: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #054D67;
  font-weight: 400;
  font-size: 0.625rem;
  line-height: 1;
  font-family: "RocknRoll One", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hamburger__line:first-child {
  top: 0;
}

.hamburger__line:nth-child(2) {
  top: 0.625rem;
}

.hamburger.is-openSP {
  top: 0.875rem;
  width: 2.3125rem;
  height: 1.9375rem;
}

.hamburger.is-openSP .hamburger__line:first-child {
  top: 0.41875rem;
  width: 1.875rem;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}

.hamburger.is-openSP .hamburger__line:nth-child(2) {
  top: 0.41875rem;
  width: 1.875rem;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}

.hamburger.is-openSP .hamburger__text {
  top: 1.25rem;
  right: -0.75rem;
}

.header {
  z-index: 9998;
  position: fixed;
  width: 100%;
  height: 3.5625rem;
  background-color: #42ABC8;
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
}

.inner.header__inner {
  max-width: initial;
  padding-inline: 0.75rem;
}

.header__logo {
  z-index: 9999;
  position: relative;
  width: 100%;
  max-width: 6.9375rem;
}

.header__nav {
  height: inherit;
}

.header__nav-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  gap: 2.5rem;
}

.header__nav-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.header__nav-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  color: #FFF;
  font-weight: 400;
  font-size: 1.25rem;
  font-family: "RocknRoll One", sans-serif;
}

.header__contact {
  position: fixed;
  right: 0;
  bottom: 0;
}

.icon {
  max-width: 16.1875rem;
  margin-inline: auto;
}

.icon__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
}

.icon__item {
  max-width: 3rem;
}

.icon__link {
  display: inline-block;
  width: 100%;
  margin-top: 0.5625rem;
  margin-inline: auto;
  padding: 0.34375rem;
  border: 3px solid;
  border-radius: 1.625rem;
  background-color: #FFF;
  color: #333;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.45;
  font-family: "RocknRoll One", sans-serif;
  text-align: center;
}

.inner {
  width: 100%;
  max-width: 30rem;
  margin-inline: auto;
  padding-inline: 15px;
}

.modal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2.5rem 1.25rem;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s, -webkit-transform 0.4s ease;
}

.modal.is-open {
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}

.modal__body {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 20.1875rem;
}

.modal__close-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.625rem;
  width: 0.6875rem;
  cursor: pointer;
}

.modal__content {
  padding: 1.875rem 1.25rem;
  border: 2px solid;
  border-radius: 0.5rem;
  background-color: #FFF;
}

.modal__text {
  width: 65.2173913043%;
  min-width: 14.0625rem;
  font-size: 1rem;
  font-family: "RocknRoll One", sans-serif;
}

.modal__form {
  width: 65.2173913043%;
  min-width: 14.0625rem;
  margin-top: 1.75rem;
  margin-inline: auto;
}

.modal__thanks {
  width: 65.2173913043%;
  min-width: 14.0625rem;
  margin-top: 1.25rem;
  margin-inline: auto;
}

.qa-item {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #999999;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.qa-item__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem 0.75rem;
  gap: 0.625rem;
  border: 3px solid #F9DF4E;
  border-radius: 0.625rem 0.625rem 0 0;
  background-color: #FFF;
  cursor: pointer;
}

.qa-item__text {
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.qa-item__icon {
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 1rem;
  height: 0.125rem;
}

.qa-item__icon::before {
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.qa-item__icon::before, .qa-item__icon::after {
  display: block;
  position: absolute;
  width: 1rem;
  height: 1px;
  background-color: #000;
  content: "";
}

.qa-item[open]:not([data-accordion-before-close]) .qa-item__icon::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.qa-item__icon::after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.qa-item__icon::before, .qa-item__icon::after {
  display: block;
  position: absolute;
  width: 1rem;
  height: 0.125rem;
  background-color: #000;
  content: "";
}

.qa-item__container {
  margin-top: 0.75rem;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  will-change: opacity, transform;
}

.qa-item__container.is-visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.qa-container__text {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.4666666667;
}

.qa__items {
  display: grid;
  margin-top: 1rem;
  gap: 1rem;
}

.recruit {
  color: #333;
}

.recruit__tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.875rem;
  gap: 0.125rem;
}

.recruit__tab-btn {
  padding: 0.875rem 1rem;
  border: 1px solid;
  border-bottom: none;
  border-radius: 0.25rem 0.25rem 0 0;
  background-color: rgba(66, 171, 200, 0.4);
  color: #333;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.2;
  cursor: pointer;
}

.recruit__tab-btn.is-active {
  background-color: #42ABC8;
}

.recruit__content {
  display: none;
}

.recruit__content.is-show {
  display: block;
}

.recruit__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid;
  background-color: #FFF;
}

.recruit__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #DCDDD8;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.4666666667;
}

.recruit__term {
  width: 24.6376811594%;
  padding: 0.625rem;
}

.recruit__desc {
  width: 75.3623188406%;
  padding: 0.625rem;
  border-left: 1px solid #DCDDD8;
}

.recruit__placeholder {
  padding: 1.25rem 0;
  font-size: 0.875rem;
  text-align: center;
}

.recruit__link {
  color: #333;
  text-decoration: underline;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.recruit__link:hover {
  opacity: 0.8;
}

.section-title {
  font-family: "RocknRoll One", sans-serif;
  text-align: center;
}

.section-title__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-text-stroke-color: #333;
  -webkit-text-stroke-width: 0.0625rem;
  color: #F9DF4E;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.6;
  font-family: "RocknRoll One", sans-serif;
}

.section-title__main::before,
.section-title__main::after {
  top: 0;
  width: 1.8125rem;
  height: 2.0625rem;
  background-image: url(../images/title-line.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.section-title__main::before {
  margin-right: 1.4375rem;
}

.section-title__main::after {
  margin-left: 1.4375rem;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.section-title__sub {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 2.2857142857;
}

.section-top {
  margin-top: 3.375rem;
}

.text {
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
}

.top {
  position: fixed;
  margin-top: 5.1875rem;
}

.top__slider-item {
  aspect-ratio: 352/362;
  width: 100%;
  max-width: 22rem;
  padding: 1.25rem 1.15625rem;
  border: 2px solid #054D67;
  border-radius: 1rem;
  background-color: #FFF;
}

.top__slider-item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}

.voice__slider {
  position: relative;
  margin-top: 1rem;
}

.voice__slider-track {
  width: 79.7101449275%;
  min-width: 17.1875rem;
  margin-inline: auto;
}

.voice__content {
  z-index: 100;
  position: relative;
  padding: 1.4375rem 1.5rem 3.75rem 1.1875rem;
  background-image: url(../images/voice-bg.webp);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
}

.voice__content-body {
  max-width: 14.5rem;
  margin-inline: auto;
}

.voice__text {
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.4666666667;
}

.voice__name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4.0625rem;
  gap: 4.9375rem;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.8333333333;
}

.voice__item--third .voice__name {
  margin-top: 3.125rem;
  gap: 1.9375rem;
}

.voice__item--fourth .voice__name {
  gap: 6.4375rem;
}

.voice__image {
  width: 100%;
  min-width: 17.1875rem;
  margin-inline: auto;
}

.voice__item--third .voice__image {
  width: 72%;
  min-width: 12.375rem;
}

.voice__item--fourth .voice__image {
  width: 58.1818181818%;
  min-width: 10rem;
}

.voice__arrows {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 8.0625rem;
  left: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.voice__arrow {
  padding: 0;
}

.voice__arrow img {
  width: 2.125rem;
  height: 2.125rem;
}

.voice__arrow.voice__arrow--next {
  margin-left: 1rem;
}

.works__items {
  display: grid;
  margin-top: 0.75rem;
  gap: 2.625rem;
}

.works__item {
  position: relative;
}

.works__image {
  position: absolute;
}

.works__image.works__image--first {
  top: -1.125rem;
  right: -0.6875rem;
  max-width: 8.6875rem;
}

.works__image.works__image--second {
  top: -1.125rem;
  right: -0.6875rem;
  max-width: 8.125rem;
}

.works__image.works__image--third {
  top: -1.125rem;
  right: -0.6875rem;
  max-width: 9rem;
}

.works__image.works__image--fourth {
  top: -1.125rem;
  right: -0.6875rem;
  max-width: 7.9375rem;
}

.works__title {
  width: 93.3333333333%;
  min-width: 20.125rem;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.works__list {
  margin-top: 0.9375rem;
}

.works__text {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

.works__text.works__text--small {
  position: relative;
  margin-top: 1.5625rem;
  padding: 0.75rem 0.875rem;
  border: 1px solid;
  background-color: #F9DF4E;
  font-size: 0.75rem;
  line-height: 1.6666666667;
}

.works__text.works__text--small::before,
.works__text.works__text--small::after {
  position: absolute;
  content: "";
  -webkit-clip-path: polygon(50% 0, 0 100%, 100% 100%);
          clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

.works__text.works__text--small::before {
  top: -0.625rem;
  right: 3.75rem;
  width: 1.375rem;
  height: 0.625rem;
  background-color: #333;
}

.works__text.works__text--small::after {
  top: -0.5625rem;
  right: 3.6875rem;
  width: 1.5rem;
  height: 0.6875rem;
  background-color: #F9DF4E;
}

@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
  body.js-fixed {
    position: static;
  }
  .body-wrapper {
    background-image: url(../images/bg-pc.webp);
  }
  .main {
    z-index: 9999;
    position: relative;
    max-width: 375px;
    margin-inline: auto 4.5625rem;
    background-image: url(../images/bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .anchor-link {
    scroll-margin-top: initial;
  }
  .btn {
    padding: 0.875rem clamp(3.438rem, 2.723rem + 1.488vw, 4.063rem) 2.6875rem clamp(4.688rem, 3.188rem + 3.125vw, 6rem);
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .btn:hover {
    opacity: 0.8;
  }
  .drawer {
    right: auto;
    left: 0;
    width: 23.4375rem;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  .drawer__logo {
    max-width: 12.5rem;
  }
  .fv {
    padding-top: 0.875rem;
  }
  .hamburger {
    top: 1.5625rem;
    left: 5.5625rem;
    width: 3.9375rem;
    height: 2.9375rem;
  }
  .hamburger__line {
    height: 0.1875rem;
    background-color: #FFF;
  }
  .hamburger__text {
    top: 1.5625rem;
    color: #FFF;
    font-size: 1.25rem;
  }
  .hamburger__line:nth-child(2) {
    top: 1rem;
  }
  .hamburger.is-openSP {
    top: 1.5625rem;
    width: 3.9375rem;
    height: 2.9375rem;
  }
  .hamburger.is-openSP .hamburger__line:first-child {
    width: 3.9375rem;
  }
  .hamburger.is-openSP .hamburger__line:nth-child(2) {
    width: 3.9375rem;
  }
  .hamburger.is-openSP .hamburger__text {
    top: 1.5625rem;
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header {
    top: 29.4375rem;
    max-width: 20.0625rem;
    height: initial;
    margin-left: 2%;
    background-color: transparent;
  }
  .header__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .inner.header__inner {
    max-width: inherit;
    margin-inline: 0;
    padding-inline: 0;
  }
  .header__logo {
    z-index: 9997;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    max-width: clamp(13.75rem, 12.321rem + 2.976vw, 15rem);
    margin-inline: auto;
  }
  .header__contact {
    position: static;
    margin-top: 1.4375rem;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*# sourceMappingURL=map/styles.css.map */