@charset "UTF-8";
/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

a {
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* リストのリセット */
ul,
ol {
  list-style: none;
}

dl,
dd {
  margin-bottom: 0;
}

li {
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

p {
  margin-bottom: 0;
}

/* ベース */
html {
  scroll-behavior: smooth; /* スムーズスクロールを有効化 */
  scroll-padding-top: 96px; /* ヘッダーの高さ */
}

body.active {
  overflow: hidden;
}
/* 予約 */
.header.edel-flex.edel-flex-end {
	margin-top: 10px;
}

/* 旅ともCSS */
/* SP・PC表示/非表示 */
@media (max-width: 768px) {
  .sp_hidden {
    display: none !important;
  }
}

.sp_visible {
  display: none !important;
}
@media (max-width: 768px) {
  .sp_visible {
    display: block !important;
  }
}

@media (min-width: 990px) {
  .pc_hidden {
    display: none !important;
  }
}

@media (max-width: 990px) {
  .tab_hidden {
    display: none !important;
  }
}

/* レイアウト */
.l-inner {
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 6%;
}
@media (max-width: 990px) {
  .l-inner {
    padding: 0 3%;
  }
}
@media (max-width: 768px) {
  .l-inner {
    padding: 0 5.33%;
  }
}

.l-section {
  padding-block: 80px;
}
.l-section.--low {
  padding-block: 50px;
}
.l-section.--faq {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media (max-width: 768px) {
  .l-section.--faq {
    gap: 40px;
  }
}
.l-section.--front-faq {
  padding-bottom: 160px;
}
@media (max-width: 768px) {
  .l-section.--front-faq {
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .l-section {
    padding-block: 40px;
  }
  .l-section.--low {
    padding-block: 40px;
  }
  .l-section.--icon {
    padding-block: 90px 40px;
  }
}

.l-faq-section {
  padding-block: 50px;
}
@media (max-width: 768px) {
  .l-faq-section {
    padding-block: 30px;
  }
}

.l-faq-contents {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 768px) {
  .l-faq-contents {
    gap: 30px;
  }
}

.l-contents {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 768px) {
  .l-contents {
    gap: 30px;
  }
}
.l-contents.--staff {
  gap: 80px;
}
@media (max-width: 768px) {
  .l-contents.--staff {
    gap: 30px;
  }
}

/* 共通パーツ */
.c-title {
  color: #333;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.c-title.--left {
  margin-inline: 0 auto;
}
@media (max-width: 768px) {
  .c-title {
    font-size: 24px;
  }
  .c-title.--left {
    margin-inline: auto;
  }
}

.c-title.--sub {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .c-title.--sub {
    font-size: 20px;
    padding-left: 34px;
  }
}

.c-title.--small {
  font-size: 24px;
  font-weight: 700;
  color: #044b98;
  padding-block: 12px;
}

.c-title.--icon {
  padding-left: 43px;
  position: relative;
}

.c-title.--icon02 {
  padding-left: 50px;
}

.c-title.--icon::before,
.c-title.--icon02::before,
.c-title.--icon03::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
}

.c-title.--icon03 {
  padding-left: 50px;
}
@media (max-width: 768px) {
  .c-title.--icon03 {
    padding-left: 34px;
  }
}

@media (max-width: 768px) {
  .c-title.--icon03::before {
    width: 24px;
    height: 24px;
  }
}

.c-title.--tour-schedule::before {
  background-image: url(../images/front/icon-time.svg);
}

.c-title.--tour-accommodation::before {
  background-image: url(../images/front/icon-ger.svg);
}

.c-title.--tour-voice::before {
  background-image: url(../images/front/voice-title.png);
}

.c-title.--tour-travel-note {
  position: absolute;
  top: 5%;
  left: 0;
}
@media (max-width: 768px) {
  .c-title.--tour-travel-note {
    position: relative;
  }
}

.c-title.--tour-travel-note::before {
  background-image: url(../images/front/icon-book.svg);
}

.c-title.--tour-experience::before {
  background-image: url(../images/front/icon-star.svg);
}

.c-title.--tour-tabitomo span {
  color: #c62728;
}

.c-title.--tour-tabitomo::before {
  background-image: url(../images/front/icon-tabitomo.png);
}

.c-title.--faq::before {
  background-image: url(../images/front/icon-faq.svg);
}

.c-title.--faq01::before {
  background-image: url(../images/faq/faq-look.png);
}

.c-title.--faq02::before {
  background-image: url(../images/faq/faq-calendar.png);
}

.c-title.--faq03::before {
  background-image: url(../images/faq/faq-flag.png);
}

.c-title.--faq04::before {
  background-image: url(../images/faq/faq-pass.png);
}

.c-title.--faq05::before {
  background-image: url(../images/faq/faq-car.png);
}

.c-title.--faq06::before {
  background-image: url(../images/faq/faq-money.png);
}

.c-title.--faq07::before {
  background-image: url(../images/faq/faq-bed.png);
}

.c-title.--faq08::before {
  background-image: url(../images/faq/faq-gel.png);
}

.c-title.--faq09::before {
  background-image: url(../images/faq/faq-gel.png);
}

.c-title.--faq10::before {
  background-image: url(../images/faq/faq-tent.png);
}

.c-title.--faq11::before {
  background-image: url(../images/faq/faq-horse.png);
}

.c-title.--faq12::before {
  background-image: url(../images/faq/faq-clothes.png);
}

.c-title.--tour-ranking::before {
  background-image: url(../images/front/ranking-title.png);
}

.c-title.--contact::before {
  background-image: url(../images/contact/icon-mail.png);
}

.c-title.--tag-search {
  padding-inline: 66px;
  position: relative;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .c-title.--tag-search {
    font-size: 14px;
    padding-inline: 34px;
  }
}

.c-title.--tag-search::before {
  background-image: url(../images/front/tag-title.png);
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 59px;
}
@media (max-width: 768px) {
  .c-title.--tag-search::before {
    width: 28px;
    height: 29px;
  }
}

.c-title.--tag-search::after {
  background-image: url(../images/front/tag-title.png);
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 59px;
}
@media (max-width: 768px) {
  .c-title.--tag-search::after {
    width: 28px;
    height: 29px;
  }
}

@media (max-width: 768px) {
  .c-title.--youtube {
    padding-left: 0;
  }
}

.c-title.--youtube::before {
  background-image: url(../images/front/youtube-title.png);
  width: 40px;
  height: 40px;
}
@media (max-width: 768px) {
  .c-title.--youtube::before {
    top: -50px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

.c-title.--voice::before {
  background-image: url(../images/front/voice-icon.png);
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.c-btn {
  border-radius: 100px;
  border: 2px solid #044b98;
  background: #fff;
  display: flex;
  width: 335px;
  padding-block: 16px;
  padding-inline: 36px 44px;
  justify-content: center;
  align-items: center;
  color: #044b98;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .c-btn {
    display: flex;
    width: 234px;
    height: 56px;
    padding-inline: 8px 36px;
    font-size: 14px;
  }
}
@media (any-hover: hover) {
  .c-btn:hover {
    opacity: 0.7;
  }
}

.c-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  width: 30px;
  height: 30px;
  background-image: url(../images/front/btn-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .c-btn::before {
    width: 24px;
    height: 24px;
    right: 12px;
  }
}

.c-btn.center {
  margin-inline: auto;
}

.c-btn.line {
  background-color: #06c755;
  border-color: #06c755;
  color: #fff;
  padding-inline: 66px 44px;
}

.c-btn.line::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url(../images/front/icon-line.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.c-btn.line::before {
  background-image: url(../images/front/line-arrow.svg);
}

@media (max-width: 768px) {
  .c-btn.--tel {
    color: #c62728;
    font-family: Inter;
    font-size: clamp(1.25rem, -0.932rem + 10.91vw, 1.625rem);
    font-weight: 900;
    letter-spacing: 1.82px;
    line-height: 0.9;
    padding-inline: 70px 22px;
    border-color: #c62728;
  }
}

@media (max-width: 768px) {
  .c-btn.--tel::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .c-btn.--tel::after {
    content: "";
    position: absolute;
    width: 38px;
    height: 38px;
    background-image: url(../images/front/icon-tel_sp.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.c-btn.--reservation {
  border-color: #c62728;
  background-color: #c62728;
  color: #fff;
  width: 328px;
}
@media (max-width: 768px) {
  .c-btn.--reservation {
    padding-inline: 24px 44px;
  }
}

.c-btn.--reservation::before {
  background-image: url(../images/front/arrow-red.svg);
  width: 30px;
  height: 30px;
}

.c-btn.--tabitomo {
  padding-inline: 14px 44px;
  width: 328px;
}
@media (max-width: 768px) {
  .c-btn.--tabitomo {
    padding-inline: 14px 44px;
  }
}

.c-btn.--tabitomo::before {
  width: 30px;
  height: 30px;
}

@media (max-width: 768px) {
  .c-btn.--footer_btn {
    width: 100%;
    max-width: 335px;
    margin-inline: auto;
  }
}

.c-btn.--faq {
  flex-wrap: wrap;
  /* width: 234px; */
  width: calc(33% - 14px);
  padding-inline: 11px 44px;
}
@media (max-width: 768px) {
  .c-btn.--faq {
    width: calc(50% - 8px);
    padding-inline: 12px 46px;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}

.c-btn.--faq.--sub {
  flex: 1;
  max-width: 254px;
}
@media (max-width: 768px) {
  .c-btn.--faq.--sub {
    width: 155px;
  }
}

.c-btn.--faq::before {
  width: 30px;
  height: 30px;
  background-image: url(../images/faq/dawn-arrow.svg);
}

.c-btn.--thinking {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
  padding-inline: 14px 44px;
}
@media (max-width: 768px) {
  .c-btn.--thinking {
    padding-inline: 12px 40px;
    width: 285px;
  }
}

.c-btn.--thinking::before {
  background-image: url(../images/front/btn-arrow-w.svg);
}

.c-tel {
  color: #333;
  font-family: Inter;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1.28px;
  display: flex;
  flex-direction: column;
  padding-left: 50px;
  position: relative;
}

.c-tel::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-image: url(../images/front/icon-tel.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 44px;
  height: 44px;
}

.c-tel span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

.c-tel .ja {
  font-size: 14px;
  font-family: "Noto Sans JP";
}

.c-tour__tag {
  display: inline-flex;
  padding-inline: 20px 10px;
  padding-block: 4px;
  /* padding: 4px 10px; */
  align-items: center;
  border-radius: 100px;
  border: 1px solid #044b98;
  background: #fff;
  color: #044b98;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1; /* 12px */
  position: relative;
}
@media (any-hover: hover) {
  .c-tour__tag:hover {
    background-color: #044b98;
    color: #fff;
  }
}
@media (max-width: 768px) {
  .c-tour__tag {
    font-size: 10px;
    padding-inline: 18px 10px;
  }
}
@media (max-width: 768px) {
  .c-tour__tag.--header {
    font-size: 12px;
    border: none;
    background-color: transparent;
  }
}

.c-tour__tag.no-link {
  pointer-events: none;
}

.c-tour__tag::before {
  content: "＃";
  position: absolute;
  display: inline-block;
  font-size: 12px;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .c-tour__tag::before {
    font-size: 10px;
  }
}

.c-tour__date {
  color: #5287c1;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.u-title-wrap {
  padding-block: 50px;
}
@media (max-width: 768px) {
  .u-title-wrap {
    padding-block: 30px;
  }
}

/* メルマガフォーム */
.guest-subscribe-wrapper {
  margin-inline: 0;
  margin-block: 13px 0;
}

.guest-subscribe-wrapper input[type=submit] {
  background-color: #044b98;
}

/*MV*/
.l-main {
  background-color: #fff;
}

.l-main.--faq {
  margin-top: 90px;
}
@media (max-width: 990px) {
  .l-main.--faq {
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .l-main.--faq {
    margin-top: 64px;
  }
}

.l-main.--page {
  margin-top: 96px;
}
@media (max-width: 768px) {
  .l-main.--page {
    margin-top: 73px;
  }
}

.l-main.--home {
  margin-top: 64px;
}
@media (max-width: 990px) {
  .l-main.--home {
    margin-top: 36px;
  }
}
@media (max-width: 768px) {
  .l-main.--home {
    margin-top: 24px;
  }
}

/* ぱんくず */
.breadcrumb {
  position: -webkit-sticky;
  position: sticky;
  top: 96px;
  left: 0;
  width: 100%;
  z-index: 9;
  transition: translate 0.5s ease;
  padding: 11px 0;
}
@media (max-width: 990px) {
  .breadcrumb {
    top: 70px;
  }
}

@media (max-width: 768px) {
  .breadcrumb-title {
    display: inline-block;
    width: 180px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}

.breadcrumb ul {
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: scroll;
}

.breadcrumb ul::-webkit-scrollbar {
  display: none;
}

.container-fluid {
  max-width: 1200px;
}

.breadcrumb.js-slide-up {
  translate: 0 -270%;
}

.breadcrumb ul li {
  font-size: 14px;
}

/* ヘッダー */
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  padding: 0 clamp(0.625rem, -10.144rem + 16.83vw, 5rem);
  background-color: #fff;
  z-index: 10;
  transition: translate 0.5s ease;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  /* overflow-y: clip; */
}
.p-header.js-slide-up {
  translate: 0 -50%;
}
@media (max-width: 990px) {
  .p-header {
    height: 73px;
    overflow-y: visible;
  }
}

/* 固定ヘッダーが表示されたときのスタイル */
#js-header.is-show {
  top: 0; /* 隠していたヘッダーを表示 */
}

.p-header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
}
@media (max-width: 990px) {
  .p-header__wrap {
    display: block;
  }
}

.p-header__logo {
  display: flex;
  align-items: center;
  height: inherit;
  transition: transform 0.5s ease;
  transform-origin: left center;
}
.p-header__logo.js-slide-up {
  transform: translateY(20%) scale(0.6);
}

.p-header__logo a {
  display: block;
}

@media (max-width: 990px) {
  .p-header__logo img {
    width: 175px;
    height: 60px;
  }
}

.p-header__nav {
  display: flex;
  align-items: center;
  height: inherit;
  transition: transform 0.5s ease;
}
@media (max-width: 990px) {
  .p-header__nav {
    opacity: 0;
    visibility: hidden;
    flex-direction: column;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    height: calc(100svh - 73px);
    overflow-y: scroll;
    background-color: #fff;
  }
}
@media screen and (min-width: 991px) {
  .p-header__nav.js-slide-up {
    transform: translateY(20%);
  }
}

.p-header__nav.active {
  opacity: 1;
  visibility: visible;
}

.p-header__list {
  display: flex;
  align-items: center;
  height: inherit;
  margin-bottom: 0;
}
@media (max-width: 990px) {
  .p-header__list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    height: auto;
    padding-block: 24px;
    padding-inline: 24px;
    background-color: #ffffd4;
  }
}

.p-header__item {
  height: inherit;
  position: relative;
}

.p-header__item.--tabitomo {
  position: relative;
}

.p-header__item.--tabitomo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/tabitomo/tabitomo.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 86px;
  height: 39px;
}

@media (max-width: 990px) {
  .p-header__item.--tabitomo::before {
    display: none;
  }
}
.p-header__item a {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-family: "Noto Sans";
  font-size: clamp(0.75rem, 0.135rem + 0.96vw, 1rem);
  font-weight: 700;
  line-height: 1.5;
  padding-inline: 16px;
}
@media (max-width: 990px) {
  .p-header__item a {
    border-radius: 100px;
    border: 2px solid #044b9b;
    background: #fff;
    padding: 10px 16px;
    gap: 2px;
    color: #044b98;
    text-align: center;
    font-size: clamp(0.688rem, -0.813rem + 7.5vw, 0.875rem);
    justify-content: flex-start;
  }
}

.p-header__item a span {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 990px) {
  .p-header__item a span {
    white-space: nowrap;
  }
}

.p-header__item a .red {
  color: #c62728;
}

@media (max-width: 990px) {
  .sp_order1 {
    order: 1;
  }
}

@media (max-width: 990px) {
  .sp_order2 {
    order: 2;
  }
}

@media (max-width: 990px) {
  .sp_order3 {
    order: 3;
  }
}

@media (max-width: 990px) {
  .sp_order4 {
    order: 4;
  }
}

@media (max-width: 990px) {
  .sp_order5 {
    order: 5;
  }
}

@media (max-width: 990px) {
  .sp_order6 {
    order: 6;
  }
}

.p-header__sub-list {
  position: absolute;
  width: 300px;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 10px;
  filter: drop-shadow(0px 2.672px 6.68px rgba(0, 0, 0, 0.25));
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.p-header__item.--sub > a {
  position: relative;
  padding-right: 32px;
}
@media (max-width: 990px) {
  .p-header__item.--sub > a {
    padding-right: 16px;
  }
}

.p-header__item.--sub > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/front/open-arrow.svg);
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 990px) {
  .p-header__item.--sub > a::after {
    display: none;
  }
}

.p-header__item.--sub:hover .p-header__sub-list {
  opacity: 1;
  visibility: visible;
}

.p-header__sub-list::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 10.4px 6px;
  border-color: transparent transparent #ffffff transparent;
  z-index: 10;
}
@media (max-width: 990px) {
  .p-header__sub-list::after {
    display: none;
  }
}

.p-header__sub-item {
  border-bottom: 1px dashed #5287c1;
  position: relative;
}

.p-header__sub-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background-image: url(../images/front/white-arrow.svg);
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-header__sub-item:last-of-type {
  border-bottom: none;
}

.p-header__sub-item a {
  padding: 8px 16px;
  justify-content: flex-start;
}

.p-header__blog-list {
  display: none;
}
@media (max-width: 990px) {
  .p-header__blog-list {
    display: block;
    width: 100%;
    margin-top: 32px;
    padding-inline: 24px;
    margin-bottom: 0;
  }
}

.p-header__blog-item {
  border-bottom: 1px dashed #5287c1;
  position: relative;
}

.p-header__blog-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background-image: url(../images/front/white-arrow.svg);
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 990px) {
  .p-header__blog-item a {
    display: block;
    color: #333;
    font-family: "Noto Sans";
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    padding: 8px 16px;
    justify-content: flex-start;
  }
}

.p-header__tag {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 20px;
  align-self: stretch;
  flex-wrap: wrap;
  padding-inline: 24px;
  background-color: #fff;
  padding-top: 32px;
}

.p-header__tag-list {
  margin-bottom: 0;
}

.p-header__tag-title {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen {
  .p-header__tag-title {
    margin-bottom: 0;
  }
}

.p-header__btn {
  height: inherit;
  padding-inline: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 990px) {
  .p-header__btn {
    height: auto;
    padding-inline: 24px;
    justify-content: flex-start;
    width: 100%;
    background-color: #fff;
    padding-top: 32px;
  }
}

.p-header__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Noto Sans";
  font-size: clamp(0.75rem, 0.135rem + 0.96vw, 1rem);
  font-weight: 700;
  line-height: 1.5;
  background-color: #044b98;
  padding-inline: 16px;
  padding-block: 8px;
  border-radius: 100px;
}
@media (max-width: 990px) {
  .p-header__btn a {
    padding: 10px 16px;
    font-size: 14px;
    width: 154px;
  }
}

/* ドロワー */
.c-drawer-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  width: 24px;
  height: 24px;
  padding: 5px 2px 6px 2px;
  transition: transform 0.5s ease;
  cursor: pointer;
}
@media (min-width: 991px) {
  .c-drawer-icon {
    display: none;
  }
}
.c-drawer-icon.js-slide-up {
  transform: translateY(20%);
}

.c-drawer-icon span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #333;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.c-drawer-icon span:nth-of-type(1) {
  top: 5px;
}

.c-drawer-icon span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.c-drawer-icon span:nth-of-type(3) {
  bottom: 5px;
}

.c-drawer-icon.active span:nth-of-type(1) {
  transform: translateX(-50%) rotate(45deg);
  top: 11px;
}

.c-drawer-icon.active span:nth-of-type(2) {
  opacity: 0;
}

.c-drawer-icon.active span:nth-of-type(3) {
  transform: translateX(-50%) rotate(-45deg);
  bottom: 11px;
}

/* フロー */
.p-flow {
  background: url(../images/home/bg-steps.png) 50% 50%/cover no-repeat;
}
@media (max-width: 768px) {
  .p-flow {
    background: url(../images/front/bg-steps_sp.png) 50% 50%/cover no-repeat;
  }
}

.p-flow__heading {
  color: #fff;
}

@media (max-width: 768px) {
  .p-flow__wrap {
    overflow-x: scroll;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-inline: 5.33% 0;
  }
}

.p-flow__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 48px;
}
@media (max-width: 768px) {
  .p-flow__list {
    width: 1080px;
    padding-right: 5.33%;
    box-sizing: content-box;
  }
}

.p-flow__item {
  background-color: #e5edf5;
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  padding: 16px 20px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}
@media (max-width: 768px) {
  .p-flow__item {
    width: 234px;
  }
}

.p-flow__item:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-10%);
  left: -34px;
  background-image: url(../images/front/flow-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 30px;
}

