@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

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

ol,
ul {
  list-style: none;
}

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

a {
  color: inherit;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

figure {
  margin: 0;
  padding: 0;
}

figcaption {
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden; /* 横スクロールバーを消す */
}

html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.7;
}

.caution {
  color: red;
}

.main__caution {
  margin-top: 20px;
  padding: 5px;
  border: 2px solid #2a93d5;
  font-size: 0.9rem;
}
@media screen and (max-width: 414px) {
  .main__caution {
    font-size: 0.8rem;
  }
}

.small {
  font-size: 0.8rem;
}
@media screen and (min-width: 1025px) {
  .small {
    font-size: 0.9rem;
  }
}

.br-sp {
  display: inline;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .br-sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .br-sp {
    display: none;
  }
}

.br-pc {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .br-pc {
    display: inline;
  }
}
@media screen and (min-width: 1025px) {
  .br-pc {
    display: inline;
  }
}

.show-pc {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .show-pc {
    display: inline;
  }
}
@media screen and (min-width: 1025px) {
  .show-pc {
    display: inline;
  }
}

.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  position: relative;
  display: inline-block; /*横に並ぶように*/
  list-style: none;
  font-weight: bold; /*太字*/
  margin-right: 0.8em;
  padding: 0 3px 0 7px;
  height: 28px;
  line-height: 28px;
  text-decoration: none;
  color: #747772;
  background: #aed9da; /*背景色*/
  font-size: 13px;
}

.breadcrumb li:after {
  /*三角の部分*/
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  border-style: solid;
  border-color: transparent;
  border-left-color: #aed9da; /*背景色*/
  border-width: 14px 12px;
  width: 0;
  height: 0;
}

.breadcrumb li a {
  display: inline-block;
  padding: 0 3px 0 7px;
  height: 28px;
  line-height: 28px;
  text-decoration: none;
  color: #747772;
  background: #aed9da; /*背景色*/
  font-size: 13px;
}

.breadcrumb li a:hover {
  color: #fff;
}

.details__inner {
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .details__inner {
    padding: 30px;
    max-width: 740px;
  }
}
@media screen and (min-width: 1025px) {
  .details__inner {
    padding: 30px;
    max-width: 1200px;
  }
}

.details__wrapper {
  margin-bottom: 20px;
}

.details__title {
  font-size: 18px;
  color: #2a93d5;
}
@media screen and (min-width: 1025px) {
  .details__title {
    font-size: 22px;
  }
}

.details__title-sub {
  font-size: 14px;
}

.details__text {
  margin-top: 10px;
  padding-inline: 10px;
}
@media screen and (min-width: 1025px) {
  .details__text {
    padding-inline: 20px;
  }
}

.details__list {
  margin-top: 10px;
  margin-left: 10px;
  list-style: none;
  padding-left: 0;
}
.details__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.6em;
}
.details__list > li::before {
  content: "▶";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #3ddad7;
  font-weight: 700;
}

.details__list--check {
  margin-top: 10px;
  margin-left: 10px;
  list-style: none;
  padding-left: 0;
}
.details__list--check > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.6em;
}
.details__list--check > li::before {
  content: "✓";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #2a93d5;
  font-weight: 400;
}

.list__title::before {
  content: "▶";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #3ddad7;
  font-weight: 700;
  margin-right: 10px;
}

.list__small {
  margin-left: 15px;
  font-size: 0.8rem;
}

.detail__contents-title {
  padding-top: 20px;
  border-bottom: 1px solid #aed9da;
}
.detail__contents-title span {
  font-size: 0.8rem;
}
@media screen and (min-width: 1025px) {
  .detail__contents-title {
    font-size: 1.2rem;
    padding-left: 50px;
  }
}

.details__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.details__img img {
  max-width: 100%;
  height: auto;
  display: block;
}

.detail__contents-box {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .detail__contents-box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 60px;
  }
}
@media screen and (min-width: 1025px) {
  .detail__contents-box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 60px;
  }
}

.contents-box__img img {
  width: 100px;
  max-width: 100%;
  height: auto;
  display: block;
}

.contents-box__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contents-box__text {
    width: 400px;
  }
}
@media screen and (min-width: 1025px) {
  .contents-box__text {
    width: 500px;
  }
}

.details__caution {
  margin-top: 20px;
}
.details__caution ul {
  color: red;
  font-weight: 700;
}

.details__contents-caution {
  font-size: 0.85rem;
  margin-top: 10px;
}
@media screen and (min-width: 1025px) {
  .details__contents-caution {
    margin-top: 20px;
  }
}

.details__links {
  font-weight: 700;
  color: #2a93d5;
}

.price__wrapper {
  margin-top: 20px;
}

.title__background-l {
  width: 100%;
  height: 65px;
  margin-top: 15px;
  background-color: #edfafd;
  border-left: 3px solid #3ddad7;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.5;
}
@media screen and (min-width: 1025px) {
  .title__background-l {
    font-size: 1.8rem;
    margin-top: 25px;
  }
}

.title__background {
  position: relative;
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.5;
}
.title__background span {
  font-size: 0.95rem;
}
@media screen and (min-width: 1025px) {
  .title__background {
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 20px;
  }
}
.title__background::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background-color: #2a93d5;
}

