@charset "UTF-8";
html{
  width: 100%;
  overflow-x: hidden;
  height: auto;
}
body {
  overflow-x: hidden;
  min-height: 100vh;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  position: relative;
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
  background-color: #0E2A47;
}
*, *::before, *::after {
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6{
  margin: 0;
  padding: 0;
}
p{
  width: 100%;
  margin: 0;
  padding: 0;
}
img{
  width: 100%;
  height: auto;
}
a {
  color: #fff;
  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;
}
.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;
}
.br_pc{
  display: block;
}
.br_sp{
  display: none;
}
@media screen and (max-width: 896px) {
  .br_pc{
    display: none;
  }
  .br_sp{
    display: block;
  }
}
/* ---------------------------------
 .cormorant-garamond : google font
--------------------------------- */
.cormorant-garamond-semibold {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

/* ---------------------------------
 間隔調整用
--------------------------------- */
.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: #0E2A47;
}
.col_subcolor{
  color: #A0BAD5;
}
.col_pickup{
  color: #C5A059;
}
.white{
  color: #fff;
}
/* 背景色 */
.bg_col_base{
  background-color: #eff0f5;
}
.bg_col_dark{
  background-color: #0E2A47;
}
.bg_col_subcolor{
  background-color: #003350;
}
/* リンク */
.link{
  color: #88A2BD;
  text-decoration: underline;
}
.link:hover{
  text-decoration: none;
}
/* リンク */
.link_dark{
  color: #0E2A47;
  text-decoration: underline;
}
.link_dark:hover{
  text-decoration: none;
}

/* ---------------------------------
 リンクボタン
--------------------------------- */
.more_link_btn {
  margin-top: 50px;
  width: 100%;
}
.more_link_btn a{
  width: 80%;
  max-width: 400px;
  padding: 15px;
  text-align: center;
  display: block;
  border-radius: 99999px;
  border: 1px solid #fff;
  color: #fff;
  margin: 0 auto;
  position: relative;
  transition: 0.3s;
}
.more_link_btn a::after {
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.5em;
  height: 0.5em;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  content: "";
  transition: 0.3s;
}
.more_link_btn a:hover {
  opacity: 1;
  background-color: #fff;
  color: #0E2A47;
}
.more_link_btn a:hover::after {
  border-right: 2px solid #0E2A47;
  border-top: 2px solid #0E2A47;
}
@media screen and (max-width: 896px) {
  .more_link_btn {
    margin-top: 25px;
  }
}

/* ---------------------------------
 リンクボタン_黒色
--------------------------------- */
.more_link_btn_dark {
  margin-top: 50px;
  width: 100%;
}
.more_link_btn_dark a{
  width: 80%;
  max-width: 400px;
  padding: 15px;
  text-align: center;
  display: block;
  border-radius: 99999px;
  border: 1px solid #0E2A47;
  color: #0E2A47;
  margin: 0 auto;
  position: relative;
  transition: 0.3s;
}
.more_link_btn_dark a::after {
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.5em;
  height: 0.5em;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #0E2A47;
  border-top: 2px solid #0E2A47;
  content: "";
  transition: 0.3s;
}
.more_link_btn_dark a:hover {
  opacity: 1;
  background-color: #0E2A47;
  color: #fff;
}
.more_link_btn_dark a:hover::after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}
@media screen and (max-width: 896px) {
  .more_link_btn_dark {
    margin-top: 25px;
  }
}

/* ---------------------------------
 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;
  }
}

/* ---------------------------------
 文字をフェードインするためのCSS
--------------------------------- */
.js-text span {
  display: inline-block;
  white-space: pre;
}

