@charset "UTF-8";
:root {
  --base: "Zen Kaku Gothic New", sans-serif;
  --en: "Lexend Giga", sans-serif;
  --mc: #cbc4b8;
  --fc: #1b1b1b;
  --mq: 4.8;
  /*
  --mq: 12.8vw;
  @media screen and (max-width: 1024px) {
    --mq: 7.5vw;
  }
  @media screen and (max-width: 479px) {
    --mq: 3.75vw;
  }*/
}

/*---変数---*/
/* 要素 フォントサイズ・マージン・パディングをリセット */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

/* 行の高=フォントサイズ */
body {
  line-height: 1.5;
  letter-spacing: 0.1em;
}

/* 新規追加要素をブロック要素化 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* ulのマーカー非表示 */
ol,
ul,
li {
  list-style: none;
}

/* 引用符の非表示 */
blockquote,
q {
  quotes: none;
}

/* blockquote要素、q要素の前後にコンテンツ非表示 */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}

/* ins要素 デフォルトセット 色を変える場合はここで変更 */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素 デフォルトセット 色やフォントスタイルを変える場合はここで変更 */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* テキスト 打ち消し線 */
del {
  text-decoration: line-through;
}

/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*　隣接するセルのボーダーを重ねて表示　*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

/* 水平罫線デフォルトリセット */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
  border: 0;
}

/* 縦方向の揃え 中央揃え */
input,
select {
  vertical-align: middle;
}

/* 画像を縦に並べた時に余白0 */
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:after {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
}

br {
  line-height: inherit;
}

span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

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

section {
  position: relative;
}

input[type="submit"],
input[type="button"] {
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

main {
  display: block;
}

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

sup {
  position: relative;
  top: -1ex;
  vertical-align: baseline;
}

button {
  outline: none;
}

iframe {
  display: block;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  position: relative;
  -webkit-text-size-adjust: 100%;
  font-family: var(--base);
  font-size: 1rem;
  color: var(--fc);
}
@media all and (-ms-high-contrast: none) {
  body {
    font-family: var(--base);
  }
}
body.fix {
  position: fixed;
  width: 100%;
}
body.open {
  overflow: hidden;
}

html,
body {
  position: relative;
  width: 100%;
}

*:focus {
  outline: none;
}

p,
li,
dl,
tr,
th,
td {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.75;
}
@media screen and (max-width: 479px) {
  p,
  li,
  dl,
  tr,
  th,
  td {
    font-size: min(3.7333333333vw, 1.4rem);
  }
}

span {
  font-weight: inherit;
  letter-spacing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0;
  line-height: 1.35;
}

a,
a * {
  box-sizing: border-box;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

.pc {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}

.pc-tb {
  display: block;
}
@media screen and (max-width: 479px) {
  .pc-tb {
    display: none !important;
  }
}

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

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

.sp {
  display: none !important;
}
@media screen and (max-width: 479px) {
  .sp {
    display: block !important;
  }
}

.fade-up {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translate(-50%, 100%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
.fade-down {
  animation: fadeDown 0.6s forwards;
}

@keyframes fadeDown {
  from {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  to {
    opacity: 0;
    transform: translate(-50%, 100%);
  }
}
.cmn-wrap {
  position: relative;
  margin: 0 auto;
  padding-inline: 32px;
  width: 100%;
}
@media screen and (max-width: 479px) {
  .cmn-wrap {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 360px) {
  .cmn-wrap {
    padding-inline: 16px;
  }
}
.cmn-wrap.--full {
  padding-bottom: 0;
  padding-inline: 0;
}

.cmn-ttl {
  position: relative;
  text-align: center;
}
.cmn-ttl__main {
  position: relative;
  display: block;
  color: #434343;
  text-align: center;
  font-size: 5.4rem;
  font-family: var(--en);
  font-weight: 200;
  line-height: 100%;
  text-transform: uppercase;
}
@media screen and (max-width: 479px) {
  .cmn-ttl__main {
    font-size: min(11.2vw, 4.2rem);
  }
}
.cmn-ttl__sub {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 479px) {
  .cmn-ttl__sub {
    margin-top: -3px;
    font-size: min(3.7333333333vw, 1.4rem);
    letter-spacing: 0;
  }
}
.cmn-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 242px;
  aspect-ratio: 404/47;
  background: url(./img/line-ttl.png) no-repeat center center/cover;
}
.cmn-ttl.--gray::before {
  background: url(./img/line-ttl_gray.png) no-repeat center center/cover;
}

.wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: auto;
  max-width: 960px;
}
@media screen and (max-width: 479px) {
  .wrap {
    padding-inline: 0;
  }
}
.wrap::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(./img/bg-body.jpg) no-repeat top center/cover;
  pointer-events: none;
}
@media screen and (max-width: 479px) {
  .wrap::before {
    content: none;
  }
}

.hd {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
.hd-cnt {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-inline: 20px;
  margin-inline: auto;
  max-width: 1325px;
  height: 100vh;
}
.hd-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 12.5vw;
  padding-left: 24px;
  height: 100%;
}
.hd-name {
  margin-bottom: 56px;
  width: 100%;
  max-width: 266px;
}
.hd-name img {
  width: 100%;
}
.hd-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: min(26.3888888889vw, 48rem);
  height: 100%;
}
.hd-nav__list {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 280px;
}
.hd-nav__item {
  margin-bottom: 0;
  padding: 0;
  width: 100%;
}
.hd-nav__link {
  display: block;
  padding-block: 7px;
  padding-inline: 0;
  height: auto;
  width: auto;
  overflow: visible;
  text-align: center;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .hd-nav__link:hover {
    color: var(--mc);
  }
}
.hd-nav__link.active {
  color: var(--mc);
}
.hd-nav__link-st {
  display: block;
  color: #000;
  text-align: center;
  font-size: 2rem;
  text-transform: capitalize;
}
.hd-cta {
  margin-block: auto 48px;
  max-width: 315px;
}
.hd-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: var(--fc);
  opacity: 0;
  cursor: pointer;
  z-index: 1002;
  opacity: 0;
}
.hd-toggle__line {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 16px;
}
.hd-toggle span {
  display: block;
  position: absolute;
  right: 0;
  width: 100%;
  background: #fff;
}
.hd-toggle span {
  height: 1px;
}
.hd-toggle span:nth-child(1) {
  top: 0;
}
.hd-toggle span:nth-child(2) {
  top: 8px;
}
.hd-toggle span:nth-child(3) {
  top: 16px;
}
@media screen and (max-width: 1024px) {
  .hd {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    height: 56px;
    line-height: 1;
    transition: all 0.4s;
    z-index: 1000;
  }
  .hd-cnt {
    align-items: center;
    flex-wrap: nowrap;
    padding-inline: 20px;
    height: 100%;
  }
  .hd-main {
    align-items: center;
    padding: 0;
    width: auto;
    background: transparent;
  }
  .hd-name {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    width: 125px;
    max-width: none;
    z-index: 1001;
  }
  .hd-menu {
    justify-content: center;
    max-width: none;
  }
  .hd-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background: #fff;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  }
  .hd-nav__cnt {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 30px;
    width: 100%;
    height: 100%;
  }
  .hd-nav__list {
    margin-bottom: 0;
    width: 180px;
  }
  .hd-toggle {
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
  }
  .hd-toggle span {
    transition: 0.35s ease-in-out;
  }
}
@media screen and (max-width: 479px) {
  .hd-nav__cnt {
    padding-block: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .hd.fixed {
    background: #fff;
    transform: translateX(-50%);
  }
}
.hd.open {
  z-index: 100;
}
.hd.open .hd-nav {
  opacity: 1;
  transition: 0.4s;
  visibility: visible;
  transform: translateX(0);
}
.hd.open .hd-toggle {
  opacity: 1;
}
.hd.open .hd-toggle span:nth-child(1) {
  top: 7px;
  width: 100%;
  transform: rotate(45deg);
}
.hd.open .hd-toggle span:nth-child(2) {
  opacity: 0;
}
.hd.open .hd-toggle span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.ft {
  position: relative;
  padding-block: 72px 16px;
}
@media screen and (max-width: 1024px) {
  .ft {
    padding-block: 64px 120px;
  }
}
.ft-name {
  margin-inline: auto;
  max-width: 300px;
  width: 62%;
  aspect-ratio: 495/45;
}
.ft-logo {
  display: block;
  width: 100%;
  height: 100%;
}
.ft-logo img {
  width: 100%;
}
.ft-data {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .ft-data {
    margin-top: 32px;
  }
}
.ft-data__add {
  font-size: 1.4rem;
  letter-spacing: 0.12rem;
}
@media screen and (max-width: 479px) {
  .ft-data__add {
    font-size: 1.1rem;
    letter-spacing: 0.07rem;
  }
}
.ft-data__phone {
  margin-top: 8px;
  font-size: 2.3rem;
  font-weight: 500;
}
@media screen and (max-width: 479px) {
  .ft-data__phone {
    font-size: 1.8rem;
  }
}
.ft-data__phone strong {
  font-size: 4.3rem;
  font-weight: 500;
}
@media screen and (max-width: 479px) {
  .ft-data__phone strong {
    font-size: 3.4rem;
  }
}
.ft-data__open {
  margin-top: -15px;
  font-size: 1.4rem;
  line-height: 150%;
  letter-spacing: 0.096rem;
}
@media screen and (max-width: 479px) {
  .ft-data__open {
    font-size: 1rem;
    line-height: 170%;
  }
}
.ft-copy {
  margin-top: 48px;
  text-align: center;
  color: #535353;
  font-size: 1.1rem;
  line-height: 100%;
  letter-spacing: 0.095rem;
}
@media screen and (max-width: 479px) {
  .ft-copy {
    margin-top: 40px;
    font-size: 1rem;
    letter-spacing: 0;
  }
}

.banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 480px;
  z-index: 1000;
  transition: transform 0.4s;
  transform: translate(-50%, 100%);
  opacity: 1;
}
@media screen and (min-width: 1025px) {
  .banner {
    display: none;
  }
}
.banner__inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}
.banner__btn-link {
  display: block;
}
.banner__btn-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner__btn.--contact {
  aspect-ratio: 668/178;
}
.banner__btn.--phone {
  aspect-ratio: 280/178;
}

