@charset "UTF-8";
html {
  scroll-padding: 5.6rem;
  scroll-behavior: smooth;
  font-size: 62.5%;
}

@media screen and (max-width: 768px) {
  html {
    scroll-padding: 0;
  }
}
body {
  *font-size: small;
  *font: x-small;
  font-size: 1.6rem;
  color: #000;
  line-height: 1.5;
  font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  width: 100%;
  margin: 0px;
  padding: 0px;
  background: #FFF;
  -webkit-text-size-adjust: 100%;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
img,
table,
th,
td,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
}

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

a img {
  transition: opacity 0.4s cubic-bezier(0.21, 0.6, 0.35, 1);
}

a:hover img {
  opacity: 0.7;
}

#wrap {
  overflow: hidden;
  position: relative;
}

br.sp {
  display: none;
}

figure {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

@media screen and (max-width: 750px) {
  br.sp {
    display: block;
  }
  br.pc {
    display: none;
  }
}
/* main
-----------------------------------------------*/
#main {
  position: relative;
}

#main .background {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#main .background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #F3EFE4;
  z-index: -2;
}

#main .background::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #F0F4F6;
  z-index: -2;
}

#main .background_left,
.background_right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
}

.background_left {
  left: 0;
  background-image: url("../images/bg-mv_pc_01.png");
  background-position: left top;
}

.background_right {
  right: 0;
  background-image: url("../images/bg-mv_pc_02.png");
  background-position: right top;
}

#main .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14rem 2rem 2rem;
}

#main h1 {
  max-width: 85%;
}

#main .leadWrap {
  margin-top: 2.8rem;
  padding: 2.2rem 3.6rem;
  border-top: 1px solid #7C6C63;
  border-bottom: 1px solid #7C6C63;
  background: var(--color-text-white);
  box-sizing: border-box;
}

#main .lead {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
  background: var(--color-grad01);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#main .campaign {
  width: 100%;
  max-width: 1200px;
  margin-top: 5rem;
  background: var(--color-red);
}
#main .campaign_inner {
  padding: 1.6rem 3.2rem;
  width: 100%;
  box-sizing: border-box;
}
#main .campaign_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.8rem;
  width: 100%;
  font-size: 1.8rem;
}
#main .campaign_list dt {
  display: flex;
  padding: 0.9rem 1.8rem;
  justify-content: center;
  align-items: center;
  color: var(--color-red);
  font-weight: 700;
  background: var(--color-text-white);
  flex-shrink: 0;
}
#main .campaign_list dd {
  color: var(--color-text-white);
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
}
#main .campaign_list dd span {
  color: #FAE696;
  font-weight: 700;
}

#main .boxArea {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  width: 100%;
  max-width: 1880px;
  margin-top: 2rem;
}

#main .box {
  padding: 2.2rem 3.2rem;
  color: var(--color-text-white);
  text-decoration: none;
  position: relative;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
}

#main .box.-beginner {
  background: var(--color-brown);
  border: 2px solid var(--color-brown);
}

#main .box.-intermediate {
  background: var(--color-green);
  border: 2px solid var(--color-green);
}

#main h2 {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.32rem;
}

#main .box.-beginner h2::after,
#main .box.-intermediate h2::after {
  content: "";
  width: 2rem;
  height: auto;
  background: url(../images/ico_arrow.svg) no-repeat center;
}

#main .box p {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
}

