@charset "UTF-8";
.pc_LL_display {
  display: none;
}
@media screen and (max-width: 1600px) {
  .pc_LL_display {
    display: block;
  }
}

.pc_L_display {
  display: none;
}
@media screen and (max-width: 1400px) {
  .pc_L_display {
    display: block;
  }
}

.pc_M_display {
  display: none;
}
@media screen and (max-width: 1200px) {
  .pc_M_display {
    display: block;
  }
}

.pc_S_display {
  display: none;
}
@media screen and (max-width: 1000px) {
  .pc_S_display {
    display: block;
  }
}

.tab_display {
  display: none;
}
@media screen and (max-width: 800px) {
  .tab_display {
    display: block;
  }
}

.sp_LL_display {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_LL_display {
    display: block;
  }
}

.sp_L_display {
  display: none;
}
@media screen and (max-width: 460px) {
  .sp_L_display {
    display: block;
  }
}

.sp_ML_display {
  display: none;
}
@media screen and (max-width: 400px) {
  .sp_ML_display {
    display: block;
  }
}

.sp_M_display {
  display: none;
}
@media screen and (max-width: 375px) {
  .sp_M_display {
    display: block;
  }
}

.sp_S_display {
  display: none;
}
@media screen and (max-width: 350px) {
  .sp_S_display {
    display: block;
  }
}

body {
  width: 100%;
  line-height: 1.6;
  color: #3a3333;
}

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

a {
  text-decoration: none;
}

:root {
  --line-color: #00b900;
  --yellow: #f9ebd4;
  --blue: #d0e0fd;
  --black: #3A3333;
  --gray-light: #eeeeee;
  --gray: #cccccc;
  --gray-dark: #888888;
  --primary: #e64754;
  --primary-light: #ffced2;
  --primary-dark: #af4b61;
  --primary-lighter: #fbedee;
  --secondary: #7a94bb;
  --radius-s: 2px;
  --radius: 4px;
  --radius-l: 8px;
  --sans: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
  --serif: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  --cursive: 'Great Vibes', cursive;
  --faqx: 'Allura', cursive;
  --price: 'Oswald', sans-serif;
  --tel: 'Oswald', sans-serif;
  --faq: 'Oswald', sans-serif;
  --font-size-s: .9em;
  --font-size-xs: .7em;
  --line-height-l: 1.8;
  --line-height-s: 1.3;
  --shadow: 0 0 5px 1px rgba(0, 0, 0, .2);
  overflow: scroll;
  --admin-bar-height: 32px;
  --header-height: 80px;
  --header-height-s: 60px;
  --width: 1080px;
  --font-size-max: 2.1em;
  --font-size-xxl: 1.9em;
  --font-size-xl: 1.4em;
  --font-size-l: 1.2em;
  --margin-xxl: 64px;
  --margin-xl: 32px;
  --margin-l: 16px;
  --margin: 8px;
  --margin-s: 4px;
}

.main {
  margin-top: var(--header-height);
  min-height: 50vh;
}

/*--------------- header ---------------*/
.cta_bg {
  position: relative;
}
.cta_bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 60%;
  background-image: url(../img/fv_left.webp);
  background-size: contain;
  background-repeat: repeat-x;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 600px) {
  .cta_bg::after {
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.cta [data-action=tel] {
  color: white;
  background-color: var(--primary);
}

.cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: var(--margin);
  position: relative;
}
@media screen and (max-width: 600px) {
  .cta a {
    padding: 4px;
  }
}

.header .nav .cta {
  line-height: 1.5;
  padding: 8px;
  margin-left: 16px;
  transition: transform 0.3s ease;
  transform-origin: center right;
}

.header .nav .cta .icon {
  font-size: 24px;
  margin-right: 8px;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.header .nav.sp {
  display: none;
}

.header .nav .cta .tel {
  font-size: 24px;
  white-space: nowrap;
}

.cta .reception-hours {
  font-size: 0.68em;
}

.tel {
  font-family: "Oswald", sans-serif;
}

.cta .cta__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta :not([data-action=mail]) .reception-hours::before {
  content: "受付：";
}

.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  background-color: hsla(0, 0%, 100%, 0.95);
  transition: box-shadow 0.3s ease;
}
@media screen and (max-width: 600px) {
  .header {
    padding-right: 24px;
  }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  transition: height 0.3s ease;
}
@media screen and (max-width: 1400px) {
  .header .container {
    width: 96%;
    margin: 0 auto;
  }
}

.header .nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: stretch;
}

.header .nav .cta {
  line-height: 1.5;
  padding: 8px;
  margin-left: 16px;
  transition: transform 0.3s ease;
  transform-origin: center right;
}

.header .nav .cta .icon {
  font-size: 24px;
  margin-right: 8px;
}
@media screen and (max-width: 600px) {
  .header .nav .cta .icon {
    width: 16px;
    height: 16px;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0 auto;
  }
}

.header .nav .cta .tel {
  font-size: 24px;
  white-space: nowrap;
}

@media screen and (max-width: 1200px) {
  .header .nav.pc {
    gap: 8px;
  }
  .header .nav.pc .nav__item,
  .header .nav.pc .nav__item a {
    font-size: 16px;
    padding: 4px;
    white-space: nowrap;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .header .nav.pc {
    display: none;
  }
}
.header .nav.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .header .nav.sp {
    display: flex;
  }
}
.header .logotype {
  max-width: 200px;
  height: 32px;
  transition: transform 0.3s ease;
  transform-origin: center left;
}

.menu-open .header,
.is-scrolled .header {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 1200px) {
  .header .nav .cta {
    margin-left: 0;
  }
  .header .nav .cta .cta__text {
    font-size: 14px;
  }
  .header .nav .cta .tel {
    font-size: 22px;
  }
  .header .nav .cta .icon {
    font-size: 12px;
  }
  .header .nav.pc .nav__item:last-child .nav__sub.is-items {
    right: 0;
    left: auto;
    transform: translateX(0);
  }
  .header .nav.pc .nav__item:nth-last-child(2) .nav__sub.is-items {
    right: 0;
    left: auto;
    transform: translateX(0);
  }
  .nav__sub.is-items .nav__item {
    white-space: normal;
    font-size: 16px;
    padding: auto;
    width: 150px;
  }
  .nav__sub.is-items .nav__item a {
    white-space: pre-wrap !important;
    line-height: 1.4;
  }
}
@media screen and (max-width: 992px) {
  .header .logotype {
    max-width: 150px;
    height: 24px;
  }
  .header .nav.pc .nav__item,
  .header .nav.pc .nav__item a {
    font-size: 14px;
    padding: 2px;
  }
  .header .nav.pc {
    gap: 3px;
  }
  .header .nav .cta .cta__text {
    font-size: 12px;
  }
  .header .nav .cta .tel {
    font-size: 18px;
  }
  .header .nav .cta .icon {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .header .container {
    height: var(--header-height);
  }
  .header .logotype {
    width: 120px;
    height: 20px;
  }
  .header .nav .cta {
    padding: var(--margin-s) var(--margin);
  }
  .header .nav .cta .icon {
    font-size: 1.2em;
    margin-right: var(--margin-s);
  }
  .header .nav .cta__text {
    font-size: 0.8em;
    text-align: center;
  }
  .header .nav .menu-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--menu-action-size);
    height: var(--menu-action-size);
    margin-right: -10px;
  }
}
@media screen and (max-width: 400px) {
  .header .nav .cta__text {
    font-size: 0.65em;
  }
}
.header .nav a {
  transition: transform 0.3s ease;
}