/* ---------------------------------
 cmn_title_h3 : 共通H3
--------------------------------- */
.cmn_title_en{
  font-size: 5.0rem;
  margin-bottom: 10px;
  line-height: 1.0;
}
h3.cmn_title_h3{
  font-size: 1.5rem;
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  align-items: center;
}
h3.cmn_title_h3::before{
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  width: 30px;
  margin-right: 15px;
}
h3.cmn_title_h3.darkmode::before{
  background-color: #0E2A47;
}
@media screen and (max-width: 896px) {
  .cmn_title_en{
    font-size: 2.5rem;
  }
  h3.cmn_title_h3{
    font-size: 1.0rem;
  }
}

/* ---------------------------------
 h4_subtitle
--------------------------------- */
h4.h4_subtitle{
  font-size: 1.2rem;
  margin-bottom: 10px;
  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: #A0BAD5;
}
@media screen and (max-width: 896px) {
  h4.h4_subtitle{
    font-size: 1.1rem;
  }
}

/* ---------------------------------
 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: #A0BAD5;
  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: #003350;
  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;
  }
}

/* ---------------------------------
 table_style_light 背景色が明るい場合のtable
--------------------------------- */
table.table_style_light{
  width: 100%;
  margin: 15px 0;
  border-collapse: separate;
  border-spacing: 5px;
}
table.table_style_light th{
  width: 30%;
  padding: 15px;
  background-color: #0E2A47;
  color: #fff;
}
table.table_style_light td{
  width: 70%;
  padding: 15px;
  background-color: #F5F5F5;
}
@media screen and (max-width: 896px) {
  table.table_style_light th{
    width: 100%;
    display: block;
    text-align: left;
  }
  table.table_style_light td{
    width: 100%;
    display: block;
  }
}

/* ---------------------------------
 header & navi
--------------------------------- */
.header {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: 0.3s;
}
.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: 200px;
  z-index: 1000;
  font-size: 15px;
  line-height: 1.4rem;
  font-weight: bold;
  color: #fff;
}

@media screen and (min-width: 1181px) {
  .header.invert {
    background-color: #0E2A47;
  }
  .header__inner {
    padding: 0;
  }
  .header__title {
    position: fixed;
    top: 15px;
    left: 20px;
    width: 200px;
  }
}
.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: #0E2A47;
  transition: ease .4s;
  color: #000;
}
@media screen and (min-width: 1181px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 55%;
  }
}
@media screen and (min-width: 1181px) {
  .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: 1181px) {
  .nav-items {
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    padding-right: 20px;
  }
}
/* ナビのリンク */
.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: 24px;
  margin-bottom: 3px;
}
.nav-items__reserve a{
  background-color: #fff;
  padding: 10px;
  width: 70%;
  margin: 0 auto;
  text-align: center;
  color: #0E2A47;
  font-size: 16px;
}
@media screen and (min-width: 1181px) {
  .nav-items__item a {
    margin-bottom: 0;
    color: #fff;
  }
  .nav-items__reserve a{
    background-color: #fff;
    padding: 8px 30px;
    border-radius: 99999px;
    color: #0E2A47 !important;
    font-size: 16px;
    width: 100%;
    margin-right: 30px;
  }
}
/* ハンバーガーメニュー */
.header__hamburger {
  width: 70px;
  height: 100%;
  background-color: #0E2A47;
  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: 1181px) {
  .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);
}

