@charset "UTF-8";
/*! 2025.6.20 update */
/*--------------------------------------------------------------
reset.min.css
リセット関係・clearfixなど

fonts.min.css
フォントアイコンを記載したcss

common.css
レイアウト、TOPのスタイルを記載したcss

sub.css
下層のレイアウトを記載したcss
--------------------------------------------------------------*/
/* fontIcon
:before,
:after {
	content: "\f099";
	font-family: "icomoon";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}


/* ------------------------------------------------------------ */
/* global */
/* ------------------------------------------------------------ */
:root {
  --font-jp: "Yu Gothic", "游ゴシック体", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴシック ProN", "メイリオ", "MS Gothic", sans-serif;
  --font-en: "Josefin Sans", system-ui, sans-serif;
  --font-num: "Outfit", system-ui, sans-serif;
  --weight-normal: 400;
  --weight-midium: 500;
  --weight-bold: 700;

  --color-text: #333;
  --color-primary: #1e333e;
  --color-primary-light: #f0f4f8;
  --color-line: #5da978;

  --color-blk: 0, 0, 0;
  --color-wht: 255, 255, 255;
  --color-gray: #bfbfbf;
  --color-gray-light: #f7f7f7;
  --color-notice: #d51c05;

  /* メインコンテンツ基本幅 375~500px程度 */
  --base-w: 500px;
}

.color-wht {
  color: rgb(var(--color-wht));
}
.color-primary {
  color: var(--color-primary);
}

.font-en {
  font-family: var(--font-en);
}
.font-num {
  font-family: var(--font-num);
}

.bg-color-primary {
  background-color: var(--color-primary);
}
.bg-color-wht {
  background-color: rgb(var(--color-wht));
}
.bg-color-primary-light {
  background-color: var(--color-primary-light);
}
.bg-color-blk {
  background-color: rgb(var(--color-text));
}

/* 基本・レイアウト指定 */

