@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
  --color-black: #333;
  --color-main: #5B689A;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-mincho: "Noto Serif JP", serif;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content: 1180px;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-page-top: 99;
  --z-index-menu: 10;
  --z-index-header: 100;
  --z-index-header-logo: 11;
}

/*!
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 {
  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: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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.4vw, 16px);
  color: var(--color-black);
  background-color: #fff;
  font-family: var(--font-family-base);
  position: relative;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.is_fixed {
  overflow: hidden;
  height: 100%;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 3.25vw;
  }
}
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-bottom: clamp(0px, 8.5vw, 100px);
}

/* TEL無効 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
/*!
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 {
  width: 90%;
  margin: 0 auto;
}

.l_container {
  max-width: var(--width-content);
}

/*!
header
------------------------------
*/
.header {
  width: 100%;
  height: clamp(0px, 8.5vw, 100px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
}

.header_bg {
  width: 100%;
  height: clamp(0px, 8.5vw, 100px);
  background: linear-gradient(#5b689a 0%, rgba(126, 138, 185, 0.69) 20%, rgba(239, 242, 252, 0) 100%);
  mix-blend-mode: multiply;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
}

.header_inner {
  width: 1440px;
  max-width: 100%;
  height: 100%;
  padding: 0 clamp(0px, 1.7vw, 20px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_logo {
  width: clamp(0px, 14.8vw, 174px);
  max-width: 100%;
}

.header_logo img {
  width: 100%;
}

.header_list {
  display: flex;
  gap: clamp(0px, 3.4vw, 40px);
}

.header_item {
  font-size: clamp(0px, 1.4vw, 16px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
}

.header_item a {
  display: inline-block;
  position: relative;
}

.header_item a {
  opacity: 1;
}

.header_item a::after {
  content: "";
  background-color: currentColor;
  bottom: -0.1875em;
  height: 2px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
  width: 100%;
}

.header_item a:hover::after {
  transform: scale(1, 1);
}

@media screen and (max-width: 767px) {
  .header {
    height: 23.25vw;
  }

  .header_bg {
    height: 23.25vw;
    background: linear-gradient(#5b689a 0%, rgba(91, 104, 154, 0.69) 31.39%, rgba(91, 104, 154, 0) 100%);
  }

  .header_inner {
    padding: 0 4.65vw 0 6.51vw;
  }

  .header_logo {
    width: 33.95vw;
    max-width: 100%;
    z-index: var(--z-index-header-logo);
  }

  .header_nav {
    width: 100%;
    height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: var(--z-index-menu);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

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

  .header_list {
    flex-direction: column;
    gap: 13.95vw;
  }

  .header_item {
    font-size: 4.18vw;
    text-align: center;
  }
}
/*!
sp_menu
------------------------------
*/
.sp_menu {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp_menu {
    width: 6.04vw;
    aspect-ratio: 1/1;
    display: block;
    position: absolute;
    top: 8.13vw;
    right: 5.11vw;
  }

  .sp_menu.is_open {
    z-index: 1000;
  }

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

  .sp_menu.is_open .sp_menu_line {
    background-color: transparent;
    width: 6.04vw;
    height: 2px;
  }

  .sp_menu_line::before, .sp_menu_line::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 100vh;
    position: absolute;
    background-color: #fff;
    transition: 0.5s;
  }

  .sp_menu_line::before {
    top: clamp(-8px, -1.9dvw, 0px);
  }

  .sp_menu_line::after {
    top: 1.86vw;
  }

  .sp_menu.is_open .sp_menu_line::before {
    top: 0;
    transform: rotate(45deg);
  }

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

  .sp_menu_txt {
    width: 100%;
    font-size: 1.86vw;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.1em;
    position: absolute;
    left: 0;
    top: 5.11vw;
  }

  .sp_menu.is_open .sp_menu_txt {
    opacity: 0;
  }
}
/*!
footer
------------------------------
*/
.footer_img {
  width: 100%;
  margin-bottom: clamp(0px, 0.5vw, 5px);
}

.footer_img img {
  width: 100%;
}

.footer_bottom {
  background-color: #C8AA7F;
  padding: clamp(0px, 5.1vw, 60px) 0;
  text-align: center;
}

.footer_copyright {
  font-family: var(--font-mincho);
  font-size: clamp(0px, 1.6vw, 18px);
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer_img {
    margin-bottom: 2.32vw;
  }

  .footer_bottom {
    padding: 13.95vw 0;
  }

  .footer_copyright {
    font-size: 4.18vw;
  }
}
/*!
page_top
------------------------------
*/
.page_top {
  font-size: clamp(0px, 1.1vw, 12px);
  font-weight: bold;
  color: #707070;
  line-height: 1;
  letter-spacing: 0.05em;
  position: fixed;
  bottom: clamp(0px, 1.7vw, 20px);
  right: -1%;
  width: clamp(0px, 7.7vw, 90px);
  height: clamp(0px, 1.7vw, 20px);
  border-radius: 100vh;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 2s;
  z-index: var(--z-index-page-top);
  transform: rotate(90deg);
}

body.is_fixed .page_top {
  visibility: hidden;
}

.page_top > span {
  display: inline-block;
  transform: translateY(-0.05em);
}

.page_top:hover {
  opacity: 0.7;
}

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

@media screen and (max-width: 767px) {
  .page_top {
    font-size: 2.79vw;
    width: 20.93vw;
    height: 4.65vw;
    bottom: 2.32vw;
    right: clamp(-30px, -7dvw, 0px);
  }
}
/*!
title
------------------------------
*/
.sec_ttl {
  font-size: clamp(0px, 2.1vw, 24px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding-left: 1.5em;
  margin-bottom: 1.25em;
  position: relative;
}

.sec_ttl::before {
  content: "";
  width: 1em;
  height: 1em;
  background: url("../img/icon_ttl.svg") no-repeat center center/contain;
  display: inline-block;
  position: absolute;
  top: 0.35em;
  left: 0;
}

@media screen and (max-width: 767px) {
  .sec_ttl {
    font-size: 5.58vw;
  }
}
/*!
button
------------------------------
*/
.btn_area {
  text-align: center;
  margin-top: clamp(0px, 2.6vw, 30px);
}

.btn {
  font-size: clamp(0px, 1.7vw, 20px);
  font-weight: 500;
  color: #fff;
  line-height: 1.45;
  letter-spacing: 0.1em;
  text-align: center;
  display: inline-block;
  background-color: var(--color-main);
  border-radius: 100vh;
  padding: 0.5em 2.25em;
}

.btn.btn_m {
  width: clamp(0px, 46.7vw, 550px);
  padding: 0.5em;
}

@media screen and (max-width: 767px) {
  .btn_area {
    margin-top: 6.97vw;
  }

  .btn {
    font-size: 4.65vw;
  }

  .btn.btn_m {
    width: 76.74vw;
    padding: 0.5em;
  }
}
/*!
common
------------------------------
*/
.sec_item + .sec_item {
  margin-top: clamp(0px, 8.5vw, 100px);
}

.sec_item .l_container > *:first-child {
  margin-top: 0;
}

.sec_item .l_container > *:last-child {
  margin-bottom: 0;
}

.sec_txt {
  font-size: clamp(0px, 1.7vw, 20px);
  font-weight: 500;
  line-height: 1.5;
}

.sec_txt_s {
  font-size: clamp(0px, 1.4vw, 16px);
  font-weight: 500;
  line-height: 1.5;
}

.sec_txt a, .sec_txt_s a {
  color: var(--color-main);
  text-decoration: underline;
}

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

.btn_list.pc {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0px, 1.7vw, 20px);
  margin-top: clamp(0px, 2.6vw, 30px);
}

.btn_list.sp {
  display: none !important;
}

.btn_list > li {
  font-size: clamp(0px, 1.9vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  min-height: clamp(0px, 8.5vw, 100px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: 1px solid #707070;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .btn_list > li:hover {
    background-color: #EAEDF8;
  }
}
@media screen and (max-width: 767px) {
  .sec_item + .sec_item {
    margin-top: 18.6vw;
  }

  .sec_txt {
    font-size: 3.72vw;
  }

  .sec_txt_s {
    font-size: 3.25vw;
    letter-spacing: 0.1em;
  }

  .sec_txt_s .sp_em {
    font-size: 1.14em;
  }

  .sec_img {
    margin-top: 6.97vw;
  }

  .btn_list.pc {
    display: none !important;
  }

  .btn_list.sp {
    display: grid !important;
    margin-top: 6.97vw;
    grid-template-columns: 1fr;
    gap: 2.32vw;
  }

  .btn_list > li {
    font-size: 4.65vw;
    padding: 4.65vw;
  }

  .btn_list > li > span {
    display: inline-block;
    margin-bottom: 0.5em;
  }

  .btn_list > li > p {
    font-size: 0.8em;
  }
}
/*!
modal
------------------------------
*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: transparent;
}

.modal.is_active {
  opacity: 1;
  pointer-events: auto;
}

.modal_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  cursor: pointer;
}

.modal_content {
  width: 570px;
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal_inner {
  width: clamp(0px, 48.4vw, 570px);
  max-width: 100%;
  aspect-ratio: 570/300;
  max-height: 94dvh;
  margin: 0 auto;
  padding: clamp(0px, 5.1vw, 60px) clamp(0px, 4.7vw, 55px) clamp(0px, 4.3vw, 50px);
  background: #EAEDF8;
  border: 1px solid var(--color-main);
  overflow-y: auto;
  position: relative;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.16);
}

.modal_inner::-webkit-scrollbar {
  background: #ccc;
  width: 10px;
  height: 5px;
}

.modal_inner::-webkit-scrollbar-thumb {
  background-color: var(--color-em);
  border-radius: 10px;
}

.modal_item {
  display: none;
}

.modal_item.is_active {
  display: block;
}

.modal_ttl {
  font-size: clamp(0px, 2.1vw, 24px);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  margin-bottom: 0.83em;
}

.modal_txt {
  font-size: clamp(0px, 1.6vw, 18px);
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 0.83em;
}

.modal_close_btn {
  width: clamp(0px, 1.7vw, 20px);
  aspect-ratio: 1/1;
  line-height: 1;
  position: absolute;
  top: clamp(0px, 1.1vw, 12px);
  right: clamp(0px, 1.2vw, 13px);
  cursor: pointer;
  z-index: 20;
}

.modal_close_btn:hover {
  opacity: 0.8;
}

.close_btn_line {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: clamp(0px, 1.7vw, 20px);
  height: 2px;
  background: var(--color-main);
  position: relative;
  transform: rotate(45deg);
}

.close_btn_line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

/*!
accordion
------------------------------
*/
.acc {
  display: flex;
  flex-direction: column;
  gap: clamp(0px, 0.9vw, 10px);
}

.acc_ttl, .acc_cont {
  font-size: clamp(0px, 1.6vw, 18px);
  font-weight: 500;
  color: var(--color-main);
  line-height: 1.45;
  letter-spacing: 0.1em;
  padding: 0.67em 1.67em;
  padding-left: 4.56em;
  position: relative;
}

.acc_ttl {
  background-color: #EAEDF8;
  cursor: pointer;
}

.acc_ttl.is_open {
  background-color: #8C98C7;
}

.acc_cont {
  background-color: var(--color-main);
  display: none;
}

.acc_ttl.is_open, .acc_cont.is_open {
  color: #fff;
}

.acc_ttl::before, .acc_cont::before {
  font-size: 1.33em;
  font-weight: 900;
  position: absolute;
  left: 1.25em;
}

.acc_ttl::before {
  content: "Q.";
  top: 0.33em;
}

.acc_cont::before {
  content: "A.";
  top: 0.28em;
}

@media screen and (max-width: 767px) {
  .acc {
    gap: 2.32vw;
  }

  .acc_ttl, .acc_cont {
    font-size: 4.18vw;
  }
}
/*!
mv
------------------------------
*/
.mv {
  aspect-ratio: 1920/850;
  background: url("../img/mv.jpg") no-repeat center center/cover;
}

.mv_inner {
  width: 1440px;
  max-width: 90%;
  margin: 0 auto;
  padding: clamp(0px, 11.9vw, 190px) 0 clamp(0px, 5.7vw, 90px);
}

.mv_ttl {
  font-family: var(--font-mincho);
  font-size: clamp(0px, 5vw, 72px);
  font-weight: 900;
  color: #fff;
  line-height: 1.45;
}

.mv_col {
  display: flex;
  align-items: center;
  gap: clamp(0px, 0.4vw, 6px);
  transform: translateX(clamp(-30px, -1.9vw, 0px));
}

.mv_icon {
  width: clamp(0px, 16.9vw, 270px);
}

.mv_txt .txt1 {
  font-family: var(--font-mincho);
  font-size: clamp(0px, 1.8vw, 28px);
  font-weight: bold;
  color: #fff;
  line-height: 1.45;
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 0.18em 1.14em;
  background: linear-gradient(#dfb84d 0%, #e1c355 37.14%, #e1c455 39.31%, #e1c656 46.03%, #dfb84d 100%);
  margin-bottom: 0.5em;
}

.mv_txt .txt1 > span {
  display: inline-block;
  transform: translateY(-0.05em);
}

.mv_txt .txt2 {
  font-family: var(--font-mincho);
  font-size: clamp(0px, 1.5vw, 24px);
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.46;
}

@media screen and (max-width: 767px) {
  .mv {
    aspect-ratio: 430/1079;
    background-image: url("../img/mv_sp.jpg");
  }

  .mv_bg {
    height: 23.25vw;
  }

  .mv_inner {
    max-width: 91%;
    padding: 27.9vw 0 0;
  }

  .mv_ttl {
    font-size: 11.62vw;
    margin-right: clamp(-20px, -4.8dvw, 0px);
    margin-bottom: 0.4em;
  }

  .mv_col {
    flex-direction: column;
    transform: none;
  }

  .mv_icon {
    width: 62.79vw;
  }

  .mv_txt .txt1 {
    font-size: 6.51vw;
    padding: 0.18em 1.07em;
    margin-bottom: 0.7em;
  }

  .mv_txt .txt2 {
    font-size: 4.18vw;
  }
}
/*!
lead
------------------------------
*/
.lead {
  padding: clamp(0px, 4.3vw, 50px) 0 0;
}

.lead_txt1 {
  font-family: var(--font-mincho);
  font-size: clamp(0px, 4.1vw, 48px);
  font-weight: bold;
  color: #C8AA7F;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 0.416em;
}

.lead_txt2 {
  font-family: var(--font-mincho);
  font-size: clamp(0px, 2.8vw, 32px);
  font-weight: bold;
  color: #C8AA7F;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 1.875em;
}

.lead_list {
  width: 870px;
  max-width: 74%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0px, 2.6vw, 30px);
  margin-bottom: clamp(0px, 4.3vw, 50px);
}

.lead_list > li {
  font-family: var(--font-mincho);
  color: #fff;
  border-radius: clamp(0px, 2.6vw, 30px);
  padding: clamp(0px, 2.2vw, 25px) clamp(0px, 0.9vw, 10px) clamp(0px, 3.4vw, 40px);
  display: flex;
  flex-direction: column;
}

.lead_list > li:nth-child(1) {
  background-color: #CEC66D;
}

.lead_list > li:nth-child(2) {
  background-color: #AEC0B2;
}

.lead_list > li:nth-child(3) {
  background-color: #8EA3C4;
}

.lead_list > li .txt1 {
  font-size: clamp(0px, 3vw, 35px);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 0.217em;
}

.lead_list > li .txt2 {
  font-size: clamp(0px, 1.7vw, 19px);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 1em;
}

.lead_list > li .img {
  text-align: center;
  margin-top: auto;
}

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

  .lead_txt1 {
    font-size: 4.65vw;
    margin-bottom: 0;
  }

  .lead_txt2 {
    font-size: 6.27vw;
    margin-bottom: 1.11em;
  }

  .lead_list {
    max-width: 93%;
    grid-template-columns: 1fr;
    gap: 1.16vw;
  }

  .lead_list > li {
    border-radius: 4.65vw;
    padding: 4.65vw;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .lead_list > li .txt_wrap {
    flex: 1;
  }

  .lead_list > li .txt1 {
    font-size: 8.13vw;
    margin-bottom: 0;
  }

  .lead_list > li .txt2 {
    font-size: 4.41vw;
    margin-bottom: 0;
  }

  .lead_list > li .img {
    width: 19.06vw;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .lead_list > li .img img {
    display: block;
    height: 13.95vw;
  }
}
/*!
.mess
------------------------------
*/
.mess {
  background-color: #C8AA7F;
  position: relative;
  margin-bottom: clamp(0px, 8.5vw, 100px);
}

.mess_img {
  width: 74%;
}

.mess_img img {
  width: 100%;
}

.mess_txt {
  font-family: var(--font-mincho);
  font-size: clamp(0px, 2.5vw, 48px);
  font-weight: 500;
  color: #fff;
  line-height: 1.4375;
}

.mess_cont {
  width: 100%;
  height: 100%;
  padding-left: 59.16%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .mess {
    margin-bottom: 11.62vw;
  }

  .mess_img {
    width: 100%;
  }

  .mess_cont {
    position: relative;
    padding-left: 0;
    padding: 6.97vw 0;
  }

  .mess_cont_inner {
    width: 90%;
    margin: 0 auto;
  }

  .mess_txt {
    font-size: 6.97vw;
    margin-right: clamp(-20px, -4.7dvw, 0px);
  }
}
/*!
step
------------------------------
*/
.step_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0px, 3.9vw, 45px);
}

.step_list > li {
  border: 1px solid var(--color-main);
  padding: clamp(0px, 2.2vw, 25px) clamp(0px, 1.3vw, 15px);
  position: relative;
}

.step_list > li:not(:last-child)::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: clamp(0px, 1.6vw, 18px) 0 clamp(0px, 1.6vw, 18px) clamp(0px, 1.6vw, 18px);
  border-color: transparent transparent transparent var(--color-main);
  position: absolute;
  top: clamp(0px, 12.8vw, 150px);
  left: calc(100% + clamp(0px, 1.2vw, 14px));
  margin: auto;
}

.step_list > li .ttl_en {
  font-size: clamp(0px, 1.7vw, 20px);
  font-weight: 500;
  color: var(--color-main);
  line-height: 1;
  text-align: center;
  margin-bottom: 1em;
}

.step_list > li .ttl_en > span {
  width: 5em;
  display: inline-block;
  padding-bottom: 0.5em;
  position: relative;
  border-bottom: 1px solid var(--color-main);
}

.step_list > li .ttl {
  font-size: clamp(0px, 1.9vw, 22px);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  margin-bottom: 1.36em;
}

.step_list > li .ttl > span {
  font-weight: 500;
  display: block;
  font-size: 0.727em;
}

.step_list > li .icon {
  text-align: center;
  margin-bottom: clamp(0px, 1.7vw, 20px);
}

.step_list > li .icon img {
  display: inline-block;
  height: clamp(0px, 6vw, 70px);
}

.step_list > li .txt {
  font-size: clamp(0px, 1.4vw, 16px);
  font-weight: 500;
  line-height: 1.625;
  text-align: center;
}

.step_list > li .txt a {
  color: var(--color-main);
  text-decoration: underline;
}

.step_list > li .note {
  font-size: clamp(0px, 1.2vw, 14px);
  line-height: 1.43;
}

@media screen and (max-width: 767px) {
  .step_list {
    grid-template-columns: 1fr;
    gap: 9.3vw;
  }

  .step_list > li {
    aspect-ratio: 390/380;
    padding: 4.65vw 3.48vw 9.3vw;
    display: flex;
    flex-direction: column;
  }

  .step_list > li:not(:last-child)::before {
    border-width: 4.18vw 4.18vw 0 4.18vw;
    border-color: var(--color-main) transparent transparent transparent;
    top: calc(100% + 2.32vw);
    left: 50%;
    transform: translateX(-50%);
  }

  .step_list > li .ttl_en {
    font-size: 5.11vw;
    margin-bottom: 0.8em;
  }

  .step_list > li .ttl {
    font-size: 5.58vw;
    margin-bottom: 1.25em;
  }

  .step_list > li .icon img {
    height: 16.27vw;
  }

  .step_list > li .txt {
    font-size: 3.72vw;
    margin-top: auto;
  }

  .step_list > li .txt + .note {
    margin-top: 0.7em;
  }

  .step_list > li .note {
    font-size: 3.25vw;
  }
}
/*!
movie
------------------------------
*/
.movie {
  margin: clamp(0px, 8.5vw, 100px) 0;
}

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

.movie_info {
  width: 322px;
  width: 28.2%;
  background-color: #8C98C7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.movie_wrap {
  flex: 1;
  position: relative;
  aspect-ratio: 838/472;
}

.movie_wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.movie_cont .txt {
  font-size: clamp(0px, 1.7vw, 20px);
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.45;
  letter-spacing: 0.1em;
}

.movie_cont .icon {
  width: clamp(0px, 3.7vw, 43px);
  margin: clamp(0px, 2.6vw, 30px) auto 0;
}

@media screen and (max-width: 767px) {
  .movie {
    margin: 23.25vw 0;
  }

  .movie_col {
    flex-direction: column;
    gap: 4.65vw;
  }

  .movie_info {
    width: 100%;
    display: block;
    padding: 10.46vw 0;
  }

  .movie_cont .txt {
    font-size: 4.65vw;
  }

  .movie_cont .icon {
    width: 10vw;
    margin: 4.65vw auto 0;
  }
}
/*!
cta
------------------------------
*/
.cta {
  margin-top: clamp(0px, 8.5vw, 100px);
}

.cta_box {
  background-color: #EAEDF8;
  padding: clamp(0px, 4.3vw, 50px) clamp(0px, 1.7vw, 20px);
}

.cta_txt {
  font-size: clamp(0px, 1.4vw, 16px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-align: center;
  margin-bottom: 1.25em;
}

.cta .btn_area {
  margin-top: clamp(0px, 1.7vw, 20px);
}

@media screen and (max-width: 767px) {
  .cta {
    margin-top: 23.25vw;
  }

  .cta_box {
    padding: 0;
    background-color: transparent;
  }

  .cta_txt {
    font-size: 3.72vw;
  }
}