/*----------------
  ガイドブックLP | 202507 追加LP
----------------*/
/*--------------------------------------------------
 Setting
--------------------------------------------------*/
:root {
  --color-base: #fff;
  --color-main: #00aeeb;
  --color-secondary: #ff8500;
  --color-accent: #56b544;
  --bg-white: #fff;
  --bg-gray: #f3f7f8;
  --bg-grayDark: #d6dee8;
  --bg-green: #00aeeb;
  --text-white: #fff;
  --text-black: #000;
  --text-orange: #ff5c00;
  --text-gray: #808080;
  --text-alert: #f00;
  --text-success: #008000;
  --text-link: #00f;
  --text-link-hover: #00008b;
  --text-green: #00aeeb;
  --text-hover: #02a5d8;
  --border-black: #000;
  --border-white: #fff;
  --border-gray: #dcdcdc;
  --border-grayDark: #a9a9a9;
  --border-red: #f00;
  --border-pink: #ffc0cb;
  --border-green: #00aeeb;
  --button-disabled: #d3d3d3;
  --button-error: #f00;
  --button-success: #008000;
  --button-warning: #fc0;
  --button-info: #1e90ff;
  --shadow: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.16));
  --header-height-pc: 82px;
  --header-height-sp: 66px;
}

/*
  ----------------
  ユーティリティー
  ----------------
*/
.u-container {
  position: relative;
  padding: 0 15px;
}

@media all and (min-width: 768px) {
  .u-container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 40px;
  }
}

.u-visually-hidden {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  height: 1px;
  width: 1px;
}

/*
  ----------------
  レスポンシブ用のユティリティー
  ----------------
*/
@media all and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

.sp-tab-only {
  display: none !important;
}

@media all and (max-width: 960px) {
  .sp-tab-only {
    display: block !important;
  }
}

.tab-pc-only {
  display: none !important;
}

@media all and (min-width: 961px) {
  .tab-pc-only {
    display: block !important;
  }
}

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

/*--------------------------------------------------
 Main
--------------------------------------------------*/
/*
  ----------------
  Base styles
  ----------------
  */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: var(--text-black);
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  overflow-x: hidden;
}

@media all and (min-width: 768px) {
  body {
    min-width: 960px;
  }
}

main {
  background-color: #ddf4fe;
}

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

a {
  cursor: pointer;
}