/* ------------------------------------------------------------ */
/* base */
/* ------------------------------------------------------------ */
.grecaptcha-badge {
  display: none;
  opacity: 0;
  visibility: hidden;
}
* html body {
  background: url(null) fixed;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

html.is-locked {
  overflow-y: hidden;
}
html.is-locked body {
  overflow-y: hidden;
  height: 100vh;
  height: 100svh;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  background: rgb(var(--color-wht));
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: var(--weight-normal);
  font-style: normal;
  letter-spacing: 0.075em;
  overflow-wrap: break-word;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  /* -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt"; */
  background-color: #bfbfbf;
}

@media (min-width: 751px) {
  /*電話番号リンクをスマホのみ有効にする*/
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

.pc,
.pc-only {
  display: none;
}

.sp,
.sp-only {
  display: block;
}
@media screen and (min-width: 768px) {
  /* 768px以上 */
  body {
    font-size: 1.5rem; /* 15px */
  }
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  /* 1025px */
  body {
    font-size: 1.6rem; /* 16px */
  }
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}

.wrapper {
  width: 100%;
  height: auto;
  overflow: clip;
}
.content {
  display: grid;
  grid-template-columns: 100%;
  position: relative;
}
.content > * {
  grid-row: 1/2;
}
/* 背景を設定するための疑似要素。左右コンテンツ個別に設定する場合は、.content-l,.content-rに適時設定。 */
.content::before {
  content: "";
  background: url(../img/bg-wave.png) no-repeat center/ cover;
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: -1;
}

.content-main {
  background: rgb(var(--color-wht));
  container-type: inline-size;
  overflow: hidden;
}
.content-l,
.content-r {
  display: none;
  align-self: start;
  height: 100vh;
  position: sticky;
  top: 0;
}
.content-l {
  /* 背景は適時設定 */
  /* background: var(--bg-color); */
  flex-direction: column;
  justify-content: center;
}
.content-r {
  /* 背景は適時設定 */
  /* background: var(--bg-color); */
  flex-direction: column;
  justify-content: center;
}
.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: block;
  background-color: rgba(var(--color-blk), 0);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
}
.overlay.is-active {
  opacity: 1;
  visibility: visible;
}
address {
  font-style: normal;
}
img {
  max-width: 100%;
  height: auto;
}

/* svg -------------------------- */
#svg {
  display: none;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.icon {
  width: 1em;
  height: 1em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.icon svg {
  max-width: 100%;
  max-height: 100%;
  fill: currentColor;
  transition: all 0.2s linear;
}
.icon-line-text {
  height: 0.3498em;
  /* height: auto;
  aspect-ratio: 646 / 226; */
}

/* ------------------------------------------------------------ */
/* component */
/* ------------------------------------------------------------ */
/* link */
/* -------------------------- */
::-moz-selection {
  color: rgb(var(--color-text));
  background: rgba(var(--color-blk), 0.16);
  text-shadow: none;
}
::selection {
  color: rgb(var(--color-text));
  background: rgba(var(--color-blk), 0.16);
  text-shadow: none;
}
::-moz-selection {
  color: rgb(var(--color-text));
  background: rgba(var(--color-blk), 0.16);
  text-shadow: none;
}
a {
  color: inherit;
  cursor: pointer;
  line-height: inherit;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  text-decoration: none;
}
a:link,
a:visited,
a:active {
  text-decoration: none;
}
a:hover {
  opacity: 0.72;
}
a.link {
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 1px;
}

/* button */
/* -------------------------- */
.cta_banner_btn {
  border: 3px solid var(--color-line);
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
}
.cta_banner_btn a {
  display: grid;
  position: relative;
  background-color: rgb(var(--color-wht));
  color: var(--color-text);
}
.cta_banner_btn a::before {
  content: "";
  display: block;
  position: absolute;
  left: 1.5em;
  bottom: 0;
  background: url(../img/contact-line.png) no-repeat center bottom / contain;
  width: 23%;
  max-width: 80px;
  height: calc(110 / 82 * 100%);
  /*   height: auto;
  aspect-ratio: 82/110; */
  z-index: 1;
}
.cta_banner_btn a > * {
  padding-left: 35%;
  padding-right: 1em;
}
.cta_banner_btn figure {
  position: relative;
  padding-block: 0.75em;
  background-color: var(--color-line);
}
.cta_banner_btn figure img {
  width: 100%;
  position: relative;
  max-width: 190px;
}
.line-ttl {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  font-weight: var(--weight-bold);
  padding-block: 1em;
  gap: 0 0.75em;
}
.line-ttl .icon {
  color: var(--color-line);
}
.line-ttl .icon-line {
  font-size: 3.2em;
}
.line-ttl .icon-line-text {
  font-size: 4em;
}
.line-text {
  font-size: 19px;
  line-height: 1;
}

/* img */
/* -------------------------- */
.crop {
  overflow: hidden;
}
.crop.circle {
  border-radius: 100vmax;
  aspect-ratio: 1/1;
}
.crop.rectangle {
  aspect-ratio: 8/5;
}
.crop.square {
  aspect-ratio: 1/1;
}
.crop.video {
  aspect-ratio: 16/9;
}
.crop img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
a:hover .crop img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* typography */
/* -------------------------- */
.text {
  font-size: 15px;
  line-height: 2;
}
.text:not(:last-child) {
  margin-bottom: 1.5em;
}
.tate {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  -webkit-font-feature-settings: initial;
  font-feature-settings: initial;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.tel {
  font-size: 14px;
  font-weight: 700;
}
.tel span {
  display: block;
  font-size: 24px;
}
.caption {
  font-size: 12px;
  margin-bottom: 0.25em;
}
small {
  font-size: 0.8em;
}

/* title */
/* -------------------------- */
.index-ttl {
  font-size: 15px;
  font-weight: var(--weight-bold);
  line-height: 1.4;
  display: block;
  margin-bottom: 2em;
}
.index-ttl::before {
  content: attr(data-ttl);
  display: block;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 2em;
}
.index-ttl:not(.color-wht)::before {
  color: var(--color-primary);
}
.main-ttl {
  font-size: 18px;
  margin-bottom: 1em;
}
.main-ttl:not(:first-of-type) {
  margin-top: 2em;
}
.lineup-ttl {
  color: var(--color-primary);
  margin-bottom: 0.5em;
}

/* animation */
/* -------------------------- */
.inview {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease 0s;
  transition: opacity 0.2s ease 0s;
}
.inviewUp,
.inviewzoomIn,
.inviewfadeInUp,
.inviewfadeInLeft,
.inviewfadeInRight,
.inviewfadeIn {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease 0s, -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: opacity 0.2s ease 0s, -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: opacity 0.2s ease 0s, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: opacity 0.2s ease 0s, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.inviewUp.is-show,
.inviewzoomIn.is-show,
.inviewfadeInUp.is-show,
.inviewfadeInLeft.is-show,
.inviewfadeInRight.is-show,
.inviewfadeIn.is-show {
  opacity: 1;
}

.inviewUp {
  transform: translate(0, 1em);
  -webkit-transform: translate(0, 1em);
}
.inviewUp.is-show {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

.inviewzoomIn {
  transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
}
.inviewzoomIn.is-show {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
}

.inviewfadeInUp {
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
}
.inviewfadeInUp.is-show {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

.inviewfadeInLeft {
  transform: translate(60px, 0);
  -webkit-transform: translate(60px, 0);
}
.inviewfadeInLeft.is-show {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

.inviewfadeInRight {
  transform: translate(-60px, 0);
  -webkit-transform: translate(-60px, 0);
}
.inviewfadeInRight.is-show {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

/* box */
/* -------------------------- */

/* list */
/* -------------------------- */
.normal-list li {
  padding-left: 1em;
  position: relative;
  font-weight: var(--weight-bold);
}
.normal-list li:not(:last-of-type) {
  margin-bottom: 0.5em;
}
.normal-list li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 100vmax;
  background: var(--color-primary);
  left: 0.4em;
  position: absolute;
  top: 0.6em;
  transform: translateX(-50%);
}
.note {
  font-size: 12px;
}
.note p {
  margin-bottom: 0.25em;
}
.note li {
  display: grid;
  grid-template-columns: max-content 1fr;
  margin-bottom: 0.25em;
}
.note li::before {
  content: "※";
  display: block;
}
/* accordion */
/* -------------------------- */
.js-acToggle {
  cursor: pointer;
  position: relative;
}
.js-acToggle * {
  pointer-events: none;
}
.js-acToggle.ac-arrow {
  padding-right: 2em;
}
.js-acToggle.ac-arrow::after {
  content: "";
  color: var(--color-primary);
  position: absolute;
  top: 50%;
  right: 0.75em;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  position: absolute;
}
.js-acToggle.ac-arrow.is-active::after {
  -webkit-transform: translateY(-50%) rotate(225deg);
  transform: translateY(-50%) rotate(225deg);
}
.js-acContent {
  height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.js-acContent.is-active {
  height: auto;
  opacity: 1;
  visibility: visible;
}

/* ------------------------------------------------------------ */
/* header */
/* ------------------------------------------------------------ */
.main-header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  background-color: rgb(var(--color-wht));
  z-index: 150;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.4s ease, opacity 0.4s ease, position 0.2s ease;
}
.header-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  padding: 0 15px;
}
.main-header .main-logo {
  max-width: 168px;
  margin: 0;
  display: flex;
  align-items: flex-end;
  gap: 1em;
}

/* nav-btn -------------------------- */
.nav-btn {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 300;
  padding: 0.8rem 0;
  margin: 0;
  outline: none;
  min-height: inherit;
  cursor: pointer;
  transition: all 0.2s linear;
  flex-shrink: 0;
  color: rgb(var(--color-wht));
}
.nav-btn.nav-toggle {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  border-radius: 100vmax;
  border: none;
}
.nav-toggle-text {
  display: block;
  line-height: 1;
  font-size: 12px;
  font-family: var(--font-en);
  font-weight: var(--weight-bold);
  letter-spacing: 0.05em;
  transition: opacity 0.2s linear;
}
.nav-toggle-text::before {
  content: "MENU";
}
.is-active .nav-toggle-text::before {
  content: "CLOSE";
}

.nav-toggle-icon {
  width: 25px;
  height: 9px;
  display: block;
  position: relative;
}
.toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: rgb(var(--color-wht));
  position: absolute;
  left: 0;
  transition: all 0.2s linear;
}
.toggle-line:first-of-type {
  top: 0;
}
/* .toggle-line:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
} */
.toggle-line:last-of-type {
  bottom: 0;
}

.is-active .toggle-line:first-of-type {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}
/* .is-active .toggle-line:nth-of-type(2) {
  opacity: 0;
} */
.is-active .toggle-line:last-of-type {
  bottom: 50%;
  transform: rotate(-45deg) translateY(50%);
}

/* gnav -------------------------- */
.gnav {
  width: 100%;
  background-color: rgb(var(--color-wht));
  background: url(../img/bg-wave.png) no-repeat right center / cover;
  height: 100vh;
  height: 100svh;
  padding: 2em 1.5em;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  z-index: 50;
  transition: transform 0.3s;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.75em;
}
.gnav > * {
  opacity: 0;
}
.gnav.is-active {
  transform: translateX(0);
  pointer-events: auto;
}
.gnav.is-active > * {
  opacity: 1;
  -webkit-transition: 1.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
  transition: 1.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
}

/* nav-menu -------------------------- */
.nav-menu {
  width: auto;
  height: auto;
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.nav-menu > li {
  position: relative;
}
.nav-menu > li > a,
.nav-menu > li .parent {
  display: block;
  padding: 0.5em 0;
}
.nav-menu > li .parent.js-acToggle {
  display: block;
}
.nav-menu > li .parent:not(.js-acToggle) {
  display: none;
}
.nav-menu .index-ttl {
  font-size: 13px;
  margin-bottom: 0;
  letter-spacing: 0.025em;
}

.nav-child {
  margin-inline: auto;
  background-color: var(--color-primary-light);
  border-radius: 0.5em;
  max-width: 350px;
}
.nav-child.is-active {
  margin-block: 0.5em;
}
.nav-child li:first-of-type {
  padding-top: 0.5em;
}
.nav-child li:last-of-type {
  padding-bottom: 0.5em;
}
.nav-child a {
  display: block;
  padding: 0.5em 1em 0.5em 2em;
  font-weight: 500;
  color: var(--color-primary);
  position: relative;
}
.nav-child a::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  background-color: currentColor;
  border-radius: 100vmax;
  position: absolute;
  top: 1.1em;
  left: 1em;
}

li.nav-menu-item.btn a {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 13px;
  position: relative;
}

li.nav-menu-item.btn::before {
  content: "";
  display: block;
  width: 1.5em;
  height: 1px;
  background: var(--color-primary);
  margin-block: 2em 1em;
}
/* ------------------------------------------------------------ */
/* main */
/* ------------------------------------------------------------ */
.base {
  width: 100%;
  height: auto;
  position: relative;
  margin: 0 auto;
  padding-block: clamp(4rem, 3.092rem + 2.837vw, 6rem);
}
.has-btm-line {
  border-bottom: 3px solid var(--color-primary);
}
.inner {
  width: 100%;
  max-width: 500px;
  height: auto;
  padding: 0;
  padding-inline: 1.5em;
  margin: 0 auto;
  clear: both;
}
.inner:after {
  content: "";
  clear: both;
  display: block;
}
.full-width-image {
  width: 100vw;
  margin-left: -1.5em;
  display: block;
}

.width-narrow {
  max-width: clamp(103.2rem, 101.021rem + 6.809vw, 108rem);
  margin: 0 auto;
}
.width-wide {
  max-width: 100% !important;
}
/* ------------------------------------------------------------ */
/* side */
/* ------------------------------------------------------------ */
.side-inner {
  width: 100%;
  min-height: 100%;
  padding-block: 10vh 5vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  padding-inline: 1em;
}
.side-logo {
  width: 60%;
  max-width: 200px;
  display: grid;
  gap: 1em;
}
.catch-text {
  font-size: 2.7vw;
  margin-bottom: 1em;
}

.side-cta {
  width: 100%;
  max-width: 340px;
}
.side-cta > p {
  font-weight: var(--weight-bold);
}
.side-cta .cta_banner_btn {
  width: 100%;
  margin-bottom: 1em;
  border: none;
}
.side-cta .cta_banner_btn a {
  background-color: var(--color-line);
  color: rgb(var(--color-wht));
}
.side-cta .cta_banner_btn a::before {
  width: 86px;
  left: 1.25em;
}
.side-cta .line-ttl {
  padding-left: 120px;
}
.side-cta .line-ttl .icon {
  color: rgb(var(--color-wht));
}
.side-cta .line-ttl .icon-line {
  font-size: 3.5em;
}
.side-cta .line-ttl .icon-line-text {
  font-size: 4.6em;
}
.side-cta .line-text {
  font-size: 1.2em;
}

@media screen and (min-width: 1025px) and (max-width: 1240px) {
  .side-cta .cta_banner_btn a::before {
    width: 5vw;
    left: 1vw;
  }
  .side-cta .line-ttl {
    padding-left: 7vw;
    font-size: 1.1vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .side-cta .cta_banner_btn a::before {
    width: 25%;
    left: 5%;
  }
  .side-cta .line-ttl {
    padding-left: 35%;
    font-size: 1.5vw;
  }
}

/* ------------------------------------------------------------ */
/* footer */
/* ------------------------------------------------------------ */
.main-footer {
  position: relative;
  width: 100%;
  padding-block: clamp(2rem, 0.815rem + 3.704vw, 6rem);
  padding-inline: 1.5em;
  background-color: var(--color-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}
.main-footer .copyright {
  font-size: 1.2rem;
  padding: 1em 0;
}

.footer-logo span {
  display: block;
  font-weight: var(--weight-bold);
  font-size: 14px;
  margin-top: 0.5em;
}
.footer-info {
  font-size: 14px;
}
.footer-nav {
  display: flex;
  font-size: 16px;
}
.footer-nav li:not(:last-of-type)::after {
  content: "|";
  display: inline-block;
  margin-inline: 0.5em;
}

.fix_cta {
  position: fixed;
  bottom: 0;
  left: 0;
  max-width: 100%;
  border: none;
  z-index: 50;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(0%);
}
/* 非表示時（下にスライド） */
#cta.is-hidden {
  transform: translateY(100%);
  opacity: 0;
}
.fix_cta .icon-line-text {
  height: 1em;
  width: 2.8584em;
  /* width: auto; */
}
.fix_cta.cta_banner_btn a {
  background-color: var(--color-line);
  color: rgb(var(--color-wht));
  display: flex;
  gap: 5vw;
  justify-content: center;
  height: 75px;
}
.fix_cta.cta_banner_btn a::before {
  position: relative;
  width: 72px;
  margin-top: -1.5em;
  left: 0;
}
.fix_cta.cta_banner_btn a > div {
  font-size: 19px;
  font-weight: var(--weight-bold);
  display: flex;
  align-items: center;
  gap: 0.25em;
  padding: 0;
}
.fix_cta.cta_banner_btn span {
  flex-shrink: 0;
}
/* ------------------------------------------------------------ */
/* content */
/* ------------------------------------------------------------ */
.mv-wrapper {
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  height: auto;
  min-height: calc(100vh - 75px);
  min-height: calc(100svh - 75px);
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.mv-image {
  width: 100%;
  flex-grow: 1;
  display: grid;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.mv-image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 90px);
  height: 100%;
  background: url("../img/img-mv.jpg") no-repeat center / cover;
}
.mv-catch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 1.5em;
  margin-inline: 0.5em;
}
.mv-catch span {
  display: block;
  padding: 0.8em 0.25em;
  font-size: 22px;
  letter-spacing: 0.25em;
  color: rgb(var(--color-wht));
  background-color: var(--color-primary);
  clip-path: polygon(0 0%, 100% 2%, 100% 100%, 0% 98%);
  z-index: 1;
  position: relative;
}
.mv-catch span:last-of-type {
  margin-right: 5px;
  margin-top: 2em;
}
.mv-wrapper h3 {
  font-size: 20px;
  letter-spacing: 0.15em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  margin-bottom: 2em;
}

.about {
  background: linear-gradient(to bottom, #ffffff 0%, #f0f4f8 5%, #f0f4f8 95%, #f0f4f8 100%);
}
.point-list {
  margin-block: 2.5em;
  counter-reset: item;
}
.point-list li {
  font-size: 1.2em;
  font-weight: var(--weight-bold);
  color: rgb(var(--color-wht));
  background-color: var(--color-primary);
  margin-bottom: 0.5em;
  padding: 0.6em 1em;
  clip-path: polygon(0 0%, 98% 0%, 100% 100%, 2% 100%);
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 2px 1em;
}
.point-list li::before,
.point-list li::after {
  font-family: var(--font-num);
  font-weight: var(--weight-midium);
  line-height: 1;
  text-align: center;
}
.point-list li::before {
  content: "POINT";
  font-size: 12px;
  letter-spacing: 0.01em;
}
.point-list li::after {
  content: counter(item);
  counter-increment: item;
  font-size: 1.4em;
}
.point-list li span {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
}

.lineup-guide {
  padding: 1.5em;
  margin-bottom: 5em;
}
.lineup-guide figure {
  margin-bottom: 0.5em;
}
.lineup-guide p {
  font-size: 15px;
  font-weight: var(--weight-bold);
  line-height: 1.8;
}

.wp-block-lazyblock-lineup-block:not(:last-of-type) {
  margin-bottom: 5em;
}
.lineup-item figure {
  position: relative;
  aspect-ratio: 5 / 3;
  background-color: var(--color-gray);
}
.lineup-item figure img {
  max-width: inherit;
  min-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lineup-item figcaption {
  font-weight: var(--weight-bold);
  font-size: 18px;
  background: var(--color-primary);
  color: rgb(var(--color-wht));
  display: inline-block;
  padding: 0.25em 1em;
  clip-path: polygon(0 0%, 95% 0%, 100% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}
.p-mark {
  background: #16a4df;
  color: rgb(var(--color-wht));
  font-weight: var(--weight-bold);
  font-size: 1em;
  display: flex;
  align-items: center;
  line-height: 1.1;
  gap: 0.5em;
  padding: 0.3em 1em;
  width: max-content;
  border-radius: 100vmax;
  position: absolute;
  bottom: 0.5em;
  right: 0.5em;
  font-family: system-ui, sans-serif;
  font-weight: 900;
}
.p-mark span {
  font-size: 0.8em;
  display: block;
  margin-bottom: 0.2em;
}
.p-mark > div:last-child {
  line-height: 1.2;
}

.lineup-item_detail {
  padding-left: 1em;
  padding-top: 1em;
  border-left: 1px solid var(--color-primary);
  margin-bottom: 1em;
}
.lineup-ttl {
  font-size: 20px;
  margin-bottom: 0.5em;
}
.price-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.5em;
  letter-spacing: 0.025em;
}
.price-list dt {
  font-size: 15px;
  font-weight: var(--weight-bold);
  color: rgb(var(--color-wht));
  display: grid;
  place-items: center;
  background: var(--color-primary);
  padding-inline: 0.75em 1.25em;
  padding-block: 0.25em;
  clip-path: polygon(0 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
}
.price-list dd {
  font-size: 14px;
}
.price-list dd span {
  font-weight: var(--weight-bold);
}
.price-list .price {
  font-size: 22px;
  font-family: var(--font-num);
  font-weight: var(--weight-midium);
  color: var(--color-primary);
}
.price-list .price::before {
  content: "¥";
  font-size: 0.8em;
  margin-right: 2px;
}
.lineup-item_point {
  margin-bottom: 1em;
}
.lineup-item_point h5 {
  transform: translateY(50%);
  position: relative;
}
.lineup-item_point h5 span {
  display: inline-block;
  font-size: 15px;
  color: rgb(var(--color-wht));
  background: var(--color-primary);
  padding-inline: 3em 1em;
  padding-block: 0.25em;
  clip-path: polygon(0 0%, 95% 0%, 100% 100%, 0% 100%);
  position: relative;
}
.lineup-item_point h5::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.2em;
  left: 0.5em;
  width: 2em;
  height: 130%;
  background: url(../img/icon-point.svg) no-repeat center / contain;
  z-index: 2;
}
.lineup-item_point ul {
  background-color: var(--color-primary-light);
  padding: 1.75em 0.75em 1em;
}
.cartridge {
  background: linear-gradient(to bottom, #ffffff 0%, #f0f4f8 10%, #f0f4f8 90%, #f0f4f8 100%);
}
.cartridge .title span {
  display: inline-block;
  font-size: 16px;
  color: rgb(var(--color-wht));
  background: var(--color-primary);
  padding: 0.25em 1em;
  margin-bottom: 1.25em;
  clip-path: polygon(0% 0%, 97% 0%, 100% 100%, 3% 100%);
}
.cartridge-list {
  border: 2px solid var(--color-primary);
  background-color: rgb(var(--color-wht));
  padding-inline: 20px;
  margin-bottom: 1em;
}
.cartridge-item {
  padding-block: 20px;
}
.cartridge-item:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
}
.cartridge-item_detail {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1em;
  align-items: center;
}
.cartridge-item_detail figure {
  aspect-ratio: 11/13;
}
.cartridge-item_detail figure img {
  object-fit: cover;
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
}
.cartridge-item_detail .price-list dt {
  font-size: 13px;
  padding-inline: 0.5em 0.75em;
}
.cartridge-item_detail .price-list .price {
  font-size: 22px;
  display: block;
}
.cartridge-item_detail .price-list dd {
  font-size: 12px;
}
.cartridge-item_detail .price-list dd:not(:first-of-type) {
  grid-column: 1/3;
}

.gallery-item:not(:last-of-type) {
  margin-bottom: 2em;
}
.gallery-twenty {
  width: 100%;
  aspect-ratio: 8/5;
  overflow: hidden;
  margin-bottom: 0.5em;
}
.gallery-twenty img {
  object-fit: cover;
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
}
.place {
  font-size: 14px;
  color: #808080;
  margin-bottom: 0.5em;
}
.place .icon {
  color: var(--color-primary);
}
.gallery-ttl {
  color: var(--color-primary);
  font-size: 1.2em;
}

.flow-list {
  display: grid;
  gap: 2em;
  margin-top: 2em;
  counter-reset: item;
}
.flow-list li {
  background-color: rgb(var(--color-wht));
  border: 1px solid var(--color-primary);
  font-size: 1.1em;
  font-weight: var(--weight-bold);
  padding: 1em;
  position: relative;
}
.flow-list li::before {
  content: "STEP " counter(item);
  counter-increment: item;
  font-family: var(--font-num);
  font-weight: var(--weight-midium);
  font-size: 16px;
  background-color: var(--color-primary);
  color: rgb(var(--color-wht));
  padding: 0.25em 1em;
  clip-path: polygon(0 0%, 95% 0%, 100% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: -1px;
  transform: translateY(-50%);
}
.flow-list li:not(:last-of-type):after {
  content: "";
  display: block;
  width: 35px;
  height: 15px;
  clip-path: polygon(0 0%, 100% 0%, 50% 100%);
  background-color: var(--color-primary);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 160%);
}

.faq-ttl {
  background-color: var(--color-primary-light);
  padding: 1em 2.5em 1em 1em;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 1em;
  align-items: center;
  margin-bottom: 0.75em;
  position: relative;
}
.faq-ttl::before {
  content: "Q";
  font-size: 25px;
  line-height: 1;
  font-family: var(--font-num);
  font-weight: var(--weight-midium);
  color: rgb(var(--color-wht));
  background-color: var(--color-primary);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 100vmax;
}
.faq-ttl .icon-alw {
  position: absolute;
  top: 50%;
  right: 0.6em;
  transform: translateY(-50%);
  font-size: 1.2em;
}
.faq-ttl.is-active .icon-alw {
  transform: translateY(-50%) rotate(180deg);
}
.faq-content > div {
  padding-bottom: 0.25em;
  display: grid;
  grid-template-columns: max-content 1fr;
}
.faq-content > div::before {
  content: "A.";
  font-size: 18px;
  line-height: 1;
  font-family: var(--font-num);
  font-weight: var(--weight-midium);
  color: var(--color-primary);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 100vmax;
}
.comment {
  display: grid;
  gap: 1em;
  margin-block: 2.5em 3em;
}
.comment-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.5em;
}
.comment-item:nth-of-type(even) {
  grid-template-columns: 1fr 50px;
}
.fukidashi {
  background-color: rgb(var(--color-wht));
  display: grid;
  place-items: center;
  font-weight: var(--weight-bold);
  font-size: 1.1em;
  border-radius: 4px;
  position: relative;
  padding: 1.25em 0.5em;
}
.fukidashi::before {
  position: absolute;
  top: 40%;
  border: 8px solid transparent;
  border-left: 18px solid #fff;
  content: "";
}
.comment-item:nth-of-type(odd) .fukidashi::before {
  left: -20px;
  transform: translateY(-50%) rotate(205deg);
}
.comment-item:nth-of-type(even) .fukidashi::before {
  right: -20px;
  transform: translateY(-50%) rotate(335deg);
}

@media screen and (min-width: 500px) {
  /* スマートフォン横 */

  .full-width-image {
    width: var(--base-w);
  }

  .main-ttl {
    font-size: 24px;
  }
  .cta_banner_btn a > * {
    padding-left: 140px;
    padding-right: 0;
  }
  .cta_banner_btn a::before {
    width: 95px;
    max-width: 100%;
  }
  .cta_banner_btn figure img {
    max-width: 220px;
  }
  .line-ttl .icon-line {
    font-size: 4em;
  }
  .line-ttl .icon-line-text {
    font-size: 5em;
  }
  .line-text {
    font-size: 22px;
  }
  /* ------------------------------------------------------------ */
  /* main */
  /* ------------------------------------------------------------ */

  .mv-catch span,
  .mv-wrapper h3 {
    font-size: 27px;
  }
  .mv-image::before {
    width: calc(100% - 108px);
  }

  .point-list li {
    font-size: 20px;
  }

  .lineup-item figcaption {
    font-size: 20px;
  }
  .p-mark {
    font-size: 1.1em;
  }
  .lineup-ttl {
    font-size: 24px;
  }
  .price-list .price {
    font-size: 28px;
  }
  .lineup-item_point h5 span {
    font-size: 18px;
  }
  .cartridge .title span {
    font-size: 18px;
  }
  .cartridge-item .lineup-ttl {
    font-size: 20px;
  }
  .cartridge-item_detail {
    grid-template-columns: 110px 1fr;
  }
  .cartridge-item_detail .price-list .price {
    font-size: 24px;
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  /* タブレット縦 / スマートフォン横 */

  /* .full-width-image {
    width: var(--base-w);
  } */

  .content {
    grid-template-columns: 1fr var(--base-w);
  }
  .content-l {
    display: flex;
    grid-column: 1/2;
  }
  .content-r {
    display: none;
  }
  .content-main {
    grid-column: 2/3;
    box-shadow: 0 3px 40px rgba(31, 51, 62, 0.3);
  }
  /* ------------------------------------------------------------ */
  /* header */
  /* ------------------------------------------------------------ */
  .main-header {
    position: relative;
    background: none;
  }
  .main-header .header-inner {
    padding: 0;
  }
  .main-header .main-logo {
    display: none;
  }
  .nav-btn.nav-toggle {
    position: fixed;
    top: 1em;
    right: 1em;
  }

  .mv-wrapper {
    padding-block: 2.5em;
    min-height: 100vh;
    min-height: 100svh;
  }
  .mv-logo {
    display: flex;
    flex-direction: column;
    gap: 0.25em;
  }
  .mv-logo span {
    font-weight: var(--weight-bold);
  }
  .mv-wrapper h3 {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  /* デスクトップ/タブレット横 */

  .content {
    grid-template-columns: 1fr var(--base-w) 1fr;
  }
  .content-l,
  .content-r {
    display: flex;
  }
  .content-l {
    grid-column: 1/2;
  }
  .content-main {
    grid-column: 2/3;
    margin-block: 1em 0;
  }

  .main-header {
    display: flex;
    align-self: start;
    height: 100vh;
    position: sticky;
    top: 0;
    grid-column: 3/4;
  }
  .main-header .main-logo {
    display: none;
  }

  .catch-text {
    font-size: 2vw;
  }

  /* ------------------------------------------------------------ */
  /* component */
  /* ------------------------------------------------------------ */

  /* ------------------------------------------------------------ */
  /* header */
  /* ------------------------------------------------------------ */
  .nav-btn.nav-toggle {
    display: none;
  }
  .gnav {
    position: relative;
    max-width: unset;
    transform: translateX(0);
    pointer-events: auto;
    background: none;
  }
  .gnav > * {
    opacity: 1;
    -webkit-transition: 1.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
    transition: 1.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
    gap: 1.2vh 0;
  }
  .nav-menu .index-ttl {
    font-size: 1.6vh;
  }

  /* ------------------------------------------------------------ */
  /* main */
  /* ------------------------------------------------------------ */
  .mv-wrapper {
    min-height: calc(100vh - 1em);
    min-height: calc(100svh - 1em);
  }
}
