/*** ----------------------------------------------------------------------------- 

reset

-----------------------------------------------------------------------------  ***/
.clearfix:after {
	content:".";
	display:block;
	visibility:hidden;
	clear:both;
	height:0.1px;
	font-size:0.1em;
	line-height:0;
}
.clearfix {
	display:inline-table;
	zoom:1;
}
/*Hides from IE-mac \*/
* html .clearfix {
	height:1%;
}
.clearfix {
	display:block;
}


/* End hide from IE-mac */
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 {
	margin:0px;
	padding:0px;
}　
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset, img {
	border:0;
}
address, caption, cite, code, dfn, em, th, var {
	font-style:normal;
	font-weight:normal;
}
ul {
	list-style:none;
}
ol li{
	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;
}
sup {
	vertical-align:top;
}
sub {
	vertical-align:text-bottom;
}
input, textarea, select {
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
}
input, textarea, select {
 *font-size:100%;
}
legend {
	color:#000000;
}
img {
	vertical-align:bottom;
}
table caption {
	font-weight: bold;
	margin:0 0 5px;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}


/*** ----------------------------------------------------------------------------- 

変数定義

-----------------------------------------------------------------------------  ***/
:root{
    /* カラー　*/
    --color_base: #00A0E9;
    --color_blue: #EEF8FD;
    --color_red: #E7336E;
    --color_black: #333;
    
    /* フォント */
    --font_ja: "Noto Sans JP", serif;
}



/*** ------------------------------------------------------------------------------ 

HTML5

-----------------------------------------------------------------------------  ***/
#header, footer, nav, section, article, figure, aside {
	display:block;
}
* {
	box-sizing:border-box;
}
i{
	margin: 0 5px 0 0;
}
img{
	max-width: 100%;
	image-rendering: -webkit-optimize-contrast;
}

/*** ------------------------------------------------------------------------------ 

common

-----------------------------------------------------------------------------  ***/
html {
	font-size: 62.5%;
	overflow-x: hidden;
	height: 100%;
}
body {
	color: var(--color_black);
	line-height: 1.75;
	font-size: 1.6rem;
	font-family: "Noto Sans JP", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", MS PGothic, "ＭＳ Ｐゴシック", Osaka, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
@media (max-width:768px){
	body {
		font-size: 1.6rem;
		font-family: "Noto Sans JP", sans-serif, Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", MS PGothic, "ＭＳ Ｐゴシック", Osaka, sans-serif;
	}	
}


.pc{ display: block;}
.sp{ display: none;}
@media (max-width:768px){
	.pc{ display: none;}
	.sp{ display: block;}
}




/*** ------------------------------------------------------------------------------ 

リンク

-----------------------------------------------------------------------------  ***/
/* 基本 */
a{
	color: var(--color_base);
	outline:none;
	-webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:active {
	text-decoration: none;
}
a img {
	transition: 0.3s;
}

input[type=text],
textarea {
  -webkit-appearance: none;
}



/*** ------------------------------------------------------------------------------ 

main

-----------------------------------------------------------------------------  ***/
main{}



/*** ------------------------------------------------------------------------------ 

l-inner

-----------------------------------------------------------------------------  ***/
.l-inner{
	max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
	box-sizing: border-box;
}
.l-inner01{
	max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
	box-sizing: border-box;
}
@media (max-width:768px){}




/*** ------------------------------------------------------------------------------ 

l-header

-----------------------------------------------------------------------------  ***/
.l-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap
}

.l-flex--start {
  justify-content: flex-start
}

.l-flex--end {
  justify-content: flex-end
}

.l-flex--center {
  justify-content: center
}

.l-flex--align-start {
  align-items: flex-start
}

.l-flex--align-stretch {
  align-items: stretch
}

.l-flex--align-end {
  align-items: flex-end
}

.l-flex--column {
  flex-direction: column;
  align-items: initial
}

.l-flex--no-wrap {
  flex-wrap: nowrap
}


.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  /*height: 95px;*/
  height: 110px;
  padding-left: 3.125rem;
  margin-bottom: 2.5rem;
  z-index: 99;
  transition: position .8s cubic-bezier(0.16, 1, 0.3, 1), opacity .8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-property: top, opacity
}

.l-header__info-top{
  align-items: center;
}
.l-header__info-top-contact{
  display: flex;
  align-items: center;
}


@media screen and (max-width: 1260px) {
  .l-header {
    padding-left: 1.5625rem
  }
}

