@charset "UTF-8";
:root {
  --black: 0,0,0;
  --main: 0,61,104;
  --sub: 151,0,0;
  --base: 246,246,246;
  --gray: 128,128,128;
  --lightgray: 223,223,223;
  --border: 223,223,223;
  --contents_width: 1120px;
  --body_padding_side: 140px;
  --contents_width_with_padding: 1260px;
  --sidebar_width: 250px;
  --line_height_head: 1.5;
  --line_height_base: 2;
  --letter_spacing_base: 0.06em;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, a, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
  word-break: break-all;
  overflow-x: auto;
}

body {
  margin: 0;
  padding: 0;
  width: auto;
  overflow-x: auto;
}

article, aside, details, figcaption, figure,
main, footer, header, menu, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul:not([class]),
ol:not([class]) {
  padding-left: 1.25em;
}

ul[class],
ol[class] {
  list-style: none;
}

span {
  font-weight: inherit;
}

blockquote, q {
  quotes: none;
}

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

a {
  color: inherit;
}
@media all and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

a[class] {
  text-decoration: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

address {
  font-style: normal;
}

sup {
  vertical-align: text-top;
  font-size: 0.75em;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.75em;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(var(--border));
  margin: 1em 0;
  padding: 0;
}

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

iframe {
  max-width: 100%;
}

/* form
================================================== */
input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}
@media all and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
    font-size: 1.6rem;
  }
}

input[type=text], input[type=email], input[type=tel], textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio], input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

select {
  color: inherit;
}

textarea {
  resize: vertical;
}

button {
  color: inherit;
  font-weight: normal;
  cursor: pointer;
}

/* 02_base
================================================ */
body {
  min-width: 320px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  color: rgb(var(--black));
  font-size: 1.4rem;
  line-height: var(--line_height_base);
  letter-spacing: var(--letter_spacing_base);
}
@media all and (min-width: 768px) {
  body {
    min-width: var(--contents_width_with_padding);
    font-size: 1.6rem;
  }
}

.l-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
}

@media all and (min-width: 768px) {
  .l-container.is-col2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: var(--sidebar_width) 20px auto;
    grid-template-columns: var(--sidebar_width) auto;
    gap: 0 20px;
    width: var(--contents_width);
    margin: 0 auto;
  }
  .l-container.is-col2 .l-contents {
    flex: 1;
  }
  .l-container.is-col2 .l-sidebar {
    order: -1;
    flex-basis: var(--sidebar_width);
  }
}

/* sp <--> tb <--> pc
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}
@media all and (min-width: 768px) {
  .u-media-query {
    font-family: "tb";
  }
}
@media all and (min-width: 1260px) {
  .u-media-query {
    font-family: "pc";
  }
}

@media all and (max-width: 1259px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-tb {
    display: none !important;
  }
}
@media all and (min-width: 1260px) {
  .u-view-tb {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}

@media all and (min-width: 1260px) {
  .u-view-under-tb {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-upper-tb {
    display: none !important;
  }
}

/* overflow
-------------------------------------- */
.u-overflow-wrap {
  overflow: auto;
}
.u-overflow-wrap .u-overflow-sec {
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .u-overflow-wrap .u-overflow-sec {
    min-width: var(--contents_width_with_padding);
  }
}

/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}

/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}
@media all and (min-width: 768px) {
  a.u-alpha {
    transition: all 0.3s ease;
  }
  a.u-alpha:hover {
    opacity: 0.7;
  }
}

a.u-zoom {
  display: block;
  text-decoration: none;
}
a.u-zoom .u-zoom__img {
  display: block;
}
a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  a.u-zoom .u-zoom__img {
    transition: all 0.3s ease;
  }
  a.u-zoom:hover .u-zoom__img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
}
@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width);
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

