@charset "UTF-8";

/*
----------------------------------------
共通CSS
----------------------------------------
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #FFF;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01px;
  line-height: 1.8;
  min-width: 375px;
  width: 100%;
  margin: auto;
}

@media screen and (max-width: 750px) {
  body {
    font-size: 15px;
  }
}

a {
  -webkit-transition: 0.2s;
  color: #222222;
  text-decoration: none;
  transition: 0.2s;
}

a img {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:hover {
  text-decoration: none;
}

button[type=button] {
  background-color: transparent;
  border: none;
}

/* safariに反映させない */
input[type=submit] {
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

.font-serif {
  font-family: "Noto Serif JP", serif;
}

.is-pc {
  display: inline-block;
}

.is-sp {
  display: none;
}

@media screen and (max-width: 750px) {
  .is-pc {
    display: none !important;
  }

  .is-sp {
    display: block !important;
  }
}

.inner {
  margin-inline: auto;
  width: 100%;
  max-width: 1140px;
  padding-inline: 20px;
}

.inner--s {
  max-width: 900px;
}

@media screen and (min-width: 750px) {
  .inner {}
}

.u-scroll-fadeUp {
  opacity: 0;
  transform: translateY(15px);
  transition: all .8s ease;
  visibility: hidden;
}

.u-scroll-show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.primary-bold {
  color: #1C489C;
  font-weight: 700;
}

/*
----------------------------------------
header
----------------------------------------
*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  background-color: #FFF;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 0px 8px 3px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: min(2vw, 50px);
  margin-inline: auto;
  max-width: 1500px;
}

@media screen and (max-width: 750px) {
  .header-inner {
    padding: 6px 10px;
  }

  .header-inner img {
    width: 50px;
  }
}

.header-logo-link {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

@media screen and (max-width: 750px) {
  .header-logo-link {
    font-size: 16px;
    font-weight: 500;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-nav-list {
  display: flex;
  gap: 30px;
}

.header-nav-item {
  position: relative;
}

.header-nav-link {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1C3266;
  padding-block: 34px;
  height: 100%;
  transition: all 0s;
}

.lang-ja .header-nav-link,
.lang-tl .header-nav-link {
  font-weight: 500;
}

@media screen and (max-width: 750px) {
  .header-nav-link {
    font-size: 14px;
  }
}

@media screen and (min-width: 751px) {
  .header-nav-link:hover {
    padding-bottom: 31px;
    border-bottom: 3px solid #1C489C;
  }

  .header-nav-item--has-child .header-nav-link {
    padding-bottom: 34px;
    border-bottom: none;
  }
}

.header-nav-item--has-child {
  position: relative;
  z-index: 9999;
}

.header-nav-item--has-child .header-nav-link {
  position: relative;
  padding: 10px 20px;
  cursor: default;
}

.header-nav-item--has-child .header-nav-link::before {
  position: absolute;
  top: 47%;
  right: 0;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  border-right: 2px solid #1C3366;
  border-bottom: 2px solid #1C3366;
  content: "";
}

@media screen and (max-width: 750px) {
  .header-nav-item--has-child .header-nav-link {
    margin-top: 5px;
  }

  .header-nav-item--has-child .header-nav-link::before {
    top: 42%;
  }
}

.is-menu-open .header-nav-item--has-child .header-nav-link {
  color: #FFF;
}

.is-menu-open .header-nav-item--has-child .header-nav-link::before,
.is-menu-open .submenu-list {
  border-color: #FFF;
}

.header-nav-item--has-child.is-active .header-nav-link::before {
  top: calc(48% + 2px);
  transform: rotate(-135deg);
}

@media screen and (max-width: 750px) {
  .header-nav-item--has-child.is-active .header-nav-link::before {
    top: 48%;
  }
}

.nav__submenu {
  display: flex;
  visibility: hidden;
  z-index: 10;
  position: absolute;
  top: 50px;
  left: -32px;
  width: max-content;
  opacity: 0;
  transition: opacity .3s ease, visibility .3s ease;
}

@media screen and (max-width: 750px) {
  .nav__submenu {
    top: 45px;
    left: -30%;
  }
}

.nav__submenu.is-show {
  visibility: visible;
  opacity: 1;
}

.submenu-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #1C3366;
  border: 1px solid #1C3366;
}

.submenu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 30px;
  gap: 8px;
  background-color: #FFF;
  border-top: 1px solid #1C489C;
  color: #1C489C;
  font-size: 16px;
  transition: background-color .3s ease;
}

@media screen and (max-width: 750px) {
  .submenu__link {
    font-size: 14px;
  }
}

.submenu__link.is-active {
  background-color: #1C489C;
  color: #FFF;
  cursor: default;
}

@media screen and (min-width: 751px) {
  .submenu__link:hover {
    background-color: #1C489C;
    color: #FFF;
  }

  .submenu__link.is-active:hover {
    background-color: #1C489C;
    color: #FFF;
  }
}

.header-menu {
  position: fixed;
  position: relative;
  top: 2px;
  /* top: 12px;
  right: 10px; */
  z-index: 999;
}

.header-menu:hover {
  cursor: pointer;
}