.content {
  position: relative;
  width: 480px;
  background: #fff;
  box-shadow: 2px 5px 10px 0 rgba(0, 0, 0, 0.25);
  overflow: clip;
}
@media screen and (max-width: 1024px) {
  .content {
    margin-top: 0;
    border-radius: 0;
    margin-inline: auto;
    width: 100%;
    max-width: 480px;
  }
}
.content.open {
  background: transparent;
  box-shadow: none;
}

.cta__link {
  display: block;
  transition: 0.4s;
}
.cta__link img {
  width: 100%;
  aspect-ratio: 700/708;
}
@media screen and (min-width: 1025px) {
  .cta__link:hover {
    opacity: 0.6;
  }
}

.main-cta {
  padding-block: 32px;
}
@media screen and (max-width: 479px) {
  .main-cta {
    padding-block: 24px;
  }
}
.main-cta.--cta03 {
  padding-block: 56px 24px;
}
@media screen and (max-width: 479px) {
  .main-cta.--cta03 {
    padding-block: 48px 16px;
  }
}

.gift .gift-box__note {
  padding: 15px 18px;
  height: 150px;
  background: #f2f0ed;
  overflow-y: auto;
}
.gift .gift-box__ttl {
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1.875;
}
@media screen and (max-width: 479px) {
  .gift .gift-box__ttl {
    font-size: 1.4rem;
  }
}
.gift .gift-box__txt {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px dashed #d6d6d6;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.sec-fv {
  position: relative;
  padding-block: 96px 24px;
  background: url(./img/bg-fv.jpg) no-repeat top right/cover;
}
@media screen and (max-width: 479px) {
  .sec-fv {
    padding-block: 72px 24px;
  }
}
.sec-fv__cnt {
  padding-inline: 24px;
}
@media screen and (max-width: 479px) {
  .sec-fv__cnt {
    padding-inline: 16px;
  }
}
.sec-fv .fv-cnt__open {
  font-size: 12rem;
  font-family: var(--en);
  font-weight: 200;
  line-height: 82.5%;
  letter-spacing: -0.02rem;
}
@media screen and (max-width: 479px) {
  .sec-fv .fv-cnt__open {
    font-size: min(25.0666666667vw, 9.4rem);
  }
}
.sec-fv .fv-cnt__ttl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
}
.sec-fv .fv-cnt__ttl-num {
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.18rem;
}
@media screen and (max-width: 479px) {
  .sec-fv .fv-cnt__ttl-num {
    padding-right: 4px;
    font-size: 1.8rem;
  }
}
.sec-fv .fv-cnt__ttl-num strong {
  font-size: 7rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.615rem;
}
@media screen and (max-width: 479px) {
  .sec-fv .fv-cnt__ttl-num strong {
    font-size: min(14.6666666667vw, 5.5rem);
    letter-spacing: 0;
  }
}
.sec-fv .fv-cnt__ttl-st {
  padding-left: 8px;
  border-left: 3px solid;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 479px) {
  .sec-fv .fv-cnt__ttl-st {
    border-left: 1px solid;
    font-size: min(4.2666666667vw, 1.6rem);
  }
}
.sec-fv .fv-cnt__ttl-st small {
  color: #2d2f26;
  font-family: var(--en);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 100%;
}
@media screen and (max-width: 479px) {
  .sec-fv .fv-cnt__ttl-st small {
    font-size: 0.8rem;
  }
}
.sec-fv .fv-cnt__ttl-st strong {
  display: block;
  margin-top: 8px;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 479px) {
  .sec-fv .fv-cnt__ttl-st strong {
    font-size: min(5.3333333333vw, 2rem);
  }
}
.sec-fv__gallery {
  margin-top: -16px;
}
.sec-fv__add {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  padding-inline: 24px;
  color: #2d2f26;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.1572rem;
}
@media screen and (max-width: 479px) {
  .sec-fv__add {
    gap: 4px;
    font-size: 1.4rem;
  }
}
.sec-fv__add::before {
  content: "";
  width: 19px;
  background: #4c4c4c;
  aspect-ratio: 29/40;
}
@media screen and (max-width: 479px) {
  .sec-fv__add::before {
    width: 10px;
  }
}

