@charset "UTF-8";
/* -------------00.サイト初期設定------------- */
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css);
@import url("https://use.typekit.net/qmf1rnm.css");
/**
 * YUI 3.5.0 - reset.css (http://developer.yahoo.com/yui/3/cssreset/)
 * http://cssreset.com
 * Copyright 2012 Yahoo! Inc. All rights reserved.
 * http://yuilibrary.com/license/
 */
/*
  TODO will need to remove settings on HTML since we can't namespace it.
  TODO with the prefix, should I group by selector or property for weight savings?
*/
html {
  color: #000;
  background: #FFF;
}

/*
  TODO remove settings on BODY since we can't namespace it.
*/
/*
  TODO test putting a class on HEAD.
    - Fails on FF.
*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
figure {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

/*
  TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

/* to preserve line-height and selector appearance */
sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*to enable resizing for IE*/
input,
textarea,
select {
  *font-size: 100%;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssreset {
  display: none;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /*16px*62.5%=10px*/
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: "YuGothic", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: 1.6rem;
  font-weight: 200;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #333333;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
dl,
dt,
dd,
a {
  font-family: "YuGothic", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  color: #333333;
  font-size: 1.6rem;
}

h1,
h2 {
  letter-spacing: 2px;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

p {
  line-height: 2.4rem;
  letter-spacing: 1px;
  font-size: clamp(1.4rem, 1.286rem + 0.57vw, 1.8rem);
}

hr {
  display: block;
  unicode-bidi: isolate;
  -webkit-margin-before: 0.5em;
  margin-block-start: 0.5em;
  -webkit-margin-after: 0.5em;
  margin-block-end: 0.5em;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
  overflow: hidden;
  border-style: inset;
  border-width: 1px;
}

table {
  color: #333333;
  border-collapse: collapse;
  font-family: "YuGothic", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}

.tc {
  text-align: center;
}

.tl {
  text-align: left;
}

.tr {
  text-align: right;
}

.br::after {
  content: "\a";
}

.notbr {
  white-space: pre;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px;
}
@media screen and (max-width: 1440px) {
  .container {
    padding: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 16px;
  }
}
@media screen and (max-width: 425px) {
  .container {
    padding: 8px;
  }
}

section {
  padding: 100px 32px;
}
@media screen and (max-width: 1440px) {
  section {
    padding: 80px 24px;
  }
}
@media screen and (max-width: 1024px) {
  section {
    padding: 60px 16px;
  }
}
@media screen and (max-width: 425px) {
  section {
    padding: 40px 8px;
  }
}

.box {
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.m-btn01 {
  border: 1px solid #6bb8ef;
  border-radius: 8px;
  padding: 5px 10px;
  color: #6bb8ef;
  line-height: 1;
  font-size: 2rem;
  max-width: 300px;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-weight: bold;
}
.m-btn01::after {
  content: url(/common/img/btn_arrow.svg);
  position: relative;
  width: 50px;
  top: 50%;
  line-height: 0;
  margin-left: 10px;
}

.m-btn02 {
  border: 1px solid #6bb8ef;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  color: #2a6acb;
  line-height: 1;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.m-btn03 {
  border: 1px solid #6bb8ef;
  background-color: #2a6acb;
  border-radius: 30px;
  padding: 5px 10px;
  color: #fff;
  line-height: 1;
  font-size: 2rem;
  max-width: 300px;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  position: relative;
  font-weight: bold;
}
.m-btn03::after {
  content: url(/common/img/btn_arrow_white.svg);
  position: relative;
  width: 50px;
  top: 50%;
  line-height: 0;
  margin-left: 10px;
}

.m-btn04 {
  border: 1px solid #6bb8ef;
  background-color: #fff;
  border-radius: 30px;
  padding: 5px 10px;
  color: #6bb8ef;
  line-height: 1;
  font-size: 2rem;
  font-weight: bold;
  max-width: 300px;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  position: relative;
}
.m-btn04::after {
  content: url(/common/img/btn_arrow.svg);
  position: relative;
  width: 50px;
  top: 50%;
  line-height: 0;
  margin-left: 10px;
}

.m-btn05 {
  border: 1px solid #6bb8ef;
  background-color: #fff;
  border-radius: 30px;
  padding: 5px 10px;
  color: #2a6acb;
  line-height: 1;
  font-size: 2rem;
  max-width: 300px;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  position: relative;
}

/* -------------01.共通エリア（ヘッター）------------- */
.header {
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  overflow: hidden;
  border-bottom: 1px solid #fff;
}
.header .container {
  max-width: 1720px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 0 40px 0 40px;
}
@media screen and (max-width: 1024px) {
  .header .container {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 425px) {
  .header .container {
    padding: 5px;
  }
}
.header-logo {
  max-width: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-logo a {
  padding: 5px;
}
.header-logo a .logo2 {
  display: none;
}
.header .menu-btn {
  display: none;
}
.header .menu-btn:checked ~ .menu-icon .navicon:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header .menu-btn:checked ~ .menu-icon .navicon:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}
.header .menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  -webkit-transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.header .menu-btn:checked ~ .header-navbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .header .menu-btn:checked ~ .header-navbox {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
}
.header .menu-btn:checked ~ .header-navbox::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.header .menu-btn:checked ~ .header-navbox .l-gnavi .gnavi-item, .header .menu-btn:checked ~ .header-navbox .l-gnavi .gnavi-item a.navi-link {
  opacity: 1;
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}
.header .menu-icon {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header .menu-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    padding: 24px 14px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}
@media screen and (max-width: 425px) {
  .header .menu-icon {
    right: 0px;
  }
}
.header .menu-icon .navicon {
  background: #499ce9;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.header .menu-icon .navicon:before, .header .menu-icon .navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #499ce9;
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.header .menu-icon .navicon:before {
  top: 9px;
}
.header .menu-icon .navicon:after {
  bottom: 9px;
}
.header-navbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 5px;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
@media screen and (max-width: 1024px) {
  .header-navbox {
    position: absolute;
    min-width: 100%;
    height: calc(100vh - 60px);
    overflow: scroll;
    top: 100%;
    left: 0;
    gap: 0;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    padding-top: 0;
    margin-top: 1px;
  }
}
.header-navbox .navbox-func {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .header-navbox .navbox-func {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    background-color: #1b2e50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
  }
}
.header-navbox .navbox-func .l-tel {
  position: relative;
}
.header-navbox .navbox-func .l-tel a {
  background-color: #fff;
  padding: 2px 10px 2px 2px;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .header-navbox .navbox-func .l-tel a {
    background-color: transparent;
    color: #fff;
    padding: 0;
  }
  .header-navbox .navbox-func .l-tel a::before {
    content: "ご予約はこちらから";
    font-size: 1.4rem;
    padding: 0 8px;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) and (max-width: 425px) {
  .header-navbox .navbox-func .l-tel a::before {
    width: 100%;
  }
}
.header-navbox .navbox-func .l-tel a .fa-phone {
  color: #fff;
  background-color: #6bb8ef;
  padding: 5px;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .header-navbox .navbox-func .l-tel a .fa-phone {
    background-color: transparent;
  }
}
.header-navbox .navbox-func .l-tel a span {
  font-family: canada-type-gibson, sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.2em;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
.header-navbox .navbox-func .l-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .header-navbox .navbox-func .l-sns {
    display: none;
  }
}
.header-navbox .navbox-func .l-sns > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.header-navbox .navbox-func .l-sns > ul > li {
  width: 27px;
}
@media screen and (max-width: 1024px) {
  .header-navbox .l-gnavi-wrap {
    width: 100%;
    background-color: rgba(27, 46, 80, 0.8);
  }
}
.header-navbox .l-gnavi-wrap .gnavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 1024px) {
  .header-navbox .l-gnavi-wrap .gnavi {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.header-navbox .l-gnavi-wrap .gnavi .gnavi-item {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .header-navbox .l-gnavi-wrap .gnavi .gnavi-item {
    border-bottom: 1px solid #D9D9D9;
    position: relative;
  }
}
.header-navbox .l-gnavi-wrap .gnavi .gnavi-item a.navi-link {
  position: relative;
  display: inline-block;
  height: 100%;
  padding: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(1.4rem, 1.171rem + 0.48vw, 1.6rem);
  border-bottom: 2px solid rgba(0, 0, 0, 0);
}
@media screen and (max-width: 1024px) {
  .header-navbox .l-gnavi-wrap .gnavi .gnavi-item a.navi-link {
    text-transform: capitalize;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-left: 10px solid rgba(255, 255, 255, 0);
    color: #fff;
  }
}
.header-navbox .l-gnavi-wrap .gnavi .gnavi-item a.navi-link::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: -2px;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  background: #2a6acb;
  /*アニメーションの指定*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  /*X方向0、Y方向1*/
  -webkit-transform-origin: center top;
          transform-origin: center top;
  /*上部中央基点*/
}
@media screen and (max-width: 1024px) {
  .header-navbox .l-gnavi-wrap .gnavi .gnavi-item a.navi-link::after {
    display: none;
  }
}
.header-navbox .l-gnavi-wrap .gnavi .gnavi-item a.navi-link:hover {
  border-bottom: 2px solid rgba(42, 106, 203, 0);
  color: #2a6acb;
}
@media screen and (max-width: 1024px) {
  .header-navbox .l-gnavi-wrap .gnavi .gnavi-item a.navi-link:hover {
    border-left: 10px solid rgb(255, 255, 255);
    color: #fff;
  }
}
.header-navbox .l-gnavi-wrap .gnavi .gnavi-item a.navi-link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  /*X方向にスケール拡大*/
}
.header-navbox .l-gnavi-wrap .gnavi .gnavi-item a.navi-link.active {
  pointer-events: none;
  border-bottom: 2px solid #2a6acb;
  color: #2a6acb;
}
@media screen and (max-width: 1024px) {
  .header-navbox .l-gnavi-wrap .gnavi .gnavi-item a.navi-link.active {
    border-bottom: none;
    border-left: 10px solid rgb(255, 255, 255);
    color: #fff;
  }
}
.header-navbox .infobox {
  display: none;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 100%;
  background-color: #1b2e50;
  padding: 20px;
}
.header-navbox .infobox .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.header-navbox .infobox .btns a {
  max-width: 250px;
}
.header-navbox .infobox .info {
  margin-top: 20px;
}
.header-navbox .infobox .info p {
  color: #fff;
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .header-navbox .infobox {
    display: block;
  }
}
.header.active {
  overflow: visible;
  background: #1b2e50;
}
.header.active .logo {
  display: none;
}
.header.active .logo2 {
  display: block;
}

/* -------------01.共通エリア（フッター）------------- */
.f-logo {
  padding: 60px 20px;
  text-align: center;
}
.f-logo img {
  max-width: 240px;
}

/* -------------01.共通エリア（フッター）------------- */
.contact {
  background-color: #1b2e50;
  position: sticky;
  bottom: 0;
  z-index: 997;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}
.contact.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.contact .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  max-width: 1200px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .contact .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact .container .telBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6px;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
@media screen and (max-width: 1024px) {
  .contact .container .telBox {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: auto;
  }
}
.contact .container .telBox .l-tel a {
  padding: 2px 10px 2px 2px;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 2.6rem;
}
.contact .container .telBox .l-tel a::before {
  content: "ご予約はこちらから";
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 1px;
}
.contact .container .telBox .l-tel a .fa-phone {
  color: #fff;
}
.contact .container .telBox .l-tel a span {
  font-family: canada-type-gibson, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.2em;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
.contact .container .telBox .info_bizhours {
  color: #fff;
  font-size: 1.4rem;
}
.contact .container .telBox .info_bizhours span.br::after {
  display: none;
}
@media screen and (max-width: 425px) {
  .contact .container .telBox .info_bizhours span.br::after {
    display: block;
  }
}
.contact .container .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .contact .container .btns a:nth-child(1) {
    display: none;
  }
}
.contact .container .btns a {
  max-width: 170px;
}

/* -------------01.共通エリア（フッター）------------- */
.footer .container {
  max-width: 1200px;
  padding: 0;
}
.footer-link {
  background-color: #1b2e50;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 768px) {
  .footer-link {
    padding: 0;
    border: none;
  }
}
.footer-link .container ul.gnavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer-link .container ul.gnavi {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .footer-link .container ul.gnavi li.gnavi-item {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.footer-link .container ul.gnavi li.gnavi-item a.navi-link {
  color: #fff;
  font-size: clamp(1.4rem, 1.171rem + 0.48vw, 1.6rem);
  padding: 14px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer-link .container ul.gnavi li.gnavi-item a.navi-link {
    display: block;
    border-left: 10px solid rgba(255, 255, 255, 0);
  }
}
.footer-link .container ul.gnavi li.gnavi-item a.navi-link::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 1px;
  background: #fff;
  /*アニメーションの指定*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  /*X方向0、Y方向1*/
  -webkit-transform-origin: center top;
          transform-origin: center top;
  /*上部中央基点*/
}
.footer-link .container ul.gnavi li.gnavi-item a.navi-link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1); /*X方向にスケール拡大*/
}
.footer-link .container ul.gnavi li.gnavi-item a.navi-link.active {
  border-bottom: 1px solid #fff;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .footer-link .container ul.gnavi li.gnavi-item a.navi-link.active {
    border-bottom: none;
    border-left: 5px solid rgb(255, 255, 255);
  }
}
.footer-bottomarea {
  background-color: #1b2e50;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 1024px) {
  .footer-bottomarea {
    padding: 16px;
  }
}
.footer-bottomarea .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer-bottomarea .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
}
.footer-bottomarea .container .copy {
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .footer-bottomarea .container .copy {
    padding-left: 0;
  }
}
.footer-bottomarea .container .copy small {
  color: #fff;
  font-size: 1.2rem;
}/*# sourceMappingURL=style.css.map */