.burger-btn {
  position: relative;
  border: 2px solid #FFF;
  border-radius: 50%;
  background: #1C489C;
  width: 45px;
  height: 45px;
  transition: transform 0.3s, border-color 0.3s, background-color 0.3s;
  z-index: 999;
}

.burger-btn span {
  display: block;
  width: 17px;
  height: 2px;
  background-color: #FFF;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
  margin-inline: auto;
  transition: all 0.3s ease;
}

.burger-btn::before,
.burger-btn::after {
  content: '';
  display: block;
  width: 17px;
  height: 2px;
  background-color: #FFF;
  position: absolute;
  right: 0;
  left: 0;
  margin-inline: auto;
  transition: all 0.3s ease;
}

.burger-btn::before {
  top: 14px;
}

.burger-btn::after {
  top: 26px;
}

/* メニューが開いている時のスタイル */
.burger-btn.is-open {
  border-color: #FFF;
  background-color: transparent;
  transition: all 0.3s ease;
}

.burger-btn.is-open span {
  opacity: 0;
  background-color: #FFF;
}

.burger-btn.is-open::before,
.burger-btn.is-open::after {
  width: 20px;
  top: 49%;
  transform: translateY(-50%);
  background-color: #FFF;
}

.burger-btn.is-open::before {
  transform: rotate(45deg);
}

.burger-btn.is-open::after {
  transform: rotate(-45deg);
}

@media screen and (max-width: 750px) {

  .burger-btn.is-open::before,
  .burger-btn.is-open::after {
    top: 48%;
  }
}

.burger-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100svh;
  visibility: hidden;
  transition: visibility 0.3s, right 0.3s ease;
  background: #1C489C;
  z-index: 998;
  padding: 115px 50px;
}

.burger-menu[aria-hidden="false"] {
  visibility: visible;
  right: 0;
}

.burger-menu-logo {
  position: absolute;
  top: 12px;
  left: 10px;
}

.burger__menu-inner {
  padding: 0 40px 40px;
}

.burger-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.burger-menu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.burger-menu-item {
  border-bottom: 1px solid #FFF;
}

.burger-menu-link {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
  padding-bottom: 10px;
}

@media screen and (min-width: 751px) {
  .burger-menu-link:hover {
    opacity: 0.7;
  }
}

.btn {
  width: fit-content;
  margin-inline: auto;
}

.btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #00489D;
  padding: 7px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #FFF;
  border: 1px solid #00489D;
  position: relative;
  min-width: 248px;
}

@media screen and (min-width: 751px) {
  .btn-link:hover {
    background-color: #FFF;
    color: #00489D;
  }

  .btn-link:hover svg path {
    fill: #00489D;
  }
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 25px;
}

.section.bg-gray+.cta {
  padding-top: 75px;
}

@media screen and (max-width: 750px) {
  .section.bg-gray+.cta {
    padding-top: 40px;
  }
}

.cta-intro {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.cta-ttl {
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
}

.cta-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.cta-btn {}

.cta-btn-link {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 25px;
  background-color: #EE8231;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #FFF;
  padding: 17px 20px;
  border: 2px solid #EE8231;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 750px) {
  .cta-intro {
    flex-direction: column;
    gap: 15px;
  }

  .cta-ttl {
    font-size: 24px;
    line-height: 30px;
  }

  .cta-btn-link {
    font-size: 15px;
    padding: 15px;
  }
}

@media screen and (min-width: 751px) {
  .cta-btn-link:hover {
    background-color: #FFF;
    color: #EE8231;
  }
}

.mt-s {
  margin-top: 20px;
}

.mt-m {
  margin-top: 50px;
}

@media screen and (max-width: 750px) {
  .mt-m {
    margin-top: 40px;
  }
}

/*
----------------------------------------
breadcrumb
----------------------------------------
*/
.breadcrumb {
  overflow-x: auto;
}

.breadcrumbs {
  display: flex;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  color: #C2C2C2;
  border-top: 1px solid #333;
  padding-block: 5px;
  width: max-content;
  min-width: 100%;
}

.breadcrumbs span {
  font-size: 15px;
  color: #00489D;
}

.breadcrumbs a span {
  display: block;
  font-size: 15px;
  color: #C2C2C2;
}

.c-breadcrumb__list {
  display: flex;
  gap: 12px;
}


/*
----------------------------------------
footer
----------------------------------------
*/
.footer {
  background-color: #1C489C;
  color: #FFF;
}

@media screen and (max-width: 750px) {
  .footer {
    padding-bottom: 100px;
  }
}

.footer-inner {
  padding-block: 40px 10px;
}

.footer-body {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

@media screen and (max-width: 750px) {
  .footer-body {
    flex-direction: column;
    gap: 30px;
  }
}

.footer-info {
  font-size: 18px;
  font-weight: 700;
  color: #FFF;

  a {
    color: #FFF;
  }
}

@media screen and (max-width: 750px) {
  .footer-info {
    font-size: 14px;
  }
}

.footer-logo {
  width: fit-content;
}

.sns-list {
  display: flex;
  gap: 30px;
}

@media screen and (max-width: 750px) {
  .sns-list img {
    height: 30px;
  }
}

@media screen and (min-width: 751px) {
  .sns-link:hover {
    opacity: 0.7;
  }
}

.footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}

.footer-menu-item {}

.footer-menu-link {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #FFF;
}

@media screen and (max-width: 750px) {
  .footer-menu-list {
    gap: 10px 25px;
  }

  .footer-menu-link {
    font-size: 14px;
  }
}

@media screen and (min-width: 751px) {
  .footer-menu-link:hover {
    opacity: 0.7;
  }
}

.copyright {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-top: 60px;
}

@media screen and (max-width: 750px) {
  .copyright {
    font-size: 13px;
    margin-top: 40px;
  }
}

/*
----------------------------------------
.cv-btn
----------------------------------------
*/
.cv-btn {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 10;
  background-color: #FFF;
  border-radius: 20px 0 0 20px;
}

.cv-btn-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #EE8231;
  padding: 30px 35px;
  min-width: 180px;
  min-height: 130px;
  border: 3px solid #FFF;
  border-radius: 20px 0 0 20px;
}