@media screen and (max-width: 1160px) {
  .l-header {
    align-items: center
  }
}
@media screen and (max-width: 1100px) {
  .l-header{
    /*height: 70px;*/
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 70px;
    background-color: #fff;
    padding-left: 1rem;
    margin-bottom: 0
  }
}

@media screen and (max-width: 480px) {
  .l-header {
    height: 60px
  }
}

.l-header--top {
  position: absolute
}

@media screen and (max-width: 768px) {
  .l-header--top {
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0)
  }
}

.l-header__logo {
  width: min(25%, 400px);
  width: min(45%, 400px);
/*  padding-bottom: 1.625rem*/
}

@media screen and (max-width: 1260px) {
  .l-header__logo {
    width: min(35%, 320px)
  }
}

@media screen and (max-width: 1160px) {
  .l-header__logo {
    width: min(55%, 320px);
    padding-bottom: 0;
    margin-right: 5%
  }
}

@media screen and (max-width: 768px) {
  .l-header__logo {
    width: min(85%, 300px)
  }
}

@media screen and (max-width: 480px) {
  .l-header__logo {
    width: min(100%, 340px);
    margin-right: 2%
  }
}

.l-header__wrap {
  width: 100%
}

@media screen and (max-width: 1260px) {
  .l-header__wrap {
    /*width: 76%;*/
    width: 100%;
  }
}

@media screen and (max-width: 1160px) {
  .l-header__wrap {
    /*width: 160px;*/
    width: 100%;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .l-header__wrap {
    align-items: center;
  }
}
@media screen and (max-width: 480px) {
  .l-header__wrap {
    /*width: 120px;*/
    width: 100%;
  }
}

.l-header__info {
  width: calc(100% - (200px + 1.875rem));
  margin-right: 1.875rem
}

@media screen and (max-width: 1260px) {
  .l-header__info {
    width: calc(100% - (160px + 1.25rem));
    margin-right: 1.25rem
  }
}

@media screen and (max-width: 1160px) {
  .l-header__info {
    /*display: none*/
  }
}
@media screen and (max-width: 480px) {
  .l-header__info {
    margin-right: 0;
    width: calc(100% - 120px);
    padding: 0 20px 0 0;
    box-sizing: border-box;
  }
}


.l-header__info-top {
  margin-top: .475rem;
  margin-bottom: .475rem;
}

.l-header__info-top-tel {
  color: var(--color_base);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.875rem;
  margin-right: 15px;
}

.l-header__info-top-tel .icon {
  width: 26px;
  vertical-align: middle;
  margin-right: .375rem;
  transform: translateY(-4px);
}

.l-header__info-top-hour {
  color: var(--color_base);
  font-size: 1.6rem;
  line-height: 1.2;
  margin-right: 1.875rem
}

.l-header__info-top-link {
  position: relative;
  font-size: clamp(.75rem, .75rem + 0vw, .75rem);
  font-weight: 500;
  line-height: .875rem;
  padding-left: 1.5rem;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, .6);
  transition: .4s cubic-bezier(0.33, 0.09, 0.09, 1)
}

.l-header__info-top-link::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 7px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 75% 50%);
  z-index: 2
}

.l-header__info-top-link::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: #0c76ae;
  border-radius: 50%
}

@media(any-hover: hover) {
  .l-header__info-top-link:hover {
    color: #0c76ae
  }
}

.l-header__info-nav {
  /*gap: 2.5%;*/
  gap: 2.0%;
}

.l-header__info-nav-item {
  padding-bottom: .875rem;
  cursor: pointer
}

.l-header__info-nav-item.has-child::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1.875rem;
  background-color: rgba(51, 51, 51, .2);
  transition: .4s cubic-bezier(0.33, 0.09, 0.09, 1);
  opacity: 0;
  visibility: hidden
}

.l-header__info-nav-item.has-child::after {
  content: "";
  position: absolute;
  top: calc(100% + 30px);
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  background-color: rgba(51, 51, 51, .2);
  transition: .4s cubic-bezier(0.33, 0.09, 0.09, 1);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  visibility: hidden
}

.l-header__info-nav-item-title {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.125rem;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, .6);
  color: var(--color_text);
  text-decoration: none;
}
.l-header__info-nav-item-title:hover{
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .l-header__info-nav-item-title {
    font-size: 1.4rem;
  }
}

