@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,400;0,500;1,400;1,500&family=Noto+Sans+JP:wght@400;500&display=swap");
/* リセットCSS
===================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, button, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
}

/* 基本設定
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: calc(14px + 6 * (100vw - 320px) / 180);
  scroll-behavior: smooth;
}

body {
  background: #F5EFE8;
  color: #323232;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic Std", "ヒラギノ角ゴ ProN", sans-serif;
  line-height: 1.72;
  font-weight: 600;
  letter-spacing: 0.4;
  position: relative;
}
@media (min-width: 500px) {
  body {
    position: fixed;
    width: 100vw;
    height: 100vh;
  }
}

a {
  cursor: pointer;
  color: #fff;
}

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

.bg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  z-index: -1;
  max-width: 1300px;
}

.content {
  max-width: 500px;
  width: 100%;
  background: #F5EFE8;
  margin: 0 auto;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
}
@media (min-width: 500px) {
  .content {
    font-size: 16px;
    /* コンテンツ部分のみスクロールさせる場合 */
    max-height: 100vh;
    overflow-y: auto;
  }
}

/* 共通
===================================== */
section {
  padding: calc(15px + 15 * (100vw - 320px) / 180);
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 500px) {
  section {
    padding: 0 30px;
  }
}

.btn {
  display: block;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  background: #EB7534;
  border-radius: 50px;
  border: 3px #fff solid;
  padding: 13px 0;
  width: 100%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-top: calc(30px + 10 * (100vw - 320px) / 180);
  position: relative;
  transition: 0.3s;
  font-size: calc(18px + 6 * (100vw - 320px) / 180);
  font-weight: 900;
}
@media (min-width: 500px) {
  .btn {
    font-size: 20px;
    margin-top: 40px;
  }
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #fff;
}
.btn:hover {
  opacity: 0.7;
}

.lead {
  padding: 0 calc(35px + 25 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .lead {
    padding: 0 60px;
  }
}

.lead-text {
  color: #0171BE;
  font-size: calc(22px + 6 * (100vw - 320px) / 180);
  font-weight: 900;
  position: relative;
  width: 100%;
  padding: 7px 0;
  background: #fff;
  border: 3px solid #0171BE;
  border-radius: 3px;
  text-align: center;
  box-sizing: border-box;
}
@media (min-width: 500px) {
  .lead-text {
    font-size: 28px;
  }
}
.lead-text::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -18px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #0171BE;
  z-index: 1;
}
.lead-text::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -13px;
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 13px solid #fff;
  z-index: 2;
}

.lead-work {
  margin-top: -30px;
}