.cv-btn-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  position: absolute;
  bottom: 6px;
  right: 8px;
  width: 25px;
  height: 25px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

@media screen and (min-width: 751px) {
  .cv-btn-link:hover {
    padding-right: 80px;
  }
}

.cv-ttl {
  font-size: 25px;
  font-weight: 700;
  color: #FFF;
  line-height: 36px;
}

@media screen and (max-width: 750px) {
  .cv-btn {
    bottom: 10px;
    border-radius: 10px 0 0 10px;
  }

  .cv-btn-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    min-width: 120px;
    min-height: 90px;
    border: 3px solid #FFF;
    border-radius: 10px 0 0 10px;
  }

  .cv-btn-link::after {
    width: 15px;
    height: 15px;
  }

  .cv-ttl {
    font-size: 18px;
    line-height: 24px;
  }
}

/*
----------------------------------------
fv
----------------------------------------
*/
.fv {
  width: 100%;
  padding-bottom: 60px;
  overflow: hidden;
}

@media screen and (max-width: 750px) {
  .fv {
    padding-block: 10px 20px;
  }
}

.fv img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1090 / 620;
  border-radius: 10px;
}

@media screen and (max-width: 750px) {
  .fv img {
    aspect-ratio: 1 / 1;
  }
}

.fv-ttl {
  position: absolute;
  top: min(6vw, 80px);
  left: min(5vw, 64px);
  z-index: 1;
  font-size: min(5vw, 50px);
  font-weight: 700;
  color: #FFF;
  line-height: 1.5;
}

/*
----------------------------------------
スライダー
----------------------------------------
*/
.swiper-wrapper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 100%;
  height: 100%;
}

/* フルスクリーンスライダー */
.slider-full {
  position: relative;
  width: 100vw;
  max-width: 1500px;
  margin-inline: auto;
}

.slider-full .swiper-slide {
  opacity: 0.3;
  transition: opacity 0.3s ease-in-out;
}

.slider-full .swiper-slide-active {
  opacity: 1;
}

.slider-full .wide-pic img {
  aspect-ratio: 1096 / 495;
  object-fit: cover;
  border-radius: 10px;
}

.location-pic img {
  border-radius: 10px;
}

/* アクティブが大きくなるスライダー */
.slider-scale {
  position: relative;
  width: 75vw;
  max-width: 1500px;
  margin-inline: auto;
}

.slider-scale .swiper-slide {
  transform: scale(.8);
  transition: .7s;

  img {
    box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.16);
  }
}

.slider-scale .swiper-slide-active {
  transform: scale(1);
  z-index: 1;
}

.slider-scale .swiper-slide img {
  border-radius: 5px;
}

/* サムネ連動スライダー */
.slider-linkage {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  overflow: hidden;
}

.slider-main {
  flex: 1 0%;
  min-width: 0;
  position: relative;
}

.slider-main .rooms-slider-pic img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 180 / 106;
}

.slider-main .swiper-pagination {
  position: absolute;
  top: auto !important;
  right: 25px !important;
  bottom: 20px !important;
  width: auto;
}

.slider-main .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #FFF;
  border: none !important;
  opacity: 1;
}

.slider-main .swiper-pagination-bullet-active {
  background-color: #00489D;
}

.slider-thumbnail {
  flex: 0 180px;
}

.slider-thumbnail .swiper-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slider-thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 180 / 106;
}

.slider-thumbnail .swiper-slide {
  opacity: 0.3;
  transition: opacity 0.3s;
  cursor: pointer;
}

.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