.l-header__info-nav-item-title.has-link {
  cursor: pointer
}

.l-header__info-nav-item-title::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  border-bottom: 2px solid var(--color_base);
  opacity: 0;
  visibility: hidden;
  transition: .4s cubic-bezier(0.33, 0.09, 0.09, 1)
}

.l-header__info-nav-item-title.has-child {
  position: relative
}

.l-header__info-nav-item-title.has-child::after {
  content: "";
  position: absolute;
  top: 35%;
  top: calc(100% + 1.25rem);
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 25px;
  clip-path: polygon(50% 30%, 10% 100%, 90% 100%);
  background-color: #fff;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: .4s cubic-bezier(0.33, 0.09, 0.09, 1)
}

@media(any-hover: hover) {

  .l-header__info-nav-item:hover::before,
  .l-header__info-nav-item:hover::after,
  .l-header__info-nav-item:hover .l-header__info-nav-child,
  .l-header__info-nav-item:hover .l-header__info-nav-item-title::before,
  .l-header__info-nav-item:hover .l-header__info-nav-item-title.has-child::after {
    opacity: 1;
    visibility: visible
  }
}

.l-header__info-nav-child {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(100% + 1.875rem);
  right: 5%;
  width: fit-content;
  min-width: 632px;
  max-width: 1230px;
  height: fit-content;
  transition: .4s cubic-bezier(0.33, 0.09, 0.09, 1)
}

.l-header__info-nav-child.col-4 {
  min-width: 1230px
}

@media screen and (max-width: 1320px) {
  .l-header__info-nav-child.col-4 {
    min-width: 924px;
    max-width: 90%;
    right: initial;
    left: 50%;
    transform: translateX(-50%)
  }

  .l-header__info-nav-child.col-4 .l-header__info-nav-child-list-item:nth-of-type(4) {
    border-top: none
  }
}

.l-header__info-nav-child.col-3 {
  min-width: 924px
}

.l-header__info-nav-child.col-2 {
  min-width: 632px
}

.l-header__info-nav-child-inner {
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: 1.875rem 2.5rem;
  margin: 0 auto
}

.l-header__info-nav-child-title {
  color: #0c76ae;
  font-size: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
  font-weight: 700;
  line-height: 1rem;
  padding-bottom: 1.125rem
}

.l-header__info-nav-child-title .icon {
  display: inline-block;
  width: 18px;
  margin-left: 1.875rem
}

.l-header__info-nav-child-list {
  gap: 2%
}

.l-header__info-nav-child-list-item {
  position: relative;
  width: 270px;
  font-size: clamp(.875rem, .875rem + 0vw, .875rem);
  font-weight: 500;
  border-bottom: 1px solid #d5dde3;
  transition: .4s cubic-bezier(0.33, 0.09, 0.09, 1)
}

.l-header__info-nav-child-list-item::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 75% 50%);
  z-index: 2
}

.l-header__info-nav-child-list-item::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: #0c76ae;
  border-radius: 50%
}

.l-header__info-nav-child-list-item a {
  display: flex;
  align-items: center;
  width: 90%;
  height: 100%;
  padding: 1.5rem .5rem
}

.l-header__info-nav-child-list-item .icon {
  width: 16px
}

.l-header__info-nav-child-list-item .icon.margin-left {
  margin-left: .5rem
}

.l-header__info-nav-child-list-item:nth-of-type(1),
.l-header__info-nav-child-list-item:nth-of-type(2),
.l-header__info-nav-child-list-item:nth-of-type(3),
.l-header__info-nav-child-list-item:nth-of-type(4) {
  border-top: 1px solid #d5dde3
}

@media(any-hover: hover) {
  .l-header__info-nav-child-list-item:hover {
    background-color: rgba(221, 221, 221, .2);
    color: #0c76ae
  }
}

.l-header__info--top .l-header__info-top-tel,
.l-header__info--top .l-header__info-top-hour {
/*  text-shadow: 1px 1px 3px rgba(12, 118, 174, .6)*/
}

.l-header__button {
  width: 100px;
  height: 95px;
  height: 110px;
  text-align: center;
  padding: 1.9375rem 0;
  padding: 2.5375rem 0 1.9375rem;
  line-height: 1.0;
}
.l-header__button:hover{
  text-decoration: none;
}

