*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px; /* 1 */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.c-inner {
  width: calc(100% - 40px);
  max-width: 1140px;
  margin: 0 auto;
}

.c-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f88d00;
  box-shadow: 0 4px 0 #cb7400;
  text-shadow: 1px 1px 0 #cb7400;
  padding: 8px 40px;
  border-radius: 40px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}
@media (hover: hover) {
  .c-cta:hover {
    background-color: #cb7400;
    transform: translateY(4px);
    box-shadow: 0 0 0 #cb7400;
  }
}

.c-form {
  width: 100%;
  background-color: #ffffff;
}

.c-heading {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(24px, 24px + (30 - 24) * (100vw - 375px) / (1440 - 375), 30px);
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: clamp(18px, 18px + (24 - 18) * (100vw - 375px) / (1440 - 375), 24px);
  position: relative;
}
.c-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: clamp(120px, 120px + (137 - 120) * (100vw - 375px) / (1440 - 375), 137px);
  height: 3px;
  background-color: #ffffff;
}

.c-achievements {
  overflow: hidden;
}
.c-achievements .c-inner {
  padding: 16px 0;
}
.c-achievements__title {
  padding-bottom: 8px;
  text-align: center;
  font-weight: 700;
  font-size: clamp(24px, 24px + (30 - 24) * (100vw - 375px) / (1440 - 375), 30px);
  border-bottom: #f8bd00 4px solid;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.c-achievements__img-wrap {
  display: inline-flex;
}
.c-achievements__img-box {
  animation: scroll-left 40s infinite linear 0.5s both;
  display: flex;
}
.c-achievements__img-item {
  width: 25vw;
}
@media screen and (max-width: 767px) {
  .c-achievements__img-item {
    width: 50vw;
  }
}
.c-achievements__img-item img {
  width: 100%;
  height: auto;
}

.is-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

.is-tb {
  display: none;
}
@media screen and (max-width: 1024px) {
  .is-tb {
    display: block;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .is-tb {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

.header {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #5d605d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  padding-left: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1440 - 375), 40px);
  padding-right: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1440 - 375), 40px);
  color: #ffffff;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 16px;
    justify-content: center;
  }
}
.header__logo {
  width: clamp(310px, 310px + (409 - 310) * (100vw - 375px) / (1440 - 375), 409px);
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .header__logo:hover {
    opacity: 0.5;
  }
}
.header__logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(10px, 10px + (35 - 10) * (100vw - 375px) / (1440 - 375), 35px);
}
.header__nav-btn {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .header__nav-btn:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav-btn {
    display: none;
  }
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #333333;
}