.p-flow__item img {
  margin-inline: auto;
}

.p-flow__item h3 {
  color: #103a58;
  text-align: center;
  font-size: 24px;
}
@media (max-width: 768px) {
  .p-flow__item h3 {
    font-size: 20px;
  }
}

.p-flow__item p {
  color: #333;
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-flow__item p {
    font-size: 14px;
  }
}

.p-flow__item p span {
  color: #757575;
  font-size: 14px;
}
@media (max-width: 768px) {
  .p-flow__item p span {
    font-size: 12px;
  }
}

.p-flow__item:last-of-type {
  background-color: #f4f98b;
}

/* フッター */
.p-footer {
  background-color: #fff;
  padding-block: 50px;
  border-top: 1px solid #dadada;
}

.l-footer__contents {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .l-footer__contents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 30px;
  }
}

.p-footer__list {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .p-footer__list {
    gap: 16px;
  }
}

@media (max-width: 990px) {
  .p-footer__list:nth-of-type(1) {
    grid-column: 1/2;
  }
}
@media (max-width: 990px) and (max-width: 768px) {
  .p-footer__list:nth-of-type(1) {
    grid-column: 1/3;
  }
}

@media (max-width: 990px) {
  .p-footer__list:nth-of-type(2) {
    grid-column: 2/3;
  }
}
@media (max-width: 768px) {
  .p-footer__list:nth-of-type(2) {
    grid-column: 1/2;
  }
}

