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

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", serif;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  width: 100%;
  color: #202020;
  padding-top: 80px; /* ヘッダー固定に合わせて高さに応じて設定 */
}
@media screen and (min-width: 1120px) {
  body {
    line-height: 1.5;
    padding-top: 80px; /* ヘッダー固定に合わせて高さに応じて設定 */
  }
}
body img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.inner {
  width: 100%;
  margin: 0px auto;
  padding: 50px 20px;
}
@media screen and (min-width: 1120px) {
  .inner {
    padding: 100px 0px;
  }
}

/* ページ内リンクのオフセット調整 */
[id] {
  scroll-margin-top: 80px;
  scroll-padding-top: 80px;
}

.secction-head {
  text-align: center;
}

.secction-head__title-en {
  font-family: Roboto;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1; /* 32px */
  text-transform: capitalize;
}
@media screen and (min-width: 1120px) {
  .secction-head__title-en {
    font-size: 6.2rem;
  }
}

.secction-head__title-ja {
  margin-bottom: 30px;
}
@media screen and (min-width: 1120px) {
  .secction-head__title-ja {
    font-size: 1.8rem;
    margin-bottom: 70px;
  }
}

.text-white {
  color: #fdfdfd;
}

.hidden-pc {
  display: block;
}
@media screen and (min-width: 1120px) {
  .hidden-pc {
    display: none;
  }
}

.hidden-m {
  display: none;
}
@media screen and (min-width: 1120px) {
  .hidden-m {
    display: block;
  }
}