.mv {
  width: 100vw;
  height: 685px;
  background: url(../img/pc_fv_back-img.jpg) no-repeat center center/cover;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 1024px) {
  .mv {
    background: url(../img/sp_fv_back-img.jpg) no-repeat center center/cover;
    height: auto;
    padding: 80px 0 85px 0;
  }
}
.mv .c-inner {
  display: flex;
  justify-content: space-between;
  gap: 33px 25px;
}
@media screen and (max-width: 1024px) {
  .mv .c-inner {
    flex-direction: column;
    align-items: center;
  }
}
.mv .mv__text-container {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .mv .mv__text-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.mv__flag-list {
  display: flex;
  align-items: center;
  -moz-column-gap: clamp(22px, 22px + (34 - 22) * (100vw - 375px) / (1440 - 375), 34px);
       column-gap: clamp(22px, 22px + (34 - 22) * (100vw - 375px) / (1440 - 375), 34px);
  row-gap: 8px;
  margin-bottom: clamp(8px, 8px + (16 - 8) * (100vw - 375px) / (1440 - 375), 16px);
}
@media screen and (max-width: 767px) {
  .mv__flag-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.mv__flag-list-item {
  background-color: #f8bd00;
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1440 - 375), 18px);
  color: #ffffff;
  font-weight: 700;
  padding-top: clamp(5px, 5px + (9 - 5) * (100vw - 375px) / (1440 - 375), 9px);
  padding-right: clamp(6px, 6px + (8 - 6) * (100vw - 375px) / (1440 - 375), 8px);
  padding-bottom: clamp(6px, 6px + (8 - 6) * (100vw - 375px) / (1440 - 375), 8px);
  padding-left: clamp(8px, 8px + (6 - 8) * (100vw - 375px) / (1440 - 375), 6px);
  position: relative;
}
.mv__flag-list-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: -17px;
  width: 18px;
  height: 100%;
  background: url(../img/parts/flag-parts01.svg) no-repeat center center/cover;
}
.mv__copy {
  color: #ffffff;
  font-weight: 900;
  line-height: 1.3;
  font-size: clamp(42px, 42px + (68 - 42) * (100vw - 375px) / (1440 - 375), 68px);
  text-shadow: 4px 4px 4px rgba(52, 57, 62, 0.1);
}
@media screen and (max-width: 767px) {
  .mv__copy {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.mv__copy--head {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #333333;
  padding: 8px 20px;
  font-size: clamp(26px, 26px + (32 - 26) * (100vw - 375px) / (1440 - 375), 32px);
}
@media screen and (max-width: 767px) {
  .mv__copy--head {
    margin: 0 auto;
  }
}
.mv__copy .is-bg-orange {
  display: inline-block;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .mv__copy .is-bg-orange {
    display: inline;
  }
}
.mv__copy .is-bg-orange::before {
  content: "";
  background-color: #f8bd00;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 80%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .mv__copy .is-bg-orange::before {
    display: none;
  }
}
.mv__copy--sub {
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(16px, 16px + (26 - 16) * (100vw - 375px) / (1440 - 375), 26px);
  margin-top: clamp(8px, 8px + (16 - 8) * (100vw - 375px) / (1440 - 375), 16px);
  background-color: rgba(255, 255, 255, 0.3);
  border-left: 8px #ffffff solid;
  padding: 8px 14px;
}
@media screen and (max-width: 767px) {
  .mv__copy--sub {
    margin: 8px auto 0 auto;
  }
}
.mv .c-form {
  overflow-y: scroll;
  width: 100%;
  max-width: 400px;
  height: 448px;
  border-radius: 16px;
  padding: 24px 20px;
}
@media screen and (max-width: 767px) {
  .mv .c-form {
    max-width: 100%;
  }
}
.mv .c-form__title {
  text-align: center;
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1440 - 375), 18px);
  margin-bottom: clamp(16px, 16px + (24 - 16) * (100vw - 375px) / (1440 - 375), 24px);
  font-weight: bold;
}