.sec-concept {
  padding-block: 80px;
  background: url(./img/bg-concept.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 479px) {
  .sec-concept {
    padding-block: 56px;
  }
}
.sec-concept__ttl {
  position: relative;
  margin-inline: -16px;
  text-align: center;
}
.sec-concept__ttl-main {
  position: relative;
  color: #434343;
  text-align: center;
  font-family: var(--en);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  z-index: 1;
}
.sec-concept__ttl-sub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
  text-align: center;
  font-family: var(--en);
  font-size: 4.8rem;
  font-weight: 200;
  line-height: 100%;
  text-transform: uppercase;
}
@media screen and (max-width: 479px) {
  .sec-concept__ttl-sub {
    font-size: min(9.8666666667vw, 3.7rem);
  }
}
.sec-concept__catch {
  margin-top: 40px;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 194.118%;
}
@media screen and (max-width: 479px) {
  .sec-concept__catch {
    margin-top: 32px;
    font-size: min(4.2666666667vw, 1.6rem);
  }
}
.sec-concept__catch strong {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 479px) {
  .sec-concept__catch strong {
    font-size: min(5.8666666667vw, 2.2rem);
  }
}
.sec-concept__cnt {
  margin-top: 16px;
}
.sec-concept__ph {
  margin-inline: -33px;
  aspect-ratio: 802/503;
}
@media screen and (max-width: 479px) {
  .sec-concept__ph {
    margin-inline: -24px;
  }
}
@media screen and (max-width: 360px) {
  .sec-concept__ph {
    margin-inline: -16px;
  }
}
.sec-concept .concept-block {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  margin-inline: -8px;
  padding-top: 60px;
}
@media screen and (max-width: 479px) {
  .sec-concept .concept-block {
    gap: 8px;
    padding-top: 45px;
  }
}
.sec-concept .concept-block {
  z-index: 1;
}
.sec-concept .concept-block::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 140px;
  aspect-ratio: 235/174;
  background: url(./img/illust-img01.png) no-repeat center center/cover;
  z-index: -1;
}
.sec-concept .concept-block::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 187px;
  aspect-ratio: 312/127;
  background: url(./img/illust-img03.png) no-repeat center center/cover;
  z-index: -1;
}
.sec-concept .concept-block__ttl {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.5rem;
  text-orientation: upright;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 479px) {
  .sec-concept .concept-block__ttl {
    font-size: min(5.3333333333vw, 2rem);
    letter-spacing: 0.25rem;
  }
}
.sec-concept .concept-block__cnt {
  padding-top: 12px;
}
.sec-concept .concept-block__txt {
  padding-left: 12px;
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.045rem;
}
@media screen and (max-width: 479px) {
  .sec-concept .concept-block__txt {
    font-size: min(3.7333333333vw, 1.4rem);
    letter-spacing: 0;
  }
}
.sec-concept .concept-block__ph {
  position: relative;
  margin-block: 24px;
  margin-right: -25px;
}
.sec-concept .concept-block__ph::before {
  content: "";
  position: absolute;
  top: -70px;
  right: 0;
  width: 142px;
  aspect-ratio: 238/206;
  background: url(./img/illust-img02.png) no-repeat center center/cover;
  z-index: -1;
}

.bg {
  padding-bottom: 64px;
  background: var(--mc);
}
@media screen and (max-width: 479px) {
  .bg {
    padding-bottom: 48px;
  }
}