/* font
-------------------------------------- */
.u-font-en {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/*  .c-bg-pattern01
================================================== */
.c-bg-pattern01 {
  background: url(../img/common/bg_pattern01_sp.png) no-repeat center/cover;
}
@media all and (min-width: 768px) {
  .c-bg-pattern01 {
    background-image: url(../img/common/bg_pattern01_pc.png);
  }
}

/*  .c-btn01
================================================== */
.c-btn01 {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  margin: 15px auto 0;
  text-align: center;
}
.c-btn01-list {
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: -20px;
}
.c-btn01-list .c-btn01 {
  margin: 0 auto 20px;
}
.c-btn01__link {
  transition: all 0.3s ease;
  background: #fff;
  box-sizing: border-box;
  color: rgb(var(--main));
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  overflow: hidden;
  padding: 10px 20px;
  position: relative;
  width: 100%;
  z-index: 1;
}
.c-btn01__link::before {
  transition: all 0.6s ease;
  content: "";
  background: rgb(var(--main));
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10%;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleX(0) skewX(-25deg);
  transform: scaleX(0) skewX(-25deg);
  width: 120%;
  z-index: -1;
}
.c-btn01__link[target] .c-btn01__txt::after {
  display: inline-block;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="$width" height="$height" viewBox="0 0 10 10"><path d="M0 10V1.51h.94v7.55H8.5V10H0Zm2.26-2.26V0H10v7.74H2.26Zm.94-.95h5.85V.94H3.21v5.85Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="$width" height="$height" viewBox="0 0 10 10"><path d="M0 10V1.51h.94v7.55H8.5V10H0Zm2.26-2.26V0H10v7.74H2.26Zm.94-.95h5.85V.94H3.21v5.85Z" fill="currentColor"/></svg>');
  content: "";
  transition: all 0.3s ease;
  margin: -2px 0 0 8px;
}
.c-btn01__txt {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  position: relative;
  z-index: 1;
}
@media all and (min-width: 768px) {
  .c-btn01__link {
    min-height: 100px;
  }
  .c-btn01__link:hover {
    color: #fff;
  }
  .c-btn01__link:hover::before {
    -webkit-transform: scaleX(1) skewX(-25deg);
    transform: scaleX(1) skewX(-25deg);
  }
  .c-btn01__txt {
    font-size: 1.8rem;
  }
}

.c-btn01.is-bg-none .c-btn01__link {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.c-btn01.is-bg-none .c-btn01__link::before {
  background: #fff;
}
.c-btn01.is-bg-none .c-btn01__link[target] .c-btn01__txt::after {
  display: inline-block;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  color: #fff;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="$width" height="$height" viewBox="0 0 10 10"><path d="M0 10V1.51h.94v7.55H8.5V10H0Zm2.26-2.26V0H10v7.74H2.26Zm.94-.95h5.85V.94H3.21v5.85Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="$width" height="$height" viewBox="0 0 10 10"><path d="M0 10V1.51h.94v7.55H8.5V10H0Zm2.26-2.26V0H10v7.74H2.26Zm.94-.95h5.85V.94H3.21v5.85Z" fill="currentColor"/></svg>');
  content: "";
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .c-btn01.is-bg-none .c-btn01__link:hover {
    color: rgb(var(--main));
  }
  .c-btn01.is-bg-none .c-btn01__link:hover[target] .c-btn01__txt::after {
    display: inline-block;
    width: 10px;
    height: 10px;
    vertical-align: middle;
    color: rgb(var(--main));
    background: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="$width" height="$height" viewBox="0 0 10 10"><path d="M0 10V1.51h.94v7.55H8.5V10H0Zm2.26-2.26V0H10v7.74H2.26Zm.94-.95h5.85V.94H3.21v5.85Z" fill="currentColor"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="$width" height="$height" viewBox="0 0 10 10"><path d="M0 10V1.51h.94v7.55H8.5V10H0Zm2.26-2.26V0H10v7.74H2.26Zm.94-.95h5.85V.94H3.21v5.85Z" fill="currentColor"/></svg>');
    content: "";
    transition: all 0.3s ease;
  }
}

.c-btn01.is-red .c-btn01__link {
  background: rgb(var(--main));
  border: 1px solid rgb(var(--main));
  color: #fff;
}
.c-btn01.is-red .c-btn01__link::before {
  background: #fff;
}
@media all and (min-width: 768px) {
  .c-btn01.is-red .c-btn01__link:hover {
    color: rgb(var(--main));
  }
}

.c-btn01.is-small .c-btn01__link {
  min-height: 70px;
}
.c-btn01.is-small .c-btn01__txt {
  font-size: 1.4rem;
}
@media all and (min-width: 768px) {
  .c-btn01.is-small .c-btn01__link {
    min-height: 80px;
  }
  .c-btn01.is-small .c-btn01__txt {
    font-size: 1.6rem;
  }
}

/*  .c-card01
================================================== */
.c-card01 {
  box-sizing: border-box;
  background: #fff;
  padding: 14px 14px 20px;
}
.c-card01-header {
  border-bottom: 1px solid rgb(var(--border));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 6px;
  padding-bottom: 10px;
}
.c-card01-header__ico {
  margin-right: 5px;
  width: 50px;
}
.c-card01-header__area-txt {
  flex: 1;
}
.c-card01-header__main {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  margin-bottom: 4px;
}
.c-card01-header__txt {
  font-size: 1.1rem;
  line-height: var(--line_height_head);
  letter-spacing: var(--letter_spacing_base);
}
@media all and (min-width: 768px) {
  .c-card01 {
    padding: 36px;
  }
  .c-card01-header {
    margin-bottom: 6px;
    padding-bottom: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 15px;
    align-items: center;
  }
  .c-card01-header__ico {
    margin: 0 18px 0 0;
    width: 65px;
    height: auto;
  }
  .c-card01-header__main {
    font-size: 1.8rem;
    margin-bottom: 4px;
  }
  .c-card01-header__txt {
    font-size: 1.4rem;
  }
}

.c-card01-list {
  margin-bottom: -10px;
}
.c-card01-list .c-card01 {
  margin-bottom: 10px;
}
@media all and (min-width: 768px) {
  .c-card01-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 -20px -70px;
  }
  .c-card01-list .c-card01 {
    margin: 0 20px 70px;
    width: calc(50% - 40px);
  }
  .c-card01-list .c-card01:nth-child(2n) {
    margin-top: 86px;
  }
}

/* .c-color-black
================================================== */
.c-color-black {
  color: rgb(var(--black));
}

/* .c-color-blue
================================================== */
.c-color-main {
  color: rgb(var(--main));
}

/*  .c-faq01
================================================== */
.c-faq01 {
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.c-faq01 + .c-faq01 {
  margin-top: 8px;
}
.c-faq01__ico {
  color: rgb(var(--main));
  font-size: 2.4rem;
  font-weight: 700;
  position: absolute;
  top: 14px;
  left: 15px;
  text-align: center;
}
.c-faq01__head {
  box-sizing: border-box;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 700;
  line-height: var(--line_height_head);
  min-height: 62px;
  position: relative;
  padding: 15px 15px 15px 50px;
}
.c-faq01__head[class*=toggle] {
  padding-right: 32px;
  cursor: pointer;
}
.c-faq01__head[class*=toggle]::before, .c-faq01__head[class*=toggle]::after {
  content: "";
  transition: all 0.3s ease;
  background: rgb(var(--gray));
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  height: 1px;
  width: 13px;
}
.c-faq01__head[class*=toggle]::before {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.c-faq01__head[class*=toggle].is-active::before {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.c-faq01__txt .c-faq01__ico {
  color: rgb(var(--gray));
  top: 8px;
}
.c-faq01__txt-in {
  box-sizing: border-box;
  background: #fff4f5;
  display: flex;
  align-items: center;
  min-height: 66px;
  position: relative;
  padding: 10px 30px 14px 50px;
}
@media all and (min-width: 768px) {
  .c-faq01:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  .c-faq01 + .c-faq01 {
    margin-top: 10px;
  }
  .c-faq01__ico {
    font-size: 3.7rem;
    left: 50px;
  }
  .c-faq01__head {
    font-size: 1.8rem;
    min-height: 82px;
    padding: 15px 15px 15px 112px;
  }
  .c-faq01__head[class*=toggle] {
    padding-right: 70px;
  }
  .c-faq01__head[class*=toggle]::before, .c-faq01__head[class*=toggle]::after {
    right: 40px;
    width: 24px;
  }
  .c-faq01__txt .c-faq01__ico {
    top: 5px;
  }
  .c-faq01__txt-in {
    min-height: 82px;
    padding: 24px 24px 24px 114px;
  }
}

/*  .c-flow01
================================================== */
.c-flow01 {
  margin: 0 auto;
  max-width: 800px;
}
.c-flow01__item {
  display: flex;
  flex-wrap: wrap;
}
.c-flow01__item + .c-flow01__item {
  margin-top: 8px;
}
.c-flow01__item:not(:last-child) .c-flow01__label::after {
  content: "";
  border-left: 1px solid rgb(var(--gray));
  position: absolute;
  top: 40px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.c-flow01__item:not(:last-child) .c-flow01__area-txt {
  margin-bottom: 12px;
}
.c-flow01__label {
  color: rgb(var(--main));
  font-size: 1rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  margin: 0 15px 0 5px;
  position: relative;
  text-align: center;
}
.c-flow01__label-num {
  font-size: 1.4rem;
}
.c-flow01__area-txt {
  flex: 1;
}
.c-flow01__head {
  font-weight: 700;
  line-height: var(--line_height_head);
}
.c-flow01__txt {
  line-height: var(--line_height_head);
}
.c-flow01__memo {
  background: #ffeeee;
  color: rgb(var(--main));
  font-weight: 700;
  margin-top: 8px;
  padding: 14px 28px;
}
.c-flow01__memo-ico {
  display: inline-block;
  margin-right: 18px;
  width: 10px;
}
@media all and (min-width: 768px) {
  .c-flow01__item + .c-flow01__item {
    margin-top: 20px;
  }
  .c-flow01__item:not(:last-child) .c-flow01__area-txt {
    margin-bottom: 46px;
  }
  .c-flow01__label {
    font-size: 1.6rem;
    margin: 0 76px 0 0;
  }
  .c-flow01__label-num {
    font-size: 1.6rem;
    margin-left: 0.2em;
  }
  .c-flow01__head {
    margin-bottom: 10px;
  }
  .c-flow01__memo {
    margin-top: 28px;
  }
  .c-flow01__memo-ico {
    width: 11px;
  }
}

/* .c-form
================================================== */
input.c-form-parts, select.c-form-parts, textarea.c-form-parts, button.c-form-parts {
  background: rgb(var(--base));
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 48px;
  padding: 10px 20px;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  font-family: inherit;
}
input.c-form-parts::-webkit-input-placeholder, select.c-form-parts::-webkit-input-placeholder, textarea.c-form-parts::-webkit-input-placeholder, button.c-form-parts::-webkit-input-placeholder {
  color: #bebebe;
}
input.c-form-parts::-moz-placeholder, select.c-form-parts::-moz-placeholder, textarea.c-form-parts::-moz-placeholder, button.c-form-parts::-moz-placeholder {
  color: #bebebe;
}
input.c-form-parts:-ms-input-placeholder, select.c-form-parts:-ms-input-placeholder, textarea.c-form-parts:-ms-input-placeholder, button.c-form-parts:-ms-input-placeholder {
  color: #bebebe;
}
input.c-form-parts::-ms-input-placeholder, select.c-form-parts::-ms-input-placeholder, textarea.c-form-parts::-ms-input-placeholder, button.c-form-parts::-ms-input-placeholder {
  color: #bebebe;
}
input.c-form-parts::placeholder, select.c-form-parts::placeholder, textarea.c-form-parts::placeholder, button.c-form-parts::placeholder {
  color: #bebebe;
}
input.c-form-parts:focus:not(:focus-visible), select.c-form-parts:focus:not(:focus-visible), textarea.c-form-parts:focus:not(:focus-visible), button.c-form-parts:focus:not(:focus-visible) {
  outline: none;
}
input.c-form-parts:focus-visible, select.c-form-parts:focus-visible, textarea.c-form-parts:focus-visible, button.c-form-parts:focus-visible {
  box-shadow: 0 0 0 2px rgba(var(--gray), 0.3);
}
@media all and (min-width: 768px) {
  input.c-form-parts, select.c-form-parts, textarea.c-form-parts, button.c-form-parts {
    height: 55px;
  }
  input.c-form-parts[name*=tel], select.c-form-parts[name*=tel], textarea.c-form-parts[name*=tel], button.c-form-parts[name*=tel] {
    width: 320px;
  }
}

textarea.c-form-parts {
  height: 200px;
  resize: vertical;
}

select.c-form-parts {
  width: 300px;
  padding-right: 24px;
  background: no-repeat right 15px top 50%/8px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAAzUlEQVQokZ2RsQ3CMBBFfxxaS9RXMQIlJSV0pKTMCIyQDWACYAM2wBvACFRXW3IDHTrJRlZiRyZXnHLWfz+n+xURnQEsMK26GYArgPsE3DCzUdJkmGDQSVN+aP+EL/7HqKU556zWeg5gVQBbAHth4g3CSrbA4MTMrzDU4cM599ZafwBsRmABW9GGh6qvIKIHgGXGoGHmW/ygEqJDBjZ9OGngrzsQ5oxTG6TEEtszJfwdMS4fq9xn7ZPZxocr2UDq6GGJrSTeYRHRblQA4Av4tkvSJ5wq3wAAAABJRU5ErkJggg==");
}

.c-form-parts-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
}
.c-form-parts-list .c-form-parts {
  margin-right: 20px;
}
.c-form-parts-list.is-flex-enb {
  justify-content: flex-end;
}

/* .c-form.is-default
================================================== */
.c-form.is-default .c-form__con {
  box-sizing: border-box;
  background: #fff;
  padding: 26px 20px 30px;
}
.c-form.is-default th, .c-form.is-default td {
  padding: 10px 0;
  border-style: solid;
  border-width: 0;
}
.c-form.is-default th {
  font-weight: 700;
  text-align: left;
}
.c-form.is-default td {
  padding-top: 0;
}
@media all and (max-width: 767px) {
  .c-form.is-default table, .c-form.is-default thead, .c-form.is-default tbody, .c-form.is-default tr, .c-form.is-default th, .c-form.is-default td {
    display: block;
  }
  .c-form.is-default th {
    border-bottom: 0;
  }
  .c-form.is-default tr + tr th {
    border-top: 0;
  }
}
@media all and (min-width: 768px) {
  .c-form.is-default .c-form__con {
    padding: 58px 86px 60px;
  }
  .c-form.is-default th, .c-form.is-default td {
    padding: 22px 0;
  }
  .c-form.is-default th {
    font-size: 1.7rem;
    width: 220px;
    vertical-align: top;
  }
  .c-form.is-default td {
    padding-left: 30px;
  }
  .c-form.is-default:not(.is-confirm) th {
    padding-top: 34px;
  }
}

/* .c-form-label
================================================== */
.c-form-label {
  background: #fff;
  border: 1px solid;
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  width: 42px;
  height: 20px;
  margin-left: 10px;
}
.c-form-label.is-required {
  color: rgb(var(--main));
}
@media all and (min-width: 768px) {
  .c-form-label {
    float: right;
    font-size: 1.4rem;
    margin-top: 3px;
    height: 28px;
    width: 48px;
  }
}

/* .c-form-note
================================================== */
.c-form-note {
  display: block;
  font-weight: 400;
  font-size: 1.3rem;
}

td .c-form-note {
  margin-top: 10px;
}

.mw_wp_form_confirm .c-form-note,
.is-confirm .c-form-note {
  display: none;
}

/* .c-form-postcode
================================================== */
.c-form-postcode {
  display: flex;
  flex-wrap: wrap;
}
.c-form-postcode__prefix {
  max-width: 26px;
  flex-basis: 26px;
  padding-top: 5px;
}
.c-form-postcode__input {
  max-width: 100px;
  flex-basis: 100px;
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-postcode .c-form-postcode__prefix,
.is-confirm .c-form-postcode .c-form-postcode__prefix {
  max-width: none;
  flex-basis: 0;
  padding-top: 0;
}
.mw_wp_form_confirm .c-form-postcode .c-form-postcode__input,
.is-confirm .c-form-postcode .c-form-postcode__input {
  max-width: none;
  flex-basis: 0;
}

/* .c-form-item
================================================== */
.c-form-item {
  display: flex;
}
.c-form-item + .c-form-item {
  margin-top: 10px;
}
.c-form-item-list {
  display: flex;
}
.c-form-item-list .c-form-item + .c-form-item {
  margin-top: 0;
  margin-left: 14px;
}
.c-form-item__prefix {
  min-width: 20px;
  margin-right: 10px;
  padding-top: 5px;
}
.c-form-item__suffix {
  min-width: 20px;
  margin-left: 10px;
  padding-top: 5px;
}
.c-form-item__input {
  flex: 1;
}
.c-form-item .c-form-item__input [name*=year] {
  width: 80px;
}
.c-form-item .c-form-item__input [name*=month] {
  width: 64px;
}
.c-form-item .c-form-item__input [name*=day] {
  width: 64px;
}
@media all and (max-width: 374px) {
  .c-form-item .c-form-item__input [name*=year] {
    width: 58px;
  }
  .c-form-item .c-form-item__input [name*=month] {
    width: 50px;
    padding: 5px;
    background-position: right 8px top 50%;
  }
  .c-form-item .c-form-item__input [name*=day] {
    width: 50px;
    padding: 5px;
    background-position: right 8px top 50%;
  }
}
@media all and (min-width: 1260px) {
  .c-form-item {
    display: inline-flex;
  }
  .c-form-item + .c-form-item {
    margin: 0 0 0 20px;
  }
  .c-form-item__input {
    width: 200px;
  }
  .c-form-item-list .c-form-item__input {
    width: auto;
  }
  .c-form-item .c-form-item__input [name*=year] {
    width: 82px;
  }
  .c-form-item .c-form-item__input [name*=month] {
    width: 62px;
  }
  .c-form-item .c-form-item__input [name*=day] {
    width: 62px;
  }
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-item .c-form-item__prefix,
.mw_wp_form_confirm .c-form-item .c-form-item__suffix,
.is-confirm .c-form-item .c-form-item__prefix,
.is-confirm .c-form-item .c-form-item__suffix {
  min-width: 0;
  padding-top: 0;
}
.mw_wp_form_confirm .c-form-item .c-form-item__input,
.is-confirm .c-form-item .c-form-item__input {
  width: auto;
}

/* .c-form-address
================================================== */
.c-form-address {
  margin-top: 15px;
}

/* .c-form-agreement
================================================== */
.c-form-agreement {
  margin-top: 18px;
  text-align: center;
}
.c-form-agreement__txt {
  line-height: var(--line_height_head);
  margin-bottom: 10px;
}
.c-form-agreement .c-checkbox {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media all and (min-width: 768px) {
  .c-form-agreement {
    margin-top: 44px;
  }
  .c-form-agreement__txt {
    line-height: var(--line_height_base);
    margin-bottom: 22px;
  }
}

.mw_wp_form_confirm .c-form-agreement,
.is-confirm .c-form-agreement {
  display: none;
}

/* .c-form-btn
================================================== */
.c-form-area-btn {
  margin-top: 25px;
  margin-bottom: -15px;
}
@media all and (min-width: 768px) {
  .c-form-area-btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 58px -10px -20px;
  }
}

.c-form-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgb(var(--main));
  border: 2px solid rgb(var(--main));
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  height: 60px;
  margin: 0 auto 15px;
  padding: 5px 10px;
  width: 285px;
}
.c-form-btn.is-back {
  background: #fff;
  color: rgb(var(--main));
  width: 160px;
}
@media all and (min-width: 768px) {
  .c-form-btn {
    transition: all 0.3s ease;
    font-size: 1.8rem;
    height: 100px;
    width: 100%;
    margin: 0 10px 20px;
  }
  .c-form-btn:hover {
    background: #fff;
    color: rgb(var(--main));
  }
  .c-form-btn:not(.is-back) {
    flex: 1;
  }
  .c-form-btn.is-back {
    background: #fff;
    border: 2px solid;
    color: rgb(var(--main));
    width: 330px;
  }
  .c-form-btn.is-back:hover {
    background: rgb(var(--main));
    color: #fff;
  }
}

/* .c-form .mwform-radio-field
================================================ */
.c-form .mwform-radio-field,
.c-form .c-radio {
  display: block;
}
.c-form .mwform-radio-field + .mwform-radio-field,
.c-form .mwform-radio-field + .c-radio,
.c-form .c-radio + .mwform-radio-field,
.c-form .c-radio + .c-radio {
  margin-top: 10px;
}
.c-form .mwform-radio-field label,
.c-form .c-radio label {
  display: block;
  cursor: pointer;
}
.c-form .mwform-radio-field input,
.c-form .c-radio input {
  display: none;
}
.c-form .mwform-radio-field .mwform-radio-field-text,
.c-form .mwform-radio-field .c-radio__text,
.c-form .c-radio .mwform-radio-field-text,
.c-form .c-radio .c-radio__text {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  vertical-align: top;
}
.c-form .mwform-radio-field .mwform-radio-field-text::before,
.c-form .mwform-radio-field .c-radio__text::before,
.c-form .c-radio .mwform-radio-field-text::before,
.c-form .c-radio .c-radio__text::before {
  box-sizing: border-box;
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid;
  border-radius: 50%;
}
.c-form .mwform-radio-field input:checked + .mwform-radio-field-text::after,
.c-form .mwform-radio-field input:checked + .c-radio__text::after,
.c-form .c-radio input:checked + .mwform-radio-field-text::after,
.c-form .c-radio input:checked + .c-radio__text::after {
  box-sizing: border-box;
  position: absolute;
  top: 4px;
  left: 1px;
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: rgb(var(--black));
}
@media all and (min-width: 768px) {
  .c-form .mwform-radio-field .mwform-radio-field-text::before,
.c-form .mwform-radio-field .c-radio__text::before,
.c-form .c-radio .mwform-radio-field-text::before,
.c-form .c-radio .c-radio__text::before {
    top: 5px;
  }
  .c-form .mwform-radio-field input:checked + .mwform-radio-field-text::after,
.c-form .mwform-radio-field input:checked + .c-radio__text::after,
.c-form .c-radio input:checked + .mwform-radio-field-text::after,
.c-form .c-radio input:checked + .c-radio__text::after {
    top: 6px;
  }
}

.c-radio-list {
  display: flex;
  flex-wrap: wrap;
}
.c-radio-list .mwform-radio-field,
.c-radio-list .c-radio {
  display: inline-block;
  margin-right: 20px;
}
.c-radio-list .mwform-radio-field + .mwform-radio-field, .c-radio-list .mwform-radio-field + .c-radio,
.c-radio-list .c-radio + .mwform-radio-field,
.c-radio-list .c-radio + .c-radio {
  margin-top: 0;
}

/* .c-form .mwform-checkbox-field
================================================ */
.c-form .mwform-checkbox-field,
.c-form .c-checkbox {
  display: block;
}
.c-form .mwform-checkbox-field + .mwform-checkbox-field,
.c-form .mwform-checkbox-field + .c-checkbox,
.c-form .c-checkbox + .mwform-checkbox-field,
.c-form .c-checkbox + .c-checkbox {
  margin-top: 10px;
}
.c-form .mwform-checkbox-field label,
.c-form .c-checkbox label {
  display: block;
  cursor: pointer;
}
.c-form .mwform-checkbox-field input,
.c-form .c-checkbox input {
  border-width: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
}
.c-form .mwform-checkbox-field .mwform-checkbox-field-text,
.c-form .mwform-checkbox-field .c-checkbox__text,
.c-form .c-checkbox .mwform-checkbox-field-text,
.c-form .c-checkbox .c-checkbox__text {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  vertical-align: top;
}
.c-form .mwform-checkbox-field .mwform-checkbox-field-text::before,
.c-form .mwform-checkbox-field .c-checkbox__text::before,
.c-form .c-checkbox .mwform-checkbox-field-text::before,
.c-form .c-checkbox .c-checkbox__text::before {
  background: #fff;
  box-sizing: border-box;
  position: absolute;
  top: 6px;
  left: 0;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid rgb(var(--main));
}
.c-form .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after,
.c-form .mwform-checkbox-field input:checked + .c-checkbox__text::after,
.c-form .c-checkbox input:checked + .mwform-checkbox-field-text::after,
.c-form .c-checkbox input:checked + .c-checkbox__text::after {
  position: absolute;
  top: 10px;
  left: 3px;
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-color: rgb(var(--main));
  border-style: solid;
  border-width: 2px 2px 0 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media all and (min-width: 768px) {
  .c-form .mwform-checkbox-field .mwform-checkbox-field-text,
.c-form .mwform-checkbox-field .c-checkbox__text,
.c-form .c-checkbox .mwform-checkbox-field-text,
.c-form .c-checkbox .c-checkbox__text {
    font-size: 1.7rem;
    padding-left: 38px;
  }
  .c-form .mwform-checkbox-field .mwform-checkbox-field-text::before,
.c-form .mwform-checkbox-field .c-checkbox__text::before,
.c-form .c-checkbox .mwform-checkbox-field-text::before,
.c-form .c-checkbox .c-checkbox__text::before {
    height: 24px;
    width: 24px;
  }
  .c-form .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after,
.c-form .mwform-checkbox-field input:checked + .c-checkbox__text::after,
.c-form .c-checkbox input:checked + .mwform-checkbox-field-text::after,
.c-form .c-checkbox input:checked + .c-checkbox__text::after {
    top: 11px;
    left: 4px;
    width: 14px;
    height: 7px;
  }
}

.c-checkbox-list {
  display: flex;
  flex-wrap: wrap;
}
.c-checkbox-list .mwform-checkbox-field,
.c-checkbox-list .c-checkbox {
  display: inline-block;
  margin-right: 20px;
}
.c-checkbox-list .mwform-checkbox-field + .mwform-checkbox-field, .c-checkbox-list .mwform-checkbox-field + .c-checkbox,
.c-checkbox-list .c-checkbox + .mwform-checkbox-field,
.c-checkbox-list .c-checkbox + .c-checkbox {
  margin-top: 0;
}

/* .mw_wp_form リセット
================================================ */
.mw_wp_form .c-form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

/* .c-form-thanks
================================================ */
.c-form-thanks__txt {
  margin-bottom: 10px;
}
@media all and (min-width: 768px) {
  .c-form-thanks {
    text-align: center;
  }
}

/* .c-form-msg
================================================ */
.c-form-msg {
  margin: 0 auto;
}
.c-form-msg .msg,
.c-form-msg .error {
  margin: 16px auto;
  line-height: var(--line_height_head);
}
.c-form-msg .error {
  color: rgb(var(--sub));
}

/*  .c-head01
================================================== */
.c-head01 {
  text-align: center;
  margin-bottom: 40px;
}
.c-head01__en {
  font-size: 4rem;
  line-height: var(--line_height_head);
}
.c-head01__main {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: var(--line_height_head);
}
.c-head01__lead {
  font-weight: 700;
  margin: 28px auto 0;
  padding: 6px 14px;
  position: relative;
}
.c-head01__lead::before, .c-head01__lead::after {
  content: "";
  border-color: rgb(var(--border));
  border-style: solid;
  border-width: 3px 0 0 3px;
  box-sizing: border-box;
  height: 20px;
  position: absolute;
  width: 20px;
}
.c-head01__lead::before {
  top: -1px;
  left: -2px;
}
.c-head01__lead::after {
  bottom: -1px;
  right: -2px;
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}
.c-head01__lead.has-no-brackets {
  padding: 0;
}
.c-head01__lead.has-no-brackets::before, .c-head01__lead.has-no-brackets::after {
  content: none;
}
@media all and (min-width: 768px) {
  .c-head01 {
    margin-bottom: 60px;
  }
  .c-head01__en {
    font-size: 7rem;
  }
  .c-head01__main {
    font-size: 2rem;
  }
  .c-head01__lead {
    padding: 16px 60px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .c-head01__lead::before, .c-head01__lead::after {
    content: "";
    border-width: 5px 0 0 5px;
  }
  .c-head01__lead.has-no-brackets-pc {
    padding: 0;
  }
  .c-head01__lead.has-no-brackets-pc::before, .c-head01__lead.has-no-brackets-pc::after {
    content: none;
  }
}

.c-head01.is-white {
  color: #fff;
}
.c-head01.is-white .c-head01__lead::before, .c-head01.is-white .c-head01__lead::after {
  border-color: #fff;
}

@media all and (max-width: 767px) {
  .c-head01.is-left-sp {
    text-align: left;
  }
  .c-head01.is-left-sp .c-head01__lead {
    margin-left: 0;
  }
}

@media all and (min-width: 768px) {
  .c-head01.is-left-pc {
    text-align: left;
  }
  .c-head01.is-left-pc .c-head01__lead {
    margin-left: 0;
  }
}

.c-head01.is-left {
  text-align: left;
}
.c-head01.is-left .c-head01__lead {
  margin-left: 0;
}

.c-head01.is-small .c-head01__en {
  font-size: 3rem;
}
.c-head01.is-small .c-head01__main {
  font-size: 1.4rem;
}
@media all and (min-width: 768px) {
  .c-head01.is-small .c-head01__en {
    font-size: 5.6rem;
  }
  .c-head01.is-small .c-head01__main {
    font-size: 2rem;
  }
}

.c-head01.is-medium {
  margin-bottom: 26px;
}
.c-head01.is-medium .c-head01__en {
  font-size: 3.5rem;
}
.c-head01.is-medium .c-head01__main {
  font-size: 1.5rem;
}
@media all and (min-width: 768px) {
  .c-head01.is-medium .c-head01__en {
    font-size: 7rem;
  }
  .c-head01.is-medium .c-head01__main {
    font-size: 2rem;
  }
}

/*  .c-head02
================================================== */
.c-head02 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  margin-bottom: 14px;
  padding-left: 12px;
  position: relative;
}
.c-head02::before {
  content: "";
  background: linear-gradient(rgb(var(--main)) 0%, rgb(var(--sub)) 100%);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
}
@media all and (min-width: 768px) {
  .c-head02 {
    font-size: 2.4rem;
    margin-bottom: 28px;
    padding-left: 24px;
  }
  .c-head02::before {
    width: 3px;
  }
}

.c-head02.is-small {
  font-size: 1.4rem;
}
@media all and (min-width: 768px) {
  .c-head02.is-small {
    font-size: 2rem;
  }
}

/* .c-ico
================================================== */
.c-ico {
  display: inline-block;
  vertical-align: middle;
}
.c-ico svg {
  transition: all 0.3s ease;
}

/*  .c-link01
================================================== */
.c-link01[class] {
  text-decoration: underline;
}
.c-link01[target]::after {
  display: inline-block;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="$width" height="$height" viewBox="0 0 10 10"><path d="M0 10V1.51h.94v7.55H8.5V10H0Zm2.26-2.26V0H10v7.74H2.26Zm.94-.95h5.85V.94H3.21v5.85Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="$width" height="$height" viewBox="0 0 10 10"><path d="M0 10V1.51h.94v7.55H8.5V10H0Zm2.26-2.26V0H10v7.74H2.26Zm.94-.95h5.85V.94H3.21v5.85Z" fill="currentColor"/></svg>');
  content: "";
  transition: all 0.3s ease;
  margin: -2px 0 0 8px;
}
@media all and (min-width: 768px) {
  .c-link01[class]:hover {
    text-decoration: none;
  }
}

/*  .c-list01
================================================== */
.c-list01__item {
  box-sizing: border-box;
  line-height: var(--line_height_head);
  padding-left: 1em;
  text-indent: -1em;
}
.c-list01__item::before {
  content: "・";
}
.c-list01__item + .c-list01__item {
  margin-top: 5px;
}

/*  .c-list01.is-marker-red
================================================== */
.c-list01.is-marker-red .c-list01__item::before {
  color: rgb(var(--main));
}

/*  .c-note01
================================================== */
.c-note01 {
  color: rgb(var(--gray));
  font-size: 1.2rem;
  line-height: var(--line_height_head);
  padding-left: 1em;
  text-indent: -1em;
}
.c-note01 + .c-note01 {
  margin-top: 6px;
}
@media all and (min-width: 768px) {
  .c-note01 {
    font-size: 1.4rem;
  }
}

/*  .c-set01
================================================== */
.c-set01 + .c-set01 {
  border-top: 2px solid rgb(var(--border));
  margin-top: 20px;
  padding-top: 20px;
}
@media all and (min-width: 768px) {
  .c-set01 + .c-set01 {
    margin-top: 50px;
    padding-top: 50px;
  }
}

@media all and (min-width: 768px) {
  .c-set01.is-flex {
    display: flex;
    flex-wrap: wrap;
  }
  .c-set01.is-flex .c-set01__area-txt {
    flex: 1;
    margin-right: 26px;
  }
  .c-set01.is-flex .c-set01__area-img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

/*  .c-table01
================================================== */
.c-table01 {
  box-sizing: border-box;
}
.c-table01 th, .c-table01 td {
  border-bottom: 2px solid #fff;
  box-sizing: border-box;
  font-size: 1.4rem;
  line-height: var(--line_height_head);
  padding: 8px 12px;
  vertical-align: middle;
}
.c-table01 th:empty, .c-table01 td:empty {
  background: none;
}
.c-table01 th {
  background: rgb(var(--main));
  color: #fff;
  font-weight: 700;
}
.c-table01 th.is-gray01 {
  background: #737373;
}
.c-table01 th.is-gray02 {
  background: gray;
}
.c-table01 th.is-gray03 {
  background: rgb(162, 162, 162);
}
.c-table01 th.is-gray04 {
  background: rgb(199, 199, 199);
}
.c-table01 td {
  background: rgb(var(--base));
}
.c-table01 tbody th, .c-table01 tbody td {
  padding: 7px 12px;
}
.c-table01 tbody th {
  text-align: left;
}
@media all and (min-width: 768px) {
  .c-table01 th, .c-table01 td {
    font-size: 1.6rem;
    padding: 12px 18px;
  }
  .c-table01 tbody th, .c-table01 tbody td {
    padding: 15px 12px;
  }
}

/*  .c-table01.is-block-sp
================================================== */
@media all and (max-width: 767px) {
  .c-table01.is-block-sp table, .c-table01.is-block-sp thead, .c-table01.is-block-sp tbody, .c-table01.is-block-sp tr, .c-table01.is-block-sp th, .c-table01.is-block-sp td {
    display: block;
  }
  .c-table01.is-block-sp th {
    border-bottom: 0;
  }
  .c-table01.is-block-sp tr + tr th {
    border-top: 0;
  }
}

/*  .c-table01.is-scroll
================================================== */
@media all and (max-width: 767px) {
  .c-table01.is-scroll {
    overflow: auto;
    padding-bottom: 16px;
    width: 100%;
  }
}

/*  .c-table02
================================================== */
.c-table02 table {
  table-layout: fixed;
}
.c-table02 th, .c-table02 td {
  box-sizing: border-box;
  border-top: 1px solid rgb(var(--gray));
  border-bottom: 1px solid rgb(var(--gray));
  line-height: var(--line_height_head);
  padding: 16px 0;
  text-align: left;
}
@media all and (max-width: 767px) {
  .c-table02 table, .c-table02 thead, .c-table02 tbody, .c-table02 tr, .c-table02 th, .c-table02 td {
    display: block;
  }
  .c-table02 th {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .c-table02 td {
    border-top: 0;
    padding-top: 3px;
  }
  .c-table02 tr + tr th {
    border-top: 0;
  }
}
@media all and (min-width: 768px) {
  .c-table02 th, .c-table02 td {
    box-sizing: border-box;
    border-top: 1px solid rgb(var(--gray));
    border-bottom: 1px solid rgb(var(--gray));
    line-height: var(--line_height_head);
    padding: 25px 0;
    text-align: left;
  }
  .c-table02 th {
    width: 160px;
  }
  .c-table02 td {
    padding-left: 20px;
  }
}

/* .l-breadcrumb
================================================ */
.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}
.l-breadcrumb-list__item {
  display: inline-block;
  vertical-align: top;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item {
  margin-left: 5px;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item:before {
  content: ">";
  margin-right: 5px;
}
@media all and (max-width: 767px) {
  .l-breadcrumb-list {
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }
  .l-breadcrumb-list::-webkit-scrollbar {
    display: none;
  }
}

/* .l-footer
================================================ */
.l-footer {
  position: relative;
}
.l-footer__cr {
  color: rgb(var(--gray));
  font-size: 1.2rem;
  letter-spacing: var(--letter_spacing_base);
  line-height: var(--line_height_head);
  padding: 20px 25px;
  text-align: center;
}
@media all and (min-width: 768px) {
  .l-footer__cr {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/* .l-footer-info
================================================== */
.l-footer-info {
  box-sizing: border-box;
  border-bottom: 3px solid rgb(var(--main));
  background: url(../img/common/bg_footer01_sp.jpg) no-repeat center/cover rgb(var(--black));
  color: #fff;
  position: relative;
  z-index: 1;
}
.l-footer-info__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
.l-footer-info__logo {
  height: 32px;
  margin: 0 auto 16px;
  width: 100px;
}
.l-footer-info__logo-link {
  display: block;
}
.l-footer-info__logo svg {
  height: 100%;
  width: 100%;
}
.l-footer-info__lead {
  font-size: 1.4rem;
  letter-spacing: var(--letter_spacing_base);
  text-align: center;
  margin-bottom: 10px;
}
.l-footer-info__txt {
  font-size: 1.2rem;
  letter-spacing: var(--letter_spacing_base);
}
.l-footer-info__area-img {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
}
.l-footer-info__img + .l-footer-info__img {
  margin-left: 15px;
}
.l-footer-info__img:nth-child(1) {
  width: 38px;
}
.l-footer-info__img:nth-child(2) {
  margin-bottom: 5px;
  width: 83px;
}
@media all and (min-width: 768px) {
  .l-footer-info {
    background-image: url(../img/common/bg_footer01_pc.jpg);
    border-bottom-width: 5px;
  }
  .l-footer-info__inner {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .l-footer-info__logo {
    height: 58px;
    margin: 0 auto 26px;
    width: 182px;
  }
  .l-footer-info__lead {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .l-footer-info__txt {
    font-size: 1.3rem;
    text-align: center;
  }
  .l-footer-info__area-img {
    margin-top: 46px;
  }
  .l-footer-info__img + .l-footer-info__img {
    margin-left: 30px;
  }
  .l-footer-info__img:nth-child(1) {
    width: 62px;
  }
  .l-footer-info__img:nth-child(2) {
    margin-bottom: 5px;
    width: 136px;
  }
}

/* .l-header
================================================ */
.l-header {
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  max-width: 100vw;
  z-index: 2000;
}
.l-header.is-scroll {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media all and (min-width: 768px) {
  .l-header {
    display: flex;
    flex-wrap: wrap;
    min-width: var(--contents_width_with_padding);
  }
}
@media all and (max-width: 767px) {
  .l-header {
    position: fixed;
    width: 100vw;
    max-width: 100vw;
    right: 0;
  }
}

/* .l-header-info
================================================== */
.l-header-info {
  position: relative;
  z-index: 3;
  height: 50px;
  padding: 0 70px 0 12px;
}
.l-header-info__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.l-header-info__logo {
  width: 120px;
}
@media all and (min-width: 768px) {
  .l-header-info {
    height: 92px;
    padding: 0 20px 0 27px;
  }
  .l-header-info__logo {
    width: 221px;
  }
}
@media all and (max-width: 767px) {
  .l-header-info {
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
  }
  .l-header-info__logo {
    width: 120px;
    margin: 0;
    padding: 0;
    display: block;
  }
  .l-header-info__logo img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

/* .l-nav-btn
================================================== */
.l-nav-btn {
  border: none;
  position: absolute;
  top: 0;
  right: 10px;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.l-nav-btn__line {
  position: absolute;
  left: 15px;
  width: 20px;
  height: 2px;
  content: "";
  background: rgb(var(--main));
  transition: all 0.3s ease;
}
.l-nav-btn__line:nth-child(1) {
  top: 16px;
}
.l-nav-btn__line:nth-child(2) {
  top: 24px;
}
.l-nav-btn__line:nth-child(3) {
  top: 32px;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  top: 24px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(2) {
  opacity: 0;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(3) {
  top: 24px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* .l-nav
================================================ */
.l-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  min-width: 320px;
  padding: 50px 0 0;
  background: #fff;
  box-sizing: border-box;
}
.l-nav__inner {
  box-sizing: border-box;
  height: 100%;
  max-height: calc(100vh - 50px);
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  scrollbar-width: none;
  padding: 70px 48px;
}
.l-nav__inner::-webkit-scrollbar {
  display: none;
}
@media all and (max-width: 767px) {
  .l-nav {
    overflow: auto;
    -webkit-transform: translateX(120%);
    transform: translateX(120%);
    transition: all 0.3s ease;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav.is-open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@media all and (min-width: 768px) {
  .l-nav {
    background: transparent;
    flex: 1;
    height: auto;
    position: static;
    min-width: auto;
    padding: 0;
  }
  .l-nav__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    height: auto;
    padding: 22px 50px 0 0;
  }
}

/* .l-nav-list
================================================== */
.l-nav-list__item {
  border-bottom: 1px solid rgb(var(--border));
  padding: 0 0 15px 34px;
  position: relative;
}
.l-nav-list__item::before {
  content: "";
  background: rgb(var(--main));
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 9px;
  height: 6px;
  width: 6px;
}
.l-nav-list__item + .l-nav-list__item {
  margin-top: 15px;
}
.l-nav-list__item-link {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--line_height_head);
}
@media all and (min-width: 768px) {
  .l-nav-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .l-nav-list__item {
    border: none;
    font-size: 1.5rem;
    margin-left: 28px;
    padding: 0;
  }
  .l-nav-list__item::before {
    content: none;
  }
  .l-nav-list__item + .l-nav-list__item {
    margin-top: 0;
  }
  .l-nav-list__item-link {
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    display: block;
    font-weight: 400;
    padding: 2px 0;
  }
  .l-nav-list__item-link:hover {
    border-bottom-color: rgb(var(--main));
    color: rgb(var(--main));
  }
}
@media all and (min-width: 1460px ) {
  .l-nav-list__item {
    font-size: 1.6rem;
    margin-left: 34px;
  }
}

/* .l-nav-cv
================================================ */
.l-nav-cv {
  margin-top: 40px;
}
.l-nav-cv__btn {
  max-width: 100%;
}
.l-nav-cv__btn + .l-nav-cv__btn {
  margin-top: 8px;
}
.l-nav-cv__btn.is-important .l-nav-cv__btn-link {
  background: rgb(var(--main));
  color: #fff;
}
.l-nav-cv__btn-link {
  box-sizing: border-box;
  border: 1px solid rgb(var(--main));
  background: #fff;
  color: rgb(var(--main));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  letter-spacing: var(--letter_spacing_base);
  height: 48px;
  padding: 10px;
  text-align: center;
  width: 100%;
}
.l-nav-cv__btn-link[target]::before {
  content: "";
  display: block;
  width: 20px;
}
.l-nav-cv__btn-link[target]::after {
  display: inline-block;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="$width" height="$height" viewBox="0 0 10 10"><path d="M0 10V1.51h.94v7.55H8.5V10H0Zm2.26-2.26V0H10v7.74H2.26Zm.94-.95h5.85V.94H3.21v5.85Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="$width" height="$height" viewBox="0 0 10 10"><path d="M0 10V1.51h.94v7.55H8.5V10H0Zm2.26-2.26V0H10v7.74H2.26Zm.94-.95h5.85V.94H3.21v5.85Z" fill="currentColor"/></svg>');
  content: "";
  transition: all 0.3s ease;
  margin: 0 0 0 10px;
}
@media all and (min-width: 768px) {
  .l-nav-cv {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px 0 30px;
  }
  .l-nav-cv__btn {
    margin-right: 5px;
    width: 150px;
  }
  .l-nav-cv__btn:nth-child(2) {
    width: 170px;
  }
  .l-nav-cv__btn + .l-nav-cv__btn {
    margin-top: 0;
  }
  .l-nav-cv__btn.is-important {
    order: 3;
  }
  .l-nav-cv__btn.is-important .l-nav-cv__btn-link:hover {
    background: #fff;
    color: rgb(var(--main));
  }
  .l-nav-cv__btn-link {
    transition: all 0.3s ease;
  }
  .l-nav-cv__btn-link:hover {
    background: rgb(var(--main));
    color: #fff;
  }
  .l-nav-cv__btn-link:hover[target]::after {
    display: inline-block;
    width: 10px;
    height: 10px;
    vertical-align: middle;
    color: #fff;
    background: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="$width" height="$height" viewBox="0 0 10 10"><path d="M0 10V1.51h.94v7.55H8.5V10H0Zm2.26-2.26V0H10v7.74H2.26Zm.94-.95h5.85V.94H3.21v5.85Z" fill="currentColor"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="$width" height="$height" viewBox="0 0 10 10"><path d="M0 10V1.51h.94v7.55H8.5V10H0Zm2.26-2.26V0H10v7.74H2.26Zm.94-.95h5.85V.94H3.21v5.85Z" fill="currentColor"/></svg>');
    content: "";
    transition: all 0.3s ease;
  }
  .l-nav-cv__btn-link[target]::before {
    content: none;
  }
}
@media all and (min-width: 1460px ) {
  .l-nav-cv {
    margin-left: 50px;
  }
  .l-nav-cv__btn {
    width: 180px;
  }
  .l-nav-cv__btn:nth-child(2) {
    width: 180px;
  }
}

/* .l-nav-overlay
================================================ */
.l-nav-overlay {
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1000;
}
@media all and (min-width: 768px) {
  .l-nav-overlay {
    display: none !important;
  }
}

/* .l-ie-attention
================================================ */
.l-ie-attention {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.l-ie-attention__txt {
  font-size: 3rem;
  margin-bottom: 18px;
}
.l-ie-attention__note {
  color: #989898;
}
.l-ie-attention__note .l-ie-attention__note-link {
  display: inline-block;
}
.l-ie-attention__note-link {
  font-size: 1.8rem;
  border-bottom: 1px solid;
  position: relative;
  margin-right: 25px;
  display: inline-block;
}
.l-ie-attention__note-link::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 13px;
  width: 11px;
  height: 11px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%20%3Cg%20id%3D%22link%22%20transform%3D%22translate(0.5%200.5)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_23829%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2023829%22%20width%3D%228%22%20height%3D%228%22%20transform%3D%22translate(3)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4323%22%20data-name%3D%22%E3%83%91%E3%82%B9%204323%22%20d%3D%22M688%2C718.025h-6v-6%22%20transform%3D%22translate(-682%20-707.025)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center/100%;
}

/* .l-main-img HOME
================================================ */
.l-main-img {
  background-color: rgb(205, 227, 247);
  position: relative;
  z-index: 1;
}
.l-main-img::after {
  content: "";
  background: url(../img/home/bg_mv02.png) no-repeat center/cover;
  height: 156px;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 113px;
  z-index: -1;
}
.l-main-img__bgtxt {
  color: #abc7db;
  font-size: 8rem;
  line-height: 1;
  text-align: right;
  opacity: 0.3;
  pointer-events: none;
  position: absolute;
  top: 158px;
  left: -16px;
  white-space: nowrap;
  z-index: -1;
}
.l-main-img__inner {
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  padding: 76px 25px 30px;
}
.l-main-img-copy {
  position: relative;
  z-index: 1;
}
.l-main-img-copy__sub {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: var(--letter_spacing_base);
  line-height: var(--line_height_head);
  margin-bottom: 18px;
}
.l-main-img-copy__main {
  background-size: cover; /* または contain */
  background-position: center;
  background-repeat: no-repeat;
}
.l-main-img-label {
  font-size: 1.2rem;
  margin-top: 8px;
}
.l-main-img-label__in {
  box-sizing: border-box;
  background: #fff;
  border: 1px solid;
  color: rgb(var(--sub));
  display: inline-block;
  font-weight: 700;
  line-height: var(--line_height_head);
  margin: 0 7px;
  padding: 1px 8px;
}
.l-main-img-label__in:first-child {
  margin-left: 0;
}
.l-main-img-label__in:last-child {
  margin-right: 0;
}
.l-main-img__img {
  margin: -46px 0 -28px auto;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  width: 100%;
  max-width: 600px;
}
.l-main-img-logo {
  position: relative;
  max-width: 568px;
}
.l-main-img-logo__imgs {
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  padding: 11px 18px;
}
.l-main-img-logo__note {
  color: rgb(var(--gray));
  font-size: 1.1rem;
  letter-spacing: var(--letter_spacing_base);
  line-height: var(--line_height_head);
  margin-top: 6px;
  padding-left: 1em;
  text-indent: -1em;
}

.l-main-img-catch {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5%;
  margin-left: 0;
}
.l-main-img-catch__item {
  width: 100px;
  aspect-ratio: 1 / 1;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 0 0;
  box-sizing: border-box;
  border-radius: 50%;
  background: rgba(252, 252, 252, 0.25);
  border: 1px solid rgb(var(--border));
  color: #003d68;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  position: relative;
}
.l-main-img-catch__item::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: no-repeat center/contain;
  position: absolute;
  top: 13px;
  right: 0;
  left: 0;
  margin: auto;
}
.l-main-img-catch__item:nth-of-type(1)::before {
  background-image: url("../img/home/ico_mv01.png");
}
.l-main-img-catch__item:nth-of-type(2)::before {
  background-image: url("../img/home/ico_mv02.png");
}
.l-main-img-catch__item:nth-of-type(3)::before {
  background-image: url("../img/home/ico_mv03.png");
}
.l-main-img-catch__item:nth-of-type(4)::before {
  background-image: url("../img/home/ico_mv04.png");
}

@media all and (max-width: 767px) {
.l-main-img-catch {
  margin-top: 5%;
  margin-bottom: 10%;
}
.l-main-img-catch__item {
 font-size: 0.75rem;
}
}@media all and (max-width: 374px) {
  .l-main-img__img {
    margin-left: 0;
  }
}
@media all and (min-width: 768px) {
  .l-main-img {
  background-color: rgb(205, 227, 247);
  }
  .l-main-img::after {
    height: 463px;
    width: 335px;
  }
  .l-main-img__bgtxt {
    font-size: 12.8rem;
    top: 138px;
    left: 0;
  }
  .l-main-img__inner {
    padding: 205px 70px 120px;
  }
  .l-main-img__con {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    height: 100%;
    position: relative;
    max-width: 1420px;
  }
  .l-main-img__area-txt {
    width: 684px;
  }
  .l-main-img-copy__sub {
    font-size: 2.9rem;
    margin-bottom: 34px;
  }
  .l-main-img-copy__main {
    background-size: contain; /* または contain */
    background-position: center;
    background-repeat: no-repeat;
    max-width: 100%;
  }
  .l-main-img-label {
    font-size: 2.9rem;
    margin-top: 8px;
    margin: -70px 0 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .l-main-img-label__in {
    font-size: 2.5rem;
    margin: 0 10px;
    padding: 1px 24px;
  }
  .l-main-img__img {
    margin: 0;
    position: absolute;
    top: 18px;
    right: -90px;
    width: 577px;
    max-width: 80%;
  }
  .l-main-img-logo {
    margin-top: 90px;
  }
  .l-main-img-logo__imgs {
    padding: 18px 36px;
  }
  .l-main-img-logo__note {
    font-size: 1.6rem;
    margin-top: 15px;
  }
  .l-main-img__scroll {
    color: rgb(var(--main));
    font-size: 1.4rem;
    position: absolute;
    bottom: 46px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .l-main-img__scroll::after {
    content: "";
    border-left: 1px solid;
    height: 80px;
    position: absolute;
    top: 34px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .l-main-img-catch__item {
    width: clamp(160px, 9.7vw, 187px);
    height: clamp(160px, 9.7vw, 187px);
    padding: clamp(45px, 3vw, 60px) 0 0;
    font-size: 1.45rem;
    gap: 16px;
  }
  .l-main-img-catch__item::before {
    width: 55px;
    height: 55px;
    top: clamp(20px, 2vw, 38px);
  }
@media all and (min-width: 1301px) and (max-width: 1500px) {
  .l-main-img-catch {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;             /* 親要素の幅を制限（2列でちょうど収まる） */
    margin: 5% auto 10%;          /* 上下マージンと中央寄せ */
    margin-left: 150px;
  }

  .l-main-img-catch__item {
    max-width: 160px;
    aspect-ratio: 1 / 1;          /* 円形を維持 */
  }
}
@media all and (min-width: 768px) and (max-width: 1300px) {
  .l-main-img-catch {
    margin-left: -70px;
  }
}

}
@media all and (min-width: 1460px ) {
  .l-main-img__inner {
    padding: 306px 90px 188px;
  }
  .l-main-img__bgtxt {
    font-size: 19.5rem;
    top: 196px;
  }
  .l-main-img__area-txt {
    width: 863px;
    margin-left: -50px;
  }
  .l-main-img-copy__sub {
    font-size: 3.8rem;
    margin-bottom: 42px;
  }
  .l-main-img-label {
    margin: -76px 0 0 auto;
  }
  .l-main-img-label__in {
    padding: 1px 34px;
  }
  .l-main-img__img {
    top: -65px;
    right: -234px;
    width: 852px;
  }
  .l-main-img-logo {
    margin-top: 130px;
    max-width: 653px;
  }
  .l-main-img-logo__imgs {
    padding: 22px 38px;
  }
}

/* .l-sub-img
================================================ */
.l-sub-img {
  background: #ccc;
  font-size: 1.5rem;
  text-align: center;
}
.l-sub-img__inner {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 120px;
}
@media all and (min-width: 768px) {
  .l-sub-img {
    font-size: 2rem;
  }
}

/* .l-sidebar
================================================== */
.js-c-anime-elem[data-anime=fadein-up] {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-up].is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.js-c-anime-elem[data-anime=fadein-left] {
  opacity: 0;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-left].is-animated {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.js-c-anime-elem[data-anime=fadein-right] {
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-right].is-animated {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.js-c-anime-elem[data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay="1"] {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay="2"] {
  transition-delay: 2s;
}

.js-c-switch-tab {
  cursor: pointer;
}

.js-c-switch-content {
  display: none;
}
.js-c-switch-content.is-active {
  display: block;
}

.js-c-toggle-trigger {
  cursor: pointer;
}

.js-c-toggle-content {
  display: none;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* .error-page404
================================================ */
.error-page404__inner {
  padding-top: 80px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .error-page404__inner {
    padding-top: 230px;
    padding-bottom: 140px;
  }
}


/*	.home-problem
================================================ */
.home-problem {
  position: relative;
  background: rgb(var(--purple-bg));
}
.home-problem::before {
  content: "";
  display: block;
  width: 116px;
  height: 24px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  left: 0;
  margin: auto;
  background: inherit;
}
.home-problem__inner {
  padding-top: 50px;
  padding-bottom: 57px;
}
.home-problem-heading {
  margin-bottom: 50px;
}
.home-problem-list__item {
  position: relative;
}
.home-problem-list__item + .home-problem-list__item {
  margin-top: 30px;
}
.home-problem-list__num {
  color: rgb(var(--blue));
  font-size: 2rem;
  position: absolute;
  top: 5px;
  left: calc(50% - 73px);
}
.home-problem-list__img {
  display: block;
  width: 165px;
  margin: 0 auto 15px;
}
.home-problem-list__title {
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
}
.home-problem-list__txt {
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.1em;
}
@media all and (min-width: 768px) {
  .home-problem::before {
    width: 320px;
    height: 67px;
  }
  .home-problem__inner {
    padding-top: 100px;
    padding-bottom: 120px;
  }
  .home-problem-heading {
    margin-bottom: 60px;
  }
  .home-problem-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .home-problem-list__item {
    width: calc((100% - 70px) / 3);
    margin: 0 10px;
  }
  .home-problem-list__item + .home-problem-list__item {
    margin-top: 0;
  }
  .home-problem-list__item:nth-of-type(n + 4) {
    margin-top: 60px;
  }
  .home-problem-list__num {
    font-size: 2.6rem;
    left: 74px;
  }
  .home-problem-list__img {
    margin-bottom: 20px;
    width: 243px;
  }
  .home-problem-list__title {
    font-size: 1.8rem;
  }
    .home-problem-list__txt {
    font-size: 1.5rem;
  }
}


/*	.home-support
================================================ */
.home-support {
  background: rgb(var(--black)) url("../img/common/bg_lattice02_sp.png") no-repeat center top;
  color: #fff;
}
.home-support__inner {
  padding-top: 78px;
  padding-bottom: 60px;
  background: url("../img/home/ico_support01.png") no-repeat right 47px top 87px/97px;
}
.home-support-heading {
  position: relative;
  margin-bottom: 12px;
  padding-bottom: 17px;
}
.home-support-heading::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
  background: var(--gradi02);
}
.home-support-heading__en {
  margin-bottom: 3px;
  padding-left: 15px;
  background: url("../img/common/ico_circle01.png") no-repeat left center/7px;
  color: #6d6e92;
}
.home-support-heading__main {
  font-size: 1.5rem;
}

.l-main-img-catch_1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-wrap: wrap; 
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 70%;
  margin: 0 auto;
}
.l-main-img-catch__item_1 {
  flex: 1;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}
.l-main-img-catch__item_1 .icon {
  width: auto;
  height: 36px;
  display: block;
  margin: 0 auto 0.5rem;
}


.home-support__lead {
  margin-bottom: 30px;
  font-weight: 700;
  color: #ffffff;
}
.home-support-window {
  position: relative;
  width: 100%;
  max-width: 630px;
  height: 480px; /* 画像高さに合わせて調整 */
  margin: 0 auto;
}
.home-support-window img {
  filter: drop-shadow(5px 5px 5px rgba(var(--black), 0.3));
}
.home-support-window__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home-support-window__img01 {
  position: absolute;
  width: 103px;
  top: 54px;
  right: calc(50% - 83px);
}
.home-support-window__img02 {
  position: absolute;
  width: 157px;
  top: 71px;
  left: calc(50% - 130px);
}
.home-support-window__img03 {
  position: absolute;
  width: 80px;
  top: 120px;
  right: calc(50% - 83px);
}
.home-support-window__img04 {
  position: absolute;
  width: 195px;
  top: 138px;
  left: calc(50% - 130px);
}
.home-support-num {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -7px 34px;
}
.home-support-num__item {
  width: calc(50% - 14px);
  margin: 0 7px;
  text-align: center;
}
.home-support-num__item:nth-of-type(n + 3) {
  margin-top: 18px;
}
.home-support-num__head {
  min-height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 9px;
  padding: 0 25px;
  box-sizing: border-box;
  color: #c7b852;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  line-height: 1.3;
  position: relative;
}
.home-support-num__head::before, .home-support-num__head::after {
  content: "";
  display: block;
  width: 26px;
  height: 70px;
  background: url("../img/common/ico_leaf01.png") no-repeat center/contain;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  pointer-events: none;
}
.home-support-num__head::before {
  left: 0;
}
.home-support-num__head::after {
  right: 0;
  transform: scale(-1, 1);
}
.home-support-num__head-big {
  display: contents;
  font-size: 2.2rem;
}
.home-support-num__txt {
  color: rgb(var(--border));
  font-size: 1.2rem;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .home-support {
    background: #003d68 url("../img/common/bg_lattice02_pc.png") no-repeat center top -335px/max(100%, 1920px);
  }
  .home-support__inner {
    padding-top: 100px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-size: 201px;
    background-position: left calc(50% - 10px) top 180px;
  }
  .home-support__area-txt {
    width: 60%;
  }
  .home-support-heading {
    margin-bottom: 26px;
    padding-bottom: 33px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .home-support-heading::before {
    height: 3px;
  }
  .home-support-heading__en {
    padding-left: 20px;
    background-size: 10px;
    font-size: 2rem;
  }
  .home-support-heading__main {
    font-size: 3rem;
  }
  .home-support__lead {
    margin-bottom: 30px;
    margin-top: -30px;
    font-size: 16px;
    letter-spacing: 0.06em;
  }
  .home-support-window {
    width: 40%;
    margin: 5px 0 0;
  }
  .home-support-window__bg {
    width: 100%;
    margin: 0 auto;
  }
  .home-support-window__img01 {
    width: 154px;
    top: 82px;
    right: 0;
  }
  .home-support-window__img02 {
    width: 236px;
    top: 107px;
    left: 0;
  }
  .home-support-window__img03 {
    width: 119px;
    top: 181px;
    right: 0;
  }
  .home-support-window__img04 {
    width: 296px;
    top: 208px;
    left: 0;
  }
  .home-support-num {
    width: 100%;
    justify-content: space-between;
    margin: 85px auto 60px;
  }
  .home-support-num__item {
    width: calc((100% - 120px) / 5);
    margin: 0;
  }
  .home-support-num__item:nth-of-type(n + 3) {
    margin-top: 0;
  }
  .home-support-num__head {
    margin-bottom: 14px;
    min-height: 90px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .home-support-num__head::before, .home-support-num__head::after {
    width: 35px;
    height: 87px;
  }
  .home-support-num__head-big {
    font-size: 3rem;
  }
  .home-support-num__txt {
    font-size: 1.4rem;
  }
}

.home-support-evaluation {
  padding: 17px 15px 25px;
  border: 1px solid rgb(var(--gray-bg));
  border-radius: 5px;
}
.home-support-evaluation__head {
  margin-bottom: 16px;
  padding: 26px 0 0;
  background: url("../img/home/ico_crown01.png") no-repeat center top/33px;
  font-size: 1.6rem;
  text-align: center;
}
.home-support-evaluation__txt {
  margin-bottom: 20px;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  line-height: 1.46;
}
.home-support-evaluation-list__item {
  padding: 0 0 0 10px;
  color: rgb(var(--border));
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  position: relative;
}
.home-support-evaluation-list__item + .home-support-evaluation-list__item {
  margin-top: 5px;
}
.home-support-evaluation-list__item::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  top: 0.65em;
  left: 0;
}
.home-support-evaluation__img {
  display: block;
  width: 153px;
  margin: 20px auto 0;
}
@media all and (min-width: 768px) {
  .home-support-evaluation {
    width: 100%;
    padding: 37px 380px 37px 60px;
    position: relative;
  }
  .home-support-evaluation__head {
    margin-bottom: 21px;
    padding: 0 0 0 47px;
    background-position: left center;
    font-size: 2rem;
    text-align: left;
  }
  .home-support-evaluation__txt {
    margin-bottom: 15px;
    font-size: 1.6rem;
    line-height: 1.9;
  }
  .home-support-evaluation-list__item {
    font-size: 1.4rem;
  }
  .home-support-evaluation-list__item::before {
    top: 0.6em;
  }
  .home-support-evaluation__img {
    width: 239px;
    margin: 0;
    position: absolute;
    top: 0;
    right: 60px;
    bottom: 0;
    margin: auto;
  }
}

  @media all and (max-width: 767px) {
.home-support-window {
  margin-bottom: 0;
  position: relative;
  height: 50%;
  min-height: 200px; /* 最低高さを設定しておくと安心 */
}
.home-support-window img {
  height: 100%;
}
  .l-main-img-catch_1 {
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
  }
  .l-main-img-catch__item_1 {
    flex: 1 1 48%;
    min-width: auto;
  }
}
@media (max-width: 480px) {
  .l-main-img-catch_1 {
    grid-template-columns: 1fr; /* スマホでは1列 */
  }
}




/* .home-issue
================================================== */
.home-issue {
  background: linear-gradient(rgba(254, 244, 244, 0.4) 0%, #fef4f4 100%);
  overflow: hidden;
}
.home-issue__inner {
  padding-top: 40px;
  padding-bottom: 60px;
}
.home-issue__con {
  box-sizing: border-box;
  background: #fff;
  padding: 32px 15px 20px;
}
.home-issue-header {
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}
.home-issue-header::before {
  content: "";
  box-sizing: border-box;
  border-color: rgb(var(--main));
  border-style: solid;
  border-width: 0 0 5px 5px;
  display: block;
  height: 12px;
  margin: 0 auto 12px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 26px;
}
.home-issue-header__en {
  color: rgba(var(--main), 0.1);
  font-size: 10.4rem;
  line-height: 1;
  opacity: 0.6;
  position: absolute;
  top: calc(50% + 20px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
.home-issue-header__head {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: var(--letter_spacing_base);
  line-height: var(--line_height_head);
}
.home-issue-list {
  margin-bottom: -10px;
}
.home-issue-list__item {
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  margin-bottom: 10px;
  padding: 26px 18px 28px 54px;
  position: relative;
}
.home-issue-list__item::before, .home-issue-list__item::after {
  content: "";
  border-color: rgb(var(--border));
  border-style: solid;
  border-width: 2px 0 0 2px;
  box-sizing: border-box;
  height: 15px;
  position: absolute;
  width: 15px;
}
.home-issue-list__item::before {
  top: 8px;
  left: 8px;
}
.home-issue-list__item::after {
  bottom: 8px;
  right: 8px;
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}
.home-issue-list__item-ico {
  color: rgb(var(--main));
  height: 24px;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 24px;
}
.home-issue-list__item-txt {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: var(--line_height_head);
}
.home-issue-solution {
  margin-top: 27px;
}
.home-issue-solution__arw {
  display: block;
  margin: 0 auto 21px;
  width: 123px;
}
.home-issue-solution__con {
  box-sizing: border-box;
  background: rgb(var(--base));
  margin-top: -40px;
  padding: 54px 25px 30px;
}
.home-issue-solution__lead {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  text-align: center;
}
.home-issue-solution__lead-in {
  background: linear-gradient(90deg, rgb(var(--main)) 0%, rgb(var(--sub)) 100%);
  display: inline-block;
  padding: 0 12px;
}
.home-issue-solution__txt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  text-align: center;
}
.home-issue-solution__txt-in {
  background: #fff;
  border: 1px solid;
  display: block;
  line-height: 1.4;
  margin: 0 auto;
  padding: 3px 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.home-issue-solution__txt-in.has-mt {
  margin-top: 12px;
}
.home-issue-solution__txt-in.has-mb {
  margin-bottom: 12px;
}
.home-issue-solution__txt-equal {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.home-issue-solution__img {
  margin: 22px auto 0;
  position: relative;
  width: 92%;
  max-width: 552px;
}
.home-issue-solution__img::before, .home-issue-solution__img::after {
  content: "";
  border-color: rgb(var(--border));
  border-style: solid;
  border-width: 3px 0 0 3px;
  box-sizing: border-box;
  height: 20px;
  position: absolute;
  width: 20px;
}
.home-issue-solution__img::before {
  top: -2px;
  left: -12px;
}
.home-issue-solution__img::after {
  bottom: -2px;
  right: -12px;
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}
@media all and (max-width: 374px) {
  .home-issue-header::before {
    height: 10px;
    width: 20px;
  }
  .home-issue-header__en {
    font-size: 8.4rem;
    top: calc(50% + 10px);
  }
  .home-issue-header__head {
    font-size: 1.7rem;
  }
  .home-issue-list__item {
    padding-left: 48px;
  }
  .home-issue-list__item-ico {
    height: 18px;
    width: 18px;
  }
  .home-issue-list__item-txt {
    font-size: 1.3rem;
  }
  .home-issue-solution__txt {
    font-size: 1.3rem;
  }
}
@media all and (min-width: 768px) {
  .home-issue__inner {
    padding-top: 100px;
    padding-bottom: 120px;
  }
  .home-issue__con {
    margin: 0 -30px;
    padding: 66px 30px 30px;
  }
  .home-issue-header {
    margin-bottom: 75px;
  }
  .home-issue-header::before {
    height: 14px;
    margin: 0 auto 30px;
    width: 32px;
  }
  .home-issue-header__en {
    font-size: 17.4rem;
  }
  .home-issue-header__head {
    font-size: 3.4rem;
  }
  .home-issue-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -13px -26px;
  }
  .home-issue-list__item {
    margin: 0 13px 26px;
    padding: 25px;
    width: calc(33.33% - 26px);
  }
  .home-issue-list__item::before {
    top: 10px;
    left: 10px;
  }
  .home-issue-list__item::after {
    bottom: 10px;
    right: 10px;
  }
  .home-issue-list__item-ico {
    display: block;
    margin: 0 auto 12px;
    position: static;
    -webkit-transform: none;
    transform: none;
  }
  .home-issue-list__item-txt {
    font-size: 1.8rem;
    text-align: center;
  }
  .home-issue-solution {
    margin-top: 33px;
  }
  .home-issue-solution__arw {
    margin: 0 auto 33px;
    width: 286px;
  }
  .home-issue-solution__con {
    margin-top: -25px;
    padding: 54px 25px 60px;
  }
  .home-issue-solution__lead {
    background: linear-gradient(90deg, rgb(var(--main)) 0%, rgb(var(--sub)) 100%);
    font-size: 3rem;
    letter-spacing: var(--letter_spacing_base);
    margin: 0 auto 10px;
    padding: 4px 50px;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .home-issue-solution__lead-in {
    background: none;
    display: inline;
    padding: 0;
  }
  .home-issue-solution__txt {
    font-size: 3rem;
    letter-spacing: var(--letter_spacing_base);
  }
  .home-issue-solution__txt-in {
    display: inline-block;
  }
  .home-issue-solution__txt-equal {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
  .home-issue-solution__img {
    margin: 50px auto 0;
  }
  .home-issue-solution__img::before, .home-issue-solution__img::after {
    border-width: 5px 0 0 5px;
    height: 30px;
    width: 30px;
  }
  .home-issue-solution__img::before {
    left: -82px;
  }
  .home-issue-solution__img::after {
    right: -82px;
  }
}
@media all and (min-width: 1460px ) {
  .home-issue__con {
    margin: 0 -150px;
    padding-left: 150px;
    padding-right: 150px;
    padding-bottom: 80px;
  }
}

/* .home-vision
================================================== */
.home-vision {
  background: url(../img/home/bg_vision01_sp.png) no-repeat center/cover rgb(var(--main));
}
.home-vision__inner {
  padding-top: 46px;
  padding-bottom: 60px;
}
.home-vision-list {
  margin-bottom: -70px;
}
.home-vision-list__item {
  margin-bottom: 70px;
}
.home-vision-list__item:nth-child(1) .home-vision-list__num {
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.home-vision-list__item:nth-child(2) .home-vision-list__num {
  top: -30px;
  right: 28px;
}
.home-vision-list__item:nth-child(3) .home-vision-list__num {
  top: -15px;
  left: 28px;
}
.home-vision-list__item:nth-child(3) .home-vision-list__img {
  height: 202px;
  margin: 0 0 0 22px;
}
.home-vision-list__area-img {
  position: relative;
  z-index: 1;
}
.home-vision-list__num {
  color: #fff;
  display: block;
  font-size: 10rem;
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  z-index: -1;
}
.home-vision-list__img {
  height: 178px;
  text-align: center;
}
.home-vision-list__img img {
  height: 100%;
  width: auto;
}
.home-vision-list__area-txt {
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-top: -15px;
  padding: 35px 15px 26px;
}
.home-vision-list__head {
  border-bottom: 1px solid rgb(var(--gray));
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  margin-bottom: 8px;
  padding-bottom: 10px;
}
@media all and (max-width: 374px) {
  .home-vision-list__item:nth-child(2) .home-vision-list__num {
    right: 8px;
  }
  .home-vision-list__item:nth-child(3) .home-vision-list__num {
    left: 4px;
  }
}
@media all and (min-width: 768px) {
  .home-vision {
    background-image: url(../img/home/bg_vision01_pc.png);
  }
  .home-vision__inner {
    padding-top: 136px;
    padding-bottom: 126px;
  }
  .home-vision-list {
    margin-bottom: 0;
    padding-bottom: 18px;
    position: relative;
    z-index: 1;
  }
  .home-vision-list::after {
    content: "";
    background: url(../img/home/bg_vision_list01.png) no-repeat center/contain;
    height: 948px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 1120px;
    z-index: -1;
  }
  .home-vision-list__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .home-vision-list__item + .home-vision-list__item {
    margin-top: 150px;
  }
  .home-vision-list__item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .home-vision-list__item:nth-child(even) .home-vision-list__area-txt {
    margin-left: 100px;
    margin-right: 0;
  }
  .home-vision-list__item:nth-child(1) .home-vision-list__num {
    top: 0;
    left: auto;
    right: -30px;
  }
  .home-vision-list__item:nth-child(1) .home-vision-list__img {
    height: 278px;
    margin: 44px 0 0 17px;
  }
  .home-vision-list__item:nth-child(2) .home-vision-list__num {
    top: -32px;
    right: 130px;
  }
  .home-vision-list__item:nth-child(2) .home-vision-list__img {
    height: 317px;
    margin: 0 -16px 0 50px;
  }
  .home-vision-list__item:nth-child(3) .home-vision-list__num {
    top: -20px;
    left: auto;
    right: 32px;
  }
  .home-vision-list__item:nth-child(3) .home-vision-list__img {
    height: 290px;
    margin: 6px 24px 0 0;
  }
  .home-vision-list__area-img {
    position: relative;
    flex: 1;
  }
  .home-vision-list__num {
    font-size: 16rem;
  }
  .home-vision-list__area-txt {
    margin: 30px 100px 0 0;
    padding: 60px 40px 56px;
    width: 460px;
  }
  .home-vision-list__head {
    font-size: 2rem;
  }
  .home-vision-list__txt {
    font-size: 1.7rem;
  }
}

/*  .home-course
================================================== */
.home-course {
  background: #e6f0f9;
}
.home-course__inner {
  padding-top: 48px;
  padding-bottom: 60px;
}
.home-course__head {
  position: relative;
  z-index: 2;
}
.home-course__con {
  background: #fff;
  box-sizing: border-box;
  border-color: rgb(var(--main));
  border-style: solid;
  border-width: 0 2px 2px;
  margin: -92px -15px 0;
  position: relative;
  padding: 80px 13px 24px;
}
.home-course__con::before, .home-course__con::after {
  content: "";
  border-top: 2px solid rgb(var(--main));
  position: absolute;
  top: 0;
  width: calc((100% - 300px) / 2);
}
.home-course__con::before {
  left: 0;
}
.home-course__con::after {
  right: 0;
}
.home-course-overview__main {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  margin-bottom: 8px;
}
.home-course-overview__main-em {
  font-size: 2rem;
}
.home-course-overview__img {
  margin: 16px auto 0;
  width: 72%;
}
.home-course-detail-table {
  margin: 10px 0 6px;
  position: relative;

}
.home-course-detail-table table th, .home-course-detail-table table td {
  font-size: 1.1rem;
}
  .home-course-detail-table table th:nth-child(1) {
    width: 16%;
  }
  .home-course-detail-table table th:nth-child(2) {
    width: 21%;
  }
  .home-course-detail-table table th:nth-child(3) {
    width: 21%;
  }
  .home-course-detail-table table th:nth-child(4) {
    width: 21%;
  }
  .home-course-detail-table table th:nth-child(5) {
    width: 21%;
  }
.home-course-detail-table table tbody tr td:nth-of-type(1) {
  background: #cccccc;
}
.home-course-detail-table table tbody tr td:nth-of-type(2) {
  background: #d6d6d6;
}
.home-course-detail-table table tbody tr td:nth-of-type(3) {
  background: #e0e0e0;
}
.home-course-detail-table table tbody tr td:nth-of-type(4) {
  background: rgb(239, 239, 239);
}
.home-course-detail-table table tbody tr:nth-child(2) th {
  background: #004b80;
}
.home-course-detail-table table tbody tr:nth-child(3) th {
  background: #005fa2;
}
.home-course-detail-table table tbody tr:nth-child(4) th {
  background: #0072c3;
}
.home-course-detail-table table tbody tr:nth-child(5) th {
  background: #007bd3;
}
.home-course-detail-table__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  position: absolute;
  top: 48px;
  left: 0;
  bottom: 32px;
  width: 22px;
}
.home-course-detail-table__label-in {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: center;
}
.home-course-detail-table__label-line {
  flex: 1;
  position: relative;
  margin: 10px 0;
}
.home-course-detail-table__label-line::before {
  content: "";
  border-left: 1px solid rgb(var(--gray));
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.home-course-schedule__txt {
  margin-bottom: 12px;
}
.home-course-schedule__area-img {
  overflow-x: auto;
  padding-bottom: 18px;
  width: 100%;
}
.home-course-schedule__img {
  width: 676px;
}
@media all and (min-width: 768px) {
  .home-course {
  background: #e6f0f9;
  }
  .home-course__inner {
    padding-top: 138px;
    padding-bottom: 142px;
  }
  .home-course__con {
    border-width: 0 3px 3px;
    margin: -144px -30px 0;
    padding: 100px 30px 76px;
  }
  .home-course__con::before, .home-course__con::after {
    content: "";
    border-top-width: 3px;
    width: calc((100% - 550px) / 2);
  }
  .home-course-overview__main {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  .home-course-overview__main-em {
    font-size: 2.6rem;
  }
  .home-course-overview__img {
    margin: 0 auto;
    width: 425px;
  }
  .home-course-detail-table {
    margin: 46px 0 14px;
  }
  .home-course-detail-table table tr {
    height: 75px;
  }  
  .home-course-detail-table table th, .home-course-detail-table table td {
    font-size: 1.6rem;
  }
  .home-course-detail-table table th:nth-child(1) {
    width: 16%;
  }
  .home-course-detail-table table th:nth-child(2) {
    width: 21%;
  }
  .home-course-detail-table table th:nth-child(3) {
    width: 21%;
  }
  .home-course-detail-table table th:nth-child(4) {
    width: 21%;
  }
  .home-course-detail-table table th:nth-child(5) {
    width: 21%;
  }
    .home-course-detail-table__label {
    font-size: 1.4rem;
    top: 74px;
    bottom: 30px;
    width: 28px;
  }
  .home-course-schedule__txt {
    margin-bottom: 46px;
  }
  .home-course-schedule__area-img {
    overflow-x: hidden;
    padding-bottom: 0;
  }
  .home-course-schedule__img {
    width: 100%;
  }
}
@media all and (min-width: 1460px ) {
  .home-course__con {
    margin-left: -150px;
    margin-right: -150px;
    padding-left: 150px;
    padding-right: 150px;
  }
}


/*	.home-case-Kore
================================================ */
.home-case {
  padding-top: 40px;
  padding-bottom: 64px;
  background: url(../img/home/bg_vision01_sp.png) no-repeat center/cover #9bf6ff;
}
.home-case-heading {
  margin-bottom: 30px;
}
.home-case-list__item {
  height: 100%;
  padding: 12px 15px 20px;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 5px 5px 5px #c9c9c9;
  box-sizing: border-box;
}
.home-case-list__area-img {
  margin-bottom: 17px;
  padding-top: 20px;
  position: relative;
}
.home-case-list__num {
  color: rgb(var(--blue));
  font-size: 1rem;
  line-height: 1.1;
  position: absolute;
  top: 3px;
  left: 3px;
}
.home-case-list__num-big {
  margin-left: 5px;
  font-size: 2.8rem;
  vertical-align: middle;
}
.home-case-list__img {
  display: block;
  width: 160px;
  border-radius: 100px;
  margin: 0 auto 7px;
}
.home-case-list__name {
  font-size: 1.2rem;
  text-align: center;
}
.home-case-list__area-txt {
  position: relative;
  z-index: 1;
}
.home-case-list__area-txt::before {
  content: "”";
  display: block;
  font-size: 8.8rem;
  background: var(--gradi01);
  -webkit-background-clip: text;
  color: transparent;
  opacity: 0.2;
  pointer-events: none;
  position: absolute;
  top: -52px;
  right: -5px;
  line-height: 1.1;
  z-index: -1;
}
.home-case-list__head {
  margin-bottom: 13px;
}
.home-case-list-detail {
  margin-bottom: 12px;
  color: #000000;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.home-case-list-detail__head {
  margin-bottom: 8px;
  padding: 3px 10px;
  background: #eeeeee;
  font-size: 1.2rem;
  text-align: center;
}
.home-case-list-detail__txt {
  margin-bottom: 13px;
  font-size: 1.3rem;
}
.home-case-list-detail__txt:last-of-type {
  margin-bottom: 0;
}
.home-case-list-result {
  padding: 12px 12px 20px;
  background: #e7e7e7;
}
.home-case-list-result__head {
  display: table;
  margin: 0 auto 7px;
  padding: 0 20px;
  color: #003d68;
  border: 1px solid;
  border-radius: 50px;
  letter-spacing: 0.1em;
}
.home-case-list-result-list__item {
  padding-left: 18px;
  background: url("../img/common/ico_circle01.png") no-repeat left top 7px/10px;
  color: #003d68;
  font-weight: 700;
  line-height: 1.5;
}
.home-case-list-result-list__item + .home-case-list-result-list__item {
  margin-top: 7px;
}
.slick-arrow svg {
  width: 24px;
  height: 24px;
  fill: #003d68;
}

.slick-arrow:hover {
  opacity: 0.7;
}
@media all and (min-width: 768px) {
  .home-case {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
    position: relative;
  }
  .home-case-heading {
    margin-bottom: 60px;
  }
  .home-case-list__item {
    padding: 50px 60px;
    box-shadow: 5px 5px 10px #c9c9c9;
    background: #ffffff;
  }
  .home-case-list__item-in {
    display: flex;
    justify-content: space-between;
  }
  .home-case-list__area-img {
    width: 15%;
    margin: 0 40px 0 0;
    padding: 0 0 80px;
  }
  .home-case-list__num {
    top: auto;
    left: 0;
    bottom: 0;
    font-size: 1.6rem;
  }
  .home-case-list__num-big {
    display: block;
    margin: 2px 0 0;
    font-size: 5.2rem;
  }
  .home-case-list__img {
    width: 100%;
    margin-bottom: 12px;
  }
  .home-case-list__name {
    font-size: 1.5rem;
  }
  .home-case-list__area-txt {
    flex: 1;
  }
  .home-case-list__area-txt::before {
    font-size: 12.8rem;
    top: -26px;
    right: -10px;
  }
  .home-case-list__head {
    margin-bottom: 17px;
    padding: 0 50px 25px 0;
    border-bottom: 2px solid rgb(var(--border));
    font-size: 2.2rem;
  }
  .home-case-list-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .home-case-list-detail__head {
    width: 74px;
    margin: 0;
    padding: 6px;
    box-sizing: border-box;
    background: #eeeeee;
    font-size: 1.6rem;
  }
  .home-case-list-detail__txt {
    margin: 0;
    padding: 7px 0;
    width: calc(100% - 94px);
    font-size: 1.5rem;
  }
  .home-case-list-result {
    display: flex;
    align-items: center;
    padding: 24px 21px;
  }
  .home-case-list-result__head {
    margin: 0 20px 0 0;
    padding: 1px 18px;
  }
  .home-case-list-result-list {
    flex: 1;
  }
  .home-case-list-result-list__item {
    background-position: left top 8px;
  }
  .home-case__bg-txt {
    font-size: 20rem;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
    opacity: 0.5;
    white-space: nowrap;
    width: 1980px;
    position: absolute;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
    box-sizing: border-box;
    pointer-events: none;
  }
}

.js-home-case-slider .slick-track {
  display: flex;
}
.js-home-case-slider .slick-slide {
  width: 315px;
  height: auto;
  margin: 0 7px;
  padding: 0 0 10px;
}
.js-home-case-slider .slick-slide > div {
  height: 100%;
}
.js-home-case-slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 10px auto 0;
}
.js-home-case-slider .slick-dots li {
  overflow: hidden;
  cursor: pointer;
  width: 8px;
  height: 8px;
  margin: 0 3px;
  background: rgb(var(--border));
  transition: all 0.3s ease;
}
.js-home-case-slider .slick-dots li.slick-active {
  background: rgb(var(--blue));
}
.js-home-case-slider .slick-dots li button {
  display: block;
  padding: 0;
  width: 100%;
  height: 100%;
  border: none;
  font-size: 1rem;
  text-indent: 200%;
}
@media all and (min-width: 768px) {
  .js-home-case-slider .slick-slide {
    width: var(--contents_width);
    margin: 0 80px;
  }
  .js-home-case-slider .slick-dots {
    margin-top: 40px;
  }
  .js-home-case-slider .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0 4px;
  }
  .js-home-case-slider .slick-dots li:hover {
    background: rgb(var(--blue));
  }
  .js-home-case-slider__arrow {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border-radius: 100px;
    background: rgb(var(--gray-bg));
    border: 1px solid;
    color: #003d68;
    position: absolute;
    z-index: 10;
    top: calc(50% - 60px);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .js-home-case-slider__arrow:hover {
    color: rgb(var(--blue));
  }
  .js-home-case-slider__arrow.is-prev {
    transform: scale(-1, 1);
    left: max(calc(50% - 680px), 0px);
  }
  .js-home-case-slider__arrow.is-next {
    right: max(calc(50% - 680px), 0px);
  }
}








/*  .home-feature
================================================== */
.home-feature {
  overflow: hidden;
}
.home-feature__inner {
  padding-top: 48px;
}
.home-feature-list {
  display: flex;
  position: absolute;
}
.home-feature-list__wrap {
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
.home-feature-list__wrap::after {
  content: "";
  background: #eeeeee;
  padding-top: 80%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100vw;
  min-width: var(--contents_width_with_padding);
  z-index: -1;
}
.home-feature-list__item + .home-feature-list__item {
  margin-left: 30px;
}
.home-feature-list__area-img {
  position: relative;
  width: 325px;
}
.home-feature-list__num {
  color: #fff;
  font-size: 2rem;
  line-height: var(--line_height_head);
  position: absolute;
  top: 10px;
  left: 10px;
}
.home-feature-list__area-txt {
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: -32px 10px 0;
  padding: 25px 20px;
  position: relative;
}
.home-feature-list__head {
  border-bottom: 1px solid rgb(var(--main));
  font-size: 1.7rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.home-feature-list__txt {
  font-size: 1.5rem;
  line-height: 1.8;
}

.box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto;
}

/* 各ボックス */
.box-link {
  text-decoration: none;
  color: inherit;
}

.box {
  background: linear-gradient(135deg, #ffffff, #dddddd);
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 8px 8px 10px #c9c9c9;
  gap: 8px; /* テキストと矢印の間に余白をつける */
  font-weight: bold;
  font-size: 15px;
  line-height: 1.4;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.box-text {
  display: inline-block;
  text-align: center;
}

.box-icon {
  font-size: 14px;
  margin-left: 12px;
  color: #333;
  flex-shrink: 0;
}

/* 詳細セクション */
.detail-section {
  max-width: 800px;
  margin: 100px auto;
  padding: 40px;
  border-top: 2px solid #ddd;
}


.feature-box {
  display: flex;
  align-items: stretch;
  border-radius: 12px;
  position: relative;
  margin: 100px 0;
  background-color: #ffffff;
  gap:24px;
  box-shadow: 8px 8px 10px #c9c9c9;
}

.feature-col.number-title {
  flex: 1.7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: visible;
  border-radius: 12px;
}

.feature-bg-img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/home/img_feature01.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.blur-bg {
  position: relative;  
  background: rgba(255, 255, 255, 85%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.blur-bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px; /* ぼかしの幅 */
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255), transparent);
  pointer-events: none; /* マウス操作を邪魔しないように */
}

.feature-col.image {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  overflow: hidden;
}

.feature-col.description {
  flex: 2.1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  padding: 30px;
}

.number-title {
  flex-direction: column;
}

.feature-number {
  position: absolute;
  top: -140px;
  left: 0;
  font-size: 120px;
  color: #003d68;
  padding: 6px 12px;
  border-radius: 6px;
  z-index: 2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-title {
  margin: 60px 0 30px 0;
  font-size: 25px;
  font-weight: bold;
  color: #000000;
  width: 100%;
}

.feature-col.image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.feature-col.description p {
  font-size: 17px;
  color: #000000;
  line-height: 1.5;
  max-width: 100%;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}
.feature-box-wrapper_1 {
  position: relative;
  margin: 80px 0;
}

.feature-number_1 {
  position: absolute;
  top: 30px;
  left: -75px;
  font-size: 24px;
  font-weight: bold;
  color: #858585;
  padding: 6px;
  border-radius: 6px;
  z-index: 3;
  transform: rotate(270deg);
}

.custom-box {
  border: 1px solid #ccc;
  padding: 24px;
  position: relative;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
}

.custom-title {
  position: relative;
  text-align: center;
  font-weight: bold;
  font-size: 25px;
  padding-bottom: 20px;
  color: #003d68;
}

.custom-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background-color: #ededed;
}

.custom-content {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 25px;
}

.custom-image {
  flex: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;}

.custom-image img {
  width: 100%;
  height: auto;
}

.custom-text {
  flex: 3;
  text-align: left;
  font-size: 14px;
}

.feature-number_2 {
  position: absolute;
  bottom: 30px;
  right: -75px;
  font-size: 24px;
  font-weight: bold;
  color: #858585;
  padding: 6px;
  border-radius: 6px;
  z-index: 3;
  transform: rotate(90deg);
}

.block-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px 20px;
}

.block-item {
  background-color: #fff;
  border: 3px solid #003d68;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.block-item:hover {
  transform: translateY(-4px);
}

.block-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.block-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 16px;
  color: #003d68;
}

.block-text {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

@media all and (min-width: 768px) {
  .home-feature::after {
    padding-top: 500px;
  }
  .home-feature-list__wrap {
    padding-bottom: 142px;
  }
  .home-feature-list__wrap::after {
    padding-top: 500px;
  }
  .home-feature-list__item + .home-feature-list__item {
    margin-left: 60px;
  }
  .home-feature-list__area-img {
    margin-right: 50px;
    width: 690px;
  }
  .home-feature-list__num {
    font-size: 4rem;
    top: 10px;
    left: 20px;
  }
  .home-feature-list__area-txt {
    margin: -100px 0 0 auto;
    padding: 40px 50px;
    width: 530px;
  }
  .home-feature-list__head {
    font-size: 2.2rem;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  .home-feature-list__txt {
    font-size: 1.7rem;
  }
}
@media (max-width: 768px) {
  .box-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-box {
    flex-direction: column;
    text-align: center;
  }
  .feature-left,
  .feature-center,
  .feature-right {
    flex: unset;
  }
  .feature-right {
    margin-top: 12px;
  }
  .custom-content {
    flex-direction: column;
    align-items: center;
  }
  .custom-image {
    text-align: center;
  }
  .custom-image img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
  }

  .custom-text {
    text-align: left;
    width: 100%;
  }

  .block-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .block-grid {
    grid-template-columns: 1fr;
  }
}



/*	.home-comparison
================================================ */
.home-comparison {
  background: url(../img/home/bg_vision01_sp.png) no-repeat center/cover rgb(var(--main));
}
.home-comparison__inner {
  padding-top: 50px;
  padding-bottom: 60px;
}
.home-comparison-heading {
  margin-bottom: 30px;
}
.home-comparison-data {
  table-layout: auto;
}
.home-comparison-data th, .home-comparison-data td {
  box-sizing: border-box;
  border: 1px solid #003d68;
  vertical-align: middle;
  color: #003d68;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.5;
  font-size: 1.2rem;
  background: #ffffff;
}
.home-comparison-data th:nth-child(2), .home-comparison-data td:nth-child(2) {
  background: #ffffff;
  color: rgb(var(--black));
  border-right: 3px solid #003d68;
  border-left: 3px solid #003d68;
}
.home-comparison-data th {
  width: 18%;
  font-weight: 700;
}
.home-comparison-data th:first-child {
  width: 10%;
  background: rgb(205, 227, 247);
  color: rgb(var(--black));
}
.home-comparison-data th:nth-child(2) {
  width: auto;
}
.home-comparison-data td {
  background: #e7e7e7;
  font-size: 1.2rem;
}
.home-comparison-data thead th {
  padding: 15px 5px;
  background: #e7e7e7;
}
.home-comparison-data thead th:nth-child(2) {
  border-top: 3px solid #003d68;
  font-size: 1.4rem;
}
.home-comparison-data thead th:nth-child(2) .home-comparison-data__logo {
  width: 90px;
  margin-right: 10px;
}
.home-comparison-data tbody tr:last-of-type td:nth-child(2) {
  border-bottom: 3px solid #003d68;
}
.home-comparison-data tbody th, .home-comparison-data tbody td {
  padding: 10px;
}
.home-comparison-data__ico {
  display: block;
  margin: 0 auto 4px;
  color: #003d68;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1.1;
}
.home-comparison-data_1 {
  table-layout: auto;
  border: none;
  height: 100%;
}
.home-comparison-data_1 th:first-child,
.home-comparison-data_1 td:first-child {
  border-left: none;
}
.home-comparison-data_1 th:last-child,
.home-comparison-data_1 td:last-child {
  border-right: none;
}
.home-comparison-data_1 tr:first-child th,
.home-comparison-data_1 tr:first-child td {
  border-top: none;
}
.home-comparison-data_1 tr:last-child th,
.home-comparison-data_1 tr:last-child td {
  border-bottom: none;
}
.home-comparison-data_1 th, .home-comparison-data_1 td {
  border: 1px solid #ccc;
  text-align: center;
  padding: 8px;
}
.home-comparison-data_1 th {
  background-color: #333;
  color: white;
}
.home-comparison-data_1 th:nth-child(3) {
  background-color: #22396f;
  color: white;
}
.home-comparison-data_1 th:nth-child(4) {
  background-color: #22396f;
  color: white;
}
.home-comparison-data_1 td.default {
  background-color: #cde3f7;
}
.home-comparison-data_1 td {
  background-color: #f2f2f2;
}
.highlight {
  font-weight: bold;
  background-color: #d9d9d9;
}
.circle {
  font-size: 18px;
}
.cross {
  font-size: 18px;
  color: #666;
}
.comparison-wrapper {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
}
.before-after-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: bold;
}

.before-after-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 5px;
}

.before-box, .after-box {
  flex: 1 1 300px;
  background: rgb(255 255 255 / 71%);
  padding: 10px;
  border-radius: 12px;
  box-shadow: 4px 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.box-icon-image {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 80px;
}

.before-box:hover, .after-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.before-box h3, .after-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #444;
}

.arrow {
  font-size: 36px;
  color: #888;
  animation: arrowMove 1.2s infinite ease-in-out;
}

.arrow::before {
  content: "→";
}

@keyframes arrowMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

@media all and (max-width: 767px) {
  .home-comparison-data {
    width: 750px;
  }
  .home-comparison-data-wrap {
    overflow: auto;
    margin: 0 -30px;
    padding: 0 30px;
  }
  .home-comparison-data th:first-of-type {
    position: -webkit-sticky;
    position: sticky;
    left: -30px;
  }
  .home-comparison-data th:first-of-type::before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #003d68;
    position: absolute;
    top: 0;
    right: 0;
  }
  .home-comparison-data_1-wrap {
    overflow: auto;
    position: relative;    
    margin: 0 -30px;
    padding: 0 30px;
  }
  .comparison-scroll-wrap {
    display: block;
    overflow-x: auto;
  }
  .comparison-image {
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
  }
  .comparison-image img {
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .home-comparison-data_1 th:first-of-type {
    position: -webkit-sticky;
    position: sticky;
    left: -30px;
  }
  .home-comparison-data_1 th:first-of-type::before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #003d68;
    position: absolute;
    top: 0;
    right: 0;
  }
  .home-comparison-data_1 thead th:nth-child(2) {
    vertical-align: middle;
  }
  .home-comparison-data_1 thead th:nth-child(3) {
    vertical-align: middle;
  }
  .home-comparison-data_1 tbody td {
    vertical-align: middle;
  }

  .before-after-container {
    flex-direction: column;
    gap: 0px;
    margin: 30px 5px;
  }

  .before-box, .after-box {
  flex: 1 1;
  width: 300px;
  }

  .arrow::before {
    content: "↓";
  }

  .arrow {
    animation: arrowMoveVertical 1.2s infinite ease-in-out;
  }

  @keyframes arrowMoveVertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
  }
}
@media all and (min-width: 768px) {
  .home-comparison {
  background: url(../img/home/bg_vision01_sp.png) no-repeat center/cover rgb(var(--main));
  }
  .home-comparison__inner {
    padding-top: 100px;
    padding-bottom: 140px;
  }
  .home-comparison-heading {
    margin-bottom: 58px;
  }
  .home-comparison-data th {
    font-size: 1.6rem;
  }
  .home-comparison-data td {
    font-size: 1.4rem;
  }
  .home-comparison-data thead th {
    padding: 20px 10px;
  }
  .home-comparison-data thead th:first-child {
    width: 13%;
  }
  .home-comparison-data thead th:nth-child(2) {
    width: auto;
    font-size: 1.8rem;
  }
  .home-comparison-data thead th:nth-child(2) .home-comparison-data__logo {
    width: 104px;
  }
  .home-comparison-data tbody th {
    padding: 10px;
  }
  .home-comparison-data tbody td {
    padding: 14px 18px;
  }
  .home-comparison-data_1 th {
    font-size: 1.4rem;
  }
  .home-comparison-data_1 td {
    font-size: 1.4rem;
  }
  .home-comparison-data_1 thead th {
    padding: 10px;
    width: 5%;
  }
  .home-comparison-data_1 thead th:first-child {
    width: 12%;
  }
  .home-comparison-data_1 thead th:nth-child(2) {
    width: 5%;
    font-size: 1.4rem;
    vertical-align: middle;
  }
  .home-comparison-data_1 thead th:nth-child(2) .home-comparison-data_1__logo {
    width: 104px;
  }
  .home-comparison-data_1 thead th:nth-child(3) {
    vertical-align: middle;
  }
  .home-comparison-data_1 tbody th {
    padding: 10px;
  }
  .home-comparison-data_1 tbody td {
    padding: 10px;
    vertical-align: middle;
  }
  .comparison-scroll-wrap {
    display: flex;
    justify-content: center; /* ← 中央寄せ */
    overflow-x: auto;
    margin: 0 -30px;
    padding: 30px;
  }
  .comparison-scroll-inner {
    display: flex;
    align-items: stretch;
    min-width: max-content; /* 横スクロールを維持 */
    margin: 0 auto;
  }
}



/*	.home-scene
================================================ */
.home-scene {
  background: url("../img/home/bg_scene01_sp.png") no-repeat center top 20px/max(100%, 520px);
  position: relative;
}
.home-scene::before {
  content: "";
  display: block;
  width: calc(100% - 60px);
  height: 1px;
  background: rgb(var(--border));
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.home-scene__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
.home-scene-heading {
  margin-bottom: 19px;
}
.home-scene-heading__main {
  font-size: 1.6rem;
}
.home-scene-heading__main-small {
  font-size: 2rem;
}
.home-scene-heading__main-ico {
  display: table;
  margin: 4px auto;
}
.home-scene__lead {
  margin-bottom: 24px;
}
@media all and (min-width: 768px) {
  .home-scene {
    background: url("../img/home/bg_scene01_pc.png") no-repeat center top 60px;
  }
  .home-scene::before {
    width: min(calc(100% - 60px), 1760px);
  }
  .home-scene__inner {
    padding-top: 100px;
  }
  .home-scene-heading {
    margin-bottom: 45px;
  }
  .home-scene-heading__main {
    font-size: 4.2rem;
  }
  .home-scene-heading__main-small {
    font-size: 4.2rem;
  }
  .home-scene-heading__main-ico {
    display: inline-block;
    margin: 0 14px 3px -2px;
  }
  .home-scene__lead {
    margin-bottom: 57px;
  }
}

.home-scene-case {
  margin-bottom: 40px;
  border: 1px solid #003d68;
  border-bottom: none;
  position: relative;
}
.home-scene-case::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #003d68;
  position: absolute;
  bottom: 0;
  left: 0;
}
.home-scene-case__head {
  padding: 11px 10px;
  border-bottom: 1px solid #003d68;
  color: #003d68;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
}
.home-scene-case-list {
  display: flex;
  flex-wrap: wrap;
}
.home-scene-case-list__item {
  width: 50%;
  padding: 14px 10px 18px;
  box-sizing: border-box;
  position: relative;
  border-bottom: 1px solid #003d68;
}
.home-scene-case-list__item::before {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 10px);
  background: #003d68;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.home-scene-case-list__img {
  display: block;
  height: 60px;
  width: auto;
  margin: 0 auto 4px;
}
.home-scene-case-list_1__img {
  display: block;
  width: 60px;
  margin: 0 auto 4px;
}
.arrow-right {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid #888;
  margin: 0 10px;
}
.home-scene-case-list__txt {
  color: #003d68;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.31;
  text-align: center;
}
.usecase_img {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.usecase_img a {
  width: 32%;
  height: auto;
  display: block;
}
.usecase_img__img {
  display: block;
  width: 100%;
  max-width: 400px; /* 適宜調整 */
  border-radius: 8px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2); /* 通常の影 */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a:hover .usecase_img__img {
  transform: translateY(2px) scale(0.98); /* 少し下に沈む・小さくなる */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); /* 影も弱くして押された感じに */
  cursor: pointer;
}


@media all and (max-width: 767px) {
  .home-scene-case-list__item:nth-of-type(even)::before {
    content: none;
  }
  .home-scene-result-list {
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
  }
  .arrow-right {
    width: 30px;
    height: 40px;
    position: relative;
    border: none; 
  }
  .arrow-right::before {
    content: "";
    position: absolute;
    top: 50%;           /* 親要素の中央 */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #888; /* 下向き矢印 */
  }
  .usecase_img {
    flex-direction: column;
    align-items: center;
  }
  .usecase_img a {
    width: 90%;
    max-width: 400px;
  }
}
@media all and (min-width: 768px) {
  .home-scene-case {
    margin-bottom: 88px;
  }
  .home-scene-case__head {
    padding: 10px;
    font-size: 2.8rem;
  }
  .home-scene-case-list__item {
    width: 25%;
    padding: 47px 20px 40px;
  }
  .home-scene-case-list__item::before {
    height: calc(100% - 20px);
  }
  .home-scene-case-list__item:nth-of-type(4n)::before {
    content: none;
  }
  .home-scene-case-list__img {
    width: auto;
    height: 115px;
    margin-bottom: 15px;
  }
  .home-scene-case-list_1__img {
    width: 50%;
  }
    .home-scene-case-list__txt {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.home-scene-result__head {
  margin-bottom: 18px;
  color: #003d68;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
}
.home-scene-result-list {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -4px;
}
.home-scene-result-list__item {
  width: calc(50% - 8px);
  margin: 0 4px;
  border-radius: 5px;
  background: #eeeeee;
  position: relative;
  overflow: visible;
  border-radius: 5px;
}
.home-scene-result-list__item img.fly-out {
  position: absolute;
  top: -25px;
  left: -30px;
  width: 50px;
  height: auto;
  z-index: 10;
}
.home-scene-result-list__item:nth-of-type(n + 3) {
  margin-top: 8px;
}
.home-scene-result-list__head {
  padding: 10px 5px;
  border-bottom: 2px solid rgb(206, 215, 222);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
}
.home-scene-result-list__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.home-scene-result-list__area-txt {
  padding: 7px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.home-scene-result-list__ico {
  margin: -3px 8px 0 -7px;
  color: #000000;
}
.home-scene-result-list__ico.is-up {
  transform: scale(1, -1);
}
.home-scene-result-list__num {
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  color: #003d68;
}
.home-scene-result-list__num-big {
  background: #003d68;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 4.8rem;
  line-height: 1.1;
}
.home-scene-result-list__img {
  position: absolute;
  z-index: -1;
  width: 50px;
  top: 4px;
  right: 14px;
}
@media all and (min-width: 768px) {
  .home-scene-result__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
  }
  .home-scene-result__head::before, .home-scene-result__head::after {
    flex: 1;
    content: "";
    display: block;
    height: 1px;
    background: rgb(var(--border));
  }
  .home-scene-result__head::before {
    margin-right: 60px;
  }
  .home-scene-result__head::after {
    margin-left: 60px;
  }
  .home-scene-result-list {
    margin: 0 auto;
    padding-bottom: 40px;
  }
  .home-scene-result-list__item {
    width: calc((100% - 40px) / 4);
  }
  .home-scene-result-list__item:last-of-type {
    margin-right: 0;
  }
  .home-scene-result-list__item:nth-of-type(n + 3) {
    margin-top: 0;
  }
  .home-scene-result-list__head {
    padding: 13px;
    font-size: 1.6rem;
  }
  .home-scene-result-list__area-txt {
    padding: 25px 10px;
  }
  .home-scene-result-list__ico {
    margin: -2px 7px 0 7px;
  }
  .home-scene-result-list__num {
    font-size: 2.6rem;
  }
  .home-scene-result-list__num-big {
    font-size: 6.4rem;
  }
  .home-scene-result-list__img {
    width: 80px;
    top: 14px;
    right: 14px;
  }
}


/*	.home-scene_1
================================================ */
.home-scene_1 {
  background: url("../img/home/bg_scene01_sp.png") no-repeat center top 20px/max(100%, 520px);
  position: relative;
}
.home-scene_1::before {
  content: "";
  display: block;
  width: calc(100% - 60px);
  height: 1px;
  background: rgb(var(--border));
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.home-scene_1__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
.flow-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  margin: 0 10px;
}
.flow-header {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: -100px 10px 20px 10px;
}
.header-box {
  background-color: #f5f5f5;
  color: #333;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.3rem;
  text-align: center;
  width: 70%;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 35px;
}
.header-box_1 {
  background-color: #003d68;
  color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.3rem;
  text-align: center;
  width: 30%;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 35px;
}
.flow-box {
  position: relative;
  width: 15%;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px 10px;
  flex: 1 1 calc(15% - 20px);
  text-align: center;
  border: 2px solid #f2f2f2;
  display: flex;
  flex-direction: column;
}
.flow-box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 9px solid #333;
  transform: translateY(-50%);
  z-index: 10;
}
.flow-box:not(:last-child)::before {
  content: none;
}
.flow-title {
  font-size: 1.3rem;
  font-weight: bold;
}
.flow-title_1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
  margin-top: -10px;
}
.flow-underline {
  width: 80%;
  height: 4px;
  background-color: #003d68;
  margin: 0 auto 15px;
  border-radius: 2px;
}
.flow-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-width: 100%;
}
.flow-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  max-height: 100%;
}
.flow-description {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #333;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding-top: 10px;
}
.flow-chart-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -100px;
  padding-bottom: 20px;
  width: 100%;
}
.flow-chart-image img {
  width: 100%;
  max-width: 1200px;
  height: auto;
}
@media all and (min-width: 768px) {
  .home-scene_1 {
    background: url("../img/home/bg_scene01_pc.png") no-repeat center top 60px;
  }
  .home-scene_1::before {
    width: min(calc(100% - 60px), 1760px);
  }
  .home-scene_1__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media all and (max-width: 767px) {
  .flow-container {
    flex-wrap: wrap;
    justify-content: center !important;
  }
  .flow-box {
    width: 100% !important;
    flex: 0 0 100%;
  }
  .flow-box::after,
  .flow-box::before {
    display: none;
  }
    .flow-header {
    display: none;
  }
  .flow-chart-image {
    margin-top: -70px;
  }
  .flow-chart-image img {
    max-width: 95%;
  }
}





/*  .home-instructor
================================================== */
.home-instructor__inner {
  padding-top: 30px;
  padding-bottom: 60px;
}
.home-instructor-header {
  margin-bottom: 44px;
  position: relative;
}
.home-instructor-header__area-img {
  position: absolute;
  top: -36px;
  right: 0;
  width: 98px;
  z-index: 1;
}
.home-instructor-profile {
  margin-bottom: -26px;
}
.home-instructor-profile__item {
  margin-bottom: 26px;
}
.home-instructor-profile__img {
  border-radius: 50%;
  height: 180px;
  margin: 0 auto 15px;
  overflow: hidden;
  width: 180px;
  max-width: 400px;
}
.home-instructor-profile__name {
  margin-bottom: 10px;
  text-align: center;
}
.home-instructor-profile__name-head {
  display: block;
  font-size: 1.2rem;
  line-height: var(--line_height_head);
}
.home-instructor-profile__name-txt {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: var(--line_height_head);
}
.home-instructor-profile__result {
  box-sizing: border-box;
  background: rgb(var(--base));
  margin-bottom: 10px;
  padding: 20px;
}
.home-instructor-profile__result-head {
  border-bottom: 1px solid rgb(var(--gray));
  font-weight: 700;
  line-height: var(--line_height_head);
  margin-bottom: 8px;
  padding-bottom: 8px;
  text-align: center;
}
.home-instructor-profile__result-list {
  font-size: 1.3rem;
}
.home-instructor-video {
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 40px auto 0;
  padding: 24px 20px 30px;
  position: relative;
}
.home-instructor-video::before, .home-instructor-video::after {
  content: "";
  border-color: rgb(var(--main));
  border-style: solid;
  border-width: 2px 0 0 2px;
  box-sizing: border-box;
  height: 20px;
  position: absolute;
  width: 20px;
}
.home-instructor-video::before {
  top: -1px;
  left: -1px;
}
.home-instructor-video::after {
  bottom: -1px;
  right: -1px;
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}
.home-instructor-video__head {
  background: #fff;
  border: 2px solid;
  box-sizing: border-box;
  color: #003d68;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  margin: -46px auto 12px;
  padding: 0 28px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.home-instructor-video__txt {
  margin-bottom: 10px;
}
.home-instructor-video__video {
  margin: 0 auto;
  position: relative;
  max-width: 700px;
}
.home-instructor-video__video::before {
  content: "";
  display: block;
  padding-top: 56.25%;
  width: 100%;
}
.home-instructor-video__video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
@media all and (min-width: 768px) {
  .home-instructor__inner {
    padding-top: 20px;
    padding-bottom: 140px;
  }
  .home-instructor-header {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 54px;
  }
  .home-instructor-header__area-txt {
    flex: 1;
    margin-right: 40px;
  }
  .home-instructor-header__area-img {
    margin-top: -70px;
    position: static;
    width: 334px;
  }
  .home-instructor-profile {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -40px -80px;
  }
  .home-instructor-profile__item {
    margin: 0 40px 80px;
    width: calc(33.33% - 80px);
  }
  .home-instructor-profile__img {
    margin: 0 auto 20px;
  }
  .home-instructor-profile__name {
    margin-bottom: 20px;
  }
  .home-instructor-profile__name-head {
    font-size: 1.4rem;
    margin-bottom: 2px;
  }
  .home-instructor-profile__name-txt {
    font-size: 2.2rem;
  }
  .home-instructor-profile__result {
    margin-bottom: 18px;
  }
  .home-instructor-profile__result-head {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  .home-instructor-profile__result-list {
    font-size: 1.5rem;
  }
  .home-instructor-video {
    margin-top: 106px;
    padding: 60px;
  }
  .home-instructor-video::before, .home-instructor-video::after {
    border-width: 5px 0 0 5px;
  }
  .home-instructor-video__head {
    font-size: 2.5rem;
    margin: -80px auto 30px;
  }
  .home-instructor-video__txt {
    margin-bottom: 38px;
    text-align: center;
  }
}



/* .c-cv01
================================================== */
.c-cv01 {
  background: var(--gradi01);
  position: relative;
}
.c-cv01::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  background: url("../img/common/bg_lattice01_sp.png") no-repeat center top -207px, url("../img/common/bg_cv01_sp.png") no-repeat center top 88px/450px;
}
.c-cv01__inner {
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}
.c-cv01-heading {
  margin-bottom: 30px;
}
.c-cv01-box-wrap {
  padding: 30px 15px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}

.c-cv01-box + .c-cv01-box {
  margin-top: 15px;
}
.c-cv01__btn {
  margin-bottom: 7px;
  letter-spacing: 0.06em;
}
.c-cv01__txt {
  color: rgb(var(--sub));
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .c-cv01::before {
    background: url("../img/common/bg_lattice01_pc.png") no-repeat center top -525px/max(100%, 1920px), url("../img/common/bg_cv01_pc.png") no-repeat center top 125px;
  }
  .c-cv01__inner {
    padding-bottom: 50px;
  }
  .c-cv01-heading {
    margin-bottom: 50px;
  }
  .c-cv01-box {
    width: 100%;
    margin: 0 10px;
  }
  .c-cv01-box-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .c-cv01-box + .c-cv01-box {
    margin-top: 0;
  }
  .c-cv01__btn {
    margin-bottom: 14px;
  }
  .c-cv01__txt {
    font-size: 1.5rem;
  }
}




/*  .home-request
================================================== */
.home-request {
  background: url(../img/home/bg_request01_sp.jpg) no-repeat center/cover;
}
.home-request__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.home-request-header {
  margin-bottom: 24px;
}
@media all and (min-width: 768px) {
  .home-request__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .home-request-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 36px;
  }
  .home-request-header__in {
    margin-right: 134px;
  }
  .home-request-header__lead {
    flex: 1;
    margin: 0 0 0;
  }
}

/*  .home-subsidy
================================================== */
.home-subsidy {
  background: #e6f0f9;
}
.home-subsidy__inner {
  padding-top: 48px;
  padding-bottom: 60px;
}
.home-subsidy__head {
  position: relative;
  z-index: 2;
}
.home-subsidy__con {
  background: #fff;
  box-sizing: border-box;
  border-color: rgb(var(--main));
  border-style: solid;
  border-width: 0 2px 2px;
  margin: -92px -15px 0;
  position: relative;
  padding: 80px 13px 24px;
}
.home-subsidy__con::before, .home-subsidy__con::after {
  content: "";
  border-top: 2px solid rgb(var(--main));
  position: absolute;
  top: 0;
  width: calc((100% - 206px) / 2);
}
.home-subsidy__con::before {
  left: 0;
}
.home-subsidy__con::after {
  right: 0;
}
.home-subsidy-detail {
  margin-top: 24px;
}
.home-subsidy-detail__head {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  margin-bottom: 14px;
}
.home-subsidy-detail-datalist {
  margin-bottom: 28px;
}
.home-subsidy-detail-datalist__head, .home-subsidy-detail-datalist__txt {
  box-sizing: border-box;
  line-height: var(--line_height_head);
  padding: 20px;
  text-align: center;
}
.home-subsidy-detail-datalist__head {
  background: rgb(var(--main));
  color: #fff;
  font-weight: 700;
}
.home-subsidy-detail-datalist__txt {
  background: rgb(var(--base));
}
.home-subsidy-detail-table {
  position: relative;
}
.home-subsidy-detail-table + .home-subsidy-detail-table {
  margin-top: 40px;
}
.home-subsidy-detail-table + .home-subsidy-detail-table::before, .home-subsidy-detail-table + .home-subsidy-detail-table::after {
  content: "";
  background: rgb(var(--gray));
  display: block;
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 2px;
  width: 20px;
}
.home-subsidy-detail-table + .home-subsidy-detail-table::before {
  -webkit-transform: translateX(-50%) rotate(-90deg);
  transform: translateX(-50%) rotate(-90deg);
}
.home-subsidy-detail-table__wrap {
  margin-bottom: 8px;
}
.home-subsidy-detail-table__num {
  font-size: 1.8rem;
}
.home-subsidy-detail-table table th, .home-subsidy-detail-table table td {
  border-right: 2px solid #fff;
  text-align: center;
}
.home-subsidy-detail-table table tr:nth-child(1) th {
  padding-top: 20px;
  padding-bottom: 20px;
}
.home-subsidy-flow__txt {
  margin-bottom: 14px;
}
@media all and (min-width: 768px) {
  .home-subsidy {
  background: #e6f0f9;
  }
  .home-subsidy__inner {
    padding-top: 138px;
    padding-bottom: 140px;
  }
  .home-subsidy__con {
    border-width: 0 3px 3px;
    margin: -144px -30px 0;
    padding: 160px 30px 76px;
  }
  .home-subsidy__con::before, .home-subsidy__con::after {
    content: "";
    border-top-width: 3px;
    width: calc((100% - 328px) / 2);
  }
  .home-subsidy-detail {
    margin-top: 40px;
  }
  .home-subsidy-detail__head {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .home-subsidy-detail-datalist {
    display: flex;
    margin-bottom: 20px;
  }
  .home-subsidy-detail-datalist__in + .home-subsidy-detail-datalist__in {
    margin-left: 2px;
  }
  .home-subsidy-detail-datalist__in:nth-child(1) {
    width: 278px;
  }
  .home-subsidy-detail-datalist__in:nth-child(2) {
    width: 278px;
  }
  .home-subsidy-detail-datalist__in:nth-child(3) {
    width: 560px;
  }
  .home-subsidy-detail-table {
    position: relative;
  }
  .home-subsidy-detail-table + .home-subsidy-detail-table {
    margin-top: 0;
    margin-left: 74px;
  }
  .home-subsidy-detail-table + .home-subsidy-detail-table::before, .home-subsidy-detail-table + .home-subsidy-detail-table::after {
    top: 50%;
    left: -58px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 34px;
  }
  .home-subsidy-detail-table + .home-subsidy-detail-table::before {
    -webkit-transform: translate(0, -50%) rotate(-90deg);
    transform: translate(0, -50%) rotate(-90deg);
  }
  .home-subsidy-detail-table:nth-child(1) {
    width: 300px;
  }
  .home-subsidy-detail-table:nth-child(2) {
    width: 400px;
  }
  .home-subsidy-detail-table__wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 14px;
  }
  .home-subsidy-detail-table__num {
    font-size: 2.2rem;
  }
  .home-subsidy-detail-table table tr:nth-child(2) th {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .home-subsidy-flow__txt {
    margin-bottom: 46px;
  }
}
@media all and (min-width: 1460px ) {
  .home-subsidy__con {
    margin-left: -150px;
    margin-right: -150px;
    padding-left: 150px;
    padding-right: 150px;
  }
}

/*  .home-course-detail
================================================== */
.home-course-detail-table-1 {
  margin: 10px 0 6px;
  position: relative;
}
.home-course-detail-table-1 table th {
  font-size: 1.1rem;
}
.home-course-detail-table-1 table td {
  font-size: 1.1rem;
  vertical-align: top;
  height: 200x;
}
.home-course-detail-table-1 table th:nth-child(1) {
  width: 40px;
}
.home-course-detail-table-1 table th:nth-child(2) {
  width: 200px;
}
.home-course-detail-table-1 table th:nth-child(3) {
  width: 400px;
}
.home-course-detail-table-1 table th:nth-child(4) {
  width: 200px;
}
.home-course-detail-table-1 table th:nth-child(5) {
  width: 200px;
}
.home-course-detail-table-1 table tbody tr td:nth-of-type(1) {
  background: #e9e9e9;
}
.home-course-detail-table-1 table tbody tr td:nth-of-type(2) {
  background: #efeeee;
}
.home-course-detail-table-1 table tbody tr td:nth-of-type(3) {
  background: #efeeee;
}
.home-course-detail-table-1 table tbody tr td:nth-of-type(4) {
  background: #f5f5f5;
}
.home-course-detail-table-1 table tbody tr:nth-child(2) th {
  background: #004b80;
}
.home-course-detail-table-1 table tbody tr:nth-child(3) th {
  background: #005fa2;
}
.home-course-detail-table-1 table tbody tr:nth-child(4) th {
  background: #0072c3;
}
.home-course-detail-table-1 table tbody tr:nth-child(5) th {
  background: #007bd3;
}
.home-course-detail-table-1__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  position: absolute;
  top: 48px;
  left: 0;
  bottom: 32px;
  width: 22px;
}
.home-course-detail-table-1__label-in {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: center;
}
.home-course-detail-table-1__label-line {
  flex: 1;
  position: relative;
  margin: 10px 0;
}
.home-course-detail-table-1__label-line::before {
  content: "";
  border-left: 1px solid rgb(var(--gray));
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media all and (min-width: 768px) {
  .home-course-detail-table-1 {
    margin: 46px 0 14px;
  }
  .home-course-detail-table-1 table tr {
    height: 75px;
  }  
  .home-course-detail-table-1 table th {
    font-size: 1.6rem;
  }
  .home-course-detail-table-1 table td {
  font-size: 1.6rem;
  vertical-align: top;
  height: 150px;
  }
  .home-course-detail-table-1 table th:nth-child(1) {
    width: 3%;
  }
  .home-course-detail-table-1 table th:nth-child(2) {
    width: 20%;
  }
  .home-course-detail-table-1 table th:nth-child(3) {
    width: 40%;
  }
  .home-course-detail-table-1 table th:nth-child(4) {
    width: 20%;
  }
  .home-course-detail-table-1 table th:nth-child(5) {
    width: 20%;
  }
  .home-course-detail-table-1__label {
    font-size: 1.4rem;
    top: 74px;
    bottom: 30px;
    width: 28px;
  }
}




/*	.home-merit
================================================ */
.home-merit {
  padding: 0 15px;
  position: relative;
  z-index: 2;
}
.home-merit__inner {
  padding: 40px 15px 55px;
  border-radius: 5px;
  background: transparent;
}
.home-merit-heading {
  margin-bottom: 37px;
  padding-top: 0;
}
.home-merit-heading__logo {
  width: 92px;
  margin: 0 auto;
}
.home-merit-list__item {
  position: relative;
  padding: 20px 0 0;
}
.home-merit-list__item + .home-merit-list__item {
  margin-top: 18px;
}
.home-merit-list__num {
  color: #003d68;
  font-size: 3rem;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.home-merit-list__img {
  display: block;
  width: 243px;
  margin: 0 auto 17px;
}
.home-merit-list__head {
  margin-bottom: 6px;
  font-size: 1.5rem;
  text-align: center;
}
.home-merit-list__txt {
  word-break: break-word;
  text-align: center;
}
@media all and (min-width: 768px) {
  .home-merit {
    padding: 0;
  }
  .home-merit__inner {
    padding: 100px 30px 65px;
    background: transparent;
  }
  .home-merit-heading {
    margin-bottom: 53px;
  }
  .home-merit-heading__logo {
    width: 130px;
    margin-bottom: 7px;
  }
  .home-merit-list {
    width: min(100%, var(--contents_width));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .home-merit-list__item {
    width: calc((100% - 100px) / 3);
    padding-top: 24px;
  }
  .home-merit-list__item + .home-merit-list__item {
    margin-top: 0;
  }
  .home-merit-list__num {
    font-size: 4rem;
    margin-bottom: 10px;
  }
  .home-merit-list__img {
    margin-bottom: 22px;
  }
  .home-merit-list__head {
    margin-bottom: 8px;
    font-size: 2rem;
  }
}



/*  .home-voice
================================================== */
.home-voice {
  background: url(../img/home/bg_voice01_sp.png) no-repeat center/cover rgb(var(--main));
}
.home-voice__inner {
  padding-top: 48px;
  padding-bottom: 60px;
}
.home-voice-intro {
  margin-bottom: 30px;
}
.home-voice-intro__img {
  margin: -20px auto 4px;
  width: 117px;
}
.home-voice-intro__txt {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  text-align: center;
}
.home-voice-intro__txt-num {
  font-size: 2.8rem;
}
.home-voice-intro__txt-em {
  font-size: 2.8rem;
}
@media all and (min-width: 768px) {
  .home-voice {
    background-image: url(../img/home/bg_voice01_pc.png);
  }
  .home-voice__inner {
    padding-top: 136px;
    padding-bottom: 158px;
  }
  .home-voice-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 54px;
  }
  .home-voice-intro__img {
    margin: -20px 0 0 66px;
    order: 2;
    width: 300px;
  }
  .home-voice-intro__area-txt {
    order: 1;
    margin-left: 70px;
  }
  .home-voice-intro__txt {
    font-size: 2.4rem;
    letter-spacing: var(--letter_spacing_base);
    text-align: right;
  }
  .home-voice-intro__txt-num {
    font-size: 4.5rem;
  }
  .home-voice-intro__txt-em {
    font-size: 3.6rem;
  }
  .home-voice-card {
    position: relative;
    z-index: 1;
  }
  .home-voice-card::after {
    content: "";
    background: url(../img/home/bg_voice_card01.png) no-repeat center/cover;
    height: 650px;
    width: 870px;
    position: absolute;
    top: calc(50% - 26px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
  }
}

/*  .home-faq
================================================== */
.home-faq {
  background: rgb(var(--base));
}
.home-faq__inner {
  padding-top: 48px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .home-faq__inner {
    padding-top: 136px;
    padding-bottom: 180px;
  }
}

/*  .home-contact
================================================== */
.home-contact {
  background: url(../img/home/bg_contact01_sp.jpg) no-repeat center/cover;
  color: #fff;
}
.home-contact__inner {
  padding-top: 48px;
  padding-bottom: 50px;
}
.home-contact-header {
  margin-bottom: 26px;
}
.home-contact-btns {
  margin: 15px 0 -10px;
}
.home-contact-btns__item {
  margin-bottom: 10px;
}
.home-contact-btns__btn {
  margin-top: 0;
}
.home-contact-btns__txt {
  font-size: 1.2rem;
  line-height: var(--line_height_head);
  margin-top: 8px;
}
@media all and (min-width: 768px) {
  .home-contact {
    background-image: url(../img/home/bg_contact01_pc.jpg);
  }
  .home-contact__inner {
    padding-top: 118px;
    padding-bottom: 118px;
  }
  .home-contact-header {
    margin-bottom: 36px;
  }
  .home-contact-btns {
    display: flex;
    flex-wrap: wrap;
    margin: 20px -10px -20px;
  }
  .home-contact-btns__item {
    margin: 0 10px 20px;
    width: calc(50% - 20px);
  }
  .home-contact-btns__txt {
    font-size: 1.4rem;
    margin-top: 14px;
    text-align: center;
  }
}

/*  .home-company
================================================== */
.home-company {
  background: rgb(var(--base));
}
.home-company__inner {
  padding-top: 48px;
  padding-bottom: 53px;
}
.home-company-header__head {
  margin-bottom: 30px;
}
.home-company-info__img {
  margin: 20px 30px -20px auto;
  width: 100px;
}
.home-company-office-list {
  margin-bottom: -12px;
}
.home-company-office-list__item {
  margin-bottom: 12px;
}
.home-company-office-list__head {
  box-sizing: border-box;
  background: rgb(var(--lightgray));
  font-weight: 700;
  line-height: var(--line_height_head);
  padding: 12px 70px 12px 15px;
  position: relative;
}
.home-company-office-list__map {
  color: rgb(var(--main));
  font-size: 1.3rem;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.home-company-office-list__map[class] {
  text-decoration: underline;
}
.home-company-office-list__map-ico {
  height: 17px;
  margin: -1px 5px 0 0;
  width: 12px;
}
.home-company-office-list__address {
  box-sizing: border-box;
  background: #fff;
  line-height: var(--line_height_head);
  padding: 10px 15px;
}
@media all and (min-width: 768px) {
  .home-company__inner {
    padding-top: 118px;
    padding-bottom: 142px;
  }
  .home-company__con {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home-company-header__head {
    margin-bottom: 10px;
  }
  .home-company-info {
    width: 650px;
  }
  .home-company-info__img {
    margin: 20px 30px -20px auto;
    width: 100px;
  }
  .home-company-office {
    margin-top: 80px;
    width: 100%;
  }
  .home-company-office-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px -20px;
  }
  .home-company-office-list__item {
    margin: 0 10px 20px;
    width: calc(50% - 20px);
  }
  .home-company-office-list__head {
    padding: 16px 94px 16px 30px;
  }
  .home-company-office-list__map {
    font-size: 1.6rem;
    right: 30px;
  }
  .home-company-office-list__map[class] {
    text-decoration: underline;
  }
  .home-company-office-list__map[class]:hover {
    text-decoration: none;
  }
  .home-company-office-list__map-ico {
    margin-top: -8px;
  }
  .home-company-office-list__address {
    padding: 14px 30px 28px;
  }
}

/*  .request-form
================================================== */
.request-form__inner {
  padding-top: 80px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .request-form__inner {
    padding-top: 230px;
    padding-bottom: 140px;
  }
}