@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: #1E748F;
  ;
}

.col_highlight {
  color: #cc1f45;
}

.white {
  color: #fff;
}

/* 背景色 */
.bg_col_base {
  background-color: #e9f1f4;
}

.bg_col_gray {
  background-color:
    #f4f5f6;
}

.bg_col_dark {
  background-color: #1E748F;
  ;
}

.bg_col_blue {
  background-color: #DFE5EA;
}

/* リンク */
.link {
  color: #1E748F;
  ;
  text-decoration: underline;
}

.link:hover {
  text-decoration: none;
}

/* ---------------------------------
 リンクボタン 白ベース
--------------------------------- */
a.more_link_btn {
  display: block;
  width: 80%;
  max-width: 300px;
  padding: 15px;
  color: #1E748F;
  ;
  border: 1px solid #1E748F;
  ;
  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 #1E748F;
  ;
  /* thickness, color */
  border-right: 1px solid #1E748F;
  ;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

a.more_link_btn:hover {
  color: #fff;
  background-color: #1E748F;
  ;
}

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: #1E748F;
  ;
  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: #1E748F;
  ;
}

/* ---------------------------------
 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;
  margin-bottom: 20px;
}

@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: #1E748F;
  ;
}

@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: #1E748F;
  ;
  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: #1E748F;
  ;
  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: 80px; */
  width: 150px;
  z-index: 1000;
  filter: brightness(0) saturate(100%) invert(34%) sepia(85%) saturate(543%) hue-rotate(149deg) brightness(88%) contrast(93%);
}

.header__title a {
  color: white;
}

@media screen and (min-width: 895px) {
  .header__inner {
    padding: 0;
  }

  .header__title {
    /* top: 20px; */
    left: 20px;
  }
}

@media screen and (max-width: 896px) {
  .header__title {
    width: 100px;
  }
}

.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: #1E748F;
  ;
  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: #1E748F;
  ;
  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-color: #1E748F;
    ;
    padding: 22px 20px;
    color: #fff !important;
    font-size: 16px;
    width: 100%;
  }
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 70px;
  height: 100%;
  background-color: #1E748F;
  ;
  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(46, 95, 115, 0.7), rgba(46, 95, 115, 0.7)), 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: #1E748F;
  ;
  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: #DADADF;
}

.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: 1.2rem;
  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 .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;
}

footer .footer_inner {
  width: 94%;
  margin: 0 auto;
}

footer .footer_logo {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.35rem;
}

footer .footer_logo a {
  color: white;
}

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-between;
}

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: #1E748F;
  ;
}

footer .footer_linkbtn_list a.footer_linkbtn.f_btn_blue:hover {
  border: 1px solid #fff;
  background-color: #fff;
  color: #1E748F;
  ;
}

footer .footer_linkbtn_list a.footer_linkbtn.f_btn_white:hover {
  background-color: #1E748F;
  ;
  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: #1E748F;
  ;
}

/* ---------------------------------
 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: #1E748F;
  ;
  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: #1E748F;
    ;
    color: #fff;
  }

  .foot_follow_menu .foot_follow_menu_box .follow_link_box.col_blue {
    background-color: #c7dde3;
    color: #1E748F;
    ;
  }

  .foot_follow_menu .foot_follow_menu_box .follow_link_box.col_white {
    background-color: #fff;
    color: #1E748F;
    ;
  }
}