@charset "UTF-8";

:root {
  --c-bg: #fff; /* base ivory */
  --c-paper: #f1ebe0; /* washi */
  --c-paper-2: #efe7da;
  --c-terracotta: #bc695b;
  --c-terracotta-dark: #b45846;
  --c-teal: #c2e9e4;
  --c-teal-dark: #5d958a;
  --c-peach: #f1d9cd;
  --c-peach-soft: #f5e1d5;
  --c-cream: #faf6ee;
  --c-ink: #3a342e;
  --c-ink-soft: #4d4d4d;
  --c-gold: #d9a87a;
  --c-orange: #e69570;

  --serif: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  --script: "League Script", cursive;

  --container: 1070px;
  --gutter: 30px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  color: var(--c-ink);
  background: var(--c-bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-size: 15px;
}

body.page {
  font-family: var(--sans);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;

  &:focus-visible {
    outline: none;
  }
}

.container {
  width: 100%;
  max-width: calc(var(--container) + (var(--gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.serif {
  font-family: var(--serif);
  font-weight: 400;
}
.script {
  font-family: var(--script);
  font-style: italic;
}

/* =========================================
   Header
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 18px 0;
}
.site-header .container {
  max-width: calc(1250px + (var(--gutter) * 2));
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.site-header .logo {
  flex: 0 0 auto;

  @media screen and (max-width: 1000px) {
    width: 130px;
  }
}
.site-header nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 15px clamp(20px, 7.1px + 3.23vw, 45px);
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.05em;
  padding-top: 40px;
}

.site-header nav a {
  text-shadow: 0px 0px 8px #000000;
  font-weight: 700;
  color: #fff;
}
.site-header nav a:hover {
  opacity: 0.8;
  color: #fff;
  text-decoration: none;
}

/* =========================================
   Floating CTA (right side)
   ========================================= */
.float-cta {
  position: fixed;
  bottom: 100px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 110;

  @media screen and (min-width: 851px) {
    a {
      transition: all 0.3s !important;
    }
    a:hover {
      opacity: 0.8 !important;
    }
  }

  @media screen and (max-width: 1100px) {
    bottom: 90px;
    right: 10px;
  }

  @media screen and (max-width: 850px) {
    right: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    gap: 0;
    flex-direction: row;

    .btn-block {
      flex: 1;
    }
  }

  @media screen and (max-width: 450px) {
    .btn-block {
      padding-bottom: 40px;
    }
    .btn-block::after {
      position: absolute;
      bottom: 15px;
    }
  }

  @media screen and (max-width: 350px) {
    .btn-block .lg {
      font-size: 17px;
    }
  }
}

/* =========================================
  Hero
========================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 692px;
  background: url("../../img/lp/kv_pc.jpg?v=5") center/cover no-repeat;
  overflow: hidden;

  @media screen and (max-width: 850px) {
    background: url("../../img/lp/kv_sp.jpg?v=4") top right/cover no-repeat;

    .hero-logo {
      margin-inline: auto;
      max-width: clamp(144px, 94.2px + 12.44vw, 200px);
      width: 100%;
      margin-bottom: 38px;
      transform: translateX(-10px);
    }
  }
}
.hero .ph-photo span {
  position: absolute;
  bottom: 22px;
  left: 22px;
  font-family: "SFMono-Regular", ui-monospace, monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.15em;
}
.hero-copy {
  position: absolute;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding-top: 0;
  left: 0;
  right: 0;
  bottom: 15%;

  @media screen and (max-width: 850px) {
    inset: 0;
    margin: auto;
    height: fit-content;
    padding-inline: 30px;
  }
}
.hero-copy h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 18.7px + 2.32vw, 46px);
  letter-spacing: 0.12em;
  margin: 0 0 40px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);

  @media screen and (max-width: 850px) {
    font-size: 7vw;
  }
}
.hero-copy p {
  font-family: var(--serif);
  font-size: clamp(13px, 10.42px + 0.645vw, 18px);
  letter-spacing: 0.2em;
  margin-top: 12px;
  margin-bottom: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* =========================================
   Intro story (washi paper)
   ========================================= */
.story {
  position: relative;
  padding-block: 86px;
  text-align: center;
  overflow: hidden;
  z-index: 0;
  &::after {
    content: "";
    background: url("../../img/lp/bg-decoration_image.png") center/cover no-repeat;
    opacity: 0.57;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  @media screen and (max-width: 850px) {
    padding-top: 51px;
    padding-bottom: 57px;

    .container {
      padding-inline: 31px;
    }
  }

  .cloud-pattern {
    position: absolute;
  }

  .illust1 {
    top: 97px;
    right: -10px;

    @media screen and (max-width: 850px) {
      top: 126px;
      left: 0;
      right: auto;
      width: 156px;
      height: auto;
    }
  }

  .illust2 {
    bottom: 100px;
    left: -30px;

    @media screen and (max-width: 850px) {
      bottom: 10px;
      right: 0;
      left: auto;
      width: 153px;
      height: auto;
    }
  }
}
.story h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(17px, 10.29px + 1.677vw, 30px);
  letter-spacing: 0.12em;
  margin: 0;
  line-height: 2;
  color: var(--c-ink-soft);
}
.bow {
  display: flex;
  justify-content: center;
  margin: 41px 0 27px;
}
.story-text p {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 2.4;
  color: var(--c-ink-soft);
  text-align: center;
  margin-top: 36px;
  margin-bottom: 0;

  &:first-of-type {
    margin-top: 0;
  }

  &.bold {
    font-weight: 500;
    font-size: clamp(18px, 4vw, 28px);
  }

  @media screen and (max-width: 600px) {
    font-size: 15px;
  }
}
.story em {
  font-style: normal;
  color: var(--c-terracotta);
}

/* =========================================
   pain points (terracotta)
   ========================================= */
.section-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(25px, 22.42px + 0.645vw, 30px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 15px;
  margin-bottom: 55px;

  @media screen and (max-width: 850px) {
    margin-bottom: 45px;
  }
}
.pain {
  background: var(--c-terracotta);
  color: #fff;
  padding: 102px 0 118px;
  text-align: center;
  position: relative;

  @media screen and (max-width: 850px) {
    padding: 61px 0 60px;
  }

  .section-title {
    &::after {
      content: "";
      background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22220%22%20height%3D%2221%22%20viewBox%3D%220%200%20220%2021%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M210.226%206.23332C210.326%206.92332%20209.776%207.00341%20209.576%207.32341C209.446%207.54341%20209.316%207.79331%20209.526%207.97331C209.696%208.11331%20209.966%208.14325%20210.196%208.16325C210.346%208.17325%20210.546%208.12337%20210.656%208.03337C212.166%206.77337%20214.006%206.47334%20215.866%206.25334C216.406%206.19334%20216.916%205.73328%20217.576%206.19328C217.296%207.42328%20216.806%208.41325%20215.346%208.66325C214.626%208.78325%20213.946%209.10339%20213.246%209.30339C212.696%209.45339%20212.116%209.71322%20211.586%209.63322C210.426%209.46322%20209.326%209.54331%20208.246%209.97331C206.186%209.54331%20204.446%2010.6732%20202.576%2011.1532C201.696%2011.3832%20200.916%2011.7134%20199.996%2011.2834C199.536%2011.0634%20199.016%2011.2634%20198.616%2011.5834C197.406%2012.5734%20195.826%2012.3933%20194.466%2012.9333C194.256%2013.0133%20193.966%2012.9732%20193.746%2012.9032C191.286%2012.1032%20188.936%2012.9532%20186.566%2013.3732C186.076%2013.4632%20185.666%2013.6833%20185.236%2013.2333C184.676%2012.6533%20183.786%2013.5732%20183.186%2012.8732C183.166%2012.8432%20182.646%2013.1632%20182.426%2013.3932C181.096%2014.7832%20179.366%2014.7834%20177.646%2014.8034C176.946%2014.8034%20176.456%2014.3133%20175.936%2013.9233C175.506%2013.6033%20175.186%2013.4632%20174.676%2013.9032C173.796%2014.6632%20172.756%2014.7433%20171.726%2014.1833C170.986%2013.7733%20170.176%2013.7234%20169.376%2013.5734C168.106%2013.3434%20167.016%2012.9134%20167.026%2011.2834C167.026%2010.8434%20166.696%2010.3833%20166.476%209.95329C166.326%209.65329%20166.056%209.43326%20165.706%209.42326C164.496%209.38326%20163.296%209.03342%20162.086%209.58342C161.116%2010.0334%20160.026%2010.0333%20158.956%2010.0033C157.406%209.96334%20155.856%209.98332%20154.316%209.98332C154.076%209.98332%20153.816%209.96337%20153.586%2010.0334C150.166%2011.1134%20146.526%2011.1034%20143.116%2012.3034C141.286%2012.9434%20139.276%2013.1533%20137.506%2013.9733C136.226%2014.5633%20134.936%2014.9733%20133.566%2015.1633C132.776%2015.2633%20131.796%2015.9733%20131.476%2014.4833C131.446%2014.3333%20130.906%2014.2433%20130.596%2014.2233C129.666%2014.1733%20128.696%2013.9834%20127.766%2014.8134C128.636%2015.1334%20129.366%2014.5033%20130.036%2014.9133C130.226%2015.0233%20130.466%2015.2132%20130.496%2015.4032C130.556%2015.7632%20130.256%2016.1434%20129.956%2016.0834C127.916%2015.7034%20126.166%2016.8232%20124.266%2017.1032C123.456%2017.2232%20122.646%2017.3132%20121.886%2017.6332C121.426%2017.8232%20120.926%2017.8433%20120.446%2017.6933C119.396%2017.3633%20118.376%2017.4434%20117.326%2017.7834C115.166%2018.4734%20113.546%2017.3734%20112.086%2016.0134C111.696%2015.6434%20111.506%2015.0633%20110.986%2014.7533C110.236%2014.3033%20109.946%2013.5233%20109.736%2012.7233C109.616%2012.2533%20109.536%2011.7634%20109.386%2011.2934C109.286%2010.9934%20109.186%2010.5933%20108.946%2010.4433C107.936%209.77328%20106.776%208.99327%20105.626%209.18327C102.646%209.70327%2099.6257%209.71332%2096.6357%209.98332C95.2357%2010.1133%2093.9458%2010.6832%2092.5958%2010.8932C91.3358%2011.0932%2090.0058%2010.9432%2088.7158%2011.1332C87.9758%2011.2432%2087.3258%2011.5732%2086.6558%2011.8832C86.3458%2012.0232%2085.9757%2012.0733%2085.7757%2011.7533C85.3657%2011.1233%2085.0357%2011.3033%2084.6457%2011.7533C84.0957%2012.3833%2083.3657%2012.7632%2082.6457%2013.1432C82.4357%2013.2532%2082.2057%2013.3633%2081.9658%2013.4233C81.6558%2013.5033%2081.2758%2013.5633%2081.1058%2013.2333C81.0358%2013.0933%2081.2358%2012.8132%2081.2858%2012.5932C81.3158%2012.4532%2081.3457%2012.2333%2081.2657%2012.1733C81.1757%2012.0933%2080.9257%2012.0632%2080.8357%2012.1332C80.4457%2012.4232%2080.0158%2012.7034%2079.7458%2013.0834C78.6958%2014.5734%2077.2658%2014.4732%2075.7858%2014.0932C74.8258%2013.8432%2074.0458%2013.2034%2073.3458%2012.5134C72.9858%2012.1534%2072.7858%2011.6933%2072.8158%2011.1833C72.9558%209.28327%2071.7758%208.37334%2070.2458%207.75334C69.3558%207.39334%2068.3158%207.31328%2067.9158%206.19328C67.8358%205.96328%2067.5257%205.93337%2067.2657%206.03337C65.6157%206.66337%2063.8757%205.9632%2062.2057%206.3632C62.0157%206.4132%2061.7358%206.23318%2061.5558%206.09318C61.2058%205.81318%2060.9058%205.6633%2060.4858%205.9633C60.2258%206.1433%2059.8858%206.35342%2059.5958%206.33342C56.9258%206.15342%2054.5758%207.63335%2051.9758%207.76335C50.1458%207.85335%2048.5258%208.77328%2046.9058%209.44328C45.3658%2010.0833%2043.5558%2010.2634%2042.2858%2011.5434C42.2358%2011.5934%2042.1458%2011.6432%2042.0658%2011.6432C40.3558%2011.6332%2039.2857%2012.8633%2038.0257%2013.7133C37.2757%2014.2233%2036.4758%2014.6132%2035.6158%2014.8832C35.0558%2015.0632%2034.4958%2015.0734%2033.9458%2014.8334C32.8458%2014.3534%2031.8658%2013.6732%2031.8158%2012.3932C31.7658%2011.1232%2032.2858%2010.0034%2033.4458%209.30339C33.9258%209.01339%2034.5457%208.95327%2034.8857%208.43327C35.0957%208.11327%2035.0558%207.81341%2034.7558%207.57341C34.2758%207.18341%2033.6858%207.15329%2033.1258%207.20329C31.9858%207.29329%2030.8358%207.35319%2029.7258%207.60319C27.7458%208.04319%2025.8058%208.70319%2023.8158%209.10319C21.4858%209.56319%2019.2357%2010.1633%2017.2057%2011.4433C13.8557%2012.0933%2011.1558%2014.2433%208.03576%2015.4133C7.73576%2015.5233%207.42574%2015.6933%207.20574%2015.9233C6.33574%2016.8333%205.23574%2017.3432%204.13574%2017.8832C3.56574%2018.1632%203.09576%2018.6534%202.59576%2019.0634C2.19576%2019.3934%201.76574%2019.6134%201.26574%2019.3034C0.715741%2018.9634%200.0957918%2018.6433%200.0057918%2017.9133C-0.0242082%2017.6933%200.0657942%2017.4133%200.195794%2017.2333C0.525794%2016.7733%200.82576%2016.2033%201.28576%2015.9333C3.16576%2014.8133%204.79574%2013.2433%207.01574%2012.7233C8.87574%2012.2833%2010.5257%2011.4534%2011.8857%2010.0634C12.5257%209.4134%2013.2457%208.99335%2014.2657%209.01335C15.6257%209.04335%2016.7458%208.26335%2017.8058%207.51335C18.6358%206.91335%2019.4258%206.43324%2020.4958%206.65324C21.1058%206.77324%2021.6458%206.54318%2022.0358%206.09318C22.9558%205.02318%2023.8158%205.24318%2024.7458%206.09318C25.1258%206.44318%2025.5058%206.39334%2025.5358%205.75334C25.5658%205.24334%2025.9258%205.04336%2026.3458%205.02336C27.3258%204.97336%2028.3058%205.02328%2029.2758%204.94328C30.3258%204.85328%2031.3757%204.46338%2032.3957%204.54338C33.3257%204.62338%2034.1858%205.27339%2035.2258%205.05339C35.5058%204.99339%2035.8857%205.1434%2036.1357%205.3134C37.6457%206.3334%2038.1058%208.15341%2037.3158%209.82341C37.1758%2010.1134%2037.0258%2010.3932%2036.9058%2010.6232C37.2158%2011.1232%2037.5258%2010.8833%2037.7858%2010.7433C38.2158%2010.5133%2038.7158%2010.3233%2039.0358%209.98332C40.6358%208.22332%2042.9057%207.61337%2044.8957%206.53337C45.4357%206.24337%2045.9657%206.20329%2046.4557%206.70329C46.8157%207.06329%2047.2057%206.95321%2047.5157%206.62321C47.8557%206.27321%2048.1258%205.85335%2048.4758%205.51335C49.0858%204.94335%2049.7158%204.3832%2050.5958%205.1132C50.8858%205.3532%2051.2158%205.22336%2051.4958%205.02336C52.3158%204.42336%2053.3458%204.38333%2054.2258%203.99333C55.3358%203.49333%2056.3458%203.27322%2057.4058%204.13322C57.8258%204.47322%2058.3658%204.26325%2058.7458%203.91325C59.5158%203.22325%2060.3057%203.15323%2061.2057%203.64323C61.9157%204.02323%2062.6257%203.81337%2063.3257%203.53337C64.2857%203.16337%2065.2558%203.09322%2066.0658%203.88322C66.5158%204.31322%2067.0357%204.43326%2067.6357%204.42326C68.8057%204.39326%2069.8657%204.87328%2070.9557%205.19328C72.6157%205.69328%2073.8058%206.72338%2074.5458%208.29338C74.9258%209.10338%2075.2757%209.93323%2076.1357%2010.3932C76.5457%2010.6132%2077.1358%2010.8033%2076.9858%2011.4233C76.8758%2011.8733%2076.3158%2011.8233%2075.9658%2012.0033C75.7357%2012.1233%2075.5458%2012.3434%2075.7158%2012.5734C75.8358%2012.7334%2076.1257%2012.8632%2076.3357%2012.8632C77.0557%2012.8632%2077.6058%2012.4634%2077.8458%2011.8134C78.2558%2010.6834%2079.1458%2010.2032%2080.1858%209.84318C80.8758%209.60319%2081.5557%209.31334%2082.2158%209.00334C82.9758%208.64334%2083.7258%208.38322%2084.5658%208.63322C85.3358%208.86322%2086.0258%208.67335%2086.6658%208.26335C88.2858%207.20335%2090.0158%206.61319%2091.9858%206.85319C92.6358%206.93319%2093.2758%206.73325%2093.8658%206.41325C94.2958%206.18325%2094.7458%205.85342%2095.1958%205.83342C97.3658%205.75342%2099.5458%205.4834%20101.866%205.8134C101.526%206.6534%20100.776%206.6233%20100.286%206.9633C100.076%207.1133%2099.8658%207.31336%20100.056%207.52336C100.186%207.66336%20100.546%207.75326%20100.706%207.67326C101.356%207.34326%20101.966%206.94338%20102.586%206.54338C104.376%205.38338%20106.616%205.48342%20108.246%206.83342C108.746%207.24342%20109.196%207.7332%20109.716%208.1132C110.776%208.8932%20111.306%209.94332%20111.396%2011.2333C111.426%2011.6433%20111.416%2012.0533%20111.466%2012.4533C111.566%2013.1633%20111.846%2013.5133%20112.566%2013.4833C113.506%2013.4433%20114.316%2013.8132%20115.166%2014.1032C116.196%2014.4532%20117.216%2014.5134%20118.296%2014.2634C119.566%2013.9734%20120.856%2013.7832%20122.146%2013.6032C122.656%2013.5332%20123.056%2013.7434%20123.256%2014.3234C123.566%2015.2134%20123.676%2015.2333%20124.186%2014.7533C124.426%2014.5333%20124.716%2014.3334%20124.876%2014.0634C126.046%2011.9934%20128.056%2011.8634%20129.996%2012.0834C130.926%2012.1834%20131.506%2012.0834%20132.166%2011.5234C133.006%2010.8134%20134.116%2010.7433%20135.136%2010.4533C136.306%2010.1133%20137.586%2010.1834%20138.686%209.58342C139.516%209.13342%20140.476%2010.0134%20141.266%209.30339C141.956%208.69339%20142.806%208.38342%20143.646%208.08342C144.256%207.86342%20144.906%207.53341%20145.516%207.57341C147.206%207.68341%20148.706%206.97318%20150.276%206.59318C151.296%206.34318%20152.226%205.7732%20153.326%206.3632C153.596%206.5132%20154.096%206.26326%20154.486%206.17326C156.146%205.77326%20157.806%205.3433%20159.476%204.9633C159.866%204.8733%20160.296%204.87327%20160.686%204.93327C161.276%205.02327%20161.746%205.32325%20161.996%205.91325C162.136%206.24325%20161.936%206.83342%20162.526%206.83342C162.896%206.83342%20162.846%206.3032%20163.076%206.1132C163.756%205.5432%20165.896%205.52324%20166.506%206.15324C167.176%206.85324%20167.996%207.41342%20168.446%208.33342C169.166%209.82342%20170.466%2010.3833%20172.046%2010.4133C172.206%2010.4133%20172.376%2010.4533%20172.536%2010.4333C175.616%2010.0633%20178.706%2010.0934%20181.796%2010.3134C182.266%2010.3434%20182.776%2010.1933%20183.216%2010.0033C184.366%209.50334%20185.556%209.37335%20186.786%209.26335C188.726%209.08335%20190.676%208.85341%20192.606%208.57341C193.856%208.39341%20195.036%208.29334%20196.046%209.25334C196.376%209.56334%20196.866%209.60338%20197.166%209.29338C199.076%207.28338%20201.576%207.58335%20203.976%207.51335C204.296%207.51335%20204.616%207.62324%20204.946%207.65324C205.186%207.67324%20205.536%207.7432%20205.646%207.6132C206.916%206.2032%20208.666%206.8134%20210.176%206.3134L210.226%206.23332ZM115.796%2015.6332C115.836%2015.3532%20115.686%2015.1633%20115.426%2015.1733C115.206%2015.1833%20114.976%2015.2933%20114.796%2015.4233C114.596%2015.5633%20114.516%2015.8134%20114.696%2016.0134C114.776%2016.1134%20114.966%2016.1632%20115.106%2016.1532C115.426%2016.1232%20115.686%2015.9532%20115.796%2015.6332ZM91.3257%208.93327C91.0657%208.98327%2090.9158%209.14324%2090.9758%209.40324C91.0358%209.64324%2091.2258%209.79335%2091.4858%209.76335C91.7358%209.73335%2091.9058%209.56338%2091.8458%209.29338C91.7858%209.04338%2091.5857%208.94327%2091.3257%208.93327ZM201.636%209.28337C201.636%209.12337%20201.716%208.93319%20201.656%208.84318C201.506%208.63318%20201.246%208.54328%20201.026%208.69328C200.786%208.85328%20200.796%209.11338%20201.006%209.29338C201.206%209.46338%20201.446%209.44338%20201.646%209.29338L201.636%209.28337ZM193.806%2010.1032C193.706%2010.0032%20193.606%209.84341%20193.496%209.82341C193.366%209.80341%20193.116%209.89331%20193.096%209.97331C193.026%2010.2633%20193.236%2010.4032%20193.496%2010.3832C193.606%2010.3732%20193.706%2010.2032%20193.806%2010.0932V10.1032Z%22%20fill%3D%22%23E6BFAC%22%2F%3E%0A%3Cpath%20d%3D%22M219.836%207.92345C219.756%208.05345%20219.696%208.23359%20219.576%208.31359C219.466%208.38359%20219.216%208.41339%20219.166%208.35339C218.986%208.14339%20219.076%207.89349%20219.246%207.71349C219.346%207.61349%20219.526%207.53357%20219.656%207.54357C219.836%207.56357%20219.896%207.73345%20219.836%207.92345Z%22%20fill%3D%22%23E6BFAC%22%2F%3E%0A%3Cpath%20d%3D%22M60.2958%2019.8136C60.1758%2019.8936%2060.0559%2020.0436%2059.9459%2020.0336C59.6759%2019.9936%2059.5858%2019.7836%2059.7358%2019.5636C59.7958%2019.4736%2060.0158%2019.4335%2060.1258%2019.4735C60.2158%2019.5135%2060.2458%2019.6936%2060.2958%2019.8236V19.8136Z%22%20fill%3D%22%23E6BFAC%22%2F%3E%0A%3Cpath%20d%3D%22M43.006%200.0133187C43.186%200.0733187%2043.266%200.203387%2043.156%200.333387C43.076%200.433387%2042.896%200.503309%2042.776%200.503309C42.676%200.503309%2042.486%200.333328%2042.496%200.273328C42.556%200.0133285%2042.766%20-0.0266813%2043.006%200.0133187Z%22%20fill%3D%22%23E6BFAC%22%2F%3E%0A%3C%2Fsvg%3E");
      background-size: 100%;
      background-repeat: no-repeat;
      width: 220px;
      height: 20px;

      @media screen and (max-width: 600px) {
        width: 180px;
        height: 16px;
      }
    }
  }
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 0.12px + 2.97vw, 35px);
  max-width: 838px;
  margin: 0 auto;

  @media screen and (max-width: 850px) {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 500px;
  }
}
.pain-card {
  background: var(--c-peach);
  color: var(--c-ink);
  border-radius: 4px;
  padding: clamp(12px, 6.32px + 1.42vw, 23px);
  display: flex;
  flex-direction: column;
  align-items: center;
  aspect-ratio: 1 / 1;
  min-width: 0;

  @media screen and (max-width: 450px) {
    &:nth-child(1) img {
      max-width: 98px;
      width: 100%;
    }
    &:nth-child(2) img {
      max-width: 98px;
      width: 100%;
    }
    &:nth-child(3) img {
      max-width: 117px;
      width: 100%;
    }
    &:nth-child(4) img {
      max-width: 81px;
      width: 100%;
    }
    &:nth-child(5) img {
      max-width: 92px;
      width: 100%;
    }
    &:nth-child(6) img {
      max-width: 83px;
      width: 100%;
    }
  }

  @media screen and (max-width: 380px) {
    aspect-ratio: auto;
    row-gap: 5px;
    padding: 15px 10px;
  }
}

.pain-card .illust {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-card .label {
  font-family: var(--sans);
  font-size: clamp(14px, 11.94px + 0.516vw, 18px);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  margin-bottom: 0;
}

/* =========================================
   目安 (teal)
   ========================================= */
.guide {
  background: #6fada5;
  color: #fff;
  padding: 67px 0 102px;
  text-align: center;
  position: relative;

  @media screen and (max-width: 850px) {
    padding-top: 54px;
    padding-bottom: 52px;
  }

  .section-title {
    margin-bottom: 62px;
    &::after {
      content: "";
      background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22220%22%20height%3D%2221%22%20viewBox%3D%220%200%20220%2021%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M210.226%206.23332C210.326%206.92332%20209.776%207.00341%20209.576%207.32341C209.446%207.54341%20209.316%207.79331%20209.526%207.97331C209.696%208.11331%20209.966%208.14325%20210.196%208.16325C210.346%208.17325%20210.546%208.12337%20210.656%208.03337C212.166%206.77337%20214.006%206.47334%20215.866%206.25334C216.406%206.19334%20216.916%205.73328%20217.576%206.19328C217.296%207.42328%20216.806%208.41325%20215.346%208.66325C214.626%208.78325%20213.946%209.10339%20213.246%209.30339C212.696%209.45339%20212.116%209.71322%20211.586%209.63322C210.426%209.46322%20209.326%209.54331%20208.246%209.97331C206.186%209.54331%20204.446%2010.6732%20202.576%2011.1532C201.696%2011.3832%20200.916%2011.7134%20199.996%2011.2834C199.536%2011.0634%20199.016%2011.2634%20198.616%2011.5834C197.406%2012.5734%20195.826%2012.3933%20194.466%2012.9333C194.256%2013.0133%20193.966%2012.9732%20193.746%2012.9032C191.286%2012.1032%20188.936%2012.9532%20186.566%2013.3732C186.076%2013.4632%20185.666%2013.6833%20185.236%2013.2333C184.676%2012.6533%20183.786%2013.5732%20183.186%2012.8732C183.166%2012.8432%20182.646%2013.1632%20182.426%2013.3932C181.096%2014.7832%20179.366%2014.7834%20177.646%2014.8034C176.946%2014.8034%20176.456%2014.3133%20175.936%2013.9233C175.506%2013.6033%20175.186%2013.4632%20174.676%2013.9032C173.796%2014.6632%20172.756%2014.7433%20171.726%2014.1833C170.986%2013.7733%20170.176%2013.7234%20169.376%2013.5734C168.106%2013.3434%20167.016%2012.9134%20167.026%2011.2834C167.026%2010.8434%20166.696%2010.3833%20166.476%209.95329C166.326%209.65329%20166.056%209.43326%20165.706%209.42326C164.496%209.38326%20163.296%209.03342%20162.086%209.58342C161.116%2010.0334%20160.026%2010.0333%20158.956%2010.0033C157.406%209.96334%20155.856%209.98332%20154.316%209.98332C154.076%209.98332%20153.816%209.96337%20153.586%2010.0334C150.166%2011.1134%20146.526%2011.1034%20143.116%2012.3034C141.286%2012.9434%20139.276%2013.1533%20137.506%2013.9733C136.226%2014.5633%20134.936%2014.9733%20133.566%2015.1633C132.776%2015.2633%20131.796%2015.9733%20131.476%2014.4833C131.446%2014.3333%20130.906%2014.2433%20130.596%2014.2233C129.666%2014.1733%20128.696%2013.9834%20127.766%2014.8134C128.636%2015.1334%20129.366%2014.5033%20130.036%2014.9133C130.226%2015.0233%20130.466%2015.2132%20130.496%2015.4032C130.556%2015.7632%20130.256%2016.1434%20129.956%2016.0834C127.916%2015.7034%20126.166%2016.8232%20124.266%2017.1032C123.456%2017.2232%20122.646%2017.3132%20121.886%2017.6332C121.426%2017.8232%20120.926%2017.8433%20120.446%2017.6933C119.396%2017.3633%20118.376%2017.4434%20117.326%2017.7834C115.166%2018.4734%20113.546%2017.3734%20112.086%2016.0134C111.696%2015.6434%20111.506%2015.0633%20110.986%2014.7533C110.236%2014.3033%20109.946%2013.5233%20109.736%2012.7233C109.616%2012.2533%20109.536%2011.7634%20109.386%2011.2934C109.286%2010.9934%20109.186%2010.5933%20108.946%2010.4433C107.936%209.77328%20106.776%208.99327%20105.626%209.18327C102.646%209.70327%2099.6257%209.71332%2096.6357%209.98332C95.2357%2010.1133%2093.9458%2010.6832%2092.5958%2010.8932C91.3358%2011.0932%2090.0058%2010.9432%2088.7158%2011.1332C87.9758%2011.2432%2087.3258%2011.5732%2086.6558%2011.8832C86.3458%2012.0232%2085.9757%2012.0733%2085.7757%2011.7533C85.3657%2011.1233%2085.0357%2011.3033%2084.6457%2011.7533C84.0957%2012.3833%2083.3657%2012.7632%2082.6457%2013.1432C82.4357%2013.2532%2082.2057%2013.3633%2081.9658%2013.4233C81.6558%2013.5033%2081.2758%2013.5633%2081.1058%2013.2333C81.0358%2013.0933%2081.2358%2012.8132%2081.2858%2012.5932C81.3158%2012.4532%2081.3457%2012.2333%2081.2657%2012.1733C81.1757%2012.0933%2080.9257%2012.0632%2080.8357%2012.1332C80.4457%2012.4232%2080.0158%2012.7034%2079.7458%2013.0834C78.6958%2014.5734%2077.2658%2014.4732%2075.7858%2014.0932C74.8258%2013.8432%2074.0458%2013.2034%2073.3458%2012.5134C72.9858%2012.1534%2072.7858%2011.6933%2072.8158%2011.1833C72.9558%209.28327%2071.7758%208.37334%2070.2458%207.75334C69.3558%207.39334%2068.3158%207.31328%2067.9158%206.19328C67.8358%205.96328%2067.5257%205.93337%2067.2657%206.03337C65.6157%206.66337%2063.8757%205.9632%2062.2057%206.3632C62.0157%206.4132%2061.7358%206.23318%2061.5558%206.09318C61.2058%205.81318%2060.9058%205.6633%2060.4858%205.9633C60.2258%206.1433%2059.8858%206.35342%2059.5958%206.33342C56.9258%206.15342%2054.5758%207.63335%2051.9758%207.76335C50.1458%207.85335%2048.5258%208.77328%2046.9058%209.44328C45.3658%2010.0833%2043.5558%2010.2634%2042.2858%2011.5434C42.2358%2011.5934%2042.1458%2011.6432%2042.0658%2011.6432C40.3558%2011.6332%2039.2857%2012.8633%2038.0257%2013.7133C37.2757%2014.2233%2036.4758%2014.6132%2035.6158%2014.8832C35.0558%2015.0632%2034.4958%2015.0734%2033.9458%2014.8334C32.8458%2014.3534%2031.8658%2013.6732%2031.8158%2012.3932C31.7658%2011.1232%2032.2858%2010.0034%2033.4458%209.30339C33.9258%209.01339%2034.5457%208.95327%2034.8857%208.43327C35.0957%208.11327%2035.0558%207.81341%2034.7558%207.57341C34.2758%207.18341%2033.6858%207.15329%2033.1258%207.20329C31.9858%207.29329%2030.8358%207.35319%2029.7258%207.60319C27.7458%208.04319%2025.8058%208.70319%2023.8158%209.10319C21.4858%209.56319%2019.2357%2010.1633%2017.2057%2011.4433C13.8557%2012.0933%2011.1558%2014.2433%208.03576%2015.4133C7.73576%2015.5233%207.42574%2015.6933%207.20574%2015.9233C6.33574%2016.8333%205.23574%2017.3432%204.13574%2017.8832C3.56574%2018.1632%203.09576%2018.6534%202.59576%2019.0634C2.19576%2019.3934%201.76574%2019.6134%201.26574%2019.3034C0.715741%2018.9634%200.0957918%2018.6433%200.0057918%2017.9133C-0.0242082%2017.6933%200.0657942%2017.4133%200.195794%2017.2333C0.525794%2016.7733%200.82576%2016.2033%201.28576%2015.9333C3.16576%2014.8133%204.79574%2013.2433%207.01574%2012.7233C8.87574%2012.2833%2010.5257%2011.4534%2011.8857%2010.0634C12.5257%209.4134%2013.2457%208.99335%2014.2657%209.01335C15.6257%209.04335%2016.7458%208.26335%2017.8058%207.51335C18.6358%206.91335%2019.4258%206.43324%2020.4958%206.65324C21.1058%206.77324%2021.6458%206.54318%2022.0358%206.09318C22.9558%205.02318%2023.8158%205.24318%2024.7458%206.09318C25.1258%206.44318%2025.5058%206.39334%2025.5358%205.75334C25.5658%205.24334%2025.9258%205.04336%2026.3458%205.02336C27.3258%204.97336%2028.3058%205.02328%2029.2758%204.94328C30.3258%204.85328%2031.3757%204.46338%2032.3957%204.54338C33.3257%204.62338%2034.1858%205.27339%2035.2258%205.05339C35.5058%204.99339%2035.8857%205.1434%2036.1357%205.3134C37.6457%206.3334%2038.1058%208.15341%2037.3158%209.82341C37.1758%2010.1134%2037.0258%2010.3932%2036.9058%2010.6232C37.2158%2011.1232%2037.5258%2010.8833%2037.7858%2010.7433C38.2158%2010.5133%2038.7158%2010.3233%2039.0358%209.98332C40.6358%208.22332%2042.9057%207.61337%2044.8957%206.53337C45.4357%206.24337%2045.9657%206.20329%2046.4557%206.70329C46.8157%207.06329%2047.2057%206.95321%2047.5157%206.62321C47.8557%206.27321%2048.1258%205.85335%2048.4758%205.51335C49.0858%204.94335%2049.7158%204.3832%2050.5958%205.1132C50.8858%205.3532%2051.2158%205.22336%2051.4958%205.02336C52.3158%204.42336%2053.3458%204.38333%2054.2258%203.99333C55.3358%203.49333%2056.3458%203.27322%2057.4058%204.13322C57.8258%204.47322%2058.3658%204.26325%2058.7458%203.91325C59.5158%203.22325%2060.3057%203.15323%2061.2057%203.64323C61.9157%204.02323%2062.6257%203.81337%2063.3257%203.53337C64.2857%203.16337%2065.2558%203.09322%2066.0658%203.88322C66.5158%204.31322%2067.0357%204.43326%2067.6357%204.42326C68.8057%204.39326%2069.8657%204.87328%2070.9557%205.19328C72.6157%205.69328%2073.8058%206.72338%2074.5458%208.29338C74.9258%209.10338%2075.2757%209.93323%2076.1357%2010.3932C76.5457%2010.6132%2077.1358%2010.8033%2076.9858%2011.4233C76.8758%2011.8733%2076.3158%2011.8233%2075.9658%2012.0033C75.7357%2012.1233%2075.5458%2012.3434%2075.7158%2012.5734C75.8358%2012.7334%2076.1257%2012.8632%2076.3357%2012.8632C77.0557%2012.8632%2077.6058%2012.4634%2077.8458%2011.8134C78.2558%2010.6834%2079.1458%2010.2032%2080.1858%209.84318C80.8758%209.60319%2081.5557%209.31334%2082.2158%209.00334C82.9758%208.64334%2083.7258%208.38322%2084.5658%208.63322C85.3358%208.86322%2086.0258%208.67335%2086.6658%208.26335C88.2858%207.20335%2090.0158%206.61319%2091.9858%206.85319C92.6358%206.93319%2093.2758%206.73325%2093.8658%206.41325C94.2958%206.18325%2094.7458%205.85342%2095.1958%205.83342C97.3658%205.75342%2099.5458%205.4834%20101.866%205.8134C101.526%206.6534%20100.776%206.6233%20100.286%206.9633C100.076%207.1133%2099.8658%207.31336%20100.056%207.52336C100.186%207.66336%20100.546%207.75326%20100.706%207.67326C101.356%207.34326%20101.966%206.94338%20102.586%206.54338C104.376%205.38338%20106.616%205.48342%20108.246%206.83342C108.746%207.24342%20109.196%207.7332%20109.716%208.1132C110.776%208.8932%20111.306%209.94332%20111.396%2011.2333C111.426%2011.6433%20111.416%2012.0533%20111.466%2012.4533C111.566%2013.1633%20111.846%2013.5133%20112.566%2013.4833C113.506%2013.4433%20114.316%2013.8132%20115.166%2014.1032C116.196%2014.4532%20117.216%2014.5134%20118.296%2014.2634C119.566%2013.9734%20120.856%2013.7832%20122.146%2013.6032C122.656%2013.5332%20123.056%2013.7434%20123.256%2014.3234C123.566%2015.2134%20123.676%2015.2333%20124.186%2014.7533C124.426%2014.5333%20124.716%2014.3334%20124.876%2014.0634C126.046%2011.9934%20128.056%2011.8634%20129.996%2012.0834C130.926%2012.1834%20131.506%2012.0834%20132.166%2011.5234C133.006%2010.8134%20134.116%2010.7433%20135.136%2010.4533C136.306%2010.1133%20137.586%2010.1834%20138.686%209.58342C139.516%209.13342%20140.476%2010.0134%20141.266%209.30339C141.956%208.69339%20142.806%208.38342%20143.646%208.08342C144.256%207.86342%20144.906%207.53341%20145.516%207.57341C147.206%207.68341%20148.706%206.97318%20150.276%206.59318C151.296%206.34318%20152.226%205.7732%20153.326%206.3632C153.596%206.5132%20154.096%206.26326%20154.486%206.17326C156.146%205.77326%20157.806%205.3433%20159.476%204.9633C159.866%204.8733%20160.296%204.87327%20160.686%204.93327C161.276%205.02327%20161.746%205.32325%20161.996%205.91325C162.136%206.24325%20161.936%206.83342%20162.526%206.83342C162.896%206.83342%20162.846%206.3032%20163.076%206.1132C163.756%205.5432%20165.896%205.52324%20166.506%206.15324C167.176%206.85324%20167.996%207.41342%20168.446%208.33342C169.166%209.82342%20170.466%2010.3833%20172.046%2010.4133C172.206%2010.4133%20172.376%2010.4533%20172.536%2010.4333C175.616%2010.0633%20178.706%2010.0934%20181.796%2010.3134C182.266%2010.3434%20182.776%2010.1933%20183.216%2010.0033C184.366%209.50334%20185.556%209.37335%20186.786%209.26335C188.726%209.08335%20190.676%208.85341%20192.606%208.57341C193.856%208.39341%20195.036%208.29334%20196.046%209.25334C196.376%209.56334%20196.866%209.60338%20197.166%209.29338C199.076%207.28338%20201.576%207.58335%20203.976%207.51335C204.296%207.51335%20204.616%207.62324%20204.946%207.65324C205.186%207.67324%20205.536%207.7432%20205.646%207.6132C206.916%206.2032%20208.666%206.8134%20210.176%206.3134L210.226%206.23332ZM115.796%2015.6332C115.836%2015.3532%20115.686%2015.1633%20115.426%2015.1733C115.206%2015.1833%20114.976%2015.2933%20114.796%2015.4233C114.596%2015.5633%20114.516%2015.8134%20114.696%2016.0134C114.776%2016.1134%20114.966%2016.1632%20115.106%2016.1532C115.426%2016.1232%20115.686%2015.9532%20115.796%2015.6332ZM91.3257%208.93327C91.0657%208.98327%2090.9158%209.14324%2090.9758%209.40324C91.0358%209.64324%2091.2258%209.79335%2091.4858%209.76335C91.7358%209.73335%2091.9058%209.56338%2091.8458%209.29338C91.7858%209.04338%2091.5857%208.94327%2091.3257%208.93327ZM201.636%209.28337C201.636%209.12337%20201.716%208.93319%20201.656%208.84318C201.506%208.63318%20201.246%208.54328%20201.026%208.69328C200.786%208.85328%20200.796%209.11338%20201.006%209.29338C201.206%209.46338%20201.446%209.44338%20201.646%209.29338L201.636%209.28337ZM193.806%2010.1032C193.706%2010.0032%20193.606%209.84341%20193.496%209.82341C193.366%209.80341%20193.116%209.89331%20193.096%209.97331C193.026%2010.2633%20193.236%2010.4032%20193.496%2010.3832C193.606%2010.3732%20193.706%2010.2032%20193.806%2010.0932V10.1032Z%22%20fill%3D%22%23E6BFAC%22%2F%3E%0A%3Cpath%20d%3D%22M219.836%207.92345C219.756%208.05345%20219.696%208.23359%20219.576%208.31359C219.466%208.38359%20219.216%208.41339%20219.166%208.35339C218.986%208.14339%20219.076%207.89349%20219.246%207.71349C219.346%207.61349%20219.526%207.53357%20219.656%207.54357C219.836%207.56357%20219.896%207.73345%20219.836%207.92345Z%22%20fill%3D%22%23EFE5DA%22%2F%3E%0A%3Cpath%20d%3D%22M60.2958%2019.8136C60.1758%2019.8936%2060.0559%2020.0436%2059.9459%2020.0336C59.6759%2019.9936%2059.5858%2019.7836%2059.7358%2019.5636C59.7958%2019.4736%2060.0158%2019.4335%2060.1258%2019.4735C60.2158%2019.5135%2060.2458%2019.6936%2060.2958%2019.8236V19.8136Z%22%20fill%3D%22%23EFE5DA%22%2F%3E%0A%3Cpath%20d%3D%22M43.006%200.0133187C43.186%200.0733187%2043.266%200.203387%2043.156%200.333387C43.076%200.433387%2042.896%200.503309%2042.776%200.503309C42.676%200.503309%2042.486%200.333328%2042.496%200.273328C42.556%200.0133285%2042.766%20-0.0266813%2043.006%200.0133187Z%22%20fill%3D%22%23EFE5DA%22%2F%3E%0A%3C%2Fsvg%3E");
      background-size: 100%;
      background-repeat: no-repeat;
      width: 220px;
      height: 20px;

      @media screen and (max-width: 600px) {
        width: 180px;
        height: 16px;
      }
    }
  }

  .container {
    max-width: 1040px;
    margin-inline: auto;
    position: relative;
  }
}

/* Polaroid */

.polaroid {
  max-width: 668px;
  margin-inline: auto;
  margin-top: clamp(37px, calc(6.44vw + 11.22px), 66px);
  img {
    margin-inline: auto;
    width: fit-content;
  }
  .caption {
    margin-top: clamp(25px, calc(5.11vw + 4.56px), 48px);
  }
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 10px;
  max-width: 790px;
  margin-inline: auto;

  @media screen and (max-width: 600px) {
    gap: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.cloud-card {
  display: flex;
  justify-content: center;

  @media screen and (max-width: 600px) {
    width: calc(100% / 2);
  }
}
.guide .note {
  margin-top: 30px;
  font-size: 15px;
  font-family: var(--sans);
  line-height: 1.9;
  font-weight: 500;
  margin-bottom: 0;

  @media screen and (max-width: 600px) {
    text-align: left;
  }
}

/* =========================================
   Reasons
   ========================================= */
.reasons {
  padding: 0 0 148px;
  position: relative;
  overflow: hidden;

  @media screen and (max-width: 850px) {
    padding-bottom: 75px;
  }
}
.reasons-inner {
  background-image:
    url("../../img/lp/bg-decoration_illsut3.svg"), url("../../img/lp/bg-decoration_illsut4.svg"), url("../../img/lp/bg-decoration_illsut5.svg"), url("../../img/lp/bg-decoration_illsut6.svg"),
    url("../../img/lp/bg-decoration_illsut7.svg");
  background-size: auto;
  background-repeat: no-repeat;
  background-position:
    top 3% right 0%,
    top 11% left,
    bottom 63% left 30%,
    bottom 40% left,
    bottom 30% right;
  margin-top: 90px;

  @media screen and (max-width: 850px) {
    background-image:
      url("../../img/lp/bg-decoration_sp_illsut3.svg"), url("../../img/lp/bg-decoration_sp_illsut4.svg"), url("../../img/lp/bg-decoration_sp_illsut5.svg"),
      url("../../img/lp/bg-decoration_sp_illsut6.svg"), url("../../img/lp/bg-decoration_sp_illsut7.svg");
    background-size: auto;
    background-repeat: no-repeat;
    background-position:
      top right,
      top 16% left 10%,
      bottom 65% right,
      bottom 46% left 10%,
      bottom 24% left;
  }
  @media screen and (max-width: 600px) {
    margin-top: 110px;
  }
}
.reasons-hero {
  position: relative;
  min-height: clamp(280px, calc(120px + 40vw), 600px);
  background: url("../../img/lp/bg_reasons.jpg") center/cover no-repeat;
  display: grid;
  place-items: end center;
  z-index: 0;
  @media screen and (max-width: 600px) {
    background: url("../../img/lp/bg_reasons_sp.jpg") center/cover no-repeat;
  }
}
.reasons-curve {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22706%22%20height%3D%22146%22%20viewBox%3D%220%200%20706%20146%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cmask%20id%3D%22mask0_177_4%22%20style%3D%22mask-type%3Aalpha%22%20maskUnits%3D%22userSpaceOnUse%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22706%22%20height%3D%22146%22%3E%0A%3Crect%20width%3D%22706%22%20height%3D%22146%22%20fill%3D%22%23D9D9D9%22%2F%3E%0A%3C%2Fmask%3E%0A%3Cg%20mask%3D%22url(%23mask0_177_4)%22%3E%0A%3Cpath%20d%3D%22M351.77%20748.93C597.244%20748.93%20796.24%20581.238%20796.24%20374.38C796.24%20167.522%20597.244%20-0.170166%20351.77%20-0.170166C106.296%20-0.170166%20-92.7002%20167.522%20-92.7002%20374.38C-92.7002%20581.238%20106.296%20748.93%20351.77%20748.93Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom -1px center;
  text-align: center;
  max-width: 710px;
  width: 100%;
  margin-inline: auto;
  min-height: 146px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.reasons-title {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: -40px;
  padding-bottom: 0;
  max-width: min(var(--container), calc(max(888px, 100%) * 0.85));
  padding-inline: 16px;

  @media screen and (max-width: 600px) {
    transform: translateY(50px) !important;
    margin-bottom: 0;
  }
  @media screen and (max-width: 400px) {
    transform: translateY(60px) !important;
  }
}
.reasons-title .sparkles {
  margin-bottom: 28px;

  @media screen and (max-width: 850px) {
    margin-bottom: 15px;
  }
}
.reasons-title h2 {
  font-family: var(--sans);
  font-size: clamp(22px, 17.9px + 1.03vw, 30px);
  margin: 0;
  font-weight: 700;

  span {
    color: var(--c-terracotta);
    display: block;

    @media screen and (max-width: 600px) {
      display: block;
    }
  }
}
.container {
  position: relative;
  z-index: 1;
}
.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 90px;
}
.reason-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 50px;
  align-items: center;

  @media screen and (max-width: 850px) {
    display: flex;
    flex-direction: column-reverse;
    max-width: 550px;
    margin-inline: auto;

    .reason-heading {
      display: grid;
      grid-template-columns: 55px 1fr;
      column-gap: 20px;
    }
  }
}
@media screen and (min-width: 851px) {
  .reason-row.reverse .reason-image {
    order: 2;
  }
  .reason-row.reverse .reason-text {
    order: 1;
  }
}
.reason-image .ph {
  aspect-ratio: 4 / 3;
}
.reason-text .num {
  margin-bottom: 33px;
  @media screen and (max-width: 850px) {
    margin-bottom: 0;
  }
}
.reason-text h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(23px, 20.42px + 0.645vw, 28px);
  margin-bottom: 18px;
}
.reason-text p {
  line-height: 2;
  color: var(--c-ink-soft);
  font-weight: 500;
  margin-bottom: 0;
}

.reason-movie {
  max-width: 1006px;
  margin: 125px auto 0;

  @media screen and (max-width: 850px) {
    margin-top: 56px;
  }

  iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 4px;
  }
}

.reason-gore {
  padding-bottom: 88px;
  border-bottom: 1px solid #c7b299;

  @media screen and (max-width: 850px) {
    padding-bottom: 58px;
  }
}

.reason-gore-point {
  background: rgba(244, 233, 228, 0.5);
  padding: clamp(23px, 7px + 4vw, 55px);
  margin-top: 89px;
  border-radius: 20px;

  .section-title {
    margin-bottom: clamp(30px, 19px + 2.75vw, 52px);
    font-family: var(--serif);
    font-weight: 500;
    text-align: center;
    &::after {
      content: "";
      background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22220%22%20height%3D%2221%22%20viewBox%3D%220%200%20220%2021%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M210.226%206.24299C210.326%206.93299%20209.776%207.01283%20209.576%207.33283C209.446%207.55283%20209.316%207.80273%20209.526%207.98273C209.696%208.12273%20209.966%208.15268%20210.196%208.17268C210.346%208.18268%20210.546%208.13279%20210.656%208.04279C212.166%206.78279%20214.006%206.48301%20215.866%206.26301C216.406%206.20301%20216.916%205.74295%20217.576%206.20295C217.296%207.43295%20216.806%208.42268%20215.346%208.67268C214.626%208.79268%20213.946%209.11281%20213.246%209.31281C212.696%209.46281%20212.116%209.72289%20211.586%209.64289C210.426%209.47289%20209.326%209.55273%20208.246%209.98273C206.186%209.55273%20204.446%2010.6829%20202.576%2011.1629C201.696%2011.3929%20200.916%2011.7228%20199.996%2011.2928C199.536%2011.0728%20199.016%2011.2731%20198.616%2011.5931C197.406%2012.5831%20195.826%2012.4027%20194.466%2012.9427C194.256%2013.0227%20193.966%2012.9829%20193.746%2012.9129C191.286%2012.1129%20188.936%2012.9626%20186.566%2013.3826C186.076%2013.4726%20185.666%2013.693%20185.236%2013.243C184.676%2012.663%20183.786%2013.5826%20183.186%2012.8826C183.166%2012.8526%20182.646%2013.1727%20182.426%2013.4027C181.096%2014.7927%20179.366%2014.7928%20177.646%2014.8128C176.946%2014.8128%20176.456%2014.3229%20175.936%2013.9329C175.506%2013.6129%20175.186%2013.4729%20174.676%2013.9129C173.796%2014.6729%20172.756%2014.7527%20171.726%2014.1927C170.986%2013.7827%20170.176%2013.7328%20169.376%2013.5828C168.106%2013.3528%20167.016%2012.9228%20167.026%2011.2928C167.026%2010.8528%20166.696%2010.3927%20166.476%209.96271C166.326%209.66271%20166.056%209.44293%20165.706%209.43293C164.496%209.39293%20163.296%209.04309%20162.086%209.59309C161.116%2010.0431%20160.026%2010.043%20158.956%2010.013C157.406%209.97301%20155.856%209.99299%20154.316%209.99299C154.076%209.99299%20153.816%209.97279%20153.586%2010.0428C150.166%2011.1228%20146.526%2011.1128%20143.116%2012.3128C141.286%2012.9528%20139.276%2013.1627%20137.506%2013.9827C136.226%2014.5727%20134.936%2014.9827%20133.566%2015.1727C132.776%2015.2727%20131.796%2015.983%20131.476%2014.493C131.446%2014.343%20130.906%2014.2527%20130.596%2014.2327C129.666%2014.1827%20128.696%2013.9931%20127.766%2014.8231C128.636%2015.1431%20129.366%2014.5127%20130.036%2014.9227C130.226%2015.0327%20130.466%2015.2229%20130.496%2015.4129C130.556%2015.7729%20130.256%2016.1531%20129.956%2016.0931C127.916%2015.7131%20126.166%2016.8326%20124.266%2017.1126C123.456%2017.2326%20122.646%2017.3229%20121.886%2017.6429C121.426%2017.8329%20120.926%2017.8529%20120.446%2017.7029C119.396%2017.3729%20118.376%2017.4528%20117.326%2017.7928C115.166%2018.4828%20113.546%2017.3828%20112.086%2016.0228C111.696%2015.6528%20111.506%2015.073%20110.986%2014.763C110.236%2014.313%20109.946%2013.5327%20109.736%2012.7327C109.616%2012.2627%20109.536%2011.773%20109.386%2011.303C109.286%2011.003%20109.186%2010.6029%20108.946%2010.4529C107.936%209.78295%20106.776%209.00269%20105.626%209.19269C102.646%209.71269%2099.6257%209.72299%2096.6357%209.99299C95.2357%2010.123%2093.9458%2010.6927%2092.5958%2010.9027C91.3358%2011.1027%2090.0058%2010.9529%2088.7158%2011.1429C87.9758%2011.2529%2087.3258%2011.5829%2086.6558%2011.8929C86.3458%2012.0329%2085.9757%2012.083%2085.7757%2011.763C85.3657%2011.133%2085.0357%2011.313%2084.6457%2011.763C84.0957%2012.393%2083.3657%2012.7727%2082.6457%2013.1527C82.4357%2013.2627%2082.2057%2013.3729%2081.9658%2013.4329C81.6558%2013.5129%2081.2758%2013.573%2081.1058%2013.243C81.0358%2013.103%2081.2358%2012.8229%2081.2858%2012.6029C81.3158%2012.4629%2081.3457%2012.2429%2081.2657%2012.1829C81.1757%2012.1029%2080.9257%2012.0729%2080.8357%2012.1429C80.4457%2012.4329%2080.0158%2012.7131%2079.7458%2013.0931C78.6958%2014.5831%2077.2658%2014.4829%2075.7858%2014.1029C74.8258%2013.8529%2074.0458%2013.2128%2073.3458%2012.5228C72.9858%2012.1628%2072.7858%2011.7027%2072.8158%2011.1927C72.9558%209.29269%2071.7758%208.38301%2070.2458%207.76301C69.3558%207.40301%2068.3158%207.32295%2067.9158%206.20295C67.8358%205.97295%2067.5257%205.94279%2067.2657%206.04279C65.6157%206.67279%2063.8757%205.97287%2062.2057%206.37287C62.0157%206.42287%2061.7358%206.24285%2061.5558%206.10285C61.2058%205.82285%2060.9058%205.67297%2060.4858%205.97297C60.2258%206.15297%2059.8858%206.36309%2059.5958%206.34309C56.9258%206.16309%2054.5758%207.64277%2051.9758%207.77277C50.1458%207.86277%2048.5258%208.78295%2046.9058%209.45295C45.3658%2010.0929%2043.5558%2010.273%2042.2858%2011.553C42.2358%2011.603%2042.1458%2011.6527%2042.0658%2011.6527C40.3558%2011.6427%2039.2857%2012.873%2038.0257%2013.723C37.2757%2014.233%2036.4758%2014.6229%2035.6158%2014.8929C35.0558%2015.0729%2034.4958%2015.0831%2033.9458%2014.8431C32.8458%2014.3631%2031.8658%2013.6827%2031.8158%2012.4027C31.7658%2011.1327%2032.2858%2010.0128%2033.4458%209.31281C33.9258%209.02281%2034.5457%208.96269%2034.8857%208.44269C35.0957%208.12269%2035.0558%207.82283%2034.7558%207.58283C34.2758%207.19283%2033.6858%207.16271%2033.1258%207.21271C31.9858%207.30271%2030.8358%207.36262%2029.7258%207.61262C27.7458%208.05262%2025.8058%208.71262%2023.8158%209.11262C21.4858%209.57262%2019.2357%2010.1729%2017.2057%2011.4529C13.8557%2012.1029%2011.1558%2014.2527%208.03576%2015.4227C7.73576%2015.5327%207.42574%2015.7029%207.20574%2015.9329C6.33574%2016.8429%205.23574%2017.3529%204.13574%2017.8929C3.56574%2018.1729%203.09576%2018.6631%202.59576%2019.0731C2.19576%2019.4031%201.76574%2019.6228%201.26574%2019.3128C0.715741%2018.9728%200.0957918%2018.6527%200.0057918%2017.9227C-0.0242082%2017.7027%200.0657942%2017.423%200.195794%2017.243C0.525794%2016.783%200.82576%2016.2127%201.28576%2015.9427C3.16576%2014.8227%204.79574%2013.2527%207.01574%2012.7327C8.87574%2012.2927%2010.5257%2011.4631%2011.8857%2010.0731C12.5257%209.42307%2013.2457%209.00277%2014.2657%209.02277C15.6257%209.05277%2016.7458%208.27277%2017.8058%207.52277C18.6358%206.92277%2019.4258%206.44291%2020.4958%206.66291C21.1058%206.78291%2021.6458%206.55285%2022.0358%206.10285C22.9558%205.03285%2023.8158%205.25285%2024.7458%206.10285C25.1258%206.45285%2025.5058%206.40301%2025.5358%205.76301C25.5658%205.25301%2025.9258%205.05303%2026.3458%205.03303C27.3258%204.98303%2028.3058%205.03295%2029.2758%204.95295C30.3258%204.86295%2031.3757%204.47305%2032.3957%204.55305C33.3257%204.63305%2034.1858%205.28281%2035.2258%205.06281C35.5058%205.00281%2035.8857%205.15307%2036.1357%205.32307C37.6457%206.34307%2038.1058%208.16283%2037.3158%209.83283C37.1758%2010.1228%2037.0258%2010.4026%2036.9058%2010.6326C37.2158%2011.1326%2037.5258%2010.8928%2037.7858%2010.7528C38.2158%2010.5228%2038.7158%2010.333%2039.0358%209.99299C40.6358%208.23299%2042.9057%207.62279%2044.8957%206.54279C45.4357%206.25279%2045.9657%206.21271%2046.4557%206.71271C46.8157%207.07271%2047.2057%206.96264%2047.5157%206.63264C47.8557%206.28264%2048.1258%205.86277%2048.4758%205.52277C49.0858%204.95277%2049.7158%204.39287%2050.5958%205.12287C50.8858%205.36287%2051.2158%205.23303%2051.4958%205.03303C52.3158%204.43303%2053.3458%204.39275%2054.2258%204.00275C55.3358%203.50275%2056.3458%203.28289%2057.4058%204.14289C57.8258%204.48289%2058.3658%204.27268%2058.7458%203.92268C59.5158%203.23268%2060.3057%203.16266%2061.2057%203.65266C61.9157%204.03266%2062.6257%203.82279%2063.3257%203.54279C64.2857%203.17279%2065.2558%203.10289%2066.0658%203.89289C66.5158%204.32289%2067.0357%204.44293%2067.6357%204.43293C68.8057%204.40293%2069.8657%204.88295%2070.9557%205.20295C72.6157%205.70295%2073.8058%206.73305%2074.5458%208.30305C74.9258%209.11305%2075.2757%209.94266%2076.1357%2010.4027C76.5457%2010.6227%2077.1358%2010.8129%2076.9858%2011.4329C76.8758%2011.8829%2076.3158%2011.833%2075.9658%2012.013C75.7357%2012.133%2075.5458%2012.3528%2075.7158%2012.5828C75.8358%2012.7428%2076.1257%2012.8729%2076.3357%2012.8729C77.0557%2012.8729%2077.6058%2012.4731%2077.8458%2011.8231C78.2558%2010.6931%2079.1458%2010.2129%2080.1858%209.85285C80.8758%209.61285%2081.5557%209.32301%2082.2158%209.01301C82.9758%208.65301%2083.7258%208.39289%2084.5658%208.64289C85.3358%208.87289%2086.0258%208.68277%2086.6658%208.27277C88.2858%207.21277%2090.0158%206.62262%2091.9858%206.86262C92.6358%206.94262%2093.2758%206.74268%2093.8658%206.42268C94.2958%206.19268%2094.7458%205.86309%2095.1958%205.84309C97.3658%205.76309%2099.5458%205.49307%20101.866%205.82307C101.526%206.66307%20100.776%206.63297%20100.286%206.97297C100.076%207.12297%2099.8658%207.32303%20100.056%207.53303C100.186%207.67303%20100.546%207.76293%20100.706%207.68293C101.356%207.35293%20101.966%206.95305%20102.586%206.55305C104.376%205.39305%20106.616%205.49309%20108.246%206.84309C108.746%207.25309%20109.196%207.74287%20109.716%208.12287C110.776%208.90287%20111.306%209.95299%20111.396%2011.243C111.426%2011.653%20111.416%2012.0627%20111.466%2012.4627C111.566%2013.1727%20111.846%2013.523%20112.566%2013.493C113.506%2013.453%20114.316%2013.8226%20115.166%2014.1126C116.196%2014.4626%20117.216%2014.5228%20118.296%2014.2728C119.566%2013.9828%20120.856%2013.7926%20122.146%2013.6126C122.656%2013.5426%20123.056%2013.7528%20123.256%2014.3328C123.566%2015.2228%20123.676%2015.243%20124.186%2014.763C124.426%2014.543%20124.716%2014.3431%20124.876%2014.0731C126.046%2012.0031%20128.056%2011.8731%20129.996%2012.0931C130.926%2012.1931%20131.506%2012.093%20132.166%2011.533C133.006%2010.823%20134.116%2010.7527%20135.136%2010.4627C136.306%2010.1227%20137.586%2010.1931%20138.686%209.59309C139.516%209.14309%20140.476%2010.0228%20141.266%209.31281C141.956%208.70281%20142.806%208.39309%20143.646%208.09309C144.256%207.87309%20144.906%207.54283%20145.516%207.58283C147.206%207.69283%20148.706%206.98285%20150.276%206.60285C151.296%206.35285%20152.226%205.78287%20153.326%206.37287C153.596%206.52287%20154.096%206.27293%20154.486%206.18293C156.146%205.78293%20157.806%205.35297%20159.476%204.97297C159.866%204.88297%20160.296%204.88269%20160.686%204.94269C161.276%205.03269%20161.746%205.33268%20161.996%205.92268C162.136%206.25268%20161.936%206.84309%20162.526%206.84309C162.896%206.84309%20162.846%206.31287%20163.076%206.12287C163.756%205.55287%20165.896%205.53291%20166.506%206.16291C167.176%206.86291%20167.996%207.42309%20168.446%208.34309C169.166%209.83309%20170.466%2010.3927%20172.046%2010.4227C172.206%2010.4227%20172.376%2010.4627%20172.536%2010.4427C175.616%2010.0727%20178.706%2010.1031%20181.796%2010.3231C182.266%2010.3531%20182.776%2010.203%20183.216%2010.013C184.366%209.51301%20185.556%209.38277%20186.786%209.27277C188.726%209.09277%20190.676%208.86283%20192.606%208.58283C193.856%208.40283%20195.036%208.30301%20196.046%209.26301C196.376%209.57301%20196.866%209.61305%20197.166%209.30305C199.076%207.29305%20201.576%207.59277%20203.976%207.52277C204.296%207.52277%20204.616%207.63291%20204.946%207.66291C205.186%207.68291%20205.536%207.75287%20205.646%207.62287C206.916%206.21287%20208.666%206.82307%20210.176%206.32307L210.226%206.24299ZM115.796%2015.6429C115.836%2015.3629%20115.686%2015.1729%20115.426%2015.1829C115.206%2015.1929%20114.976%2015.3029%20114.796%2015.4329C114.596%2015.5729%20114.516%2015.8228%20114.696%2016.0228C114.776%2016.1228%20114.966%2016.1729%20115.106%2016.1629C115.426%2016.1329%20115.686%2015.9629%20115.796%2015.6429ZM91.3257%208.94269C91.0657%208.99269%2090.9158%209.15291%2090.9758%209.41291C91.0358%209.65291%2091.2258%209.80277%2091.4858%209.77277C91.7358%209.74277%2091.9058%209.57305%2091.8458%209.30305C91.7858%209.05305%2091.5857%208.95269%2091.3257%208.94269ZM201.636%209.29279C201.636%209.13279%20201.716%208.94285%20201.656%208.85285C201.506%208.64285%20201.246%208.55295%20201.026%208.70295C200.786%208.86295%20200.796%209.12305%20201.006%209.30305C201.206%209.47305%20201.446%209.45305%20201.646%209.30305L201.636%209.29279ZM193.806%2010.1126C193.706%2010.0126%20193.606%209.85283%20193.496%209.83283C193.366%209.81283%20193.116%209.90273%20193.096%209.98273C193.026%2010.2727%20193.236%2010.4129%20193.496%2010.3929C193.606%2010.3829%20193.706%2010.2129%20193.806%2010.1029V10.1126Z%22%20fill%3D%22%23F2A684%22%2F%3E%0A%3Cpath%20d%3D%22M219.836%207.92272C219.756%208.05272%20219.696%208.23286%20219.576%208.31286C219.466%208.38286%20219.216%208.4129%20219.166%208.3529C218.986%208.1429%20219.076%207.89276%20219.246%207.71276C219.346%207.61276%20219.526%207.53284%20219.656%207.54284C219.836%207.56284%20219.896%207.73272%20219.836%207.92272Z%22%20fill%3D%22%23F2A684%22%2F%3E%0A%3Cpath%20d%3D%22M60.2958%2019.8231C60.1758%2019.9031%2060.0559%2020.0528%2059.9459%2020.0428C59.6759%2020.0028%2059.5858%2019.7931%2059.7358%2019.5731C59.7958%2019.4831%2060.0158%2019.4427%2060.1258%2019.4827C60.2158%2019.5227%2060.2458%2019.7028%2060.2958%2019.8328V19.8231Z%22%20fill%3D%22%23F2A684%22%2F%3E%0A%3Cpath%20d%3D%22M43.006%200.0133468C43.186%200.0733468%2043.266%200.203171%2043.156%200.333171C43.076%200.433171%2042.896%200.503093%2042.776%200.503093C42.676%200.503093%2042.486%200.333112%2042.496%200.273112C42.556%200.0131124%2042.766%20-0.0266532%2043.006%200.0133468Z%22%20fill%3D%22%23F2A684%22%2F%3E%0A%3C%2Fsvg%3E");
      background-size: 100%;
      background-repeat: no-repeat;
      width: 220px;
      height: 20px;

      @media screen and (max-width: 600px) {
        width: 180px;
        height: 16px;
      }
    }
  }

  .note {
    margin-bottom: 0;
    margin-top: 15px;
    font-weight: 400;

    @media screen and (min-width: 601px) {
      text-align: right;
    }
  }
}

.point-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;

  @media screen and (max-width: 850px) {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-inline: auto;
  }
}

.point-item {
  background: #fff;
  border: 1px solid #c7b299;
  padding: 30px;
  display: flex;
  flex-direction: column;
  .title {
    display: flex;
    column-gap: 15px;
    margin-bottom: 25px;
    position: relative;
    align-items: center;

    @media screen and (max-width: 850px) {
      margin-bottom: 20px;
    }
  }

  .title-text {
    color: #c2584a;
    font-size: clamp(22px, 19.5px + 0.625vw, 27px);
    font-weight: 700;
  }

  .num {
    width: clamp(40px, 35.5px + 1.125vw, 49px);
    height: clamp(40px, 35.5px + 1.125vw, 49px);
    background: var(--c-ink-soft);
    color: #fff;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-size: clamp(25px, 22.5px + 0.625vw, 30px);
    font-weight: 500;
    line-height: 1;
  }

  p {
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    font-weight: 500;
    margin-bottom: clamp(18px, 4.5vw, 54px);
  }

  p strong {
    color: #c2584a;
  }

  .point-image {
    margin-top: auto;

    @media screen and (max-width: 850px) {
      margin-top: 0;
    }
    img {
      margin-inline: auto;
    }
  }
}

/* =========================================
   Cert label
   ========================================= */
.cert {
  max-width: 1006px;
  margin: 93px auto 0;
  border: 7px solid var(--c-teal);
  padding: 38px 31px 58px;
  display: grid;
  grid-template-columns: 304px 1fr;
  gap: 25px;
  align-items: center;
  background: var(--c-bg);
  position: relative;

  @media screen and (max-width: 850px) {
    margin-top: 123px;
    display: block;
    max-width: 550px;
    padding: min(210px, calc(70vw - 112px)) 24px 22px;

    .cert-labels {
      position: absolute;
      left: 0;
      right: 0;
      max-width: 400px;
      margin-inline: auto;
      top: -80px;
    }
  }
}
.cert h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 30px;

  @media screen and (max-width: 850px) {
    text-align: center;
    margin-bottom: 18px;
  }

  @media screen and (max-width: 400px) {
    font-size: 22px;
  }
}
.cert p {
  font-size: 16px;
  line-height: 2;
  margin: 0;
  color: var(--c-ink-soft);

  @media screen and (max-width: 400px) {
    font-size: 12px;
  }
}

/* =========================================
   Flow
   ========================================= */
.flow {
  padding: 81px 0 139px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 0;

  @media screen and (max-width: 850px) {
    padding-top: 49px;
    padding-bottom: 71px;
  }

  &::after {
    content: "";
    background: url("../../img/lp/bg-decoration_image.png") center/cover no-repeat;
    opacity: 0.57;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .section-title {
    margin-bottom: 48px;
    &::after {
      content: "";
      background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22220%22%20height%3D%2221%22%20viewBox%3D%220%200%20220%2021%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M210.226%206.24299C210.326%206.93299%20209.776%207.01283%20209.576%207.33283C209.446%207.55283%20209.316%207.80273%20209.526%207.98273C209.696%208.12273%20209.966%208.15268%20210.196%208.17268C210.346%208.18268%20210.546%208.13279%20210.656%208.04279C212.166%206.78279%20214.006%206.48301%20215.866%206.26301C216.406%206.20301%20216.916%205.74295%20217.576%206.20295C217.296%207.43295%20216.806%208.42268%20215.346%208.67268C214.626%208.79268%20213.946%209.11281%20213.246%209.31281C212.696%209.46281%20212.116%209.72289%20211.586%209.64289C210.426%209.47289%20209.326%209.55273%20208.246%209.98273C206.186%209.55273%20204.446%2010.6829%20202.576%2011.1629C201.696%2011.3929%20200.916%2011.7228%20199.996%2011.2928C199.536%2011.0728%20199.016%2011.2731%20198.616%2011.5931C197.406%2012.5831%20195.826%2012.4027%20194.466%2012.9427C194.256%2013.0227%20193.966%2012.9829%20193.746%2012.9129C191.286%2012.1129%20188.936%2012.9626%20186.566%2013.3826C186.076%2013.4726%20185.666%2013.693%20185.236%2013.243C184.676%2012.663%20183.786%2013.5826%20183.186%2012.8826C183.166%2012.8526%20182.646%2013.1727%20182.426%2013.4027C181.096%2014.7927%20179.366%2014.7928%20177.646%2014.8128C176.946%2014.8128%20176.456%2014.3229%20175.936%2013.9329C175.506%2013.6129%20175.186%2013.4729%20174.676%2013.9129C173.796%2014.6729%20172.756%2014.7527%20171.726%2014.1927C170.986%2013.7827%20170.176%2013.7328%20169.376%2013.5828C168.106%2013.3528%20167.016%2012.9228%20167.026%2011.2928C167.026%2010.8528%20166.696%2010.3927%20166.476%209.96271C166.326%209.66271%20166.056%209.44293%20165.706%209.43293C164.496%209.39293%20163.296%209.04309%20162.086%209.59309C161.116%2010.0431%20160.026%2010.043%20158.956%2010.013C157.406%209.97301%20155.856%209.99299%20154.316%209.99299C154.076%209.99299%20153.816%209.97279%20153.586%2010.0428C150.166%2011.1228%20146.526%2011.1128%20143.116%2012.3128C141.286%2012.9528%20139.276%2013.1627%20137.506%2013.9827C136.226%2014.5727%20134.936%2014.9827%20133.566%2015.1727C132.776%2015.2727%20131.796%2015.983%20131.476%2014.493C131.446%2014.343%20130.906%2014.2527%20130.596%2014.2327C129.666%2014.1827%20128.696%2013.9931%20127.766%2014.8231C128.636%2015.1431%20129.366%2014.5127%20130.036%2014.9227C130.226%2015.0327%20130.466%2015.2229%20130.496%2015.4129C130.556%2015.7729%20130.256%2016.1531%20129.956%2016.0931C127.916%2015.7131%20126.166%2016.8326%20124.266%2017.1126C123.456%2017.2326%20122.646%2017.3229%20121.886%2017.6429C121.426%2017.8329%20120.926%2017.8529%20120.446%2017.7029C119.396%2017.3729%20118.376%2017.4528%20117.326%2017.7928C115.166%2018.4828%20113.546%2017.3828%20112.086%2016.0228C111.696%2015.6528%20111.506%2015.073%20110.986%2014.763C110.236%2014.313%20109.946%2013.5327%20109.736%2012.7327C109.616%2012.2627%20109.536%2011.773%20109.386%2011.303C109.286%2011.003%20109.186%2010.6029%20108.946%2010.4529C107.936%209.78295%20106.776%209.00269%20105.626%209.19269C102.646%209.71269%2099.6257%209.72299%2096.6357%209.99299C95.2357%2010.123%2093.9458%2010.6927%2092.5958%2010.9027C91.3358%2011.1027%2090.0058%2010.9529%2088.7158%2011.1429C87.9758%2011.2529%2087.3258%2011.5829%2086.6558%2011.8929C86.3458%2012.0329%2085.9757%2012.083%2085.7757%2011.763C85.3657%2011.133%2085.0357%2011.313%2084.6457%2011.763C84.0957%2012.393%2083.3657%2012.7727%2082.6457%2013.1527C82.4357%2013.2627%2082.2057%2013.3729%2081.9658%2013.4329C81.6558%2013.5129%2081.2758%2013.573%2081.1058%2013.243C81.0358%2013.103%2081.2358%2012.8229%2081.2858%2012.6029C81.3158%2012.4629%2081.3457%2012.2429%2081.2657%2012.1829C81.1757%2012.1029%2080.9257%2012.0729%2080.8357%2012.1429C80.4457%2012.4329%2080.0158%2012.7131%2079.7458%2013.0931C78.6958%2014.5831%2077.2658%2014.4829%2075.7858%2014.1029C74.8258%2013.8529%2074.0458%2013.2128%2073.3458%2012.5228C72.9858%2012.1628%2072.7858%2011.7027%2072.8158%2011.1927C72.9558%209.29269%2071.7758%208.38301%2070.2458%207.76301C69.3558%207.40301%2068.3158%207.32295%2067.9158%206.20295C67.8358%205.97295%2067.5257%205.94279%2067.2657%206.04279C65.6157%206.67279%2063.8757%205.97287%2062.2057%206.37287C62.0157%206.42287%2061.7358%206.24285%2061.5558%206.10285C61.2058%205.82285%2060.9058%205.67297%2060.4858%205.97297C60.2258%206.15297%2059.8858%206.36309%2059.5958%206.34309C56.9258%206.16309%2054.5758%207.64277%2051.9758%207.77277C50.1458%207.86277%2048.5258%208.78295%2046.9058%209.45295C45.3658%2010.0929%2043.5558%2010.273%2042.2858%2011.553C42.2358%2011.603%2042.1458%2011.6527%2042.0658%2011.6527C40.3558%2011.6427%2039.2857%2012.873%2038.0257%2013.723C37.2757%2014.233%2036.4758%2014.6229%2035.6158%2014.8929C35.0558%2015.0729%2034.4958%2015.0831%2033.9458%2014.8431C32.8458%2014.3631%2031.8658%2013.6827%2031.8158%2012.4027C31.7658%2011.1327%2032.2858%2010.0128%2033.4458%209.31281C33.9258%209.02281%2034.5457%208.96269%2034.8857%208.44269C35.0957%208.12269%2035.0558%207.82283%2034.7558%207.58283C34.2758%207.19283%2033.6858%207.16271%2033.1258%207.21271C31.9858%207.30271%2030.8358%207.36262%2029.7258%207.61262C27.7458%208.05262%2025.8058%208.71262%2023.8158%209.11262C21.4858%209.57262%2019.2357%2010.1729%2017.2057%2011.4529C13.8557%2012.1029%2011.1558%2014.2527%208.03576%2015.4227C7.73576%2015.5327%207.42574%2015.7029%207.20574%2015.9329C6.33574%2016.8429%205.23574%2017.3529%204.13574%2017.8929C3.56574%2018.1729%203.09576%2018.6631%202.59576%2019.0731C2.19576%2019.4031%201.76574%2019.6228%201.26574%2019.3128C0.715741%2018.9728%200.0957918%2018.6527%200.0057918%2017.9227C-0.0242082%2017.7027%200.0657942%2017.423%200.195794%2017.243C0.525794%2016.783%200.82576%2016.2127%201.28576%2015.9427C3.16576%2014.8227%204.79574%2013.2527%207.01574%2012.7327C8.87574%2012.2927%2010.5257%2011.4631%2011.8857%2010.0731C12.5257%209.42307%2013.2457%209.00277%2014.2657%209.02277C15.6257%209.05277%2016.7458%208.27277%2017.8058%207.52277C18.6358%206.92277%2019.4258%206.44291%2020.4958%206.66291C21.1058%206.78291%2021.6458%206.55285%2022.0358%206.10285C22.9558%205.03285%2023.8158%205.25285%2024.7458%206.10285C25.1258%206.45285%2025.5058%206.40301%2025.5358%205.76301C25.5658%205.25301%2025.9258%205.05303%2026.3458%205.03303C27.3258%204.98303%2028.3058%205.03295%2029.2758%204.95295C30.3258%204.86295%2031.3757%204.47305%2032.3957%204.55305C33.3257%204.63305%2034.1858%205.28281%2035.2258%205.06281C35.5058%205.00281%2035.8857%205.15307%2036.1357%205.32307C37.6457%206.34307%2038.1058%208.16283%2037.3158%209.83283C37.1758%2010.1228%2037.0258%2010.4026%2036.9058%2010.6326C37.2158%2011.1326%2037.5258%2010.8928%2037.7858%2010.7528C38.2158%2010.5228%2038.7158%2010.333%2039.0358%209.99299C40.6358%208.23299%2042.9057%207.62279%2044.8957%206.54279C45.4357%206.25279%2045.9657%206.21271%2046.4557%206.71271C46.8157%207.07271%2047.2057%206.96264%2047.5157%206.63264C47.8557%206.28264%2048.1258%205.86277%2048.4758%205.52277C49.0858%204.95277%2049.7158%204.39287%2050.5958%205.12287C50.8858%205.36287%2051.2158%205.23303%2051.4958%205.03303C52.3158%204.43303%2053.3458%204.39275%2054.2258%204.00275C55.3358%203.50275%2056.3458%203.28289%2057.4058%204.14289C57.8258%204.48289%2058.3658%204.27268%2058.7458%203.92268C59.5158%203.23268%2060.3057%203.16266%2061.2057%203.65266C61.9157%204.03266%2062.6257%203.82279%2063.3257%203.54279C64.2857%203.17279%2065.2558%203.10289%2066.0658%203.89289C66.5158%204.32289%2067.0357%204.44293%2067.6357%204.43293C68.8057%204.40293%2069.8657%204.88295%2070.9557%205.20295C72.6157%205.70295%2073.8058%206.73305%2074.5458%208.30305C74.9258%209.11305%2075.2757%209.94266%2076.1357%2010.4027C76.5457%2010.6227%2077.1358%2010.8129%2076.9858%2011.4329C76.8758%2011.8829%2076.3158%2011.833%2075.9658%2012.013C75.7357%2012.133%2075.5458%2012.3528%2075.7158%2012.5828C75.8358%2012.7428%2076.1257%2012.8729%2076.3357%2012.8729C77.0557%2012.8729%2077.6058%2012.4731%2077.8458%2011.8231C78.2558%2010.6931%2079.1458%2010.2129%2080.1858%209.85285C80.8758%209.61285%2081.5557%209.32301%2082.2158%209.01301C82.9758%208.65301%2083.7258%208.39289%2084.5658%208.64289C85.3358%208.87289%2086.0258%208.68277%2086.6658%208.27277C88.2858%207.21277%2090.0158%206.62262%2091.9858%206.86262C92.6358%206.94262%2093.2758%206.74268%2093.8658%206.42268C94.2958%206.19268%2094.7458%205.86309%2095.1958%205.84309C97.3658%205.76309%2099.5458%205.49307%20101.866%205.82307C101.526%206.66307%20100.776%206.63297%20100.286%206.97297C100.076%207.12297%2099.8658%207.32303%20100.056%207.53303C100.186%207.67303%20100.546%207.76293%20100.706%207.68293C101.356%207.35293%20101.966%206.95305%20102.586%206.55305C104.376%205.39305%20106.616%205.49309%20108.246%206.84309C108.746%207.25309%20109.196%207.74287%20109.716%208.12287C110.776%208.90287%20111.306%209.95299%20111.396%2011.243C111.426%2011.653%20111.416%2012.0627%20111.466%2012.4627C111.566%2013.1727%20111.846%2013.523%20112.566%2013.493C113.506%2013.453%20114.316%2013.8226%20115.166%2014.1126C116.196%2014.4626%20117.216%2014.5228%20118.296%2014.2728C119.566%2013.9828%20120.856%2013.7926%20122.146%2013.6126C122.656%2013.5426%20123.056%2013.7528%20123.256%2014.3328C123.566%2015.2228%20123.676%2015.243%20124.186%2014.763C124.426%2014.543%20124.716%2014.3431%20124.876%2014.0731C126.046%2012.0031%20128.056%2011.8731%20129.996%2012.0931C130.926%2012.1931%20131.506%2012.093%20132.166%2011.533C133.006%2010.823%20134.116%2010.7527%20135.136%2010.4627C136.306%2010.1227%20137.586%2010.1931%20138.686%209.59309C139.516%209.14309%20140.476%2010.0228%20141.266%209.31281C141.956%208.70281%20142.806%208.39309%20143.646%208.09309C144.256%207.87309%20144.906%207.54283%20145.516%207.58283C147.206%207.69283%20148.706%206.98285%20150.276%206.60285C151.296%206.35285%20152.226%205.78287%20153.326%206.37287C153.596%206.52287%20154.096%206.27293%20154.486%206.18293C156.146%205.78293%20157.806%205.35297%20159.476%204.97297C159.866%204.88297%20160.296%204.88269%20160.686%204.94269C161.276%205.03269%20161.746%205.33268%20161.996%205.92268C162.136%206.25268%20161.936%206.84309%20162.526%206.84309C162.896%206.84309%20162.846%206.31287%20163.076%206.12287C163.756%205.55287%20165.896%205.53291%20166.506%206.16291C167.176%206.86291%20167.996%207.42309%20168.446%208.34309C169.166%209.83309%20170.466%2010.3927%20172.046%2010.4227C172.206%2010.4227%20172.376%2010.4627%20172.536%2010.4427C175.616%2010.0727%20178.706%2010.1031%20181.796%2010.3231C182.266%2010.3531%20182.776%2010.203%20183.216%2010.013C184.366%209.51301%20185.556%209.38277%20186.786%209.27277C188.726%209.09277%20190.676%208.86283%20192.606%208.58283C193.856%208.40283%20195.036%208.30301%20196.046%209.26301C196.376%209.57301%20196.866%209.61305%20197.166%209.30305C199.076%207.29305%20201.576%207.59277%20203.976%207.52277C204.296%207.52277%20204.616%207.63291%20204.946%207.66291C205.186%207.68291%20205.536%207.75287%20205.646%207.62287C206.916%206.21287%20208.666%206.82307%20210.176%206.32307L210.226%206.24299ZM115.796%2015.6429C115.836%2015.3629%20115.686%2015.1729%20115.426%2015.1829C115.206%2015.1929%20114.976%2015.3029%20114.796%2015.4329C114.596%2015.5729%20114.516%2015.8228%20114.696%2016.0228C114.776%2016.1228%20114.966%2016.1729%20115.106%2016.1629C115.426%2016.1329%20115.686%2015.9629%20115.796%2015.6429ZM91.3257%208.94269C91.0657%208.99269%2090.9158%209.15291%2090.9758%209.41291C91.0358%209.65291%2091.2258%209.80277%2091.4858%209.77277C91.7358%209.74277%2091.9058%209.57305%2091.8458%209.30305C91.7858%209.05305%2091.5857%208.95269%2091.3257%208.94269ZM201.636%209.29279C201.636%209.13279%20201.716%208.94285%20201.656%208.85285C201.506%208.64285%20201.246%208.55295%20201.026%208.70295C200.786%208.86295%20200.796%209.12305%20201.006%209.30305C201.206%209.47305%20201.446%209.45305%20201.646%209.30305L201.636%209.29279ZM193.806%2010.1126C193.706%2010.0126%20193.606%209.85283%20193.496%209.83283C193.366%209.81283%20193.116%209.90273%20193.096%209.98273C193.026%2010.2727%20193.236%2010.4129%20193.496%2010.3929C193.606%2010.3829%20193.706%2010.2129%20193.806%2010.1029V10.1126Z%22%20fill%3D%22%23F2A684%22%2F%3E%0A%3Cpath%20d%3D%22M219.836%207.92272C219.756%208.05272%20219.696%208.23286%20219.576%208.31286C219.466%208.38286%20219.216%208.4129%20219.166%208.3529C218.986%208.1429%20219.076%207.89276%20219.246%207.71276C219.346%207.61276%20219.526%207.53284%20219.656%207.54284C219.836%207.56284%20219.896%207.73272%20219.836%207.92272Z%22%20fill%3D%22%23F2A684%22%2F%3E%0A%3Cpath%20d%3D%22M60.2958%2019.8231C60.1758%2019.9031%2060.0559%2020.0528%2059.9459%2020.0428C59.6759%2020.0028%2059.5858%2019.7931%2059.7358%2019.5731C59.7958%2019.4831%2060.0158%2019.4427%2060.1258%2019.4827C60.2158%2019.5227%2060.2458%2019.7028%2060.2958%2019.8328V19.8231Z%22%20fill%3D%22%23F2A684%22%2F%3E%0A%3Cpath%20d%3D%22M43.006%200.0133468C43.186%200.0733468%2043.266%200.203171%2043.156%200.333171C43.076%200.433171%2042.896%200.503093%2042.776%200.503093C42.676%200.503093%2042.486%200.333112%2042.496%200.273112C42.556%200.0131124%2042.766%20-0.0266532%2043.006%200.0133468Z%22%20fill%3D%22%23F2A684%22%2F%3E%0A%3C%2Fsvg%3E");
      background-size: 100%;
      background-repeat: no-repeat;
      width: 220px;
      height: 20px;

      @media screen and (max-width: 600px) {
        width: 180px;
        height: 16px;
      }
    }
  }
}
.flow .container {
  max-width: 860px;
}
.flow-step {
  position: relative;
  background: #fff;
  padding: 50px 31px 30px;
  text-align: left;
  margin-top: 59px;
  border: 1px solid #736357;

  &:first-of-type {
    margin-top: 0;
  }

  @media screen and (max-width: 850px) {
    padding: 45px 22px 19px;
  }
}
.flow-step .num-circle {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 54px;
  background: var(--c-ink-soft);
  color: #fff;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}
.flow-step h3 {
  font-family: var(--serif);
  color: var(--c-terracotta);
  font-weight: 500;
  text-align: center;
  font-size: 25px;
  margin-bottom: 25px;

  @media screen and (max-width: 400px) {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.flow-step p {
  line-height: 2.4;
  color: var(--c-ink-soft);
  margin-bottom: 32px;

  &:last-of-type {
    margin-bottom: 0;
  }

  @media screen and (max-width: 400px) {
    font-size: 13px;
  }
}
.flow-step strong {
  font-weight: 700;
}
.flow-step a {
  color: #c2584a;
  font-weight: 700;
}
.flow-arrow {
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 24px solid #bc695b;
  margin: 38px auto 0;
}

/* =========================================
   FAQ
   ========================================= */
.faq {
  background: var(--c-terracotta);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}
.faq-title {
  position: relative;
  margin-bottom: 46px;
  display: flex;
  justify-content: center;

  @media screen and (max-width: 850px) {
    max-width: 250px;
    margin-inline: auto;
  }
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: left;
}
.faq-item summary {
  list-style: none;
  background: #f4e9e4;
  color: var(--c-ink-soft);
  padding: 22px 19px;
  display: grid;
  grid-template-columns: 55px 1fr auto;
  align-items: center;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  gap: 0 23px;
  user-select: none;

  @media screen and (max-width: 850px) {
    column-gap: 13px;
  }

  @media screen and (max-width: 400px) {
    font-size: 12px;
    column-gap: 6px;
    grid-template-columns: 26px 1fr auto;
    padding: 11px 15px;
  }
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary .q {
  color: var(--c-terracotta);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.12em;
  line-height: 1;

  @media screen and (max-width: 400px) {
    font-size: 15px;
  }
}
.faq-item summary .arrow {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid #808080;
  transition: transform 0.25s ease;
}
.faq-item[open] summary .arrow {
  transform: rotate(180deg);
}
.faq-item .answer {
  border: 1px solid #fff;
  padding: 22px 19px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 23px;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 21px;
  font-weight: 700;
  line-height: 2;

  @media screen and (max-width: 850px) {
    column-gap: 13px;
    grid-template-columns: 55px 1fr;
  }

  @media screen and (max-width: 400px) {
    font-size: 12px;
    column-gap: 6px;
    grid-template-columns: 26px 1fr auto;
    padding: 11px 15px;
    margin-top: 17px;
    margin-bottom: 13px;
  }
}
.faq-item .answer .a {
  color: #edd795;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.12em;
  line-height: 1;
  @media screen and (max-width: 400px) {
    font-size: 15px;
  }
}
.faq-item .answer ul,
.faq-item .answer p {
  margin: 0;
  line-height: 1.95;

  @media screen and (max-width: 400px) {
    font-size: 12px;
  }
}

.faq-item .answer p + p {
  margin-top: 16px;
}

.faq-item .answer p + ul {
  margin-top: 24px;
}

.faq-item .answer a {
  color: #edd795;
  text-decoration: underline;

  @media screen and (min-width: 851px) {
    &:hover {
      color: #edd795;
      text-decoration: none;
    }
  }
}

.dot-list li {
  list-style-type: disc;
  margin-left: 1.2em;
}

/* =========================================
   Closing CTA
   ========================================= */
.closing-hero {
  position: relative;
  min-height: clamp(343px, 100vw, 635px);
  background: url("../../img/lp/bg_message.jpg?v=2") top/cover no-repeat;
  display: grid;
  place-items: center;
  color: #fff;
}
.closing-hero h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 24.84px + 1.29vw, 40px);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  margin: 0;
}
.closing h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 14.84px + 1.29vw, 30px);
  margin-bottom: 57px;
  color: var(--c-ink-soft);

  @media screen and (max-width: 850px) {
    margin-bottom: 32px;
  }
}
.closing-btns {
  display: block;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;

  @media screen and (max-width: 850px) {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
}
.btn-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 18px;
  padding: 20px;
  color: #fff;
  text-align: center;
  font-family: var(--serif);
  position: relative;
  box-shadow: 0px 5.139px 5.139px rgba(0, 0, 0, 0.25);

  @media screen and (max-width: 850px) {
    padding: 16px 10px;
  }
  @media screen and (max-width: 600px) {
    padding-inline: 5px;
  }
}

@media screen and (min-width: 851px) {
  .btn-block {
    transition: all 0.3s !important;
  }
  .btn-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  }
}
.btn-block.teal {
  background: #6fada5;
}
.btn-block.red {
  background: var(--c-terracotta);
}
.btn-block .lg {
  font-family: var(--serif);
  display: block;
  font-size: clamp(19px, 10.74px + 2.065vw, 35px);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.btn-block .sm {
  display: block;
  font-size: clamp(11px, 8.94px + 0.516vw, 15px);
  line-height: 2;
  font-weight: 500;
}
.btn-block::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2217%22%20height%3D%2212%22%20viewBox%3D%220%200%2017%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M8.2628%2011.3404L0%200H16.5254L8.2628%2011.3404Z%22%20fill%3D%22%23EDD795%22%2F%3E%0A%3C%2Fsvg%3E");
  background-size: auto;
  background-repeat: no-repeat;
  width: 16px;
  height: 11px;
  display: block;
}

/* =========================================
   Footer
   ========================================= */
.footer {
  text-align: center;
  padding: 74px 0 154px;
  position: relative;
  overflow: hidden;
  background-image: url("../../img/lp/bg-decoration_illsut8.svg"), url("../../img/lp/bg-decoration_illsut9.svg");
  background-size: auto;
  background-repeat: no-repeat;
  background-position:
    top 60px left,
    bottom 20% right;

  @media screen and (max-width: 850px) {
    padding-bottom: 68px;
    background-image: url("../../img/lp/bg-decoration_sp_illsut8.svg"), url("../../img/lp/bg-decoration_sp_illsut9.svg"), url("../../img/lp/bg-decoration_sp_illsut10.svg");
    background-size: auto;
    background-repeat: no-repeat;
    background-position:
      top 62px left,
      bottom 44% right,
      bottom 17% left;
  }
}
footer .closing + .logo-mark {
  margin-top: 118px;

  @media screen and (max-width: 850px) {
    margin-top: 72px;
  }
}
footer .logo-mark img {
  margin-inline: auto;
  transform: translateX(-10px);
}
footer .brand {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.6;
  color: var(--c-ink-soft);
  margin-bottom: 0;

  @media screen and (max-width: 400px) {
    margin-top: 15px;
  }
}
footer .copyright {
  margin-top: 49px;
  font-size: 10px;
  color: var(--c-ink-soft);
}
.pagetop {
  position: fixed;
  right: 30px;
  bottom: 25px;
  max-width: 55px;
  cursor: pointer;
}

/* =========================================
   Mobile MENU button & overlay
   ========================================= */
.menu-btn {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 74px;
  height: 74px;
  background: #f1ece1;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--c-ink-soft);
  font-family: var(--serif);
  letter-spacing: 0.12em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);

  @media screen and (max-width: 850px) {
    display: flex;
  }
}
.menu-btn .bars {
  display: block;
  width: 30px;
  height: 18px;
  position: relative;
}
.menu-btn .bars span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--c-ink-soft);
}
.menu-btn .bars span:nth-child(1) {
  top: 0;
}
.menu-btn .bars span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menu-btn .bars span:nth-child(3) {
  bottom: 0;
}
.menu-btn .label {
  font-size: 11px;
  letter-spacing: 0.18em;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #3a342e;
  color: #fff;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  overflow-y: auto;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.close-btn {
  align-self: flex-start;
  width: 64px;
  height: 64px;
  background: #e9e2d4;
  color: var(--c-ink-soft);
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 16px 0 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--serif);
}
.close-btn .x {
  width: 22px;
  height: 22px;
  position: relative;
}
.close-btn .x span {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--c-ink-soft);
}
.close-btn .x span:nth-child(1) {
  transform: rotate(45deg);
}
.close-btn .x span:nth-child(2) {
  transform: rotate(-45deg);
}
.close-btn .label {
  font-size: 11px;
  letter-spacing: 0.18em;
}