.lead-step {
  margin-top: calc(30px + 20 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .lead-step {
    margin-top: 50px;
  }
}

/* header/footer
===================================== */
header {
  padding: 15px 10px;
  width: 100%;
  background: #fff;
}
header img {
  width: 38%;
}

footer {
  background: #323232;
  color: #fff;
  text-align: center;
  font-size: calc(10px + 2 * (100vw - 320px) / 180);
  padding: 12px 0;
  font-weight: 500;
}
@media (min-width: 500px) {
  footer {
    font-size: 12px;
  }
}
footer div {
  margin-top: 5px;
}

/* kv
===================================== */
.kv {
  padding: 0;
}

h1 {
  font-size: calc(18px + 6 * (100vw - 320px) / 180);
  margin-top: 20px;
}
@media (min-width: 500px) {
  h1 {
    font-size: 24px;
  }
}
h1 span {
  display: inline-block;
  background: #fff;
  border-radius: 5px;
  padding: 5px 6px;
}
h1 span:nth-of-type(2) {
  margin-top: 5px;
}

/* top
===================================== */
.top {
  margin-top: calc(50px + 10 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .top {
    margin-top: 60px;
  }
}

.t-h2 {
  color: #0171BE;
  text-align: center;
  width: 100%;
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  line-height: 1.86;
  margin-top: calc(20px + 10 * (100vw - 320px) / 180);
  font-size: calc(16px + 6 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .t-h2 {
    font-size: 22px;
    margin-top: 30px;
  }
}

/* fukidashi
===================================== */
.fukidashi {
  width: 95%;
  margin: 0 auto;
  margin-top: calc(50px + 10 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .fukidashi {
    margin-top: 60px;
  }
}

/* feature
===================================== */
.feature {
  margin-top: calc(-80px + -10 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .feature {
    margin-top: -90px;
  }
}

.f-wrapper {
  background: #F0E3D3;
  border-radius: 50px 50px 0 0;
  padding: calc(20px + 10 * (100vw - 320px) / 180);
  padding-top: calc(75px + 10 * (100vw - 320px) / 180);
  padding-bottom: calc(80px + 10 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .f-wrapper {
    padding: 30px;
    padding-top: 85px;
    padding-bottom: 90px;
  }
}

.f-title {
  font-size: calc(24px + 6 * (100vw - 320px) / 180);
  text-align: center;
  font-weight: 900;
  color: #0171BE;
  line-height: 2;
}
@media (min-width: 500px) {
  .f-title {
    font-size: 30px;
  }
}
.f-title span {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.f-title span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 3px dashed #EB7534;
  z-index: -1;
}
.f-title small {
  font-size: calc(18px + 6 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .f-title small {
    font-size: 24px;
  }
}

.f-point {
  position: relative;
  margin-top: calc(30px + 10 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .f-point {
    margin-top: 40px;
  }
}
.f-point:nth-of-type(2) .f-label {
  left: auto;
  right: 10px;
}

.f-label {
  position: absolute;
  color: #fff;
  font-size: calc(12px + 4 * (100vw - 320px) / 180);
  font-family: "Hiragino Kaku Gothic Std", "ヒラギノ角ゴ ProN", sans-serif;
  top: 10px;
  left: 10px;
  background: #0171BE;
  border-radius: 5px;
  padding: 3px 6px;
}
@media (min-width: 500px) {
  .f-label {
    font-size: 16px;
  }
}

.f-img img {
  border-radius: 15px;
}

.f-lead {
  margin-top: 10px;
  font-size: calc(20px + 6 * (100vw - 320px) / 180);
  text-align: center;
  color: #0171BE;
  font-weight: 900;
}
@media (min-width: 500px) {
  .f-lead {
    font-size: 26px;
  }
}

.f-line {
  display: block;
  position: relative;
  padding-bottom: 5px;
  border-bottom: 3px dashed #EB7534;
}

.f-txt {
  font-size: calc(16px + 6 * (100vw - 320px) / 180);
  margin-top: 8px;
}
@media (min-width: 500px) {
  .f-txt {
    font-size: 22px;
  }
}

/* work
===================================== */
.work {
  background: #F5EFE8;
  padding: 0;
  margin-top: calc(50px + 10 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .work {
    margin-top: 60px;
  }
}

.carousel {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
}
.carousel .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #F5EFE8;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: 0.25s;
}
.carousel .nav::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.carousel .nav.prev {
  left: calc(8px + 23 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .carousel .nav.prev {
    left: 31px;
  }
}
.carousel .nav.prev::before {
  border-right: 11px solid #0171BE;
  margin-right: 3px;
}
.carousel .nav.next {
  right: calc(8px + 23 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .carousel .nav.next {
    right: 31px;
  }
}
.carousel .nav.next::before {
  border-left: 11px solid #0171BE;
  margin-left: 3px;
}
.carousel .nav:hover {
  opacity: 0.8;
}
.carousel .track {
  display: flex;
  gap: 20px;
  will-change: transform;
  transition: transform 0.55s ease;
}
.carousel .card {
  flex: 0 0 auto;
  width: 75%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}
.carousel .card .card-img {
  margin: 0;
}
.carousel .card .card-img img {
  display: block;
  width: 100%;
  height: auto;
}
.carousel .card .card-wrapper {
  padding: 10px 15px;
}
.carousel .card .card-title {
  padding: 3px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  font-size: calc(14px + 6 * (100vw - 320px) / 180);
  background: #0171BE;
  border-radius: 5px;
}
@media (min-width: 500px) {
  .carousel .card .card-title {
    font-size: 20px;
  }
}
.carousel .card .card-text {
  font-size: calc(14px + 6 * (100vw - 320px) / 180);
  margin-top: 6px;
}
@media (min-width: 500px) {
  .carousel .card .card-text {
    font-size: 20px;
  }
}

/* place
===================================== */
.place {
  padding-top: calc(30px + 10 * (100vw - 320px) / 180);
  padding-bottom: calc(40px + 20 * (100vw - 320px) / 180);
  background: #F0E3D3;
}
@media (min-width: 500px) {
  .place {
    padding-top: 20px;
    padding-bottom: 60px;
  }
}

.arch {
  width: 120%;
  height: calc(30px + 40 * (100vw - 320px) / 180);
  background: #F0E3D3;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow-x: hidden;
}
@media (min-width: 500px) {
  .arch {
    height: 70px;
  }
}

.arch-top {
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  transform: translate(-50%, 50%);
  margin-top: calc(40px + 10 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .arch-top {
    margin-top: 30px;
  }
}

.arch-bottom {
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
  transform: translate(-50%, -50%);
}

.p-lead {
  color: #323232;
  font-size: calc(20px + 6 * (100vw - 320px) / 180);
  text-align: center;
  font-weight: 900;
}
@media (min-width: 500px) {
  .p-lead {
    font-size: 26px;
  }
}
.p-lead span {
  position: relative;
  display: inline-block;
  z-index: 1;
  line-height: 2.3;
}
.p-lead span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 3px dashed #EB7534;
  z-index: -1;
}
.p-lead strong {
  color: #EB7534;
  font-size: calc(36px + 6 * (100vw - 320px) / 180);
  font-family: "Hiragino Kaku Gothic Std", "ヒラギノ角ゴ ProN", sans-serif;
  line-height: 1;
}
@media (min-width: 500px) {
  .p-lead strong {
    font-size: 42px;
  }
}
.p-lead small {
  font-size: calc(24px + 6 * (100vw - 320px) / 180);
  margin-left: 5px;
}
@media (min-width: 500px) {
  .p-lead small {
    font-size: 30px;
  }
}

.p-txt {
  margin-top: calc(20px + 10 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .p-txt {
    margin-top: 30px;
  }
}

.p-wrap {
  margin-top: calc(30px + 20 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .p-wrap {
    margin-top: 50px;
  }
}

.p-wrap-ttl {
  color: #fff;
  background: #0171BE;
  border-radius: 5px;
  display: inline-block;
  padding: 3px 6px;
  font-weight: 700;
  font-size: calc(12px + 4 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .p-wrap-ttl {
    font-size: 18px;
  }
}

.p-list {
  margin-bottom: 30px;
}

.p-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding-top: calc(10px + 5 * (100vw - 320px) / 180);
  align-items: center;
}
@media (min-width: 500px) {
  .p-row {
    padding-top: 15px;
  }
}

.p-label {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: #0171BE;
  font-weight: 900;
  width: calc(44px + 16 * (100vw - 320px) / 180);
  height: calc(44px + 16 * (100vw - 320px) / 180);
  border-radius: 9999px;
  line-height: 1;
  font-size: calc(12px + 4 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .p-label {
    font-size: 18px;
    width: 60px;
    height: 60px;
  }
}

.p-body {
  flex: 1 1 auto;
  color: #323232;
  font-size: calc(12px + 4 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .p-body {
    font-size: 18px;
  }
}

/* step lead
===================================== */
.s-lead {
  text-align: center;
  font-size: calc(16px + 6 * (100vw - 320px) / 180);
  color: #EB7534;
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 900;
}
@media (min-width: 500px) {
  .s-lead {
    font-size: 22px;
  }
}

.s-lead span {
  position: relative;
  line-height: 1;
}

.s-lead span::before,
.s-lead span::after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 2px;
  height: 26px;
  background: #EB7534;
  transform: rotate(45deg);
}

.s-lead span::before {
  left: -15px;
  transform: rotate(-45deg);
}

.s-lead span::after {
  right: -10px;
}

.s-lead strong {
  font-size: calc(20px + 6 * (100vw - 320px) / 180);
  display: inline-block;
  position: relative;
}
@media (min-width: 500px) {
  .s-lead strong {
    font-size: 26px;
  }
}

.s-lead strong::before {
  content: "・・・";
  top: -20px;
  left: 0;
  position: absolute;
  border-radius: 100px;
}

/* step
===================================== */
.step {
  padding-top: calc(20px + 10 * (100vw - 320px) / 180);
  padding-bottom: calc(50px + 30 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .step {
    padding-top: 30px;
    padding-bottom: 80px;
  }
}

.s-item {
  color: #fff;
  border-radius: 30px;
  text-align: center;
  background: #0171BE;
  width: 100%;
  padding: 15px 20px 20px;
  margin-top: calc(10px + 10 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .s-item {
    margin-top: 20px;
  }
}

.s-item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-item-num {
  line-height: 1.2;
  background: #EB7534;
  font-size: calc(14px + 6 * (100vw - 320px) / 180);
  font-weight: 900;
  border-radius: 100px;
  width: calc(64px + 16 * (100vw - 320px) / 180);
  height: calc(64px + 16 * (100vw - 320px) / 180);
  position: relative;
}
@media (min-width: 500px) {
  .s-item-num {
    font-size: 20px;
    height: 80px;
    width: 80px;
  }
}
.s-item-num span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.s-item-num strong {
  font-size: calc(24px + 6 * (100vw - 320px) / 180);
  font-family: "Hiragino Kaku Gothic Std", "ヒラギノ角ゴ ProN", sans-serif;
}
@media (min-width: 500px) {
  .s-item-num strong {
    font-size: 30px;
  }
}

.s-item-lead {
  display: inline-block;
  border-radius: 50px;
  background: #0171BE;
  padding: 0 20px;
  font-size: calc(24px + 6 * (100vw - 320px) / 180);
  line-height: 1.3;
  font-weight: 900;
}
@media (min-width: 500px) {
  .s-item-lead {
    font-size: 30px;
  }
}
.s-item-lead small {
  font-size: calc(18px + 6 * (100vw - 320px) / 180);
}
@media (min-width: 500px) {
  .s-item-lead small {
    font-size: 24px;
  }
}

.s-item-img {
  padding: 15px 0;
}

.s-item-txt {
  font-size: calc(18px + 6 * (100vw - 320px) / 180);
  line-height: 1.5;
  font-weight: 900;
}
@media (min-width: 500px) {
  .s-item-txt {
    font-size: 24px;
  }
}