/* ---------------------------------
 footer
--------------------------------- */
footer{
  width: 100%;
  margin: 0 auto;
}
footer .footer_box{
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 150px 0 50px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  border-top: 1px solid #fff;
}
footer .footer_box .footer_logo{
  width: 30%;
}
footer .footer_box .footer_navi{
  width: 60%;
  margin-left: 10%;
}
footer .footer_box .footer_logo_img{
  width: 80%;
  margin-bottom: 20px;
}
footer .footer_box .footer_logo_img img{
  width: 100%;
}
footer .footer_box .footer_logo_txt{
  width: 100%;
  margin-bottom: 20px;
}
footer .footer_box .foot_tel{
  width: 100%;
  margin-top: 15px;
}
footer .footer_box .foot_tel a{
  display: block;
  width: 100%;
  max-width: 300px;
  padding: 10px 10px;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 99999px;
  transition: 0.3s;
}
footer .footer_box .foot_tel a:hover{
  background-color: #fff;
  color: #0E2A47;
  opacity: 1;
}
footer .footer_box .foot_mail{
  width: 100%;
  margin-top: 15px;
}
footer .footer_box .foot_mail a{
  display: block;
  width: 100%;
  max-width: 300px;
  padding: 10px 10px;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 99999px;
  transition: 0.3s;
}
footer .footer_box .foot_mail a:hover{
  background-color: #fff;
  color: #0E2A47;
  opacity: 1;
}
/* menuリスト */
footer ul.footer_menu{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
}
footer ul.footer_menu li{
  width: 25%;
  list-style: none;
  margin-bottom: 10px;
  position: relative;
  padding: 0px 0px 0px 1em;
}
footer ul.footer_menu li::before {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 0px;
  height: 0px;
  border: 0.3em solid transparent;
  border-left: 0.4em solid #A0BAD5;
  content: "";
}
footer ul.footer_menu li a{
  color: #fff;
}
footer ul.footer_menu li a:hover{
  text-decoration: underline;
}

/* 利用規約リスト */
footer .footer_term{
  margin: 10px 0 10px 0;
  width: 100%;
}
footer .footer_term a.footer_term_link{
  display: block;
  width: 100%;
  color: #fff;
  margin-bottom: 10px;
}
footer .footer_term a.footer_term_link:hover{
  text-decoration: underline;
}
footer .footer_term a.footer_term_link::before{
  content: "";
  display: inline-block;  
  background-image: url('../img/common/icon_pdf.svg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position:relative;
  top: 7px;
  margin-right: 5px;
}
/* copy */
footer .copy{
  width: 100%;
  margin: 50px auto 0 auto;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 896px) {
  footer .footer_box{
    width: 94%;
    padding: 75px 0 120px 0;
  }
  footer .footer_box .footer_logo{
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
  footer .footer_box .footer_navi{
    width: 100%;
    margin-left: 0;
  }
  footer .footer_box .footer_logo_img{
    width: 70%;
    margin: 0 auto 20px auto;
  }
  footer .footer_box .footer_logo_txt{
    text-align: center;
  }
  footer .footer_box .foot_tel a{
    margin: 0 auto;
  }
  footer .footer_box .foot_mail a{
    margin: 0 auto;
  }
  footer ul.footer_menu{
    width: 90%;
    margin: 0 auto;
  }
  footer ul.footer_menu li{
    width: 50%;
  }
  footer .footer_term{
    margin: 10px auto 10px auto;
    width: 90%;
  }
  footer .footer_term a.footer_term_link{
    font-size: 14px;
  }
}

/* ---------------------------------
 breadcrumb
--------------------------------- */
.breadcrumb_area{
  width: 100%;
  padding: 10px 0;
  font-size: 14px;
}
.breadcrumb_padding .breadcrumb_area{
  padding: 10px 15px;
}
.breadcrumb {
  width: auto;
  max-width: 100%;
  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: #fff;
}

/* ---------------------------------
 TOPへ戻る
--------------------------------- */
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 20px;
  bottom: 70px;
  background: #003350;
  border: 1px solid #fff;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10;
  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: 90px;
  }
}
/* ---------------------------------
 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: #0E2A47;
    color: #fff;
  }
  .foot_follow_menu .foot_follow_menu_box .follow_link_box.col_blue{
    background-color: #eff0f5;
    color: #0E2A47;
  }
  .foot_follow_menu .foot_follow_menu_box .follow_link_box.col_white{
    background-color: #fff;
    color: #0E2A47;
  }
}

/* ---------------------------------
 慣性スクロール（lenis）CSS
--------------------------------- */
html.lenis {
  height: auto;
}
.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis-stopped {
  overflow: hidden;
}
.lenis-scrolling iframe {
  pointer-events: none;
}

/* ---------------------------------
 reserve_area
 --------------------------------- */