.mm-logo {
  display: grid;
  place-items: center;
  margin: 10px 0 30px;
}
.mm-logo .logo-mark {
  width: 140px;
  height: 140px;
  font-size: 18px;
}
.mm-logo .logo-mark small {
  font-size: 12px;
}

.mm-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 0 8%;
}
.mm-nav a {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.12em;
  color: #fff;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.mm-nav a:last-child {
  border-bottom: none;
}

.mm-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 30px;
}
.mm-cta {
  padding: 28px 12px 26px;
  color: #fff;
  text-align: center;
  font-family: var(--serif);
  letter-spacing: 0.12em;
  position: relative;
}
.mm-cta.teal {
  background: #6fa89d;
}
.mm-cta.red {
  background: var(--c-terracotta);
}
.mm-cta .lg {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}
.mm-cta .sm {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.04em;
  opacity: 0.9;
}
.mm-cta::after {
  content: "▾";
  display: block;
  font-size: 10px;
  margin-top: 8px;
  opacity: 0.8;
}

/* パンくずリスト */
.breadcrumbs {
  margin-top: 100px;
  padding-bottom: 10px;

  ol {
    display: flex;
    margin-bottom: 0;
    list-style-type: none;
    column-gap: 15px;

    li {
      position: relative;
      column-gap: 15px;
      align-items: center;

      &:not(:last-child) {
        display: flex;
        column-gap: 15px;
        &::after {
          content: "";
          width: 0;
          height: 0;
          border-top: 4px solid transparent;
          border-bottom: 4px solid transparent;
          border-left: 8px solid #bc695b;
        }
      }
    }

    a {
      color: #bc695b;

      &:hover {
        color: #bc695b;
        opacity: 0.8;
      }
    }
  }
}