a::before,
a::after {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (any-hover: hover) {
  a:hover {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
  }

  a:hover:hover {
    opacity: 0.7;
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
  }
}

/*
  ----------------
  追従CTA
  ----------------
  */
.fixed-cta {
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
  width: 100vw;
  z-index: 10;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

@media all and (min-width: 768px) {
  .fixed-cta {
    display: none;
  }
}

.fixed-cta.is-show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* === ヘッダー ========================== */
.header {
  background-color: var(--bg-white);
  width: 100vw;
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

@media all and (min-width: 768px) {
  .header {
    min-height: 125px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
}

@media all and (min-width: 768px) {
  .guidebook6-3 .header {
    background-color: transparent;
  }
}

.header__container {
  padding: 10px 10px 6px;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media all and (min-width: 768px) {
  .header__container {
    gap: 20px;
    padding: 19px 34px;
  }
}

.header__logo {
  flex-shrink: 0;
}

.header__logo-img {
  width: 109px;
}

@media all and (min-width: 768px) {
  .header__logo-img {
    width: 186px;
  }
}

@media all and (min-width: 768px) {
  .header__right {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 36px;
  }
}

@media all and (max-width : 767px) {
  .header__cta {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 2px;
  }
}

@media all and (min-width: 768px) {
  .header__cta {
    max-width: 404px;
  }
}

.header__note {
  font-size: 9px;
  letter-spacing: 0;
}

@media all and (min-width: 768px) {
  .header__contact {
    max-width: 465px;
  }
}

.footer {
  background-color: #fff;
}

.footer__container {
  padding: 34px 10px 110px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 40px;
}

@media all and (min-width: 768px) {
  .footer__container {
    padding: 57px 40px 37px;
    gap: 46px;
  }
}

.footer__head {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 25px;
}

@media all and (min-width: 768px) {
  .footer__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    gap: 50px;
  }
}

.footer__link {
  color: #636363;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-decoration: underline;
}

@media all and (min-width: 768px) {
  .footer__link {
    font-size: 16px;
  }
}

.footer__copy {
  color: #636363;
  font-size: 11px;
}

@media all and (min-width: 768px) {
  .footer__copy {
    font-size: 14px;
  }
}

.hero {
  position: relative;
}

@media all and (max-width : 767px) {
  .hero {
    padding-top: 60px;
  }
}

@media all and (min-width: 768px) {
  .hero {
    padding-top: 130px;
    min-height: 1090px;
  }
}

.guidebook6-3 .hero {
  padding-top: 0;
}

.hero__container {
  display: -webkit-box;
  display: flex;
  padding: 36px 10px;
  position: absolute;
  top: 65px;
  width: 100%;
}

@media all and (max-width : 767px) {
  .hero__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

@media all and (min-width: 768px) {
  .hero__container {
    padding: 106px 36px 146px 70px;
    -webkit-box-pack: justify;
    justify-content: space-between;
    gap: 20px;
  }
}

@media all and (max-width : 767px) {
  .hero__bg {
    max-height: 410px;
    overflow: hidden;
  }
}

@media all and (min-width: 768px) {
  .hero__bg {
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
  }
}

@media all and (max-width: 767px) {
  .guidebook6-3 .hero__bg {
    max-height: 500px;
  }
}

.hero__contents {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

@media all and (min-width: 768px) {
  .hero__contents {
    min-width: 605px;
  }
}

@media all and (min-width: 768px) {
  .hero__lead-box {
    background-color: #0074b8;
    border-radius: 10px;
    padding: 9px;
    position: relative;
    max-width: 500px;
  }
}

@media all and (min-width: 768px) {
  .hero__lead-box::before {
    background: url(../images/hero_balloon_arrow.svg) 50%/contain no-repeat;
    content: "";
    height: 30px;
    width: 32px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media all and (min-width: 768px) {
  .hero__lead-label {
    color: #ffea00;
  }
}

.hero__lead-text {
  color: #0074b8;
  font-size: 22px;
  font-weight: 900;
}

@media all and (max-width : 767px) {
  .hero__lead-text {
    line-height: 1.3;
  }
}

@media all and (min-width: 768px) {
  .hero__lead-text {
    color: #fff;
    font-size: 28px;
    text-align: center;
  }
}

.hero__title {
  margin-top: 10px;
}

@media all and (min-width: 768px) {
  .hero__title {
    margin-top: 12px;
  }
}

.hero__title-line {
  position: relative;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .hero__title-line {
    letter-spacing: -4px;
    position: relative;
  }
}

.hero__title-line::before {
  background-color: #ffea00;
  content: "";
  z-index: -1;
  height: 10px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media all and (min-width: 768px) {
  .hero__title-line::before {
    height: 35px;
    bottom: 8px;
    border-radius: 20px;
  }
}

.hero__title-text {
  color: #0074b8;
  font-size: 33px;
  font-weight: 900;
  line-height: 1.3;
  text-shadow: 0px 0px 10.9427px #FFFFFF, 0px 0px 10.9427px #FFFFFF, 0px 0px 10.9427px #FFFFFF;
}

@media all and (min-width: 768px) {
  .hero__title-text {
    font-size: 90px;
    line-height: 1.2;
  }
}

.hero__banner {
  max-width: 300px;
}

@media all and (max-width : 767px) {
  .hero__banner {
    margin-inline: auto;
    width: 90%;
  }
}

@media all and (min-width: 768px) {
  .hero__banner {
    max-width: 751px;
    margin-top: 30px;
  }
}

@media all and (min-width: 768px) {
  .hero__note {
    max-width: 553px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: end;
    align-items: flex-end;
  }
}

.hero__note-text {
  font-size: 12px;
}

@media all and (max-width : 767px) {
  .hero__note-text {
    margin-top: 8px;
  }
}

@media all and (min-width: 768px) {
  .hero__note-text {
    font-size: 13px;
  }
}

.info {
  background-color: #e9f8fe;
}

@media all and (min-width: 768px) {
  .info {
    background: url(../images/info_bg.webp) 50%/cover no-repeat;
  }
}

.info__container {
  padding: 120px 12px 21px;
}

@media all and (min-width: 768px) {
  .info__container {
    padding: 200px 40px 104px;
    max-width: 1140px;
    margin-inline: auto;
    margin-top: -210px;
  }
}

@media all and (min-width: 768px) {
  .guidebook6-1-top .info__container {
    margin-top: 0;
  }
}

@media all and (min-width: 768px) {
  .guidebook6-3 .info__container {
    margin-top: -280px;
  }
}

.info__heading {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 8px;
}

@media all and (min-width: 768px) {
  .info__heading {
    gap: 64px;
  }
}

.info__catch {
  width: 193px;
}

@media all and (min-width: 768px) {
  .info__catch {
    width: 334px;
  }
}

.info__icon img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 63px;
}

@media all and (min-width: 768px) {
  .info__icon img {
    width: 163px;
  }
}

.info__icon.--right img {
  width: 59px;
}

@media all and (min-width: 768px) {
  .info__icon.--right img {
    width: 152px;
  }
}

.info__title {
  color: #02a5d9;
  font-size: 20px;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .info__title {
    margin-top: 16px;
    font-size: 36px;
  }
}

.info__heading-center {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
}

.info__title-sub {
  padding-top: 4px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 4px;
}

@media all and (min-width: 768px) {
  .info__title-sub {
    gap: 7px;
    margin-right: 32px;
    padding-top: 10px;
  }
}

.info__title-sub::before {
  background: url(../images/icon_underline_yellow.svg) 0 50%/contain repeat-x;
  content: "";
  z-index: -1;
  height: 10px;
  width: 100%;
  position: absolute;
  bottom: 8px;
  left: 0;
}

@media all and (min-width: 768px) {
  .info__title-sub::before {
    bottom: 12px;
    height: 17px;
  }
}

.info__number-circle {
  background-color: #02a5d9;
  border-radius: 50%;
  color: #ffea00;
  font-size: 32px;
  font-weight: bold;
  line-height: 0.86;
  padding-bottom: 2px;
  padding-left: 3px;
  height: 48px;
  width: 48px;
  display: grid;
  place-items: center;
}

@media all and (min-width: 768px) {
  .info__number-circle {
    font-size: 52px;
    padding-bottom: 4px;
    padding-left: 4px;
    height: 81px;
    width: 81px;
  }
}

.info__title-text {
  color: #02a5d9;
  font-weight: 900;
  font-size: 26px;
}

@media all and (min-width: 768px) {
  .info__title-text {
    font-size: 44px;
  }
}

.info__card {
  padding-top: 23px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 16px;
}

@media all and (min-width: 768px) {
  .info__card {
    gap: 44px;
    padding-top: 90px;
  }
}

/* === Info Card Section =================== */
.info-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 20px 0px rgb(215, 240, 255);
  position: relative;
}

@media all and (min-width: 768px) {
  .info-card {
    border-radius: 20px;
  }
}

@media all and (min-width: 768px) {
  .info-card::before {
    background-color: #02a5d9;
    content: "";
    height: 3px;
    width: 50px;
    position: absolute;
    top: 87px;
    left: 0px;
  }
}

.info-card__container {
  padding: 20px 12px;
  display: grid;
  gap: 15px;
}

@media all and (min-width: 768px) {
  .info-card__container {
    padding: 60px;
    grid-template-columns: 450px 1fr;
    gap: 20px;
    justify-items: end;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}

.info-card__content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

@media all and (max-width : 767px) {
  .info-card__content {
    -webkit-box-align: center;
    align-items: center;
  }
}

@media all and (min-width: 768px) {
  .info-card__content {
    -webkit-box-flex: 1;
    flex: 1;
    max-width: 520px;
  }
}

.info-card__title {
  color: #02a5d9;
  font-weight: 900;
  font-size: 26px;
  line-height: 1.17;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .info-card__title {
    font-size: 40px;
    margin-top: 48px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}

.info-card__title::before {
  background: url(../images/icon_underline_yellow.svg) 0 50%/contain repeat-x;
  content: "";
  z-index: -1;
  height: 12px;
  width: 100%;
  position: absolute;
  bottom: -3px;
  left: 0;
}

@media all and (min-width: 768px) {
  .info-card__title::before {
    height: 19px;
  }
}

/* サブタイトル */
.info-card__subtitle {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 4px;
}

@media all and (min-width: 768px) {
  .info-card__subtitle {
    gap: 20px;
  }
}

.info-card__subtitle-text {
  color: #02a5d9;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.43;
}

@media all and (min-width: 768px) {
  .info-card__subtitle-text {
    font-size: 36px;
  }
}

.info-card__number-circle {
  background-color: #02a5d9;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  display: grid;
  place-items: center;
}

@media all and (min-width: 768px) {
  .info-card__number-circle {
    height: 57px;
    width: 57px;
  }
}

.info-card__number {
  color: #ffea00;
  font-weight: 700;
  font-size: 20px;
  line-height: 0.88;
  letter-spacing: 0.03em;
  padding-bottom: 1px;
  padding-left: 1px;
}

@media all and (min-width: 768px) {
  .info-card__number {
    font-size: 38px;
    padding-bottom: 4px;
    padding-left: 2px;
  }
}

/* 説明文 */
.info-card__description {
  color: #636363;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.85;
  margin-top: 20px;
}

@media all and (min-width: 768px) {
  .info-card__description {
    font-size: 18px;
    line-height: 2;
    margin-top: 32px;
  }
}

/* 紹介内容ボックス */
.info-card__intro {
  background-color: #f1f5f8;
  border-radius: 10px;
  margin-top: 14px;
  padding: 15px 20px;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 16px;
}

@media all and (max-width : 767px) {
  .info-card__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

@media all and (min-width: 768px) {
  .info-card__intro {
    gap: 16px;
    margin-top: 52px;
    padding: 20px 25px;
  }
}

.info-card__note {
  font-size: 10px;
  margin-top: 10px;
}

@media all and (max-width : 767px) {
  .info-card__note {
    text-align: left;
    width: 100%;
  }
}

@media all and (min-width: 768px) {
  .info-card__note {
    font-size: 13px;
    margin-top: 30px;
  }
}

.info-card__intro-circle {
  background-color: #02a5d9;
  border-radius: 20px;
  padding: 4px;
  width: 220px;
  display: grid;
  place-items: center;
}

@media all and (min-width: 768px) {
  .info-card__intro-circle {
    border-radius: 50%;
    width: 128px;
    height: 128px;
  }
}

.info-card__intro-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

@media all and (min-width: 768px) {
  .info-card__intro-title {
    font-size: 20px;
  }
}

/* チェックリスト */
.info-card__list {
  margin: 0;
  padding-left: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 10px;
}

.info-card__list-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 4px;
}

.info-card__check {
  width: 20px;
  height: 20px;
}

.info-card__list-text {
  color: #636363;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
}

@media all and (min-width: 768px) {
  .info-card__list-text {
    font-size: 18px;
  }
}

.info-card__visual {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

@media all and (max-width : 767px) {
  .info-card__visual {
    -webkit-box-align: center;
    align-items: center;
  }
}

.info-card__images {
  -webkit-box-flex: 1;
  flex: 1;
  max-width: 491px;
}

.info-card.--card03 .info-card__images {
  margin-top: 6px;
}

@media all and (min-width: 768px) {
  .info-card.--card03 .info-card__images {
    margin-top: 30px;
  }
}

.info-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}

.info-card__point {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 8px;
}

@media all and (min-width: 768px) {
  .info-card__point {
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
}

.info-card__point-img {
  height: 46px;
  width: 46px;
}

@media all and (min-width: 768px) {
  .info-card__point-img {
    height: 84px;
    width: 84px;
  }
}

.info-card__point-text {
  color: #02a5d9;
  font-size: 16px;
  font-weight: bold;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 3px;
}

@media all and (max-width : 767px) {
  .info-card__point-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

@media all and (min-width: 768px) {
  .info-card__point-text {
    font-size: 24px;
    flex-wrap: wrap;
  }
}

.info-card__point-text-inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 3px;
}

.info-card__point-text-m {
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}

@media all and (min-width: 768px) {
  .info-card__point-text-m {
    font-size: 34px;
  }
}

.info-card__point-text-l {
  font-size: 35px;
  font-weight: bold;
  line-height: 1;
}

@media all and (min-width: 768px) {
  .info-card__point-text-l {
    font-size: 52px;
  }
}

.info-card__price {
  margin-top: 6px;
  margin-bottom: 10px;
  width: 175px;
}

@media all and (min-width: 768px) {
  .info-card__price {
    margin-top: 15px;
    margin-bottom: 10px;
    width: 265px;
  }
}

.banner {
  background-color: #02a5d9;
  position: relative;
  z-index: 1;
}

@media all and (min-width: 768px) {

  .banner::before,
  .banner::after {
    background: url(../images/banner_bg_icon.svg) 50%/contain no-repeat;
    content: "";
    position: absolute;
    z-index: -1;
    height: 279px;
    width: 291px;
  }
}

.banner::before {
  top: 0;
  left: 0;
}

.banner::after {
  bottom: 0;
  right: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.banner__container {
  padding: 22px 14px 15px;
}

@media all and (min-width: 768px) {
  .banner__container {
    max-width: 825px;
    padding: 50px 40px 20px;
    margin-inline: auto;
  }
}

.banner__body {
  display: -webkit-box;
  display: flex;
  gap: 10px;
}

@media all and (min-width: 768px) {
  .banner__body {
    gap: 18px;
    padding-top: 25px;
    padding-right: 20px;
  }
}

.banner__left {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

@media all and (min-width: 768px) {
  .banner__left {
    width: 100%;
  }
}

@media all and (min-width: 768px) {
  .banner__label {
    max-width: 428px;
  }
}

.banner__link {
  background: -webkit-linear-gradient(top, #ff8400 54.81%, #e17400 100%);
  background: linear-gradient(180deg, #ff8400 54.81%, #e17400 100%);
  border: 3px solid #ffffff;
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  font-size: 35px;
  font-weight: bold;
  margin-top: 12px;
  overflow: hidden;
  padding: 12px 20px 11px 40px;
  position: relative;
  text-decoration: none;
  z-index: 1;
  max-width: 562px;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 15px;
}

@media all and (max-width: 767px) {
  .banner__link {
    font-size: 18px;
    gap: 9px;
    max-width: 300px;
    margin-inline: auto;
    padding-left: 20px;
  }
}

.banner__link::before {
  background: -webkit-linear-gradient(top, #fce830 0%, #fce830 100%);
  background: linear-gradient(to bottom, #fce830 0%, #fce830 100%);
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
  position: absolute;
  inset: 0;
}

@media (hover: hover) and (pointer: fine) {
  a.banner__link:hover {
    opacity: 1;
  }

  a.banner__link:hover::before {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  a.banner__link:hover .banner__link-text {
    color: #02a5d9;
  }
}

.banner__link-text {
  letter-spacing: -1px;
}

.banner__link-icon {
  display: inline-block;
  height: 28px;
  width: 28px;
}

@media all and (max-width: 767px) {
  .banner__link-icon {
    height: 18px;
    width: 18px;
  }
}

@media all and (min-width: 768px) {
  .banner__right {
    max-width: 142px;
  }
}

.banner__footer {
  padding-top: 16px;
}

@media all and (min-width: 768px) {
  .banner__footer {
    padding-top: 8px;
  }
}

.banner__note {
  color: #fff;
  font-size: 10px;
  position: relative;
  padding-left: 20px;
}

@media all and (min-width: 768px) {
  .banner__note {
    font-size: 13px;
    padding-left: 26px;
  }
}

.banner__note::before {
  content: "※1";
  font-size: inherit;

  position: absolute;
  top: 0;
  left: 0px;
}

.banner__note:nth-child(2)::before {
  content: "※2";
}

.form {
  background-color: #ddf4fe;
}

.guidebook6-1-top .form {
  background-color: #ddf4fe;
}

@media all and (min-width: 768px) {
  .guidebook6-1-top .form {
    background: url(../images/info_bg.webp) 50% / cover no-repeat;
  }
}

.form__container {
  padding: 35px 14px 32px;
  position: relative;
}

.guidebook6-1-top .form__container {
  padding: 120px 12px 21px;
}

@media all and (max-width: 767px) {
  .form__container {
    scroll-margin-top: -15px;
  }
}

@media all and (min-width: 768px) {
  .form__container {
    max-width: 942px;
    margin-inline: auto;
    padding: 87px 40px 56px;
  }
}

@media all and (min-width: 768px) {
  .guidebook6-1-top .form__container {
    padding: 240px 40px 104px;
    margin-top: -260px;
  }
}

.form__anchor {
  position: absolute;
  top: 110px;
}

@media all and (min-width: 768px) {
  .form__anchor {
    top: 200px;
  }
}

.form__title {
  color: #636363;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .form__title {
    font-size: 30px;
  }
}

@media all and (max-width: 767px) {
  .form .form_td.form_hyphen {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media all and (max-width: 767px) {
  .form .form_td.form_hyphen {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*
  ----------------
  既存CSS上書き
  ----------------
*/
.form .label_flex_bottom a {
  color: #02a5d9;
}

.form .submit_button {
  background-color: #02a5d9;
}

@media all and (min-width: 768px) {
  a[href^=tel] {
    pointer-events: none !important;
  }
}