.service {
  overflow: hidden;
  background-color: #f8bd00;
  padding-top: clamp(56px, 56px + (64 - 56) * (100vw - 375px) / (1440 - 375), 64px);
  padding-bottom: clamp(87px, 87px + (109 - 87) * (100vw - 375px) / (1440 - 375), 109px);
  position: relative;
}
.service::after {
  content: "";
  position: absolute;
  background: url(../img/service_bg_img01.svg) no-repeat center center/cover;
  width: clamp(364px, 364px + (725 - 364) * (100vw - 375px) / (1440 - 375), 725px);
  height: clamp(78px, 78px + (152 - 78) * (100vw - 375px) / (1440 - 375), 152px);
  top: 75px;
  right: -100px;
}
@media screen and (max-width: 767px) {
  .service::after {
    top: 56px;
    right: -69px;
  }
}
.service .c-inner {
  max-width: 1040px;
}
.service__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 16px;
  position: relative;
  margin-bottom: clamp(24px, 24px + (32 - 24) * (100vw - 375px) / (1440 - 375), 32px);
}
.service__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 137px;
  height: 3px;
  border-radius: 4px;
  background-color: #ffffff;
}
.service__title--head {
  font-size: clamp(24px, 24px + (30 - 24) * (100vw - 375px) / (1440 - 375), 30px);
  font-weight: bold;
  color: #ffffff;
}
.service__title--head img {
  width: clamp(174px, 174px + (197 - 174) * (100vw - 375px) / (1440 - 375), 197px);
  height: auto;
}
.service__title--bottom {
  font-weight: 700;
  font-size: clamp(24px, 24px + (30 - 24) * (100vw - 375px) / (1440 - 375), 30px);
}
.service__title--bottom .is-big {
  font-family: "Oswald", sans-serif;
  font-size: clamp(40px, 40px + (56 - 40) * (100vw - 375px) / (1440 - 375), 56px);
  margin-right: clamp(5px, 5px + (6 - 5) * (100vw - 375px) / (1440 - 375), 6px);
  margin-bottom: -7px;
}
.service__list {
  display: grid;
  -moz-column-gap: clamp(10px, 10px + (60 - 10) * (100vw - 375px) / (1440 - 375), 60px);
       column-gap: clamp(10px, 10px + (60 - 10) * (100vw - 375px) / (1440 - 375), 60px);
  row-gap: clamp(55px, 55px + (80 - 55) * (100vw - 375px) / (1440 - 375), 80px);
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1024px) {
  .service__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .service__list {
    justify-items: center;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.service__list-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px 24px;
  padding-bottom: clamp(45px, 45px + (64 - 45) * (100vw - 375px) / (1440 - 375), 64px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service__list-item {
    padding: 16px 17px;
    padding-bottom: clamp(45px, 45px + (64 - 45) * (100vw - 375px) / (1440 - 375), 64px);
    width: clamp(218px, 218px + (800 - 218) * (100vw - 375px) / (1440 - 375), 800px);
  }
}
.service__list-item:nth-child(1) .service__list-item--title {
  line-height: 1 !important;
}
@media screen and (max-width: 1024px) {
  .service__list-item:nth-child(3) {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .service__list-item:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }
}
.service__list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/icon/check-icon01.svg) no-repeat center center/cover;
  width: 55px;
  height: 43px;
  width: clamp(38px, 38px + (55 - 38) * (100vw - 375px) / (1440 - 375), 55px);
  height: clamp(30px, 30px + (43 - 30) * (100vw - 375px) / (1440 - 375), 43px);
}
.service__list-item--title {
  display: inline;
  font-weight: 700;
  font-size: clamp(29px, 29px + (42 - 29) * (100vw - 375px) / (1440 - 375), 42px);
  margin-bottom: 8px;
}
.service__list-item--title .is-red {
  color: #d84910;
  font-weight: 700;
}
.service__list-item--title .is-big {
  font-family: "Oswald", sans-serif;
  font-size: clamp(49px, 49px + (70 - 49) * (100vw - 375px) / (1440 - 375), 70px);
  line-height: 1;
  text-box-trim: trim-both;
  vertical-align: text-bottom;
}
.service__list-item--title .is-vertical {
  writing-mode: vertical-rl;
  font-size: clamp(16px, 16px + (23 - 16) * (100vw - 375px) / (1440 - 375), 23px);
  margin-right: 4px;
  line-height: 1.02;
  vertical-align: sub;
}
.service__list-item--content {
  font-size: clamp(22px, 22px + (32 - 22) * (100vw - 375px) / (1440 - 375), 32px);
  line-height: 1.2;
  letter-spacing: 0;
}
.service__list-item--content .is-red {
  color: #d84910;
  font-weight: 700;
}
.service__list-item--icon {
  position: absolute;
  left: 50%;
  bottom: -45px;
  transform: translateX(-50%);
  width: clamp(100px, 100px + (143 - 100) * (100vw - 375px) / (1440 - 375), 143px);
}
@media screen and (max-width: 767px) {
  .service__list-item--icon {
    bottom: -31px;
  }
}
.service__list-item--icon img {
  width: 100%;
  height: auto;
}