/** お問い合わせフォーム **/
.page {
  .site-header {
    position: absolute;
  }

  .contact {
    padding-top: 170px;
    position: relative;
    z-index: 0;

    @media screen and (max-width: 850px) {
      padding-top: 100px;
    }

    &::after {
      content: "";
      background: url(../../img/lp/bg-decoration_image.png) center / cover no-repeat;
      opacity: 0.57;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }
    .section-title {
      margin-bottom: 60px;
      &::after {
        content: "";
        background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22220%22%20height%3D%2221%22%20viewBox%3D%220%200%20220%2021%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M210.226%206.23332C210.326%206.92332%20209.776%207.00341%20209.576%207.32341C209.446%207.54341%20209.316%207.79331%20209.526%207.97331C209.696%208.11331%20209.966%208.14325%20210.196%208.16325C210.346%208.17325%20210.546%208.12337%20210.656%208.03337C212.166%206.77337%20214.006%206.47334%20215.866%206.25334C216.406%206.19334%20216.916%205.73328%20217.576%206.19328C217.296%207.42328%20216.806%208.41325%20215.346%208.66325C214.626%208.78325%20213.946%209.10339%20213.246%209.30339C212.696%209.45339%20212.116%209.71322%20211.586%209.63322C210.426%209.46322%20209.326%209.54331%20208.246%209.97331C206.186%209.54331%20204.446%2010.6732%20202.576%2011.1532C201.696%2011.3832%20200.916%2011.7134%20199.996%2011.2834C199.536%2011.0634%20199.016%2011.2634%20198.616%2011.5834C197.406%2012.5734%20195.826%2012.3933%20194.466%2012.9333C194.256%2013.0133%20193.966%2012.9732%20193.746%2012.9032C191.286%2012.1032%20188.936%2012.9532%20186.566%2013.3732C186.076%2013.4632%20185.666%2013.6833%20185.236%2013.2333C184.676%2012.6533%20183.786%2013.5732%20183.186%2012.8732C183.166%2012.8432%20182.646%2013.1632%20182.426%2013.3932C181.096%2014.7832%20179.366%2014.7834%20177.646%2014.8034C176.946%2014.8034%20176.456%2014.3133%20175.936%2013.9233C175.506%2013.6033%20175.186%2013.4632%20174.676%2013.9032C173.796%2014.6632%20172.756%2014.7433%20171.726%2014.1833C170.986%2013.7733%20170.176%2013.7234%20169.376%2013.5734C168.106%2013.3434%20167.016%2012.9134%20167.026%2011.2834C167.026%2010.8434%20166.696%2010.3833%20166.476%209.95329C166.326%209.65329%20166.056%209.43326%20165.706%209.42326C164.496%209.38326%20163.296%209.03342%20162.086%209.58342C161.116%2010.0334%20160.026%2010.0333%20158.956%2010.0033C157.406%209.96334%20155.856%209.98332%20154.316%209.98332C154.076%209.98332%20153.816%209.96337%20153.586%2010.0334C150.166%2011.1134%20146.526%2011.1034%20143.116%2012.3034C141.286%2012.9434%20139.276%2013.1533%20137.506%2013.9733C136.226%2014.5633%20134.936%2014.9733%20133.566%2015.1633C132.776%2015.2633%20131.796%2015.9733%20131.476%2014.4833C131.446%2014.3333%20130.906%2014.2433%20130.596%2014.2233C129.666%2014.1733%20128.696%2013.9834%20127.766%2014.8134C128.636%2015.1334%20129.366%2014.5033%20130.036%2014.9133C130.226%2015.0233%20130.466%2015.2132%20130.496%2015.4032C130.556%2015.7632%20130.256%2016.1434%20129.956%2016.0834C127.916%2015.7034%20126.166%2016.8232%20124.266%2017.1032C123.456%2017.2232%20122.646%2017.3132%20121.886%2017.6332C121.426%2017.8232%20120.926%2017.8433%20120.446%2017.6933C119.396%2017.3633%20118.376%2017.4434%20117.326%2017.7834C115.166%2018.4734%20113.546%2017.3734%20112.086%2016.0134C111.696%2015.6434%20111.506%2015.0633%20110.986%2014.7533C110.236%2014.3033%20109.946%2013.5233%20109.736%2012.7233C109.616%2012.2533%20109.536%2011.7634%20109.386%2011.2934C109.286%2010.9934%20109.186%2010.5933%20108.946%2010.4433C107.936%209.77328%20106.776%208.99327%20105.626%209.18327C102.646%209.70327%2099.6257%209.71332%2096.6357%209.98332C95.2357%2010.1133%2093.9458%2010.6832%2092.5958%2010.8932C91.3358%2011.0932%2090.0058%2010.9432%2088.7158%2011.1332C87.9758%2011.2432%2087.3258%2011.5732%2086.6558%2011.8832C86.3458%2012.0232%2085.9757%2012.0733%2085.7757%2011.7533C85.3657%2011.1233%2085.0357%2011.3033%2084.6457%2011.7533C84.0957%2012.3833%2083.3657%2012.7632%2082.6457%2013.1432C82.4357%2013.2532%2082.2057%2013.3633%2081.9658%2013.4233C81.6558%2013.5033%2081.2758%2013.5633%2081.1058%2013.2333C81.0358%2013.0933%2081.2358%2012.8132%2081.2858%2012.5932C81.3158%2012.4532%2081.3457%2012.2333%2081.2657%2012.1733C81.1757%2012.0933%2080.9257%2012.0632%2080.8357%2012.1332C80.4457%2012.4232%2080.0158%2012.7034%2079.7458%2013.0834C78.6958%2014.5734%2077.2658%2014.4732%2075.7858%2014.0932C74.8258%2013.8432%2074.0458%2013.2034%2073.3458%2012.5134C72.9858%2012.1534%2072.7858%2011.6933%2072.8158%2011.1833C72.9558%209.28327%2071.7758%208.37334%2070.2458%207.75334C69.3558%207.39334%2068.3158%207.31328%2067.9158%206.19328C67.8358%205.96328%2067.5257%205.93337%2067.2657%206.03337C65.6157%206.66337%2063.8757%205.9632%2062.2057%206.3632C62.0157%206.4132%2061.7358%206.23318%2061.5558%206.09318C61.2058%205.81318%2060.9058%205.6633%2060.4858%205.9633C60.2258%206.1433%2059.8858%206.35342%2059.5958%206.33342C56.9258%206.15342%2054.5758%207.63335%2051.9758%207.76335C50.1458%207.85335%2048.5258%208.77328%2046.9058%209.44328C45.3658%2010.0833%2043.5558%2010.2634%2042.2858%2011.5434C42.2358%2011.5934%2042.1458%2011.6432%2042.0658%2011.6432C40.3558%2011.6332%2039.2857%2012.8633%2038.0257%2013.7133C37.2757%2014.2233%2036.4758%2014.6132%2035.6158%2014.8832C35.0558%2015.0632%2034.4958%2015.0734%2033.9458%2014.8334C32.8458%2014.3534%2031.8658%2013.6732%2031.8158%2012.3932C31.7658%2011.1232%2032.2858%2010.0034%2033.4458%209.30339C33.9258%209.01339%2034.5457%208.95327%2034.8857%208.43327C35.0957%208.11327%2035.0558%207.81341%2034.7558%207.57341C34.2758%207.18341%2033.6858%207.15329%2033.1258%207.20329C31.9858%207.29329%2030.8358%207.35319%2029.7258%207.60319C27.7458%208.04319%2025.8058%208.70319%2023.8158%209.10319C21.4858%209.56319%2019.2357%2010.1633%2017.2057%2011.4433C13.8557%2012.0933%2011.1558%2014.2433%208.03576%2015.4133C7.73576%2015.5233%207.42574%2015.6933%207.20574%2015.9233C6.33574%2016.8333%205.23574%2017.3432%204.13574%2017.8832C3.56574%2018.1632%203.09576%2018.6534%202.59576%2019.0634C2.19576%2019.3934%201.76574%2019.6134%201.26574%2019.3034C0.715741%2018.9634%200.0957918%2018.6433%200.0057918%2017.9133C-0.0242082%2017.6933%200.0657942%2017.4133%200.195794%2017.2333C0.525794%2016.7733%200.82576%2016.2033%201.28576%2015.9333C3.16576%2014.8133%204.79574%2013.2433%207.01574%2012.7233C8.87574%2012.2833%2010.5257%2011.4534%2011.8857%2010.0634C12.5257%209.4134%2013.2457%208.99335%2014.2657%209.01335C15.6257%209.04335%2016.7458%208.26335%2017.8058%207.51335C18.6358%206.91335%2019.4258%206.43324%2020.4958%206.65324C21.1058%206.77324%2021.6458%206.54318%2022.0358%206.09318C22.9558%205.02318%2023.8158%205.24318%2024.7458%206.09318C25.1258%206.44318%2025.5058%206.39334%2025.5358%205.75334C25.5658%205.24334%2025.9258%205.04336%2026.3458%205.02336C27.3258%204.97336%2028.3058%205.02328%2029.2758%204.94328C30.3258%204.85328%2031.3757%204.46338%2032.3957%204.54338C33.3257%204.62338%2034.1858%205.27339%2035.2258%205.05339C35.5058%204.99339%2035.8857%205.1434%2036.1357%205.3134C37.6457%206.3334%2038.1058%208.15341%2037.3158%209.82341C37.1758%2010.1134%2037.0258%2010.3932%2036.9058%2010.6232C37.2158%2011.1232%2037.5258%2010.8833%2037.7858%2010.7433C38.2158%2010.5133%2038.7158%2010.3233%2039.0358%209.98332C40.6358%208.22332%2042.9057%207.61337%2044.8957%206.53337C45.4357%206.24337%2045.9657%206.20329%2046.4557%206.70329C46.8157%207.06329%2047.2057%206.95321%2047.5157%206.62321C47.8557%206.27321%2048.1258%205.85335%2048.4758%205.51335C49.0858%204.94335%2049.7158%204.3832%2050.5958%205.1132C50.8858%205.3532%2051.2158%205.22336%2051.4958%205.02336C52.3158%204.42336%2053.3458%204.38333%2054.2258%203.99333C55.3358%203.49333%2056.3458%203.27322%2057.4058%204.13322C57.8258%204.47322%2058.3658%204.26325%2058.7458%203.91325C59.5158%203.22325%2060.3057%203.15323%2061.2057%203.64323C61.9157%204.02323%2062.6257%203.81337%2063.3257%203.53337C64.2857%203.16337%2065.2558%203.09322%2066.0658%203.88322C66.5158%204.31322%2067.0357%204.43326%2067.6357%204.42326C68.8057%204.39326%2069.8657%204.87328%2070.9557%205.19328C72.6157%205.69328%2073.8058%206.72338%2074.5458%208.29338C74.9258%209.10338%2075.2757%209.93323%2076.1357%2010.3932C76.5457%2010.6132%2077.1358%2010.8033%2076.9858%2011.4233C76.8758%2011.8733%2076.3158%2011.8233%2075.9658%2012.0033C75.7357%2012.1233%2075.5458%2012.3434%2075.7158%2012.5734C75.8358%2012.7334%2076.1257%2012.8632%2076.3357%2012.8632C77.0557%2012.8632%2077.6058%2012.4634%2077.8458%2011.8134C78.2558%2010.6834%2079.1458%2010.2032%2080.1858%209.84318C80.8758%209.60319%2081.5557%209.31334%2082.2158%209.00334C82.9758%208.64334%2083.7258%208.38322%2084.5658%208.63322C85.3358%208.86322%2086.0258%208.67335%2086.6658%208.26335C88.2858%207.20335%2090.0158%206.61319%2091.9858%206.85319C92.6358%206.93319%2093.2758%206.73325%2093.8658%206.41325C94.2958%206.18325%2094.7458%205.85342%2095.1958%205.83342C97.3658%205.75342%2099.5458%205.4834%20101.866%205.8134C101.526%206.6534%20100.776%206.6233%20100.286%206.9633C100.076%207.1133%2099.8658%207.31336%20100.056%207.52336C100.186%207.66336%20100.546%207.75326%20100.706%207.67326C101.356%207.34326%20101.966%206.94338%20102.586%206.54338C104.376%205.38338%20106.616%205.48342%20108.246%206.83342C108.746%207.24342%20109.196%207.7332%20109.716%208.1132C110.776%208.8932%20111.306%209.94332%20111.396%2011.2333C111.426%2011.6433%20111.416%2012.0533%20111.466%2012.4533C111.566%2013.1633%20111.846%2013.5133%20112.566%2013.4833C113.506%2013.4433%20114.316%2013.8132%20115.166%2014.1032C116.196%2014.4532%20117.216%2014.5134%20118.296%2014.2634C119.566%2013.9734%20120.856%2013.7832%20122.146%2013.6032C122.656%2013.5332%20123.056%2013.7434%20123.256%2014.3234C123.566%2015.2134%20123.676%2015.2333%20124.186%2014.7533C124.426%2014.5333%20124.716%2014.3334%20124.876%2014.0634C126.046%2011.9934%20128.056%2011.8634%20129.996%2012.0834C130.926%2012.1834%20131.506%2012.0834%20132.166%2011.5234C133.006%2010.8134%20134.116%2010.7433%20135.136%2010.4533C136.306%2010.1133%20137.586%2010.1834%20138.686%209.58342C139.516%209.13342%20140.476%2010.0134%20141.266%209.30339C141.956%208.69339%20142.806%208.38342%20143.646%208.08342C144.256%207.86342%20144.906%207.53341%20145.516%207.57341C147.206%207.68341%20148.706%206.97318%20150.276%206.59318C151.296%206.34318%20152.226%205.7732%20153.326%206.3632C153.596%206.5132%20154.096%206.26326%20154.486%206.17326C156.146%205.77326%20157.806%205.3433%20159.476%204.9633C159.866%204.8733%20160.296%204.87327%20160.686%204.93327C161.276%205.02327%20161.746%205.32325%20161.996%205.91325C162.136%206.24325%20161.936%206.83342%20162.526%206.83342C162.896%206.83342%20162.846%206.3032%20163.076%206.1132C163.756%205.5432%20165.896%205.52324%20166.506%206.15324C167.176%206.85324%20167.996%207.41342%20168.446%208.33342C169.166%209.82342%20170.466%2010.3833%20172.046%2010.4133C172.206%2010.4133%20172.376%2010.4533%20172.536%2010.4333C175.616%2010.0633%20178.706%2010.0934%20181.796%2010.3134C182.266%2010.3434%20182.776%2010.1933%20183.216%2010.0033C184.366%209.50334%20185.556%209.37335%20186.786%209.26335C188.726%209.08335%20190.676%208.85341%20192.606%208.57341C193.856%208.39341%20195.036%208.29334%20196.046%209.25334C196.376%209.56334%20196.866%209.60338%20197.166%209.29338C199.076%207.28338%20201.576%207.58335%20203.976%207.51335C204.296%207.51335%20204.616%207.62324%20204.946%207.65324C205.186%207.67324%20205.536%207.7432%20205.646%207.6132C206.916%206.2032%20208.666%206.8134%20210.176%206.3134L210.226%206.23332ZM115.796%2015.6332C115.836%2015.3532%20115.686%2015.1633%20115.426%2015.1733C115.206%2015.1833%20114.976%2015.2933%20114.796%2015.4233C114.596%2015.5633%20114.516%2015.8134%20114.696%2016.0134C114.776%2016.1134%20114.966%2016.1632%20115.106%2016.1532C115.426%2016.1232%20115.686%2015.9532%20115.796%2015.6332ZM91.3257%208.93327C91.0657%208.98327%2090.9158%209.14324%2090.9758%209.40324C91.0358%209.64324%2091.2258%209.79335%2091.4858%209.76335C91.7358%209.73335%2091.9058%209.56338%2091.8458%209.29338C91.7858%209.04338%2091.5857%208.94327%2091.3257%208.93327ZM201.636%209.28337C201.636%209.12337%20201.716%208.93319%20201.656%208.84318C201.506%208.63318%20201.246%208.54328%20201.026%208.69328C200.786%208.85328%20200.796%209.11338%20201.006%209.29338C201.206%209.46338%20201.446%209.44338%20201.646%209.29338L201.636%209.28337ZM193.806%2010.1032C193.706%2010.0032%20193.606%209.84341%20193.496%209.82341C193.366%209.80341%20193.116%209.89331%20193.096%209.97331C193.026%2010.2633%20193.236%2010.4032%20193.496%2010.3832C193.606%2010.3732%20193.706%2010.2032%20193.806%2010.0932V10.1032Z%22%20fill%3D%22%23E6BFAC%22%2F%3E%0A%3Cpath%20d%3D%22M219.836%207.92345C219.756%208.05345%20219.696%208.23359%20219.576%208.31359C219.466%208.38359%20219.216%208.41339%20219.166%208.35339C218.986%208.14339%20219.076%207.89349%20219.246%207.71349C219.346%207.61349%20219.526%207.53357%20219.656%207.54357C219.836%207.56357%20219.896%207.73345%20219.836%207.92345Z%22%20fill%3D%22%23E6BFAC%22%2F%3E%0A%3Cpath%20d%3D%22M60.2958%2019.8136C60.1758%2019.8936%2060.0559%2020.0436%2059.9459%2020.0336C59.6759%2019.9936%2059.5858%2019.7836%2059.7358%2019.5636C59.7958%2019.4736%2060.0158%2019.4335%2060.1258%2019.4735C60.2158%2019.5135%2060.2458%2019.6936%2060.2958%2019.8236V19.8136Z%22%20fill%3D%22%23E6BFAC%22%2F%3E%0A%3Cpath%20d%3D%22M43.006%200.0133187C43.186%200.0733187%2043.266%200.203387%2043.156%200.333387C43.076%200.433387%2042.896%200.503309%2042.776%200.503309C42.676%200.503309%2042.486%200.333328%2042.496%200.273328C42.556%200.0133285%2042.766%20-0.0266813%2043.006%200.0133187Z%22%20fill%3D%22%23E6BFAC%22%2F%3E%0A%3C%2Fsvg%3E");
        background-size: 100%;
        background-repeat: no-repeat;
        width: 220px;
        height: 20px;

        @media screen and (max-width: 600px) {
          width: 180px;
          height: 16px;
        }
      }

      @media screen and (max-width: 850px) {
        margin-bottom: 40px;
      }
    }
  }
}
.wpcf7 {
  border: none !important;
  background: none !important;
  margin: 0 !important;
  font-size: 1em !important;

  select,
  .wpcf7-list-item-label {
    font-size: 15px !important;
  }
  form {
    margin: 0 !important;
  }
}
.wpcf7 select,
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
  border: 1px solid #a8a8a8 !important;
}