@media screen and (max-width: 1260px) {
  .l-header__button {
    width: 80px
  }
}
@media screen and (max-width: 1100px) {
  .l-header__info-nav{
    display: none;
  }
  .l-header__info-top-contact{
    display: none;
  }
}
/*@media screen and (max-width: 768px) {*/
@media screen and (max-width: 1100px) {
  .l-header__button {
    padding: .625rem 0;
    height: 80px
  }
}

@media screen and (max-width: 480px) {
  .l-header__button {
    width: 60px;
    height: 60px;
    padding: .25rem 0
  }
}

.l-header__button-icon {
  display: block;
  width: auto;
  height: 20px;
  margin: 0 auto .4375rem
}

@media screen and (max-width: 768px) {
  .l-header__button-icon {
    margin: 0 auto .3125rem
  }
}

@media screen and (max-width: 480px) {
  .l-header__button-icon {
    height: 18px;
    margin-bottom: 0
  }
}

.l-header__button-text {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}
/*
.l-header.is-fixed .l-header__button-text {
  font-size: 1.1rem;
}
*/
@media screen and (max-width: 480px) {
  .l-header__button-text {
    line-height: 1;
    font-size: 1.1rem;
  }
}

.l-header__button-access {
  background-color: var(--color_base);
}

@media screen and (max-width: 1160px) {
  .l-header__button-access {
    display: none
  }
}

@media(any-hover: hover) {
  .l-header__button-access:hover {
    background-color: #0e86c6
  }
}

.l-header__button-menu {
  display: none;
  position: relative;
  background-color: #333;
  cursor: pointer
}

@media screen and (max-width: 1160px) {
  .l-header__button-menu {
    display: block;
    background-color: var(--color_base);
  }
}

.l-header__button-menu-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 30px;
  height: 3px;
  background-color: #fff
}

.l-header__button-menu-bar::before,
.l-header__button-menu-bar::after {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  width: 30px;
  height: 3px;
  background-color: #fff
}

.l-header__button-menu-bar::before {
  top: -8px
}

.l-header__button-menu-bar::after {
  top: 8px
}

@media(any-hover: hover) {
  .l-header__button-menu:hover {
    background-color: #404040
  }
}

@media screen and (any-hover: hover)and (max-width: 1100px) {
  .l-header__button-menu:hover {
    background-color: #0e86c6
  }
}

.l-header__button-reserve {
  background-color: var(--color_red);
}

@media(any-hover: hover) {
  .l-header__button-reserve:hover {
    background-color: #e55d84
  }
}

.l-header__hamburger {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color_base);
  padding: 4.375rem 1.375rem 6.25rem;
  z-index: 100;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .8s cubic-bezier(0.16, 1, 0.3, 1)
}

@media screen and (max-width: 768px) {
  .l-header__hamburger {
    padding: 5rem 0 6.25rem
  }
}

.l-header__hamburger-close {
  position: absolute;
  top: 1.4375rem;
  right: 2.625rem;
  width: 30px;
  height: 30px;
  cursor: pointer
}

@media screen and (max-width: 768px) {
  .l-header__hamburger-close {
    top: 1.25rem;
    right: 1.25rem
  }
}

.l-header__hamburger-close-bar {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 30px;
  height: 3px;
  background-color: #fff;
  transform: translateY(-50%) rotate(45deg)
}

.l-header__hamburger-close-bar::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 3px;
  background-color: #fff;
  transform: rotate(-90deg)
}

.l-header__hamburger-container {
  width: min(90%, 768px);
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .l-header__hamburger-container {
    width: 100%;
    padding: 0 20px;
  }
}

.l-header__hamburger-inner {
  width: 100%;
  margin: 40px auto 0;
}

@media screen and (max-width: 768px) {
  .l-header__hamburger-inner {
    width: 100%
  }
}

.l-header__hamburger-wrap {
  position: relative;
  color: #fff
}

.l-header__hamburger-wrap.no-border {
  border-bottom: none
}

@media screen and (max-width: 768px) {
  .l-header__hamburger-wrap.no-border--sp {
    border-bottom: none
  }
}

.l-header__hamburger-wrap--sp {
  display: none
}

@media screen and (max-width: 768px) {
  .l-header__hamburger-wrap--sp {
    display: flex;
    gap: 1.5625rem 4%;
    padding: 0 1.875rem;
    margin-top: 1.875rem
  }
}

.l-header__hamburger-wrap--sp-item {
  width: 48%;
  font-size: clamp(.9375rem, .9375rem + 0vw, .9375rem);
  font-weight: 500;
  line-height: 1rem
}

