@charset "UTF-8";
/* 1366px 画面幅基準 */
/*!
global
------------------------------
*/
:root {
  --color-black: #221815;
  --color-white: #fff;
  --color-purple: #463672;
  --color-light-purple: #efe7ec;
  --color-dark-purple: #3a2d72;
  --color-dark-purple2: #3a2e74;
  --color-orange: #ea734e;
  --color-light-orange: #f9dfd6;
  --color-light-orange2: #f4cfc1;
  --color-blue: rgba(10, 93, 136, 0.6);
  --color-light-blue: #bbd2de;
  --color-light-blue2: #cad2e0;
  --font-family-base: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --fw-r: 400;
  --fw-m: 500;
  --fw-sb: 600;
  --fw-b: 700;
  --fw-bl: 900;
  --width-content: clamp(0px, 88vw, 1200px);
  --width-content-l: clamp(0px, 100vw, 1366px);
  --content-padding: clamp(0px, 6vw, 83px);
  --z-index-page-top: 99;
  --z-index-menu: 10;
  --z-index-hamburger: 11;
  --z-index-header: 100;
  --z-index-header-logo: 11;
}

@media screen and (max-width: 767px) {
  :root {
    --content-padding: 0;
  }
}
/*!
foundation > reset
------------------------------
*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
figure {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sub,
sup {
  font-size: 50%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.2em;
}

sup {
  top: -0.8em;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 0.8em 0;
  padding: 0;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
  vertical-align: middle;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

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

svg {
  display: block;
  max-width: 100%;
  height: auto;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*!
foundation > base
------------------------------
*/
body {
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.4;
  font-size: clamp(0px, 1.17vw, 16px);
  color: var(--color-black);
  background-color: var(--color-white);
  font-family: var(--font-family-base);
  position: relative;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

body.is_fixed {
  position: fixed;
  overflow: hidden;
  width: 100%;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 3.73vw;
  }
}
p,
table th,
table td {
  word-break: break-all;
  overflow-wrap: break-word;
}

table th,
table td {
  vertical-align: middle;
}

a {
  text-decoration: none;
}

a,
button,
a::after,
a::before,
button::after,
button::before {
  transition: all 0.3s;
}

a:hover {
  opacity: 0.6;
}

.l_wrapper {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.l_wrapper .main {
  flex: 1;
  z-index: 0;
}

.main {
  padding-top: clamp(0px, 5.86vw, 80px);
}

/* TEL無効 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
@media screen and (max-width: 767px) {
  .main {
    padding-top: 16vw;
  }
}
/*!
utility > utility
------------------------------
*/
.bold {
  font-weight: bold !important;
}

.al_l {
  text-align: left !important;
}

.al_r {
  text-align: right !important;
}

.al_c {
  text-align: center !important;
}

.indent_1 {
  padding-left: 1em;
  text-indent: -1em;
}

.mt1em {
  margin-top: 1em;
}

.sp {
  display: block !important;
}

br.sp {
  display: inline !important;
}

.pc,
br.pc {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }

  br.pc {
    display: inline !important;
  }

  .sp,
br.sp {
    display: none !important;
  }
}
.sr_only {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

/*!
layout > container
------------------------------
*/
.l_container {
  max-width: calc(var(--width-content, 0px) + var(--content-padding, 0px) * 2);
  padding-left: var(--content-padding, 0);
  padding-right: var(--content-padding, 0);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .l_container {
    width: 90%;
    max-width: none;
  }
}
/*!
header
------------------------------
*/
.header {
  width: 100%;
  height: clamp(0px, 5.86vw, 80px);
  background-color: var(--color-white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  box-shadow: 0 clamp(0px, 0.37vw, 5px) clamp(0px, 0.44vw, 6px) #939393;
}

.header_logo {
  width: clamp(0px, 10.61vw, 145px);
  position: absolute;
  top: 50%;
  left: clamp(0px, 1.46vw, 20px);
  transform: translateY(-50%);
  z-index: var(--z-index-header-logo);
}

.header_logo img {
  width: 100%;
}

/* ナビゲーション外 */
.nav_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s;
  z-index: var(--z-index-menu);
}

.nav_overlay.is_open {
  opacity: 1;
  visibility: visible;
}

.header_nav {
  width: clamp(0px, 41vw, 560px);
  height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  background-color: var(--color-white);
  z-index: var(--z-index-menu);
  padding: clamp(0px, 5.86vw, 80px) clamp(0px, 3.66vw, 50px);
}

.header_nav.is_open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s;
}

.header_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}

.header_item {
  font-size: clamp(0px, 1.32vw, 18px);
  font-weight: var(--fw-sb);
  border-bottom: 1px solid var(--color-black);
}

.header_item:last-child {
  margin-bottom: clamp(0px, 3.66vw, 50px);
}

.header_item a {
  display: block;
  padding: 1.2em 0;
}

@media screen and (max-width: 767px) {
  .header {
    height: 16vw;
    box-shadow: 0 1.33vw 1.6vw #939393;
  }

  .header_logo {
    width: 32vw;
    left: 5.33vw;
  }

  .header_nav {
    width: 100%;
    padding: 21.33vw 8vw;
  }

  .header_item {
    font-size: 4.27vw;
  }

  .header_item:last-child {
    margin-bottom: 13.33vw;
  }
}
/*!
hamburger
------------------------------
*/
.hamburger {
  width: clamp(0px, 3.22vw, 44px);
  height: clamp(0px, 2.42vw, 33px);
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: clamp(0px, 2.56vw, 35px);
  z-index: var(--z-index-hamburger);
}

.hamburger_line {
  width: 100%;
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: var(--color-purple);
}

.hamburger.is_open .hamburger_line {
  background-color: transparent;
}

.hamburger_line::before, .hamburger_line::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  position: absolute;
  background-color: var(--color-purple);
  transition: 0.3s;
}

.hamburger_line::before {
  top: clamp(-16px, -1.17vw, 0px);
}

.hamburger_line::after {
  top: clamp(0px, 1.17vw, 16px);
}

.hamburger.is_open .hamburger_line::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.is_open .hamburger_line::after {
  top: 0;
  transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .hamburger {
    width: 6.93vw;
    height: 5.33vw;
    right: 5.33vw;
  }

  .hamburger_line {
    height: 1px;
  }

  .hamburger_line::before {
    top: -2.67vw;
  }

  .hamburger_line::after {
    top: 2.67vw;
  }
}
/*!
footer
------------------------------
*/
.footer {
  padding: clamp(0px, 4.39vw, 60px) 0;
  text-align: center;
}

