@charset "UTF-8";
:root {
  --color-black: #1A1A1A;
  --color-white: #fff;
  --color-base: #FFFAF0;
  --color-orange: #E27933;
  --base-font-family: "Noto Sans", "Noto Sans JP", sans-serif;
  --system-font-family: "Hiragino Kaku Gothic ProN", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  --accent-font-family: "Buda", serif;
  --grid-gap: 40px;
  --grid-columns: 12;
  --inner-padding: 32px;
}

main {
  flex: 1;
}

body {
  font-family: var(--base-font-family);
  color: var(--color-black);
  line-height: 1.5;
  background-color: var(--color-white);
  font-weight: 400;
}

.main--article {
  display: flex;
  flex-direction: column;
}

.l-inner {
  padding: 0 18px;
  margin-inline: auto;
  max-width: 420px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1000px;
    padding: 0 24px;
  }
}

.l-section {
  padding: 48px 0;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding: 80px 0;
  }
}
.l-section.-bg-base {
  background: var(--color-base);
}

.l-fv {
  position: relative;
}
.l-fv img {
  width: 100%;
  height: auto;
}

.p-fv__contents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-fv__headline span {
  color: var(--color-white);
  line-height: 1.5;
  font-weight: 400;
  font-size: 20px;
  display: block;
  text-align: center;
}
.p-fv__headline span.-small {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .p-fv__headline span.-small {
    font-size: 22px;
  }
}
@media screen and (min-width: 768px) {
  .p-fv__headline span {
    font-size: 38px;
  }
}

.p-fv__link {
  position: relative;
  overflow: hidden;
  color: transparent;
  background: linear-gradient(to right, #E27933 50%, #fff 50%) 100%;
  background-clip: text;
  background-size: 200% 100%;
  font-size: 16px;
  line-height: 1.5;
  display: block;
  width: fit-content;
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-fv__link {
    font-size: 22px;
    bottom: 100px;
  }
}
@media (any-hover: hover) {
  .p-fv__link {
    transition: 0.3s ease;
  }
  .p-fv__link:hover {
    color: transparent;
    background-position: 0 100%;
  }
  .p-fv__link:hover::before {
    width: 100%;
    left: 0;
  }
}
.p-fv__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: -100%;
  bottom: 0;
  background: var(--color-orange);
  transition: 0.3s ease;
  z-index: 1;
}
.p-fv__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--color-white);
}

.c-button {
  color: transparent;
  background: linear-gradient(to right, #E27933 50%, #1A1A1A 50%) 100%;
  background-clip: text;
  background-size: 200% 100%;
  transition: background-position 0.3s;
  font-size: 18px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-block-start: 8px;
  position: relative;
  overflow: hidden;
}
.c-button * {
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-button {
    margin-block-start: 16px;
  }
}
@media (any-hover: hover) {
  .c-button:hover {
    color: transparent;
    background-position: 0 100%;
  }
  .c-button:hover::before {
    width: 100%;
    left: 0;
  }
}
.c-button::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: -100%;
  bottom: 0;
  background: var(--color-orange);
  transition: 0.3s ease;
  z-index: 1;
}
.c-button::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--color-black);
}

.c-sectionTitle {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.c-sectionTitle.-center {
  text-align: center;
}

.p-block__wrap:nth-of-type(n+2) {
  margin-block-start: 64px;
}

.p-block {
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin-block-start: 40px;
}
@media screen and (min-width: 768px) {
  .p-block {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 64px;
  }
}

.p-block__bannerArea {
  display: grid;
  gap: 8px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-block__bannerArea {
    max-width: 300px;
  }
}
.p-block__bannerArea p:not(.p-block__bannerArea-box) {
  text-align: center;
  font-size: 18px;
}
.p-block__bannerArea img {
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: cover;
  margin-inline: auto;
}

.p-block__bannerArea-box {
  border: 1px solid var(--color-orange);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 16px;
  color: var(--color-orange);
  text-align: center;
}

.p-block__textArea {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-block__textArea {
    max-width: 360px;
  }
}
.p-block__textArea p {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-block__textArea p {
    font-size: 16px;
  }
}

.p-contact__contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-block-start: 40px;
}
@media screen and (min-width: 768px) {
  .p-contact__contents {
    gap: 40px;
    display: flex;
    justify-content: center;
  }
}

.p-contact__btn {
  display: block;
  border-radius: calc(infinity * 1px);
  border: 1px solid var(--color-orange);
  padding: 8px;
  background: var(--color-white);
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__btn {
    padding: 24px 16px;
    width: 25%;
  }
}
@media (any-hover: hover) {
  .p-contact__btn {
    transition: 0.3s ease;
  }
  .p-contact__btn:hover {
    background: var(--color-orange);
    color: var(--color-white);
  }
}
.p-contact__btn.-line-black {
  border-color: var(--color-black);
}
@media (any-hover: hover) {
  .p-contact__btn.-line-black:hover {
    background: var(--color-black);
  }
}

.p-formselect__item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 16px 32px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #B6ADA8;
  border-left: 8px solid #DAD0C9;
  position: relative;
  line-height: 1.7;
  transition: 0.2s ease;
}
.p-formselect__item span {
  font-size: 14px;
  font-weight: 400;
}
.p-formselect__item::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 4px;
  right: 6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #B6ADA8;
  border-right: 0;
  transform: rotate(45deg);
  transition: 0.2s ease;
}
@media (any-hover: hover) {
  .p-formselect__item:hover {
    border: 1px solid #E27933;
    border-left: 8px solid #EDC0A3;
    color: #DA681C;
  }
  .p-formselect__item:hover::after {
    border-left: 10px solid #e27933;
  }
}

.p-formselect__wrap {
  padding: 16px;
  margin-inline: auto;
  max-width: 800px;
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-formselect__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-formselect__container {
  margin-inline: auto;
  max-width: 800px;
  padding: 16px;
}

.p-contact__heading {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  margin-top: 40px;
  line-height: 1.8;
}

.p-contact__description {
  font-size: 16px;
  text-align: center;
  margin-top: 1em;
}

.site-footer {
  padding: 24px 0 !important;
  background: #F9F9F9;
}/*# sourceMappingURL=style.css.map */