@media screen and (max-width: 480px) {
  .l-header__hamburger-wrap--sp-item {
    white-space: nowrap
  }
}

.l-header__hamburger-wrap-title {
  display: block;
  font-size: clamp(1.125rem, 1.125rem + 0vw, 1.125rem);
  font-weight: 700;
  line-height: 3.375rem;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  pointer-events: none
}

@media screen and (max-width: 768px) {
  .l-header__hamburger-wrap-title {
    position: relative;
    padding: 0 1.875rem;
    pointer-events: all
  }

  .l-header__hamburger-wrap-title::after {
    content: "+";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 1.875rem;
    transform: translateY(-50%);
    font-size: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
    font-weight: 700;
    line-height: 1.125rem
  }
}

.l-header__hamburger-wrap-title.has-link {
  cursor: pointer;
  pointer-events: all;
  text-decoration: none;
}

.l-header__hamburger-wrap-title.has-link::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url("../images/common/icon-arrow.svg") no-repeat;
  background-size: contain
}

@media screen and (max-width: 768px) {
  .l-header__hamburger-wrap-title.has-link::after {
    right: 1.875rem
  }
}

@media(any-hover: hover) {
  .l-header__hamburger-wrap-title.has-link:hover {
    opacity: .8
  }
}

.l-header__hamburger-wrap-title.open::after {
  content: "－";
  right: 1.75rem;
  font-size: clamp(.9375rem, .9375rem + 0vw, .9375rem)
}

@media screen and (max-width: 768px) {
  .l-header__hamburger-wrap .js-accordion {
    opacity: 0;
    max-height: 0
  }
}

.l-header__hamburger-wrap-menu {
  padding-bottom: 2rem;
  margin-top: .75rem
}

@media screen and (max-width: 768px) {
  .l-header__hamburger-wrap-menu {
    padding: .75rem 1.875rem 1.875rem;
    margin-top: 0
  }
}

.l-header__hamburger-wrap-menu-item {
  width: 50%;
  font-size: clamp(.875rem, .875rem + 0vw, .875rem);
  font-weight: 500;
  line-height: 2.25rem;
  transition: .4s cubic-bezier(0.33, 0.09, 0.09, 1)
}

@media screen and (max-width: 768px) {
  .l-header__hamburger-wrap-menu-item {
    width: 100%
  }
}

@media screen and (max-width: 480px) {
  .l-header__hamburger-wrap-menu-item {
    font-size: clamp(.9375rem, .9375rem + 0vw, .9375rem)
  }
}

.l-header__hamburger-wrap-menu-item::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("../images/common/icon-arrow.svg") no-repeat;
  background-size: contain;
  margin-right: .875rem
}

.l-header__hamburger-wrap-menu-item .icon {
  width: 12px;
  height: 12px;
  vertical-align: baseline;
  margin-left: .5rem
}

@media(any-hover: hover) {
  .l-header__hamburger-wrap-menu-item:hover {
    opacity: .8;
    text-decoration: underline
  }
}

.l-header__hamburger-wrap-menu.open {
  border-bottom: 1px solid rgba(255, 255, 255, .2)
}

@media screen and (max-width: 768px) {
  .l-header__hamburger-wrap-menu.open .l-header__hamburger-wrap-title::after {
    content: "－";
    font-size: clamp(1rem, 1rem + 0vw, 1rem)
  }
}

.l-header__hamburger-wrap a {
  cursor: pointer;
  color: #fff;
  font-size: 1.6rem;
  display: block;
  padding: 12px 0;
}

.l-header__hamburger-button {
  width: 48%;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 100px;
  text-align: center;
  padding: 1.25rem 0;
  transition: .4s cubic-bezier(0.33, 0.09, 0.09, 1);
}

@media screen and (max-width: 768px) {
  .l-header__hamburger-button {
    width: 90%;
    margin: 0 auto
  }

  .l-header__hamburger-button:first-of-type {
    margin-bottom: .625rem
  }
}

.l-header__hamburger-button-text {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center
}

.l-header__hamburger-button-text::before {
  content: "";
  display: inline-block;
  height: 20px;
  vertical-align: sub;
  margin-right: .625rem
}

.l-header__hamburger-button-access {
  color: var(--color_base);
}

.l-header__hamburger-button-access .l-header__hamburger-button-text::before {
  width: 15px;
  background: url("../images/common/icon-map02.svg") no-repeat;
  background-size: contain
}