@media screen and (max-width: 750px) {
  .slider-linkage {
    flex-direction: column;
    gap: 10px;
  }

  .slider-main,
  .slider-thumbnail {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  .slider-thumbnail {
    margin-inline: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    display: block;
    white-space: nowrap;
  }

  .slider-thumbnail .swiper-wrapper {
    flex-direction: row;
    gap: 10px;
    width: auto;
    min-width: fit-content;
    display: flex;
  }

  .slider-thumbnail .swiper-slide {
    flex-shrink: 0;
    width: 100px;
  }

  .slider-thumbnail img {
    width: 100%;
    height: auto;
    max-width: 100%;
    aspect-ratio: 180 / 106;
  }
}

.swiper-button-next,
.swiper-button-prev {
  width: 3.2vw;
  height: 3.2vw;
  min-width: 45px;
  min-height: 45px;
  border-radius: 50%;
  background-color: #FFF;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next {
  right: -0.5vw;
}

.swiper-button-prev {
  left: -0.5vw;
}

.room-slider .swiper-button-next {
  right: 7vw;
}

.room-slider .swiper-button-prev {
  left: 7vw;
}

@media screen and (max-width: 750px) {

  .news-slider .swiper-button-next,
  .news-slider .swiper-button-prev {
    display: none;
  }

  .room-slider .swiper-button-next {
    right: -7vw;
  }

  .room-slider .swiper-button-prev {
    left: -7vw;
  }
}

.swiper-button-prev::before,
.swiper-button-next::before {
  content: '';
  width: 0.6vw;
  height: 0.6vw;
  min-width: 8px;
  min-height: 8px;
  border: 0;
  border-top: solid 2px #000;
  border-left: solid 2px #000;
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease;
}

.swiper-button-prev::before {
  left: 4px;
}

.swiper-button-next::before {
  transform: rotate(135deg);
  left: -4px;
}

@media screen and (min-width: 751px) {

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background-color: #00489D;
  }

  .swiper-button-next:hover::before,
  .swiper-button-prev:hover::before {
    border-color: #FFF;
  }

}

.news-slider .swiper-button-disabled {
  display: none;
}

@media screen and (max-width: 750px) {

  .swiper-button-next,
  .swiper-button-prev {}

  .swiper-button-next {
    right: 0;
  }

  .swiper-button-prev {
    left: 0;
  }

  .swiper-button-prev::before,
  .swiper-button-next::before {}

  .swiper-button-prev::before {}

  .swiper-button-next::before {}
}

/* ページネーション */
.swiper-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 80%;
  max-width: 900px;
  margin: 24px auto 0;
}

/* プログレスバー */
.swiper-progressbar {
  flex: 9;
  position: relative;
  width: 100%;
  height: 3px;
  background: #D1D1D1;
}

.progressbar_in {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  transform-origin: left center;
  background: #00489D;
  transform: scaleX(0);
  transition-timing-function: linear;
}

.swiper-pagination {
  flex: 1;
  margin-top: 0;
  position: relative;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  bottom: 0;
  top: 0;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
  border: 1px solid #B2B2B2;
  background-color: #FFF;
  opacity: 1;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: #00489D;
  background-color: #00489D;
}

/*============================
コンポーネント
============================*/
.arrow {
  min-width: 30px;
  min-height: 30px;
  border-radius: 50%;
  background-color: #FFF;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.arrow-right::before {
  content: '';
  transform: rotate(135deg);
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 1px #000;
  border-left: solid 1px #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 2px;
  bottom: 0;
  margin: auto;
}


/*============================
カードレイアウト
============================*/
.card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media screen and (max-width: 900px) {
  .card-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card-list--2col {
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 750px) {
  .card-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.card-list.swiper-wrapper {
  display: flex;
  gap: 0;
}

.card-item__link,
.card-item {
  display: block;
  width: 100%;
  border-radius: 5px;
  border: 2px solid transparent;
  overflow: hidden;
  transition: all 0.3s ease;
}

@media screen and (min-width: 751px) {
  .card-item__link:hover {
    border: 2px solid #00489D;
  }

  .card-item__link:hover .arrow {
    background-color: #00489D;
  }

  .card-item__link:hover .arrow::before {
    border-color: #FFF;
  }
}

.card-item {
  box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.06);
  border: none;
}

.card-item__pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 255 / 140;
}

.card-list--2col .card-item__pic img {
  aspect-ratio: 533 / 250;
  height: auto;
}

.card-item__body {
  background-color: #FFF;
  padding: 20px 20px 40px;
}

.card-item__cate {
  display: inline-block;
  background-color: #009ADC;
  font-size: 12px;
  font-weight: 700;
  color: #FFF;
  padding-inline: 15px;
  border-radius: 50px;
  line-height: 23px;
}

.card-item__cate-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.card-item__list-item {
  border: 1px solid #00489D;
  background-color: #00489D;
  color: #FFF;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
}

.card-item__list-item--white {
  background-color: #FFF;
  color: #00489D;
}

.card-list--2col .card-item__ttl {
  font-size: 24px;
  line-height: 36px;
}

.card-list--2col .card-item__body {
  padding-bottom: 30px;
}

.card-item__ttl {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #00489D;
}

@media screen and (max-width: 750px) {
  .card-list--2col .card-item__ttl {
    font-size: 20px;
  }

  .card-item__ttl {
    font-size: 18px;
  }
}

.card-item__ttl-sub {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  margin-top: 20px;
}

.card-item__text {
  line-height: 1.8;
  margin-top: 10px;
}

@media screen and (max-width: 750px) {
  .card-item__ttl-sub {
    font-size: 16px;
    margin-top: 10px;
  }

  .card-item__text {
    font-size: 14px;
    line-height: 24px;
  }
}

.card-item__info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 30px;
}

.card-item__date {
  font-size: 14px;
  font-weight: 700;
  color: #C2C2C2;
}

.card-item__dl {
  display: grid;
  grid-template-columns: 95px 1fr;
  align-items: start;
  gap: 5px 10px;
  margin-top: 20px;
}

.card-item__dt {
  font-size: 14px;
  font-weight: 600;
  background-color: #E5E5E5;
  text-align: center;
  line-height: 18px;
  padding: 4px;
}