.sec-model {
  padding-block: 80px 0;
}
@media screen and (max-width: 479px) {
  .sec-model {
    padding-block: 56px 0;
  }
}
.sec-model__ttl {
  margin-inline: -16px;
  text-align: center;
}
.sec-model__ttl-main {
  font-family: var(--en);
  font-size: 4.8rem;
  font-weight: 200;
  line-height: 100%;
  text-transform: uppercase;
}
@media screen and (max-width: 479px) {
  .sec-model__ttl-main {
    font-size: min(9.8666666667vw, 3.7rem);
  }
}
.sec-model__ttl-main small {
  display: block;
  margin-bottom: 8px;
  font-family: var(--en);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 100%;
}
@media screen and (max-width: 479px) {
  .sec-model__ttl-main small {
    font-size: min(3.7333333333vw, 1.4rem);
  }
}
.sec-model__ttl-sub {
  display: block;
  margin-top: 4px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 479px) {
  .sec-model__ttl-sub {
    font-size: min(4.2666666667vw, 1.6rem);
    letter-spacing: 0.15rem;
  }
}
.sec-model__catch {
  position: relative;
  margin-top: 8px;
  text-align: center;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 152.778%;
  letter-spacing: 0.144rem;
  z-index: 1;
}
@media screen and (max-width: 479px) {
  .sec-model__catch {
    margin-top: 4px;
    font-size: min(4.8vw, 1.8rem);
    letter-spacing: 0;
  }
}
.sec-model__catch span {
  font-size: 7.3rem;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 479px) {
  .sec-model__catch span {
    font-size: min(16vw, 6rem);
  }
}
.sec-model__catch::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 393px;
  aspect-ratio: 655/244;
  background: url(./img/ttl-model.png) no-repeat center center/cover;
  z-index: -1;
}
.sec-model__cnt {
  margin-top: 64px;
}
@media screen and (max-width: 479px) {
  .sec-model__cnt {
    margin-top: 48px;
  }
}
.sec-model .model-tab__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 15px;
}
@media screen and (max-width: 479px) {
  .sec-model .model-tab__list {
    gap: 8px;
  }
}
.sec-model .model-tab__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 15px) / 2);
}
@media screen and (max-width: 479px) {
  .sec-model .model-tab__item {
    width: calc((100% - 8px) / 2);
  }
}
.sec-model .model-tab__btn {
  position: relative;
  padding: 0;
  width: 100%;
  height: 72px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  background: #fff;
  color: var(--fc);
  transition: 0.4s;
  cursor: pointer;
  opacity: 0.7;
}
@media screen and (max-width: 479px) {
  .sec-model .model-tab__btn {
    padding: 8px 4px;
    height: 58px;
  }
}
@media screen and (max-width: 340px) {
  .sec-model .model-tab__btn {
    gap: 4px;
  }
}
.sec-model .model-tab__btn img {
  transition: 0.4s;
}
.sec-model .model-tab__btn.active {
  background: var(--fc);
  color: #fff;
  opacity: 1;
}
@media screen and (min-width: 1025px) {
  .sec-model .model-tab__btn:hover {
    background: var(--fc);
    color: #fff;
  }
}
.sec-model .model-tab__st {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 479px) {
  .sec-model .model-tab__st {
    font-size: min(3.7333333333vw, 1.4rem);
  }
}
.sec-model__detail {
  margin-top: 16px;
}
@media screen and (max-width: 479px) {
  .sec-model__detail {
    margin-top: 8px;
  }
}
.sec-model .model-cnt {
  position: relative;
  padding-block: 32px;
  padding-inline: 24px;
  background: #fff;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt {
    padding-block: 16px 16px;
    padding-inline: 16px;
  }
}
.sec-model .model-cnt__ttl-st {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt__ttl-st {
    font-size: min(5.8666666667vw, 2.2rem);
  }
}
.sec-model .model-cnt__ttl-st small {
  display: block;
  margin-bottom: 8px;
  text-align: center;
  font-family: var(--en);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 100%;
  text-transform: uppercase;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt__ttl-st small {
    font-size: min(3.7333333333vw, 1.4rem);
  }
}
.sec-model .model-cnt__add {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin-top: 8px;
  font-size: min(3.7333333333vw, 1.4rem);
  font-weight: 500;
  line-height: 100%;
}
.sec-model .model-cnt__add::before {
  content: "";
  width: 10px;
  aspect-ratio: 17/24;
  background: var(--fc);
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt__add::before {
    width: 8px;
  }
}
.sec-model .model-cnt__ph {
  margin-top: 24px;
  margin-inline: -25px;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt__ph {
    margin-top: 16px;
    margin-inline: -16px;
  }
}
.sec-model .model-cnt__txt {
  margin-top: 24px;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt__txt {
    margin-top: 16px;
    margin-inline: -8px;
  }
}
.sec-model .model-cnt__txt-st {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 157.895%;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt__txt-st {
    font-size: min(4.8vw, 1.8rem);
  }
}
.sec-model .model-cnt__features {
  margin-top: 8px;
}
.sec-model .model-cnt .model-features__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt .model-features__list {
    gap: 4px;
  }
}
.sec-model .model-cnt .model-features__item {
  padding: 4px;
  background: var(--fc);
  color: #fff;
  text-align: center;
  font-size: min(3.7333333333vw, 1.4rem);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.21rem;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt .model-features__item {
    letter-spacing: 0;
  }
}
.sec-model .model-cnt__gallery {
  position: relative;
  margin-top: 40px;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt__gallery {
    margin-top: 32px;
  }
}
.sec-model .model-cnt__gallery-ttl {
  margin-inline: auto;
  max-width: 154px;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt__gallery-ttl {
    max-width: 140px;
  }
}
.sec-model .model-cnt .gallery-slide {
  margin-top: 16px;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt .gallery-slide {
    margin-top: 8px;
  }
}
.sec-model .model-cnt__pickup {
  margin-top: 72px;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt__pickup {
    margin-top: 64px;
  }
}
.sec-model .model-cnt__pickup-ttl {
  margin-inline: auto;
  max-width: 154px;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt__pickup-ttl {
    max-width: 140px;
  }
}
.sec-model .model-cnt .model-point {
  margin-top: 24px;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt .model-point {
    margin-top: 16px;
  }
}
.sec-model .model-cnt .model-point__item {
  position: relative;
}
.sec-model .model-cnt .model-point__item:not(:first-child) {
  margin-top: 96px;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt .model-point__item:not(:first-child) {
    margin-top: 72px;
  }
}
.sec-model .model-cnt .model-point__item:not(:first-child)::after {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%) rotate(-8.5deg);
  width: 120%;
  height: 1px;
  background: var(--mc);
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt .model-point__item:not(:first-child)::after {
    top: -45px;
  }
}
.sec-model .model-cnt .model-point__item.--item02 .item-box {
  flex-direction: row;
}
.sec-model .model-cnt .model-point__item.--item02 .item-box__ph {
  margin-left: 0;
  margin-right: -25px;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt .model-point__item.--item02 .item-box__ph {
    margin-right: -16px;
  }
}
.sec-model .model-cnt .model-point__item.--item03::after {
  transform: translateX(-50%) rotate(5.5deg);
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt .model-point__item.--item03::after {
    top: -40px;
  }
}
.sec-model .model-cnt .item-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 28px;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt .item-box {
    gap: 22px;
  }
}
.sec-model .model-cnt .item-box__head {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.sec-model .model-cnt .item-box__num {
  position: relative;
  text-align: center;
  font-family: var(--en);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: -0.084rem;
  text-transform: uppercase;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt .item-box__num {
    font-size: 0.8rem;
  }
}
.sec-model .model-cnt .item-box__num strong {
  display: block;
  text-align: center;
  font-family: var(--en);
  font-size: 3rem;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: -0.3007rem;
  text-transform: uppercase;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt .item-box__num strong {
    font-size: min(6.4vw, 2.4rem);
  }
}
.sec-model .model-cnt .item-box__num::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 40px;
  aspect-ratio: 63/8;
  background: url(./img/line-ttl_black.png) no-repeat center center/cover;
}
.sec-model .model-cnt .item-box__ttl {
  margin-top: 16px;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.25rem;
  text-orientation: upright;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt .item-box__ttl {
    font-size: min(4vw, 1.5rem);
    line-height: 140%;
    letter-spacing: 0.18rem;
  }
}
.sec-model .model-cnt .item-box__ph {
  margin-left: -25px;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt .item-box__ph {
    margin-left: -16px;
  }
}
.sec-model .model-cnt .item-box__txt {
  margin-top: 24px;
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.045rem;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt .item-box__txt {
    margin-top: 16px;
    font-size: min(3.7333333333vw, 1.4rem);
    letter-spacing: 0;
  }
}
.sec-model .model-cnt__layout {
  margin-top: 48px;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt__layout {
    margin-top: 32px;
  }
}
.sec-model .model-cnt__data {
  margin-top: 32px;
}
.sec-model .model-cnt__data .model-data {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-inline: auto;
  padding-bottom: 16px;
  padding-inline: 16px;
  max-width: 300px;
  background: linear-gradient(180deg, transparent 0%, transparent 12px, #eee 12px, #eee 100%);
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt__data .model-data {
    padding-bottom: 8px;
    padding-inline: 16px 8px;
    background: linear-gradient(180deg, transparent 0%, transparent 6px, #eee 6px, #eee 100%);
  }
}
.sec-model .model-cnt__data .model-data__label {
  width: 100%;
  text-align: left;
  font-family: var(--en);
  font-size: 2.1rem;
  line-height: 100%;
  text-transform: uppercase;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt__data .model-data__label {
    font-size: min(4.8vw, 1.8rem);
  }
}
.sec-model .model-cnt__data .model-data__list {
  margin-top: 16px;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt__data .model-data__list {
    margin-top: 8px;
  }
}
.sec-model .model-cnt__data .model-data__item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt__data .model-data__item {
    gap: 10px;
  }
}
.sec-model .model-cnt__data .model-data__item-label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 95px;
  color: #000;
  font-size: min(3.7333333333vw, 1.4rem);
  line-height: 166.667%;
  letter-spacing: 0.12rem;
}
@media screen and (max-width: 479px) {
  .sec-model .model-cnt__data .model-data__item-label {
    min-width: 80px;
  }
}
.sec-model .model-cnt__data .model-data__item-label span {
  font-size: 1.5em;
}
.sec-model .model-cnt__data .model-data__item-value {
  flex: 1;
  color: #000;
  font-size: min(3.7333333333vw, 1.4rem);
  line-height: 166.667%;
  letter-spacing: 0.12rem;
}
.sec-model .swiper-button-next,
.sec-model .swiper-button-prev {
  position: absolute;
  top: calc(50% + 50px);
  right: -37px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  background: url(./img/icon-arw_slide.png) no-repeat center center/cover;
  transition: 0.4s;
  z-index: 1;
}
@media screen and (max-width: 479px) {
  .sec-model .swiper-button-next,
  .sec-model .swiper-button-prev {
    top: calc(50% + 45px);
    right: -30px;
    width: 30px;
    height: 30px;
  }
}
.sec-model .swiper-button-next::after,
.sec-model .swiper-button-prev::after {
  display: none;
}
@media screen and (min-width: 1025px) {
  .sec-model .swiper-button-next:hover,
  .sec-model .swiper-button-prev:hover {
    opacity: 0.7;
  }
}
.sec-model .swiper-button-prev {
  left: -37px;
  right: auto;
  transform: scale(-1, 1) translateY(-50%);
}
@media screen and (max-width: 479px) {
  .sec-model .swiper-button-prev {
    left: -30px;
  }
}
.sec-model .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #959595;
  opacity: 1;
}
.sec-model .swiper-pagination-bullet-active {
  background: var(--fc);
}
.sec-model .swiper-pagination-bullets {
  bottom: -24px;
}
.sec-model .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.sec-model .swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