@media screen and (max-width: 768px) {
  .l-header__hamburger-button-access {
    margin-top: 1.875rem
  }
}

@media(any-hover: hover) {
  .l-header__hamburger-button-access:hover {
    background-color: #0c76ae;
    border: 1px solid #fff;
    color: #fff
  }

  .l-header__hamburger-button-access:hover .l-header__hamburger-button-text::before {
    background: url("../images/common/icon-map.svg") no-repeat;
    background-size: contain
  }
}

.l-header__hamburger-button-reservation {
  color: var(--color_red);
}

.l-header__hamburger-button-reservation .l-header__hamburger-button-text::before {
  width: 18px;
  background: url("../images/common/icon-reservation02.svg") no-repeat;
  background-size: contain
}

@media(any-hover: hover) {
  .l-header__hamburger-button-reservation:hover {
    background-color: var(--color_red);
    border: 1px solid #fff;
    color: #fff
  }

  .l-header__hamburger-button-reservation:hover .l-header__hamburger-button-text::before {
    background: url("../images/common/icon-reservation.svg") no-repeat;
    background-size: contain
  }
}

.l-header__hamburger.is-open {
  transform: translateX(0)
}

.l-header.is-fixed {
  position: fixed;
  top: 0;
/*  height: 70px;*/
  background-color: #fff;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .l-header.is-fixed {
    height: 80px
  }
}

@media screen and (max-width: 480px) {
  .l-header.is-fixed {
    height: 60px
  }
}

/*
.l-header.is-fixed .l-header__logo {
  width: min(30%, 400px);
  padding-bottom: .5rem
}
*/
@media screen and (max-width: 1260px) {
  /*
  .l-header.is-fixed .l-header__logo {
    width: min(30%, 360px)
  }
  */
}

@media screen and (max-width: 1160px) {
  /*
  .l-header.is-fixed .l-header__logo {
    width: min(50%, 360px);
    padding-bottom: 0
  }
  */
}

@media screen and (max-width: 768px) {
  .l-header.is-fixed .l-header__logo {
    width: min(90%, 300px);
    margin-right: 5%
  }
}

@media screen and (max-width: 480px) {
  .l-header.is-fixed .l-header__logo {
    width: min(100%, 300px);
    margin-right: 2%
  }
}

/*
.l-header.is-fixed .l-header__wrap {
  align-items: center;
  width: 70%
}
*/
@media screen and (max-width: 1260px) {
  /*
  .l-header.is-fixed .l-header__wrap {
    width: 70%
  }
  */
}

@media screen and (max-width: 1160px) {
  /*
  .l-header.is-fixed .l-header__wrap {
    width: 200px
  }
  */
}

@media screen and (max-width: 768px) {
  .l-header.is-fixed .l-header__wrap {
    /*width: 160px;*/
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .l-header.is-fixed .l-header__wrap {
    width: 120px;
    width: 100%;
  }
}
/*
.l-header.is-fixed .l-header__info {
  width: 55%;
  margin-right: 0
}
*/
/*
.l-header.is-fixed .l-header__info-top {
  margin-bottom: 0
}
*/
/*
.l-header.is-fixed .l-header__info-top-tel,
.l-header.is-fixed .l-header__info-top-hour {
  text-shadow: none
}

.l-header.is-fixed .l-header__info-top-link {
  display: none
}
*/
/*
.l-header.is-fixed .l-header__info-nav {
  display: none
}
*/
/*
.l-header.is-fixed .text-br {
  display: none
}
*/
@media screen and (max-width: 768px) {
  .l-header.is-fixed .text-br {
    display: block
  }
}

.l-header.is-fixed .l-header__button {
  /*
  width: 100px;
  height: 70px
  */
}

@media screen and (max-width: 768px) {
  .l-header.is-fixed .l-header__button {
    width: 80px;
    height: 80px
  }
}

@media screen and (max-width: 480px) {
  .l-header.is-fixed .l-header__button {
    width: 60px;
    height: 60px
  }
}
/*
.l-header.is-fixed .l-header__button-menu {
  display: block
}
*/
.l-header.is-scroll {
  /*position: fixed;*/
  top: -200px;
  opacity: 0
}



/*** ------------------------------------------------------------------------------ 

l-footer

-----------------------------------------------------------------------------  ***/
.l-footer{}
.l-footer-flex{
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
}
.l-footer-flex__logo{
  max-width: 394px;
}
.l-footer-flex__text{
  width: calc(100% - 394px);
  padding: 0 0 0 40px;
  box-sizing: border-box;
}
.l-footer-flex__text-title{
  text-align: right;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.777;
  margin: 0 0 0.5em;
}
.l-footer-flex__text-txt{
  text-align: right;
  font-size: 1.4rem;
  line-height: 1.71;
  margin: 0;
}
.l-footer__copyright{
  padding: 15px 10px 13px;
  background: var(--color_blue);
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color_base);
  line-height: 1.5;
}
@media (max-width:768px){
  .l-footer-flex{
    display: block;
    padding: 40px 0;
  }
  .l-footer-flex__logo{
    max-width: 300px;
    width: 100%;
    margin: 0 auto 30px;
    text-align: center;
  }
  .l-footer-flex__text{
    width: 100%;
    padding: 0;
  }
  .l-footer-flex__text-title{
    text-align: center;
    font-size: 1.6rem;
  }
  .l-footer-flex__text-txt{
    text-align: center;
  }
  .l-footer__copyright{
    font-size: 1.1rem;
  }
}


