@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
:root {
  --view-size: 1280;
}

@media screen and (max-width: 999px) {
  :root {
    --view-size: 750;
  }
}
/* -----------------------------------
common：基本
----------------------------------- */
abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 999px) {
  body.no_scroll {
    overflow: hidden;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  line-height: 1;
}

b {
  font-weight: normal;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

/* 768px以下では電話発信のリンクを無効化する */
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* inner関係 */
.inner {
  max-width: calc(1280 / var(--view-size) * 100vw);
  margin-inline: auto;
  overflow: hidden;
}

/* -----------------------------------
common：フォント
----------------------------------- */
@font-face {
  font-family: "UtsukushiFONT", serif;
  src: url("../fonts/UtsukushiFONT.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.utsukushi {
  font-family: "UtsukushiFONT", serif;
  font-weight: 400;
  font-style: normal;
}

.serif {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.shippori {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
}

/* 大文字 */
.uppercase {
  text-transform: uppercase;
}

/* -----------------------------------
common：flex
----------------------------------- */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* -----------------------------------
common：display
----------------------------------- */
.all_dn {
  display: none;
}

@media (max-width: 999px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 999px) {
  .sp_db {
    display: block;
  }
}

/* -----------------------------------
common：position
----------------------------------- */
.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/* z-index */
.z_-10 {
  z-index: -10;
}

.z_10 {
  z-index: 10;
}

.z_20 {
  z-index: 20;
}

.z_30 {
  z-index: 30;
}

.z_40 {
  z-index: 40;
}

.z_50 {
  z-index: 50;
}

.z_8000 {
  z-index: 8000;
}

.z_9999 {
  z-index: 9999;
}

/* -----------------------------------
common：共通タイトル
----------------------------------- */
.common_ttl {
  font-size: clamp(6.25rem, -2.5rem + 10.9375vw, 10.625rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  background: linear-gradient(90deg, #B3721F 0%, #AC7021 20%, #CC8D27 35%, #E0B75D 47%, #F8E99E 59%, #AF721F 78%, #995E22 82%, #915724 84%, #9C6127 88%, #B97F31 94%, #DEA33E 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media (max-width: 999px) {
  .common_ttl {
    font-size: calc(120 / var(--view-size) * 100vw);
  }
}

.common_sub {
  font-size: clamp(1.5rem, -0.6rem + 2.625vw, 2.55rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #815724;
  text-align: center;
  margin-top: -0.3125rem;
}
@media (max-width: 999px) {
  .common_sub {
    font-size: calc(32 / var(--view-size) * 100vw);
    margin-top: calc(-5 / var(--view-size) * 100vw);
  }
}

/* 
ヘッダー
------------------------------ */
.header {
  background-color: #fff;
}
@media (max-width: 999px) {
  .header {
    overflow: hidden;
  }
}

.header_pc_ttl {
  background-image: url("../image/header-bg-pc.jpg");
  background-size: cover;
  padding: calc(18 / var(--view-size) * 100vw) 0 calc(17 / var(--view-size) * 100vw);
  font-size: clamp(1.5rem, -1.5rem + 3.75vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.15em;
  color: #815724;
  text-align: center;
}
@media (max-width: 999px) {
  .header_pc_ttl {
    background-image: url("../image/header-bg-sp.jpg");
    padding: calc(40 / var(--view-size) * 100vw) 0 calc(35 / var(--view-size) * 100vw);
    font-size: calc(48 / var(--view-size) * 100vw);
  }
}

@media (max-width: 999px) {
  .header_sp_ttl {
    width: calc(265 / var(--view-size) * 100vw);
    padding: calc(23 / var(--view-size) * 100vw) 0 calc(26 / var(--view-size) * 100vw);
    margin-inline: auto;
  }
}

/* ハンバーガーボタン */
@media (max-width: 999px) {
  .hbg_circle {
    top: calc(5 / var(--view-size) * 100vw);
    right: calc(14 / var(--view-size) * 100vw);
    width: calc(130 / var(--view-size) * 100vw);
    height: calc(130 / var(--view-size) * 100vw);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 9999px;
    padding-top: calc(44 / var(--view-size) * 100vw);
  }
}

@media (max-width: 999px) {
  .hbg_trigger {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: calc(59 / var(--view-size) * 100vw);
    height: calc(37 / var(--view-size) * 100vw);
    margin-inline: auto;
    cursor: pointer;
  }
}

@media (max-width: 999px) {
  .hbg_trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: calc(3.55 / var(--view-size) * 100vw);
    background-color: #333;
    border-radius: calc(4 / var(--view-size) * 100vw);
  }
}

@media (max-width: 999px) {
  .hbg_trigger, .hbg_trigger span {
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
  }
}

@media (max-width: 999px) {
  .hbg_trigger span:nth-of-type(1) {
    top: 0;
  }
}

@media (max-width: 999px) {
  .hbg_trigger span:nth-of-type(2) {
    top: calc(16 / var(--view-size) * 100vw);
  }
}

@media (max-width: 999px) {
  .hbg_trigger span:nth-of-type(3) {
    bottom: 0;
  }
}

@media (max-width: 999px) {
  .hbg_txt {
    font-size: calc(21 / var(--view-size) * 100vw);
    font-weight: 500;
    line-height: 1;
    text-align: center;
    color: #000000;
    margin-top: calc(7 / var(--view-size) * 100vw);
  }
}

/* ハンバーガーボタンオープン時 */
@media (max-width: 999px) {
  .hbg_trigger.active span:nth-of-type(1) {
    transform: translateY(calc(16 / var(--view-size) * 100vw)) rotate(-45deg);
  }
}

@media (max-width: 999px) {
  .hbg_trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
}

@media (max-width: 999px) {
  .hbg_trigger.active span:nth-of-type(3) {
    transform: translateY(calc(-16 / var(--view-size) * 100vw)) rotate(45deg);
  }
}

/* ハンバーガーメニュー(中身) */
@media (max-width: 999px) {
  .hbg_nav {
    width: calc(570 / var(--view-size) * 100vw);
    height: 100svh;
    background-color: #fff;
    padding: calc(129 / var(--view-size) * 100vw) calc(37 / var(--view-size) * 100vw) 0;
    box-shadow: calc(-6 / var(--view-size) * 100vw) 0 calc(15 / var(--view-size) * 100vw) 0 rgba(0, 0, 0, 0.1);
    top: 0;
    right: 0;
    transition: all 0.5s;
    transform: translateX(300%);
  }
}

@media (max-width: 999px) {
  .hbg_nav.active {
    transform: translateX(0);
  }
}

@media (max-width: 999px) {
  .hbg_nav li:not(:first-of-type) {
    margin-top: calc(24 / var(--view-size) * 100vw);
  }
}

@media (max-width: 999px) {
  .hbg_nav li:last-of-type {
    margin-top: calc(40 / var(--view-size) * 100vw);
  }
}

@media (max-width: 999px) {
  .hbg_nav_item {
    display: block;
    padding-bottom: calc(24 / var(--view-size) * 100vw);
    padding-left: calc(11 / var(--view-size) * 100vw);
    padding-right: calc(11 / var(--view-size) * 100vw);
    border-bottom: calc(1 / var(--view-size) * 100vw) solid #B5ACA9;
  }
}

@media (max-width: 999px) {
  .hbg_nav_item::after {
    content: "";
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    right: calc(16 / var(--view-size) * 100vw);
    width: calc(14 / var(--view-size) * 100vw);
    height: calc(18 / var(--view-size) * 100vw);
    background-image: url("../image/nav-arrow.svg");
    background-size: contain;
  }
}

@media (max-width: 999px) {
  .hbg_nav_ttl {
    font-size: calc(32 / var(--view-size) * 100vw);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #000000;
  }
}

@media (max-width: 999px) {
  .hbg_nav_rubi {
    font-size: calc(28 / var(--view-size) * 100vw);
    line-height: 1.4;
    letter-spacing: 0.05em;
    color: #B5ACA9;
    margin-top: calc(4 / var(--view-size) * 100vw);
  }
}

@media (max-width: 999px) {
  .hbg_nav_cta {
    display: block;
    width: calc(464 / var(--view-size) * 100vw);
    margin-inline: auto;
  }
}

/* 
フッター：
----------------------------------- */
.footer {
  background-color: #f3f4f5;
  padding: calc(40 / var(--view-size) * 100vw);
}
.footer_link {
  display: block;
  width: calc(180 / var(--view-size) * 100vw);
  margin-inline: auto;
}

.footer_copy {
  font-size: clamp(1rem, 0rem + 1.25vw, 1.5rem);
  line-height: 1.8;
  text-align: center;
  color: #999;
}
@media (max-width: 999px) {
  .footer_copy {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}

.footer_copy small a {
  text-decoration: underline;
}

/* 下からフェードイン */
.bottomin1 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin1.active {
  animation: 0.8s forwards bottomin;
}

.bottomin2 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin2.active {
  animation: 0.8s forwards 0.1s bottomin;
}

.bottomin3 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin3.active {
  animation: 0.8s forwards 0.2s bottomin;
}

.bottomin4 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin4.active {
  animation: 0.8s forwards 0.3s bottomin;
}

.bottomin5 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin5.active {
  animation: 0.8s forwards 0.4s bottomin;
}

.bottomin6 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin6.active {
  animation: 0.8s forwards 0.5s bottomin;
}

.bottomin7 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin7.active {
  animation: 0.8s forwards 0.6s bottomin;
}

.bottomin8 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin8.active {
  animation: 0.8s forwards 0.7s bottomin;
}

/* 下からフェードイン */
@keyframes bottomin {
  0% {
    opacity: 0;
    transform: translateY(5%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 
fv
------------------------------ */
.fv {
  background-color: #fff;
}

.fv_bg {
  height: calc(649 / var(--view-size) * 100vw);
  padding-top: calc(40 / var(--view-size) * 100vw);
  padding-bottom: calc(80 / var(--view-size) * 100vw);
  background-image: url("../image/fv-pc.png");
  background-size: contain;
  background-position: bottom calc(80 / var(--view-size) * 100vw) center;
}
@media (max-width: 999px) {
  .fv_bg {
    height: calc(976 / var(--view-size) * 100vw);
    padding-top: calc(80 / var(--view-size) * 100vw);
    padding-bottom: calc(0 / var(--view-size) * 100vw);
    background-image: url("../image/fv-sp.png");
    background-size: cover;
    background-position: bottom calc(3 / var(--view-size) * 100vw) center;
  }
}

.fv_ttl {
  width: calc(397 / var(--view-size) * 100vw);
  margin-inline: auto;
}
@media (max-width: 999px) {
  .fv_ttl {
    width: calc(586 / var(--view-size) * 100vw);
  }
}

.fv_ttl_sub {
  display: block;
  font-size: clamp(1rem, -0.5rem + 1.875vw, 1.75rem);
  font-weight: 500;
  color: #815724;
  text-align: center;
  margin-top: calc(11 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .fv_ttl_sub {
    font-size: calc(24 / var(--view-size) * 100vw);
    margin-top: calc(15 / var(--view-size) * 100vw);
  }
}

.fv_ttl_sub::before,
.fv_ttl_sub::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(107 / var(--view-size) * 100vw);
  height: calc(1 / var(--view-size) * 100vw);
  background-color: #815724;
}
@media (max-width: 999px) {
  .fv_ttl_sub::before,
  .fv_ttl_sub::after {
    width: calc(158 / var(--view-size) * 100vw);
    height: calc(1 / var(--view-size) * 100vw);
  }
}

.fv_ttl_sub::before {
  left: calc(1 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .fv_ttl_sub::before {
    left: calc(1 / var(--view-size) * 100vw);
  }
}

.fv_ttl_sub::after {
  right: calc(1 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .fv_ttl_sub::after {
    right: calc(1 / var(--view-size) * 100vw);
  }
}

.fv_txt {
  font-size: clamp(0.875rem, -0.625rem + 1.875vw, 1.625rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #815724;
  text-align: center;
  margin-top: calc(28 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .fv_txt {
    font-size: calc(28 / var(--view-size) * 100vw);
    margin-top: calc(38 / var(--view-size) * 100vw);
  }
}

.fv_nav {
  flex-wrap: nowrap;
  width: 100%;
  position: absolute;
  bottom: 0;
  align-items: center;
  justify-content: flex-end;
}

.fv_nav_row {
  min-width: 93.36%;
  max-width: 100%;
  flex-wrap: nowrap;
  align-items: center;
}

.fv_nav_row li {
  flex-shrink: 1;
}

.fv_nav_item {
  width: 5.6875rem;
  width: 7.6%;
}

.fv_nav_item:nth-of-type(2) {
  width: 13.9375rem;
  width: 18.7%;
}

.fv_nav_item:nth-of-type(3) {
  width: 7.5625rem;
  width: 10.13%;
}

.fv_nav_item:nth-of-type(4) {
  width: 10.3125rem;
  width: 13.81%;
}

.fv_nav_item:nth-of-type(5) {
  width: 9.4375rem;
  width: 12.63%;
}

.fv_nav_item:nth-of-type(6) {
  width: 13.25rem;
  width: 17.74%;
}

.nav_item_link {
  display: block;
}

.fv_nav_item:first-of-type .nav_item_link {
  padding-left: 0;
}

.fv_nav_item:not(:nth-of-type(6)) .nav_item_link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: calc(1 / var(--view-size) * 100vw);
  height: calc(40 / var(--view-size) * 100vw);
  background-color: #B5ACA9;
}

.item_link_txt {
  font-size: clamp(1rem, -0.5rem + 1.875vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000000;
  text-align: center;
}

.item_link_sub {
  font-size: clamp(0.875rem, -0.375rem + 1.5625vw, 1.5rem);
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  color: #B5ACA9;
  margin-top: calc(4 / var(--view-size) * 100vw);
}

.fv_nav_cta {
  width: 14.5rem;
  width: 19.41%;
}
@media (max-width: 999px) {
  .fv_nav_cta {
    width: calc(596 / var(--view-size) * 100vw);
    border: calc(2 / var(--view-size) * 100vw) solid #815724;
    margin: calc(76 / var(--view-size) * 100vw) 0 calc(76 / var(--view-size) * 100vw);
    margin-inline: auto;
  }
}

@media (max-width: 999px) {
  .nav_cta_sp {
    display: block;
    font-size: calc(40 / var(--view-size) * 100vw);
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: calc(26 / var(--view-size) * 100vw) calc(91 / var(--view-size) * 100vw) calc(30 / var(--view-size) * 100vw);
  }
}

@media (max-width: 999px) {
  .nav_cta_sp::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(46 / var(--view-size) * 100vw);
    width: calc(36 / var(--view-size) * 100vw);
    height: calc(36 / var(--view-size) * 100vw);
    border-radius: 50%;
    background-color: #815724;
    background-image: url("../image/cta-arrow-02.svg");
    background-size: contain;
  }
}

/* 
worries : こんなお悩みありませんか
------------------------------ */
.worries {
  max-width: calc(1280 / var(--view-size) * 100vw);
  height: calc(722 / var(--view-size) * 100vw);
  overflow: hidden;
  box-shadow: 0 calc(4 / var(--view-size) * 100vw) calc(4 / var(--view-size) * 100vw) 0 rgba(0, 0, 0, 0.25);
  margin-inline: auto;
}
@media (max-width: 999px) {
  .worries {
    height: calc(1727 / var(--view-size) * 100vw);
    box-shadow: none;
  }
}

.worries_bg {
  width: 100%;
  height: calc(722 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .worries_bg {
    height: calc(1727 / var(--view-size) * 100vw);
  }
}

.worries_bg::before {
  display: block;
  content: "";
  position: fixed;
  top: calc(33 / var(--view-size) * 100vw);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: calc(1280 / var(--view-size) * 100vw);
  height: 100vh;
  z-index: -1;
  background-image: url("../image/worries-bg-pc-top.png");
  background-size: 100% auto;
  background-position: center;
}
@media (max-width: 999px) {
  .worries_bg::before {
    top: calc(0 / var(--view-size) * 100vw);
    background-image: url("../image/worries-bg-sp.png");
    height: 100svh;
  }
}

.worries_bg::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(183, 176, 167, 0.6);
}

.worries_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("../image/worries-box-bg-pc.png");
  background-size: 100% 100%;
  min-width: 37.1875rem;
  width: 46.5%;
  padding: calc(47 / var(--view-size) * 100vw) 0 calc(46 / var(--view-size) * 100vw);
  margin-inline: auto;
  margin-top: calc(31 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .worries_box {
    background-image: url("../image/worries-box-bg-sp.png");
    min-width: auto;
    width: calc(700 / var(--view-size) * 100vw);
    padding: calc(50 / var(--view-size) * 100vw) 0 calc(87 / var(--view-size) * 100vw);
    padding-left: calc(49 / var(--view-size) * 100vw);
    padding-right: calc(63 / var(--view-size) * 100vw);
    margin-top: calc(247 / var(--view-size) * 100vw);
  }
}

.worries_box_ttl {
  width: 54%;
  margin-inline: auto;
}
@media (max-width: 999px) {
  .worries_box_ttl {
    width: calc(380 / var(--view-size) * 100vw);
  }
}

.worries_box_list {
  display: flex;
  flex-direction: column;
  row-gap: calc(8 / var(--view-size) * 100vw);
  margin-top: calc(21 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .worries_box_list {
    row-gap: calc(32 / var(--view-size) * 100vw);
    margin-top: calc(40 / var(--view-size) * 100vw);
  }
}

.box_list_cont {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.list_cont_img {
  width: calc(18 / var(--view-size) * 100vw);
  flex-shrink: 0;
}
@media (max-width: 999px) {
  .list_cont_img {
    width: calc(40 / var(--view-size) * 100vw);
  }
}

.list_cont_txt {
  font-size: clamp(1rem, 0.125rem + 1.09375vw, 1.4375rem);
  line-height: 1.8;
  margin-left: calc(8 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .list_cont_txt {
    font-size: calc(32 / var(--view-size) * 100vw);
    line-height: 1.5;
    margin-left: calc(16 / var(--view-size) * 100vw);
  }
}

.list_cont_txt b {
  font-weight: 700;
}

.worries_txt {
  font-size: clamp(1.5rem, -0.5rem + 2.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: calc(12 / var(--view-size) * 100vw);
  z-index: 10;
}
@media (max-width: 999px) {
  .worries_txt {
    display: flex;
    justify-content: flex-start;
    font-size: calc(48 / var(--view-size) * 100vw);
    line-height: 1.4;
    padding-left: calc(63 / var(--view-size) * 100vw);
    margin-top: calc(57 / var(--view-size) * 100vw);
    z-index: initial;
  }
}

.worries_txt::after {
  display: block;
  content: "";
  position: absolute;
  z-index: 1;
  top: calc(52 / var(--view-size) * 100vw);
  left: 50%;
  transform: translateX(-50%);
  width: calc(3 / var(--view-size) * 100vw);
  height: calc(40 / var(--view-size) * 100vw);
  background-image: url("../image/dott-center.png");
  background-size: contain;
}
@media (max-width: 999px) {
  .worries_txt::after {
    top: calc(236 / var(--view-size) * 100vw);
    width: calc(6 / var(--view-size) * 100vw);
    height: calc(80 / var(--view-size) * 100vw);
  }
}

@media (max-width: 999px) {
  .worries_txt_img {
    width: calc(316 / var(--view-size) * 100vw);
    top: calc(-139 / var(--view-size) * 100vw);
    right: calc(6 / var(--view-size) * 100vw);
  }
}

.worries_bg_bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: calc(482 / var(--view-size) * 100vw);
  background-image: url("../image/worries-bg-pc-bottom.png");
  background-size: 100% 100%;
  clip-path: polygon(50% 25%, 100% 6%, 100% 100%, 0 100%, 0 6%);
  padding-top: calc(167 / var(--view-size) * 100vw);
  box-shadow: 0 calc(4 / var(--view-size) * 100vw) calc(4 / var(--view-size) * 100vw) 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 999px) {
  .worries_bg_bottom {
    height: calc(727 / var(--view-size) * 100vw);
    background-image: url("../image//worries-bg-sp-bottom.png");
    background-position: top calc(-10 / var(--view-size) * 100vw) center;
    clip-path: polygon(50% 17%, 100% 0%, 100% 100%, 0 100%, 0 0%);
    padding-top: calc(140 / var(--view-size) * 100vw);
  }
}

.worries_bottom {
  width: calc(500 / var(--view-size) * 100vw);
  margin-inline: auto;
}
@media (max-width: 999px) {
  .worries_bottom {
    width: calc(580 / var(--view-size) * 100vw);
  }
}

.confetti canvas {
  height: 100%;
  width: 100%;
  position: absolute;
}

.worries_bottom_txt {
  font-size: clamp(1.25rem, -0.75rem + 2.5vw, 2.25rem);
  font-weight: 500;
  color: #815724;
  text-align: center;
  margin-top: 0.3125rem;
}
@media (max-width: 999px) {
  .worries_bottom_txt {
    font-size: calc(23 / var(--view-size) * 100vw);
    margin-top: calc(5 / var(--view-size) * 100vw);
  }
}

.worries_bottom_txt::before,
.worries_bottom_txt::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(132 / var(--view-size) * 100vw);
  height: calc(1 / var(--view-size) * 100vw);
  background-color: #815724;
}
@media (max-width: 999px) {
  .worries_bottom_txt::before,
  .worries_bottom_txt::after {
    width: calc(154 / var(--view-size) * 100vw);
    height: calc(1 / var(--view-size) * 100vw);
  }
}

.worries_bottom_txt::before {
  left: calc(1 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .worries_bottom_txt::before {
    left: calc(1 / var(--view-size) * 100vw);
  }
}

.worries_bottom_txt::after {
  right: calc(1 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .worries_bottom_txt::after {
    right: calc(1 / var(--view-size) * 100vw);
  }
}

/* 
features : ＋シンメトリーの特徴
------------------------------ */
.features {
  background-color: #fff;
  padding: calc(44 / var(--view-size) * 100vw) 0 calc(80 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .features {
    padding: calc(72 / var(--view-size) * 100vw) 0 calc(80 / var(--view-size) * 100vw);
  }
}

@media (max-width: 999px) {
  .features .inner {
    padding: 0 calc(25 / var(--view-size) * 100vw);
  }
}

.features_cont {
  margin-top: calc(40 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .features_cont {
    margin-top: calc(80 / var(--view-size) * 100vw);
  }
}

.features_cont_list {
  display: flex;
  flex-direction: column;
  row-gap: calc(40 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .features_cont_list {
    row-gap: calc(40 / var(--view-size) * 100vw);
  }
}

.cont_list_item {
  background-image: url("../image/features-01-bg-pc.jpg");
  background-size: 100% 100%;
  width: 93.8%;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  padding: calc(56 / var(--view-size) * 100vw) 0 calc(55 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .cont_list_item {
    background-image: url("../image/features-01-bg-sp.jpg");
    width: 100%;
    flex-direction: column;
    padding: calc(93 / var(--view-size) * 100vw) calc(30 / var(--view-size) * 100vw) calc(30 / var(--view-size) * 100vw);
  }
}

.cont_list_item:nth-of-type(2) {
  background-image: url("../image/features-02-bg-pc.jpg");
  margin-left: auto;
}
@media (max-width: 999px) {
  .cont_list_item:nth-of-type(2) {
    background-image: url("../image/features-02-bg-sp.jpg");
    padding: calc(93 / var(--view-size) * 100vw) calc(30 / var(--view-size) * 100vw) calc(30 / var(--view-size) * 100vw);
    margin: 0;
  }
}

.cont_list_item:nth-of-type(3) {
  background-image: url("../image/features-03-bg-pc.jpg");
}
@media (max-width: 999px) {
  .cont_list_item:nth-of-type(3) {
    background-image: url("../image/features-03-bg-sp.jpg");
    padding: calc(93 / var(--view-size) * 100vw) calc(30 / var(--view-size) * 100vw) calc(30 / var(--view-size) * 100vw);
  }
}

.cont_list_item:nth-of-type(4) {
  background-image: url("../image/features-04-bg-pc.jpg");
  margin-left: auto;
}
@media (max-width: 999px) {
  .cont_list_item:nth-of-type(4) {
    background-image: url("../image/features-04-bg-sp.jpg");
    padding: calc(93 / var(--view-size) * 100vw) calc(30 / var(--view-size) * 100vw) calc(30 / var(--view-size) * 100vw);
    margin: 0;
  }
}

.list_item_ttl {
  width: 33%;
  flex-shrink: 1;
  font-size: clamp(2.5rem, 0rem + 3.125vw, 3.75rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 999px) {
  .list_item_ttl {
    width: 100%;
    font-size: calc(72 / var(--view-size) * 100vw);
  }
}

.cont_list_item:nth-of-type(3) .list_item_ttl {
  width: 30%;
}
@media (max-width: 999px) {
  .cont_list_item:nth-of-type(3) .list_item_ttl {
    width: 100%;
  }
}

.list_item_box {
  width: 60.4%;
}
@media (max-width: 999px) {
  .list_item_box {
    width: 100%;
    margin-top: calc(86 / var(--view-size) * 100vw);
  }
}

.cont_list_item:nth-of-type(3) .list_item_box {
  width: 63.3%;
}
@media (max-width: 999px) {
  .cont_list_item:nth-of-type(3) .list_item_box {
    width: 100%;
    margin-top: calc(175 / var(--view-size) * 100vw);
  }
}

.item_box_head {
  font-size: clamp(1.5rem, 0rem + 1.875vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-align: center;
  background-color: #815724;
  padding: calc(13 / var(--view-size) * 100vw) calc(34 / var(--view-size) * 100vw);
  box-shadow: calc(2 / var(--view-size) * 100vw) calc(2 / var(--view-size) * 100vw) 0 0 rgb(62, 38, 8);
  top: calc(8 / var(--view-size) * 100vw);
  left: calc(-8 / var(--view-size) * 100vw);
  z-index: 1;
}
@media (max-width: 999px) {
  .item_box_head {
    font-size: calc(50 / var(--view-size) * 100vw);
    padding: calc(15 / var(--view-size) * 100vw) calc(33 / var(--view-size) * 100vw);
    box-shadow: calc(2.83 / var(--view-size) * 100vw) calc(2.83 / var(--view-size) * 100vw) 0 0 rgb(62, 38, 8);
    top: calc(24 / var(--view-size) * 100vw);
    left: calc(-12 / var(--view-size) * 100vw);
  }
}

.cont_list_item:nth-of-type(2) .item_box_head {
  padding: calc(12 / var(--view-size) * 100vw) calc(18 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .cont_list_item:nth-of-type(2) .item_box_head {
    padding: calc(15 / var(--view-size) * 100vw) calc(34 / var(--view-size) * 100vw);
    top: calc(24 / var(--view-size) * 100vw);
    left: calc(-12 / var(--view-size) * 100vw);
  }
}

.cont_list_item:nth-of-type(3) .item_box_head {
  line-height: 1.3;
  text-align: left;
  padding: calc(9 / var(--view-size) * 100vw) calc(21 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .cont_list_item:nth-of-type(3) .item_box_head {
    padding: calc(6 / var(--view-size) * 100vw) calc(23 / var(--view-size) * 100vw);
    top: calc(-102 / var(--view-size) * 100vw);
    left: calc(-12 / var(--view-size) * 100vw);
  }
}

.cont_list_item:nth-of-type(4) .item_box_head {
  padding: calc(12 / var(--view-size) * 100vw) calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .cont_list_item:nth-of-type(4) .item_box_head {
    padding: calc(12 / var(--view-size) * 100vw) calc(23 / var(--view-size) * 100vw);
  }
}

.item_box_inner {
  background-image: url("../image/features-01-pc.png");
  background-size: auto 100%;
  background-position: right center;
  display: flex;
  justify-content: flex-start;
  background-color: #fff;
  box-shadow: 0 calc(3.6 / var(--view-size) * 100vw) calc(3.6 / var(--view-size) * 100vw) 0 rgba(0, 0, 0, 0.25);
  padding-top: calc(74 / var(--view-size) * 100vw);
  padding-left: calc(28 / var(--view-size) * 100vw);
  padding-bottom: calc(43 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .item_box_inner {
    background-image: url("../image/features-01-sp.png");
    background-size: 100% auto;
    background-position: top center;
    flex-direction: column-reverse;
    height: auto;
    box-shadow: 0 calc(4 / var(--view-size) * 100vw) calc(4 / var(--view-size) * 100vw) 0 rgba(0, 0, 0, 0.25);
    padding-top: calc(442 / var(--view-size) * 100vw);
    padding-left: calc(30 / var(--view-size) * 100vw);
    padding-bottom: calc(32 / var(--view-size) * 100vw);
    padding-right: calc(30 / var(--view-size) * 100vw);
  }
}

.cont_list_item:nth-of-type(2) .item_box_inner {
  background-image: url("../image/features-02-pc.png");
  padding-top: calc(72 / var(--view-size) * 100vw);
  padding-left: calc(28 / var(--view-size) * 100vw);
  padding-bottom: calc(17 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .cont_list_item:nth-of-type(2) .item_box_inner {
    background-image: url("../image/features-02-sp.png");
    padding-top: calc(442 / var(--view-size) * 100vw);
    padding-left: calc(30 / var(--view-size) * 100vw);
    padding-bottom: calc(32 / var(--view-size) * 100vw);
    padding-right: calc(30 / var(--view-size) * 100vw);
  }
}

.cont_list_item:nth-of-type(3) .item_box_inner {
  background-image: url("../image/features-03-pc.png");
  padding-top: calc(105 / var(--view-size) * 100vw);
  padding-left: calc(28 / var(--view-size) * 100vw);
  padding-bottom: calc(10 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .cont_list_item:nth-of-type(3) .item_box_inner {
    background-image: url("../image/features-03-sp.png");
    padding-top: calc(442 / var(--view-size) * 100vw);
    padding-left: calc(30 / var(--view-size) * 100vw);
    padding-bottom: calc(32 / var(--view-size) * 100vw);
    padding-right: calc(30 / var(--view-size) * 100vw);
  }
}

.cont_list_item:nth-of-type(4) .item_box_inner {
  background-image: url("../image/features-04-pc.png");
  padding-top: calc(67 / var(--view-size) * 100vw);
  padding-left: calc(28 / var(--view-size) * 100vw);
  padding-bottom: calc(99 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .cont_list_item:nth-of-type(4) .item_box_inner {
    background-image: url("../image/features-04-sp.png");
    padding-top: calc(442 / var(--view-size) * 100vw);
    padding-left: calc(30 / var(--view-size) * 100vw);
    padding-bottom: calc(32 / var(--view-size) * 100vw);
    padding-right: calc(30 / var(--view-size) * 100vw);
  }
}

.box_inner_txt {
  font-size: clamp(1rem, 0rem + 1.25vw, 1.5rem);
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #333;
  text-shadow: 0 0 0.3125rem #fff, 0 0 0.3125rem #fff, 0 0 0.625rem #fff, 0 0 0.625rem #fff, 0 0 0.9375rem #fff, 0 0 0.9375rem #fff;
  width: calc(337 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .box_inner_txt {
    font-size: calc(32 / var(--view-size) * 100vw);
    letter-spacing: 0.01em;
    text-shadow: none;
    width: 100%;
  }
}

.cont_list_item:nth-of-type(3) .box_inner_txt {
  width: calc(394 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .cont_list_item:nth-of-type(3) .box_inner_txt {
    width: 100%;
  }
}

.box_inner_txt b {
  font-weight: 600;
}

.box_inner_img {
  position: relative;
  width: calc(339 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .box_inner_img {
    width: 100%;
    padding-top: 72%;
  }
}

.box_inner_img img {
  position: absolute;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.features_cta {
  width: calc(400 / var(--view-size) * 100vw);
  border: calc(1 / var(--view-size) * 100vw) solid #815724;
  margin-top: calc(40 / var(--view-size) * 100vw);
  margin-inline: auto;
}
@media (max-width: 999px) {
  .features_cta {
    width: calc(600 / var(--view-size) * 100vw);
    border-width: calc(1 / var(--view-size) * 100vw);
    margin-top: calc(80 / var(--view-size) * 100vw);
  }
}

.features_cta_link {
  display: block;
  font-size: clamp(1.5rem, 0rem + 1.875vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #000000;
  text-align: center;
  padding: calc(22 / var(--view-size) * 100vw) 0;
  padding-right: calc(37 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .features_cta_link {
    font-size: calc(40 / var(--view-size) * 100vw);
    padding: calc(29 / var(--view-size) * 100vw) calc(93 / var(--view-size) * 100vw);
  }
}

.features_cta_link::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: calc(30 / var(--view-size) * 100vw);
  transform: translateY(-50%);
  width: calc(24 / var(--view-size) * 100vw);
  height: calc(24 / var(--view-size) * 100vw);
  background-image: url("../image/cta-arrow-02.svg");
  background-size: contain;
}
@media (max-width: 999px) {
  .features_cta_link::after {
    right: calc(49 / var(--view-size) * 100vw);
    width: calc(36 / var(--view-size) * 100vw);
    height: calc(36 / var(--view-size) * 100vw);
  }
}

/* 
service : メニュー例
------------------------------ */
.service {
  background-color: #fff;
}

.service .inner {
  background-image: url("../image/service-bg-pc.jpg");
  background-size: contain;
  padding: calc(256 / var(--view-size) * 100vw) 11% calc(48 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .service .inner {
    background-image: url("../image/service-bg-sp.jpg");
    padding: calc(170 / var(--view-size) * 100vw) calc(0 / var(--view-size) * 100vw) calc(73 / var(--view-size) * 100vw);
  }
}

.service_ttl {
  background-color: #fff;
  width: calc(800 / var(--view-size) * 100vw);
  padding-top: calc(33 / var(--view-size) * 100vw);
  margin-inline: auto;
}
@media (max-width: 999px) {
  .service_ttl {
    width: calc(620 / var(--view-size) * 100vw);
    padding-top: calc(15 / var(--view-size) * 100vw);
  }
}

.service_cont {
  margin-top: calc(48 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .service_cont {
    margin-top: calc(68 / var(--view-size) * 100vw);
  }
}

.service_cont_box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 999px) {
  .service_cont_box {
    flex-direction: column;
    row-gap: calc(80 / var(--view-size) * 100vw);
  }
}

.cont_box_li {
  width: calc((100% - 35 / var(--view-size) * 100vw) / 2);
  background-color: #F3EEE8;
  padding: calc(137 / var(--view-size) * 100vw) 5.1% calc(35 / var(--view-size) * 100vw);
  margin-top: calc(120 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .cont_box_li {
    width: 100%;
    padding: calc(211 / var(--view-size) * 100vw) 4.5% calc(45 / var(--view-size) * 100vw);
    margin-top: calc(187 / var(--view-size) * 100vw);
  }
}

.cont_box_li:last-of-type {
  padding: calc(137 / var(--view-size) * 100vw) calc(64 / var(--view-size) * 100vw) calc(32 / var(--view-size) * 100vw);
  margin-top: calc(221 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .cont_box_li:last-of-type {
    padding: calc(217 / var(--view-size) * 100vw) 4.5% calc(45 / var(--view-size) * 100vw);
    margin-top: calc(187 / var(--view-size) * 100vw);
  }
}

.box_li_img {
  width: 83.1%;
  top: calc(-119 / var(--view-size) * 100vw);
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 999px) {
  .box_li_img {
    width: calc(620 / var(--view-size) * 100vw);
    top: calc(-189 / var(--view-size) * 100vw);
  }
}

.li_btm_ttl {
  width: calc(200 / var(--view-size) * 100vw);
  margin-inline: auto;
  font-size: clamp(2rem, 0rem + 2.5vw, 3rem);
  font-weight: 500;
  line-height: 1.4;
  color: #815724;
  text-align: center;
}
@media (max-width: 999px) {
  .li_btm_ttl {
    width: calc(361 / var(--view-size) * 100vw);
    font-size: calc(56 / var(--view-size) * 100vw);
  }
}

.li_btm_ttl span {
  display: block;
  font-size: clamp(1rem, 0rem + 1.25vw, 1.5rem);
  margin-top: calc(-5 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .li_btm_ttl span {
    font-size: calc(32 / var(--view-size) * 100vw);
    margin-top: calc(-5 / var(--view-size) * 100vw);
  }
}

.li_btm_ttl::before,
.li_btm_ttl::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(40 / var(--view-size) * 100vw);
  height: calc(1 / var(--view-size) * 100vw);
  background-color: #815724;
}
@media (max-width: 999px) {
  .li_btm_ttl::before,
  .li_btm_ttl::after {
    width: calc(62 / var(--view-size) * 100vw);
    height: calc(1 / var(--view-size) * 100vw);
  }
}

.li_btm_ttl::before {
  left: 0;
}

.li_btm_ttl::after {
  right: 0;
}

.cont_box_li:last-of-type .li_btm_ttl {
  width: calc(264 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .cont_box_li:last-of-type .li_btm_ttl {
    width: calc(500 / var(--view-size) * 100vw);
  }
}

.li_btm_box {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: calc(15 / var(--view-size) * 100vw);
       column-gap: calc(15 / var(--view-size) * 100vw);
  margin-top: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .li_btm_box {
    justify-content: center;
    -moz-column-gap: calc(32 / var(--view-size) * 100vw);
         column-gap: calc(32 / var(--view-size) * 100vw);
    margin-top: calc(32 / var(--view-size) * 100vw);
  }
}

.li_btm_left {
  display: flex;
  flex-direction: column;
  row-gap: calc(7 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .li_btm_left {
    row-gap: calc(7 / var(--view-size) * 100vw);
  }
}

.li_btm_right {
  display: flex;
  flex-direction: column;
  row-gap: calc(7 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .li_btm_right {
    row-gap: calc(7 / var(--view-size) * 100vw);
  }
}

.btm_list {
  position: relative;
  font-size: clamp(1rem, 0rem + 1.25vw, 1.5rem);
  line-height: 1.5;
  color: #333;
  padding-left: calc(19 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .btm_list {
    font-size: calc(30 / var(--view-size) * 100vw);
    line-height: 1.85;
    padding-left: calc(40 / var(--view-size) * 100vw);
  }
}

.btm_list::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: calc(16 / var(--view-size) * 100vw);
  height: calc(11 / var(--view-size) * 100vw);
  background-image: url("../image/check-mark.png");
  background-size: contain;
}
@media (max-width: 999px) {
  .btm_list::before {
    width: calc(32 / var(--view-size) * 100vw);
    height: calc(22 / var(--view-size) * 100vw);
  }
}

.service_foot {
  margin-top: calc(50 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .service_foot {
    margin-top: calc(74 / var(--view-size) * 100vw);
  }
}

.service_foot_ttl {
  font-size: clamp(2rem, 0rem + 2.5vw, 3rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #815724;
  text-align: center;
}
@media (max-width: 999px) {
  .service_foot_ttl {
    font-size: calc(48 / var(--view-size) * 100vw);
    line-height: 1.4;
  }
}

/* 
support : 本部のサポート
------------------------------ */
.support {
  background-color: #fff;
}

.support .inner {
  background-image: url("../image/support-bg-pc.png");
  background-size: 100% auto;
  background-position: top calc(140 / var(--view-size) * 100vw) center;
  padding: calc(46 / var(--view-size) * 100vw) 0 calc(45 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .support .inner {
    background-image: url("../image/support-bg-sp.png");
    background-position: top calc(110 / var(--view-size) * 100vw) center;
    background-size: 100% 82%;
    padding: calc(0 / var(--view-size) * 100vw) 0 calc(74 / var(--view-size) * 100vw);
  }
}

.support_box {
  margin-top: calc(36 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .support_box {
    margin-top: calc(65 / var(--view-size) * 100vw);
  }
}

.support_box_left {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 999px) {
  .support_box_left {
    width: 100%;
  }
}

.support_box_ttl {
  background-color: #815724;
  font-size: clamp(1.5rem, 0rem + 1.875vw, 2.25rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}
@media (max-width: 999px) {
  .support_box_ttl {
    font-size: calc(40 / var(--view-size) * 100vw);
  }
}

.box_left_ttl {
  text-align: right;
  padding: calc(6 / var(--view-size) * 100vw) 0;
  padding-right: calc(118 / var(--view-size) * 100vw);
  clip-path: polygon(0 0, 100% 0, 93.5% 100%, 0% 100%);
}
@media (max-width: 999px) {
  .box_left_ttl {
    width: calc(722 / var(--view-size) * 100vw);
    text-align: center;
    padding: calc(5 / var(--view-size) * 100vw) 0 calc(8 / var(--view-size) * 100vw);
    padding-left: calc(30 / var(--view-size) * 100vw);
    clip-path: polygon(0 0, 100% 0, 93.5% 100%, 0% 100%);
  }
}

.box_right_ttl {
  text-align: left;
  padding: calc(6 / var(--view-size) * 100vw) 0;
  padding-left: calc(123 / var(--view-size) * 100vw);
  margin-top: calc(16 / var(--view-size) * 100vw);
  clip-path: polygon(6.5% 0, 100% 0, 100% 100%, 0% 100%);
}
@media (max-width: 999px) {
  .box_right_ttl {
    width: calc(722 / var(--view-size) * 100vw);
    text-align: center;
    padding: calc(5 / var(--view-size) * 100vw) 0 calc(8 / var(--view-size) * 100vw);
    padding-left: calc(30 / var(--view-size) * 100vw);
    margin-top: calc(64 / var(--view-size) * 100vw);
    clip-path: polygon(0 0, 100% 0, 93.5% 100%, 0% 100%);
  }
}

.support_box_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: calc(8 / var(--view-size) * 100vw);
  padding-right: calc(33 / var(--view-size) * 100vw);
  margin-top: calc(16 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .support_box_list {
    justify-content: center;
    gap: calc(12 / var(--view-size) * 100vw);
    padding: 0 calc(13 / var(--view-size) * 100vw);
    margin-top: calc(62 / var(--view-size) * 100vw);
  }
}

.support_box_right .support_box_list {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(37 / var(--view-size) * 100vw);
  margin-top: 0;
}
@media (max-width: 999px) {
  .support_box_right .support_box_list {
    justify-content: center;
    padding: 0 calc(13 / var(--view-size) * 100vw);
    margin-top: calc(62 / var(--view-size) * 100vw);
  }
}

.box_list_item {
  background-image: url("../image/support-icon-bg.png");
  background-size: contain;
  width: calc(224 / var(--view-size) * 100vw);
  aspect-ratio: 1/1;
  padding-top: calc(51 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .box_list_item {
    width: calc(340 / var(--view-size) * 100vw);
    padding-top: calc(76 / var(--view-size) * 100vw);
  }
}

@media (max-width: 999px) {
  .box_list_item:nth-of-type(2) {
    padding-top: calc(58 / var(--view-size) * 100vw);
  }
}

.box_list_item:nth-of-type(4) {
  padding-top: calc(27 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .box_list_item:nth-of-type(4) {
    padding-top: calc(27 / var(--view-size) * 100vw);
  }
}

.support_box_right .box_list_item {
  padding-top: calc(36 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .support_box_right .box_list_item {
    padding-top: calc(56 / var(--view-size) * 100vw);
  }
}

.support_box_right .box_list_item:nth-of-type(2) {
  padding-top: calc(48 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .support_box_right .box_list_item:nth-of-type(2) {
    padding-top: calc(77 / var(--view-size) * 100vw);
  }
}

.support_box_right .box_list_item:nth-of-type(3) {
  padding-top: calc(41 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .support_box_right .box_list_item:nth-of-type(3) {
    padding-top: calc(61 / var(--view-size) * 100vw);
  }
}

.support_box_right .box_list_item:nth-of-type(4) {
  padding-top: calc(48 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .support_box_right .box_list_item:nth-of-type(4) {
    padding-top: calc(61 / var(--view-size) * 100vw);
  }
}

.list_item_img {
  width: calc(56 / var(--view-size) * 100vw);
  margin-inline: auto;
}
@media (max-width: 999px) {
  .list_item_img {
    width: calc(88 / var(--view-size) * 100vw);
  }
}

.box_list_item:nth-of-type(2) .list_item_img {
  width: calc(38 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .box_list_item:nth-of-type(2) .list_item_img {
    width: calc(60 / var(--view-size) * 100vw);
  }
}

.box_list_item:nth-of-type(3) .list_item_img {
  width: calc(54 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .box_list_item:nth-of-type(3) .list_item_img {
    width: calc(88 / var(--view-size) * 100vw);
  }
}

.box_list_item:nth-of-type(4) .list_item_img {
  width: calc(54 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .box_list_item:nth-of-type(4) .list_item_img {
    width: calc(88 / var(--view-size) * 100vw);
  }
}

.support_box_right .box_list_item .list_item_img {
  width: calc(56 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .support_box_right .box_list_item .list_item_img {
    width: calc(88 / var(--view-size) * 100vw);
  }
}

.support_box_right .box_list_item:nth-of-type(2) .list_item_img {
  width: calc(56 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .support_box_right .box_list_item:nth-of-type(2) .list_item_img {
    width: calc(88 / var(--view-size) * 100vw);
  }
}

.support_box_right .box_list_item:nth-of-type(3) .list_item_img {
  width: calc(56 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .support_box_right .box_list_item:nth-of-type(3) .list_item_img {
    width: calc(88 / var(--view-size) * 100vw);
  }
}

.support_box_right .box_list_item:nth-of-type(4) .list_item_img {
  width: calc(71 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .support_box_right .box_list_item:nth-of-type(4) .list_item_img {
    width: calc(100 / var(--view-size) * 100vw);
  }
}

.list_item_txt {
  font-size: clamp(1rem, 0rem + 1.25vw, 1.5rem);
  text-align: center;
  margin-top: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .list_item_txt {
    font-size: calc(28 / var(--view-size) * 100vw);
    margin-top: calc(24 / var(--view-size) * 100vw);
  }
}

.box_list_item:nth-of-type(4) .list_item_txt {
  margin-top: calc(14 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .box_list_item:nth-of-type(4) .list_item_txt {
    margin-top: calc(24 / var(--view-size) * 100vw);
  }
}

.support_box_right {
  width: 50%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  padding-bottom: calc(26 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .support_box_right {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: calc(0 / var(--view-size) * 100vw);
  }
}

.support_box_small {
  width: 100%;
  bottom: 0;
  font-size: clamp(0.75rem, 0rem + 0.9375vw, 1.125rem);
  text-align: center;
}
@media (max-width: 999px) {
  .support_box_small {
    font-size: calc(18 / var(--view-size) * 100vw);
    bottom: calc(-50 / var(--view-size) * 100vw);
    left: auto;
    right: calc(29 / var(--view-size) * 100vw);
    transform: none;
  }
}

.support_foot {
  margin-top: calc(54 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .support_foot {
    margin-top: calc(128 / var(--view-size) * 100vw);
  }
}

.support_foot_ttl {
  font-size: clamp(2rem, 0rem + 2.5vw, 3rem);
  font-weight: 500;
  line-height: 1.5;
  color: #815724;
  text-align: center;
}
@media (max-width: 999px) {
  .support_foot_ttl {
    font-size: calc(48 / var(--view-size) * 100vw);
    line-height: 1.4;
    letter-spacing: 0.1em;
  }
}

/* 
steps : 開業までの流れ
------------------------------ */
.steps {
  background-color: #fff;
}

.steps .inner {
  background-image: url("../image/steps-bg-pc.png");
  background-size: contain;
  background-position: bottom center;
  padding: calc(0 / var(--view-size) * 100vw) 10.2% calc(79 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .steps .inner {
    background-image: url("../image/steps-bg-sp.png");
    background-size: 100% 100%;
    padding: calc(0 / var(--view-size) * 100vw) calc(25 / var(--view-size) * 100vw) calc(71 / var(--view-size) * 100vw);
  }
}

.steps_box {
  margin-top: calc(48 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .steps_box {
    margin-top: calc(80 / var(--view-size) * 100vw);
  }
}

.steps_box_cont {
  justify-content: space-between;
  row-gap: calc(40 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .steps_box_cont {
    row-gap: calc(32 / var(--view-size) * 100vw);
  }
}

.box_cont_li {
  width: 22%;
  padding: calc(24 / var(--view-size) * 100vw) calc(19 / var(--view-size) * 100vw) calc(6 / var(--view-size) * 100vw);
  border: calc(1 / var(--view-size) * 100vw) solid #815724;
  background-color: #fff;
}
@media (max-width: 999px) {
  .box_cont_li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: auto;
    min-height: calc(288 / var(--view-size) * 100vw);
    padding: calc(24 / var(--view-size) * 100vw) calc(28 / var(--view-size) * 100vw) calc(24 / var(--view-size) * 100vw);
    padding-left: 40%;
    border-width: calc(1 / var(--view-size) * 100vw);
  }
}

.cont_li_ttl {
  font-size: clamp(1.5rem, 0rem + 1.875vw, 2.25rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #815724;
  text-align: center;
}
@media (max-width: 999px) {
  .cont_li_ttl {
    font-size: calc(48 / var(--view-size) * 100vw);
    text-align: left;
    display: flex;
    align-items: center;
    -moz-column-gap: calc(10 / var(--view-size) * 100vw);
         column-gap: calc(10 / var(--view-size) * 100vw);
    width: calc(388 / var(--view-size) * 100vw);
    padding-bottom: calc(14 / var(--view-size) * 100vw);
    border-bottom: calc(2 / var(--view-size) * 100vw) solid #815724;
  }
}

.cont_li_ttl span:first-of-type::before,
.cont_li_ttl span:first-of-type::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(24 / var(--view-size) * 100vw);
  height: calc(1 / var(--view-size) * 100vw);
  background-color: #815724;
}
@media (max-width: 999px) {
  .cont_li_ttl span:first-of-type::before,
  .cont_li_ttl span:first-of-type::after {
    display: none;
  }
}

.cont_li_ttl span:first-of-type::before {
  left: calc(-32 / var(--view-size) * 100vw);
}

.cont_li_ttl span:first-of-type::after {
  right: calc(-32 / var(--view-size) * 100vw);
}

.cont_li_ttl span:last-of-type {
  display: block;
  margin-top: calc(8 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .cont_li_ttl span:last-of-type {
    display: inline-block;
    margin-top: 0;
  }
}

.cont_li_img {
  width: calc(133 / var(--view-size) * 100vw);
  height: calc(80 / var(--view-size) * 100vw);
  margin-top: calc(31 / var(--view-size) * 100vw);
  margin-inline: auto;
}
@media (max-width: 999px) {
  .cont_li_img {
    position: absolute;
    top: 50%;
    left: 6.6%;
    transform: translateY(-50%);
    width: 28.7%;
    height: auto;
    margin-top: 0;
  }
}

.box_cont_li:nth-of-type(2) .cont_li_img {
  width: calc(75 / var(--view-size) * 100vw);
  margin-top: calc(26 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .box_cont_li:nth-of-type(2) .cont_li_img {
    width: 19.3%;
    left: 11.3%;
    margin-top: 0;
  }
}

.box_cont_li:nth-of-type(3) .cont_li_img {
  width: calc(59 / var(--view-size) * 100vw);
  margin-top: calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .box_cont_li:nth-of-type(3) .cont_li_img {
    width: 15.6%;
    left: 13.2%;
    margin-top: 0;
  }
}

.box_cont_li:nth-of-type(4) .cont_li_img {
  width: calc(64 / var(--view-size) * 100vw);
  margin-top: calc(30 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .box_cont_li:nth-of-type(4) .cont_li_img {
    width: 16%;
    left: 13%;
    margin-top: 0;
  }
}

.box_cont_li:nth-of-type(5) .cont_li_img {
  width: calc(104 / var(--view-size) * 100vw);
  margin-top: calc(25 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .box_cont_li:nth-of-type(5) .cont_li_img {
    width: 23%;
    left: 9.6%;
    margin-top: 0;
  }
}

.box_cont_li:nth-of-type(6) .cont_li_img {
  width: calc(83 / var(--view-size) * 100vw);
  margin-top: calc(30 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .box_cont_li:nth-of-type(6) .cont_li_img {
    width: 20%;
    left: 11%;
    margin-top: 0;
  }
}

.box_cont_li:nth-of-type(7) .cont_li_img {
  width: calc(92 / var(--view-size) * 100vw);
  margin-top: calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .box_cont_li:nth-of-type(7) .cont_li_img {
    width: 23.7%;
    left: 8.9%;
    margin-top: 0;
  }
}

.box_cont_li:nth-of-type(8) .cont_li_img {
  width: calc(91 / var(--view-size) * 100vw);
  margin-top: calc(25 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .box_cont_li:nth-of-type(8) .cont_li_img {
    width: 23.2%;
    left: 9.3%;
    margin-top: 0;
  }
}

.cont_li_txt {
  font-size: clamp(1rem, 0rem + 1.25vw, 1.5rem);
  margin-top: calc(16 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .cont_li_txt {
    font-size: calc(32 / var(--view-size) * 100vw);
    margin-top: calc(16 / var(--view-size) * 100vw);
  }
}

.cont_li_txt span {
  display: block;
  font-size: clamp(0.6875rem, 0rem + 0.859375vw, 1.03125rem);
}
@media (max-width: 999px) {
  .cont_li_txt span {
    font-size: calc(20 / var(--view-size) * 100vw);
    margin-top: calc(-6 / var(--view-size) * 100vw);
  }
}

.steps_cta {
  width: calc(400 / var(--view-size) * 100vw);
  border: calc(1 / var(--view-size) * 100vw) solid #FFFFFF;
  background-color: #815724;
  margin-top: calc(80 / var(--view-size) * 100vw);
  margin-inline: auto;
}
@media (max-width: 999px) {
  .steps_cta {
    width: calc(600 / var(--view-size) * 100vw);
    border: none;
    margin-top: calc(60 / var(--view-size) * 100vw);
  }
}

.steps_cta_link {
  display: block;
  font-size: clamp(1.5rem, 0rem + 1.875vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-align: center;
  padding: calc(21 / var(--view-size) * 100vw) 0;
  padding-right: calc(37 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .steps_cta_link {
    font-size: calc(40 / var(--view-size) * 100vw);
    font-weight: 500;
    padding: calc(30 / var(--view-size) * 100vw) calc(95 / var(--view-size) * 100vw);
  }
}

.steps_cta_link::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: calc(30 / var(--view-size) * 100vw);
  transform: translateY(-50%);
  width: calc(24 / var(--view-size) * 100vw);
  height: calc(24 / var(--view-size) * 100vw);
  background-image: url("../image/cta-arrow-01.svg");
  background-size: contain;
}
@media (max-width: 999px) {
  .steps_cta_link::after {
    right: calc(50 / var(--view-size) * 100vw);
    width: calc(36 / var(--view-size) * 100vw);
    height: calc(36 / var(--view-size) * 100vw);
  }
}

/* 
info : 事前説明会のご案内
------------------------------ */
.info {
  background-color: #fff;
}

.info .inner {
  padding: calc(46 / var(--view-size) * 100vw) 0 calc(49 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .info .inner {
    padding: calc(75 / var(--view-size) * 100vw) 0 0;
  }
}

@media (max-width: 999px) {
  .info_ttl span {
    display: block;
    line-height: 0.9;
  }
}

@media (max-width: 999px) {
  .info .common_sub {
    margin-top: calc(10 / var(--view-size) * 100vw);
  }
}

.info_exp {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  -moz-column-gap: 3.5%;
       column-gap: 3.5%;
  padding-top: calc(25 / var(--view-size) * 100vw);
  padding-left: 11.4%;
  margin-top: calc(65 / var(--view-size) * 100vw);
  background-image: url("../image/info-bg-pc.jpg");
  background-size: 85.5% 100%;
}
@media (max-width: 999px) {
  .info_exp {
    flex-direction: column;
    justify-content: flex-start;
    -moz-column-gap: 0;
         column-gap: 0;
    padding: 0 calc(25 / var(--view-size) * 100vw) calc(80 / var(--view-size) * 100vw);
    margin-top: calc(80 / var(--view-size) * 100vw);
    background-image: url("../image/info-bg-sp.jpg");
    background-size: 100% 72%;
    background-position: bottom center;
  }
}

.info_exp_img {
  display: flex;
  width: 42.4%;
  padding-top: calc(10 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .info_exp_img {
    width: 100%;
    padding-top: 0;
  }
}

.exp_img_01 {
  width: calc(320 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .exp_img_01 {
    width: 66.5%;
  }
}

.exp_img_02 {
  width: calc(148 / var(--view-size) * 100vw);
  margin-top: calc(30 / var(--view-size) * 100vw);
  margin-left: calc(12 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .exp_img_02 {
    width: 31%;
    margin-top: calc(44 / var(--view-size) * 100vw);
    margin-left: calc(15 / var(--view-size) * 100vw);
  }
}

.info_exp_cont {
  display: flex;
  flex-direction: row-reverse;
  width: 41.1%;
}
@media (max-width: 999px) {
  .info_exp_cont {
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-top: calc(32 / var(--view-size) * 100vw);
  }
}

.exp_cont_ttl {
  writing-mode: vertical-rl;
  font-size: clamp(2.25rem, 0rem + 2.8125vw, 3.375rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #815724;
  height: calc(346 / var(--view-size) * 100vw);
  padding-right: calc(10 / var(--view-size) * 100vw);
  border-right: calc(1 / var(--view-size) * 100vw) solid #815724;
  margin-left: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .exp_cont_ttl {
    writing-mode: horizontal-tb;
    font-size: calc(48 / var(--view-size) * 100vw);
    letter-spacing: 0.03em;
    height: auto;
    padding: 0 0 calc(33 / var(--view-size) * 100vw);
    border-right: none;
    border-bottom: calc(1 / var(--view-size) * 100vw) solid #815724;
    margin: 0;
  }
}

.exp_cont_txt {
  writing-mode: vertical-rl;
  font-size: clamp(1rem, 0rem + 1.25vw, 1.5rem);
  line-height: 1.5;
  letter-spacing: 0.33em;
  margin-left: calc(25 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .exp_cont_txt {
    writing-mode: horizontal-tb;
    font-size: calc(32 / var(--view-size) * 100vw);
    letter-spacing: 0.3em;
    text-align: center;
    margin: calc(32 / var(--view-size) * 100vw) 0 0;
  }
}

.exp_cont_box {
  display: flex;
  flex-direction: row-reverse;
  -moz-column-gap: calc(20 / var(--view-size) * 100vw);
       column-gap: calc(20 / var(--view-size) * 100vw);
  height: calc(357 / var(--view-size) * 100vw);
  background-color: #fff;
  padding: calc(24 / var(--view-size) * 100vw) calc(45 / var(--view-size) * 100vw);
  border: calc(1 / var(--view-size) * 100vw) solid #815724;
}
@media (max-width: 999px) {
  .exp_cont_box {
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: calc(22 / var(--view-size) * 100vw);
    height: auto;
    padding: calc(50 / var(--view-size) * 100vw) calc(69 / var(--view-size) * 100vw);
    padding-right: calc(50 / var(--view-size) * 100vw);
    border-width: calc(2 / var(--view-size) * 100vw);
    margin-top: calc(30 / var(--view-size) * 100vw);
  }
}

.cont_box_item {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
@media (max-width: 999px) {
  .cont_box_item {
    flex-direction: row;
  }
}

.box_item_ttl {
  writing-mode: vertical-rl;
  text-combine-upright: all;
  font-size: clamp(1.375rem, 0rem + 1.71875vw, 2.0625rem);
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #815724;
  padding-bottom: calc(18 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .box_item_ttl {
    writing-mode: horizontal-tb;
    font-size: calc(40 / var(--view-size) * 100vw);
    padding-bottom: 0;
    padding-right: calc(48 / var(--view-size) * 100vw);
  }
}

.box_item_ttl::after {
  display: block;
  content: "";
  position: absolute;
  width: calc(1 / var(--view-size) * 100vw);
  height: calc(8 / var(--view-size) * 100vw);
  background-color: #815724;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 999px) {
  .box_item_ttl::after {
    width: calc(16 / var(--view-size) * 100vw);
    height: calc(2 / var(--view-size) * 100vw);
    top: 50%;
    left: 71%;
    bottom: auto;
    transform: translate(-50%, -50%);
  }
}

.box_item_txt {
  writing-mode: vertical-rl;
  font-size: clamp(1rem, 0rem + 1.25vw, 1.5rem);
  line-height: 1.3;
  letter-spacing: 0.3em;
  margin-top: calc(6 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .box_item_txt {
    writing-mode: horizontal-tb;
    font-size: calc(40 / var(--view-size) * 100vw);
    letter-spacing: 0.05em;
    margin: 0;
  }
}

.box_item_txt span {
  text-combine-upright: all;
}

.info_partake {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 3.5%;
       column-gap: 3.5%;
  background-image: url("../image/info-bg-pc.jpg");
  background-size: 80% 100%;
  background-position: right center;
  padding-top: calc(40 / var(--view-size) * 100vw);
  padding-bottom: calc(41 / var(--view-size) * 100vw);
  padding-right: 6.8%;
  margin-top: calc(100 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .info_partake {
    flex-direction: column;
    justify-content: flex-start;
    -moz-column-gap: 0;
         column-gap: 0;
    background-image: url("../image/info-bg-sp.jpg");
    background-size: 100% 70%;
    background-position: bottom center;
    padding: 0 calc(25 / var(--view-size) * 100vw);
    padding-bottom: calc(80 / var(--view-size) * 100vw);
    margin-top: calc(80 / var(--view-size) * 100vw);
  }
}

.info_partake_img {
  width: 48.8%;
}
@media (max-width: 999px) {
  .info_partake_img {
    width: 100%;
    padding-top: 88.9%;
  }
}

.info_partake_img figure {
  width: 100%;
  top: calc(-82 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .info_partake_img figure {
    top: calc(0 / var(--view-size) * 100vw);
  }
}

.info_partake_cont {
  width: 41.7%;
}
@media (max-width: 999px) {
  .info_partake_cont {
    text-align: center;
    width: 100%;
    margin-top: calc(24 / var(--view-size) * 100vw);
  }
}

.partake_cont_ttl {
  font-size: clamp(2rem, 0rem + 2.5vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #815724;
  border-bottom: calc(1 / var(--view-size) * 100vw) solid #815724;
}
@media (max-width: 999px) {
  .partake_cont_ttl {
    display: inline-block;
    font-size: calc(48 / var(--view-size) * 100vw);
    line-height: 1.3;
    letter-spacing: 0.11em;
    padding-bottom: calc(26 / var(--view-size) * 100vw);
    border-width: calc(1 / var(--view-size) * 100vw);
    margin-inline: auto;
  }
}

.partake_cont_txt {
  font-size: clamp(1rem, 0rem + 1.25vw, 1.5rem);
  margin-top: calc(16 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .partake_cont_txt {
    font-size: calc(32 / var(--view-size) * 100vw);
    letter-spacing: 0.03em;
    text-align: center;
    margin-top: calc(31 / var(--view-size) * 100vw);
  }
}

.partake_cont_box {
  font-size: clamp(1.125rem, 0rem + 1.40625vw, 1.6875rem);
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border: calc(1 / var(--view-size) * 100vw) solid #815724;
  padding: calc(26 / var(--view-size) * 100vw) calc(24 / var(--view-size) * 100vw) calc(24 / var(--view-size) * 100vw);
  margin-top: calc(16 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .partake_cont_box {
    font-size: calc(32 / var(--view-size) * 100vw);
    text-align: left;
    border-width: calc(1 / var(--view-size) * 100vw);
    padding: calc(36 / var(--view-size) * 100vw) calc(62 / var(--view-size) * 100vw) calc(32 / var(--view-size) * 100vw);
    margin-top: calc(32 / var(--view-size) * 100vw);
  }
}

.partake_cont_box dt {
  font-weight: 700;
  width: 15%;
}
@media (max-width: 999px) {
  .partake_cont_box dt {
    width: 16.3%;
  }
}

.partake_cont_box dd {
  width: 85%;
}
@media (max-width: 999px) {
  .partake_cont_box dd {
    width: 83.7%;
  }
}

.partake_cont_box dt::after {
  content: ":";
  font-weight: 400;
  padding-left: calc(7 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .partake_cont_box dt::after {
    padding-left: calc(7 / var(--view-size) * 100vw);
  }
}

.partake_cont_box dt:last-of-type,
.partake_cont_box dd:last-of-type {
  margin-top: calc(11 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .partake_cont_box dt:last-of-type,
  .partake_cont_box dd:last-of-type {
    margin-top: calc(15 / var(--view-size) * 100vw);
  }
}

.partake_cont_mail {
  margin-top: calc(15 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .partake_cont_mail {
    width: calc(640 / var(--view-size) * 100vw);
    margin-top: calc(30 / var(--view-size) * 100vw);
    margin-inline: auto;
  }
}

.cont_mail_link {
  font-size: clamp(1.5rem, 0rem + 1.875vw, 2.25rem);
  letter-spacing: 0.025em;
  padding-left: calc(36 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .cont_mail_link {
    font-size: calc(40 / var(--view-size) * 100vw);
    letter-spacing: 0.02em;
    padding-left: calc(77 / var(--view-size) * 100vw);
  }
}

.cont_mail_link::before {
  display: block;
  content: "";
  position: absolute;
  top: 67%;
  left: 0;
  transform: translateY(-50%);
  width: calc(24 / var(--view-size) * 100vw);
  height: calc(18 / var(--view-size) * 100vw);
  background-image: url("../image/mail-ico.svg");
  background-size: contain;
}
@media (max-width: 999px) {
  .cont_mail_link::before {
    left: calc(13 / var(--view-size) * 100vw);
    width: calc(45 / var(--view-size) * 100vw);
    height: calc(35 / var(--view-size) * 100vw);
  }
}

.cont_mail_txt {
  font-size: clamp(0.75rem, 0rem + 0.9375vw, 1.125rem);
  margin-top: calc(9 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .cont_mail_txt {
    font-size: calc(20 / var(--view-size) * 100vw);
    margin-top: calc(15 / var(--view-size) * 100vw);
  }
}

.info_cta {
  width: calc(400 / var(--view-size) * 100vw);
  border: calc(1 / var(--view-size) * 100vw) solid #815724;
  margin-inline: auto;
  margin-top: calc(92 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .info_cta {
    width: calc(600 / var(--view-size) * 100vw);
    border-width: calc(2 / var(--view-size) * 100vw);
    margin-top: calc(83 / var(--view-size) * 100vw);
  }
}

.info_cta_link {
  display: block;
  font-size: clamp(1.5rem, 0rem + 1.875vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  padding: calc(21 / var(--view-size) * 100vw) 0;
  padding-right: calc(37 / var(--view-size) * 100vw);
}
@media (max-width: 999px) {
  .info_cta_link {
    font-size: calc(40 / var(--view-size) * 100vw);
    padding: calc(28 / var(--view-size) * 100vw) calc(93 / var(--view-size) * 100vw);
  }
}

.info_cta_link::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: calc(30 / var(--view-size) * 100vw);
  transform: translateY(-50%);
  width: calc(24 / var(--view-size) * 100vw);
  height: calc(24 / var(--view-size) * 100vw);
  background-image: url("../image/cta-arrow-02.svg");
  background-size: contain;
}
@media (max-width: 999px) {
  .info_cta_link::after {
    right: calc(50 / var(--view-size) * 100vw);
    width: calc(36 / var(--view-size) * 100vw);
    height: calc(36 / var(--view-size) * 100vw);
  }
}/*# sourceMappingURL=style.css.map */