html.is-scrolled .header .container {
  height: var(--header-height-s);
}

html.is-scrolled .header .logotype,
html.is-scrolled .header .nav .cta {
  transform: scale(0.8);
}

.nav__item a {
  display: block;
  margin: 0 0.4em;
  padding: 0.4em;
  white-space: nowrap;
  font-size: 18px;
}

.nav__item:hover > a,
.nav__item.is-current > a {
  position: relative;
}

.nav__item:hover > a::after,
.nav__item.is-current > a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 4px;
  border-bottom: 2px solid var(--primary);
}

.nav__item:hover .nav__sub {
  animation-name: nav__sub-open;
}

.nav__item:not(:hover) .nav__sub {
  animation-name: nav__sub-close;
}

.nav__sub {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--margin);
  transition: transform 0.3s ease;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: var(--margin);
  background-color: #fff;
  box-shadow: var(--shadow);
  z-index: 200;
}

.nav__sub.is-items {
  width: 420px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  max-height: 70vh;
  overflow-y: scroll;
}

.nav__sub.is-items .nav__item {
  width: 50%;
}

.nav__sub.is-items .nav__item a {
  white-space: pre-wrap;
}

@keyframes nav__sub-open {
  0% {
    visibility: hidden;
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  1% {
    visibility: visible;
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  100% {
    visibility: visible;
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes nav__sub-close {
  0% {
    visibility: visible;
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  99% {
    visibility: visible;
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
}
.btn__primary {
  background-color: #ffe200;
  color: #393939;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
}

.btn__primary:hover {
  background-color: #ffe419;
}

@media screen and (max-width: 480px) {
  .btn__primary {
    width: 100%;
  }
}
.btn__wide {
  width: 100%;
}

.kagu-kaden {
  background: #fcf9f5;
  margin-bottom: 120px;
}

.kagu-kaden .container {
  padding: 0 16px;
}

.kagu-kaden__title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .kagu-kaden__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.kagu-kaden__tab {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .kagu-kaden__tab {
    gap: 16px;
  }
}
.kagu-kaden__tab-item {
  width: calc(50% - 20px);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #d7d7d7;
  background: #fff;
  border-radius: 8px;
  padding: 16px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 700;
  color: #393939;
  transition: 0.3s ease-in-out;
  font-size: 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .kagu-kaden__tab-item {
    width: calc(50% - 8px);
  }
}
.kagu-kaden__tab-item img {
  width: 32px !important;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter 0.2s ease;
}

.kagu-kaden__tab-item.is-active {
  background: #e64754;
  border-color: #e64754;
  color: #fff;
}

.kagu-kaden__tab-item.is-active img {
  filter: brightness(0) invert(1);
}

.kagu-kaden__content[hidden] {
  display: none;
}

.kagu-kaden__content-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .kagu-kaden__content-title {
    font-size: 20px;
  }
}
.kagu-kaden__content-items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.kagu-kaden__content-item {
  width: calc((100% - 32px) / 3);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 4px rgba(25, 21, 21, 0.1);
  transition: 0.3s ease-in-out;
}

.kagu-kaden__content-item:hover {
  transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
  .kagu-kaden__content-item {
    width: calc((100% - 16px) / 2);
  }
}
@media screen and (max-width: 480px) {
  .kagu-kaden__content-item {
    width: 100%;
  }
}
.kagu-kaden__content-item-img {
  aspect-ratio: 1/1;
  background: #ebebeb;
}

.kagu-kaden__content-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.kagu-kaden__content-item-txt {
  padding: 16px;
}

.kagu-kaden__content-item-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.kagu-kaden__content-item-price {
  margin-top: 8px;
  font-size: 14px;
  color: #606060;
  line-height: 1.5;
}

.kagu-kaden__empty {
  grid-column: 1/-1;
  text-align: center;
  color: #747474;
  padding: 16px 0;
}

* {
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
}

section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

h2,
h3,
h4,
h5,
h6,
p,
ul,
ol li {
  margin: 0;
  padding: 0;
}

.title-clip {
  position: relative;
  z-index: 1;
}

.title-clip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 100%;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  background-color: #ffe200;
  z-index: -1;
}

.title-en {
  font-size: 160px;
  color: hsla(0, 0%, 100%, 0);
  -webkit-text-stroke: 1px #e8e0d0;
  text-stroke: 1px #e8e0d0;
  position: absolute;
  top: -96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .title-en {
    font-size: 144px;
    top: -64px;
  }
}
@media screen and (max-width: 480px) {
  .title-en {
    font-size: 120px;
    top: -48px;
  }
}
/* --- パンくずリスト --- */
.breadcrumb {
  background-color: white;
  padding: 0.5em 0;
  font-size: 0.8em;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 1400px) {
  .breadcrumb .container {
    width: 96%;
    margin: 0 auto;
  }
}

.breadcrumb a:visited,
.breadcrumb a {
  color: #2e71b8;
}

.breadcrumb span {
  display: flex;
  align-items: center;
}

.breadcrumb span:not(:first-of-type) {
  position: relative;
}

.breadcrumb span:not(:first-of-type)::before {
  content: "";
  margin: 0 0.5em 0 0.3em;
  width: 0.4em;
  height: 0.4em;
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: currentColor;
  transform: rotate(45deg);
}

@media screen and (max-width: 600px) {
  .is-scrolled .header_hamburger_menu {
    right: 12px;
    top: 22px;
  }
}

.header_hamburger_menu {
  display: none;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  .header_hamburger_menu {
    display: block;
    position: fixed;
    right: 16px;
    top: 30px;
    z-index: 100;
  }
}

.mask {
  display: none;
  padding: 90px 16px;
}
@media screen and (max-width: 600px) {
  .mask {
    display: block;
    position: fixed;
    opacity: 0;
    top: 0;
    right: -200%;
    height: 100vh;
    width: 100%;
    background: #fff;
    z-index: -4;
    transition: all 0.5s;
    overflow: scroll;
  }
}

.open.mask {
  opacity: 1;
  z-index: 20;
  right: 0;
}

.toggle_btn {
  width: 20px;
  height: 18px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
.toggle_btn:hover {
  opacity: 0.7;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  height: 2px;
  background-color: #777;
  border-radius: 1000px;
  transition: all 0.5s;
}
.toggle_btn span:nth-child(1) {
  top: 0px;
  width: 100%;
}
.toggle_btn span:nth-child(2) {
  top: 8px;
  width: 100%;
}
.toggle_btn span:nth-child(3) {
  bottom: 0px;
  width: 100%;
}

.open .toggle_btn span {
  transition: all 0.5s;
}
.open .toggle_btn span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  bottom: 8px;
  transform: rotate(-45deg);
}

.mask_top {
  margin-bottom: 16px;
}

.mask_ttl {
  font-weight: 700;
  padding-bottom: 8px;
  width: 100%;
  border-bottom: 1px solid #e64754;
  margin-bottom: 12px;
}

.mask_txt {
  line-height: 1.6;
  margin-bottom: 16px;
}

.mask_group:not(:last-child) {
  margin-bottom: 24px;
}

.mask_group:nth-child(1) .mask_link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mask_group:nth-child(1) .mask_link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  height: 54px;
  background-size: cover;
  background-position: center;
}
.mask_group:nth-child(1) .mask_link a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
.mask_group:nth-child(1) .mask_link a:hover {
  opacity: 0.6;
}
.mask_group:nth-child(1) .mask_link a span {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  z-index: 3;
  line-height: 1.2;
  text-align: center;
}
.mask_group:nth-child(1) .mask_link a:nth-child(1) {
  background-image: url(../img/mask_bg1-1.webp);
}
.mask_group:nth-child(1) .mask_link a:nth-child(2) {
  background-image: url(../img/mask_bg1-2.webp);
}
.mask_group:nth-child(1) .mask_link a:nth-child(3) {
  background-image: url(../img/mask_bg1-3.webp);
}
.mask_group:nth-child(1) .mask_link a:nth-child(4) {
  background-image: url(../img/mask_bg1-4.webp);
}

.mask_group:nth-child(2) .mask_link {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.mask_group:nth-child(2) .mask_link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
}
.mask_group:nth-child(2) .mask_link a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
.mask_group:nth-child(2) .mask_link a:hover {
  opacity: 0.6;
}
.mask_group:nth-child(2) .mask_link a span {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  z-index: 3;
  line-height: 1.2;
  text-align: center;
}
.mask_group:nth-child(2) .mask_link a:nth-child(1) {
  background-image: url(../img/mask_bg2-1.webp);
}
.mask_group:nth-child(2) .mask_link a:nth-child(2) {
  background-image: url(../img/mask_bg2-2.webp);
}
.mask_group:nth-child(2) .mask_link a:nth-child(3) {
  background-image: url(../img/mask_bg2-3.webp);
}
.mask_group:nth-child(2) .mask_link a:nth-child(4) {
  background-image: url(../img/mask_bg2-4.webp);
}
.mask_group:nth-child(2) .mask_link a:nth-child(5) {
  background-image: url(../img/mask_bg2-5.webp);
}
.mask_group:nth-child(2) .mask_link a:nth-child(6) {
  background-image: url(../img/mask_bg2-6.webp);
}
.mask_group:nth-child(2) .mask_link a:nth-child(7) {
  background-image: url(../img/mask_bg2-7.webp);
}
.mask_group:nth-child(2) .mask_link a:nth-child(8) {
  background-image: url(../img/mask_bg2-8.webp);
}
.mask_group:nth-child(2) .mask_link a:nth-child(9) {
  background-image: url(../img/mask_bg2-9.webp);
}
.mask_group:nth-child(2) .mask_link a:nth-child(10) {
  background-image: url(../img/mask_bg2-10.webp);
}
.mask_group:nth-child(2) .mask_link a:nth-child(11) {
  background-image: url(../img/mask_bg2-11.webp);
}
.mask_group:nth-child(2) .mask_link a:nth-child(12) {
  background-image: url(../img/mask_bg2-12.webp);
}
.mask_group:nth-child(2) .mask_link a:nth-child(13) {
  background-image: url(../img/mask_bg2-13.webp);
}
.mask_group:nth-child(2) .mask_link a:nth-child(14) {
  background-image: url(../img/mask_bg2-14.webp);
}
.mask_group:nth-child(2) .mask_link a:nth-child(15) {
  background-image: url(../img/mask_bg2-15.webp);
}

.mask_more {
  background-color: #af4b61;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 12px 0;
  max-width: 60%;
  margin: 16px auto 0;
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mask_more::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  right: 16px;
}

.mask_group:nth-child(3) .mask_link a,
.mask_group:nth-child(4) .mask_link a {
  display: block;
  padding: 4px 0;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}

.mask .cta_btn_link {
  background-color: #e64754;
  position: relative;
  margin-top: 16px;
}
.mask .cta_btn_link::after {
  display: block;
}

.mask_close {
  margin: var(--margin-xl) 0;
  display: block;
  text-decoration: underline;
  text-align: center;
  color: var(--primary-dark);
}

/*--------------- fv ---------------*/
.fv {
  width: 100%;
  overflow: hidden;
}

.fv_inner {
  height: 600px;
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 800px) {
  .fv_inner {
    height: auto;
  }
}

.fv_bg {
  display: grid;
  grid-template-columns: 1fr 40vw;
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 800px) {
  .fv_bg {
    display: block;
  }
}

.fv_left {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.fv_left img {
  height: 230px;
  bottom: 110px;
  left: 0;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv_right {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .fv_right {
    display: none;
  }
}
.fv_right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv_wrap {
  max-width: 1200px;
  width: 100%;
  position: relative;
  margin: 0 auto;
  z-index: 2;
  padding: 0 24px;
}
@media screen and (max-width: 800px) {
  .fv_wrap {
    padding: 0;
    width: 100%;
    overflow: hidden;
  }
}

.fv_content {
  max-width: 860px;
  position: relative;
  padding-bottom: 68px;
}
@media screen and (max-width: 800px) {
  .fv_content {
    padding: 40px 0;
  }
}

.fv_img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 312px;
}
@media screen and (max-width: 800px) {
  .fv_img {
    width: 180px;
    right: -16px;
  }
}
@media screen and (max-width: 600px) {
  .fv_img {
    width: 140px;
  }
}
@media screen and (max-width: 350px) {
  .fv_img {
    width: 100px;
  }
}

.fv_top {
  margin-bottom: 16px;
  padding-left: 78px;
}
@media screen and (max-width: 1000px) {
  .fv_top {
    padding-left: 40px;
  }
}
@media screen and (max-width: 800px) {
  .fv_top {
    padding-left: 0;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 16px;
  }
}
.fv_top span {
  display: block;
  color: #E64754;
  font-weight: 900;
  font-size: 36px;
  margin-bottom: 12px;
}
@media screen and (max-width: 1000px) {
  .fv_top span {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .fv_top span {
    font-size: 20px;
  }
}
.fv_top h2 {
  font-size: 70px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
@media screen and (max-width: 1000px) {
  .fv_top h2 {
    font-size: 54px;
  }
}
@media screen and (max-width: 600px) {
  .fv_top h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 350px) {
  .fv_top h2 {
    font-size: 36px;
  }
}

.fv_list {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 78px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .fv_list {
    padding-left: 40px;
  }
}
@media screen and (max-width: 800px) {
  .fv_list {
    padding-left: 0;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 600px) {
  .fv_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    width: 92%;
    margin: 0 auto 20px;
    max-width: 400px;
  }
}

.fv_item {
  width: 152px;
  aspect-ratio: 1/1;
  background-color: #FFE200;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
}
@media screen and (max-width: 1000px) {
  .fv_item {
    width: 130px;
    padding-top: 4px;
  }
}
@media screen and (max-width: 600px) {
  .fv_item {
    width: 100%;
  }
}

.fv_item span {
  font-size: 20px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 1000px) {
  .fv_item span {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .fv_item span {
    font-size: 14px;
  }
}
.fv_item span b {
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .fv_item span b {
    font-style: 26px;
  }
}
@media screen and (max-width: 600px) {
  .fv_item span b {
    font-size: 20px;
  }
}

.fv_item:last-child {
  padding-top: 0;
}
.fv_item:last-child b {
  font-size: 28px;
}
@media screen and (max-width: 1000px) {
  .fv_item:last-child b {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .fv_item:last-child b {
    font-size: 18px;
  }
}

.fv_btn {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .fv_btn {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 92%;
    margin: 0 auto;
    max-width: 400px;
  }
}

.fv_btn_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 324px;
  height: 90px;
  border-radius: 4px;
  padding-bottom: 2px;
  position: relative;
  transition: all 0.4s;
}
@media screen and (max-width: 600px) {
  .fv_btn_link {
    width: 240px;
    height: 72px;
  }
}
.fv_btn_link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  z-index: 1;
}
.fv_btn_link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 6px;
  left: 0;
  border-radius: 4px;
  transition: all 0.4s;
}

.fv_btn_link:hover {
  top: 6px;
}
.fv_btn_link:hover::after {
  top: 0;
}

.fv_btn_link:nth-child(1)::before {
  background-color: #E64754;
}
.fv_btn_link:nth-child(1)::after {
  background-color: #A0272B;
}
.fv_btn_link:nth-child(1) .fv_btn_inner::after {
  top: 14px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(../img/tel_icon.webp);
}
@media screen and (max-width: 600px) {
  .fv_btn_link:nth-child(1) .fv_btn_inner::after {
    top: 10px;
    left: 4px;
  }
}

.fv_btn_link:nth-child(2)::before {
  background-color: #07C755;
}
.fv_btn_link:nth-child(2)::after {
  background-color: #24A486;
}
.fv_btn_link:nth-child(2) .fv_btn_inner::after {
  top: 2px;
  left: -12px;
  width: 26px;
  height: 26px;
  background-image: url(../img/line_icon.webp);
}
@media screen and (max-width: 600px) {
  .fv_btn_link:nth-child(2) .fv_btn_inner::after {
    left: -4px;
  }
}

.fv_btn_link:nth-child(1) .fv_btn_inner span:nth-child(1) {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 38px;
}
@media screen and (max-width: 600px) {
  .fv_btn_link:nth-child(1) .fv_btn_inner span:nth-child(1) {
    font-size: 30px;
  }
}

.fv_btn_inner {
  display: block;
  padding-left: 36px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 4;
}
.fv_btn_inner::after {
  content: "";
  position: absolute;
  background-size: 100% 100%;
}

.fv_btn_inner span {
  color: #fff;
  display: block;
}
.fv_btn_inner span:nth-child(1) {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 6px;
}
@media screen and (max-width: 600px) {
  .fv_btn_inner span:nth-child(1) {
    font-size: 22px;
  }
}
.fv_btn_inner span:nth-child(2) {
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .fv_btn_inner span:nth-child(2) {
    font-size: 12px;
  }
}

.fv_bottom {
  display: none;
}
@media screen and (max-width: 800px) {
  .fv_bottom {
    display: block;
    height: 200px;
    width: 100%;
    overflow-x: hidden;
  }
}
@media screen and (max-width: 800px) {
  .fv_bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*--------------- reveal ---------------*/
.attention {
  width: 100%;
  overflow: hidden;
}

.attention_wrap {
  max-width: 1200px;
  margin: 0 auto;
  width: 96%;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .attention_wrap {
    grid-template-columns: 320px 1fr;
  }
}
@media screen and (max-width: 800px) {
  .attention_wrap {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 800px) {
  .attention_img {
    max-width: 400px;
    max-width: 68%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 800px) {
  .attention_txt {
    order: -2;
  }
}
.attention_txt h2 {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.025em;
  line-height: 1.6;
  margin-bottom: 24px;
}
@media screen and (max-width: 1000px) {
  .attention_txt h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 800px) {
  .attention_txt h2 {
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 16px;
  }
}
@media screen and (max-width: 600px) {
  .attention_txt h2 {
    font-size: 27px;
  }
}
.attention_txt p {
  font-size: 16px;
  line-height: 2.25;
}
@media screen and (max-width: 600px) {
  .attention_txt p {
    font-size: 13px;
  }
}

/*--------------- trouble ---------------*/
.trouble {
  padding: 0;
  width: 100%;
  overflow: hidden;
}

.trouble_bubble {
  background-color: #E64754;
  position: relative;
  padding: 80px 0;
}
@media screen and (max-width: 600px) {
  .trouble_bubble {
    padding: 24px 0;
  }
}
.trouble_bubble::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 40px;
  background-color: #E64754;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  .trouble_bubble::after {
    width: 40px;
    height: 14px;
    bottom: -12px;
  }
}

.trouble_inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 96%;
  padding: 50px;
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  .trouble_inner {
    padding: 24px 0;
  }
}

.trouble_heading {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 32px;
  margin: 0 auto 32px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .trouble_heading {
    text-align: center;
    line-height: 1.4;
  }
}
@media screen and (max-width: 800px) {
  .trouble_heading {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .trouble_heading {
    font-size: 18px;
    margin: 0 auto;
  }
}
.trouble_heading::before {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  background-image: url(../img/dot_arrow01.svg);
  background-size: 100% 100%;
  left: -68px;
  bottom: -16px;
}
@media screen and (max-width: 600px) {
  .trouble_heading::before {
    width: 18px;
    height: 18px;
    left: -24px;
    bottom: 0;
  }
}
.trouble_heading::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  background-image: url(../img/dot_arrow02.svg);
  background-size: 100% 100%;
  right: -68px;
  bottom: -16px;
}
@media screen and (max-width: 600px) {
  .trouble_heading::after {
    width: 18px;
    height: 18px;
    right: -24px;
    bottom: 0;
  }
}
.trouble_heading span {
  color: #E64754;
}

.trouble_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .trouble_list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .trouble_list {
    display: none;
  }
}

.trouble_item img {
  width: 68%;
  margin: 0 auto;
}
.trouble_item h3 {
  font-size: 23px;
  color: #E64754;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  margin: 20px auto 14px;
}
.trouble_item p {
  font-size: 14px;
  line-height: 1.4;
}

.trouble_bottom {
  max-width: 1000px;
  width: 96%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 230px;
  align-items: center;
  gap: 40px;
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 800px) {
  .trouble_bottom {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .trouble_bottom {
    padding: 40px 0;
  }
}

.trouble_bottom_txt h3 {
  font-size: 45px;
  font-weight: 900;
  color: #E64754;
  line-height: 1.4;
  margin-bottom: 24px;
}
@media screen and (max-width: 1000px) {
  .trouble_bottom_txt h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .trouble_bottom_txt h3 {
    font-size: 22px;
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 24px;
  }
}
.trouble_bottom_txt p {
  font-size: 16px;
  line-height: 2.25;
}
@media screen and (max-width: 800px) {
  .trouble_bottom_txt p {
    padding-right: 160px;
  }
}
@media screen and (max-width: 600px) {
  .trouble_bottom_txt p {
    padding-right: 100px;
    font-size: 13px;
  }
}

@media screen and (max-width: 800px) {
  .trouble_bottom_img {
    width: 140px;
    position: absolute;
    bottom: 80px;
    right: 0;
  }
}
@media screen and (max-width: 600px) {
  .trouble_bottom_img {
    width: 90px;
  }
}

/*--------------- cta ---------------*/
.cta {
  position: relative;
  width: 100%;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .cta {
    padding: 40px 0;
    width: 100%;
    overflow: hidden;
  }
}

.cta_heading {
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 32px;
  font-size: 27px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .cta_heading {
    line-height: 1.4;
    text-align: center;
  }
}
@media screen and (max-width: 800px) {
  .cta_heading {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .cta_heading {
    font-size: 18px;
  }
}
.cta_heading::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 26px;
  background-color: #E64754;
  left: -40px;
  bottom: 0;
  transform: rotate(-45deg);
}
@media screen and (max-width: 600px) {
  .cta_heading::before {
    left: -20px;
    transform: rotate(-24deg);
  }
}
@media screen and (max-width: 350px) {
  .cta_heading::before {
    left: -12px;
  }
}
.cta_heading::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 26px;
  background-color: #E64754;
  right: -40px;
  bottom: 0;
  transform: rotate(45deg);
}
@media screen and (max-width: 600px) {
  .cta_heading::after {
    right: -20px;
    transform: rotate(24deg);
  }
}
@media screen and (max-width: 350px) {
  .cta_heading::after {
    right: -12px;
  }
}
.cta_heading span {
  font-size: 37px;
  background: linear-gradient(transparent 60%, #FFE201 60%);
}
@media screen and (max-width: 800px) {
  .cta_heading span {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .cta_heading span {
    font-size: 24px;
  }
}

.cta_btn {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .cta_btn {
    flex-direction: column;
  }
}
@media screen and (max-width: 800px) {
  .cta_btn {
    width: 92%;
    margin: 0 auto;
    max-width: 400px;
  }
}

.cta_btn_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 440px;
  height: 118px;
  border-radius: 4px;
  padding-bottom: 2px;
  position: relative;
  transition: all 0.4s;
}
@media screen and (max-width: 800px) {
  .cta_btn_link {
    width: 300px;
    height: 80px;
  }
}
.cta_btn_link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  z-index: 1;
}
.cta_btn_link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 6px;
  left: 0;
  border-radius: 4px;
  transition: all 0.4s;
}

.cta .cta_btn_link:hover {
  top: 6px;
}
.cta .cta_btn_link:hover::after {
  top: 0;
}

.cta_btn_link:nth-child(1)::before,
.mask .cta_btn_link::before {
  background-color: #E64754;
}
.cta_btn_link:nth-child(1)::after,
.mask .cta_btn_link::after {
  background-color: #A0272B;
}
.cta_btn_link:nth-child(1) .cta_btn_inner span:nth-child(1),
.mask .cta_btn_link .cta_btn_inner span:nth-child(1) {
  line-height: 1.4;
}
.cta_btn_link:nth-child(1) .cta_btn_inner::after,
.mask .cta_btn_link .cta_btn_inner::after {
  top: 18px;
  left: -16px;
  width: 32px;
  height: 32px;
  background-image: url(../img/tel_icon.webp);
}
@media screen and (max-width: 800px) {
  .cta_btn_link:nth-child(1) .cta_btn_inner::after,
  .mask .cta_btn_link .cta_btn_inner::after {
    width: 24px;
    height: 24px;
    top: 12px;
    left: -4px;
  }
}

.cta_btn_link:nth-child(2)::before {
  background-color: #07C755;
}
.cta_btn_link:nth-child(2)::after {
  background-color: #24A486;
}
.cta_btn_link:nth-child(2) .cta_btn_inner::after {
  top: 14px;
  left: -18px;
  width: 36px;
  height: 36px;
  background-image: url(../img/line_icon.webp);
}
@media screen and (max-width: 800px) {
  .cta_btn_link:nth-child(2) .cta_btn_inner::after {
    width: 32px;
    height: 32px;
    left: -12px;
    top: 6px;
  }
}

.cta_btn_link:nth-child(1) .cta_btn_inner span:nth-child(1) {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 42px;
}
@media screen and (max-width: 800px) {
  .cta_btn_link:nth-child(1) .cta_btn_inner span:nth-child(1) {
    font-size: 32px;
  }
}

.cta_btn_inner {
  display: block;
  padding-left: 36px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 4;
}
.cta_btn_inner::after {
  content: "";
  position: absolute;
  background-size: 100% 100%;
}

.cta_btn_inner span {
  color: #fff;
  display: block;
}
.cta_btn_inner span:nth-child(1) {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 6px;
}
@media screen and (max-width: 800px) {
  .cta_btn_inner span:nth-child(1) {
    font-size: 26px;
  }
}
.cta_btn_inner span:nth-child(2) {
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .cta_btn_inner span:nth-child(2) {
    font-size: 12px;
  }
}

/*--------------- merit ---------------*/
.merit {
  width: 100%;
  overflow: hidden;
}

.merit_wrap {
  max-width: 1080px;
  margin: 0 auto;
  width: 96%;
}

.merit_top {
  position: relative;
  width: 100%;
  margin: 0 auto 60px;
}
@media screen and (max-width: 600px) {
  .merit_top {
    margin: 0 auto 32px;
  }
}

.section_heading {
  text-align: center;
  font-size: 30px;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .section_heading {
    font-size: 24px;
  }
}
.section_heading span {
  font-size: 42px;
}
@media screen and (max-width: 600px) {
  .section_heading span {
    font-size: 28px;
    display: inline-block;
    line-height: 1.35;
  }
}

.section_heading_en {
  display: block;
  font-weight: 700;
  font-size: 170px;
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke: 1px #E8E0D0;
  text-stroke: 1px #E8E0D0;
  position: absolute;
  top: -100px;
  left: 20%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  top: -40px;
  line-height: 1;
  letter-spacing: 0;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .section_heading_en {
    font-size: 80px;
  }
}
@media screen and (max-width: 375px) {
  .section_heading_en {
    font-size: 68px;
  }
}

@media screen and (max-width: 1000px) {
  .merit_list {
    max-width: 500px;
    margin: 0 auto;
  }
}

.merit_item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .merit_item {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .merit_item {
    gap: 16px;
  }
}
.merit_item:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .merit_item:not(:last-child) {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 1000px) {
  .merit_img {
    order: 3;
  }
}

.merit_item:nth-child(even) .merit_img {
  order: 3;
}

.merit_num {
  font-size: 23px;
  font-weight: bold;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .merit_num {
    font-size: 20px;
    margin: 0 auto 12px;
  }
}
.merit_num::before {
  content: "";
  width: 58px;
  height: 38px;
  background-image: url(../img/merit_num.webp);
  background-size: 100% 100%;
  display: block;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .merit_num::before {
    width: 44px;
    height: 28px;
  }
}

.merit_ttl {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
}
@media screen and (max-width: 1200px) {
  .merit_ttl {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .merit_ttl {
    font-size: 20px;
    margin: 0 auto 8px;
  }
}

.merit_desc {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .merit_desc {
    font-size: 14px;
  }
}

/*--------------- service ---------------*/
.service {
  width: 100%;
  overflow: hidden;
}

.service_wrap {
  max-width: 1080px;
  margin: 0 auto;
  width: 96%;
}

.service_top {
  width: 100%;
  margin: 0 auto 60px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .service_top {
    margin: 0 auto 40px;
  }
}

.service_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  .service_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}

.service_item {
  background-color: #fff;
  width: 235px;
  height: 156px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .service_item {
    width: 100%;
    height: 75px;
    font-size: 14px;
  }
}

.service_inner {
  padding-top: 30px;
  position: relative;
  line-height: 1.3;
}
@media screen and (max-width: 600px) {
  .service_inner {
    padding-top: 18px;
  }
}
.service_inner::after {
  content: "";
  position: absolute;
  width: 24px;
  aspect-ratio: 1/1;
  background-image: url(../img/check_icon.svg);
  background-size: 100% 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  .service_inner::after {
    width: 16px;
  }
}

/*--------------- flow ---------------*/
.flow {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.flow::after {
  content: "";
  position: absolute;
  background-color: #FCF9F5;
  width: 100%;
  height: calc(100% - 75px);
  bottom: 0;
  left: 0;
}
.flow .section_heading_en {
  top: -60px;
}
@media screen and (max-width: 600px) {
  .flow .section_heading_en {
    top: -40px;
  }
}

.flow_wrap {
  position: relative;
  z-index: 3;
  max-width: 1080px;
  margin: 0 auto;
  width: 96%;
}

.flow_top {
  width: 100%;
  position: relative;
  margin: 0 auto 60px;
}
@media screen and (max-width: 600px) {
  .flow_top {
    margin: 0 auto 40px;
  }
}

.flow_top p {
  text-align: center;
  line-height: 2.25;
  font-size: 16px;
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .flow_top p {
    font-size: 14px;
    text-align: justify;
    margin-top: 16px;
  }
}

.flow_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .flow_list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .flow_list {
    grid-template-columns: 1fr;
  }
}

.flow_item {
  display: flex;
  flex-direction: column;
}

.flow_img {
  width: 86%;
  margin: 0 auto 48px;
  max-width: 240px;
}
@media screen and (max-width: 600px) {
  .flow_img {
    max-width: 180px;
    margin: 0 auto 32px;
  }
}

.flow_txt {
  padding: 10px 20px 24px;
  background-color: #fff;
  position: relative;
  flex: 1;
}
@media screen and (max-width: 600px) {
  .flow_txt {
    padding: 8px 16px 20px;
  }
}
.flow_txt p {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .flow_txt p {
    font-size: 14px;
  }
}

.flow_num {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  top: -32px;
  left: 0;
  position: absolute;
}

.flow_ttl {
  font-size: 22px;
  position: relative;
  top: -20px;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .flow_ttl {
    font-size: 18px;
    top: -12px;
  }
}

/*--------------- buyback ---------------*/
.buyback {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.buyback::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 240px;
  background-image: url(../img/fv_left.webp);
  background-repeat: repeat-x;
  top: 0px;
  left: 0;
}
@media screen and (max-width: 800px) {
  .buyback::after {
    height: 160px;
    background-size: cover;
  }
}

.buyback_wrap {
  max-width: 1300px;
  margin: 0 auto;
  width: 96%;
}

.buyback_top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 800px) {
  .buyback_top {
    flex-direction: column;
    gap: 16px;
    margin: 0 auto 24px;
  }
}
.buyback_top h2 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  .buyback_top h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .buyback_top h2 {
    font-size: 20px;
  }
}
.buyback_top h2 .color_txt {
  font-size: 42px;
  color: #E64754;
}
@media screen and (max-width: 1000px) {
  .buyback_top h2 .color_txt {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .buyback_top h2 .color_txt {
    font-size: 24px;
  }
}
.buyback_top h2 .big_txt {
  font-size: 45px;
}
@media screen and (max-width: 1000px) {
  .buyback_top h2 .big_txt {
    font-size: 36px;
  }
}
@media screen and (max-width: 600px) {
  .buyback_top h2 .big_txt {
    font-size: 28px;
  }
}
.buyback_top img {
  width: 248px;
}
@media screen and (max-width: 1000px) {
  .buyback_top img {
    width: 180px;
  }
}

.buyback_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 20px;
  -moz-column-gap: 32px;
       column-gap: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .buyback_list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1000px) {
  .buyback_list {
    gap: 16px;
  }
}
@media screen and (max-width: 800px) {
  .buyback_list {
    margin-bottom: 16px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .buyback_list {
    gap: 8px;
    margin-bottom: 8px;
  }
}

.buyback_bottom {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 16px;
  padding-bottom: 8px;
}
@media screen and (max-width: 1200px) {
  .buyback_bottom {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 1000px) {
  .buyback_bottom {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .buyback_bottom {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .buyback_bottom {
    gap: 8px;
  }
}
@media screen and (max-width: 1400px) {
  .buyback_bottom .buyback_item span {
    font-size: 18px;
  }
}
@media screen and (max-width: 800px) {
  .buyback_bottom .buyback_item span {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .buyback_bottom .buyback_item span {
    font-size: 12px;
  }
}
@media screen and (max-width: 375px) {
  .buyback_bottom .buyback_item span {
    font-size: 10px;
  }
}

.buyback_item {
  padding: 8px 16px 24px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 600px) {
  .buyback_item {
    padding: 8px 4px 16px;
  }
}
.buyback_item span {
  font-size: 22px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 1400px) {
  .buyback_item span {
    font-size: 20px;
  }
}
@media screen and (max-width: 800px) {
  .buyback_item span {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .buyback_item span {
    font-size: 12px;
  }
}
@media screen and (max-width: 375px) {
  .buyback_item span {
    font-size: 10px;
  }
}

/*--------------- up ---------------*/
.up {
  padding: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.up::after {
  content: "";
  position: absolute;
  background-color: #FCF9F5;
  width: 100%;
  height: 30%;
  bottom: 0;
  left: 0;
}

.up_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .up_wrap {
    flex-direction: column;
    gap: 16px;
  }
}

.up_img {
  width: 358px;
}
@media screen and (max-width: 1000px) {
  .up_img {
    width: 260px;
  }
}
@media screen and (max-width: 800px) {
  .up_img {
    order: 2;
  }
}
@media screen and (max-width: 600px) {
  .up_img {
    width: 220px;
  }
}

.up_top {
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
  padding: 10px 40px;
  background-color: #E64754;
  color: #fff;
  margin-bottom: 16px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1000px) {
  .up_top {
    font-size: 20px;
    padding: 10px 24px;
  }
}
@media screen and (max-width: 600px) {
  .up_top {
    font-size: 16px;
    padding: 8px 8px;
    margin-bottom: 8px;
  }
}
.up_top span span {
  font-size: 32px;
}
@media screen and (max-width: 1000px) {
  .up_top span span {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .up_top span span {
    font-size: 20px;
  }
}

.up_bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .up_bottom {
    gap: 8px;
  }
}
.up_bottom h2 {
  font-size: 80px;
  font-weight: bold;
  color: #E64754;
}
@media screen and (max-width: 1000px) {
  .up_bottom h2 {
    font-size: 60px;
  }
}
@media screen and (max-width: 600px) {
  .up_bottom h2 {
    font-size: 48px;
  }
}
.up_bottom img {
  width: 72px;
}
@media screen and (max-width: 1000px) {
  .up_bottom img {
    width: 54px;
  }
}
@media screen and (max-width: 600px) {
  .up_bottom img {
    width: 40px;
  }
}

/*--------------- package ---------------*/
.package {
  background-color: #FCF9F5;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .package {
    padding: 40px 0 40px;
  }
}

.package_wrap {
  width: 96%;
  margin: 0 auto;
  max-width: 1080px;
}

.package_heading {
  position: relative;
  font-size: 23px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
@media screen and (max-width: 800px) {
  .package_heading {
    text-align: center;
    line-height: 1.4;
  }
}
@media screen and (max-width: 600px) {
  .package_heading {
    font-size: 16px;
    margin: 0 auto 24px;
  }
}
.package_heading::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  background-color: #3a3333;
  left: -40px;
  bottom: 0;
  transform: rotate(-24deg);
}
@media screen and (max-width: 600px) {
  .package_heading::before {
    left: -16px;
  }
}
.package_heading::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  background-color: #3a3333;
  right: -40px;
  bottom: 0;
  transform: rotate(24deg);
}
@media screen and (max-width: 600px) {
  .package_heading::after {
    right: -16px;
  }
}

.package_slider {
  width: 100%;
  overflow: hidden;
}

.package_swiper {
  position: relative;
  padding-bottom: 40px;
}

.package_item {
  background-color: #fff;
  padding: 8px 16px 24px;
}
.package_item span {
  font-size: 22px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  margin: 0 auto;
}

/*--------------- voice ---------------*/
.voice_top {
  width: 100%;
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .voice_top {
    margin-bottom: 48px;
  }
}
.voice_top .section_heading_en {
  left: 0;
  text-align: left;
  transform: none;
}

.voice_list {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  row-gap: 60px;
  width: 96%;
}
@media screen and (max-width: 1000px) {
  .voice_list {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media screen and (max-width: 800px) {
  .voice_list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 800px) {
  .voice_list {
    row-gap: 40px;
  }
}

.voice_item {
  background-color: #fff;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1000px) {
  .voice_item {
    padding: 40px 20px;
  }
}

.voice_bubble {
  width: 204px;
  position: absolute;
  top: -16px;
  left: 0;
}

.voice_prof {
  width: 80%;
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  .voice_prof {
    max-width: 300px;
  }
}

.voice_img {
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .voice_img {
    margin-bottom: 16px;
  }
}

.voice_txt {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  .voice_txt {
    font-size: 16px;
  }
}

/*--------------- case ---------------*/
.case {
  background-color: #FCF9F5;
}

.case_wrap {
  max-width: 1080px;
  margin: 0 auto;
  width: 96%;
}

.case_head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .case_head {
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
  }
}

.case_head_img {
  width: 190px;
}
@media screen and (max-width: 800px) {
  .case_head_img {
    width: 120px;
  }
}
@media screen and (max-width: 600px) {
  .case_head_img {
    width: 100px;
    position: absolute;
    right: 0;
    top: -50px;
  }
}
@media screen and (max-width: 375px) {
  .case_head_img {
    width: 86px;
    top: -72px;
  }
}

.case_head_txt {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 68px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .case_head_txt {
    padding: 0 8px;
  }
}
@media screen and (max-width: 600px) {
  .case_head_txt {
    width: 90%;
  }
}

.case_head_top {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .case_head_top {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .case_head_top {
    margin-left: 0;
    font-size: 16px;
  }
}
.case_head_top span {
  color: #E64754;
  font-size: 28px;
}
@media screen and (max-width: 1000px) {
  .case_head_top span {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .case_head_top span {
    font-size: 18px;
  }
}
.case_head_top::after {
  content: "";
  width: 34px;
  height: 28px;
  background-image: url(../img/case_bubble.webp);
  background-size: 100% 100%;
  position: absolute;
  top: -8px;
  left: -40px;
}
@media screen and (max-width: 1000px) {
  .case_head_top::after {
    top: -28px;
    left: -16px;
  }
}

.case_head_main {
  font-weight: 700;
  font-size: 48px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .case_head_main {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .case_head_main {
    text-align: center;
    font-size: 30px;
  }
}
@media screen and (max-width: 350px) {
  .case_head_main {
    font-size: 28px;
  }
}

.case_content {
  background-color: #fff;
  padding: 40px 100px;
}
@media screen and (max-width: 1000px) {
  .case_content {
    padding: 40px;
  }
}
@media screen and (max-width: 600px) {
  .case_content {
    padding: 24px 16px;
  }
}

.case_ttl {
  background-color: #E64754;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 8px 0;
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .case_ttl {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .case_ttl {
    font-size: 15px;
  }
}

.case_img {
  margin-bottom: 32px;
}
@media screen and (max-width: 800px) {
  .case_img {
    max-width: 400px;
    margin: 0 auto 32px;
  }
}
@media screen and (max-width: 600px) {
  .case_img {
    margin: 0 auto 24px;
  }
}

@media screen and (max-width: 800px) {
  .case_img-pc {
    display: none;
  }
}

.case_img-sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .case_img-sp {
    display: block;
  }
}

.case_inner {
  display: grid;
  grid-template-columns: 43fr 26fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .case_inner {
    gap: 24px;
  }
}
@media screen and (max-width: 800px) {
  .case_inner {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .case_inner {
    margin-bottom: 24px;
  }
}

.case_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid #000;
  margin-bottom: 8px;
}

.case_item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  font-weight: 500;
}
.case_item span:nth-child(1) {
  background-color: #F0F0F0;
  width: 100%;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case_item span:nth-child(2) {
  font-size: 18px;
}

.case_desc {
  font-size: 17px;
  line-height: 2;
  margin-bottom: 54px;
}
@media screen and (max-width: 1000px) {
  .case_desc {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 600px) {
  .case_desc {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

.case_ex {
  font-size: 15px;
  font-weight: 700;
}
.case_ex span {
  display: block;
  margin-bottom: 8px;
}
.case_ex p {
  line-height: 1.2;
}

.case_price_row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
}

.case_price_row {
  letter-spacing: -0.02em;
}

.case_price_row span {
  display: block;
  text-align: right;
  width: 100%;
  font-weight: 500;
  font-size: 18px;
}

.case_price_row:nth-child(2) {
  padding-bottom: 8px;
  border-bottom: 1px solid #E64754;
  margin-bottom: 4px;
}

.case_price_row:nth-child(2) span {
  color: #E64754;
}

.case_price_row:nth-child(3) span {
  color: #E64754;
  font-weight: 700;
}
.case_price_row:nth-child(3) span:nth-child(2) {
  font-size: 20px;
}

.case_bottom {
  padding: 32px 48px;
  border: 2px dashed #E64754;
  display: grid;
  grid-template-columns: 1fr 127px;
  gap: 36px;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .case_bottom {
    padding: 24px;
    gap: 12px;
  }
}
@media screen and (max-width: 600px) {
  .case_bottom {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 600px) {
  .case_bottom_img {
    width: 152px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 600px) {
  .case_bottom_txt {
    order: 2;
  }
}
.case_bottom_txt span {
  font-size: 17px;
  color: #E64754;
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .case_bottom_txt span {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 8px;
  }
}
.case_bottom_txt p {
  color: #E64754;
  line-height: 2;
  font-weight: 500;
  font-size: 13px;
}

/*--------------- faq ---------------*/
.faq {
  width: 100%;
  overflow: hidden;
}

.faq_top {
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .faq_top {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 600px) {
  .faq_top .section_heading {
    font-size: 20px;
  }
}
.faq_top .section_heading_en {
  left: 80px;
  text-align: left;
  transform: none;
}
@media screen and (max-width: 600px) {
  .faq_top .section_heading_en {
    left: 0;
  }
}

.faq_content {
  margin: 0 auto;
  width: 96%;
  max-width: 1080px;
}

.faq_list {
  padding: 20px;
  border-top: 1px solid #E64754;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .faq_list {
    padding: 20px 12px;
  }
}
.faq_list:last-child {
  border-bottom: 1px solid #E64754;
}

.faq_ttl {
  background-color: #fff;
  padding: 0 0 0 68px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 1px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .faq_ttl {
    font-size: 16px;
    padding: 0 24px 0 54px;
  }
}

.faq_ttl:before {
  background-color: #FFE200;
  content: "Q";
  line-height: 50px;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  margin-right: 20px;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .faq_ttl:before {
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
  }
}

.faq_ttl.open:after {
  transform: translateY(-50%) rotate(180deg);
  top: 45%;
}

.faq_ttl:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 24px;
  background-image: url(../img/faq_arrow.webp);
  background-size: 100% 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media screen and (max-width: 800px) {
  .faq_ttl:after {
    width: 16px;
    height: 20px;
  }
}

.faq_text {
  display: none;
  font-size: 18px;
  margin-top: 20px;
  padding-left: 24px;
}
@media screen and (max-width: 800px) {
  .faq_text {
    font-size: 13px;
  }
}

/*--------------- message ---------------*/
.message {
  background-color: #FCF9F5;
  padding-bottom: 0;
  width: 100%;
  overflow: hidden;
}

.message_wrap {
  max-width: 1080px;
  width: 96%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 450px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .message_wrap {
    grid-template-columns: 1fr 320px;
    align-items: flex-end;
  }
}
@media screen and (max-width: 800px) {
  .message_wrap {
    grid-template-columns: 1fr;
  }
}

.message .cta_btn {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1200px) {
  .message .cta_btn {
    flex-direction: column;
  }
}
@media screen and (max-width: 800px) {
  .message .cta_btn {
    gap: 8px;
    width: -moz-fit-content;
    width: fit-content;
    bottom: 12px;
  }
}
.message .cta_btn .cta_btn_link {
  width: 380px;
  height: 106px;
}
@media screen and (max-width: 800px) {
  .message .cta_btn .cta_btn_link {
    width: 280px;
    height: 70px;
  }
}
.message .cta_btn .cta_btn_link::after {
  display: none;
}
.message .cta_btn .cta_btn_inner span:nth-child(1) {
  margin-bottom: 0;
}

.message_heading {
  padding-bottom: 32px;
  width: 630px;
  border-bottom: 3px solid #E64754;
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .message_heading {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 1000px) {
  .message_heading {
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 600px) {
  .message_heading {
    padding-bottom: 16px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 24px;
  }
}
.message_heading span {
  font-size: 32px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .message_heading span {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .message_heading span {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 10px;
  }
}
.message_heading h2 {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  font-weight: 700;
  gap: 16px;
}
@media screen and (max-width: 600px) {
  .message_heading h2 {
    gap: 10px;
  }
}
.message_heading h2 span {
  font-size: 50px;
  display: block;
  line-height: 1.1;
  margin-bottom: 0;
  padding-bottom: 10px;
}
@media screen and (max-width: 1200px) {
  .message_heading h2 span {
    font-size: 42px;
  }
}
@media screen and (max-width: 1000px) {
  .message_heading h2 span {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .message_heading h2 span {
    font-size: 28px;
    padding-bottom: 4px;
  }
}
.message_heading h2 img {
  width: 474px;
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  .message_heading h2 img {
    width: 400px;
  }
}
@media screen and (max-width: 1000px) {
  .message_heading h2 img {
    width: 320px;
  }
}
@media screen and (max-width: 600px) {
  .message_heading h2 img {
    width: 280px;
  }
}

.message_txt {
  line-height: 2;
}
@media screen and (max-width: 1200px) {
  .message_txt {
    padding-bottom: 280px;
  }
}
@media screen and (max-width: 800px) {
  .message_txt {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .message_txt {
    font-size: 14px;
  }
}

@media screen and (max-width: 800px) {
  .message_img {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 800px) {
  .message_img-pc {
    display: none;
  }
}

.message_img-sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .message_img-sp {
    display: block;
    position: relative;
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .message_img-sp img:nth-child(1) {
    width: 60%;
    margin-left: auto;
  }
}
@media screen and (max-width: 800px) {
  .message_img-sp img:nth-child(2) {
    width: 50%;
    top: 8%;
    left: 0;
    position: absolute;
  }
}

/*--------------- footer ---------------*/
/* フッター */
.footer {
  width: 100%;
  overflow: hidden;
  background-color: white;
  position: relative;
  padding: var(--margin-xl) 0;
}

.footer .container {
  width: 96%;
}

.footer .menus .menus {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.footer .menus .menus .menu {
  width: 50%;
}

.footer .menu__content {
  margin-top: var(--margin);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.footer .menu__content .menu__group {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.footer .menu__content.is-items {
  flex-wrap: wrap;
  flex-direction: row;
}

.footer .menu__content.is-items .menu__item {
  width: 50%;
}

/* PC用フッター追加スタイル */
.footer .menus {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.footer .menu {
  width: 30%;
}

.footer .menu__item {
  margin-top: var(--margin);
  font-size: 0.9em;
}

@media screen and (max-width: 768px) {
  .footer .menu {
    width: 100%;
  }
  .footer .menus {
    display: block;
    justify-content: space-between;
    width: 100%;
  }
  .footer .menu + .menu {
    margin-top: var(--margin-l);
  }
  .footer .address {
    display: block;
  }
  .footer .kobutu {
    margin-top: var(--margin);
  }
}
.footer .logo {
  display: block;
  width: 48px;
  height: 48px;
  margin: var(--margin-l) auto;
}

.footer .logomark {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .menu.sp .card {
    margin: 20px 0 0 !important;
  }
}
/* --- フッター --- */
.footer .menu__title {
  display: block;
  font-weight: bold;
  border-bottom: 1px solid var(--primary);
}

.footer .menu__item.is-sub::before {
  content: "-";
  margin: 0 0.5em 0 0.25em;
  color: var(--primary);
}

.footer .menu__item {
  display: block;
  width: 100%;
  padding: 0 var(--margin);
  font-size: 0.8em;
  margin-top: var(--margin);
}

.footer .logotype {
  margin-top: var(--margin-l);
  height: 25px;
}

.footer address {
  font-size: 0.8em;
  margin-top: var(--margin-xl);
  text-align: center;
}

.footer address .tel::before {
  content: "TEL: ";
}

.footer .kobutu {
  font-size: 0.8em;
  text-align: center;
}

.footer .copyright {
  margin-top: var(--margin);
  font-size: 0.8em;
  display: block;
  text-align: center;
}

/* --- ページトップ --- */
#pagetop {
  width: 44px;
  height: 44px;
  position: fixed;
  z-index: 70;
  right: var(--margin-l);
  bottom: -100%;
  opacity: 0;
  transition: bottom 0.5s ease-in, opacity 0.5s ease-in;
  background-color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

#pagetop.is-active {
  bottom: var(--margin-l);
  opacity: 1;
  transition: bottom 0.5s ease-out, opacity 0.5s ease-out;
}

#pagetop img {
  width: 16px;
}/*# sourceMappingURL=index.css.map */