.card-item__dd {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

/* news */
.news-category-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 35px;
}

.news-category-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.news-category-item--all {
  position: relative;
  padding-right: 30px;
}

.news-category-item--all::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #1C3366;
}

.news-category-link {
  display: block;
  background-color: #FFF;
  border: 1px solid #00489D;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  color: #00489D;
  padding: 3px 26px;
}

.news-category-link.is-active {
  background-color: #00489D;
  color: #FFF;
}

@media screen and (max-width: 750px) {
  .news-category-wrap {
    gap: 20px;
    margin-bottom: 25px;
  }

  .news-category-list {
    gap: 10px;
  }

  .news-category-item--all {
    position: relative;
    padding-right: 20px;
  }

  .news-category-link {
    font-size: 14px;
    padding: 2px 20px;
  }
}

.news-list {}

.news-list .card-item__body {
  padding: 16px 16px 20px;
}

.news-list .card-item__ttl {
  font-size: 16px;
  margin-top: 8px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 48px;
}

.pagination {
  margin: 100px auto 0;
  width: fit-content;
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.page-numbers.current {
  border-radius: 50%;
  background-color: #1C489C;
  color: #FFF;
}

.page-numbers.next,
.page-numbers.prev {
  display: none;
}

@media screen and (max-width: 750px) {
  .pagination {
    margin-top: 40px;
  }

  .page-numbers {
    gap: 5px;
    font-size: 18px;
    width: 40px;
    height: 40px;
  }
}

/*
----------------------------------------
アイコンリスト
----------------------------------------
*/
.item-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section:has(.section-body) .item-box {
  margin-top: 25px;
}

.item-box .section-ttl-sub {
  color: #00489D;
  padding-bottom: 15px;
  border-bottom: 1px solid #00489D;
}

.item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 15px;
  background: #FFF;
}

@media screen and (max-width: 750px) {
  .item-box {
    margin-top: 15px;
  }

  .item-list {
    gap: 10px;
  }

  .item {
    font-size: 12px;
    gap: 8px;
    padding: 0 12px 0 10px;
  }

  .item img {
    width: auto;
    height: 15px;
  }
}

/*
----------------------------------------
アクセス
----------------------------------------
*/
.page-template-page-access .fv-sub-pic img {
  object-position: 25%;
}

.access.section {
  padding-bottom: 25px;
}

.access-column {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

@media screen and (max-width: 750px) {
  .access-column {
    flex-direction: column;
  }
}

.access-column .section-body {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.access-column .section-body-ttl {
  text-align: left;
}

.access-column .section-body-text {
  text-align: left;
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-inline: 20px;
}

.page-template-page-access .access-info {
  padding-inline: 0;
}

@media screen and (min-width: 751px) {
  .access-info {
    padding-inline: 0;
  }
}

.access-info-ttl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.access-info-address {
  font-weight: 500;
  line-height: 28px;
}

.access-info-heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 10px;
}

@media screen and (max-width: 750px) {
  .access-info-heading {
    font-size: 18px;
    line-height: 26px;
  }
}

.access-map {
  flex: 1;
  width: 100%;
  height: 100%;

  iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
  }
}

@media screen and (max-width: 750px) {
  .access-map iframe {
    aspect-ratio: 3 / 2;
  }
}

/*
----------------------------------------
fv-sub
----------------------------------------
*/
.fv-sub {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.fv-sub-big {
  height: 463px;
}

@media screen and (max-width: 750px) {
  .fv-sub {
    height: 200px;
  }

  .fv-sub-big {
    height: 300px;
  }
}

.fv-sub-pic {
  height: 100%;
}

.fv-sub-pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv-sub-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  color: #FFF;
}

.fv-sub-big .fv-sub-ttl {
  top: 35%;
}

@media screen and (max-width: 750px) {
  .fv-sub-ttl {
    font-size: 32px;
  }

  .fv-sub-big .fv-sub-ttl {
    top: 30%;
  }
}

/*
----------------------------------------
section共通
----------------------------------------
*/
.section-wrap {
  display: flex;
  flex-direction: column;
  padding-block: 100px;
  overflow: hidden;
}

@media screen and (max-width: 750px) {
  .section-wrap {
    padding-block: 65px 80px;
  }
}

.section {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
  padding-block: 75px;
}

@media screen and (max-width: 750px) {
  .section {
    padding-block: 40px;
    gap: 30px;
  }

  .section+.section:not(.bg-gray) {
    padding-top: 20px;
  }

  .section.bg-gray+.section {
    padding-top: 40px;
  }
}

.bg-gray {
  background-color: #F0F0F0;
}

.section-ttl {
  position: relative;
  font-size: 28px;
  font-weight: 600;
  color: #1C3366;
  padding-bottom: 20px;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .section-ttl {
    font-size: 22px;
    padding-bottom: 15px;
  }
}

.section-ttl::before {
  content: '';
  display: block;
  background-color: #D3BBA3;
  width: 44px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
}

.section-ttl-sub {
  position: relative;
  font-size: 28px;
  font-weight: 600;
  color: #1C3366;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .section-ttl-sub {
    font-size: 20px;
    padding-inline: 15px;
  }
}