.footer_copyright {
  font-size: clamp(0px, 1.17vw, 16px);
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 10.67vw 0;
  }

  .footer_copyright {
    font-size: 3.73vw;
  }
}
/*!
page_top
------------------------------
*/
.page_top {
  width: clamp(0px, 4.39vw, 60px);
  height: clamp(0px, 4.39vw, 60px);
  border-radius: 50%;
  position: fixed;
  bottom: clamp(0px, 1.46vw, 20px);
  right: clamp(0px, 1.46vw, 20px);
  background: var(--color-white);
  box-shadow: 0 0 3px rgba(70, 54, 114, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 2s;
  z-index: var(--z-index-page-top);
}

body.is_fixed .page_top {
  visibility: hidden;
}

.page_top.is_show {
  opacity: 1;
  visibility: visible;
  transition: opacity 2s;
}

.page_top.is_show:hover {
  opacity: 0.6;
}

.page_top img {
  width: clamp(0px, 1.46vw, 20px);
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .page_top {
    width: 13.33vw;
    height: 13.33vw;
    bottom: 0;
    right: 0;
    border-radius: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }

  .page_top img {
    width: 5.33vw;
  }
}
/*!
animation
------------------------------
*/
.js_fade_in {
  opacity: 0;
  transition: opacity 1.5s;
}

/* 下から */
.js_fade_up {
  opacity: 0;
  transform: translateY(5vh);
  transition: opacity 1.5s, transform 1.5s;
}

/* 左から */
.js_fadein_left {
  opacity: 0;
  transform: translateX(-5vw);
  transition: opacity 1.5s, transform 1.5s;
}

/* 表示 */
.is_visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.js_anim img {
  will-change: filter;
}

.js_anim.is_scale {
  animation: glowScale 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes glowScale {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.delay_0_3 {
  transition-delay: 0.3s;
}

.delay_0_5 {
  transition-delay: 0.5s;
}

.delay_1 {
  transition-delay: 1s;
}

.delay_1_5 {
  transition-delay: 1.5s;
}

.delay_2 {
  transition-delay: 2s;
}

.delay_2_5 {
  transition-delay: 2.5s;
}

/*!
fixed_menu
------------------------------
*/
.fixed_menu {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  position: fixed;
  bottom: clamp(0px, 1.46vw, 20px);
  right: clamp(0px, 7.32vw, 100px);
  z-index: var(--z-index-page-top);
  display: flex;
  align-items: center;
  flex-direction: column;
}

body.is_fixed .fixed_menu {
  visibility: hidden;
}

.fixed_menu.is_show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s;
}

.fixed_menu_btn {
  min-width: clamp(0px, 16.84vw, 230px);
  min-height: clamp(0px, 4.39vw, 60px);
  font-size: clamp(0px, 1.17vw, 16px);
  font-weight: var(--fw-bl);
  color: var(--color-white);
  line-height: 1.25;
  padding: 1.12em 1.15em;
  background-color: var(--color-purple);
  border: 2px solid var(--color-white);
  border-radius: 100vh;
  box-shadow: 0 0 3px rgba(70, 54, 114, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.btn_hide {
  margin-top: clamp(0px, 0.73vw, 10px);
  transition: all 0.2s;
}

.btn_hide.is_hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  height: 0;
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .fixed_menu {
    width: calc(100% - 13.33vw);
    bottom: 0;
    left: 0;
    display: block;
  }

  .fixed_menu_btn {
    width: 100%;
    min-width: auto;
    min-height: 13.33vw;
    padding: 0.8em 0.5em;
    font-size: 4.27vw;
    border: 2px solid var(--color-white);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    border-radius: 0;
  }

  .fixed_menu > li:not(:last-child) .fixed_menu_btn {
    border-bottom: none;
    box-shadow: none;
  }

  .btn_hide {
    margin-top: 0;
  }
}
/*!
title
------------------------------
*/
.sec_ttl {
  width: calc(100% - clamp(0px, 2.56vw, 35px));
  height: clamp(0px, 9.08vw, 124px);
  font-size: clamp(0px, 2.34vw, 32px);
  font-weight: var(--fw-b);
  color: var(--color-white);
  line-height: 1.4;
  letter-spacing: 0.12em;
  background-color: var(--color-purple);
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: clamp(0px, 2.93vw, 40px);
}

.sec_ttl .fs_l {
  font-size: 1.25em;
}

.sec_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100vw;
  height: 100%;
  background-color: var(--color-purple);
  z-index: 0;
}

.sec_ttl::after {
  content: "";
  width: clamp(0px, 2.93vw, 40px);
  height: 100%;
  background-image: url("../img/sec_ttl_bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: calc(100% - 1px);
}

.sec_ttl_lv2 {
  font-size: clamp(0px, 2.34vw, 32px);
  font-weight: bold;
  color: var(--color-purple);
  line-height: 1.4;
  margin-bottom: 0.8em;
}

.sec_inner {
  max-width: clamp(0px, 67.35vw, 920px);
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .sec_ttl {
    width: calc(100% - 5.33vw);
    height: 26.67vw;
    font-size: 5.33vw;
    letter-spacing: normal;
    margin-bottom: 5.33vw;
  }

  .sec_ttl::after {
    width: 8vw;
  }

  .sec_ttl_lv2 {
    font-size: 5.33vw;
  }

  .sec_inner {
    max-width: 100%;
  }
}
/*!
button
------------------------------
*/
.btn {
  font-size: clamp(0px, 2.34vw, 32px);
  font-weight: var(--fw-b);
  color: var(--color-white);
  letter-spacing: 0.12em;
  text-align: center;
  background-color: var(--color-purple);
  display: block;
  border-radius: 100vh;
  padding: 1.26em 1.5em;
}

@media screen and (max-width: 767px) {
  .btn {
    font-size: 4.27vw;
    font-weight: var(--fw-b);
    letter-spacing: normal;
    border-radius: 2.13vw;
    padding: 1.7em 1em;
  }
}
.btn_main {
  display: block;
  font-size: clamp(0px, 1.32vw, 18px);
  font-weight: var(--fw-b);
  color: var(--color-white);
  background-color: var(--color-purple);
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: center;
  padding: 1em 0.5em;
  border-radius: clamp(0px, 0.59vw, 8px);
  box-shadow: 0 clamp(0px, 0.37vw, 5px) clamp(0px, 0.44vw, 6px) #939393;
}

@media screen and (max-width: 767px) {
  .btn_main {
    font-size: 4.27vw;
    border-radius: 2.13vw;
    box-shadow: 0 1.33vw 1.6vw #939393;
  }
}
.btn_main_md {
  width: clamp(0px, 42.83vw, 585px);
}

@media screen and (max-width: 767px) {
  .btn_main_md {
    width: 100%;
  }
}
/*!
list
------------------------------
*/
.list > li {
  font-size: clamp(0px, 1.17vw, 16px);
  line-height: 1.5;
  position: relative;
  padding-left: 1.2em;
}

.list > li::before {
  content: "○";
  color: currentColor;
  position: absolute;
  top: 0;
  left: 0;
}

.list_2 > li {
  font-size: clamp(0px, 1.17vw, 16px);
  line-height: 1.5;
  position: relative;
  padding-left: 1.2em;
}

.list_2 > li::before {
  content: "●";
  color: currentColor;
  position: absolute;
  top: 0;
  left: 0;
}

.list_3 > li {
  font-size: clamp(0px, 1.17vw, 16px);
  line-height: 1.5;
  position: relative;
  padding-left: 0.8em;
}

.list_3 > li::before {
  content: "・";
  color: currentColor;
  position: absolute;
  top: 0;
  left: 0;
}

.list_note > li {
  font-size: clamp(0px, 0.88vw, 12px);
  line-height: 1.5;
  position: relative;
}

.list_note > li::before {
  content: "※";
  color: currentColor;
}

.list_note_2 {
  counter-reset: note-item;
}

.list_note_2 > li {
  font-size: clamp(0px, 0.88vw, 12px);
  line-height: 1.5;
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
}

.list_note_2 > li::before {
  counter-increment: note-item;
  content: "※" counter(note-item);
  color: currentColor;
}

@media screen and (max-width: 767px) {
  .list > li {
    font-size: 3.73vw;
  }

  .list_2 > li {
    font-size: 3.73vw;
  }

  .list_3 > li {
    font-size: 3.73vw;
  }

  .list_note > li {
    font-size: 3.2vw;
  }

  .list_note_2 > li {
    font-size: 3.2vw;
  }
}
/*!
table
------------------------------
*/
.table {
  border: 2px solid var(--color-black);
}

.table th, .table td {
  font-size: clamp(0px, 1.24vw, 17px);
  border: 1px solid var(--color-black);
  padding: 0.6em 0.5em;
}

@media screen and (max-width: 767px) {
  .table th, .table td {
    font-size: 3.47vw;
  }
}
/*!
tab
------------------------------
*/
.tab {
  transition: 0.3s;
}

.tab_cont {
  display: none;
}

.tab_cont.is_active {
  display: block;
}

/*!
SPスクロール
------------------------------
*/
@media screen and (max-width: 767px) {
  .sp_scroll,
.sp_scroll_h {
    width: calc(100vw - 5.33vw);
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    touch-action: pan-x pan-y;
  }

  .sp_scroll .scroll_inner,
.sp_scroll_h .scroll_inner {
    display: inline-block;
    padding-bottom: 10px;
  }

  .sp_scroll img {
    width: auto;
    max-width: 1000px;
  }

  .sp_scroll_h img {
    width: auto;
    max-width: 1000px;
    max-height: 70vh;
  }

  .sp_scroll::-webkit-scrollbar {
    width: 4vw;
  }

  .sp_scroll::-webkit-scrollbar-track {
    background-color: #fff;
    border: 1px solid #bababa;
    border-radius: 100vh;
    padding: 2px;
  }

  .sp_scroll::-webkit-scrollbar-thumb {
    background-color: #bababa;
    border-radius: 100vh;
  }
}
/*!
common
------------------------------
*/
.sec_txt_l {
  font-size: clamp(0px, 2.93vw, 40px);
  font-weight: var(--fw-b);
  color: var(--color-white);
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.sec_txt {
  font-size: clamp(0px, 1.76vw, 24px);
  font-weight: var(--fw-m);
  line-height: 1.8;
}

.sec_txt_md {
  font-size: clamp(0px, 1.32vw, 18px);
  line-height: 1.5;
}

.sec_txt_s {
  font-size: clamp(0px, 1.02vw, 14px);
  line-height: 1.5;
}

.sec_txt_purple {
  font-size: clamp(0px, 1.46vw, 20px);
  font-weight: var(--fw-m);
  color: var(--color-purple);
  line-height: 1.4;
}

.sec_bg_purple {
  background-color: var(--color-light-purple);
}

.sec_mb_ll {
  margin-bottom: clamp(0px, 5.12vw, 70px);
}

.sec_mb_l {
  margin-bottom: clamp(0px, 4.39vw, 60px);
}

.sec_mb {
  margin-bottom: clamp(0px, 2.93vw, 40px);
}

.sec_box {
  background-color: var(--color-light-purple);
  padding: clamp(0px, 2.2vw, 30px);
}

.sec_box_l {
  width: var(--width-content-l);
  background-color: var(--color-purple);
  padding: clamp(0px, 2.2vw, 30px);
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .sec_txt_l {
    font-size: 6.13vw;
    line-height: 1.6;
  }

  .sec_txt {
    font-size: 4.27vw;
    font-weight: var(--fw-b);
    line-height: 1.4;
  }

  .sec_txt_md {
    font-size: 4.27vw;
    line-height: 1.4;
  }

  .sec_txt_s {
    font-size: 3.2vw;
    line-height: 1.5;
  }

  .sec_txt_purple {
    font-size: 4.27vw;
  }

  .sec_mb_ll {
    margin-bottom: 10.67vw;
  }

  .sec_mb_l {
    margin-bottom: 10.67vw;
  }

  .sec_mb {
    margin-bottom: 10.67vw;
  }

  .sec_box {
    padding: 5.33vw;
  }

  .sec_box_l {
    width: 100%;
    padding: 5.33vw;
  }
}
/*!
slider
------------------------------
*/
.slide_dots {
  margin: 0;
  padding: 0;
  text-align: center;
  position: absolute;
  bottom: calc(100% + clamp(0px, 1.61vw, 22px));
  left: 50%;
  transform: translateX(-50%);
}

.slide_dots li {
  display: inline-block;
  margin: 0 clamp(0px, 1.02vw, 14px);
  line-height: 1;
  vertical-align: bottom;
}

.slide_dots li:last-child {
  margin-right: clamp(0px, 2.05vw, 28px);
}

.slide_dots li button {
  position: relative;
  text-indent: -9999px;
}

.slide_dots li button::before {
  content: "";
  cursor: pointer;
  width: clamp(0px, 0.95vw, 13px);
  height: clamp(0px, 0.95vw, 13px);
  background-color: var(--color-white);
  border: 1px solid var(--color-purple);
  border-radius: 50%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.slide_dots li.slick-active button::before {
  background-color: var(--color-purple);
}

.slide-arrow {
  cursor: pointer;
  position: absolute;
  top: clamp(-40px, -2.93vw, 0px);
  width: clamp(0px, 2.2vw, 30px);
  z-index: 2;
}

.prev-arrow {
  left: 0;
}

.next-arrow {
  right: 0;
}

@media screen and (max-width: 767px) {
  .slide_dots {
    margin: 0;
    padding: 0;
    text-align: center;
    position: absolute;
    bottom: calc(100% + 5.87vw);
    left: 50%;
    transform: translateX(-50%);
  }

  .slide_dots li {
    display: inline-block;
    margin: 0 3.73vw;
    line-height: 1;
    vertical-align: bottom;
  }

  .slide_dots li:last-child {
    margin-right: 7.47vw;
  }

  .slide_dots li button {
    position: relative;
    text-indent: -9999px;
  }

  .slide_dots li button::before {
    content: "";
    cursor: pointer;
    width: 3.47vw;
    height: 3.47vw;
    background-color: var(--color-white);
    border: 1px solid var(--color-purple);
    border-radius: 50%;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
  }

  .slide_dots li.slick-active button::before {
    background-color: var(--color-purple);
  }

  .slide-arrow {
    cursor: pointer;
    position: absolute;
    top: -10.67vw;
    width: 8vw;
    z-index: 2;
  }

  .prev-arrow {
    left: 0;
  }

  .next-arrow {
    right: 0;
  }
}
/*!
mv
------------------------------
*/
.mv {
  min-height: clamp(0px, 39.53vw, 540px);
  background-color: #b7c1c6;
  background-image: url("../img/mv_bg.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  padding-top: clamp(0px, 3.29vw, 45px);
  position: relative;
}

.mv .l_container {
  position: relative;
}

.mv_ttl {
  width: clamp(0px, 48.32vw, 660px);
  margin-bottom: clamp(-15px, -1.1vw, 0px);
  position: relative;
  z-index: 2;
  transform: translateX(clamp(-27px, -1.98vw, 0px));
}

.mv_txt {
  width: clamp(0px, 59.3vw, 810px);
  min-height: clamp(0px, 5.12vw, 70px);
  font-size: clamp(0px, 2.64vw, 36px);
  font-weight: bold;
  color: var(--color-white);
  display: inline-block;
  background: var(--color-purple);
  background: linear-gradient(90deg, #463672 0%, #3a2d72 60%, rgba(0, 0, 0, 0) 100%);
  padding: 0.25em 0 0.25em 1em;
  position: relative;
  z-index: 2;
}

.mv_txt::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100vw;
  height: 100%;
  background-color: var(--color-purple);
  z-index: 0;
}

.mv_img {
  width: clamp(0px, 109.81vw, 1500px);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

@media screen and (min-width: 768px) and (max-width: 1920px) {
  .mv {
    background-size: clamp(0px, 140.56vw, 1920px) auto;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    min-height: 150.4vw;
    background-image: url("../img/mv_bg_sp.png");
    background-size: cover;
    padding-top: 5.33vw;
  }

  .mv_ttl {
    width: 98.13vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .mv_txt {
    width: 100vw;
    min-height: auto;
    font-size: 5.33vw;
    text-align: center;
    background: #3a2e74;
    padding: 0.4em 0.8em 0.6em;
    left: 50%;
    transform: translateX(-50%);
  }

  .mv_txt::before {
    display: none;
  }

  .mv_img {
    width: 100%;
    margin-bottom: -1.87vw;
  }
}
/*!
guarantee
------------------------------
*/
.guarantee {
  background-color: var(--color-light-purple);
  padding-top: clamp(0px, 8.78vw, 120px);
}

.guarantee_ttl {
  display: inline-block;
  padding: clamp(0px, 1.17vw, 16px) clamp(0px, 2.2vw, 30px) clamp(0px, 2.56vw, 35px) clamp(0px, 3.66vw, 50px);
  position: relative;
  margin-bottom: clamp(0px, 2.2vw, 30px);
  z-index: 2;
}

.guarantee_ttl img {
  width: clamp(0px, 38.65vw, 528px);
  max-width: none;
  display: inline-block;
}

.guarantee_ttl::before {
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #3a2e74 0%, rgba(58, 46, 116, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}

.guarantee_cont {
  position: relative;
}

.guarantee_col {
  display: flex;
}

.guarantee_l {
  width: 34%;
  padding-bottom: clamp(0px, 16.84vw, 230px);
}

.guarantee_r {
  width: 66%;
}

.guarantee_l .text_wrap {
  padding-left: clamp(0px, 3.66vw, 50px);
}

.guarantee_photo {
  position: relative;
}

.guarantee_photo.after .icon {
  width: clamp(0px, 9.08vw, 124px);
  height: clamp(0px, 1.83vw, 25px);
  padding: clamp(0px, 0.37vw, 5px) clamp(0px, 1.46vw, 20px);
  line-height: 1;
  background: var(--color-dark-purple);
  border-top-right-radius: 100vh;
  border-bottom-right-radius: 100vh;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 0;
  z-index: 1;
}

.guarantee_photo.after .icon img {
  display: inline-block;
  height: clamp(0px, 0.88vw, 12px);
  vertical-align: baseline;
}

.guarantee_cont .txt1 {
  font-size: clamp(0px, 2.05vw, 28px);
  font-weight: var(--fw-b);
  color: var(--color-dark-purple2);
  line-height: 1.5;
  margin-bottom: 0.8em;
}

.guarantee_cont .txt2 {
  font-size: clamp(0px, 1.32vw, 18px);
  font-weight: var(--fw-b);
  line-height: 2;
}

.guarantee_photo.before {
  width: clamp(0px, 29.28vw, 400px);
  position: absolute;
  bottom: 0;
  left: clamp(0px, 3.66vw, 50px);
  z-index: 2;
}

.guarantee_photo.before .icon {
  width: clamp(0px, 4.39vw, 60px);
  height: clamp(0px, 1.32vw, 18px);
  line-height: 1;
  background-color: var(--color-white);
  border: 1px solid var(--color-dark-purple);
  padding: clamp(0px, 0.37vw, 5px);
  border-top-right-radius: 100vh;
  border-bottom-right-radius: 100vh;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}

.guarantee_photo.before .icon img {
  display: inline-block;
  height: clamp(0px, 0.73vw, 10px);
  vertical-align: baseline;
}

.guarantee_link {
  display: inline-block;
  width: clamp(0px, 54.17vw, 740px);
  position: absolute;
  bottom: clamp(-55px, -4.03vw, 0px);
  right: 0;
}

.guarantee_link img {
  width: 100%;
}

.guarantee_btn {
  margin-top: clamp(0px, 3.29vw, 45px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .guarantee {
    padding-top: 10.67vw;
  }

  .guarantee_ttl {
    width: 80vw;
    padding: 0 6.67vw 5.33vw 1.33vw;
    margin-bottom: 5.33vw;
  }

  .guarantee_ttl img {
    width: 70.67vw;
    max-width: 100%;
  }

  .guarantee_col {
    flex-direction: column;
  }

  .guarantee_l {
    width: 100%;
    padding-bottom: 6.67vw;
  }

  .guarantee_r {
    width: 100%;
  }

  .guarantee_l .text_wrap {
    padding-left: 1.33vw;
  }

  .guarantee_photo.after .icon {
    width: 13.33vw;
    height: 4.8vw;
    padding: 1.33vw 2.67vw;
    left: 30.67vw;
  }

  .guarantee_photo.after .icon img {
    height: 2.13vw;
  }

  .guarantee_cont .txt1 {
    font-size: 3.73vw;
  }

  .guarantee_cont .txt2 {
    font-size: 2.67vw;
  }

  .guarantee_photo.before {
    width: 30.67vw;
    left: 0;
  }

  .guarantee_photo.before .icon {
    width: 9.33vw;
    height: 3.2vw;
    padding: 1.33vw;
  }

  .guarantee_photo.before .icon img {
    height: 1.6vw;
  }

  .guarantee_link {
    width: calc(100% + 5.33vw);
    bottom: auto;
    right: auto;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -2%;
  }

  .guarantee_btn {
    margin-top: 37.33vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
/*!
recommend
------------------------------
*/
.recommend {
  padding: clamp(0px, 8.05vw, 110px) 0 clamp(0px, 8.78vw, 120px);
}

@media screen and (max-width: 767px) {
  .recommend {
    padding: 13.33vw 0 10.67vw;
  }
}
/*!
compare
------------------------------
*/
.compare {
  margin-top: clamp(0px, 3.66vw, 50px);
  font-feature-settings: normal;
}

.compare_ttl {
  font-size: clamp(0px, 1.17vw, 16px);
  font-weight: var(--fw-b);
  color: var(--color-dark-purple);
  margin-bottom: 1em;
  padding-left: 1em;
  text-indent: -1em;
  position: relative;
}

.compare_ttl::before {
  content: "■";
  color: currentColor;
}

.compare_pc_col_3 {
  max-width: 1200px;
  display: grid;
  grid-template-columns: minmax(48px, 4%) 1fr 1fr 1fr;
}

.compare_pc_col_3 .box:last-child {
  position: relative;
}

.compare_pc_col_3 .box:last-child::before {
  content: "";
  width: calc(100% + 2px);
  height: 100%;
  position: absolute;
  top: 0;
  left: -1px;
  border-left: 4px solid var(--color-purple);
  border-right: 4px solid var(--color-purple);
  pointer-events: none;
}

.compare_pc_col_3:first-of-type .box:last-child::before {
  border: 4px solid var(--color-purple);
  border-bottom: none;
}

.compare_pc_col_3:last-of-type .box:last-child::before {
  border: 4px solid var(--color-purple);
  border-top: none;
}

.compare_pc_col_1 {
  font-size: clamp(0px, 1.32vw, 18px);
  font-weight: var(--fw-b);
  color: var(--color-white);
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.compare .center {
  text-align: center;
}

.compare .bd_r {
  border-right: 1px solid var(--color-black);
}

.compare .dot_line {
  position: relative;
}

.compare .dot_line::before {
  content: "";
  width: 100%;
  height: 0;
  border-bottom: 2px dotted var(--color-black);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.compare .bg_1 {
  background-color: var(--color-purple);
  letter-spacing: 0.2em;
}

.compare .bg_2 {
  background-color: var(--color-orange);
}

.compare .bg_3 {
  background-color: var(--color-blue);
}

.compare .row_1 .box {
  background-color: var(--color-white);
  padding: clamp(0px, 2.2vw, 30px);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.compare .row_1 .txt_1 {
  font-size: clamp(0px, 2.34vw, 32px);
  font-weight: var(--fw-bl);
  line-height: 1.25;
  padding-bottom: 0.2em;
  border-bottom: 2px solid var(--color-purple);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.compare .row_1 .txt_1 .fs_s {
  font-size: 0.5625em;
  display: inline-block;
  vertical-align: top;
}

.compare .row_1 .txt_2 {
  font-size: clamp(0px, 1.54vw, 21px);
  font-weight: var(--fw-b);
  color: var(--color-purple);
  line-height: 1.5;
  text-align: center;
  padding-top: 0.2em;
  margin-bottom: 0.7em;
}

.compare .row_1 .img {
  margin-left: clamp(-30px, -2.2vw, 0px);
  margin-right: clamp(-30px, -2.2vw, 0px);
  margin-bottom: clamp(-25px, -1.83vw, 0px);
}

.compare .row_1 .compare_pc_col_1 {
  grid-row: span 3;
}

.compare .row_2 .box {
  padding: clamp(0px, 1.46vw, 20px) clamp(0px, 2.2vw, 30px);
  background-color: var(--color-light-orange);
}

.compare .row_2 .box.bg_2_2 {
  background-color: var(--color-light-orange2);
}

.compare .row_3 .box {
  padding: clamp(0px, 1.46vw, 20px) clamp(0px, 2.2vw, 30px);
  background-color: var(--color-light-blue);
}

.compare .row_3 .box.bg_3_2 {
  background-color: var(--color-light-blue2);
}

.compare_list > li {
  font-weight: var(--fw-m);
}

.step {
  font-size: clamp(0px, 1.46vw, 20px);
  font-weight: var(--fw-m);
  color: var(--color-white);
  line-height: 1.4;
  margin-top: clamp(0px, 1.46vw, 20px);
  background-color: var(--color-purple);
  padding: clamp(0px, 2.2vw, 30px);
  position: relative;
}

.step::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: 80%;
  border: clamp(0px, 1.83vw, 25px) solid transparent;
  border-bottom: clamp(0px, 4.25vw, 58px) solid var(--color-purple);
}

.step_inner {
  display: flex;
  justify-content: space-between;
  gap: clamp(0px, 4.39vw, 60px);
}

.step_l {
  width: clamp(0px, 27.09vw, 370px);
}

.step_r {
  width: clamp(0px, 51.98vw, 710px);
}

.step_photo {
  width: clamp(0px, 25.92vw, 354px);
  margin-bottom: clamp(0px, 1.46vw, 20px);
}

.step_txt_md {
  font-size: clamp(0px, 1.17vw, 16px);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.step_txt_s {
  font-size: clamp(0px, 1.02vw, 14px);
  letter-spacing: 0.01em;
}

.step_txt_mt {
  margin-top: 0.7em;
}

.step_num {
  width: clamp(0px, 5.86vw, 80px);
  height: clamp(0px, 5.86vw, 80px);
  background-color: var(--color-white);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step_num > span {
  display: inline-block;
  line-height: 1;
  width: clamp(0px, 2.93vw, 40px);
  margin-top: clamp(0px, 0.22vw, 3px);
}

.step_list > li {
  padding: clamp(0px, 1.83vw, 25px) 0;
}

.step_list > li:not(:first-child) {
  border-top: 1px solid #fff;
}

.step_list > li:nth-child(1) {
  padding-top: 0;
  padding-bottom: clamp(0px, 1.1vw, 15px);
}

.step_list > li:nth-child(2) {
  padding: clamp(0px, 0.73vw, 10px) 0;
}

.step_list > li:nth-child(3) {
  padding-top: clamp(0px, 2.2vw, 30px);
  padding-bottom: 0;
}

.step_list_inner {
  display: flex;
  align-items: center;
  gap: clamp(0px, 1.46vw, 20px);
}

.step_cont {
  display: flex;
  align-items: center;
  gap: clamp(0px, 5.12vw, 70px);
}

.step_cont_l {
  width: clamp(0px, 24.16vw, 330px);
  flex: 1;
}

.step_cont_r {
  width: clamp(0px, 11.86vw, 162px);
}

.step_img_caption {
  font-size: clamp(0px, 0.73vw, 10px);
  margin-top: 0.1em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  /* スライダー */
  .slider {
    margin-top: 16vw;
  }

  .point .prev-arrow {
    left: 5.33vw;
  }

  .point .next-arrow {
    right: 5.33vw;
  }

  .compare {
    margin-top: 13.33vw;
  }

  .compare_ttl {
    font-size: 4.27vw;
  }

  .compare_sp_col_2 {
    display: grid;
    grid-template-columns: minmax(30px, 9%) 1fr 1fr;
  }

  .compare_sp_col_2 .box:last-child {
    position: relative;
  }

  .compare_sp_col_2 .box:last-child::before {
    content: "";
    width: calc(100% + 2px);
    height: 100%;
    position: absolute;
    top: 0;
    left: -1px;
    border-left: 4px solid var(--color-purple);
    border-right: 4px solid var(--color-purple);
    pointer-events: none;
  }

  .compare_sp_col_2:first-of-type .box:last-child::before {
    border: 4px solid var(--color-purple);
    border-bottom: none;
  }

  .compare_sp_col_2:last-of-type .box:last-child::before {
    border: 4px solid var(--color-purple);
    border-top: none;
  }

  .compare_sp_col_1 {
    font-size: 4.27vw;
    font-weight: var(--fw-b);
    color: var(--color-white);
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding: 0.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .compare .row_1 .compare_sp_col_1 {
    letter-spacing: 0.5em;
    padding: 1em 0.5em 0.5em;
  }

  .compare .row_1 .box {
    background-color: var(--color-white);
    padding: 5.33vw 2.67vw 2.67vw;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    overflow-x: hidden;
  }

  .compare .row_1 .txt_1 {
    font-size: 4.8vw;
    font-weight: var(--fw-bl);
    line-height: 1.25;
    padding-bottom: 0.8em;
    border-bottom: 2px solid var(--color-purple);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .compare_sp .txt_1_sp_adj {
    display: inline-block;
    margin: 0 -1em;
    font-size: 0.95em;
    letter-spacing: -0.1em;
  }

  .compare_sp .row_1 .txt_1 .txt_1_sp_adj .fs_s {
    font-size: 0.8em;
    letter-spacing: normal;
  }

  .compare .row_1 .txt_2 {
    font-size: 3.73vw;
    font-weight: var(--fw-b);
    color: var(--color-purple);
    line-height: 1.25;
    padding-top: 0.5em;
    margin-bottom: 0.7em;
  }

  .txt_2_sp_adj {
    margin: 0 -1em;
  }

  .compare .row_1 .compare_sp_col_1 {
    grid-row: span 3;
  }

  .compare .row_1 .img {
    width: calc(100% + 21.33vw);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }

  .compare .row_2 .box {
    padding: 4vw 2.67vw;
    background-color: var(--color-light-orange);
  }

  .compare .row_2 .box.bg_2_2 {
    background-color: var(--color-light-orange2);
  }

  .compare .row_3 .box {
    padding: 4vw 2.67vw;
    background-color: var(--color-light-blue);
  }

  .compare .row_3 .box.bg_3_2 {
    background-color: var(--color-light-blue2);
  }

  .compare_list > li {
    font-weight: var(--fw-m);
  }

  .step {
    font-size: 4.27vw;
    margin-top: 4.8vw;
    padding: 4.8vw;
  }

  .step::before {
    content: "";
    position: absolute;
    bottom: calc(100% - 1px);
    left: 68.7%;
    border: 4vw solid transparent;
    border-bottom: 10.67vw solid var(--color-purple);
  }

  .step_inner {
    flex-direction: column;
    justify-content: flex-start;
    gap: 8vw;
  }

  .step_l {
    width: 100%;
  }

  .step_r {
    width: 100%;
  }

  .step_photo {
    width: 100%;
    margin-bottom: 4vw;
  }

  .step_txt_md {
    font-size: 3.47vw;
  }

  .step_txt_s {
    font-size: 3.2vw;
  }

  .step_txt_mt {
    margin-top: 0.3em;
  }

  .step_num {
    width: 45.33vw;
    height: auto;
    border-radius: 100vh;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    flex-shrink: 0;
    position: relative;
    margin: 0 -4.8vw;
    margin-bottom: 2.67vw;
  }

  .step_num > span {
    width: 13.33vw;
    padding: 1.6vw 0 2.13vw;
    margin-top: 0;
  }

  .step_list > li {
    padding: 6.67vw 0;
    position: relative;
  }

  .step_list > li:not(:first-child) {
    border: none;
    margin-top: 5.33vw;
  }

  .step_list > li:nth-child(1) {
    padding-bottom: 0;
  }

  .step_list > li:nth-child(2) {
    padding: 0;
  }

  .step_list > li:nth-child(3) {
    padding-top: 0;
  }

  .step_list_inner {
    display: block;
  }

  .step_cont {
    display: block;
  }

  .step_cont_l {
    width: 100%;
  }

  .step_cont_r {
    width: 100%;
  }

  .step_img {
    width: 26.67vw;
    position: absolute;
    top: 0;
    right: 0;
  }

  .step_img_caption {
    font-size: 2.67vw;
  }
}
/*!
point
------------------------------
*/
.point {
  padding-bottom: clamp(0px, 7.32vw, 100px);
}

.slick-dotted.slick-slider.point_cont_wrap {
  margin-bottom: 0;
}

.point_ttl {
  margin-bottom: clamp(0px, 2.56vw, 35px);
}

.point_tabs {
  display: flex;
  justify-content: center;
  gap: clamp(0px, 1.46vw, 20px);
  margin-bottom: clamp(0px, 3.66vw, 50px);
}

.point_tab {
  width: clamp(0px, 17.57vw, 240px);
  opacity: 0.5;
}

.point_tab.is_active {
  opacity: 1;
}

.point_tab:hover {
  opacity: 1;
}

.point_qa {
  width: var(--width-content-l);
  display: flex;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(0px, 4.39vw, 60px);
}

.point_qa_cont {
  display: flex;
  align-items: center;
  gap: clamp(0px, 2.2vw, 30px);
}

.point_qa_icon {
  width: clamp(0px, 3.07vw, 42px);
}

.point_qa_txt {
  flex: 1;
  font-size: clamp(0px, 1.76vw, 24px);
  font-weight: var(--fw-b);
  line-height: 1.4;
}

.point_q {
  width: clamp(0px, 53.15vw, 726px);
  height: clamp(0px, 14.64vw, 200px);
  background-color: var(--color-light-purple);
  padding: clamp(0px, 1.46vw, 20px) clamp(0px, 1.46vw, 20px) clamp(0px, 1.46vw, 20px) clamp(0px, 4.17vw, 57px);
  display: flex;
  gap: clamp(0px, 4.39vw, 60px);
  position: relative;
}

.point_q::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 1px);
  transform: translateY(-50%);
  border: clamp(0px, 7.32vw, 100px) solid transparent;
  border-left: clamp(0px, 4.1vw, 56px) solid var(--color-light-purple);
}

.point_a {
  width: clamp(0px, 46.85vw, 640px);
  background-color: #dfd4de;
  padding: clamp(0px, 1.46vw, 20px) clamp(0px, 5.86vw, 80px) clamp(0px, 1.46vw, 20px) clamp(0px, 6.59vw, 90px);
  display: flex;
}

.point_q_img {
  width: clamp(0px, 12.45vw, 170px);
}

.point_01_img_01 {
  margin-bottom: clamp(0px, 2.2vw, 30px);
  position: relative;
}

.point_01_img_01_catch {
  width: clamp(0px, 9.96vw, 136px);
  position: absolute;
  top: clamp(0px, 10.25vw, 140px);
  left: clamp(0px, 53.29vw, 728px);
}

.point_01_img_02 {
  width: clamp(0px, 82.72vw, 1130px);
  margin-top: clamp(0px, 2.2vw, 30px);
  position: relative;
}

.point_01_img_02_catch {
  width: clamp(0px, 18.67vw, 255px);
  position: absolute;
  top: 0;
  right: 0;
}

.sound_cont {
  display: flex;
  gap: clamp(0px, 1.46vw, 20px);
}

.sound_l {
  width: clamp(0px, 43.92vw, 600px);
}

.sound_r {
  width: clamp(0px, 42.02vw, 574px);
}

.point_01_img_03 {
  margin-top: clamp(-60px, -4.39vw, 0px);
}

.shock_box {
  margin-top: clamp(0px, 2.2vw, 30px);
}

.shock_cont {
  display: flex;
  justify-content: space-between;
  gap: clamp(0px, 1.46vw, 20px);
  margin-top: clamp(0px, 1.46vw, 20px);
}

.shock_l {
  width: clamp(0px, 32.94vw, 450px);
}

.shock_r {
  max-width: 50%;
}

.indent_ly {
  display: flex;
}

.indent_ly_l {
  width: 4em;
}

.indent_ly_r {
  flex: 1;
}

.point_01_img_04 {
  width: clamp(0px, 36.16vw, 494px);
  margin-right: clamp(0px, 3.29vw, 45px);
}

.test_table {
  position: relative;
  z-index: 2;
}

.test_table th, .test_table td {
  text-align: center;
}

.test_table th {
  background-color: var(--color-purple);
  color: #fff;
  border-color: var(--color-white);
}

.test_table .col_1 {
  width: 18%;
}

.test_table .col_2 {
  width: 17%;
}

.test_table .col_3 {
  width: 32%;
}

.test_table .col_4 {
  width: 33%;
}

.test_table .bg_c_1 {
  background-color: var(--color-light-purple);
}

.test_table .txt_c_1 {
  color: #5c4b7a;
}

.test_table .box_line_area {
  position: relative;
}

.test_table .box_line {
  width: clamp(0px, 29.28vw, 400px);
  height: clamp(0px, 3.66vw, 50px);
  border: clamp(0px, 0.29vw, 4px) solid var(--color-purple);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.test_table .box_line::before {
  content: "";
  width: clamp(0px, 12.96vw, 177px);
  height: clamp(0px, 10.98vw, 150px);
  position: absolute;
  top: calc(100% + clamp(0px, 0.22vw, 3px));
  left: clamp(-10px, -0.73vw, 0px);
  background-image: url("../img/box_line_arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.test_table_note {
  font-size: clamp(0px, 0.88vw, 12px);
  letter-spacing: 0.025em;
  display: flex;
  gap: clamp(0px, 1.83vw, 25px);
  margin-top: 0.8em;
}

.test_compare {
  display: flex;
  gap: clamp(0px, 2.93vw, 40px);
  margin-top: clamp(0px, 4.39vw, 60px);
}

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

.test_compare_items {
  display: flex;
  gap: clamp(0px, 1.83vw, 25px);
}

.test_compare_item {
  position: relative;
}

.test_compare_caption {
  font-size: clamp(0px, 1.24vw, 17px);
  color: var(--color-white);
  letter-spacing: 0.025em;
  text-align: center;
  padding: 0.4em 0.85em;
  background-color: var(--color-purple);
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.test_compare_img {
  width: clamp(0px, 27.53vw, 376px);
}

.test_compare_img img {
  width: 100%;
}

.test_compare_balloon {
  font-size: clamp(0px, 1.83vw, 25px);
  color: var(--color-white);
  line-height: 1;
  letter-spacing: 0.05em;
  display: inline-block;
  background-color: var(--color-purple);
  padding: 0.85em 1.3em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: clamp(0px, 0.59vw, 8px);
}

.test_compare_balloon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% - 1px);
  transform: translateY(-50%);
  border: clamp(0px, 0.59vw, 8px) solid transparent;
  border-right: clamp(0px, 2.34vw, 32px) solid var(--color-purple);
}

.test_compare_balloon > span {
  display: inline-block;
  margin-top: -0.1em;
}

.test_compare_note {
  margin-top: auto;
}

.point_btm_menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0px, 2.2vw, 30px);
  margin-top: clamp(0px, 5.86vw, 80px);
}

.point_btm_menu > li .point_btm_btn {
  font-size: clamp(0px, 1.32vw, 18px);
  font-weight: var(--fw-b);
  color: var(--color-white);
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 1em;
  border-radius: clamp(0px, 0.59vw, 8px);
  opacity: 1;
  box-shadow: 0 clamp(0px, 0.37vw, 5px) clamp(0px, 0.44vw, 6px) #939393;
}

.point_btm_menu .point_btm_btn:hover {
  opacity: 0.7;
}

.pc_inline {
  display: inline-block;
}

.point_btm_menu > li .bg_blue {
  background-color: #4964a6;
}

.point_btm_menu > li .bg_pink {
  background-color: #b5596a;
}

.point_btm_menu > li .bg_green {
  background-color: #5ba159;
}

.point_cont {
  padding-bottom: clamp(0px, 0.73vw, 10px);
}

.point_img_caption {
  font-size: clamp(0px, 1.02vw, 14px);
  text-align: center;
  margin-top: clamp(0px, 0.73vw, 10px);
}

.cracks_cont {
  display: flex;
  justify-content: space-between;
  gap: clamp(0px, 5.12vw, 70px);
  margin-top: clamp(0px, 2.56vw, 35px);
}

.cracks_l, .cracks_r {
  border: 2px solid var(--color-purple);
  padding: clamp(0px, 1.46vw, 20px) clamp(0px, 2.93vw, 40px) clamp(0px, 1.1vw, 15px);
}

.cracks_l {
  width: clamp(0px, 50.51vw, 690px);
}

.cracks_r {
  width: clamp(0px, 32.21vw, 440px);
  background-color: var(--color-light-purple);
  background-image: url("../img/kirakira.svg"), url("../img/kirakira.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: top clamp(0px, 1.02vw, 14px) left clamp(0px, 0.95vw, 13px), bottom clamp(0px, 2.49vw, 34px) right clamp(0px, 0.51vw, 7px);
  background-size: clamp(0px, 4.39vw, 60px) auto, clamp(0px, 4.39vw, 60px) auto;
  position: relative;
}

.cracks_r::after {
  content: "";
  width: clamp(0px, 7.83vw, 107px);
  height: clamp(0px, 9.3vw, 127px);
  background-image: url("../img/arrow_r_01.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(100% - clamp(0px, 1.32vw, 18px));
}

.cracks_ttl {
  font-size: clamp(0px, 2.42vw, 33px);
  font-weight: var(--fw-bl);
  text-align: center;
  margin-bottom: clamp(0px, 1.46vw, 20px);
}

.cracks_items {
  display: flex;
  gap: clamp(0px, 3.22vw, 44px);
}

.cracks_caption {
  font-size: clamp(0px, 1.76vw, 24px);
  font-weight: var(--fw-b);
  text-align: center;
  margin-bottom: 0.3em;
}

.cracks_txt {
  font-size: clamp(0px, 1.46vw, 20px);
  font-weight: var(--fw-m);
  line-height: 1.4;
  text-align: center;
  margin-top: 0.8em;
}

.cracks_photo {
  margin: clamp(0px, 1.46vw, 20px) 0 clamp(0px, 0.73vw, 10px);
  border-radius: clamp(0px, 0.73vw, 10px);
  overflow: hidden;
}

.cost_note {
  padding-left: 0;
  text-indent: 0;
  margin-top: clamp(0px, 1.46vw, 20px);
}

.progress_txt {
  text-align: center;
  margin-bottom: clamp(0px, 1.83vw, 25px);
  margin-top: -0.3em;
}

.progress_cont {
  display: flex;
  justify-content: center;
  gap: clamp(0px, 3.66vw, 50px);
}

.progress_l {
  width: clamp(0px, 25.62vw, 350px);
}

.progress_r {
  width: clamp(0px, 38.07vw, 520px);
  background-color: var(--color-white);
  padding: clamp(0px, 1.1vw, 15px);
}

.progress_l .photo {
  border-radius: clamp(0px, 0.88vw, 12px);
  overflow: hidden;
}

.progress_items {
  display: flex;
  justify-content: center;
  gap: clamp(0px, 2.56vw, 35px);
}

.progress_item {
  width: clamp(0px, 14.2vw, 194px);
}

.progress_item .photo {
  border-radius: clamp(0px, 0.88vw, 12px);
  overflow: hidden;
}

.progress .txt1 {
  font-size: clamp(0px, 1.17vw, 16px);
  font-weight: var(--fw-m);
  text-align: center;
  line-height: 1.3;
  margin-top: clamp(0px, 0.37vw, 5px);
}

.progress .txt1 > span {
  font-size: 1.375em;
}

.progress .txt2 {
  font-size: clamp(0px, 1.02vw, 14px);
  font-weight: var(--fw-m);
  line-height: 1.4;
  text-align: center;
  margin-top: clamp(0px, 0.73vw, 10px);
}

.progress_note {
  color: var(--color-white);
  margin-top: clamp(0px, 1.46vw, 20px);
}

.long_txt_s {
  margin-top: 0.3em;
}

.long_items {
  display: flex;
  align-items: flex-end;
  gap: clamp(0px, 8.42vw, 115px);
  margin-top: clamp(0px, 1.46vw, 20px);
}

.long_item_l {
  width: clamp(0px, 22.69vw, 310px);
  position: relative;
}

.long_item_l::before {
  content: "";
  width: clamp(0px, 6.22vw, 85px);
  height: clamp(0px, 6.44vw, 88px);
  background-image: url("../img/arrow_r_01.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + clamp(0px, 1.1vw, 15px));
}

.long_item_r {
  width: clamp(0px, 36.6vw, 500px);
}

.long_photo {
  position: relative;
}

.long_photo .caption {
  font-size: clamp(0px, 1.24vw, 17px);
  font-weight: var(--fw-b);
  color: var(--color-white);
  letter-spacing: 0.04em;
  position: absolute;
  top: clamp(0px, 0.37vw, 5px);
  left: clamp(0px, 0.73vw, 10px);
}

.long_photo .caption_l {
  font-size: clamp(0px, 1.61vw, 22px);
}

.flat_img {
  margin-top: clamp(0px, 1.1vw, 15px);
}

.special {
  padding-bottom: clamp(0px, 5.86vw, 80px);
}

.special_cont {
  display: flex;
  align-items: flex-end;
  gap: clamp(0px, 2.2vw, 30px);
  margin-top: clamp(0px, 4.39vw, 60px);
}

.special_l_items {
  display: flex;
  gap: clamp(0px, 2.2vw, 30px);
  margin-bottom: clamp(0px, 0.88vw, 12px);
  position: relative;
}

.special_txt {
  width: clamp(0px, 35.87vw, 490px);
  position: absolute;
  top: clamp(0px, 2.2vw, 30px);
  left: clamp(0px, 12.15vw, 166px);
}

.special_r_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(0px, 2.2vw, 30px);
}

.special .txt1 {
  font-size: clamp(0px, 1.46vw, 20px);
  text-align: center;
  margin-bottom: clamp(0px, 0.73vw, 10px);
}

.special .txt2, .special .txt3 {
  font-size: clamp(0px, 1.17vw, 16px);
  text-align: center;
  line-height: 1.25;
}

.special .txt2 {
  background-color: #dadadb;
  padding: 0.25em 0.5em;
  margin-bottom: clamp(0px, 1.02vw, 14px);
}

.special .txt2.span2 {
  grid-column: span 2;
  margin-top: clamp(0px, 1.02vw, 14px);
}

.special .txt3 {
  margin-top: clamp(0px, 0.37vw, 5px);
}

.special .bg_brown {
  background-color: #ead5bc;
}

.select {
  padding: clamp(0px, 5.12vw, 70px) 0 clamp(0px, 7.32vw, 100px);
  background-color: var(--color-light-purple);
}

.select_ttl {
  width: clamp(0px, 10.4vw, 142px);
  height: clamp(0px, 10.4vw, 142px);
  background-color: var(--color-dark-purple);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: clamp(0px, 1.46vw, 20px);
  font-weight: var(--fw-b);
  color: var(--color-white);
  text-align: center;
  line-height: 1.4;
}

.color_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.color_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  margin-bottom: clamp(0px, 6.59vw, 90px);
  border-top: 2px solid var(--color-dark-purple);
  border-left: 2px solid var(--color-dark-purple);
}

.color_item {
  background-color: var(--color-white);
  border-right: 2px solid var(--color-dark-purple);
  border-bottom: 2px solid var(--color-dark-purple);
}

.color_txt {
  font-weight: var(--fw-b);
  text-align: center;
  line-height: 1.25;
  padding: clamp(0px, 1.1vw, 15px) 0;
  position: relative;
}

.color_txt .txt1 {
  font-size: clamp(0px, 1.32vw, 18px);
  display: block;
  position: relative;
  z-index: 2;
}

.color_txt .txt2 {
  font-size: clamp(0px, 2.78vw, 38px);
  position: relative;
  z-index: 2;
}

.color_txt .txt_img {
  position: absolute;
  bottom: clamp(0px, 0.73vw, 10px);
  left: clamp(0px, 1.1vw, 15px);
}

.color_item:nth-of-type(2n) .txt_img {
  left: auto;
  right: clamp(0px, 1.1vw, 15px);
}

.color_txt .txt_img img {
  height: clamp(0px, 3.37vw, 46px);
}

.design {
  background-color: var(--color-white);
  padding: clamp(0px, 2.2vw, 30px) clamp(0px, 3.66vw, 50px);
}

.design_cont {
  display: flex;
  align-items: center;
  gap: clamp(0px, 1.46vw, 20px);
}

.design_l {
  width: clamp(0px, 20.5vw, 280px);
  padding-left: clamp(0px, 2.2vw, 30px);
}

.design_r {
  flex: 1;
}

.design .txt1 {
  font-size: clamp(0px, 1.76vw, 24px);
  font-weight: var(--fw-m);
  color: #888888;
  text-align: center;
  margin-bottom: 0.85em;
}

.design .txt1.c_orange {
  color: #e9734d;
}

.design .txt2 {
  font-size: clamp(0px, 1.17vw, 16px);
  line-height: 1.5;
}

.design_img {
  width: clamp(0px, 25.62vw, 350px);
  margin-bottom: clamp(0px, 1.46vw, 20px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.design_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(0px, 7.32vw, 100px);
}

.design_item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}

@media screen and (max-width: 767px) {
  .point {
    padding-bottom: 13.33vw;
  }

  .point_ttl {
    margin-bottom: 9.33vw;
  }

  .point_menu {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }

  .point_tabs {
    gap: 0;
    margin-bottom: 14.67vw;
  }

  .point_tab {
    width: 100%;
  }

  .point_qa {
    width: 100%;
    flex-direction: column;
    margin-bottom: 10.67vw;
  }

  .point_qa_cont {
    gap: 3.73vw;
  }

  .point_qa_icon {
    width: 6.67vw;
  }

  .point_qa_txt {
    font-size: 4.27vw;
  }

  .point_q {
    width: 90%;
    height: 26.67vw;
    padding: 2.67vw 1.33vw 1.6vw 1.33vw;
    gap: 5.33vw;
  }

  .point_q::before {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% - 1px);
    transform: translateY(-50%);
    border: 13.87vw solid transparent;
    border-left: 8vw solid var(--color-light-purple);
  }

  .point_a {
    width: 90%;
    height: 26.67vw;
    padding: 5.33vw 8vw 5.33vw 2.13vw;
    align-self: flex-end;
    position: relative;
  }

  .point_a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(100% - 1px);
    transform: translateY(-50%);
    border: 13.87vw solid transparent;
    border-right: 8vw solid #dfd4de;
  }

  .point_q_img {
    width: 24vw;
  }

  .point_01_img_01 {
    margin-bottom: 2.67vw;
  }

  .point_01_img_01_catch {
    width: 53.87vw;
    top: 82.67vw;
    left: 17.07vw;
  }

  .point_01_img_02 {
    width: 100%;
    margin-top: 5.33vw;
  }

  .point_01_img_02_catch {
    width: 50.13vw;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
  }

  .sound_cont {
    flex-direction: column;
    gap: 2.67vw;
  }

  .sound_l {
    width: 100%;
  }

  .sound_r {
    width: 100%;
  }

  .point_01_img_03 {
    margin-top: 0;
  }

  .shock_box {
    margin-top: 5.33vw;
  }

  .shock_cont {
    gap: 5.33vw;
    margin-top: 5.33vw;
    flex-direction: column;
  }

  .shock_l {
    width: 100%;
  }

  .shock_r {
    max-width: 100%;
  }

  .indent_ly {
    flex-direction: column;
  }

  .indent_ly_l {
    width: 100%;
  }

  .indent_ly_r {
    flex: 1;
  }

  .point_01_img_04 {
    width: 100%;
    margin-right: 0;
  }

  .test_scroll_inner {
    width: 256vw;
  }

  .test_table .box_line {
    width: 84.8vw;
    height: 10.13vw;
    border: 1.07vw solid var(--color-purple);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .test_table .box_line::before {
    content: "";
    width: 37.33vw;
    height: 32vw;
    top: calc(100% + 0.8vw);
    left: clamp(-6px, -0.44vw, 0px);
  }

  .test_table_note {
    font-size: 3.47vw;
    gap: clamp(0px, 2.2vw, 30px);
    margin-top: 0.5em;
  }

  .test_compare {
    display: flex;
    gap: 8vw;
    margin-top: 13.33vw;
  }

  .test_compare_items {
    gap: clamp(0px, 1.83vw, 25px);
  }

  .test_compare_caption {
    font-size: 3.47vw;
  }

  .test_compare_img {
    width: 80vw;
  }

  .test_compare_balloon {
    font-size: 5.33vw;
    margin-top: 1.6vw;
  }

  .test_compare_balloon::before {
    border: 2.13vw solid transparent;
    border-right: 6.93vw solid var(--color-purple);
  }

  .point_btm_menu {
    gap: 4vw;
    margin-top: 10.67vw;
  }

  .point_btm_menu > li .point_btm_btn {
    font-size: 4.27vw;
    border-radius: 2.13vw;
    box-shadow: 0 1.33vw 1.6vw #939393;
  }

  .point_img_caption {
    font-size: 3.73vw;
    margin-top: 2.67vw;
  }

  .point_cont {
    padding-bottom: 2.67vw;
  }

  .pc_inline {
    display: none;
  }

  .cracks_cont {
    flex-direction: column;
    margin-top: 8vw;
    gap: 13.33vw;
  }

  .cracks_l, .cracks_r {
    padding: 5.33vw 5.33vw 8vw;
  }

  .cracks_l {
    width: 100%;
  }

  .cracks_r {
    width: 100%;
    padding-top: 8vw;
    background-position: top 2.4vw left 2.13vw, bottom 3.47vw right 4vw;
    background-size: 16vw auto, 16vw auto;
  }

  .cracks_r::after {
    content: "";
    width: 33.6vw;
    height: 25.87vw;
    background-image: url("../img/arrow_down_01.svg");
    top: auto;
    right: auto;
    bottom: calc(100% - 6.67vw);
    left: 50%;
    transform: translate(-50%, 0);
  }

  .cracks_ttl {
    font-size: 6.13vw;
    margin-bottom: 5.33vw;
  }

  .cracks_items {
    gap: 5.33vw;
  }

  .cracks_caption {
    font-size: 4.8vw;
  }

  .cracks_txt {
    font-size: 4.27vw;
    margin-left: -1em;
    margin-right: -1em;
  }

  .cracks_photo {
    margin: 5.33vw 0 2.67vw;
    border-radius: 2.67vw;
  }

  .cost_note {
    margin-top: 2.67vw;
  }

  .progress_txt {
    margin-bottom: 8vw;
    margin-top: -0.3em;
  }

  .progress_cont {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 5.33vw;
  }

  .progress_l {
    width: 62.4vw;
  }

  .progress_r {
    width: 100%;
    padding: 5.33vw;
  }

  .progress_l .photo {
    border-radius: 2.67vw;
  }

  .progress_items {
    gap: 6.67vw;
  }

  .progress_item {
    width: 37.33vw;
  }

  .progress_item .photo {
    border-radius: 2.67vw;
  }

  .progress .txt1 {
    font-size: 3.2vw;
    margin-top: 1.33vw;
  }

  .progress .txt2 {
    font-size: 3.2vw;
    margin-left: -1em;
    margin-right: -1em;
    margin-top: 2.67vw;
  }

  .progress_note {
    margin-top: 5.33vw;
  }

  .long_items {
    flex-direction: column;
    align-items: center;
    gap: 30.67vw;
    margin-top: 8vw;
  }

  .long_item_l {
    width: 62.4vw;
  }

  .long_item_l::before {
    content: "";
    width: 33.6vw;
    height: 25.87vw;
    background-image: url("../img/arrow_down_02.svg");
    top: calc(100% + 2.67vw);
    transform: translate(-50%, 0);
    left: 50%;
  }

  .long_item_r {
    width: 89.33vw;
  }

  .long_photo .caption {
    font-size: 3.73vw;
    top: 1.33vw;
    left: 2.67vw;
  }

  .long_photo .caption_l {
    font-size: 3.73vw;
  }

  .flat_img {
    margin-top: 5.33vw;
  }

  .special {
    padding-bottom: 10.67vw;
  }

  .special_cont {
    flex-direction: column;
    align-items: flex-start;
    gap: 8vw;
    margin-top: 5.33vw;
  }

  .special_l_items {
    gap: 3.2vw;
    padding-bottom: 28.8vw;
    margin-bottom: 0;
  }

  .special_txt {
    width: 89.87vw;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .special_r_items {
    column-gap: 8vw;
  }

  .special .txt1 {
    font-size: 4vw;
    margin-bottom: 2.67vw;
  }

  .special .txt2, .special .txt3 {
    font-size: 3.2vw;
  }

  .special .txt2 {
    margin-bottom: 2.67vw;
  }

  .special .txt2.span2 {
    margin-top: 2.67vw;
  }

  .special .txt3 {
    margin-top: 1.33vw;
  }

  .select {
    padding: 25.33vw 0 17.33vw;
  }

  .select_ttl {
    width: 30.4vw;
    height: 30.4vw;
    font-size: 4.27vw;
  }

  .color_ttl {
    top: -15.2vw;
    transform: translate(-50%, 0);
  }

  .color_items_wrap {
    background-color: var(--color-white);
    padding: 17.33vw 5.33vw 5.33vw;
    position: relative;
    margin-bottom: 24vw;
  }

  .color_items {
    position: static;
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .color_txt {
    padding: 2.13vw 0;
  }

  .color_txt .txt1 {
    font-size: 2.93vw;
  }

  .color_txt .txt2 {
    font-size: 4.96vw;
  }

  .color_txt .txt_img {
    bottom: 1.33vw;
    left: 1.87vw;
  }

  .color_item:nth-of-type(2n) .txt_img {
    right: 1.87vw;
  }

  .color_txt .txt_img img {
    height: 6.13vw;
  }

  .design {
    padding: 21.33vw 5.33vw 10.67vw;
    position: relative;
  }

  .design_cont {
    display: block;
  }

  .design_l {
    width: auto;
    padding-left: 0;
  }

  .design_ttl {
    position: absolute;
    top: -15.2vw;
    left: 50%;
    transform: translateX(-50%);
  }

  .design_r {
    flex: 1;
  }

  .design .txt1 {
    font-size: 5.33vw;
    margin-bottom: 0.5em;
  }

  .design .txt2 {
    font-size: 3.73vw;
  }

  .design_img {
    width: 80vw;
    margin-bottom: 4vw;
    display: block;
  }

  .design_items {
    grid-template-columns: 1fr;
    gap: 13.33vw 0;
  }

  .design_item {
    grid-template-rows: none;
    grid-row: auto;
    gap: 0;
  }
}
/*!
case
------------------------------
*/
.case {
  padding: clamp(0px, 7.32vw, 100px) 0 clamp(0px, 11.71vw, 160px);
}

.case_ttl {
  font-size: clamp(0px, 2.34vw, 32px);
  font-weight: var(--fw-b);
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: clamp(0px, 5.86vw, 80px);
}

.case_tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: clamp(1px, 0.15vw, 2px) solid #d6c6de;
  margin-bottom: clamp(0px, 7.32vw, 100px);
}

.case_tabs > li {
  font-size: clamp(0px, 1.39vw, 19px);
  font-weight: var(--fw-m);
  text-align: center;
  line-height: 1;
}

.case_tab {
  width: 100%;
  height: 100%;
  padding-bottom: clamp(0px, 1.46vw, 20px);
  position: relative;
}

.case_tab.is_active::before {
  content: "";
  width: 100%;
  height: clamp(2px, 0.29vw, 4px);
  background-color: var(--color-purple);
  position: absolute;
  bottom: clamp(-2px, -0.15vw, -1px);
  left: 0;
}

.case_ttl_s {
  background-color: #ccc;
  border-top-left-radius: 100vh;
  border-bottom-left-radius: 100vh;
  padding: clamp(0px, 0.95vw, 13px) clamp(0px, 2.56vw, 35px) clamp(0px, 0.95vw, 13px) clamp(0px, 2.93vw, 40px);
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  margin-bottom: clamp(0px, 4.39vw, 60px);
  line-height: 1;
}

.case_ttl_s.bg_silver {
  background-image: url("../img/bg_silver.png");
  background-repeat: repeat-y;
  background-position: top left;
  background-size: cover;
}

.case_ttl_s.bg_orange {
  background-color: #ed8954;
}

.case_ttl_s.bg_purple {
  background: var(--color-purple);
  background: linear-gradient(90deg, #ab88b8 0%, #3a2d72 100%);
}

.case_ttl_s .ttl_1 {
  height: clamp(0px, 1.83vw, 25px);
  vertical-align: middle;
}

.before_after {
  position: relative;
}

.before_after .after {
  position: relative;
  width: clamp(0px, 69.18vw, 945px);
}

.txt_after {
  line-height: 1;
  width: clamp(0px, 12.81vw, 175px);
  text-align: center;
  border-right: clamp(1px, 0.15vw, 2px) solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.txt_after img {
  height: clamp(0px, 2.05vw, 28px);
}

.txt_before img {
  height: clamp(0px, 1.46vw, 20px);
}

.before_after .icon {
  font-size: clamp(0px, 1.76vw, 24px);
  font-weight: var(--fw-b);
  color: var(--color-white);
  line-height: 1.25;
  display: inline-block;
  background-color: var(--color-dark-purple);
  padding: clamp(0px, 0.51vw, 7px) 0;
  border-top-right-radius: 100vh;
  border-bottom-right-radius: 100vh;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.before_after .icon .fs_s {
  font-size: 0.7em;
  font-weight: var(--fw-sb);
}

.before_after .icon_txt_wrap {
  display: flex;
  gap: clamp(0px, 1.83vw, 25px);
  padding: 0 clamp(0px, 3.66vw, 50px) 0 clamp(0px, 2.2vw, 30px);
}

.before_after .icon_txt_wrap.adj {
  gap: clamp(0px, 3.66vw, 50px);
}

.txt_narrow {
  transform: scale(0.8, 1);
  transform-origin: top left;
  margin-right: -2.9em;
  display: inline-block;
}

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

.icon_txt br {
  font-size: 0;
}

.before_after .before {
  width: clamp(0px, 31.84vw, 435px);
  border-top: clamp(0px, 1.1vw, 15px) solid var(--color-light-purple);
  border-left: clamp(0px, 1.1vw, 15px) solid var(--color-light-purple);
  position: absolute;
  bottom: 0;
  right: 0;
}

.txt_before {
  line-height: 1;
  background-color: var(--color-white);
  border: 1px solid var(--color-dark-purple);
  border-top-right-radius: 100vh;
  border-bottom-right-radius: 100vh;
  padding: clamp(0px, 0.88vw, 12px) clamp(0px, 2.2vw, 30px) clamp(0px, 0.88vw, 12px) clamp(0px, 1.68vw, 23px);
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case_note {
  margin-top: clamp(0px, 1.46vw, 20px);
}

.case_note > li {
  font-weight: var(--fw-m);
}

.link_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0px, 2.2vw, 30px);
  margin-top: clamp(0px, 2.93vw, 40px);
}

.link_list > li > a {
  display: block;
  font-size: clamp(0px, 1.32vw, 18px);
  font-weight: var(--fw-b);
  color: var(--color-white);
  background-color: var(--color-purple);
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 1em 0.5em;
  border-radius: clamp(0px, 0.59vw, 8px);
  box-shadow: 0 clamp(0px, 0.37vw, 5px) clamp(0px, 0.44vw, 6px) #939393;
}

.link_list .txt_1_sp_adj {
  font-size: 0.95em;
}

.case_btn {
  margin-top: clamp(0px, 7.32vw, 100px);
}

.before_after_wrap {
  position: relative;
}

.comment {
  width: clamp(0px, 24.89vw, 340px);
  display: inline-block;
  background-color: var(--color-white);
  border: 2px solid var(--color-black);
  padding: clamp(0px, 1.1vw, 15px) clamp(0px, 2.2vw, 30px) clamp(0px, 1.46vw, 20px);
  position: absolute;
  top: clamp(0px, 2.2vw, 30px);
  right: 0;
}

.comment::before,
.comment::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-top: clamp(0px, 1.1vw, 15px) solid transparent;
  border-right: clamp(0px, 2.93vw, 40px) solid var(--color-black);
  border-bottom: clamp(0px, 1.1vw, 15px) solid transparent;
}

.comment::after {
  border-right: solid clamp(0px, 2.93vw, 40px) var(--color-white);
  right: calc(100% - clamp(0px, 0.44vw, 6px));
}

.comment .txt1 {
  font-size: clamp(0px, 1.9vw, 26px);
  font-weight: var(--fw-b);
  text-align: center;
  border-bottom: 2px solid var(--color-black);
  padding-bottom: 0.3em;
  margin-bottom: 0.5em;
}

.comment .txt2 {
  font-size: clamp(0px, 1.32vw, 18px);
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.case .slide_arrow_icon {
  width: clamp(0px, 3.66vw, 50px);
  height: clamp(0px, 3.66vw, 50px);
  background-color: var(--color-white);
  box-shadow: 0 0 3px rgba(70, 54, 114, 0.7);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 9;
}

.case .slide_arrow_icon:hover {
  opacity: 0.6;
}

.case .slide-arrow {
  width: clamp(0px, 1.76vw, 24px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.case .prev-arrow {
  left: 50%;
}

.case .next-arrow {
  right: auto;
  left: 50%;
}

.case .slide_arrow_icon.icon_left {
  left: clamp(-25px, -1.83vw, 0px);
}

.case .slide_arrow_icon.icon_right {
  right: clamp(-25px, -1.83vw, 0px);
}

@media screen and (max-width: 767px) {
  .case {
    padding: 10.67vw 0 22.67vw;
  }

  .case_ttl {
    font-size: 5.33vw;
    margin-bottom: 4vw;
  }

  .case_tabs {
    border-bottom: 2px solid #d6c6de;
    margin-bottom: 10.67vw;
  }

  .case_tabs > li {
    font-size: 3.2vw;
    line-height: 1.25;
  }

  .case_tab {
    padding-bottom: 2.13vw;
  }

  .case_tab > span {
    display: block;
    font-size: 1.42em;
  }

  .case_tab.is_active::before {
    height: clamp(2px, 1.07vw, 4px);
    bottom: clamp(-2px, -1.07vw, -1px);
  }

  .case_ttl_s {
    padding: 2.67vw 6.67vw 2.67vw 6.67vw;
    margin-bottom: 8vw;
  }

  .case_ttl_s.bg_silver {
    background-image: url("../img/bg_silver_sp.png");
    background-repeat: repeat-y;
    background-size: auto 8.53vw;
  }

  .case_ttl_s .ttl_1 {
    height: 4vw;
  }

  .before_after {
    padding-bottom: 33.33vw;
  }

  .before_after .after {
    width: 100%;
  }

  .txt_after {
    border: none;
    width: 26.67vw;
    background-color: var(--color-dark-purple);
    padding: 2.13vw 0;
    border-top-right-radius: 100vh;
    border-bottom-right-radius: 100vh;
  }

  .txt_after img {
    height: 4vw;
  }

  .txt_before img {
    height: 2.67vw;
  }

  .before_after .icon {
    font-size: 3.73vw;
    background-color: transparent;
    padding: 0;
  }

  .before_after .icon_txt_wrap {
    width: calc(100% + 16vw);
    flex-direction: column;
    gap: 2.67vw;
    padding: 0;
    position: absolute;
    top: calc(100% + 2.13vw);
  }

  .before_after .icon_txt_wrap.adj {
    gap: 2.67vw;
  }

  .before_after .icon_txt {
    color: var(--color-dark-purple);
  }

  .before_after .icon .fs_s {
    font-size: 0.8em;
  }

  .txt_narrow {
    transform: scale(1);
    margin-right: 0;
  }

  .before_after .before {
    width: 48vw;
    border-top-width: 1.6vw;
    border-left-width: 1.6vw;
  }

  .txt_before {
    padding: 1.07vw 4vw 1.07vw 3.2vw;
  }

  .case_note {
    margin-top: 6.67vw;
  }

  .link_list {
    gap: 4vw;
    margin-top: 12vw;
  }

  .link_list > li > a {
    font-size: 4.27vw;
    border-radius: 2.13vw;
    box-shadow: 0 1.33vw 1.6vw #939393;
  }

  .case_btn {
    margin-top: 8vw;
  }

  .case_note > li {
    font-size: 2.67vw;
  }

  .comment {
    width: 100%;
    min-height: 48vw;
    border: 2px solid var(--color-black);
    padding: 4vw 6.4vw 5.33vw;
    top: auto;
    margin-top: 6.67vw;
    position: relative;
  }

  .comment::before,
.comment::after {
    content: "";
    position: absolute;
    right: 100%;
    left: 50%;
    top: auto;
    bottom: 100%;
    transform: translate(-50%, 0);
    border-left: 2.67vw solid transparent;
    border-bottom: 4.53vw solid var(--color-black);
    border-right: 2.67vw solid transparent;
  }

  .comment::after {
    border-bottom: solid 4.53vw var(--color-white);
    bottom: calc(100% - 0.8vw);
  }

  .comment .txt1 {
    font-size: 5.33vw;
    border-bottom: 2px solid var(--color-black);
  }

  .comment .txt2 {
    font-size: 4.27vw;
    letter-spacing: normal;
  }

  .case .slide_arrow_icon {
    width: 8vw;
    height: 8vw;
  }

  .case .slide-arrow {
    width: 4.27vw;
  }

  .case .slide_arrow_icon {
    top: 28%;
    transform: none;
  }

  .case .slide_arrow_icon.icon_left {
    left: -3.73vw;
  }

  .case .slide_arrow_icon.icon_right {
    right: -3.73vw;
  }
}