.hidden-sp {
  display: none;
}
@media screen and (min-width:768px) {
  .hidden-sp {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .hidden-bigpage {
    display: none;
  }
}

.is-checked {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.reserve-hidden {
  display: none;
}

.header {
  height: 80px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 1000;
  background: #FDFDFD; /* ヘッダーの背景色を設定（推奨） */
}

.header--hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.header__inner {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 1120px) {
  .header__inner {
    max-width: 1440px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.header__logo {
  width: 156px;
}
@media screen and (min-width: 1120px) {
  .header__logo {
    width: 200px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 1120px) {
  .header__nav {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
}

.header__nav li {
  padding: 15px;
}

.header__nav a {
  font-size: 1.4rem;
  font-weight: 700;
}
.header__nav a:hover {
  color: #599cc2;
}

.header__bar {
  position: relative;
  margin-left: 10px;
}
.header__bar::before {
  content: "";
  width: 1px;
  height: 32px;
  background-color: #599cc2;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -10px;
}

.header__bar a:hover {
  color: #202020;
}
.header__bar a:hover::after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 3px solid #599cc2;
}

.main-visual {
  background: url(../img/mv_bg.png);
  background-size: cover;
}
@media screen and (min-width: 1120px) {
  .main-visual {
    background: url(../img/mv_bg-pc.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    height: 766px;
  }
}

@media screen and (min-width:768px) {
  .main-visual__inner {
    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: 20px;
  }
}
@media screen and (min-width: 1120px) {
  .main-visual__inner {
    display: block;
    max-width: 1120px;
    padding-top: 122px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.main-visual__text {
  color: #fdfdfd;
  margin-bottom: 42px;
}
@media screen and (min-width: 1120px) {
  .main-visual__text {
    margin-bottom: 0;
  }
}

.main-visual__text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1; /* 28px */
}
@media screen and (min-width: 1120px) {
  .main-visual__text h2 {
    font-size: 5.2rem;
  }
}

.fv-big {
  color: #599cc2;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 1120px) {
  .fv-big {
    font-size: 7.2rem;
  }
}

.main-visual__text p {
  margin-top: 10px;
  margin-bottom: 12px;
}
@media screen and (min-width: 1120px) {
  .main-visual__text p {
    font-size: 1.8rem;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

.main-visual__text img {
  width: 204px;
}
@media screen and (min-width: 1120px) {
  .main-visual__text img {
    width: 306px;
  }
}

@media screen and (min-width: 1120px) {
  .main-visual__btn {
    display: none;
  }
}

.main-task {
  background: #fdfdfd;
  padding: 32px 0 23px 0px;
}
@media screen and (min-width:768px) {
  .main-task {
    padding: 20px 0 20px 0px;
    position: absolute;
    width: 87.5%;
    max-width: 900px;
    top: 375px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 84px;
  }
}
@media screen and (min-width: 1120px) {
  .main-task {
    padding: 30px 0 30px 0px;
    top: 88%;
  }
}

.main-task__logo {
  display: none;
}
@media screen and (min-width:768px) {
  .main-task__logo {
    display: block;
    width: 136px;
    height: 140px;
  }
}

.main-task__container {
  width: 270px;
  margin: 0 auto;
}
@media screen and (min-width:768px) {
  .main-task__container {
    width: 360px;
    margin: 0;
  }
}

.main-task h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (min-width: 1120px) {
  .main-task h3 {
    font-size: 2.4rem;
    margin-bottom: 17px;
  }
}

.main-task ul {
  width: 100%;
  list-style: none;
  margin: 0 auto;
}
@media screen and (min-width: 1120px) {
  .main-task ul {
    width: 267px;
    margin: 0 auto;
  }
}

.main-task ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-task ul li::before {
  content: "";
  background-image: url(../img/check-icon.png);
  background-size: cover;
  display: block;
  width: 16.568px;
  height: 10.178px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 6px;
}
@media screen and (min-width: 1120px) {
  .main-task ul li::before {
    margin-right: 10px;
  }
}

.main-task ul li + li {
  margin-top: 6px;
}
@media screen and (min-width: 1120px) {
  .main-task ul li + li {
    margin-top: 12px;
  }
}

footer {
  padding: 22px 20px;
  background: #202020;
  color: #fdfdfd;
}
@media screen and (min-width: 1120px) {
  footer {
    padding: 45px 50px 30px;
  }
}

footer a:hover {
  color: #599cc2;
}

@media screen and (min-width: 1120px) {
  .footer__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer__logo {
  display: none;
}
@media screen and (min-width: 1120px) {
  .footer__logo {
    display: block;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.footer__link,
.footer__info-link {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 5px 15px;
}

.footer__bar {
  border-left: 1px solid #fdfdfd;
}

.footer__copyright-wreapper {
  margin-top: 11px;
}
@media screen and (min-width: 1120px) {
  .footer__copyright-wreapper {
    margin-top: 30px;
  }
}

@media screen and (min-width: 1120px) {
  .footer__copyright-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 10px;
  }
}

.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 5%;
}

.footer__copyright {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

footer p {
  font-size: 1.4rem;
}

.reason {
  background-color: #F5F5F5;
}
@media screen and (min-width:768px) {
  .reason {
    padding-top: 104px;
    padding-bottom: 35px;
  }
}

.reason__wrapper {
  margin-top: 30px;
}
@media screen and (min-width:768px) {
  .reason__wrapper {
    padding-top: 35px;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1120px) {
  .reason__wrapper {
    max-width: 100%;
  }
}

@media screen and (min-width: 1120px) {
  .reason__card-body {
    position: relative;
    z-index: 99;
  }
  .reason__card-body::after {
    content: "";
    background-color: #FDFDFD;
    display: block;
    width: 69.4444444444%;
    height: 400px;
    position: absolute;
    top: -35px;
    right: 0;
    z-index: -1;
  }
}

@media screen and (min-width: 1120px) {
  .reason__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 329px;
    max-width: 1200px;
    margin: 0 auto;
  }
}

.reason__card-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (min-width: 1120px) {
  .reason__card-body-row::after {
    content: "";
    left: 0;
  }
}

.reason__card-body + .reason__card-body {
  margin-top: 53px;
}
@media screen and (min-width: 1120px) {
  .reason__card-body + .reason__card-body {
    margin-top: 145px;
  }
}

.reason__img {
  width: 100%;
  height: 216px;
}
@media screen and (min-width: 1120px) {
  .reason__img {
    width: 457px;
    height: 100%;
  }
}

.reason__container {
  margin-top: 19px;
}
@media screen and (min-width: 1120px) {
  .reason__container {
    margin-top: 30px;
    width: 560px;
    padding-left: 100px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 1120px) {
  .reason__container-row {
    margin-top: 12px;
    padding-left: 0;
    padding-right: 100px;
  }
}

.reason__number {
  color: #599cc2;
  font-family: Roboto;
  font-weight: 700;
}
@media screen and (min-width: 1120px) {
  .reason__number {
    font-size: 1.8rem;
  }
}

.reason__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.reason__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: #599CC2;
  margin-top: 20px;
}

.contact {
  background: #F5F5F5;
}

@media screen and (min-width:768px) {
  .form {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1120px) {
  .form {
    max-width: 900px;
    margin: 0 auto;
  }
}

.form__header-text {
  max-width: 700px;
  margin: 0 auto 30px;
}
@media screen and (min-width: 1120px) {
  .form__header-text {
    margin: 0 auto 45px;
  }
}

.label {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

select,
input,
textarea {
  color: #A1A1A1;
  width: 100%;
  border: 1px solid #D9D9D9;
}

.form__text {
  padding-left: 20px;
}

select,
input {
  height: 46px;
}

textarea {
  height: 92px;
}

.contact__item {
  display: block;
}

.contact__item + .contact__item {
  margin-top: 20px;
}
@media screen and (min-width: 1120px) {
  .contact__item + .contact__item {
    margin-top: 31px;
  }
}

.contact span {
  color: #fdfdfd;
  font-size: 1.4rem;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 20px;
  padding: 0px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: #599CC2;
  margin-right: 8px;
}
@media screen and (min-width: 1120px) {
  .contact span {
    height: 28px;
    gap: 4px;
  }
}

.contact__check {
  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;
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1120px) {
  .contact__check {
    margin-bottom: 50px;
  }
}

.contact__check-box {
  -moz-appearance: none;
       appearance: none; /* デフォルトのチェックボックスを非表示にする */
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  border: 1px solid #D9D9D9;
  background: #FDFDFD;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px; /* ラベルとの間隔 */
}

.contact__check-box:checked {
  background-color: #599cc2; /* チェック時の背景色 */
  position: relative;
}

.contact__check-box:checked::after {
  content: "✔"; /* チェックマーク */
  color: white;
  font-size: 10px;
  position: absolute;
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.contact__item-privacy {
  margin-top: 20px;
}
@media screen and (min-width: 1120px) {
  .contact__item-privacy {
    margin-top: 46px;
  }
}

.form__privacy-text {
  max-width: 700px;
  margin: 0 auto 30px;
}
@media screen and (min-width: 1120px) {
  .form__privacy-text {
    margin: 0 auto;
  }
}

.pickup {
  background-image: url(../img/pickup_bg.png);
  background-size: cover;
  position: relative;
}

.pickup__wrapper {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 422px;
}
@media screen and (min-width: 1120px) {
  .pickup__wrapper {
    max-width: 966px;
  }
}

.pickup__container {
  display: block;
  border-radius: 15px;
  background: #FDFDFD;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; /* 子要素を縦に配置 */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; /* 上下に余白を均等に配置 */
  border-radius: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.pickup__img {
  width: 100%;
  height: 170px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 15px 15px 0 0;
}

.pickup__title {
  text-align: center;
  margin: 20px 0;
}

.pickup__text {
  font-size: 1.4rem;
  padding: 0 30px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; /* テキスト部分が伸縮して高さを合わせる */
  height: 120px;
}
@media screen and (min-width: 1120px) {
  .pickup__text {
    height: 100px;
  }
}

/* スライダー全体の中央配置と横幅の調整 */
.swiper {
  margin: 0 auto; /* 中央に配置 */
  height: 430px;
}
@media screen and (min-width: 1120px) {
  .swiper {
    width: 966px; /* 幅を固定 */
  }
}

/* スライド間の余白を制御 */
.swiper-slide {
  font-size: 18px;
  max-width: 300px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.swiper-wrapper {
  width: 100%;
  height: auto !important;
  margin-top: 50px;
}

/* 共通のスタイル */
.swiper-button-prev, .swiper-button-next {
  opacity: 0;
  width: 40px !important; /* ボタンのサイズを調整 */
  height: 40px !important;
  border-radius: 50%; /* 丸い背景 */
  background-color: white; /* 背景を白に */
  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;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* ボックスシャドウで浮き上がる感じ */
}
@media screen and (min-width:768px) {
  .swiper-button-prev, .swiper-button-next {
    opacity: 1;
  }
}

.swiper-button-prev:after, .swiper-button-next:after {
  font-size: 16px; /* 矢印アイコンのサイズ */
  color: #599cc2; /* 矢印を青色に */
}

/* 左矢印用 */
.swiper-button-prev {
  position: absolute !important;
  top: 55% !important;
  left: 11% !important;
  -webkit-transform: translateY(-11%);
          transform: translateY(-11%);
}

.swiper-button-prev:after {
  content: "\f104"; /* Font Awesomeの左矢印アイコン */
  font-family: "Font Awesome 5 Free"; /* Font Awesomeが必要です */
  font-size: 10px !important;
  font-weight: 900;
}

/* 右矢印用 */
.swiper-button-next {
  top: 55% !important;
  right: 11% !important;
  -webkit-transform: translateY(-11%);
          transform: translateY(-11%);
}

.swiper-button-next:after {
  content: "\f105"; /* Font Awesomeの右矢印アイコン */
  font-family: "Font Awesome 5 Free";
  font-size: 10px !important;
  font-weight: 900;
}

.swiper-pagination {
  position: absolute;
  top: 410px !important;
  left: 0 !important;
  z-index: 99;
}

.swiper-pagination-bullet {
  cursor: pointer;
  background: #FDFDFD !important;
  opacity: 1 !important;
  width: 8px !important;
  height: 8px !important;
}
@media screen and (min-width: 1120px) {
  .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
  }
}

.swiper-pagination-bullet-active {
  cursor: pointer;
  background: #599cc2 !important;
}

.cta {
  background-image: url(../img/cta_background.png);
  background-size: cover;
}

@media screen and (min-width: 1120px) {
  .cta__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1160px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.cta__container {
  padding: 20px 20px 17px 20px;
  border-radius: 15px;
  border: 1px solid #FDFDFD;
  background: #FDFDFD;
  /* card */
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width:768px) {
  .cta__container {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1120px) {
  .cta__container {
    width: 100%;
    max-width: 545px;
    padding: 50px 0 43px;
  }
}

.cta__container + .cta__container {
  margin-top: 26px;
}
@media screen and (min-width: 1120px) {
  .cta__container + .cta__container {
    margin-top: 0;
    margin-left: 30px;
  }
}

.cta__container p {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (min-width: 1120px) {
  .cta__container p {
    font-size: 1.8rem;
    margin-bottom: 32px;
  }
}

.cta__container-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cta__container-right::before {
  content: "";
  background-image: url(../img/ribon-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 1120px) {
  .cta__container-right::before {
    width: 50px;
    height: 50px;
  }
}

.function {
  background: #F5F5F5;
}

@media screen and (min-width:768px) {
  .function__wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1120px) {
  .function__wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 32px;
  }
}

.function__card {
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #F5F5F5;
  background: #FDFDFD;
  /* card */
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 1120px) {
  .function__card {
    max-width: 434px;
  }
}

.function__card + .function__card {
  margin-top: 27px;
}
@media screen and (min-width: 1120px) {
  .function__card + .function__card {
    margin-top: 0;
  }
}

.function__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.function__img {
  width: 36px;
  height: 36px;
}

.function__title {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (min-width: 1120px) {
  .function__title {
    font-size: 2.4rem;
  }
}

.function__text {
  font-size: 14px;
}

.price {
  position: relative; /* 相対配置を設定 */
}

.price__scroll {
  position: absolute;
  top: 100px;
  right: 20px;
  z-index: 100;
  width: 100px;
  font-weight: 700;
  text-align: center;
  display: none; /* 初期状態は非表示 */
}

.price__scroll p {
  margin-top: -10px;
}

.table-scroll {
  overflow-x: auto;
}

.price__wrapper {
  max-width: 1096px;
  margin: 46px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
}

.price__container-wrapper {
  border: 6px solid #599cc2;
}

.price__container-head {
  width: 150px;
  max-width: 376px;
  padding-bottom: 6px;
  -ms-flex-negative: 0;
      flex-shrink: 0; /* 要素が縮まないように設定 */
}
@media screen and (min-width: 1120px) {
  .price__container-head {
    width: 100%;
  }
}

.price__container {
  width: 220px;
  padding: 30px 20px;
  text-align: center;
}
@media screen and (min-width: 1120px) {
  .price__container {
    width: 220px;
  }
}

.price__head + .price__head {
  margin-left: 8px;
}

.price__th-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 21px;
  line-height: 1.5;
}

.font-roboto {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.price__th {
  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;
  width: 100%;
  height: 35px;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (min-width: 1120px) {
  .price__th {
    font-size: 1.6rem;
    height: 44px;
  }
}

.price__th-02 {
  height: 60px;
}
@media screen and (min-width: 1120px) {
  .price__th-02 {
    height: 44px;
  }
}

.price__th-text {
  font-size: 1.4rem;
  height: 96px;
  margin-bottom: 16px;
}
@media screen and (min-width: 1120px) {
  .price__th-text {
    font-size: 1.6rem;
    margin-bottom: 13px;
  }
}

.price__th-m {
  font-size: 1.8rem;
  height: 72px;
  margin-bottom: 16px;
}
@media screen and (min-width: 1120px) {
  .price__th-m {
    margin-bottom: 13px;
  }
}
.price__th-m span {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
}

.price__th-attention {
  font-size: 18px;
  font-weight: 700;
}

.price-check::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url(../img/check-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.check-none::after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  background-image: url(.../img/check-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.price-check__container li:nth-child(odd),
.price__container-head li:nth-child(odd) {
  background-color: #F5F5F5; /* 好きな背景色 */
}

.price__title-wrapper {
  padding-right: 20px;
  margin: 43px auto 0;
}
@media screen and (min-width: 1120px) {
  .price__title-wrapper {
    max-width: 860px;
    margin: 77px auto 0;
  }
}

.price__title {
  font-weight: 700;
  border-bottom: 1px solid #599cc2;
  padding-bottom: 2px;
  margin-bottom: 8px;
}
@media screen and (min-width: 1120px) {
  .price__title {
    font-size: 1.8rem;
  }
}

.price__text-bold {
  font-weight: 700;
  margin-bottom: 10px;
}

.price-text-blue {
  color: #599cc2;
}

.question {
  background: #F5F5F5;
  color: #000;
}

.vision {
  background-image: url(../img/vision_background-sp.jpg);
  background-size: cover;
}
@media screen and (min-width: 1120px) {
  .vision {
    background-image: url(../img/vision_background-pc.jpg);
  }
}

@media screen and (min-width:768px) {
  .vision__wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1120px) {
  .vision__wrapper {
    max-width: 1020px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1120px) {
  .vision__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.vision__card-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.vision__card + .vision__card {
  margin-top: 50px;
}
@media screen and (min-width: 1120px) {
  .vision__card + .vision__card {
    margin-top: 120px;
  }
}

@media screen and (min-width: 1120px) {
  .vision__img {
    width: 400px;
    height: 300px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.vision__container {
  margin-top: 24px;
}
@media screen and (min-width: 1120px) {
  .vision__container {
    margin-top: 0;
  }
}

.vision__title {
  color: #599cc2;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (min-width: 1120px) {
  .vision__title {
    font-size: 3.2rem;
    margin-bottom: 30px;
  }
}

.vision__text + .vision__text {
  margin-top: 16px;
}
@media screen and (min-width: 1120px) {
  .vision__text + .vision__text {
    margin-top: 20px;
  }
}

.company {
  background-image: url(../img/company-background-\ sp.png);
  background-size: cover;
  color: #fdfdfd;
}
@media screen and (min-width: 1120px) {
  .company {
    background-image: url(../img/company-background-\ pc.png);
  }
}

@media screen and (min-width:768px) {
  .company__wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1120px) {
  .company__wrapper {
    max-width: 900px;
    margin: 0 auto;
  }
}

.company__container {
  margin-top: 50px;
  padding-left: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid #FDFDFD;
}
@media screen and (min-width: 1120px) {
  .company__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 88px;
    padding-left: 0px;
  }
}

.company__container + .company__container {
  margin-top: 18px;
}
@media screen and (min-width: 1120px) {
  .company__container + .company__container {
    margin-top: 21px;
  }
}

.company__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (min-width: 1120px) {
  .company__title {
    width: 200px;
    text-align: center;
    margin-bottom: 0;
  }
}

.company__text-address {
  margin-top: 8px;
}
@media screen and (min-width: 1120px) {
  .company__text-address {
    margin-top: 0;
  }
}

.company__text-address + .company__text-address {
  margin-top: 20px;
}

.company__container-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 38px;
}

.company__container-executive p + p {
  margin-top: 10px;
}

.breadcrumb {
  display: block;
  width: 100%;
  color: #CA7F13;
  background-color: #F9F8F6;
  text-align: left;
  padding-top: 8.5px;
  padding-left: 6px;
  font-family: "Yu Gothic", "游ゴシック", "YuGothic", "Noto Sans JP", "ヒラギノゴシック", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (min-width:768px) {
  .breadcrumb {
    font-family: "Yu Gothic", "游ゴシック", "YuGothic", "Noto Sans JP", "ヒラギノゴシック", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
    padding-top: 17.5px;
    padding-left: 17.5px;
  }
}

.breadcrumb span {
  margin: 0 5px;
}

.breadcrumb__concept {
  background-color: #D4CEBE;
}

@media screen and (min-width:768px) {
  .reserve-breadcrumb {
    padding-left: 7.6388888889%;
    padding-top: 14.5px;
  }
}

.pagination-wrapper {
  text-align: center;
  margin-top: 12px;
}
@media screen and (min-width:768px) {
  .pagination-wrapper {
    margin-top: 36px;
  }
}

.pagination .fa,
.pagination span,
.pagination a {
  margin-right: 5px;
  margin-left: 5px;
  font-family: "Marcellus", serif;
  font-size: 16px;
  letter-spacing: 0.1em;
}
@media screen and (min-width:768px) {
  .pagination .fa,
  .pagination span,
  .pagination a {
    font-family: "Marcellus", serif;
    font-size: 32px;
    letter-spacing: 0.1em;
  }
}

.fa-angle-left:before {
  margin-right: 10px;
  font-size: 16px;
}

.fa-angle-right:before {
  margin-left: 10px;
  font-size: 16px;
}

.contact-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 14px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* テキストをボタン中央に配置 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 700;
  width: 100%;
  max-width: 385px;
  margin: 0 auto;
  text-align: center;
  position: relative; /* relative指定で::beforeを固定 */
  padding-left: 50px; /* アイコン用に左側の余白を確保 */
}

.contact-btn::before {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  left: 10px; /* アイコンの固定位置 */
}

.btn-blue {
  color: #fdfdfd;
  border: 2px solid #FDFDFD;
  background: #599cc2;
}
.btn-blue::before {
  content: "";
  background-image: url(../img/icon_people.png);
  background-size: cover; /* アイコン画像のサイズ */
  background-position: center; /* アイコンを中央に配置 */
}
.btn-blue:hover {
  border: 2px solid #599cc2;
  background: #FDFDFD;
  color: #599cc2;
}

.btn-white {
  color: #202020;
  border: 2px solid #202020;
  background: #FDFDFD;
}
.btn-white::before {
  content: "";
  background-image: url(../img/icon_forward_to_inbox.png);
}
.btn-white:hover {
  border: 2px solid #202020;
  background: #202020;
  color: #fdfdfd;
}

.header__btn {
  display: block;
  text-align: center;
  width: 200px;
  padding: 16px;
}
.header__btn::before {
  display: none;
}

.contact-btn + .contact-btn {
  margin-top: 25px;
}

.contact__submit-btn {
  color: #fdfdfd;
  font-size: 1.4rem;
  font-weight: 700;
  width: 100%;
  height: 60px;
  line-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 50px;
  background: #599CC2;
}
@media screen and (min-width:768px) {
  .contact__submit-btn {
    width: 326px;
    height: 53px;
    line-height: 53px;
    margin: 0 auto;
  }
}

.drawer-content__btn {
  margin-top: 60px;
  width: 300px;
  margin: 60px auto 0;
}

.price__head-btn {
  font-size: 1.4rem;
  padding: 10px 0;
  border-radius: 50px;
}

.back-btn {
  /* 最初は非表示にしておく */
  display: none;
  cursor: pointer;
  background-color: #31452d;
  opacity: 0.8;
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-transition: all 1s ease;
  transition: all 1s ease; /* アニメーションの時間とイージングを指定 */
  z-index: 60;
  /* ホバー時に不透明度を上げる */
}
@media screen and (min-width: 1120px) {
  .back-btn {
    right: 40px;
    bottom: 50px;
    width: 80px;
    height: 80px;
  }
}
.back-btn:hover {
  opacity: 1;
}

.fa-angle-up::before {
  content: "\f106";
  color: #fdfdfd;
  font-size: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 1120px) {
  .fa-angle-up::before {
    font-size: 46px;
  }
}

/* ホバー時に不透明度を上げる */
.back-btn:hover {
  opacity: 1;
}

.drawer-icon__nav {
  display: block;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 1120px) {
  .drawer-icon__nav {
    display: none;
  }
}

.drawer-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 30px;
  border-radius: 40px;
  position: relative;
  z-index: 50;
}
.drawer-icon:hover {
  opacity: 0.7;
}
.drawer-icon__text-sp {
  color: #202020;
  font-family: "Yu Mincho", "游明朝体", "游明朝", "YuMincho", "Noto Serif JP", "Yu Mincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-right: 12px;
}
@media screen and (min-width: 1120px) {
  .drawer-icon__text-sp {
    display: none;
  }
}
@media screen and (min-width: 1120px) {
  .drawer-icon__text-pc {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .drawer-icon__text-pc i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 18px;
    height: 20.57px;
    color: #fff;
    margin-left: 24px;
    margin-right: 26px;
  }
}
.drawer-icon__text-pc p {
  color: #202020;
  font-family: "Yu Mincho", "游明朝体", "游明朝", "YuMincho", "Noto Serif JP", "Yu Mincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.drawer-icon.is-checked__text-sp {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 3px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 3px;
}
.drawer-icon__body {
  position: relative;
  width: 44px;
  z-index: 50;
}
.drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background: #202020;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  top: 0px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 8px;
}
.drawer-icon__hidden {
  display: none;
}

.top-logo {
  width: 128px;
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.top-logo.is-checked {
  opacity: 1;
  z-index: 999;
}

.drawer-content {
  width: 100%;
  height: 100vh;
  background: #FDFDFD;
  position: fixed;
  top: 78px;
  right: 0;
  z-index: 40;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}
@media screen and (min-width: 1120px) {
  .drawer-content {
    display: none;
  }
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.drawer-content__nav-item {
  text-align: center;
}
.drawer-content__menu {
  margin-top: 50px;
}
.drawer-content__link span {
  font-family: "Lora", serif;
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 7px;
  margin-left: 10px;
}
.drawer-content__link:hover {
  color: #fff;
  text-shadow: -1px 1px 5px #31452d, 1px -1px 5px #31452d;
}

.drawer-content__nav-item + .drawer-content__nav-item {
  margin-top: 30px;
}

.drawer__inner {
  width: 375px;
  padding: 11px 10px 0px 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 0px;
  right: 0;
}

.drawer-content__contact {
  color: #eb9616;
}
.drawer-content__contact:hover {
  color: #fdfdfd;
}

.no-scroll {
  overflow: hidden;
}

/* fadeUp */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

/*==================================================
アコーディオンのためのcss
===================================*/
.accordion__content-q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.accordion__content-q-body, .accordion__content-a-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
}
@media screen and (min-width:768px) {
  .accordion__content-q-body, .accordion__content-a-body {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.accordion__content-q-head, .accordion__content-a-head {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #599cc2;
}
@media screen and (min-width: 1120px) {
  .accordion__content-q-head, .accordion__content-a-head {
    font-size: 2.4rem;
  }
}
.accordion__content-q-text {
  font-weight: 700;
  width: 85.7142857143%;
}
@media screen and (min-width: 1120px) {
  .accordion__content-q-text {
    font-size: 1.8rem;
  }
}
.accordion__content-a-text {
  font-weight: 400;
}
@media screen and (min-width: 1120px) {
  .accordion__content-a-text {
    font-size: 1.4rem;
  }
}
.accordion__content-a {
  display: none;
}
.accordion .caret {
  position: absolute;
  top: 20px;
  right: 0;
}

.accordion__inner {
  padding: 28px 10px 72px 10px;
}
@media screen and (min-width: 1120px) {
  .accordion__inner {
    padding: 22px 10px 72px 10px;
  }
}

.accordion__content-a-body {
  position: relative;
}
.accordion__content-a-body::after {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
@media screen and (min-width: 1120px) {
  .accordion__content-a-body::after {
    top: -47px;
  }
}

/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  max-width: 500px;
  margin: 0 auto;
  color: #202020;
  margin-top: 30px;
}
@media screen and (min-width: 1120px) {
  .accordion-area {
    max-width: 895px;
  }
}
@media screen and (min-width: 1120px) {
  .accordion-area {
    margin: 30px auto 0px;
  }
}

.accordion-area li {
  background: #fdfdfd;
  border-radius: 15px;
  /* card */
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.accordion__content-wrapper + .accordion__content-wrapper {
  margin-top: 31px;
}
@media screen and (min-width: 1120px) {
  .accordion__content-wrapper + .accordion__content-wrapper {
    margin-top: 30px;
  }
}

/*アコーディオンタイトル*/
.accordion-title {
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 20px;
}
@media screen and (min-width: 1120px) {
  .accordion-title {
    padding: 30px 30px 30px 46px;
  }
}
.accordion-title:hover {
  text-shadow: -1px 1px 5px #fff, 1px -1px 5px #fff;
  color: #599cc2;
}

.accordion__content-q-text {
  position: relative;
}

.accordion__content-q-text::after {
  content: "";
  background-image: url(../img/Union-01.png); /* －  アイコン */
  background-size: cover;
  display: block;
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -29px;
}
@media screen and (min-width: 1120px) {
  .accordion__content-q-text::after {
    right: -82px;
  }
}

/* .is-open クラスがついているときに表示する － アイコン */
.accordion__content-wrapper.is-open .accordion__content-q-text::after {
  background-image: url(../img/Union-02.png); /* + アイコン */
  display: block;
  width: 24px;
  height: 3px;
}

/* .is-open クラスがついているときのQの余白設定 */
.accordion__content-wrapper.is-open .accordion__content-q-body {
  padding-bottom: 12px;
}

/*アコーディオンで現れるエリア*/
.box {
  margin-top: 20px;
  padding: 0px 20px 20px 20px;
}
@media screen and (min-width: 1120px) {
  .box {
    padding: 0px 30px 20px 46px;
    margin-top: 0px;
  }
  .box::before {
    content: "";
    border-top: 2px solid #599cc2;
    display: block;
    padding-top: 12px;
  }
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
}

/*　背景画像設定　*/
.slick-dots {
  display: none !important;
}

.account {
  position: absolute;
  top: 0px;
  right: 50px;
  padding-top: 130px;
}

.account__inner {
  display: none;
}
@media screen and (min-width: 1120px) {
  .account__inner {
    display: block;
    width: 320px;
    background-color: #FDFDFD;
    padding: 24px 20px;
  }
}

.account-contact__item {
  width: 236px;
  margin: 0 auto;
}

.account__container + .account__container {
  margin-top: 5px;
}

.account-from__label {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 150%; /* 18px */
  margin-bottom: 4px;
}

.account-form__text {
  font-size: 1.2rem;
  border-radius: 5px;
  border: 1px solid #D9D9D9;
  background: #F5F5F5;
  padding-left: 10px;
}

.account__container-check-box {
  font-size: 1.2rem;
  padding: 15px 0 10px;
}

.account__check-box {
  width: 10px;
  height: 10px;
  margin-right: 8px;
}

.account-from__blue {
  color: #599cc2;
}

.account-from__btn p {
  width: 80%;
  font-size: 1.2rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 17px 0;
}
.account-from__btn p::before, .account-from__btn p::after {
  content: "";
  display: block;
  width: 102px;
  height: 1px;
  background: #202020;
}