@media (max-width: 990px) {
  .p-footer__list:nth-of-type(3) {
    grid-column: 1/3;
  }
}
@media (max-width: 768px) {
  .p-footer__list:nth-of-type(3) {
    grid-column: 2/3;
  }
}

.p-footer__link {
  color: #333;
  font-family: "Noto Sans";
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.p-footer__link.--bold {
  font-weight: 700;
  font-size: 16px;
}

.p-footer__link.--icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-footer__link.--in {
  padding-left: 18px;
  position: relative;
}

.p-footer__link.--gray {
  color: #757575;
  font-size: 12px;
}
@media (max-width: 768px) {
  .p-footer__link.--gray {
    font-size: 10px;
  }
}

.p-footer__link.--in::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 10px;
  height: 1px;
  background: #044b98;
}

.p-footer__icon-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 24px 40px;
}
@media (max-width: 768px) {
  .p-footer__icon-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}

.p-footer__link-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 990px) {
  .p-footer__link-wrap {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .p-footer__link-wrap {
    display: flex !important;
    flex-direction: column;
    margin-top: 40px;
  }
}

.p-footer__bottom {
  padding-block: 48px;
  background-color: #e5edf5;
}

@media (max-width: 768px) {
  .p-footer__link-wrap.bottom {
    display: none !important;
  }
}

.l-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 768px) {
  .l-footer__bottom {
    flex-direction: column;
    gap: 30px;
  }
}