.section-body {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media screen and (min-width: 751px) {
  .section-body {
    padding-inline: 20px;
  }
}

.section-body.gap-30 {
  gap: 30px;
}

.section-body-ttl {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  line-height: 32px;
  color: #009ADC;
}

.section-body-text {
  text-align: center;
}

@media screen and (max-width: 750px) {
  .section-body-ttl {
    font-size: 18px;
    text-align: left;
    line-height: 26px;
    padding-inline: 20px;
  }

  .section-text,
  .section-body-text {
    font-size: 15px;
    text-align: left;
    padding-inline: 20px;
  }
}

/*
----------------------------------------
セブ島について
----------------------------------------
*/
.about-cebu {
  position: relative;
  z-index: 1;
  background-color: #FFF;
  padding-block: 140px 25px;
  margin-top: -160px;
}

.about-cebu+section {
  padding-bottom: 25px;
}

@media screen and (max-width: 750px) {
  .about-cebu {
    padding-block: 60px 40px;
    margin-top: -125px;
    width: calc(100% - 30px);
  }
}

/*
----------------------------------------
rooms
----------------------------------------
*/
.room-btn-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  gap: min(2vw, 25px) min(1.8vw, 20px);
  width: 100%;
}

@media screen and (max-width: 900px) {
  .room-btn-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 750px) {
  .room-btn-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
    padding-inline: 0;
  }
}

.room-btn-item {
  width: 100%;
}

.room-btn-item__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 18px;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  background-color: #FFF;
  color: #00489D;
  border: 1px solid #00489D;
  padding: 22px 5px;
  position: relative;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 750px) {
  .room-btn-item__link {
    font-size: clamp(12px, 1.5vw, 14px);
    line-height: 1.5;
    padding: 12px 5px;
  }
}

.room-btn-item__link::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #00489D;
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 15px;
  height: 15px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

@media screen and (max-width: 750px) {
  .room-btn-item__link::after {
    width: 10px;
    height: 10px;
    bottom: 3px;
    right: 3px;
  }
}

@media screen and (min-width: 751px) {
  .room-btn-item__link:hover {
    background-color: #00489D;
    color: #FFF;
  }

  .room-btn-item__link:hover::after {
    background-color: #FFF;
  }
}


.rooms-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.rooms-item {
  padding: 35px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 750px) {
  .rooms-item {
    padding: 0;
  }
}

.rooms-slider {}

.rooms-slider-item {}

.rooms-slider-pic {}

.rooms-body {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
}

@media screen and (max-width: 750px) {
  .rooms-body {
    flex-direction: column;
    padding: 20px;
  }
}

.rooms-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1;
  min-width: 250px;
}

.rooms-name {
  font-size: 25px;
  font-weight: 700;
  line-height: 36px;
  color: #1C489C;
}

.rooms-info-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.rooms-info-item {
  border: 1px solid #00489D;
  background-color: #00489D;
  color: #FFF;
  padding: 2px 15px 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.rooms-info-item:has(.rooms-info-link) {
  background-color: #FFF;
  padding: 0;
}

.rooms-info-link {
  color: #00489D;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 2px 41px 4px 15px;
}

.rooms-info-link::after {
  content: '';
  transform: rotate(135deg);
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 1px #00489D;
  border-left: solid 1px #00489D;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  transition: border-color 0.3s ease;
}

@media screen and (min-width: 751px) {
  .rooms-info-link:hover {
    background-color: #00489D;
    color: #FFF;
  }

  .rooms-info-link:hover::after {
    border-color: #FFF;
  }
}

.rooms-desc {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rooms-desc-ttl {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
}

.rooms-desc-text {
  line-height: 24px;
}

@media screen and (max-width: 750px) {
  .rooms-name {
    font-size: 22px;
  }

  .rooms-info-item {
    font-size: 12px;
    padding: 2px 12px;
  }

  .rooms-info-link {
    padding: 2px 30px 2px 12px;
  }

  .rooms-info-link:after {
    width: 6px;
    height: 6px;
    right: 12px;
  }

  .rooms-desc-ttl {
    font-size: 18px;
  }

  .rooms-desc {
    gap: 15px;
  }
}


/*
----------------------------------------
infinite-scroll
----------------------------------------
*/
.infinite-scroll {
  width: 100%;
  overflow: hidden;
}

.js-scrollTrack {
  width: 100%;
}

.infinite-scroll-list {
  display: flex;
  gap: 20px;
  width: max-content;
}

.infinite-scroll-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
}

.infinite-scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  border-radius: 6px;
}


/*
----------------------------------------
contact
----------------------------------------
*/
.contact {
  max-width: 900px;
  padding-block: 100px 75px;
}

@media screen and (max-width: 750px) {
  .contact {
    padding-block: 50px 30px;
  }
}

.form {
  width: 100%;
  max-width: 900px;
  background-color: #FFF;
  margin-inline: auto;
}

.form-ttl {
  font-size: 28px;
  font-weight: 700;
  color: #1C489C;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .form-ttl {
    font-size: 24px;
  }
}

.form-txt {
  margin-top: 30px;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .form-txt {
    font-size: 14px;
  }
}

.step {
  display: flex;
  position: relative;
  margin-bottom: 75px;
}