.title__background-small {
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .title__background-small {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .title__background-small {
    font-size: 1.5rem;
  }
}

.subpages__inner {
  margin: 20px 20px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .subpages__inner {
    margin: 20px auto;
    max-width: 740px;
  }
}
@media screen and (min-width: 1025px) {
  .subpages__inner {
    margin: 20px auto;
    max-width: 800px;
  }
}

.subpages__wrapper {
  background-color: #edfafd;
  border-radius: 12px;
}
@media screen and (max-width: 414px) {
  .subpages__wrapper {
    margin: 20px auto;
    padding: 10px;
  }
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .subpages__wrapper {
    margin: 20px auto;
    padding: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .subpages__wrapper {
    max-width: 720px;
    margin: 30px auto;
    padding: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .subpages__wrapper {
    max-width: 780px;
    margin: 30px auto;
    padding: 20px;
  }
}

.subpages__text-top {
  margin-top: 10px;
  margin-left: 10px;
}

.subpages__title-l {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .subpages__title-l {
    font-size: 1.5rem;
    text-align: center;
  }
}
@media screen and (min-width: 1025px) {
  .subpages__title-l {
    font-size: 1.8rem;
    text-align: center;
  }
}

.subpages__title {
  font-size: 1.2rem;
  margin-top: 10px;
}
@media screen and (max-width: 414px) {
  .subpages__title {
    font-size: 1rem;
    font-weight: 700;
  }
}

.subpages__title-sub {
  margin-top: 10px;
}

.subpages__list-nodot {
  margin-top: 10px;
  margin-left: 15px;
  list-style: none;
  padding-left: 0;
}
.subpages__list-nodot > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6em;
}
.subpages__list-nodot > li::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.subpages__list {
  margin-top: 10px;
  margin-left: 10px;
  list-style: none;
  padding-left: 0;
}
.subpages__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6em;
}
.subpages__list > li::before {
  content: "・";
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.subpages__table {
  margin-block: 20px;
}

.company__list {
  list-style: none;
  margin-top: 10px;
  margin-left: 10px;
}

.company__info {
  text-align: left;
  font-size: 1rem;
}
.company__info th {
  font-weight: 700;
  width: 150px;
}
@media screen and (max-width: 414px) {
  .company__info th {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .company__info th {
    width: 200px;
  }
}
@media screen and (min-width: 1025px) {
  .company__info th {
    width: 220px;
  }
}
@media screen and (max-width: 414px) {
  .company__info tr {
    font-size: 0.9rem;
  }
}

.company__table-wrapper {
  margin: 30px auto;
}
@media screen and (max-width: 414px) {
  .company__table-wrapper {
    margin-top: 20px;
  }
}

.company__table {
  margin-top: 20px;
  text-align: left;
}
.company__table th {
  width: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .company__table th {
    width: 180px;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .company__table th {
    width: 230px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .company__table td {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .company__table td {
    font-size: 1.4rem;
  }
}

.company__table th,
.company__table td {
  border-bottom: 1px solid #ccc;
  padding-top: 10px;
}

.company__table tr:last-child th,
.company__table tr:last-child td {
  border-bottom: none;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sitemap__list {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .sitemap__list {
    padding-inline: 60px;
  }
}

.chuzai__button-wrapper {
  display: block;
  text-align: center;
  margin-bottom: 15px;
}

.chuzai__button {
  width: 200px;
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  color: #ffffff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3ddad7), to(#aed9da));
  background-image: linear-gradient(#3ddad7 0%, #aed9da 100%);
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
          box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
  border-bottom: solid 3px #2db1af;
  -webkit-transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
  transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#135589), to(#3ddad7));
  background-image: linear-gradient(#135589 0%, #3ddad7 100%);
  border-bottom: solid 3px #0d3f64;
  /* hover（PCマウス） */
  /* focus（PCキーボード） */
}
.chuzai__button:hover {
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}
.chuzai__button:focus-visible {
  outline: 3px solid #3ddad7;
  outline-offset: 3px;
}

.chuzai__button:active {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}

.chuzai__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 10px;
  height: 20px;
  background: url(../images/new/arrow-right.png) no-repeat center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.price__text {
  margin-bottom: 20px;
}

.price__image,
.price__s,
.price__c,
.price__ryugaku {
  overflow-x: auto; /* 横スクロール */
  overflow-y: hidden; /* 縦スクロール抑制 */
  -webkit-overflow-scrolling: touch; /* SPでスムーズ */
}

.price__image,
.price__s,
.price__c,
.price__ryugaku {
  display: block;
  width: auto; /* 元サイズ維持 */
  max-width: none;
  height: auto; /* 縦横比維持 */
}

/* SP用 */
@media screen and (max-width: 414px) {
  .price__ryugaku img {
    width: 250%; /* 元画像の半分が画面に収まるイメージ */
    max-width: none;
    height: auto;
    display: block;
  }
  .price__image img {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
  }
  .price__s img {
    width: 200%;
    max-width: none;
    height: auto;
  }
  .price__c img {
    width: 350%;
    max-width: none;
    height: auto;
  }
}
/* SPL用 */
@media screen and (min-width: 415px) and (max-width: 767px) {
  .price__ryugaku img {
    width: 250%; /* 元画像の半分が画面に収まるイメージ */
    max-width: none;
    height: auto;
    display: block;
  }
  .price__image img {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
  }
  .price__s img {
    width: 200%;
    max-width: none;
    height: auto;
  }
  .price__c img {
    width: 300%;
    max-width: none;
    height: auto;
  }
}
/* tb用 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .price__ryugaku img {
    width: 130%;
    max-width: none;
    height: auto;
    display: block;
  }
  .price__image img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0 auto;
  }
  .price__s img {
    width: 200%;
    max-width: none;
    height: auto;
    display: block;
  }
  .price__c img {
    width: 200%;
    max-width: none;
    height: auto;
    display: block;
  }
}
/* pc用 */
@media screen and (min-width: 1025px) {
  .price__ryugaku img {
    width: 150%;
    max-width: none;
    height: auto;
    display: block;
  }
  .price__image img {
    display: block;
    width: 80%;
    max-width: none;
    height: auto;
    margin: 0 auto;
  }
  .price__s img {
    width: 130%;
    max-width: none;
    height: auto;
    display: block;
  }
  .price__c img {
    width: 150%;
    max-width: none;
    height: auto;
    display: block;
  }
}
header {
  position: absolute;
  top: 0; /* 上端に配置 */
  left: 0; /* 左端に合わせる */
  right: 0;
  z-index: 1000; /* 他の要素より前面に表示 */
  background: transparent;
  height: 100px;
}

.header__inner {
  padding: 10px;
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .header__inner {
    padding: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__inner {
    padding: 10px 20px;
  }
}
@media screen and (min-width: 1025px) {
  .header__inner {
    position: relative;
    padding: 10px 20px;
  }
}

.header__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.header__title-left {
  color: #3ddad7;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__title-left {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .header__title-left {
    font-size: 1.2rem;
  }
}
.header__title-left span {
  font-size: 0.5rem;
  color: rgb(66, 64, 64);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__title-left span {
    font-size: 0.7rem;
  }
}
@media screen and (min-width: 1025px) {
  .header__title-left span {
    font-size: 0.8rem;
  }
}

.header__title-right {
  width: 80px;
  text-align: center;
  color: rgb(66, 64, 64);
  font-weight: 700;
}
@media screen and (max-width: 414px) {
  .header__title-right span {
    font-size: 0.5rem;
  }
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .header__title-right span {
    font-size: 0.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__title-right span {
    font-size: 0.7rem;
  }
}
@media screen and (min-width: 1025px) {
  .header__title-right span {
    font-size: 0.8rem;
  }
}
.header__title-right img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 3px;
}

.header-nav__sp {
  text-align: right;
}
@media screen and (min-width: 1025px) {
  .header-nav__sp {
    display: none;
  }
}

.header-nav__toggle {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 18px;
  margin-left: auto;
  margin-right: 20px;
  margin-top: 20px;
  z-index: 101;
}

.header-nav__toggle.is-checked {
  position: fixed;
  top: 70px;
  right: 30px;
  margin: 0;
  z-index: 1001;
}

.header-nav__toggle.is-checked .header-nav__bar:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header-nav__toggle.is-checked .header-nav__bar:nth-child(2) {
  opacity: 0;
}

.header-nav__toggle.is-checked .header-nav__bar:nth-child(3) {
  top: 9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header-nav__inner {
  padding: 60px 20px;
}

.header-nav__toggle-contents {
  height: 100vh;
  overflow-y: auto;
  background-color: #edfafd;
  width: 270px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  text-align: start;
}
.header-nav__toggle-contents.is-checked {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.header-nav__bar {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #2a93d5;
  left: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header-nav__bar {
    width: 40px;
    height: 3px;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav__bar {
    width: 45px;
    height: 3px;
  }
}
.header-nav__bar:nth-child(1) {
  top: 0;
}
.header-nav__bar:nth-child(2) {
  top: 8px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header-nav__bar:nth-child(2) {
    top: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav__bar:nth-child(2) {
    top: 12px;
  }
}
.header-nav__bar:nth-child(3) {
  top: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header-nav__bar:nth-child(3) {
    top: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav__bar:nth-child(3) {
    top: 24px;
  }
}

.header-nav__text {
  position: absolute;
  width: 30px;
  font-size: 0.46rem;
  top: 23px;
  font-weight: 700;
  color: #135589;
  left: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header-nav__text {
    width: 40px;
    font-size: 0.6rem;
    top: 27px;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav__text {
    width: 45px;
    font-size: 0.7rem;
    top: 33px;
  }
}

.header-nav__toggle.is-checked .header-nav__bar:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header-nav__toggle.is-checked .header-nav__bar:nth-child(2) {
  opacity: 0;
}

.header-nav__toggle.is-checked .header-nav__bar:nth-child(3) {
  top: 9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

body.is-nav-open {
  position: fixed;
  width: 100%;
}

.header-nav__sub--sp {
  text-align: right;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header-nav__sub--sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav__sub--sp {
    display: none;
  }
}

.header-nav__tb {
  text-align: right;
}
@media screen and (max-width: 414px) {
  .header-nav__tb {
    display: none;
  }
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .header-nav__tb {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav__tb {
    display: none;
  }
}

.header-nav__pc-sub {
  display: block;
  text-align: right;
}
@media screen and (max-width: 414px) {
  .header-nav__pc-sub {
    display: none;
  }
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .header-nav__pc-sub {
    display: none;
  }
}

.header-nav__sub-pc {
  padding: 20px 20px;
}

.header-nav__toggle-contents--sub-pc {
  background-color: #edfafd;
  width: 45%;
  height: 100vh;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header-nav__toggle-contents--sub-pc {
    width: 55%;
  }
}
.header-nav__toggle-contents--sub-pc.is-checked {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.header-nav__title-sub--pc {
  text-align: left;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Patua One", sans-serif;
  color: #2a93d5;
}

.menu__sub-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  text-align: left;
}

.menu__sub-pcr {
  margin-top: 35px;
}

.menu-list__sub-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 横並び */
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
}

.header-nav__title {
  color: #135589;
  font-size: 1.2rem;
  font-family: "Patua One", sans-serif;
  font-weight: 500;
}

.header-nav__menu-wrapper {
  margin-top: 20px;
}

.header-nav__menu {
  color: #135589;
  font-size: 0.85rem;
  margin-top: 5px;
}

.sub-menu {
  color: #2a93d5;
  font-size: 0.85rem;
  margin-top: 3px;
}

.sub-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 横並び */
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
}

.pc-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 横並び */
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
}

.header-nav__pc {
  display: none;
}
@media screen and (min-width: 1025px) {
  .header-nav__pc {
    position: absolute;
    display: inline;
  }
}

@media screen and (min-width: 1025px) {
  .header-nav__title--pc {
    color: #135589;
    font-size: 1.2rem;
    font-family: "Patua One", sans-serif;
    font-weight: 500;
  }
}

.header-nav__menu-wrapper--pc {
  margin-top: 0;
}

.main-image {
  position: relative;
  margin: 0 auto;
}

.main-image__bg {
  position: relative;
  height: 70vh;
  background: url(../images/new/main-pic.png) center top/cover no-repeat;
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .main-image__bg {
    height: 75vh;
    background: url(../images/new/main-pic-spl.png) right top/cover no-repeat;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .main-image__bg {
    height: 60vh;
    background: url(../images/new/main-pic-pc.png) right top/cover no-repeat;
  }
}
@media screen and (min-width: 1025px) {
  .main-image__bg {
    height: 70vh;
    background: url(../images/new/main-pic-pc.png) right top/cover no-repeat;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .main-image__bg {
    background: url(../images/new/main-pic-pc.png) right top/cover no-repeat;
    min-height: auto;
    padding: 24px 0;
  }
  .main-image__bg .main__image-title {
    top: 30%;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.1;
  }
  .main-image__bg .main__image-title span {
    font-size: 0.85rem;
  }
  .main-image__bg .main__button-2 {
    display: none;
  }
}
.main-image__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05); /* 濃さは調整 */
  pointer-events: none;
}

.main-image__inner {
  padding: 10px 20px;
}

.main__image-title {
  position: absolute;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  left: 0;
  right: 0;
  text-align: center;
  top: 35%;
  z-index: 5;
  color: #2a93d5;
  text-shadow: 1px 1px 0 #aed9da, -1px 1px 0 #aed9da, 1px -1px 0 #aed9da, -1px -1px 0 #aed9da;
}
.main__image-title span {
  font-size: 1.05rem;
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .main__image-title {
    font-size: 1.2rem;
    line-height: 1.1;
    top: 43%;
  }
  .main__image-title span {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .main__image-title {
    font-size: 1.8rem;
    line-height: 1.2;
    top: 45%;
  }
  .main__image-title span {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .main__image-title {
    font-size: 2rem;
    line-height: 1.4;
    top: 40%;
  }
  .main__image-title span {
    font-size: 1.5rem;
  }
}

.main__image-links {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .main__image-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1025px) {
  .main__image-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.main__button-1,
.main__button-2 {
  position: relative;
  width: 310px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  padding: 5px 30px 7px 15px;
  text-decoration: none;
  font-size: 1.18rem;
  font-weight: 700;
  border-radius: 12px;
  color: #ffffff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3ddad7), to(#aed9da));
  background-image: linear-gradient(#3ddad7 0%, #aed9da 100%);
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
          box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
  border-bottom: solid 3px #2db1af;
  -webkit-transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
  transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
  /* hover（PCマウス） */
  /* focus（PCキーボード） */
}
.main__button-1:hover,
.main__button-2:hover {
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}
.main__button-1:focus-visible,
.main__button-2:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}
.main__button-1 span,
.main__button-2 span {
  font-size: 0.9rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .main__button-1,
  .main__button-2 {
    width: 330px;
    height: 70px;
    font-size: 1.2rem;
  }
  .main__button-1 span,
  .main__button-2 span {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 1025px) {
  .main__button-1,
  .main__button-2 {
    width: 300px;
    height: 65px;
    font-size: 1.13rem;
  }
  .main__button-1 span,
  .main__button-2 span {
    font-size: 0.9rem;
  }
}

.main__button-1 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3ddad7), to(#2a93d5));
  background-image: linear-gradient(#3ddad7 0%, #2a93d5 100%);
  border-bottom: solid 3px #0d3f64;
}

.main__button-2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#135589), to(#3ddad7));
  background-image: linear-gradient(#135589 0%, #3ddad7 100%);
  border-bottom: solid 3px #0d3f64;
}

.main__button-1:active,
.main__button-2:active {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}

.main__button-1::after,
.main__button-2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 10px;
  height: 20px;
  background: url(../images/new/arrow-right.png) no-repeat center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sub-image {
  position: relative;
}

.sub-image__bg {
  height: 35vh;
  background: url(../images/new/sub-pic-sp.png) right top/cover no-repeat;
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .sub-image__bg {
    height: 40vh;
    background: url(../images/new/sub-pic-sp.png) right top/cover no-repeat;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sub-image__bg {
    height: 40vh;
    background: url(../images/new/sub-pic-tb.png) right center/cover no-repeat;
  }
}
@media screen and (min-width: 1025px) {
  .sub-image__bg {
    height: 45vh;
    background: url(../images/new/sub-pic-pc.png) right center/cover no-repeat;
  }
}

@media (max-height: 450px) and (orientation: landscape) {
  .sub-image__bg {
    background: url(../images/new/sub-pic-pc.png) right top/cover no-repeat;
    min-height: 260px;
    max-height: 300px;
  }
  .sub-image__bg .sub-image__title {
    top: 80px;
    font-size: 1rem;
    text-align: left;
  }
  .sub-image__bg .sub-image__title span {
    font-size: 0.8rem;
  }
  .sub-image__bg .sub-image__title p {
    font-size: 0.8rem;
  }
  .sub-image__bg .sub__button-2 {
    display: none;
  }
}
.sub-image__inner {
  padding-inline: 15px;
}

.sub-image__title {
  position: absolute;
  font-size: 1.1rem;
  line-height: 1.25;
  font-weight: 700;
  text-align: left;
  top: 30%;
  z-index: 5;
  color: #2a93d5;
  text-shadow: 1px 1px 0 #edfafd, -1px 1px 0 #edfafd, 1px -1px 0 #edfafd, -1px -1px 0 #edfafd;
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .sub-image__title {
    font-size: 1.1rem;
    top: 30%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sub-image__title {
    font-size: 1.5rem;
    margin-left: 10px;
    top: 30%;
  }
}
@media screen and (min-width: 1025px) {
  .sub-image__title {
    font-size: 1.8rem;
    margin-left: 30px;
    top: 25%;
  }
}
.sub-image__title span {
  font-size: 0.8rem;
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .sub-image__title span {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sub-image__title span {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .sub-image__title span {
    font-size: 1.2rem;
  }
}
.sub-image__title p {
  font-size: 0.85rem;
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .sub-image__title p {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sub-image__title p {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .sub-image__title p {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1025px) {
  .sub-image__title-s {
    font-size: 20px;
  }
}

.sub-image-links {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  top: 80%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sub-image-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 70%;
    gap: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .sub-image-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 65%;
    gap: 40px;
  }
}

.sub__button-1,
.sub__button-2 {
  position: relative;
  width: 240px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  padding: 2px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  color: #ffffff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3ddad7), to(#aed9da));
  background-image: linear-gradient(#3ddad7 0%, #aed9da 100%);
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
          box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
  border-bottom: solid 3px #2db1af;
  -webkit-transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
  transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
  /* hover（PCマウス） */
  /* focus（PCキーボード） */
}
.sub__button-1:hover,
.sub__button-2:hover {
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}
.sub__button-1:focus-visible,
.sub__button-2:focus-visible {
  outline: 3px solid #3ddad7;
  outline-offset: 3px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sub__button-1 span,
  .sub__button-2 span {
    font-size: 0.9rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 1025px) {
  .sub__button-1 span,
  .sub__button-2 span {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sub__button-1,
  .sub__button-2 {
    width: 280px;
    height: 70px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 6px 10px 6px 10px;
  }
}
@media screen and (min-width: 1025px) {
  .sub__button-1,
  .sub__button-2 {
    width: 360px;
    height: 85px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 6px 10px 6px 10px;
  }
}

.sub__button-1 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3ddad7), to(#2a93d5));
  background-image: linear-gradient(#3ddad7 0%, #2a93d5 100%);
  border-bottom: solid 3px #0d3f64;
}

.sub__button-2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#135589), to(#3ddad7));
  background-image: linear-gradient(#135589 0%, #3ddad7 100%);
  border-bottom: solid 3px #0d3f64;
}
@media screen and (max-width: 414px) {
  .sub__button-2 {
    display: none;
  }
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .sub__button-2 {
    display: none;
  }
}

.sub__button-1:active,
.sub__button-2:active {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}

.main__button-1::after,
.main__button-2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 10px;
  height: 20px;
  background: url(../images/new/arrow-right.png) no-repeat center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.mainview {
  margin: 0 auto;
}

.mainview__inner {
  max-width: 600px;
  width: 100%;
  padding: 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mainview__inner {
    max-width: 740px;
    padding: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .mainview__inner {
    max-width: 1200px;
    padding: 30px;
  }
}

.maimview__wapper {
  margin-top: 10px;
}

.mainview__contents-wrapper {
  margin-top: 20px;
}

.mainview__contents-text {
  text-align: center;
  margin-top: 10px;
  padding-inline: 15px;
}
@media screen and (min-width: 1025px) {
  .mainview__contents-text {
    margin-top: 15px;
  }
}

.mainview__contents-small {
  margin-top: 10px;
  font-size: 0.9rem;
  text-align: center;
}

.steps__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .steps__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1025px) {
  .steps__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.steps__card {
  width: 300px;
  margin-inline: auto;
  height: auto;
}
.steps__card img {
  display: block;
  max-width: 100%;
}

.steps__link {
  margin-top: 10px;
  font-weight: 700;
  display: block;
  text-align: center;
  color: #2a93d5;
}
@media screen and (min-width: 1025px) {
  .steps__link {
    margin-top: 20px;
    font-size: 16px;
  }
}

.objects__wrapper {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .objects__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1025px) {
  .objects__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.object__card {
  width: 300px;
  margin-inline: auto;
  height: auto;
}
.object__card img {
  display: block;
  max-width: 100%;
}

.mainview__contents-text-l {
  font-size: 15px;
  margin-top: 20px;
  line-height: 1.2;
}
.mainview__contents-text-l p {
  margin-top: 10px;
}

.mainview__contents-text2 {
  font-size: 12px;
  margin-top: 30px;
}

.mainview__accordion-wrapper {
  position: relative;
  margin: 40px auto 0;
  padding-top: 10px;
  max-width: 500px;
  height: auto;
  background-color: #edfafd;
  border-radius: 8px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mainview__accordion-wrapper {
    max-width: 700px;
  }
}
@media screen and (min-width: 1025px) {
  .mainview__accordion-wrapper {
    min-width: 900px;
  }
}

.mainview__accordion {
  margin-top: 10px;
  padding-inline: 15px;
  height: 60px;
  overflow: hidden;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}

.show__more {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 70px;
  padding-top: 40px;
  text-align: center;
  line-height: 20px;
  color: #135589;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(70%, rgb(255, 255, 255)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 70%);
  cursor: pointer;
  -webkit-transition: bottom 0.2s;
  transition: bottom 0.2s;
}

.active {
  background: none;
  bottom: -30px;
}

.mainview__accordion-title {
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .mainview__accordion-title {
    font-size: 1.1rem;
  }
}

.mainview__accourdion-caution {
  font-size: 0.85rem;
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .mainview__accourdion-caution {
    margin-top: 20px;
  }
}

.support__title-sub {
  font-size: 14px;
  margin-top: 10px;
}

.support-details__wrapper {
  margin-top: 20px;
}

.support-details__list {
  margin-top: 10px;
}
.support-details__step-parent {
  width: 100%;
  height: 30px;
  background-color: #aed9da;
  color: #fff;
  padding: 2px 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1025px) {
  .support-details__step-parent {
    font-size: 1.2rem;
    height: 40px;
    padding: 2px 20px;
  }
}

.support-details__step-child {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-inline: 10px;
}
@media screen and (min-width: 1025px) {
  .support-details__step-child {
    padding-left: 15px;
  }
}

.contact__form-wrapper {
  margin-top: 15px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact__form-wrapper {
    max-width: 500px;
    margin: 20px auto;
  }
}
@media screen and (min-width: 1025px) {
  .contact__form-wrapper {
    max-width: 600px;
    margin: 20px auto;
  }
}

.contact__form-field {
  margin-top: 10px;
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .form-field {
    display: grid;
    grid-template-columns: 150px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .form-field {
    display: grid;
    grid-template-columns: 150px 1fr;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-field__label {
  font-weight: 700;
}

.form-field__label--small {
  font-size: 1rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .form-field__label--small {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 1025px) {
  .form-field__label--small {
    font-size: 0.9rem;
  }
}

.form-field__tag {
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  width: 40px;
  height: 27px;
  background: #ce2073;
  font-weight: 700;
  display: inline-block;
  font-size: 0.7rem;
  margin-left: 10px;
}

.form-field__item [type=text],
.form-field__item [type=email] {
  border-radius: 8px;
  background: #edfafd;
  font-size: 16px;
  border: none;
  outline: none;
  width: 100%;
  height: 56px;
  padding: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border: 3px solid transparent;
}
.form-field__item [type=text]:focus, .form-field__item [type=text].has-value,
.form-field__item [type=email]:focus,
.form-field__item [type=email].has-value {
  border: 3px solid #aed9da !important;
}
@media screen and (min-width: 1025px) {
  .form-field__item [type=text],
  .form-field__item [type=email] {
    font-size: 16px;
  }
}

.form-field__item select:focus, .form-field__item select.has-value {
  border: 3px solid #aed9da !important;
}

/* SP専用 */
@media (max-width: 480px) {
  .form-field__item input.custom-calendar {
    -webkit-appearance: none; /* ←追加 */
    -moz-appearance: none;
         appearance: none;
    border-radius: 8px;
    border: 3px solid transparent;
    background: #edfafd;
    width: 100%;
    height: 56px;
    padding: 16px;
    font-size: 16px;
  }
  .form-field__item input.custom-calendar:focus, .form-field__item input.custom-calendar.has-value {
    border-color: #aed9da !important;
  }
  .form-field.is-error input.custom-calendar {
    border-color: #ce2073 !important;
    background-color: #fff0f7 !important;
  }
}
.form-field__item input[type=date].custom-calendar {
  border-radius: 8px;
  background: #edfafd;
  border: 3px solid transparent;
  outline: none;
  width: 100%;
  height: 56px;
  padding: 16px;
  font-size: 16px;
  /* バリデーションエラー用 */
}
.form-field__item input[type=date].custom-calendar:focus, .form-field__item input[type=date].custom-calendar.has-value {
  border: 3px solid #aed9da !important;
}
.form-field.is-error .form-field__item input[type=date].custom-calendar {
  border-color: #ce2073 !important;
  background-color: #fff0f7 !important;
}

.form-field__item input,
.form-field__item select,
.form-field__item textarea {
  width: 100%;
  margin: 0 auto;
}
.form-field__item input::-webkit-input-placeholder, .form-field__item select::-webkit-input-placeholder, .form-field__item textarea::-webkit-input-placeholder {
  color: #2a93d5; /* 薄いグレーにする */
  opacity: 0.7; /* Firefox 対策 */
}
.form-field__item input::-moz-placeholder, .form-field__item select::-moz-placeholder, .form-field__item textarea::-moz-placeholder {
  color: #2a93d5; /* 薄いグレーにする */
  opacity: 0.7; /* Firefox 対策 */
}
.form-field__item input:-ms-input-placeholder, .form-field__item select:-ms-input-placeholder, .form-field__item textarea:-ms-input-placeholder {
  color: #2a93d5; /* 薄いグレーにする */
  opacity: 0.7; /* Firefox 対策 */
}
.form-field__item input::-ms-input-placeholder, .form-field__item select::-ms-input-placeholder, .form-field__item textarea::-ms-input-placeholder {
  color: #2a93d5; /* 薄いグレーにする */
  opacity: 0.7; /* Firefox 対策 */
}
.form-field__item input::placeholder,
.form-field__item select::placeholder,
.form-field__item textarea::placeholder {
  color: #2a93d5; /* 薄いグレーにする */
  opacity: 0.7; /* Firefox 対策 */
}

textarea {
  border-radius: 8px;
  background: #edfafd;
  font-size: 16px;
  border: none;
  outline: none;
  width: 100%;
  height: 160px;
  padding: 16px;
  display: block;
}
textarea:not(:-moz-placeholder) {
  /* 入力中またはフォーカス中 */
  border: 3px solid #aed9da;
}
textarea:not(:-ms-input-placeholder) {
  /* 入力中またはフォーカス中 */
  border: 3px solid #aed9da;
}
textarea:focus, textarea:not(:placeholder-shown) {
  /* 入力中またはフォーカス中 */
  border: 3px solid #aed9da;
}
@media screen and (min-width: 1025px) {
  textarea {
    font-size: 16px;
  }
}

.select-field__item {
  position: relative;
}
.select-field__item select {
  width: 100%;
  height: 56px;
  padding: 16px 52px 16px 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  outline: none;
  line-height: 1;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: #edfafd;
}
.select-field__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 52px;
  height: 56px;
  border-radius: 0 8px 8px 0;
  background-color: #aed9da;
  background-image: url(../images/new/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 2;
}

input:invalid,
select:invalid,
textarea:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.form-field.is-error input {
  border-color: #ce2073 !important;
  background-color: #fff0f7 !important;
}

.form-field.is-error select {
  -webkit-appearance: none; /* Safari, Chrome */
  -moz-appearance: none; /* Firefox */
  appearance: none; /* 標準 */
  border: 3px solid #ce2073 !important;
  background-color: #fff0f7 !important;
  border-radius: 8px; /* 必要に応じて */
  padding: 0.5em; /* 必要に応じて */
}

.form-field.is-error .select-field__item::after {
  background-color: #ce2073;
}

.form-field.is-error label {
  color: #ce2073 !important;
}

.form__button-wrapper {
  display: block;
  margin-block: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .form__button-wrapper {
    margin-block: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .form__button-wrapper {
    margin-block: 25px;
  }
}

.form__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 130px;
  height: 40px;
  border-radius: 8px;
  font-weight: 700;
  color: #2a93d5;
  border: 3px solid #2a93d5;
  text-decoration: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .form__button {
    width: 150px;
    height: 50px;
  }
}
@media screen and (min-width: 1025px) {
  .form__button {
    width: 180px;
    height: 60px;
  }
}

.form__button:hover,
.form__button:focus-visible,
.form__button:active {
  -webkit-transform: scale(0.96, 0.96);
          transform: scale(0.96, 0.96);
}

.form__botton-s {
  padding: 4px 5px;
  font-size: 0.9rem;
  text-align: center;
  line-height: 0.9;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .form__botton-s {
    font-size: 1rem;
    line-height: 1;
    padding: 10px 5px;
  }
}
@media screen and (min-width: 1025px) {
  .form__botton-s {
    font-size: 1.1rem;
    line-height: 1;
    padding: 10px 5px;
  }
}

.confirm__button {
  background: #fff;
  border: 2px solid #3ddad7;
  width: 130px;
  height: 40px;
  border-radius: 8px;
  color: #3ddad7;
  font-weight: 700;
  text-align: center;
  -webkit-transition: background-color 0.3s cubic-bezier(0.5, 1, 0.89, 1), color 0.3s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  transition: background-color 0.3s cubic-bezier(0.5, 1, 0.89, 1), color 0.3s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  transition: background-color 0.3s cubic-bezier(0.5, 1, 0.89, 1), color 0.3s cubic-bezier(0.5, 1, 0.89, 1), transform 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  transition: background-color 0.3s cubic-bezier(0.5, 1, 0.89, 1), color 0.3s cubic-bezier(0.5, 1, 0.89, 1), transform 0.2s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.2s cubic-bezier(0.5, 1, 0.89, 1);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .confirm__button {
    width: 150px;
    height: 50px;
  }
}
@media screen and (min-width: 1025px) {
  .confirm__button {
    width: 180px;
    height: 60px;
  }
}

.confirm__button:hover,
.confirm__button:focus-visible,
.confirm__button:active {
  background: #3ddad7;
  color: #fff;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.confirm__button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.confirm-table {
  table-layout: fixed; /* td の幅を th に合わせて固定 */
  width: 100%; /* 親幅いっぱいに */
  text-align: left;
  font-size: 0.9rem;
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .confirm-table {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .confirm-table {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1025px) {
  .confirm-table {
    max-width: 800px;
    margin: 0 auto;
  }
}

.confirm-table th {
  width: 100px;
  font-weight: 500;
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .confirm-table th {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .confirm-table th {
    width: 180px;
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .confirm-table th {
    width: 230px;
    font-size: 1.1rem;
  }
}

.confirm-table td {
  word-break: break-word;
  white-space: normal;
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .confirm-table td {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .confirm-table td {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .confirm-table td {
    font-size: 1.1rem;
  }
}

.confirm__footer--wrapper {
  display: block;
}

.footer__content-tf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.thankyou__text {
  margin-bottom: 50px;
}

.contact__inner {
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact__inner {
    padding: 30px;
    max-width: 740px;
  }
}
@media screen and (min-width: 1025px) {
  .contact__inner {
    padding: 30px;
    max-width: 900px;
  }
}

footer {
  background-color: #5e5e5e;
}

.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.footer__wrapper li {
  margin-top: 4px;
}
@media screen and (min-width: 1025px) {
  .footer__wrapper li {
    margin-top: 8px;
  }
}
@media screen and (min-width: 1025px) {
  .footer__wrapper {
    gap: 50px;
  }
}

.footer__company {
  padding-right: 10px;
}

.footer__title {
  width: 150px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__title {
    width: 250px;
  }
}
@media screen and (min-width: 1025px) {
  .footer__title {
    width: 350px;
  }
}

.footer__title-right {
  min-width: 170px;
}
@media screen and (min-width: 1025px) {
  .footer__title-right {
    width: 350px;
  }
}

.footer__content-title {
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__content-title {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1025px) {
  .footer__content-title {
    font-size: 1.2rem;
  }
}

.footer__contact-wrapper {
  margin-top: 10px;
}

.footer__menu-wrapper {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 414px) {
  .footer__menu-wrapper {
    display: block;
  }
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .footer__menu-wrapper {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .footer__menu-wrapper {
    gap: 60px;
  }
}

.footer__content {
  color: #fff;
  font-size: 0.8rem;
}
@media screen and (max-width: 414px) {
  .footer__content {
    font-size: 0.82rem;
  }
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .footer__content {
    font-size: 0.82rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__menu-left,
  .footer__menu-right {
    min-width: 200px;
  }
}
@media screen and (min-width: 1025px) {
  .footer__menu-left,
  .footer__menu-right {
    min-width: 250px;
  }
}

.footer__menu-small {
  font-size: 0.9rem;
  display: block;
  margin-left: 20px;
}
@media screen and (max-width: 414px) {
  .footer__menu-small {
    font-size: 0.8rem;
  }
}

.footer__content-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__content-l {
  font-size: 1rem;
  color: #fff;
}
@media screen and (max-width: 414px) {
  .footer__content-l {
    font-size: 0.7rem;
  }
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .footer__content-l {
    font-size: 0.85rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__content-l {
    font-size: 0.85rem;
  }
}

.company__name {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .company__name {
    font-size: 1rem;
  }
}

.copyright {
  margin-top: 20px;
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
}

.footer__link.is-visible {
  opacity: 1;
  visibility: visible;
}

.footer__link.is-stop {
  position: absolute;
  bottom: auto;
  top: -100px; /* フッターからどれくらい離すか */
}

a.btn_25 {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  overflow: hidden;
  text-decoration: none;
  height: 4rem;
  width: 145px;
  margin: auto;
  padding: 5px;
  border-radius: 24px;
  background: #2a93d5;
  background-size: 400%;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  opacity: 0;
  color: #fff;
  z-index: 0;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  /* アクセシビリティ配慮 */
}
a.btn_25:focus-visible {
  outline: 3px solid #3ddad7;
  outline-offset: 2px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  a.btn_25 {
    height: 4rem;
    width: 180px;
  }
}
@media screen and (min-width: 1025px) {
  a.btn_25 {
    height: 4rem;
    width: 180px;
  }
}

/* 共通の「反応」状態 */
a.btn_25:hover,
a.btn_25:focus-visible,
a.btn_25:active {
  color: #fff;
}

/* 擬似要素のアニメーションも共通化 */
a.btn_25:hover::before,
a.btn_25:focus-visible::before,
a.btn_25:active::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

a.btn_25 span {
  position: relative;
  z-index: 1;
}

a.btn_25::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(82.3deg, #3ddad7 10.8%, #2a93d5 94.3%);
  -webkit-transition: -webkit-transform 0.475s ease;
  transition: -webkit-transform 0.475s ease;
  transition: transform 0.475s ease;
  transition: transform 0.475s ease, -webkit-transform 0.475s ease;
  z-index: -1;
}

.flatpickr-calendar {
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: "Noto Sans JP", sans-serif;
}

.flatpickr-day {
  border-radius: 6px;
  font-size: 14px;
}
.flatpickr-day:hover {
  background: rgba(42, 147, 213, 0.8);
  color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #2a93d5;
  border-color: #2a93d5;
  color: #fff;
}

.flatpickr-day.today {
  border-color: #2a93d5;
}
.flatpickr-day.today:hover {
  background: #2a93d5;
  color: #fff;
}

.flatpickr-weekdays {
  background: #edfafd;
}

.flatpickr-weekday {
  color: #fff;
  font-weight: 600;
}