#main .icon {
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  #main .box.-beginner:hover {
    background: var(--color-text-white);
    color: var(--color-brown);
  }
  #main .box.-beginner:hover h2::after {
    background: url(../images/ico_arrow08.svg) no-repeat center;
  }
  #main .box.-intermediate:hover {
    background: var(--color-text-white);
    color: var(--color-green);
  }
  #main .box.-intermediate:hover h2::after {
    background: url(../images/ico_arrow09.svg) no-repeat center;
  }
}
@media screen and (max-width: 1024px) {
  #main .inner {
    padding: 10.8rem 6rem 2rem;
  }
  #main h1 {
    max-width: 512px;
  }
  #main .lead {
    margin-top: 0;
  }
  #main h2 {
    padding-right: 0;
  }
  #main .campaign {
    margin-top: 6rem;
  }
  #main .campaign_inner {
    padding: 2rem 2.8rem;
  }
  #main .boxArea {
    grid-template-columns: auto;
    gap: 1.4rem;
    margin-top: 3.2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #main .background_left {
    background: url(../images/bg-mv_tab_01.png) no-repeat top 48px left/contain;
  }
  #main .background_right {
    background: url(../images/bg-mv_tab_02.png) no-repeat top 48px right/contain;
  }
}
@media screen and (max-width: 768px) {
  #main {
    background: url(../images/bg-mv_sp.png) no-repeat center 48px/100%;
  }
  #main .background::before,
  #main .background::after {
    display: none;
  }
  #main .background_left {
    display: none;
  }
  #main .background_right {
    display: none;
  }
  #main .inner {
    padding: 9.6rem 1.6rem 1.6rem;
  }
  #main h1 {
    width: 86.9565217391%;
    max-width: 450px;
  }
  #main .leadWrap {
    width: 100%;
    max-width: 644px;
    margin-top: 2.2rem;
    padding: 1rem 1.6rem;
  }
  #main .lead {
    font-size: 1.6rem;
  }
  #main .boxArea {
    margin-top: 1.6rem;
    gap: 0.8rem;
    max-width: 644px;
  }
  #main .box {
    padding: 0.8rem 3.2rem;
  }
  #main h2 {
    gap: 1rem;
    font-size: 2rem;
  }
  #main .box.-beginner h2::after,
  #main .box.-intermediate h2::after {
    content: "";
    width: 1.2rem;
    margin-left: 0;
    background: url(../images/ico_arrow.svg) no-repeat center/12px;
  }
  #main .box p {
    font-size: 1.6rem;
  }
  #main .campaign {
    margin-top: 4.8rem;
    max-width: 644px;
  }
  #main .campaign_inner {
    padding: 1.6rem;
  }
  #main .campaign_list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.6rem;
  }
  #main .campaign_list dt {
    padding: 0.8rem 1.6rem;
  }
}
/*================================================================
  ↓20240603 add
================================================================*/
@font-face {
  font-family: "Noto Sans JP";
  src: url("../font/NotoSansJP-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../font/NotoSansJP-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../font/NotoSansJP-Bold.ttf");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
/*min($width, percentage(calc($width / $maxWidth) rem) * 1rem;*/
/*****************************************************
  Foundation
*****************************************************/
/* -----------------------------------------------
  Base
----------------------------------------------- */
:root {
  /*color*/
  --color-brown: #7C6C63;
  --color-green: #006F78;
  --color-navy: #003D73;
  --color-red: #BF000B;
  --color-text-black: #000000;
  --color-text-white: #FFFFFF;
  --color-text-link: #0065BE;
  --color-bg-brown: #E5E0DC;
  --color-bg-green: #DFE7E8;
  --color-bg-yellow: #FAF7EB;
  --color-bg-light-blue: #E5F5FF;
  --color-bg-gray: #F0F0F0;
  --color-border-gray: #DBDBDB;
  --color-grad01: linear-gradient(90deg, #7C6C63 0%, #000000 100%);
  --color-shadow: rgba(0, 0, 0, 0.2);
  /*value*/
  --font-size-h2-01: 3.6rem;
  --font-size-h2-02: 4rem;
  --font-size-h3: 2.4rem;
  --font-size-h4: 2rem;
  --font-size-shoulder: 2.8rem;
  --font-size-text-s: 1.4rem;
  /*注釈*/
  --font-size-text: 1.6rem;
  /*テキスト本文（メインより小さいサイズ）*/
  --font-size-text-l: 1.8rem;
  /*テキスト本文（メイン）*/
  --font-size-text-xl: 2rem;
  /*ボタンのテキスト*/
  --margin-margin-section: 10rem;
  --margin-margin-contents: 6rem;
  --margin-learning-side: 6rem;
  --border-radius-border-radius-box: 1rem;
  /*font*/
  --font-sans01: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  --font-sans02: "Roboto", sans-serif;
}

@media screen and (max-width: 1200px) {
  :root {
    /*value*/
    --margin-learning-side: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  :root {
    /*value*/
    --font-size-h2-01: 2.2rem;
    --font-size-h2-02: 2.8rem;
    --font-size-h3: 2rem;
    --font-size-h4: 1.8rem;
    --font-size-shoulder: 1.6rem;
    --font-size-text-s: 1.3rem;
    --font-size-text: 1.5rem;
    --font-size-text-l: 1.6rem;
    --font-size-text-xl: 1.8rem;
    --margin-margin-section: 6rem;
    --margin-margin-contents: 4rem;
    --margin-learning-side: 0;
  }
}
/*****************************************************
  Layout
*****************************************************/
/* -----------------------------------------------
	.l-header
----------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
  max-width: 97.916666%;
  margin: 2rem 0 0;
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans01);
  transition: 0.2s background;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}
.l-header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 2.0833333%;
  margin-inline: auto;
  min-height: 6rem;
  box-sizing: border-box;
}
.l-header_logo a {
  display: block;
  line-height: 0;
}
.l-header_logo img {
  display: block;
}
.l-header_navList {
  display: flex;
  align-items: center;
}
.l-header_navItem.-red {
  display: flex;
  align-items: center;
}
.l-header_navItem:nth-last-child(2) .l-header_navLink {
  margin: 0 0.4rem 0 1.4rem;
}
.l-header_navLink {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
  height: 100%;
  padding: 1.8rem 1.15rem;
  color: var(--color-text-black);
  text-decoration: none;
  min-height: 6rem;
  box-sizing: border-box;
  border-bottom: 2px solid transparent;
}
.l-header_navLink.-brown {
  color: var(--color-brown);
}
.l-header_navLink.-brown::after {
  display: block;
  content: "";
  background: transparent url(../images/ico_arrow02.svg) no-repeat top center/cover;
  width: 1.4rem;
  height: 1.4rem;
}
.l-header_navLink.-green {
  color: var(--color-green);
}
.l-header_navLink.-green::after {
  display: block;
  content: "";
  background: transparent url(../images/ico_arrow03.svg) no-repeat top center/cover;
  width: 1.4rem;
  height: 1.4rem;
}
.l-header_navLink.-navy {
  color: var(--color-navy);
}
.l-header_navLink.-navy::after {
  display: block;
  content: "";
  background: transparent url(../images/ico_arrow04.svg) no-repeat top center/cover;
  width: 1.4rem;
  height: 1.4rem;
}
.l-header_navLink.-black::after {
  display: block;
  content: "";
  background: transparent url(../images/ico_arrow05.svg) no-repeat top center/cover;
  width: 1rem;
  height: 0.6rem;
}
.l-header_navLink.-red {
  position: relative;
  min-height: 4rem;
  padding: 0.6rem 2.8rem 0.6rem 1.2rem;
  color: var(--color-text-white);
  background: var(--color-red);
  border: 2px solid var(--color-red);
  column-gap: 0.3rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.l-header_navLink.-red::after {
  position: absolute;
  display: block;
  content: "";
  background: transparent url(../images/ico_arrow06.svg) no-repeat top center/cover;
  top: 50%;
  right: 1.6rem;
  translate: 0 -50%;
  width: 0.6rem;
  height: 0.8rem;
}
.l-header_navText {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}

@media (hover: hover) and (pointer: fine) {
  .l-header_navLink.-black:hover {
    border-bottom: 2px solid var(--color-text-black);
  }
  .l-header_navLink.-red:hover {
    color: var(--color-red);
    background: var(--color-text-white);
  }
  .l-header_navLink.-red:hover::after {
    background: transparent url(../images/ico_arrow07.svg) no-repeat top center/cover;
  }
  .l-header_navLink.-brown:hover {
    border-bottom: 2px solid var(--color-brown);
  }
  .l-header_navLink.-green:hover {
    border-bottom: 2px solid var(--color-green);
  }
  .l-header_navLink.-navy:hover {
    border-bottom: 2px solid var(--color-navy);
  }
}
@media screen and (max-width: 1480px) {
  .l-header_logo {
    width: 15rem;
  }
  .l-header_navLink {
    padding: 0.5rem 1rem;
  }
  .l-header_navLink.-red {
    column-gap: 0;
    padding: 0.5rem 1.1rem;
  }
  .l-header_navLink.-red::after {
    display: none;
  }
  .l-header_navLink.-red .l-header_navIcon svg {
    right: 0.1rem;
  }
  .l-header_navText {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .l-header {
    padding: 1.563rem 0;
    left: 0;
    transform: revert;
    width: 100%;
    max-width: revert;
    margin: 0;
  }
  .l-header_inner {
    display: block;
    min-height: auto;
    padding: 0 1.6rem;
  }
  .l-header_logo {
    width: 17.15rem;
  }
  .l-header_nav {
    display: none;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .l-header_logo {
    width: 12rem;
  }
  .l-header_navLink {
    column-gap: 0.5rem;
  }
  .l-header_navText {
    font-size: 1.1rem;
  }
  .l-header_navLink.-red {
    padding: 0.5rem 1.5rem 0.5rem 0.7rem;
  }
  .l-header_navLink.-red::after {
    right: 0.8rem;
  }
}
/* -----------------------------------------------
	.l-footer
----------------------------------------------- */
.l-footer {
  position: relative;
  padding: 2.8rem 0;
  background: var(--color-bg-yellow);
  text-align: center;
}
.l-footer_inner {
  width: 100%;
  width: min(100%, 123rem);
  margin-inline: auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .l-footer_inner {
    max-width: 100%;
  }
}
.l-footer_copy {
  font-size: 1.4rem;
  line-height: 1.5;
}
.l-footer_top {
  position: fixed;
  right: 2rem;
  bottom: 12rem;
  z-index: 100;
  transition: opacity 0.3s;
}
.l-footer_top.-absolute {
  position: absolute;
  bottom: calc(50% + 6rem);
}
.l-footer_top a {
  position: relative;
  display: block;
  width: 5.8rem;
  aspect-ratio: 1;
  color: var(--color-navy);
  background-color: var(--color-text-white);
  border: 1px solid currentcolor;
  transition: background-color, opacity, 0.2s linear;
  opacity: 0;
}
.l-footer_top a::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 50%;
  translate: -50% calc(-50% + 3px);
  width: 1.2rem;
  aspect-ratio: 1;
  border-color: currentColor;
  border-style: solid;
  border-width: 0 2px 2px 0;
  rotate: 225deg;
}

body.-scroll .l-footer_top a {
  opacity: 0.9;
}

@media (hover: hover) and (pointer: fine) {
  .l-footer_top a:hover {
    color: var(--color-text-white);
    background-color: var(--color-navy);
    border: 1px solid var(--color-navy);
  }
}
@media screen and (max-width: 1400px) {
  .l-footer_top {
    bottom: 14.5rem;
  }
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 2.2rem 0 6rem;
  }
  .l-footer_inner {
    padding: 0 1.6rem;
  }
  .l-footer_copy {
    font-size: 1.3rem;
  }
  .l-footer_top {
    right: 1.5rem;
    bottom: 14.5rem;
  }
  .l-footer_top.-absolute {
    bottom: 1rem;
  }
  .l-footer_top a {
    width: 4.8rem;
    height: 4.8rem;
  }
}
/* -----------------------------------------------
  Frame
----------------------------------------------- */
.l-wrapper {
  position: relative;
}

/*****************************************************
  Object
*****************************************************/
/* =================================================
  Component
================================================= */
/* -----------------------------------------------
  font
----------------------------------------------- */
.c-fontSans01 {
  font-family: var(--font-sans01);
}

/* -----------------------------------------------
  hover
----------------------------------------------- */
.c-hover {
  transition: 0.2s opacity;
  cursor: pointer;
}
.c-hover:focus-visible {
  opacity: 0.7;
}

@media (hover: hover) and (pointer: fine) {
  .c-hover:hover {
    opacity: 0.7;
  }
}
/* -----------------------------------------------
  head
----------------------------------------------- */
.c-headWrap {
  margin-bottom: 4rem;
}
.c-headWrap .c-head {
  margin-bottom: 0;
}
.c-headWrap_shoulder {
  width: fit-content;
  margin: 2rem auto 0;
  color: var(--color-brown);
  font-size: var(--font-size-shoulder);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.c-headWrap_shoulder.-black {
  color: var(--color-text-black);
}
.c-headWrap_shoulder.-navy {
  color: var(--color-navy);
}
.c-headWrap_shoulder span {
  display: inline-block;
  background: var(--color-text-white);
}
.c-headWrap_shoulder span:first-of-type {
  padding-left: 1.4rem;
}
.c-headWrap_shoulder span:last-of-type {
  padding-right: 1.4rem;
}

.c-head {
  margin-bottom: 4rem;
  color: var(--color-brown);
  font-size: var(--font-size-h2-01);
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.c-head.-black {
  color: var(--color-text-black);
}
.c-head.-navy {
  color: var(--color-navy);
}

.c-headL {
  margin-bottom: 6rem;
  color: var(--color-text-black);
  font-size: var(--font-size-h2-02);
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}
.c-headL.-white {
  color: var(--color-text-white);
}
.c-headL.-navy {
  color: var(--color-navy);
}

.c-head03 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 3.2rem;
  color: var(--color-text-black);
  font-size: var(--font-size-h3);
  font-weight: bold;
  line-height: 1.5;
}
.c-head03::before {
  content: "";
  display: block;
  background: url(../images/ico_line_01.svg) no-repeat center/cover;
  width: 0.8rem;
  height: 3.6rem;
}
.c-head03.-green::before {
  background: url(../images/ico_line_02.svg) no-repeat center/cover;
}
.c-head03.-navy::before {
  background: url(../images/ico_line_03.svg) no-repeat center/cover;
}

.c-head04 {
  padding-bottom: 0.5rem;
  margin-bottom: 2.5rem;
  font-size: var(--font-size-h4);
  font-weight: 700;
  border-bottom: solid 1px var(--color-navy);
}

@media screen and (max-width: 768px) {
  .c-headWrap {
    margin-bottom: 3rem;
  }
  .c-headWrap .c-head {
    margin-bottom: 0;
  }
  .c-headWrap_shoulder {
    margin: 1.2rem 0 0;
    text-align: left;
  }
  .c-headWrap_shoulder span {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    margin-top: 0.4rem;
  }
  .c-headWrap_shoulder span:first-of-type {
    padding-left: 0.8rem;
  }
  .c-headWrap_shoulder span:last-of-type {
    padding-right: 0.8rem;
  }
  .c-head {
    margin-bottom: 3rem;
    text-align: left;
  }
  .c-headL {
    margin-bottom: 4rem;
  }
  .c-head03 {
    margin-bottom: 1.5rem;
  }
  .c-head04 {
    padding-bottom: 0.4rem;
    margin-bottom: 1.6rem;
    font-weight: 700;
    border-bottom: solid 1px var(--color-navy);
  }
}
/* -----------------------------------------------
  button
----------------------------------------------- */
.c-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  width: min(40rem, 100%);
  padding: 1.8rem 2rem;
  border: 2px solid var(--color-text-link);
  background: var(--color-text-link);
  font-size: var(--font-size-text-xl);
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  box-sizing: border-box;
  transition: 0.2s background;
  border-radius: 8px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
.c-btn_span {
  color: var(--color-text-white);
  transition: 0.2s color;
}
.c-btn::after {
  position: absolute;
  display: block;
  content: "";
  background: transparent url(../images/ico_arrow06.svg) no-repeat top center/cover;
  top: 50%;
  right: 2rem;
  translate: 0 -50%;
  width: 0.6rem;
  height: 1rem;
}
.c-btn:focus-visible {
  background: var(--color-bg-light-blue);
}
.c-btn:focus-visible .c-btn_span {
  color: var(--color-text-link);
}
.c-btn.-small {
  padding: 1rem 0.8rem;
  border: 1px solid var(--color-text-link);
  font-size: var(--font-size-text);
  width: min(20rem, 100%);
}
.c-btn.-float {
  padding: 1.5rem 3.2rem;
  width: 100%;
}
.c-btn.-red {
  background: var(--color-red);
  border: 2px solid var(--color-red);
}
.c-btn.-red:focus-visible {
  background-color: var(--color-text-white);
}
.c-btn.-red:focus-visible::after {
  background: transparent url(../images/ico_arrow07.svg) no-repeat top center/cover;
}
.c-btn.-red:focus-visible .c-btn_span {
  color: var(--color-red);
}

@media (hover: hover) and (pointer: fine) {
  .c-btn:hover {
    background: var(--color-bg-light-blue);
  }
  .c-btn:hover .c-btn_span {
    color: var(--color-text-link);
  }
  .c-btn.-red:hover {
    background: var(--color-text-white);
  }
  .c-btn.-red:hover .c-btn_span {
    color: var(--color-red);
  }
  .c-btn.-red:hover:hover::after {
    background: transparent url(../images/ico_arrow07.svg) no-repeat top center/cover;
  }
}
@media screen and (max-width: 1024px) {
  .c-btn.-float .c-btn_span {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .c-btn {
    width: min(38rem, 100%);
    padding: 1.4rem 1rem;
  }
  .c-btn_span {
    color: var(--color-text-white);
    transition: 0.2s color;
  }
  .c-btn svg {
    fill: none;
    stroke: var(--color-text-white);
    transition: 0.2s stroke;
  }
  .c-btn:focus-visible {
    background: var(--color-bg-light-blue);
  }
  .c-btn:focus-visible .c-btn_span {
    color: var(--color-text-link);
  }
  .c-btn:focus-visible svg {
    stroke: var(--color-text-link);
  }
  .c-btn.-small {
    width: min(10rem, 100%);
  }
  .c-btn.-float {
    padding: 0.8rem 3.2rem;
  }
}
/* -----------------------------------------------
  item
----------------------------------------------- */
.c-textL {
  font-size: var(--font-size-text-l);
  line-height: 1.8;
  margin-bottom: var(--border-radius-border-radius-box);
}
.c-textL.-red {
  color: var(--color-red);
  font-weight: 700;
}
.c-textL.-white {
  color: var(--color-text-white);
}
.c-textL.-mb0 {
  margin-bottom: 0;
}
.c-textL.-ver02 {
  margin-bottom: 1.5rem;
}
.c-textL.-bold {
  font-weight: 700;
}
.c-textL.-marginTop {
  margin-top: 2.4rem;
}

.c-text {
  font-size: var(--font-size-text);
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .c-textL.-marginTop {
    margin-top: 1.6rem;
  }
}
/* -----------------------------------------------
  item
----------------------------------------------- */
.c-req {
  margin-top: var(--border-radius-border-radius-box);
}
.c-req > li {
  position: relative;
  padding-left: 1.8rem;
  font-size: var(--font-size-text-s);
  line-height: 1.8;
}
.c-req > li::before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.c-req > li + li {
  margin-top: 0.5rem;
}
.c-req.-ver02 {
  margin-top: 1.5rem;
}
.c-req.-mt0 {
  margin-top: 0;
}

.c-table_item {
  display: grid;
  grid-template-columns: 27% calc(73% - 4rem);
  column-gap: 3rem;
  padding: 3.2rem 4rem;
  align-items: center;
  gap: 4rem;
  background: var(--color-text-white);
}
.c-table_item:nth-child(even) {
  background: var(--color-bg-gray);
}
.c-table_dt {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.c-table_span01.-building {
  margin: 0 0.7rem;
}
.c-table_span02 {
  line-height: 1.5;
}

.c-table02 {
  width: 100%;
  border: 1px solid var(--color-border-gray);
}
.c-table02 tr {
  text-align: center;
}
.c-table02 th {
  width: 50%;
  padding: 1.7rem 1rem;
  font-size: var(--font-size-text-l);
  font-weight: 500;
  line-height: 1;
  color: var(--color-text-white);
  border: 1px solid var(--color-border-gray);
  background: var(--color-navy);
  font-size: var(--font-size-text-l);
  vertical-align: middle;
}
.c-table02 th:not(:last-child) {
  border-right: 1px solid var(--color-border-gray);
}
.c-table02 th.-number {
  width: 33.3333333%;
}
.c-table02 th.-beginner {
  width: 33.3333333%;
  background: var(--color-brown);
}
.c-table02 th.-intermediate {
  width: 33.3333333%;
  background: var(--color-green);
}
.c-table02 td {
  padding: 1.25rem 1.8rem;
  font-size: 1.8rem;
  border: 1px solid var(--color-border-gray);
  background: var(--color-bg-gray);
  line-height: 1.5;
  vertical-align: middle;
}
.c-table02 td:first-child {
  font-weight: 400;
  border-right: 1px solid var(--color-border-gray);
  background: var(--color-bg-gray);
}
.c-table02 td:not(:first-child), .c-table02 td:only-child {
  font-weight: 700;
  color: var(--color-red, #D62929);
  background: var(--color-text-white);
}
.c-table02 td span {
  font-size: var(--font-size-text);
}

@media screen and (max-width: 768px) {
  .c-req.-mt0 {
    margin-top: var(--border-radius-border-radius-box);
  }
  .c-req li {
    font-size: 1.3rem;
  }
  .c-req.-ver02 {
    margin-top: 1rem;
  }
  .c-table_item {
    display: block;
    padding: 1.6rem;
  }
  .c-table_dt {
    column-gap: 2rem;
    font-size: 1.8rem;
  }
  .c-table_span02 {
    margin-top: -0.5rem;
    font-size: 1.8rem;
  }
  .c-table_dd {
    margin-top: 1rem;
  }
  .c-table_dd .c-textL {
    letter-spacing: 0;
  }
  .c-table02 {
    margin-top: 2.2rem;
  }
  .c-table02 th {
    padding: 1.5rem 0.8rem;
    font-size: 1.6rem;
  }
  .c-table02 td {
    padding: 1.1rem 0.8rem;
    font-size: 1.6rem;
  }
  .c-table02 td span {
    font-size: 1.5rem;
  }
  .c-table02.-mtSmall {
    margin-top: 1.6rem;
  }
}
.c-list > li {
  position: relative;
  padding-left: 1em;
  font-size: var(--font-size-text);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08rem;
}
.c-list > li::before {
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.c-list.-textS > li {
  font-size: 1.4rem;
}

.c-dlist {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.2rem;
}
.c-dlist_item {
  display: grid;
  grid-template-columns: 8.2rem 1fr;
  align-items: center;
  column-gap: 1.4rem;
  width: 100%;
}
.c-dlist_dt span {
  display: block;
  padding: 0.4rem 0.8rem;
  color: var(--color-text-white);
  background: var(--color-brown);
  font-size: 1.6rem;
  font-weight: 500;
  font-style: normal;
  font-family: var(--font-sans02);
  line-height: 1.5;
  text-align: center;
}
.c-dlist_dd {
  font-size: 1.6rem;
  font-weight: 500;
}
.c-dlist.-green .c-dlist_dt span {
  background: var(--color-green);
}
.c-dlist.-navy .c-dlist_dt span {
  background: var(--color-navy);
}

@media screen and (max-width: 768px) {
  .c-list > li {
    line-height: 1.9;
    letter-spacing: 0.075rem;
  }
  .c-dlist {
    row-gap: 0.8rem;
  }
  .c-dlist_item {
    align-items: start;
    grid-template-columns: 7.8rem 1fr;
    column-gap: 1.5rem;
  }
  .c-dlist_dt span {
    padding: 0.35rem 0.8rem;
    font-size: 1.5rem;
  }
  .c-dlist_dd {
    padding-top: 0;
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.c-linkBox {
  margin-top: 1.8rem;
}
.c-linkBox_item + .c-linkBox_item {
  margin-top: 1.2rem;
}
.c-linkBox_link {
  color: var(--color-text-link, );
  font-size: var(--font-size-text);
  line-height: 1.8;
  text-decoration: underline;
}
.c-linkBox_link:focus-visible {
  text-decoration: none;
}
.c-linkBox_link.-blank::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.2rem;
  margin-left: 1rem;
  width: 1.3rem;
  height: 1.3rem;
  background: url("../images/ico_blank.svg") no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .c-linkBox {
    margin-top: 1.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-linkBox_link:hover {
    text-decoration: none;
  }
}
.c-figure {
  margin-top: 2rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-figure {
    margin-top: 2rem;
  }
  .c-figure figcaption {
    margin-bottom: 1rem;
    letter-spacing: 0.08rem;
  }
  .c-figure.-spLeft {
    margin-left: -3rem;
    width: calc(100% + 3rem);
  }
}
/* -----------------------------------------------
  animation
----------------------------------------------- */
.c-fadeIn {
  opacity: 0;
}
.c-fadeIn.-animate {
  animation: fadeInTop 1s forwards;
}

.c-fadeInTop {
  opacity: 0;
}
.c-fadeInTop.-animate {
  animation: fadeInTop 1s forwards;
}

.c-fadeInLeft {
  opacity: 0;
}
.c-fadeInLeft.-animate {
  animation: fadeInLeft 1s forwards;
}

@keyframes fadeIn {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    transform: translateY(5rem);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-5rem);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/*****************************************************
  Utility
*****************************************************/
.u-sp,
.u-tab,
.u-tabSp {
  display: none !important;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .u-pc {
    display: none !important;
  }
  .u-tab {
    display: inherit !important;
  }
}
@media screen and (max-width: 1200px) {
  .u-xl {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-tabSp {
    display: inherit !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
  .u-pcTab {
    display: none !important;
  }
  .u-sp {
    display: inherit !important;
  }
}
/* =================================================
  Project
================================================= */
/* -----------------------------------------------
  .intro
----------------------------------------------- */
.intro {
  padding: 8rem 0;
}
.intro_inner {
  width: 100%;
  width: min(100%, 123rem);
  margin-inline: auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .intro_inner {
    max-width: 100%;
  }
}
.intro_lead {
  color: var(--color-text-black);
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.3;
}

@media screen and (max-width: 768px) {
  .intro {
    padding: 4.8rem 0;
  }
  .intro_inner {
    padding: 0 1.6rem;
  }
  .intro_lead {
    font-size: 1.6rem;
    line-height: 2;
    text-align: left;
  }
}
/* -----------------------------------------------
  .learning
----------------------------------------------- */
.learning {
  padding: 0 var(--margin-learning-side);
}
.learning_item {
  position: relative;
  padding: var(--margin-margin-section) 0;
  background: var(--color-bg-brown);
}
.learning_item + .learning_item {
  margin-top: 6rem;
}
.learning_item::before, .learning_item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -6rem;
  width: 41rem;
  height: 87rem;
  background: url("../images/obj_01.webp") no-repeat center top/cover;
}
.learning_item::after {
  top: auto;
  right: auto;
  bottom: 0;
  left: -6rem;
  width: 41rem;
  height: 66.5rem;
  background: url("../images/obj_02.webp") no-repeat center top/cover;
}
.learning_item.-green {
  background: var(--color-bg-green);
}
.learning_item.-green::before {
  top: 0;
  right: auto;
  left: -6rem;
  background: url("../images/obj_03.webp") no-repeat center top/cover;
}
.learning_item.-green::after {
  top: auto;
  left: auto;
  bottom: 0;
  right: -6rem;
  background: url("../images/obj_04.webp") no-repeat center top/cover;
}
.learning_item.-navy {
  background: var(--color-bg-yellow);
}
.learning_item.-navy::before {
  background: url("../images/obj_05.webp") no-repeat center top/cover;
}
.learning_item.-navy.-before::before {
  background: url("../images/obj_07.webp") no-repeat center top/contain;
}
.learning_item.-navy::after {
  background: url("../images/obj_06.webp") no-repeat center top/cover;
}
.learning_item.-navy.-before::after {
  display: none;
}
.learning_item_img {
  margin: 0 auto;
  width: 796px;
  max-width: 100%;
}
.learning_item_inner {
  position: relative;
  z-index: 2;
  width: 100%;
  width: min(100%, 123rem);
  margin-inline: auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .learning_item_inner {
    max-width: 100%;
  }
}
.learning_image {
  display: grid;
  grid-template-columns: minmax(0, 796fr) minmax(0, 384fr);
  grid-template-rows: 1fr;
  gap: 1.0416666667vw;
  box-sizing: border-box;
}
.learning_image_pic01, .learning_image_pic02, .learning_image_pic03 {
  width: 100%;
  overflow: hidden;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
}
.learning_image_pic01 {
  grid-column: 1/2;
  grid-row: 1/span 2;
}
.learning_image_pic02 {
  grid-column: 2/3;
  grid-row: 1/2;
  aspect-ratio: 384/273;
}
.learning_image_pic03 {
  grid-column: 2/3;
  grid-row: 2/3;
  aspect-ratio: 384/273;
}
.learning_image img {
  display: block;
  width: 100%;
  height: 100%;
}
.learning_col2 {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 6rem;
}
.learning_col2_block {
  width: 100%;
}
.learning_col2_block + .learning_col2_block {
  margin-top: var(--margin-margin-contents);
}
.learning_reservation {
  width: 100%;
  max-width: 120rem;
  margin-top: 4rem;
  border: 2px solid var(--color-navy);
  background: var(--color-text-white);
}
.learning_reservation_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  padding: 3rem 3.2rem;
  width: 100%;
  box-sizing: border-box;
}
.learning_reservation_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.8rem;
  width: 100%;
  font-size: 1.8rem;
}
.learning_reservation_list dt {
  display: flex;
  padding: 0.9rem 1.8rem;
  justify-content: center;
  align-items: center;
  color: var(--color-text-white);
  font-weight: 700;
  background: var(--color-navy);
}
.learning_reservation_list dd {
  color: var(--color-text-black);
  line-height: 1.8;
}
.learning_reservation_list dd span {
  font-weight: 700;
}
.learning_preview {
  width: 100%;
  padding: 6.4rem 2rem 6.3rem;
  margin-top: 4rem;
  background-color: var(--color-bg-gray);
  border: 1px solid var(--color-border-gray);
  box-sizing: border-box;
}
.learning_preview p {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .learning_item + .learning_item {
    margin-top: 2rem;
  }
  .learning_item_img {
    margin: 0;
  }
  .learning_item_img + .learning_item_img {
    margin-top: 0.8rem;
  }
  .learning_item::before {
    top: 0;
    right: 0;
    width: 11rem;
    height: 26.5rem;
    background: url("../images/obj_01_sp.webp") no-repeat center top/cover;
  }
  .learning_item::after {
    top: auto;
    right: auto;
    bottom: 0;
    left: -1rem;
    width: 11rem;
    height: 20.3rem;
    background: url("../images/obj_02.webp") no-repeat center top/cover;
  }
  .learning_item.-green::before {
    top: 0;
    left: -0.3rem;
    width: 11rem;
    height: 26.5rem;
    background: url("../images/obj_03_sp.webp") no-repeat center top/contain;
  }
  .learning_item.-green::after {
    bottom: 0;
    right: 0;
    width: 11rem;
    height: 20.3rem;
    background: url("../images/obj_04_sp.webp") no-repeat center top/cover;
  }
  .learning_item.-navy::before {
    top: 0;
    right: -0.1rem;
    width: 11rem;
    height: 26.5rem;
    background: url("../images/obj_05_sp.webp") no-repeat center top/contain;
  }
  .learning_item.-navy::after {
    bottom: 0;
    left: 0;
    width: 11rem;
    height: 20.3rem;
    background: url("../images/obj_06_sp.webp") no-repeat center top/cover;
  }
  .learning_item_img {
    width: 100%;
  }
  .learning_item_inner {
    position: relative;
    z-index: 2;
    width: 100%;
    width: min(100%, 123rem);
    margin-inline: auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
    padding: 0 1.6rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .learning_item_inner {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .learning_image {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 0.8rem;
  }
  .learning_image_pic01 {
    grid-column: 1;
    grid-row: 1;
  }
  .learning_image_pic02 {
    grid-column: 1;
    grid-row: 2;
  }
  .learning_image_pic03 {
    grid-column: 1;
    grid-row: 3;
  }
  .learning_col2 {
    margin-top: 3.8rem;
    display: block;
  }
  .learning_col2_item + .learning_col2_item {
    margin-top: var(--margin-margin-contents);
  }
  .learning_reservation_inner {
    padding: 2rem 1.6rem;
    gap: 1.7rem;
  }
  .learning_reservation_list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    font-size: 1.6rem;
  }
  .learning_reservation_list dt {
    padding: 0.8rem 1.6rem;
  }
  .learning_preview {
    padding: 3rem 5.5rem;
    margin-top: 2.8rem;
  }
  .learning_preview p {
    font-size: 1.8rem;
  }
}
/* -----------------------------------------------
  .customize
----------------------------------------------- */
.customize {
  margin-top: 6rem;
  padding: var(--margin-margin-section) 0;
  background: var(--color-navy) url("../images/bg_custom.webp") no-repeat bottom center/contain;
}
.customize_inner {
  width: 100%;
  width: min(100%, 123rem);
  margin-inline: auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .customize_inner {
    max-width: 100%;
  }
}
.customize_box {
  margin-top: 6rem;
  background: var(--color-bg-yellow);
}
.customize_box_inner {
  padding: 4rem;
}
.customize_box_title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
.customize_box_recommend {
  position: absolute;
  top: 8.4rem;
  padding: 0.4rem 2.8rem;
  color: var(--color-text-white);
  background: var(--color-red);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  border-radius: 4px 4px 0px 0px;
  z-index: 1;
}
.customize_box_list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}
.customize_box_list::after {
  position: absolute;
  bottom: 0;
  left: 0.4rem;
  content: "";
  background: url(../images/img_parts_03.png) no-repeat top/cover;
  width: 100%;
  max-width: 112rem;
  height: auto;
  aspect-ratio: 1120/79;
  transform: translateY(100%);
}
.customize_box_list_item {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 1.6rem;
  padding: 2.4rem 2.8rem 2.8rem;
  background: var(--color-text-white);
}
.customize_box_list_item:nth-of-type(2) {
  position: relative;
}
.customize_box_list_item:nth-of-type(2)::before {
  position: absolute;
  top: 0;
  left: -2rem;
  content: "";
  background: url(../images/img_parts_01.png);
  background-size: cover;
  width: 2rem;
  height: 100%;
}
.customize_box_list_item:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  right: -2rem;
  content: "";
  background: url(../images/img_parts_02.png);
  background-size: cover;
  width: 2rem;
  height: 100%;
}
.customize_box_list_head {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
.customize_box_list_head span {
  color: var(--color-navy);
}
.customize_box_list_text {
  position: absolute;
  bottom: -5.9rem;
  left: 0;
  width: 100%;
  padding: 0.8rem 2.25rem;
  color: var(--color-text-white);
  background: var(--color-navy);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  border-radius: 9999px;
  z-index: 1;
  box-sizing: border-box;
}
.customize_box_list_text::before {
  position: absolute;
  bottom: calc(100% - 1px);
  left: 50%;
  content: "";
  width: 2.8rem;
  height: 2.4248rem;
  background: var(--color-navy);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: translateX(-50%);
}
.customize_textBlock {
  width: 100%;
  max-width: 88rem;
  margin: 8.7rem auto 0;
  padding: 2.6rem 3.6rem;
  background: var(--color-text-white);
  border: 2px solid var(--Navy, #003D73);
  box-sizing: border-box;
}
.customize_textBlock_text {
  color: var(--color-navy);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .customize {
    margin-top: 2rem;
    background: var(--color-navy) url("../images/bg_custom_sp.webp") bottom center/contain no-repeat;
  }
  .customize_inner {
    padding: 0 1.6rem;
  }
  .customize_box {
    margin-top: 4rem;
  }
  .customize_box_inner {
    padding: 2.8rem 1.6rem 1.6rem;
  }
  .customize_box_title {
    font-size: 2rem;
  }
  .customize_box_recommend {
    top: 5.8rem;
    padding: 0.4rem 0.8rem;
    font-size: 1.5rem;
  }
  .customize_box_list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 3rem;
  }
  .customize_box_list::after {
    bottom: 0;
    left: 0;
    background: url(../images/img_parts_03_sp.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 2.8rem;
  }
  .customize_box_list_item {
    grid-template-rows: 1fr;
    grid-row: auto;
    gap: 1.2rem;
    padding: 1.6rem;
  }
  .customize_box_list_item:nth-of-type(2) {
    margin-top: 6.5rem;
  }
  .customize_box_list_item:nth-of-type(3) {
    margin-top: 1.6rem;
  }
  .customize_box_list_item:nth-of-type(2)::before {
    top: -6.5rem;
    left: 0;
    background: url(../images/img_parts_01_sp.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 6.5rem;
  }
  .customize_box_list_item:nth-of-type(2)::after {
    top: auto;
    bottom: -1.6rem;
    right: 0;
    background: url(../images/img_parts_02_sp.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 1.6rem;
  }
  .customize_box_list_head {
    font-size: 1.6rem;
  }
  .customize_box_list_image {
    width: 100%;
  }
  .customize_box_list_text {
    bottom: -4.9rem;
    padding: 0.7rem 2rem;
    font-size: 1.5rem;
  }
  .customize_box_list_text::before {
    content: "";
    width: 1.6rem;
    height: 1.3856rem;
    background: var(--color-navy);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    transform: translateX(-50%);
  }
  .customize_textBlock {
    margin: 4.4rem auto 0;
    padding: 1.3rem 1.6rem;
  }
  .customize_textBlock_text {
    font-size: 1.8rem;
  }
}
/* -----------------------------------------------
  .adopt
----------------------------------------------- */
.adopt {
  padding: var(--margin-margin-section) 0;
}
.adopt_inner {
  width: 100%;
  width: min(100%, 123rem);
  margin-inline: auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .adopt_inner {
    max-width: 100%;
  }
}
.adopt_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.3rem;
}
.adopt_list_item_image {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .adopt_inner {
    padding: 0 1.6rem;
  }
  .adopt_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* -----------------------------------------------
  .price
----------------------------------------------- */
.price {
  padding: var(--margin-margin-section) 0;
  background: var(--color-bg-yellow) url("../images/bg_price.webp") no-repeat bottom center/contain;
}
.price_inner {
  width: 100%;
  width: min(100%, 123rem);
  margin-inline: auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .price_inner {
    max-width: 100%;
  }
}
.price_col2 + .price_col2 {
  margin-top: 6rem;
}
.price_col2_cont {
  display: grid;
  grid-template-columns: 45% 50%;
  column-gap: 5%;
}
.price_col2_sec + .price_col2_sec {
  margin-top: 3.2rem;
}

@media screen and (max-width: 768px) {
  .price {
    background: var(--color-bg-yellow) url("../images/bg_price_sp.webp") bottom center/contain no-repeat;
  }
  .price_inner {
    padding: 0 1.6rem;
  }
  .price_col2 {
    display: block;
  }
  .price_col2 + .price_col2 {
    margin-top: 4rem;
  }
  .price_col2_cont {
    display: block;
  }
  .price_col2_sec + .price_col2_sec {
    margin-top: 2rem;
  }
}
/* -----------------------------------------------
  .faq
----------------------------------------------- */
.faq {
  padding: 7.3rem 0 6.5rem 0;
}
.faq_inner {
  width: 100%;
  width: min(100%, 123rem);
  margin-inline: auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .faq_inner {
    max-width: 100%;
  }
}
.faq_dl_item {
  border-top: 2px solid var(--color-navy);
}
.faq_dl_dt {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 4rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  border-bottom: solid 1px #DBDBDB;
}
.faq_dl_q {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  background-color: var(--color-navy);
  border: none;
  line-height: 1;
}
.faq_dl_q span {
  color: var(--color-text-white);
  font-size: 2.4rem;
  font-weight: 700;
  font-family: var(--font-sans02);
}
.faq_dl_dd {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 4rem 2.5rem;
  font-size: 1.6rem;
  line-height: 1.8;
}
.faq_dl_a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  background-color: var(--color-text-white);
  color: var(--color-navy);
  border: solid 1px var(--color-navy);
  line-height: 1;
  box-sizing: border-box;
}
.faq_dl_a span {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: var(--font-sans02);
}

@media screen and (max-width: 768px) {
  .faq {
    padding: 6.4rem 0;
  }
  .faq_inner {
    padding: 0 1.6rem;
  }
  .faq_dl_dt {
    gap: 1.6rem;
    padding: 1.6rem 0;
    font-size: 1.8rem;
  }
  .faq_dl_q, .faq_dl_a {
    width: 3.2rem;
    height: 3.2rem;
  }
  .faq_dl_q span, .faq_dl_a span {
    font-size: 1.8rem;
  }
  .faq_dl_dd {
    padding: 0 0 0 3rem;
    gap: 1.6rem;
    padding: 2rem 0 1.6rem;
    font-size: 1.5rem;
  }
}
/* -----------------------------------------------
  .cta
----------------------------------------------- */
.cta_item {
  padding: 10rem 0;
  background: var(--color-navy) url("../images/bg_cta.webp") no-repeat bottom center/contain;
}
.cta_inner {
  width: 100%;
  width: min(100%, 123rem);
  margin-inline: auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cta_inner {
    padding: 0 2.3rem;
    max-width: 100%;
  }
}
.cta_head {
  color: var(--color-text-white);
  font-size: 2.4rem;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
}
.cta_btn {
  margin-top: 4rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cta {
    padding: 0;
  }
  .cta_inner {
    padding: 0 1.6rem;
  }
  .cta_item {
    padding: 6.4rem 0;
    background: var(--color-navy) url("../images/bg_cta_sp.webp") bottom center/contain no-repeat;
  }
  .cta_head {
    font-size: 1.8rem;
  }
  .cta_btn {
    margin-top: 2.8rem;
  }
}
/* -----------------------------------------------
  .ctaFloat
----------------------------------------------- */
.ctaFloat {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1001;
  background: rgba(0, 61, 115, 0.9);
  text-align: center;
  transition: 0.2s opacity, 0.2s visibility;
  visibility: hidden;
  opacity: 0;
}
.ctaFloat_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 2rem 4rem;
}
.ctaFloat.-hide {
  visibility: hidden !important;
  opacity: 0 !important;
}

.-scroll .ctaFloat {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .ctaFloat_inner {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 0.8rem 1.6rem;
  }
}
.mixin_list {
  width: 100%;
  width: min(100%, 100.8rem);
  margin-inline: auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
  width: min(43.4rem, 48.4%);
  width: min(20rem, 16.7vw);
}
@media screen and (max-width: 768px) {
  .mixin_list {
    max-width: 100%;
  }
}/*# sourceMappingURL=style.css.map */