.sec-about {
  background: linear-gradient(to top, var(--mc) 0%, var(--mc) 100px, transparent 100px, transparent 100%);
}
.sec-about__head {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 124px;
  padding-block: 56px 40px;
  background: url(./img/bg-about.jpg) no-repeat center center/cover;
  color: #fff;
}
@media screen and (max-width: 479px) {
  .sec-about__head {
    gap: 100px;
    padding-block: 48px 32px;
  }
}
.sec-about__catch {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.5rem;
  text-orientation: upright;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 479px) {
  .sec-about__catch {
    font-size: min(4.8vw, 1.8rem);
    letter-spacing: 0.45rem;
  }
}
.sec-about__ttl-main {
  display: block;
  text-align: center;
  font-family: var(--en);
  font-size: 5.4rem;
  font-weight: 300;
  line-height: 100%;
  text-transform: uppercase;
}
@media screen and (max-width: 479px) {
  .sec-about__ttl-main {
    font-size: min(10.6666666667vw, 4rem);
    letter-spacing: 0.2rem;
  }
}
.sec-about__ttl-sub {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.12rem;
}
@media screen and (max-width: 479px) {
  .sec-about__ttl-sub {
    font-size: min(3.7333333333vw, 1.4rem);
    letter-spacing: 0.05rem;
  }
}
.sec-about .about-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  margin-inline: -6px;
}
@media screen and (max-width: 479px) {
  .sec-about .about-list {
    gap: 8px;
    margin-top: 32px;
  }
}
.sec-about .about-list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  max-width: 137px;
  aspect-ratio: 229/230;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 122.222%;
  letter-spacing: 0.18rem;
}
@media screen and (max-width: 479px) {
  .sec-about .about-list__item {
    font-size: min(4.2666666667vw, 1.6rem);
  }
}
.sec-about .about-list__item small {
  font-size: 1.6rem;
}
@media screen and (max-width: 479px) {
  .sec-about .about-list__item small {
    font-size: min(3.7333333333vw, 1.4rem);
  }
}
.sec-about .about-list__item strong {
  font-size: 2.5rem;
}
@media screen and (max-width: 479px) {
  .sec-about .about-list__item strong {
    font-size: min(5.3333333333vw, 2rem);
  }
}
.sec-about .about-list__item.--item01 {
  background: #4e7b99;
}
.sec-about .about-list__item.--item02 {
  background: #a2967d;
}
.sec-about .about-list__item.--item03 {
  background: #994e4e;
}
.sec-about__txt {
  margin-top: 40px;
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.045rem;
}
@media screen and (max-width: 479px) {
  .sec-about__txt {
    margin-top: 32px;
    font-size: min(3.7333333333vw, 1.4rem);
    letter-spacing: 0;
  }
}
.sec-about__ph {
  margin-top: 48px;
}
@media screen and (max-width: 479px) {
  .sec-about__ph {
    margin-top: 32px;
  }
}