.step-item {
  position: relative;
  background-color: #c4c4c4;
  color: #fff;
  padding: 12px 40px 12px 30px;
  font-weight: 600;
  z-index: 2;
  width: 100%;
  text-align: center;
  font-size: 16px;
}

.step-item:first-child {
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
}

.step-item:not(:first-child) {
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 10% 50%);
  margin-left: -18px;
}

.step-item.is-active {
  background-color: #00489D;
}

@media screen and (max-width: 750px) {
  .step {
    margin-bottom: 30px;
  }

  .step-item {
    padding: 10px 5px;
    font-size: 14px;
  }
}

.contact-form {
  width: 100%;
  padding-inline: 20px;
  margin: 30px auto 0;
}

@media screen and (max-width: 750px) {
  .contact-form {
    padding-inline: 10px;
    margin-top: 20px;
  }
}

.form-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: start;
  gap: 20px;
}

@media screen and (max-width: 750px) {
  .form-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  font-weight: bold;
  color: #1C3366;
}

.form-label label {
  line-height: 1.3;
}

.lang-tl .form-label {
  padding-top: 0;
}

.form-required {
  font-size: 12px;
  font-weight: 700;
  color: #FFF;
  padding: 0 6px;
  background: #ee8231;
  line-height: 20px;
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wpcf7-form input,
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 10px 15px;
  background-color: #F2F3F3;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 15px;
  font-weight: 500;
}

.wpcf7-form textarea {
  min-height: 130px;
}

.wpcf7-form select {
  width: 100%;
  padding-block: 11px;
  padding-right: 30px;
}

.wpcf7-form select:focus {
  outline: 2px solid #1A94DE;
  outline-offset: 2px;
}

.wpcf7-form-control-wrap {
  position: relative;
  display: block;
}

.wpcf7-form-control-wrap[data-name="select-num"]::after,
.wpcf7-form-control-wrap[data-name="select-time"]::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 20px solid #1C489C;
  position: absolute;
  top: 20px;
  right: 15px;
  pointer-events: none;
}

/* チェックボックスのスタイル修正 */
.wpcf7-acceptance input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  background: #FFF;
  border-radius: 50%;
  vertical-align: middle;
  cursor: pointer;
  visibility: hidden;
}

.wpcf7-acceptance input[type=checkbox]+.wpcf7-list-item-label:before {
  content: '';
  width: 25px;
  height: 25px;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 50%;
  vertical-align: middle;
  cursor: pointer;
  display: block;
  position: absolute;
  top: 3px;
  left: -30px;
}

.wpcf7-acceptance input[type=checkbox]:checked+.wpcf7-list-item-label:before {
  background-color: #00489D;
}

.wpcf7-acceptance input[type=checkbox]:checked+.wpcf7-list-item-label:after {
  display: block;
  content: '';
  position: absolute;
  top: 11px;
  left: -23px;
  width: 12px;
  height: 7px;
  transform: rotate(-45deg);
  border: none;
  border-bottom: 3px solid #FFF;
  border-left: 3px solid #FFF;
}

.wpcf7-acceptance input[type="checkbox"]:focus {
  outline: 2px solid #1A94DE;
  outline-offset: 2px;
}

@media screen and (max-width: 750px) {
  .wpcf7-acceptance input[type=checkbox]+.wpcf7-list-item-label:before {
    top: 0px;
  }

  .wpcf7-acceptance input[type=checkbox]:checked+.wpcf7-list-item-label:after {
    top: 8px;
  }
}

/* チェックボックスのラベルのスタイル */
.wpcf7-acceptance .wpcf7-list-item-label {
  cursor: pointer;
  padding-left: 5px;
  vertical-align: middle;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
}

@media screen and (max-width: 750px) {
  .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 14px;
  }
}

/* チェックボックスのコンテナのスタイル */
.wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.wpcf7-list-item {
  display: block;
  margin: 0;
}

@media screen and (max-width: 750px) {
  .wpcf7-list-item-label {
    font-size: 14px;
  }
}

.wpcf7-acceptance label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.wpcf7-acceptance a {
  text-decoration: underline;
}

@media screen and (min-width: 751px) {
  .wpcf7-acceptance a:hover {
    text-decoration: none;
  }
}

.submit-btn {
  position: relative;
  max-width: 326px;
  width: 100%;
  margin: 30px auto 0;
}

input.wpcf7-submit {
  position: relative;
  display: flex;
  justify-content: center;
  background: url(../../assets/img/icon-arrow.svg) no-repeat right 16px center #ED7C2D;
  border: 1px solid #ED7C2D;
  font-size: 18px;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  padding: 10px 60px;
  margin-inline: auto;
  transition:
    background-color 0.3s,
    color 0.3s;
}

input.wpcf7-submit:hover:not(:disabled),
input.wpcf7-submit:focus:not(:disabled) {
  cursor: pointer;
  background-color: #FFF;
  color: #ED7C2D;
}

.wpcf7 .wpcf7-submit:disabled {
  background: url(../../assets/img/icon-arrow.svg) no-repeat right 16px center #C2C2C2;
  border-color: #C2C2C2;
}

.wpcf7-spinner {
  display: none;
}

/* エラー時のinput, select, textareaの背景色 */
.wpcf7-form .wpcf7-not-valid {
  background-color: rgba(255, 0, 0, 0.1);
  border-color: #ff0000;
}