.p-footer__bottom-logo {
  display: block;
}
@media (max-width: 768px) {
  .p-footer__bottom-logo {
    width: 94%;
    order: 1;
  }
}

.p-footer__left {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
@media (max-width: 768px) {
  .p-footer__left {
    display: contents;
  }
}

.p-footer__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .p-footer__right {
    display: contents;
  }
}

@media (max-width: 768px) {
  .p-footer__mail {
    order: 5;
  }
}

.p-footer__btn-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .p-footer__btn-wrap {
    order: 3;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .p-footer__bottom-info {
    order: 2;
  }
}

.p-footer__bottom-info p,
.p-footer__bottom-info a {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  font-family: "Mgen+ 1p";
}

.p-footer__bottom-info p span {
  font-weight: 500;
}

p.p-footer__bottom-tel span {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  font-family: "Mgen+ 1p";
  display: inline-block;
  text-decoration: underline;
}

.p-footer__bottom-info p span.small {
  font-size: 16px;
}

.p-footer__bottom-sns {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .p-footer__bottom-sns {
    order: 4;
  }
}

.p-footer__bottom-sns p {
  color: #044b98;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-weight: 700;
  white-space: pre;
}

.p-footer__bottom-sns a {
  display: block;
}

@media (max-width: 768px) {
  .p-footer__tel-caption {
    color: #c62728;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    margin-top: -6px;
  }
}

@media (max-width: 768px) {
  .p-footer__tel-caption span {
    font-family: Inter;
  }
}

.p-footer__caption {
  margin-bottom: 32px;
  max-width: 335px;
  margin-inline: auto;
  padding-block: 10px;
  border-top: 1px solid #757575;
  border-bottom: 1px solid #757575;
}
@media (max-width: 768px) {
  .p-footer__caption {
    margin-bottom: 0;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.p-footer__caption li {
  position: relative;
  padding-left: 14px;
  color: #757575;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-footer__caption li {
    font-size: 12px;
  }
}

.p-footer__caption li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/* コピーライト */
.p-copyright {
  background-color: #044b98;
  padding-block: 30px;
}
@media (max-width: 768px) {
  .p-copyright {
    padding-block: 20px;
  }
}

.p-copyright small {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  display: block;
  text-align: center;
}
@media (max-width: 768px) {
  .p-copyright small {
    font-size: 10px;
  }
}