.sec-works {
  padding-block: 96px 72px;
  background: var(--mc);
}
@media screen and (max-width: 479px) {
  .sec-works {
    padding-block: 72px 56px;
  }
}
.sec-works__cnt {
  position: relative;
  margin-top: 32px;
}
@media screen and (max-width: 479px) {
  .sec-works__cnt {
    margin-top: 24px;
  }
}
.sec-works .works-slide__item {
  padding-bottom: 40px;
  height: auto;
}
@media screen and (max-width: 479px) {
  .sec-works .works-slide__item {
    padding-bottom: 32px;
  }
}
.sec-works .item-box {
  padding-block: 32px;
  padding-inline: 32px;
  height: 100%;
  background: #fff;
}
@media screen and (max-width: 479px) {
  .sec-works .item-box {
    padding-block: 24px;
    padding-inline: 24px;
  }
}
.sec-works .item-box__num {
  text-align: center;
  font-size: min(3.7333333333vw, 1.4rem);
  font-family: var(--en);
  line-height: 100%;
  letter-spacing: 0.126rem;
  text-transform: uppercase;
}
.sec-works .item-box__num strong {
  font-size: 2.8rem;
  line-height: 100%;
  text-transform: uppercase;
}
@media screen and (max-width: 479px) {
  .sec-works .item-box__num strong {
    font-size: min(5.8666666667vw, 2.2rem);
  }
}
.sec-works .item-box__name {
  margin-top: 24px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 157.895%;
  letter-spacing: 0.152rem;
}
@media screen and (max-width: 479px) {
  .sec-works .item-box__name {
    margin-top: 16px;
    font-size: min(4.8vw, 1.8rem);
    letter-spacing: 0.08rem;
  }
}
.sec-works .item-box__ph {
  position: relative;
  margin-top: 24px;
}
@media screen and (max-width: 479px) {
  .sec-works .item-box__ph {
    margin-top: 16px;
  }
}
.sec-works .item-box__txt {
  margin-top: 16px;
  color: #000;
  font-size: 1.6rem;
  line-height: 200%;
  letter-spacing: 0.045rem;
}
@media screen and (max-width: 479px) {
  .sec-works .item-box__txt {
    margin-top: 8px;
    font-size: min(3.7333333333vw, 1.4rem);
    letter-spacing: 0;
  }
}
.sec-works .swiper-button-next,
.sec-works .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  background: url(./img/icon-arw_slide.png) no-repeat center center/cover;
  border: none;
  transition: 0.4s;
  z-index: 1;
}
@media screen and (max-width: 479px) {
  .sec-works .swiper-button-next,
  .sec-works .swiper-button-prev {
    right: -12px;
    width: 30px;
    height: 30px;
  }
}
.sec-works .swiper-button-next::after,
.sec-works .swiper-button-prev::after {
  display: none;
}
@media screen and (min-width: 1025px) {
  .sec-works .swiper-button-next:hover,
  .sec-works .swiper-button-prev:hover {
    opacity: 0.7;
  }
}
.sec-works .swiper-button-prev {
  left: -16px;
  right: auto;
  transform: scale(-1, 1) translateY(-50%);
}
@media screen and (max-width: 479px) {
  .sec-works .swiper-button-prev {
    left: -12px;
  }
}
.sec-works .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #fff;
  opacity: 1;
}
@media screen and (max-width: 479px) {
  .sec-works .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.sec-works .swiper-pagination-bullet-active {
  background: var(--fc);
}
.sec-works .swiper-pagination-bullets {
  bottom: 0;
}
.sec-works .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.sec-works .swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

.sec-voice {
  padding-block: 56px 16px;
}
@media screen and (max-width: 479px) {
  .sec-voice {
    padding-block: 48px 16px;
  }
}
.sec-voice__cnt {
  position: relative;
  margin-top: 32px;
  margin-inline: auto;
  max-width: 404px;
}
@media screen and (max-width: 479px) {
  .sec-voice__cnt {
    margin-top: 24px;
    margin-inline: 4px;
  }
}
.sec-voice .voice-slide__item {
  height: auto;
}
.sec-voice .item-box {
  padding-bottom: 48px;
  width: 100%;
  color: #000;
}
@media screen and (max-width: 479px) {
  .sec-voice .item-box {
    padding-bottom: 24px;
  }
}
.sec-voice .item-box__ph {
  position: relative;
  width: 100%;
  aspect-ratio: 673/403;
}
.sec-voice .item-box__name {
  margin-top: 16px;
  color: #000;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}
@media screen and (max-width: 479px) {
  .sec-voice .item-box__name {
    margin-top: 8px;
    font-size: min(4.2666666667vw, 1.6rem);
  }
}
.sec-voice .item-box__txt {
  margin-top: 24px;
  color: #000;
  font-size: 1.6rem;
  line-height: 200%;
  letter-spacing: 0.045rem;
}
@media screen and (max-width: 479px) {
  .sec-voice .item-box__txt {
    margin-top: 16px;
    font-size: min(3.7333333333vw, 1.4rem);
    letter-spacing: 0;
  }
}
.sec-voice .swiper-button-next,
.sec-voice .swiper-button-prev {
  position: absolute;
  top: 28%;
  right: -24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  background: url(./img/icon-arw_slide.png) no-repeat center center/cover;
  border: none;
  transition: 0.4s;
  z-index: 1;
}
@media screen and (max-width: 479px) {
  .sec-voice .swiper-button-next,
  .sec-voice .swiper-button-prev {
    right: -18px;
    width: 30px;
    height: 30px;
  }
}
.sec-voice .swiper-button-next::after,
.sec-voice .swiper-button-prev::after {
  display: none;
}
@media screen and (min-width: 1025px) {
  .sec-voice .swiper-button-next:hover,
  .sec-voice .swiper-button-prev:hover {
    opacity: 0.7;
  }
}
.sec-voice .swiper-button-prev {
  left: -24px;
  right: auto;
  transform: scale(-1, 1);
}
@media screen and (max-width: 479px) {
  .sec-voice .swiper-button-prev {
    left: -18px;
  }
}

.sec-faq {
  position: relative;
  padding-block: 80px 72px;
  background: var(--mc);
  z-index: 1;
}
@media screen and (max-width: 479px) {
  .sec-faq {
    padding-block: 56px 48px;
  }
}
.sec-faq:after {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 2;
  aspect-ratio: 799.004/102;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background: var(--mc);
}
.sec-faq__cnt {
  margin-top: 32px;
}
@media screen and (max-width: 479px) {
  .sec-faq__cnt {
    margin-top: 24px;
  }
}
.sec-faq .faq-list__item {
  background: #fff;
}
.sec-faq .faq-list__item:not(:first-child) {
  margin-top: 16px;
}
.sec-faq .faq-list__head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  padding-block: 20px;
  padding-inline: 16px 12px;
  background: var(--fc);
  color: #fff;
  cursor: pointer;
  transition: 0.4s;
}
@media screen and (max-width: 479px) {
  .sec-faq .faq-list__head {
    gap: 0;
    padding-block: 16px;
    padding-inline: 12px;
  }
}
.sec-faq .faq-list__head-ttl {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 8px;
  flex: 1;
}
@media screen and (max-width: 479px) {
  .sec-faq .faq-list__head-ttl {
    gap: 4px;
  }
}
.sec-faq .faq-list__head-icon {
  margin-top: -2px;
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
}
@media screen and (max-width: 479px) {
  .sec-faq .faq-list__head-icon {
    font-size: min(5.8666666667vw, 2.2rem);
  }
}
.sec-faq .faq-list__head-st {
  flex: 1;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}
@media screen and (max-width: 479px) {
  .sec-faq .faq-list__head-st {
    font-size: min(4.2666666667vw, 1.6rem);
    letter-spacing: 0.15rem;
  }
}
.sec-faq .faq-list__head-arw {
  position: relative;
  width: 27px;
  aspect-ratio: 1;
}
@media screen and (max-width: 479px) {
  .sec-faq .faq-list__head-arw {
    width: 20px;
  }
}
.sec-faq .faq-list__head-arw::before,
.sec-faq .faq-list__head-arw::after {
  background-color: white;
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}
.sec-faq .faq-list__head-arw::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s;
}
.sec-faq .faq-list__head.selected .faq-list__head-arw:after {
  transform: rotate(180deg);
  transition: 0.3s;
}
.sec-faq .faq-list__cnt {
  display: none;
  position: relative;
  padding-block: 24px;
  padding-inline: 16px;
}
@media screen and (max-width: 479px) {
  .sec-faq .faq-list__cnt {
    padding-block: 16px;
    padding-inline: 12px;
  }
}
.sec-faq .faq-list__cnt-txt {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.sec-faq .faq-list__cnt-icon {
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
}
@media screen and (max-width: 479px) {
  .sec-faq .faq-list__cnt-icon {
    font-size: min(5.8666666667vw, 2.2rem);
  }
}
.sec-faq .faq-list__cnt-st {
  color: #000;
  font-size: 1.6rem;
  line-height: 200%;
  letter-spacing: 0.045rem;
}
@media screen and (max-width: 479px) {
  .sec-faq .faq-list__cnt-st {
    font-size: min(3.7333333333vw, 1.4rem);
    letter-spacing: 0;
  }
}

.sec-contact {
  padding-block: 120px 80px;
  background: #f1f1f1;
}
@media screen and (max-width: 479px) {
  .sec-contact {
    padding-block: 92px 56px;
  }
}
.sec-contact__head {
  margin-bottom: 40px;
}
.sec-contact__txt {
  margin-bottom: 24px;
  text-align: center;
  font-size: min(3.7333333333vw, 1.4rem);
  line-height: 214.286%;
  letter-spacing: 0.07rem;
}
.sec-contact .contact-form {
  margin-top: 40px;
}
.sec-contact .contact-form__tab {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 56px;
  gap: 8px;
}
.sec-contact .contact-form__tab-item {
  flex: 1;
  max-width: 200px;
  aspect-ratio: 200/120;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}
.sec-contact .contact-form__select {
  position: relative;
  display: block;
  padding: 0;
  width: 100%;
  height: 72px;
  background: #fff;
  color: #333;
  border: none;
  text-align: center;
  font-family: var(--base);
  font-size: min(4.2666666667vw, 1.6rem);
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.048rem;
  transition: 0.4s;
  cursor: pointer;
  opacity: 0.7;
}
.sec-contact .contact-form__select img {
  transition: 0.4s;
}
.sec-contact .contact-form__select.active {
  background: #333;
  color: #fff;
  opacity: 1;
}
@media screen and (min-width: 1025px) {
  .sec-contact .contact-form__select:hover {
    background: #333;
    color: #fff;
  }
}
/* フォーム部分 */
.wpcf7-list-item {
  margin: 0 0 1em 0;
}
form {
  overflow: hidden;
}
form ul {
  display: block;
  margin-bottom: 32px;
  margin-top: 40px;
}
.item-notice {
  width: 100%;
  margin-right: 0;
  margin-left: auto;
  margin-top: 13px;
  line-height: 1.5;
  font-size: 14px !important;
}
.item-notice strong {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
}
.item-notice p {
  font-size: 14px;
}
form ul li:last-of-type {
  width: 100%;
}
form ul .item-name {
  color: #2c2928;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
}
form ul .item-name span.item-req {
  color: #fff;
  background: #1c1c1c;
  text-align: center;
  padding: 6px 22px;
  border-radius: 100px;
  font-size: 14px;
}
form ul .item-name span.item-noreq {
  color: #fff;
  background: #b4b4b4;
  text-align: center;
  padding: 6px 22px;
  border-radius: 100px;
  font-size: 14px;
}
form ul li:last-of-type .item-form {
  width: 100%;
  display: block;
}
form ul li:last-of-type .item-form span {
  width: 100%;
  display: block;
}
form ul li:last-of-type input {
  width: 100%;
  display: block;
}
form ul li:last-of-type textarea {
  width: 100%;
  display: block;
  resize: vertical;
  height: 240px;
}
form ul li:last-of-type input,
form ul li:last-of-type textarea,
form ul li:last-of-type select {
  border: none;
  padding: 8px;
  font-size: 16px;
  letter-spacing: normal;
  box-sizing: border-box;
  background: #f4f7e8;
}
@media (max-width: 1024px) {
  form ul .item-name {
    font-size: 14px;
  }
}
.section-form__check1 {
  text-align: center;
  font-size: 14px;
}
.contact__form ul.form-tab button.active {
  color: #186a68;
  border-top: 1px solid #186a68;
  border-bottom: 1px solid #186a68;
}
.submit_btn {
  display: block;
  width: 100%;
  color: #000;
  text-align: center;
  border-radius: 100px;
  border: none;
  margin: auto;
  /* border: 1px solid #216724; */
  position: relative;
}
.section-form__check {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 48px;
}
.section-form__check span {
  background: none;
}
form [type="submit"] {
  background: #1c1c1c;
  height: 56px;
  display: block;
  width: 100%;
  text-align: center;
  border: none;
  padding: 16px;
  margin: auto;
  margin-top: 0px;
  position: relative;
  font-size: 18px;
  opacity: 1;
  transition: 0.3s;
  color: #fff;
}
@media (min-width: 1025px) {
  form [type="submit"]:hover {
    opacity: 0.5;
    transition: 0.3s;
  }
}
.submit_btn:after {
  position: absolute;
  content: "";
  width: 32px;
  height: 6px;
  top: 50%;
  transform: translateY(-48%);
  right: 24px;
  size: cover !important;
  position: center center !important;
}
.wpcf7-spinner {
  display: none !important;
}
li.item-form.itemform_add_search {
  display: flex;
  justify-content: space-between;
  display: flex;
  justify-content: space-between;
}
li.item-form.itemform_add_search span {
  /*   width: calc(100% - 140px); */
  width: 100%;
}
li.item-form.itemform_add_search button {
  width: 120px;
  background: #216724;
  border: none;
  color: #fff;
}
.form-caption {
  margin-bottom: 120px;
}
.form-caption p {
  font-size: 16px;
  text-align: center;
}
.section-form-privacy__cnt h3 {
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 6px;
  margin-bottom: 12px;
  margin-top: 32px;
}
.section-form-privacy__cnt h3:first-of-type {
  margin-top: 0;
}
.section-form-privacy__cnt p {
  font-size: 14px;
}
.formError {
  z-index: 20 !important;
}
.xdsoft_datetimepicker {
  z-index: 21 !important;
}
@media screen and (max-width: 640px) {
  form ul {
    /* margin-bottom:32px; */
    margin-top: 5%;
    margin-bottom: 3%;
    flex-wrap: wrap;
  }
  form ul li:first-of-type,
  form ul li:last-of-type {
    width: 100%;
  }
  form ul li:first-of-type {
    margin-bottom: 16px;
  }
  form ul li:last-of-type input,
  form ul li:last-of-type textarea {
    padding: 16px;
    font-size: 14px;
  }
  form [type="submit"] {
    font-size: 18px;
  }
  .form-caption {
    margin-bottom: 32px;
  }
  .form-caption p {
    font-size: 14px;
    text-align: left;
  }
  .contact__form ul.form-tab {
    margin-bottom: 40px;
  }
  .item-notice,
  li.item-form.itemform_add_search span {
    width: 100%;
  }
  .section-form__check {
    margin-bottom: 5%;
  }
}
.wpcf7-form-control {
  border: none;
  padding: 8px;
  font-size: 16px;
  letter-spacing: normal;
  box-sizing: border-box;
  width: 100%;
}
.wpcf7-form-control.wpcf7-radio label {
  display: flex;
  gap: 12px;
  cursor: pointer;
}
.wpcf7-form-control.wpcf7-radio label input {
  width: 24px;
  height: 24px;
}
.wpcf7-form-control.wpcf7-radio label .wpcf7-list-item-label {
  width: calc(100% - 36px);
}
.wpcf7-not-valid-tip {
  /*   display: none !important; */
}
.contact__form .privacy-policy-scroll {
  background: #fff;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.contact__form .privacy-policy-scroll p {
  font-size: 14px;
  line-height: 1.71;
  color: #2c2928;
}
.contact__form .privacy-policy-scroll p a {
  color: #5839ff;
}
.form__notice {
  font-size: 14px;
  margin-top: 16px;
}
.privacy-policy-scroll {
  background: #fff;
  padding: 20px 16px;
  max-height: 200px;
  height: 100%;
  margin-top: 24px;
  overflow: hidden scroll;
}
.privacy-policy-scroll::-webkit-scrollbar {
  width: 8px;
}
.privacy-policy-scroll::-webkit-scrollbar-thumb {
  background: #a7a7a7;
  border-radius: 10px;
}
.privacy-policy-scroll::-webkit-scrollbar-track {
  background: #fff;
}
.privacy-policy-scroll .simplebar-track {
  width: 0.3rem;
}
.privacy-policy-scroll .simplebar-scrollbar {
  width: 0.3rem;
}
.privacy-policy-scroll .simplebar-scrollbar::before {
  width: 0.3rem;
  color: #fff;
  opacity: 1;
}
.privacy-policy-scroll p {
  font-size: 14px;
  line-height: 1.71;
}
@media (max-width: 640px) {
  .form__notice {
    font-size: 12px;
    margin-top: 2%;
  }
}
.item-form.itemform_add_search {
  display: flex !important;
  gap: 16px;
}
.item-form.itemform_add_search button.wpcf7c-elm-step1 {
  width: 80px;
  background: #1c1c1c;
  font-size: 12px;
  text-align: center;
  color: #fff;
}
span.wpcf7-form-control.wpcf7-radio {
  background: unset;
}
.privacy-box {
  background: #fff;
  border: solid 1px #d8d8d8;
  height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 16px 26px;
  box-sizing: border-box;
}
.privacy-box h3 {
  color: #111111;
  font-size: 16px;
  line-height: 1.71;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 2%;
}
.privacy-box p {
  color: #111111;
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.05em;
}
.privacy-box p:not(:last-of-type) {
  margin-bottom: 4%;
}
@media (max-width: 1024px) {
  .privacy-box {
    padding: 2% 2% 3%;
  }
}
@media (max-width: 640px) {
  .privacy-box {
    padding: 4% 4% 5%;
  }
}
.section-form__check1,
.section-form__check2 {
  padding: 24px;
  text-align: center;
}
span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required {
  background: none;
}
span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 1;
}
span.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wpcf7-form-control-wrap[data-name="radio-plan"] span.wpcf7-list-item {
  margin: 0;
}
.wpcf7-form-control.wpcf7-radio label input[type="radio"] {
  width: 18px;
  height: 18px;
  border: 1px solid #111111;
  /* 枠線の色 */
  border-radius: 50%;
  /* 丸くする */
  color: #ffffff;
  /* 背景色 */
  -moz-appearance: none;
  appearance: none;
  /* デフォルトのスタイルを無効化 */
  -webkit-appearance: none;
  /* Safari対応 */
  outline: none;
  /* フォーカス時の枠線を消す */
  cursor: pointer;
  /* ポインタを変更 */
  background: #fff !important;
}
.wpcf7-form-control.wpcf7-radio label input[type="radio"]:checked {
  color: #000000 !important;
  /* チェック時の背景色 */
  box-shadow: inset 0 0 0 4px #ffffff;
  /* 中央に白い丸を作る */
  background: var(--fc) !important;
}
.wpcf7-form-control.wpcf7-radio label .wpcf7-list-item-label {
  width: 100%;
}
@media (max-width: 640px) {
  .wpcf7-form-control.wpcf7-radio label input[type="radio"] {
    padding: 8px;
  }
}
/* チェック時のスタイル */
.wpcf7-list-item {
  margin: 0;
  margin: 0 !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.wpcf7-list-item input[type="radio"] {
  width: auto !important;
}
.wpcf7-not-valid-tip {
  display: none !important;
}
.section-form__check1 .wpcf7-list-item,
.section-form__check2 .wpcf7-list-item,
.section-form__check3 .wpcf7-list-item {
  justify-content: center;
}
/* form radio */
/* ラジオボタンが選択された状態 */
input[type="radio"]:checked + label {
  background-color: #e0e0e0;
  /* 背景色（選択されたときの色） */
  color: #1c1c1c;
  /* 文字色 */
  border: 2px solid #c6a160;
  /* 枠線の色 */
  font-weight: bold;
  /* 太字 */
}
input[type="radio"] + label {
  padding: 10px;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}
input[type="radio"]:not(:checked) + label {
  background-color: #fff;
  color: #666;
  border: 1px solid #ddd;
}

/* 260430 */
.model-cnt__access {
  margin-top: 48px;
}
.model-access__ttl {
  padding-bottom: 16px;
  text-align: center;
  font-size: min(3.7333333333vw, 1.8rem);
  font-family: var(--en);
  line-height: 100%;
  letter-spacing: 0.126rem;
}
.model-access__item {

}
.model-access__item-value {
  padding-bottom: 16px;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.model-access__item-value iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.model-access__item-label {
  flex: 1;
  color: #000;
  font-size: min(3.7333333333vw, 1.4rem);
  line-height: 166.667%;
  letter-spacing: 0.12rem;
}