.booth {
  background-color: #5d605d;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .booth {
    padding: 56px 0;
  }
}
.booth::before {
  content: "";
  position: absolute;
  top: clamp(22px, 22px + (64 - 22) * (100vw - 375px) / (1440 - 375), 64px);
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/booth_bg_img01.svg) no-repeat center center/cover;
  width: clamp(484px, 484px + (963 - 484) * (100vw - 375px) / (1440 - 375), 963px);
  height: clamp(78px, 78px + (152 - 78) * (100vw - 375px) / (1440 - 375), 152px);
}
.booth__intro {
  color: #ffffff;
  font-size: clamp(16px, 16px + (25 - 16) * (100vw - 375px) / (1440 - 375), 25px);
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .booth__intro {
    margin-bottom: 48px;
  }
}
.booth__block-list {
  display: flex;
  flex-direction: column;
  gap: 27px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .booth__block-list {
    gap: 48px;
    margin-bottom: 48px;
  }
}
.booth__block-item {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  gap: clamp(16px, 16px + (40 - 16) * (100vw - 375px) / (1440 - 375), 40px);
  padding: 24px 93px 24px 24px;
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .booth__block-item {
    padding: 24px;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .booth__text-box {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .booth__text-box--title-box {
    width: 100%;
  }
}
.booth__text-box--fukidashi {
  width: 100%;
  max-width: 332px;
  text-align: center;
  padding: 6px 0;
  border-radius: 40px;
  background-color: #f8bd00;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  margin-bottom: 11px;
}
@media screen and (max-width: 767px) {
  .booth__text-box--fukidashi {
    max-width: 100%;
    display: block;
  }
}
.booth__text-box--fukidashi::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  background: url(../img/parts/fukidashi_parts01.svg) no-repeat center center/cover;
  width: 10px;
  height: 8px;
}
.booth__text-box--title {
  font-size: clamp(22px, 22px + (28 - 22) * (100vw - 375px) / (1440 - 375), 28px);
  font-weight: 700;
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .booth__text-box--title {
    margin-bottom: 0;
  }
}
.booth__text-box--title .is-big {
  font-size: clamp(26px, 26px + (36 - 26) * (100vw - 375px) / (1440 - 375), 36px);
}
.booth__text-box--contents-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .booth__text-box--contents-block {
    order: 3;
  }
}
.booth__text-box--content {
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 375px) / (1440 - 375), 20px);
}
.booth__text-box--tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.booth__text-box--tag-item {
  background-color: #f8bd00;
  font-weight: 700;
  color: #ffffff;
  border-radius: 40px;
  font-size: clamp(13px, 13px + (15 - 13) * (100vw - 375px) / (1440 - 375), 15px);
  padding: 2px 20px 4px 20px;
}
@media screen and (max-width: 767px) {
  .booth__text-box--tag-item {
    padding: 2px 6px 4px 6px;
  }
}
.booth__text-box--price {
  text-align: right;
  color: #5d605d;
  border-bottom: 1px #333333 solid;
  font-size: clamp(20px, 20px + (24 - 20) * (100vw - 375px) / (1440 - 375), 24px);
}
.booth__text-box--price .is-small {
  color: #333333;
  font-size: 1.3rem;
}
.booth__text-box--price .is-big {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.05em;
}
.booth__text-box--note-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.booth__text-box--note-item {
  font-size: 1.3rem;
}
.booth__img-box {
  width: 100%;
  max-width: 425px;
}
@media screen and (max-width: 767px) {
  .booth__img-box {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .booth__img-box {
    order: 2;
  }
}
.booth__img-box img {
  width: 100%;
  height: auto;
}
.booth__afterword {
  padding: 0 8px;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.75;
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 375px) / (1440 - 375), 20px);
  -webkit-text-decoration: underline solid 10px #f8bd00;
          text-decoration: underline solid 10px #f8bd00;
  text-underline-offset: -5px;
}

.panel {
  overflow: hidden;
  padding: 65px 0 64px 0;
  margin-top: -1px;
  background-color: #5d605d;
  position: relative;
}
@media screen and (max-width: 767px) {
  .panel {
    padding: 57px 0 56px 0;
  }
}
.panel::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/panel_bg_img01.svg) no-repeat center center/cover;
  width: clamp(707px, 707px + (1410 - 707) * (100vw - 375px) / (1440 - 375), 1410px);
  height: clamp(96px, 96px + (189 - 96) * (100vw - 375px) / (1440 - 375), 189px);
}
.panel__intro {
  color: #ffffff;
  text-align: center;
  font-size: clamp(16px, 16px + (22 - 16) * (100vw - 375px) / (1440 - 375), 22px);
  margin-bottom: clamp(24px, 24px + (32 - 24) * (100vw - 375px) / (1440 - 375), 32px);
}
.panel__img-box {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .panel__img-box {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .panel__img-item:nth-child(1) img, .panel__img-item:nth-child(2) img {
    max-width: 250px;
  }
}
.panel__img-item img {
  width: 100%;
  height: auto;
  margin-bottom: 4px;
}
.panel__img-item--name {
  color: #ffffff;
  font-size: 1.4rem;
}

.two.c-achievements .c-inner {
  padding: 64px 0 32px 0;
}
.two.c-achievements .c-heading {
  color: #5d605d;
  margin-bottom: 0;
}
.two.c-achievements .c-heading::after {
  background-color: #5d605d;
}

.contact-flow {
  padding: 64px 0;
  background-color: #5d605d;
}
.contact-flow .c-heading {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .contact-flow .c-heading {
    margin-bottom: 48px;
    padding: 0;
  }
  .contact-flow .c-heading::after {
    content: "";
    display: none;
  }
}
.contact-flow__step-list {
  display: flex;
  flex-direction: column;
  gap: clamp(58px, 58px + (61 - 58) * (100vw - 375px) / (1440 - 375), 61px);
}
.contact-flow__step-item {
  display: flex;
  align-items: center;
  gap: 32px;
  background-color: #ffffff;
  padding: 24px 24px 34px 24px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact-flow__step-item {
    flex-direction: column;
    padding: 24px;
  }
}
.contact-flow__step-item:last-child::after {
  display: none;
}
.contact-flow__step-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -31px;
  transform: translateX(-50%);
  background: url(../img/parts/under_arrow-parts01.svg) no-repeat center center/cover;
  width: 32px;
  height: 31px;
}
.contact-flow__step-icon {
  width: 100%;
  max-width: 90px;
  height: 90px;
  background-color: #f8bd00;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contact-flow__step-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  background: url(../img/parts/fukidashi_parts02.svg) no-repeat center center/cover;
  width: 16px;
  height: 16px;
}
.contact-flow__step-icon--step {
  text-transform: uppercase;
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  margin-bottom: -7px;
}
.contact-flow__step-icon img {
  width: 100%;
  max-width: 60px;
  height: auto;
}
.contact-flow__step-contents {
  width: auto;
}
.contact-flow__step-contents--title {
  font-size: clamp(18px, 18px + (20 - 18) * (100vw - 375px) / (1440 - 375), 20px);
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .contact-flow__step-contents--title {
    text-align: center;
  }
}
.contact-flow__step-contents--content {
  font-size: 1.5rem;
}