.reserve_area{
  width: 100%;
  background-image: url('../img/top/mv_slide04.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  height: auto;
  padding: 5% 7%;
}
.reserve_area::before{
  content: '';
  background-color: rgba(14, 42, 71, 0.5);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.reserve_area .reserve_box{
  width: 100%;
  margin: 0 auto;
  position: relative;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 10%;
}
.reserve_area .reserve_box .reserve_link{
  width: 100%;
  margin-top: 30px;
}
.reserve_area .reserve_box .reserve_link a{
  display: block;
  width: 50%;
  border-radius: 99999px;
  padding: 15px 30px;
  border: 1px solid #fff;
  transition: 0.3s;
  position: relative;
}
.reserve_area .reserve_box .reserve_link a::after {
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.5em;
  height: 0.5em;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  content: "";
}
.reserve_area .reserve_box .reserve_link a:hover {
  background-color: #fff;
  color: #0E2A47;
  opacity: 1;
}
.reserve_area .reserve_box .reserve_link a:hover::after {
  border-right: 2px solid #0E2A47;
  border-top: 2px solid #0E2A47;
}

@media screen and (max-width: 896px) {
  .reserve_area{
    padding: 8%;
  }
  .reserve_area .reserve_box{
    border-radius: 15px;
    padding: 8%;
  }
  .reserve_area .reserve_box .reserve_link{
    margin-top: 15px;
  }
  .reserve_area .reserve_box .reserve_link a{
    width: 100%;
    padding: 10px 15px;
  }
}

/* ---------------------------------
 foot_group
 --------------------------------- */
.foot_group{
  width: 100%;
  padding: 150px 0;
}
.foot_group .foot_group_inner{
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
.foot_group .foot_group_en{
  width: 100%;
  font-size: 5.0rem;
  margin-bottom: 10px;
  line-height: 1.0;
}
.foot_group .foot_group_h3{
  font-size: 1.5rem;
  margin-bottom: 20px;
  width: 100%;
}
.foot_group .foot_group_list{
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
}
.foot_group .foot_group_list .foot_group_list_box{
  width: 24%;
}
.foot_group .foot_group_list .foot_group_list_box .foot_group_list_box_img{
  width: 100%;
  margin-bottom: 20px;
}
.foot_group .foot_group_list .foot_group_list_box .foot_group_list_box_note{
  width: 100%;
  text-align: center;
}
.foot_group .foot_group_list .foot_group_list_box .foot_group_list_box_note h4{
  width: 100%;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

@media screen and (max-width: 896px) {
  .foot_group{
    padding: 75px 0;
  }
  .foot_group .foot_group_inner{
    width: 94%;
  }
  .foot_group .foot_group_en{
    font-size: 2.0rem;
    text-align: center;
  }
  .foot_group .foot_group_h3{
    font-size: 1.0rem;
    text-align: center;
  }
  .foot_group .foot_group_list .foot_group_list_box{
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
  }
  .foot_group .foot_group_list .foot_group_list_box .foot_group_list_box_img{
    width: 40%;
    margin-bottom: 0;
  }
  .foot_group .foot_group_list .foot_group_list_box .foot_group_list_box_note{
    width: 55%;
    text-align: left;
  }
  .foot_group .foot_group_list .foot_group_list_box .foot_group_list_box_note h4{
    font-size: 1.0rem;
    margin-bottom: 5px;
  }
  .foot_group .foot_group_list .foot_group_list_box .foot_group_list_box_note p{
    font-size: 14px;
  }
}

/* ---------------------------------
 ページネーション
--------------------------------- */
.pagination {
  width: 100%;
}
.pagination .nav-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.pagination .nav-links li > * {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  height: 45px;
}
.pagination .nav-links li > *:not(.dots) {
  width: 45px;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  transition: color 0.3s ease, background 0.3s ease;
}
.pagination .nav-links li > .current,
.pagination .nav-links li > a:hover {
  color: #0E2A47;
  border: 1px solid #fff;
  background: #fff;
}