/* エラーメッセージのスタイル */
.wpcf7-not-valid-tip {
  color: #ff0000;
  font-size: 14px;
  margin-top: 5px;
}

/* フォーム全体のエラーメッセージ */
.wpcf7-response-output {
  color: #ff0000;
  border: 1px solid #ff0000 !important;
  padding: 10px;
  margin-top: 20px;
}

/*
----------------------------------------
入力確認ページ
----------------------------------------
*/
.confirm .form-input {
  border-bottom: 1px solid #707070;
  display: block;
  padding: 8px 10px;
  font-size: 16px;
}

.confirm-text {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 75px;
}

@media screen and (max-width: 750px) {
  .confirm-text {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

.confirm .submit-btn-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 75px;
}

.confirm .submit-btn-wrap .submit-btn {
  margin: 0;
  max-width: fit-content;
}

.confirm .wpcf7-form input,
.confirm .wpcf7-form textarea {
  min-width: 96px;
  padding: 8px 15px;
  color: #FFF;
  background-color: #A5A5A5;
  font-size: 18px;
  font-weight: 700;
}

.confirm .wpcf7-form-control.wpcf7-previous {
  cursor: pointer;
  border: 1px solid #A5A5A5;
  transition:
    border-color 0.3s,
    color 0.3s,
    background-color 0.3s;
}

@media screen and (min-width: 751px) {
  .confirm .wpcf7-form-control.wpcf7-previous:hover {
    border-color: #A5A5A5;
    color: #A5A5A5;
    background-color: #FFF;
  }
}

.confirm input.wpcf7-submit {
  padding-right: 23px;
  background: url(../../assets/img/icon-arrow.svg) no-repeat right 16px top 54% #ED7C2D;
}

.confirm input.wpcf7-submit:hover {
  background: url(../../assets/img/icon-arrow-orange.svg) no-repeat right 16px top 54% #FFF;
}

/*
----------------------------------------
サンクスページ
----------------------------------------
*/
.thanks {
  padding-bottom: 0;
}

.thanks .step {
  margin-bottom: 75px;
}

.thanks-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}

.thanks .btn {
  margin-top: 75px;
}


/*
----------------------------------------
page
----------------------------------------
*/
.section-page {
  padding-top: 50px
}

@media screen and (max-width: 750px) {
  .section-page {
    padding-top: 30px;
  }
}

.page-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.page-content h2 {
  font-size: 25px;
  font-weight: 700;
  margin-top: 30px;
}

.page-content h3 {
  font-size: 22px;
  font-weight: 700;
  border-bottom: 1px solid #00489D;
  padding-bottom: 5px;
  margin-top: 30px;
}

.page-content h2+h3 {
  margin-top: 10px;
}

@media screen and (max-width: 750px) {
  .page-content h2 {
    font-size: 22px;
    margin-top: 15px;
  }

  .page-content h3 {
    font-size: 20px;
    padding-bottom: 5px;
    margin-top: 15px;
  }

  .page-content h2+h3 {
    margin-top: 0;
  }
}

.page-content ol li,
.page-content ul li {
  text-indent: -1.1em;
  margin-left: 1.1em;
}

.page-content a {
  color: #919191;
  text-decoration: underline;
}

@media screen and (min-width: 751px) {
  .page-content a:hover {
    text-decoration: none;
  }
}

.page-content hr {
  margin-top: 20px;
  border-bottom: 1px solid #000;
}

/*
----------------------------------------
single
----------------------------------------
*/
.section-single {
  padding-block: 75px 150px;
  margin-inline: auto;
}

@media screen and (max-width: 750px) {
  .section-single {
    padding-block: 40px 60px;
  }
}

.single-cate {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #00489D;
  border: 1px solid #00489D;
  border-radius: 50px;
  padding: 3px 18px;
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .single-cate {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.single-ttl {
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  color: #00489D;
}

.single-date {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #86868B;
  padding-block: 20px;
}

.single-pic {
  img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
  }
}

.single-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.single-content h1,
.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5 {
  font-size: 22px;
  font-weight: 700;
  line-height: 42px;
}

.single-content h1 {
  font-size: 26px;
  margin-top: 36px;
}

.single-content h2 {
  position: relative;
  font-size: 25px;
  color: #00489D;
  border-left: 5px solid #00489d;
  padding: 0 0 3px 20px;
  margin-block: 36px 10px;
}

@media screen and (max-width: 750px) {
  .single-content h2 {
    font-size: 22px;
    margin-block: 24px 10px;
  }
}

.single-content h2::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #00489D;
  position: absolute;
  bottom: -10px;
  left: -5px;
}

.single-content h3 {
  font-size: 18px;
  line-height: 1.6;
  color: #EE8231;
  margin-top: 15px;
}

@media screen and (max-width: 750px) {
  .single-content h3 {
    font-size: 17px;
    margin-top: 5px;
  }
}

.single-content h2+.single-content h3 {
  margin-top: 0;
}

.single-content ul li {
  list-style-type: disc;
}

.single-content ol li {
  list-style-type: decimal;
}

/*
----------------------------------------
404
----------------------------------------
*/
.section-404 {
  padding-bottom: 0;
}