.faq {
  background-color: #5d605d;
  padding: 65px 0 64px 0;
  margin-top: -1px;
}
.faq .c-heading {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .faq .c-heading {
    padding: 0;
    margin-bottom: 48px;
  }
  .faq .c-heading::after {
    content: "";
    display: none;
  }
}
.faq__accordion-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  gap: clamp(24px, 24px + (32 - 24) * (100vw - 375px) / (1440 - 375), 32px);
}
.faq__accordion-list {
  list-style: none;
  background-color: #fdf3cc;
  padding: 0 16px;
}
@media screen and (max-width: 767px) {
  .faq__accordion-list {
    padding: 0 10px;
  }
}
.faq__accordion-list .is-icon {
  display: block;
  color: #f8bd00;
  font-size: 2rem;
  font-weight: bold;
}
.faq__accordion-list--title {
  padding: 24px 52px 24px 12px;
  font-weight: bold;
  font-size: clamp(14px, 14px + (20 - 14) * (100vw - 375px) / (1440 - 375), 20px);
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition-duration: 0.2s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq__accordion-list--title {
    padding: 24px 50px 24px 10px;
  }
}
.faq__accordion-list--title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(12px, 12px + (21 - 12) * (100vw - 375px) / (1440 - 375), 21px);
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background-color: #f8bd00;
}
.faq__accordion-list--title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(18px, 18px + (27 - 18) * (100vw - 375px) / (1440 - 375), 27px);
  transform: translateY(-50%);
  width: 2px;
  height: 14px;
  background-color: #f8bd00;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.faq__accordion-list--title.open::after {
  transform-origin: center center;
  transform: rotate(90deg);
  opacity: 0;
}
.faq__accordion-list--inner {
  display: none;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq__accordion-list--inner.open {
  max-height: 1000px;
}
.faq__accordion-list--inner.stay {
  display: block;
}
.faq__accordion-list--content {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 24px;
  background-color: #ffffff;
  padding: 13px;
  font-size: clamp(12px, 12px + (15 - 12) * (100vw - 375px) / (1440 - 375), 15px);
}
@media screen and (max-width: 767px) {
  .faq__accordion-list--content {
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .faq__accordion-list--content {
    padding: 8px 12px;
    gap: 26px;
  }
}

.contact-form {
  padding: 64px 0;
}
@media screen and (max-width: 767px) {
  .contact-form {
    padding: 56px 0;
  }
}
.contact-form .c-heading {
  color: #5d605d;
  margin-bottom: 60px;
}
.contact-form .c-heading::after {
  background-color: #5d605d;
}
.contact-form__container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(51, 51, 51, 0.1);
}

.footer {
  background-color: #5d605d;
  padding: 40px 0;
  color: #ffffff;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 32px 0;
  }
}
.footer__container {
  text-align: center;
}
.footer__logo {
  max-width: 120px;
  margin: 0 auto;
  margin-bottom: 33px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    max-width: 90px;
    margin-bottom: 46px;
  }
}
.footer__logo img {
  width: 100%;
  height: auto;
}
.footer__adress {
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .footer__adress {
    margin-bottom: 24px;
  }
}
.footer__link {
  display: inline-block;
  text-decoration: underline;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .footer__link {
    margin-bottom: 24px;
  }
}/*# sourceMappingURL=styles.css.map */