/*** ------------------------------------------------------------------------------ 

.p-contact-cont

-----------------------------------------------------------------------------  ***/
.p-contact-cont{
  background: linear-gradient(to right,  rgba(107,215,239,1) 0%,rgba(0,160,233,1) 100%);
  padding: 80px 0;
  position: relative;
}
.p-contact-cont::after{
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: url("../img/contact-cont-text.svg") no-repeat center bottom;
}
.p-contact-cont__title{
  text-align: center;
  margin: 0 0 65px;
  position: relative;
  z-index: 1;
}
.p-contact-cont-flex{
  display: flex;
  justify-content: center;
  gap: 0 45px;
  position: relative;
  z-index: 1;
}
.p-contact-cont-flex__item{
  max-width: 380px;
  width: 100%;
}
.p-contact-cont-flex__item-title{
  text-align: center;
  font-size: 2.0rem;
  font-weight: bold;
  margin: 0 0 0.75em;
  color: #fff;
}
.p-contact-cont-flex__item-btn a{
  display: block;
  background: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--color_base);
  text-align: center;
  padding: 20px 10px 20px 40px;
  border-radius: 45px;
  text-decoration: none;
  transition: 0.3s;
}
.p-contact-cont-flex__item-btn--tel a span{
  position: relative;
}
.p-contact-cont-flex__item-btn--tel a span::before{
  position: absolute;
  left: -28px;
  top: 50%;
  content: '';
  width: 19px;
  height: 26px;
  background: url("../img/contact-cont-tel.svg") no-repeat center center;
  transform: translateY(-50%);
}
.p-contact-cont-flex__item-btn--contact a span{
  position: relative;
}
.p-contact-cont-flex__item-btn--contact a span::before{
  position: absolute;
  left: -40px;
  top: 50%;
  content: '';
  width: 31px;
  height: 21px;
  background: url("../img/contact-cont-contact.svg") no-repeat center center;
  transform: translateY(-50%);
}
.p-contact-cont__time{
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.875;
  margin: 3.0em auto 0;
  position: relative;
  z-index: 1;
}
@media (min-width:769px){
  .p-contact-cont-flex__item-btn--tel a{
    pointer-events: none;
  }
  .p-contact-cont-flex__item-btn a:hover{
    transform: scale(1.04);
  }
}
@media (max-width:850px){
  .p-contact-cont-flex__item-title{
    font-size: 1.8rem;
  }
  .p-contact-cont-flex__item-btn a{
    font-size: 2.0rem;
  }
}
@media (max-width:768px){
  .p-contact-cont{
    padding: 60px 0;
  }
  .p-contact-cont__title{
    margin: 0 0 30px;
  }
  .p-contact-cont-flex{
    display: block;
  }
  .p-contact-cont-flex__item{
    width: 100%;
    margin: 0 auto 30px;
  }
  .p-contact-cont-flex__item:last-of-type{
    margin: 0 auto;
  }
  .p-contact-cont-flex__item-title{
    font-size: 1.6rem;
  }
  .p-contact-cont__time{
    margin: 1.5em auto 0;
  }
}
@media (max-width:450px){
  .p-contact-cont-flex__item-btn--contact a{
    font-size: min(2.0rem, 4.25vw);
  }
}