.form-block {
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  background: #fff;
  padding: 60px;
  box-shadow: 0px 5.139px 5.139px rgba(0, 0, 0, 0.1);
  font-family: var(--sans);

  @media screen and (max-width: 800px) {
    padding: 30px;
  }

  .form-item:not(.form-message) {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 24px;
    width: 100%;

    @media (max-width: 800px) {
      flex-direction: column;
      row-gap: 10px;
    }
  }

  .heading-sub-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .form-item .label {
    width: 255px;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 15px !important;

    @media (max-width: 800px) {
      width: 100%;
      justify-content: flex-start;
      font-weight: 900;
    }
  }

  .required {
    display: inline-block;
    width: 45px;
    margin-right: 3px;
    padding: 3px 5px;
    margin-left: 10px;
    text-align: center;
    color: #fff;
    background: #bf2020;
    font-weight: normal;
    font-size: 12px;
    border-radius: 4px;
  }

  .form-item .form-item_parts {
    flex: 1;
    margin: 0;
  }

  .wpcf7-list-item {
    margin-left: 0;
  }

  .form-item input[type="text"],
  .form-item input[type="email"],
  .form-item input[type="tel"],
  .form-item textarea,
  select {
    border-radius: 5px;
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #a8a8a8;
    line-height: 1.1;
    height: 40px;
    letter-spacing: 0.1em;

    @media (max-width: 600px) {
      width: 100%;
    }
  }

  select.desired_time {
    max-width: 250px;
  }

  .form-item textarea {
    height: auto;
    padding: 10px;
    width: 100%;
  }

  .form-item input[type="text"].name,
  .form-item input[type="text"].name_kana,
  .form-item input[type="tel"].tel {
    width: 50%;

    @media (max-width: 600px) {
      width: 100%;
    }
  }
  .form-item select.pref {
    width: 250px;
  }

  .form-item input[type="text"].zip {
    margin-left: 5px;
    width: 150px;
  }

  .form-item .h-adr {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }

  .form-item p {
    margin-bottom: 0;

    &:first-child {
      margin-top: 0;
    }
    &:last-child {
      margin-bottom: 0;
    }
  }

  .form-checkbox {
    .wpcf7-list-item {
      label {
        box-sizing: border-box;
        cursor: pointer;
        display: inline-block;
        padding: 0 0 0 30px;
        position: relative;
        width: auto;

        &::before {
          background: #fff;
          border: 1px solid #ccc;
          content: "";
          display: block;
          height: 18px;
          left: 5px;
          transform: translateY(-50%);
          position: absolute;
          top: 50%;
          width: 18px;
        }

        input[type="checkbox"] {
          display: none;

          + span::after {
            content: "";
            border-right: 3px solid #6fada5;
            border-bottom: 3px solid #6fada5;
            transform: translateY(-50%) rotate(45deg);
            display: block;
            height: 18px;
            left: 11px;
            opacity: 0;
            position: absolute;
            top: 35%;
            width: 9px;
          }

          &:checked {
            + span::after {
              opacity: 1;
            }
          }
        }
      }
    }
  }
  .worries-list {
    .wpcf7-checkbox {
      display: flex;
      flex-direction: column;
      row-gap: 10px;

      label {
        margin-bottom: 0;
      }
    }
  }
  .choice-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ddd;

    &:nth-child(1) {
      padding-top: 10px;
    }
  }

  .choice-box:last-child {
    border-bottom: none;
  }

  .choice-number {
    font-weight: bold;
    white-space: nowrap;
    min-width: 132px;
    margin: 0 24px 0 0;
  }

  .choice-box .form-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: auto;
    flex-wrap: nowrap;
    flex: 1;
  }

  .choice-box .form-item .label {
    width: auto;
    white-space: nowrap;
    justify-content: flex-start;
    font-weight: normal;
  }

  .choice-box .form-item_parts {
    .wpcf7-form-control-wrap:has(> .datepicker),
    select.desired_time {
      max-width: 100%;
    }
  }

  @media screen and (max-width: 800px) {
    .choice-box {
      flex-wrap: wrap;
      gap: 12px 24px;
    }

    .choice-number {
      width: 100%;
      margin: 0;
    }

    .choice-box .form-item {
      flex-direction: row; /* 既存の column を上書き */
      align-items: center;
    }
  }

  @media screen and (max-width: 600px) {
    .choice-box {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    .choice-number {
      width: 100%;
      margin: 0;
    }

    .choice-box .form-item {
      width: 100%;
    }

    .choice-box .form-item_parts {
      .wpcf7-form-control-wrap:has(> .datepicker),
      select.desired_time {
        max-width: 250px;
      }
    }
  }

  .select {
    max-width: 350px;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    height: 50px;
  }

  .form-radio .wpcf7-form-control {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);

    @media screen and (max-width: 800px) {
      flex-direction: column;
    }

    .wpcf7-list-item {
      margin: 0;
    }
  }

  .form-radio label {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 0 0 0 30px;
    position: relative;
    width: auto;
  }

  .form-radio label::before {
    background: #fff;
    border: 1px solid #ccc;
    content: "";
    display: block;
    height: 18px;
    left: 5px;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    width: 18px;
  }

  .form-radio label::before {
    border-radius: 25px;
  }

  .form-radio label input[type="radio"] + span::after {
    content: "";
    border-right: 3px solid #6fada5;
    border-bottom: 3px solid #6fada5;
    transform: translateY(-50%) rotate(45deg);
    display: block;
    height: 18px;
    left: 11px;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 9px;
  }

  .form-radio label input[type="radio"] + span::after {
    border: none;
    background: #6fada5;
    border-radius: 25px;
    transform: none;
    height: 10px;
    width: 10px;
    left: 9px;
    top: 50%;
    transform: translateY(-50%);
  }

  .form-radio label input[type="radio"]:checked + span::after {
    opacity: 1;
  }

  .form-radio label input[type="radio"] {
    display: none;
  }

  .form-item .form-text {
    margin-block: 10px;
    font-size: 15px;

    a {
      color: var(--c-terracotta);
      font-weight: 700;
    }
  }

  .form-submit {
    width: 100%;
    text-align: center;
    margin-top: 60px;

    @media (max-width: 600px) {
      margin-top: 0;
    }

    p {
      width: 100%;
      margin: 0;
    }

    input[type="submit"] {
      display: block;
      background: var(--c-terracotta);
      border: 1px solid var(--c-terracotta) !important;
      color: #fff;
      padding: 20px;
      font-size: 20px;
      cursor: pointer;
      transition: all 0.5s;
      letter-spacing: 0.1em;
      max-width: 350px;
      width: 100%;
      margin: 0 auto;
      font-weight: 500;
      height: auto;

      @media screen and (min-width: 601px) {
        &:hover {
          background: #fff;
          color: var(--c-terracotta);
          transition: all 0.5s;
        }
      }

      @media screen and (max-width: 600px) {
        font-size: 18px;
        padding: 15px;
        max-width: 250px;
      }
    }
  }

  .wpcf7-form-control-wrap:has(> .datepicker) {
    position: relative;
    max-width: 250px;
    display: block;
    &::after {
      content: "";
      background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%23332D28%22%3E%3Cpath%20d%3D%22M200-80q-33%200-56.5-23.5T120-160v-560q0-33%2023.5-56.5T200-800h40v-80h80v80h320v-80h80v80h40q33%200%2056.5%2023.5T840-720v560q0%2033-23.5%2056.5T760-80H200Zm0-80h560v-400H200v400Zm0-480h560v-80H200v80Zm0%200v-80%2080Zm280%20240q-17%200-28.5-11.5T440-440q0-17%2011.5-28.5T480-480q17%200%2028.5%2011.5T520-440q0%2017-11.5%2028.5T480-400Zm-188.5-11.5Q280-423%20280-440t11.5-28.5Q303-480%20320-480t28.5%2011.5Q360-457%20360-440t-11.5%2028.5Q337-400%20320-400t-28.5-11.5ZM640-400q-17%200-28.5-11.5T600-440q0-17%2011.5-28.5T640-480q17%200%2028.5%2011.5T680-440q0%2017-11.5%2028.5T640-400ZM480-240q-17%200-28.5-11.5T440-280q0-17%2011.5-28.5T480-320q17%200%2028.5%2011.5T520-280q0%2017-11.5%2028.5T480-240Zm-188.5-11.5Q280-263%20280-280t11.5-28.5Q303-320%20320-320t28.5%2011.5Q360-297%20360-280t-11.5%2028.5Q337-240%20320-240t-28.5-11.5ZM640-240q-17%200-28.5-11.5T600-280q0-17%2011.5-28.5T640-320q17%200%2028.5%2011.5T680-280q0%2017-11.5%2028.5T640-240Z%22%2F%3E%3C%2Fsvg%3E");
      background-size: 100%;
      height: 15px;
      width: 15px;
      position: absolute;
      right: 10px;
      top: 12px;
      pointer-events: none;
    }
  }

  .reception_type {
    width: 30%;
  }
}

.wp-block-lazyblock-info-block + .wpcf7 .form-block {
  margin-top: var(--space-l);
}

/** 送信完了 **/
.thanks-content p {
  text-align: center;
  font-size: 18px;
  line-height: 2;
  margin-bottom: 0;
}

/* =========================================
  Responsive
========================================
*/
/* 1000px以上で非表示 */
@media screen and (min-width: 1001px) {
  .hide-pc {
    display: none !important;
  }
}

/* 850px以下で非表示 */
@media screen and (max-width: 850px) {
  .hide-tb {
    display: none !important;
  }
}

/* Tabletのみ表示（PCで非表示） */
@media screen and (min-width: 851px) {
  .show-tb {
    display: none !important;
  }
}

/* 600px以下で非表示 */
@media screen and (max-width: 600px) {
  .hide-sp {
    display: none !important;
  }
}

/* SPのみ表示（PCで非表示） */
@media screen and (min-width: 601px) {
  .show-sp {
    display: none !important;
  }
}
