@charset "UTF-8";
html, body {
  width: 100%;
}
body {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  position: relative;
  font-size: 16px;
  color: #000;
  line-height: 1.7;
}
*, *::before, *::after {
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}
p {
  margin: 0;
  padding: 0;
}
img {
  width: 100%;
  height: auto;
}
a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}
a:hover > img {
  opacity: 0.8;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
.br_pc {
  display: block;
}
.br_sp {
  display: none;
}
.red {
  color: #F00;
}
.gray {
  color: #888;
}
.bold {
  font-weight: bold;
}
.small {
  font-size: 13px;
}
.txt_center {
  text-align: center;
}
.txt_left {
  text-align: left;
}
.txt_right {
  text-align: right;
}
@media screen and (max-width: 896px) {
  .br_pc {
    display: none;
  }
  .br_sp {
    display: block;
  }
}
/* ---------------------------------
 .noto-serif-jp : google font
--------------------------------- */
.noto-serif-jp-regular {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.noto-serif-jp-medium {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.noto-serif-jp-semibold {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
/* ---------------------------------
 object_fit_img
--------------------------------- */
img.object_fit_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
/* ---------------------------------
 間隔調整用
--------------------------------- */
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mt50 {
  margin-top: 50px;
}
.mt60 {
  margin-top: 60px;
}
.mt70 {
  margin-top: 70px;
}
.mt80 {
  margin-top: 80px;
}
.mt90 {
  margin-top: 90px;
}
.mt100 {
  margin-top: 100px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb90 {
  margin-bottom: 90px;
}
.mb100 {
  margin-bottom: 100px;
}
/* ---------------------------------
 基本色の設定
--------------------------------- */
/* 文字色 */
.col_base {
  color: #2F6F8F;
}
.col_highlight {
  color: #cc1f45;
}
.white {
  color: #fff;
}
/* 背景色 */
.bg_col_base {
  background-color: #f5f3ee;
}
.bg_col_gray {
  background-color: #f5f3ee;
}
.bg_col_dark {
  background-color: #2F6F8F;
}
.bg_col_blue {
  background-color: #DFE5EA;
}
/* リンク */
.link {
  color: #2F6F8F;
  text-decoration: underline;
}
.link:hover {
  text-decoration: none;
}
/* ---------------------------------
 リンクボタン 白ベース
--------------------------------- */
a.more_link_btn {
  display: block;
  width: 80%;
  max-width: 300px;
  padding: 15px;
  color: #2F6F8F;
  border: 1px solid #2F6F8F;
  position: relative;
}
a.more_link_btn::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.5em; /* arrow size */
  height: 0.5em; /* arrow size */
  border-top: 1px solid #2F6F8F; /* thickness, color */
  border-right: 1px solid #2F6F8F;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
a.more_link_btn:hover {
  color: #fff;
  background-color: #2F6F8F;
}
a.more_link_btn:hover::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 896px) {
  /* SPの時中央寄せにしたい場合は下記classを追加する */
  a.more_link_btn.morebtn_center {
    margin: 0 auto;
  }
}
/* ---------------------------------
 リンクボタン 紺色ベース
--------------------------------- */
a.more_link_btn_dark {
  display: block;
  width: 80%;
  max-width: 300px;
  padding: 15px;
  color: #fff;
  background-color: #2F6F8F;
  position: relative;
}
/* 中央寄せにしたい場合は下記クラスを付与 */
a.more_link_btn_dark.btn_center {
  margin: 0 auto;
}
/* 文字を中央寄せにしたい場合は下記クラスを付与 */
a.more_link_btn_dark.btn_txt_center {
  text-align: center;
}
a.more_link_btn_dark::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.5em; /* arrow size */
  height: 0.5em; /* arrow size */
  border-top: 1px solid #fff; /* thickness, color */
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
a.more_link_btn_dark:hover {
  color: #fff;
  background-color: #2F6F8F;
}
/* ---------------------------------
 wrapper
--------------------------------- */
.wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
/* ---------------------------------
 main
--------------------------------- */
main {
  width: 100%;
}
/* ---------------------------------
 contents
--------------------------------- */
.contents {
  width: 100%;
}
.contents_inner {
  width: 94%;
  max-width: 1400px;
  margin: 150px auto;
}
@media screen and (max-width: 896px) {
  .contents_inner {
    margin: 75px auto;
  }
}
/* ---------------------------------
 h3_title
--------------------------------- */
h3.h3_title {
  text-align: center;
  font-size: 4.0rem;
}
@media screen and (max-width: 896px) {
  h3.h3_title {
    font-size: 2.0rem;
  }
}
/* ---------------------------------
 h3_title_left : 左寄せパターン
--------------------------------- */
h3.h3_title_left {
  text-align: left;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
h3.h3_title_left .h3_title_left_en {
  font-size: 4.0rem;
  margin-right: 20px;
}
@media screen and (max-width: 896px) {
  h3.h3_title_left {
    font-size: 1.0rem;
  }
  h3.h3_title_left .h3_title_left_en {
    font-size: 2.0rem;
    margin-right: 0;
  }
}
/* ---------------------------------
 h4_subtitle
--------------------------------- */
h4.h4_subtitle {
  font-size: 1.2rem;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}
h4.h4_subtitle::before {
  position: absolute;
  top: calc(50% - 7px);
  left: 0;
  width: 14px;
  height: 14px;
  content: '';
  border-radius: 50%;
  background: #2F6F8F;
}
@media screen and (max-width: 896px) {
  h3.h4_subtitle {
    font-size: 1.0rem;
  }
}
/* ---------------------------------
 ul_style
--------------------------------- */
ul.ul_style {
  width: 100%;
  list-style: none;
  padding-left: 20px;
  margin: 0;
}
ul.ul_style li {
  margin: 10px 0;
  position: relative;
}
ul.ul_style li::before {
  content: '';
  background-color: #2F6F8F;
  position: absolute;
  top: 11px;
  left: -1em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
/* ---------------------------------
 table_style
--------------------------------- */
table.table_style {
  width: 100%;
  margin: 15px 0;
  border-collapse: separate;
  border-spacing: 5px;
}
table.table_style th {
  width: 30%;
  padding: 15px;
  background-color: #2F6F8F;
  color: #fff;
}
table.table_style td {
  width: 70%;
  padding: 15px;
  background-color: #fff;
}
@media screen and (max-width: 896px) {
  table.table_style th {
    width: 100%;
    display: block;
    text-align: left;
  }
  table.table_style td {
    width: 100%;
    display: block;
  }
}
/* ---------------------------------
 header & navi
--------------------------------- */
.header {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.header__inner {
  padding: 0;
  display: flex;
  align-items: center;
  height: inherit;
  position: relative;
  flex-direction: row-reverse;
}
/* ヘッダーのロゴ部分 */
.header__title {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 150px;
  z-index: 1000;
}
@media screen and (min-width: 895px) {
  .header__inner {
    padding: 0;
  }
  .header__title {
    top: 20px;
    left: 20px;
    width: 150px;
  }
}
.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}
/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #2F6F8F;
  transition: ease .4s;
  color: #fff;
}
@media screen and (min-width: 895px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 60%;
  }
}
@media screen and (min-width: 895px) {
  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-between;
  }
}
.nav-items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 895px) {
  .nav-items {
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
}
/* ナビのリンク */
.nav-items__item a {
  color: #fff;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 16px;
  margin-bottom: 24px;
}
.nav-items__item:last-child a {
  margin-bottom: 0;
}
.nav-items__insta a img {
  width: 30px;
}
.nav-items__reserve a {
  background-color: #fff;
  padding: 10px;
  width: 70%;
  margin: 0 auto;
  text-align: center;
  color: #2F6F8F;
  font-size: 16px;
}
@media screen and (min-width: 895px) {
  .nav-items__item a {
    margin-bottom: 0;
    color: #fff;
  }
  .nav-items__item.invert a {
    margin-bottom: 0;
    color: #000;
  }
  .nav-items__reserve a {
    background: linear-gradient(140deg, #2F6F8F 0%, #6FA8C6 60%, #b6d9e9 100%);
    padding: 22px 20px;
    color: #fff !important;
    font-size: 16px;
    width: 100%;
  }
}
/* ハンバーガーメニュー */
.header__hamburger {
  width: 70px;
  height: 100%;
  background: linear-gradient(140deg, #2F6F8F 0%, #6FA8C6 60%, #b6d9e9 100%);
  padding: 0 15px;
}
.hamburger {
  padding-top: 5px;
  z-index: 9999;
}
.hamburger::after {
  display: block;
  content: "MENU";
  width: 40px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  margin-top: 5px;
}
@media screen and (min-width: 895px) {
  .hamburger {
    display: none;
  }
}
/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: relative;
  transition: ease .4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 8px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: relative;
  transition: ease .4s;
  display: block;
}
/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -15px;
  transform: rotate(-45deg);
}
/* ---------------------------------
 foot_reservation
--------------------------------- */
.foot_reservation {
  width: 100%;
  background: linear-gradient(rgba(20, 76, 145, 0.75), rgba(20, 76, 145, 0.75)), url(../img/common/foot_reserve_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 100px 0;
}
.foot_reservation .foot_reservation_inner {
  width: 90%;
  margin: 0 auto;
  border: 1px solid #fff;
  text-align: center;
  padding: 80px;
  color: #fff;
}
.foot_reservation .foor_reserve_btn {
  width: 100%;
  margin-top: 30px;
}
.foot_reservation .foor_reserve_btn a {
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  display: block;
  padding: 15px;
  text-align: center;
  color: #2F6F8F;
  cursor: pointer;
  background-color: #fff;
}
@media screen and (max-width: 896px) {
  .foot_reservation {
    padding: 30px 0;
  }
  .foot_reservation .foot_reservation_inner {
    width: 90%;
    padding: 30px;
  }
}
/* ---------------------------------
 rg_area
--------------------------------- */
.rg_area {
  width: 100%;
  padding: 100px 0;
  background-color: #fff;
}
.rg_area .rg_area_inner {
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
}
.rg_area p.rg_title {
  font-weight: bold;
  text-align: center;
  font-size: 4.0rem;
  margin-bottom: 15px;
}
.rg_area .rg_list {
  width: 100%;
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.rg_area .rg_list .rg_list_box {
  width: 25%;
  padding: 1%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.rg_area .rg_list .rg_list_box .rg_list_box_img {
  width: 90px;
  height: 60px;
  margin-right: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.rg_area .rg_list .rg_list_box .rg_list_box_name {
  flex: 1;
}
.rg_area .rg_list .rg_list_box .rg_list_box_img a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.rg_area .rg_about {
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
.rg_area .rg_about .rg_about_box {
  width: 30%;
}
.rg_area .rg_about .rg_about_box .rg_about_title {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .rg_area {
    padding: 50px 0;
  }
  .rg_area p.rg_title {
    font-size: 2.0rem;
  }
  .rg_area .rg_list .rg_list_box {
    width: 100%;
    padding: 0;
    margin-bottom: 15px;
  }
  .rg_area .rg_about .rg_about_box {
    width: 100%;
    margin-bottom: 20px;
  }
  .rg_area .rg_about .rg_about_box .rg_about_title {
    text-align: left;
  }
}
/* ---------------------------------
 footer
--------------------------------- */
footer {
  width: 100%;
  margin: 0 auto;
  padding: 100px 0 50px 0;
  color: #fff;
  background: linear-gradient(0deg, rgb(47, 111, 143) 0%, rgb(111, 168, 198) 60%, rgb(182, 217, 233) 100%);
}
footer a {
  color: #fff;
}
footer .footer_inner {
  width: 94%;
  margin: 0 auto;
}
footer .footer_logo {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
footer .footer_logo img {
  width: 90%;
  max-width: 200px;
}
/* SNSリスト */
footer ul.footer_sns {
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 0;
}
footer ul.footer_sns li {
  list-style: none;
  margin: 0 10px;
}
footer ul.footer_sns li img {
  width: 30px;
}
/* menuリスト */
footer ul.footer_menu {
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 0;
}
footer ul.footer_menu li {
  list-style: none;
  margin: 0 10px;
}
footer ul.footer_menu li a {
  color: #fff;
}
footer ul.footer_menu li a:hover {
  text-decoration: underline;
}
/* LINKリスト */
footer .footer_linkbtn_list {
  width: 90%;
  max-width: 1000px;
  margin: 30px auto 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
footer .footer_linkbtn_list a.footer_linkbtn {
  display: block;
  width: 31%;
  padding: 15px 10px;
  text-align: center;
}
footer .footer_linkbtn_list a.footer_linkbtn.f_btn_blue {
  border: 1px solid #fff;
  color: #fff;
}
footer .footer_linkbtn_list a.footer_linkbtn.f_btn_white {
  border: 1px solid #fff;
  background-color: #fff;
  color: #2F6F8F;
}
footer .footer_linkbtn_list a.footer_linkbtn.f_btn_blue:hover {
  border: 1px solid #fff;
  background-color: #fff;
  color: #2F6F8F;
}
footer .footer_linkbtn_list a.footer_linkbtn.f_btn_white:hover {
  background-color: #2F6F8F;
  color: #fff;
}
/* copy */
footer .footer_inner .copy {
  width: 100%;
  margin-top: 50px;
  text-align: center;
  font-size: 0.7rem;
}
@media screen and (max-width: 896px) {
  footer {
    padding: 50px 0 120px 0;
  }
  footer .footer_linkbtn_list a.footer_linkbtn {
    width: 100%;
    padding: 15px 10px;
    margin-bottom: 15px;
  }
}
/* ---------------------------------
 breadcrumb
--------------------------------- */
.breadcrumb_area {
  width: 100%;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid #DFE5EA;
}
.breadcrumb {
  width: auto;
  max-width: 94%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}
.breadcrumb li:not(:last-of-type)::after {
  margin: 0 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  color: #2F6F8F;
}
/* ---------------------------------
 div_frame - 囲う用
--------------------------------- */
.div_frame {
  width: 100%;
  margin: 15px 0;
  border: 3px solid #E4E8DB;
  padding: 15px;
}
/* ---------------------------------
 TOPへ戻る
--------------------------------- */
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 20px;
  bottom: 70px;
  background: #2F6F8F;
  border: 1px solid #fff;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}
.pagetop__arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}
@media screen and (max-width: 896px) {
  .pagetop {
    right: 20px;
    bottom: 120px;
  }
}
/* ---------------------------------
 foot_follow_menu
--------------------------------- */
.foot_follow_menu {
  display: none;
}
@media screen and (max-width: 896px) {
  .foot_follow_menu {
    display: block;
    width: 100%;
    height: 70px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 334;
  }
  .foot_follow_menu .foot_follow_menu_box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .foot_follow_menu .foot_follow_menu_box .follow_link_box {
    width: 33.33333%;
    width: -webkit-calc(100% / 3);
    width: calc(100% / 3);
    text-align: center;
    height: 70px;
    padding: 12px 5px 5px 5px;
    font-size: 14px;
    position: relative;
  }
  .foot_follow_menu .foot_follow_menu_box .follow_link_box a {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .foot_follow_menu .foot_follow_menu_box .follow_link_box.col_dark {
    background-color: #2F6F8F;
    color: #fff;
  }
  .foot_follow_menu .foot_follow_menu_box .follow_link_box.col_blue {
    background-color: #CAD7E2;
    color: #2F6F8F;
  }
  .foot_follow_menu .foot_follow_menu_box .follow_link_box.col_white {
    background-color: #fff;
    color: #2F6F8F;
  }
}
/* =========================
   ACCESS
========================= */
.access-info {
  max-width: 900px;
  margin: 50px auto 0;
}
.access-card {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: #fff;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
}
.access-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f5f3ee;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2F6F8F;
  font-size: 22px;
}
.access-content h4 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #333;
}
.access-content p {
  margin: 0;
  line-height: 2;
}
.access-note {
  margin-top: 15px;
  padding: 15px 18px;
  background: #faf7f1;
  border-left: 4px solid #2F6F8F;
  font-size: 14px;
  line-height: 1.8;
}
@media(max-width:768px) {
  .access-card {
    padding: 20px;
    gap: 15px;
  }
  .access-icon {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  .access-content h4 {
    font-size: 16px;
  }
}
/* ====================================
   チェックインフロー
==================================== */
.checkin-flow {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
}
.checkin-flow__title {
  text-align: center;
  margin-bottom: 60px;
}
.checkin-flow__title span {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.checkin-flow__title span::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #2F6F8F;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.checkin-flow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.checkin-flow__list::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ddd;
}
.checkin-flow__item {
  display: flex;
  gap: 40px;
  position: relative;
  margin-bottom: 40px;
}
.checkin-flow__step {
  width: 100px;
  flex-shrink: 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
.checkin-flow__num {
  width: 70px;
  height: 70px;
  background: #2F6F8F;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
}
.checkin-flow__step h3 {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}
.checkin-flow__content {
  flex: 1;
  background: #fff;
  padding: 30px;
  box-shadow:
    0 5px 20px rgba(0, 0, 0, .06);
  border: 1px solid #eee;
}
.checkin-flow__content h4 {
  font-size: 1.2rem;
  color: #333;
  margin: 0 0 15px;
  position: relative;
  padding-left: 16px;
}
.checkin-flow__content h4::before {
  content: "";
  width: 6px;
  height: 100%;
  background: #2F6F8F;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
}
.checkin-flow__content p {
  margin: 0 0 15px;
  line-height: 2;
  color: #555;
}
.checkin-flow__content p:last-child {
  margin-bottom: 0;
}
/* ====================================
   SP
==================================== */
@media (max-width: 768px) {
  .checkin-flow {
    padding: 60px 15px;
  }
  .checkin-flow__list::before {
    left: 25px;
  }
  .checkin-flow__item {
    gap: 20px;
  }
  .checkin-flow__step {
    width: 50px;
  }
  .checkin-flow__num {
    width: 50px;
    height: 50px;
    font-size: .9rem;
  }
  .checkin-flow__step h3 {
    font-size: .75rem;
  }
  .checkin-flow__content {
    padding: 20px;
  }
  .checkin-flow__content h4 {
    font-size: 1rem;
  }
}
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  background: #fafafa;
  text-align: center;
  color: #fff;
}
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash_logo img {
  width: 260px;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bonds_group_section {
  padding: 120px 0;
  overflow: hidden;
  background: #f8f7f4;
}
.bonds_group_head {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 80px;
}
.bonds_group_title span {
  display: block;
  font-size: 12px;
  letter-spacing: .3em;
  color: #9d9485;
  margin-bottom: 15px;
}
.bonds_group_title h2 {
  margin: 0;
  font-size: 4.0rem;
  line-height: 1.5;
}
.bonds_group_text {
  max-width: 420px;
}
.bonds_group_text p {
  line-height: 2;
  margin-bottom: 25px;
}
.bonds_group_text a {
  text-decoration: none;
  border-bottom: 1px solid #2F6F8F;
  padding-bottom: 5px;
  font-weight: 600;
}
.bonds_group_swiper {
  padding-left: 8%;
}
.bonds_group_swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.bonds_group_swiper .swiper-slide {
  width: 520px;
}
.bonds_group_swiper img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
@media(max-width:768px) {
  .bonds_group_head {
    display: block;
    margin-bottom: 50px;
  }
  .bonds_group_title h2 {
    font-size: 2.0rem;
    margin-bottom: 25px;
  }
  .bonds_group_swiper .swiper-slide {
    width: 280px;
  }
  .bonds_group_swiper img {
    height: 180px;
  }
}