/*** ------------------------------------------------------------------------------ 

.c-txt-en

-----------------------------------------------------------------------------  ***/
.c-txt-en{
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color_base);
}
@media (max-width:768px){
  .c-txt-en{
    font-size: 1.4rem;
  } 
}


/*** ------------------------------------------------------------------------------ 

.c-title

-----------------------------------------------------------------------------  ***/
.c-title{
  font-size: 4.0rem;
  font-weight: bold;
  line-height: 1.5;
}
.c-title--white{
  color: #fff;
}
@media (max-width:768px){
  .c-title{
    font-size: 2.4rem;
  }
}


/*** ------------------------------------------------------------------------------ 

.p-headline

-----------------------------------------------------------------------------  ***/
.p-headline{
  margin: 0 0 60px;
}
.p-headline .c-txt-en{
  text-align: center;
  margin: 0 0 10px;
}
.p-headline .c-title{
  text-align: center;
}
@media (max-width:768px){
  .p-headline{
    margin: 0 0 30px;
  }
}





/*** ------------------------------------------------------------------------------ 

ページ内リンクズレ対策
ページ内リンクズレ対策

-----------------------------------------------------------------------------  ***/
.anchor{
    display: block;
    padding-top: 100px;
    margin-top: -100px;
}
.anchor01{
    display: block;
    padding-top: 167px;
    margin-top: -167px;
}
@media(max-width:768px){
	.anchor01{
		display: block;
		padding-top: 100px;
		margin-top: -100px;
	}
}


/*** ------------------------------------------------------------------------------ 

スクロールアニメーション

-----------------------------------------------------------------------------  ***/
/*----------------------------
scroll_fade ｜フェード出現
----------------------------*/
.scroll_fade {
    transition: 0.8s ease-in-out;
    opacity: 0;
}
.scroll_fade.on {
    opacity: 1.0;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}
.scroll_up.on {
	transform: translateY(0);
	opacity: 1.0;
	/*overflow: hidden;*/
}

.timing02 {transition-delay: .2s;}
.timing03 {transition-delay: .4s;}
.timing04 {transition-delay: .6s;}
.timing05 {transition-delay: .8s;}
.timing06 {transition-delay: 1.0s;}
.timing07 {transition-delay: 1.2s;}
.timing08 {transition-delay: 1.4s;}


/*** ------------------------------------------------------------------------------ 

paginations

-----------------------------------------------------------------------------  ***/
.paginations{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
}
.navigation.first .paginations{
    padding-top: 0;
    padding-bottom: 0;
}
.paginations li a{
    position: relative;
    text-decoration: none;
    box-sizing: border-box;
    line-height: 1;
}
.paginations li.link a{
    background-color: #EEF8FD;
    width: 60px;
    padding: 10px 0;
    border-radius: 25px;
    font-size: clamp(1.4rem,1.5vw,1.6rem);
    font-weight: 500;
    text-align: center;
    display: block;
    margin: 0 10px 10px 0;
    color: var(--color_black);
}
.paginations li:first-child{
  margin: 0 30px 0 0;
}
.paginations li:first-child a{
  width: auto;
  border-radius: 15px 3px 3px 15px;
  padding: 10px 13px 10px 18px;
  background: none;
}
.paginations li:last-child{
  margin: 0 0 0 30px;
 }
.paginations li:last-child a{
  /*
  width: auto;
  border-radius: 3px 15px 15px 3px;
  padding: 10px 18px 10px 13px;
  background: none;
  */
}
.paginations li.current a,
.paginations li a:hover{
    opacity: 1;
    background-color: var(--color_base);
    color: #fff;
}

.paginations li.previous a,
.paginations li.next a{
  color: var(--color_base);
}
.paginations li.previous a:hover,
.paginations li.next a:hover{
  opacity: 0.8;
  background: none;
  color: var(--color_base);
}


.paginations li.previous a{
  padding-left: 30px;
}
.paginations li.next a{
  padding-right: 30px;
}
.paginations li.previous a:before,
.paginations li.next a:after{
  content: '';
  display: inline-block;
  font-family: 'Material Icons';
  font-size: 2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
}
.paginations li.previous a:before{
  content: '';
  left: 5px;
  background: url("../img/prev.svg") no-repeat center center;
}
.paginations li.next a:after{
  content: '';
  right: 5px;
  background: url("../img/next.svg") no-repeat center center;
}
