@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap');

/*追従*/
.floating-banner {
  position: fixed; /* バナーを追従させる */
  z-index: 999999999; /* 他の要素の下に隠れないように */
  right: 0; /* バナーの左右の位置 */
  width: 300px; /* バナーの横幅 */
}
.floating-banner__image {
  max-width: 100%; /* 画像の最大幅 */
}
@media screen and (min-width: 900px) { /* タブレット用のブレイクポイントを指定 */
  .floating-banner {
       display: inline;/* 消していたバナーを表示させる */
    bottom: 70px; /* バナーの上下の位置 */
    width: 32.5vw; /* スマホの画面幅いっぱいにバナーを表示 
    */
     z-index: 999999999; /* 他の要素の下に隠れないように */
  }
}
@media screen and (max-width: 899px) { /* スマホ用のブレイクポイントを指定 */
  .floating-banner {
    display: inline;/* 消していたバナーを表示させる */
    bottom: 70px; /* バナーの上下の位置 */
    width: 32.5vw; /* スマホの画面幅いっぱいにバナーを表示 
    */
     z-index: 999999999; /* 他の要素の下に隠れないように */
  }
  
  .tui a {
}

 .tui a:hover {
    opacity: 0.9;
     z-index: 999999999 !important; /* 他の要素の下に隠れないように */
    
}
  
}





/* 基本 */
body {
    font-family: 'Noto Sans JP', sans-serif;
}

.container {
	width: 84%;
	margin: 0 auto;
}

.r_eigo {
	font-size: 15px;
	letter-spacing: 5px;
	font-family: 'Noto Serif JP', serif;
	color: #003C7C;
}

.r_title {
	font-size: 25px;
	font-family: 'Noto Serif JP', serif;
	margin-bottom: 20px;
	letter-spacing: 0;
	line-height: 1.6;
	color: #003C7C;
}


.center_eigo {
	font-size: 15px;
	letter-spacing: 5px;
	font-family: 'Noto Serif JP', serif;
	color: #003C7C;
	text-align: center;
}

.center_title {
	font-size: 25px;
	font-family: 'Noto Serif JP', serif;
	margin-bottom: 20px;
	letter-spacing: 0;
	line-height: 1.6;
	color: #003C7C;
	text-align: center;
}

@media (min-width: 900px) {
	.container {
		width: 91%;
		max-width: 1240px;
	}
	.r_title {
	font-size: 40px;
	}
	
	.r_eigo {
		font-size: 18px;
	}
	
	.center_title {
	font-size: 40px;
	}
	
	.center_eigo {
		font-size: 18px;
	}
}

/* リセット / ノーマライズ / サニタイズ */
body, h1, h2, h3, h4, h5, h6, p, ul, figure {
	margin: 0;
	padding: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	opacity: 0.8;
	color: #000032;
}

.sr-only {
	border: 0; 
	clip: rect(0 0 0 0); 
	height: 1px; 
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}




/* ヘッダー */
.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 74px;
}

@media (min-width: 900px) {
	.header .container {
		height: 100px;
	}
}

/* ヘッダー：サイト名 */
.site {
	display: flex;
	align-items: center;
    margin-right: auto;
}

.site img {
	width: 200px;
	margin-right: 10px;
	height: auto;
}

.site .corp {
	color: #333333;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.4;
	
}

.site .desc {
	color: #707F89;
	font-size: 10px;
	line-height: 1.4;
}

.menu_tel ul {
    display: none;
}

.menu_yoyaku img{
    display: none;
}


@media(min-width: 900px) {
	.site img {
		width: 281px;
		margin-right: 18px;
	}

	.site .corp {
		font-size: 20px;
	}

	.site .desc {
		font-size: 12px;
	}
    
    .menu_tel ul {
    list-style: none;
    margin-right: 20px;
    margin-top: -10px;
    display: block;;
}

.menu_tel ul li {
    font-size: 9px;
    text-align: right
}

.menu_tel ul li:first-child {
    font-size: 26px;
}

.menu_tel ul li:first-child img{
    margin-right: 5px;
    z-index: 500
}

.menu_yoyaku img{
    width: 250px;
    display: block;
}
  
}

/* ナビゲーションボタン */
.nav-button {
	box-sizing: content-box;
	padding: 0;
	outline: none;
	border: none;
	background: none;
	width: 20px;
	height: 14px;
	cursor: pointer;
	color: #2E5180;
}

.nav-button::before,
.nav-button::after {
	content: '';
	display: block;
	height: 2px;
	background-color: currentColor;
	transform: translateY(5px);
	transition: 0.3s ease-in-out;
}

.nav-button::before {
	transform: translateY(-5px);
	box-shadow: 0 6px currentColor;
}

/* ナビゲーションボタン（閉じるボタン） */
.open .nav-button {
	z-index: 5000;
	color: #ffffff;
}

.open .nav-button::before {
	transform: translateY(1px) rotate(45deg);
	box-shadow: none;
}

.open .nav-button::after {
	transform: translateY(-1px) rotate(-45deg);
}

/* ナビゲーションメニュー: モバイル */
@media (max-width: 899px) {
	html.open, .open body {
		height: 100%;
		overflow: hidden;
	}

	.open .form {
		display: none;
	}

	.open nav {
		left: 0;
	}

	html, body {
		overflow-x: hidden;
	}

	.header {
		position: relative;
	}

	.nav {
		position: absolute;
		top: 0;
		left: 100%;
		width: 100%;
		height: 100vh;
		background: rgba(0,0,0,0.8);
		color: #ffffff;
		display: flex;
		justify-content: center;
		align-items: center;
		transition: left 0.5s;
		z-index: 2500;
	}

	.nav ul {
		list-style: none;
		font-weight: bold;
		text-align: center;
        position: fixed;
        overflow-y: scroll;
	}

	.nav li:not(:last-child) {
		margin-bottom: 40px;
	}

	.nav .btn {
		color: inherit;
	}
}

/* ナビゲーションメニュー： PC */
@media (min-width: 900px) {
	.nav-button {
		display: none;
	}

	.nav ul {
		display: none;
		align-items: center;
		list-style: none;
		color: #333333;
	}

	.nav li:not(:last-child) {
		margin-right: 23px;
	}

	.nav .btn {
		width: 148px;
		border-color: #CDD6DD;
	}
}

/* ナビゲーションメニュー： PCオリジナル */





/* お問い合わせ */
.contact {
	padding: 62px 0;
	background-color: #EEF4F8;
	color: #333333;
}

.contact h2 {
	margin-bottom: 42px;
	font-size: 24px;
}

.contact h2 + p {
	font-size: 12px;
	line-height: 2.17;
}

@media (min-width: 900px) {
	.contact {
	padding: 0;
	background-image: none;
	background-color: #EEF4F8;
	}

	.contact .container {
	display: flex;
	justify-content: space-between;
	padding-top: 96px;
	padding-right: 9%;
	padding-left: 9%;
	padding-bottom: 62px;
	box-sizing: border-box;
	background-color: #EEF4F8;
	}

	.contact .text {
		flex: 0 0 auto;
	}

	.contact .form {
		flex: 1 1 auto;
		max-width: 457px;
		margin-left: 1em;
		margin-top: 0;
	}

	.contact h2 {
		font-size: 36px;
	}

	.contact h2 + p {
		font-size: 14px;
		line-height: 1.86;
	}
}

/* お問い合わせ：フォーム */
.form {
	margin-top: 46px;
}

.form input[type="text"],
.form input[type="email"],
.form textarea {
	width: 100%;
	margin-bottom: 17px;
	padding: 12px 20px 14px;
	border: solid 1px #CDD6DD;
	box-sizing: border-box;
	border-radius: 0;
	-webkit-appearance: none;
	color: #333333;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
}

.form ::placeholder {
	color: #CDD6DD;
	opacity: 1;
}

.form input:-ms-input-placeholder,
.form textarea:-ms-input-placeholder {
	color: #CDD6DD;
}

.form ::-ms-input-placeholder {
	color: #CDD6DD;
}

.form textarea {
	height: 150px;
}

.form .btn {
	width: 100%;
	margin: 0;
	border: none;
	background-color: #2E5180;
	color: #ffffff;
	cursor: pointer;
	-webkit-appearance: none;
}

@media (min-width: 900px) {
	.form .btn {
		width: 272px;
	}
}

/*　予約　*/

.reserve {
	padding-top: 40px;
}

.reserve_left {
	width: 100%;
}

.r_mess {
	line-height: 1.9;
}

.r_number {
	font-size: 35px;
}

.reserve_right {
	width: 100%;
	margin-top:50px;
	margin-bottom: 20px;
}

.reserve_right p {
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 1.8;
}

.c-timetable {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
}

.c-timetable thead th {
	background: #2E5180;
	color: #ffffff;
	font-size: 12px;
}

.c-timetable td, .c-timetable th {
	padding: 15px 5px;
}

.c-timetable tbody td {
	width: 10%;
}

.maru {
	color: #2E5180;
}

.batu {
	color: #E52B4E;
	font-weight: bold;
	font-size: 15px;
}

.c-timetable tbody th {
	font-size: 11px;
	width: 19%;
}

td , td , th {
	border: 1px solid #CCCCCC;
}

@media (min-width: 900px) {
	.reserve_wrap {
		display: flex;
	}
	
	.c-timetable td, .c-timetable th {
		padding: 20px 0;
	}
	
	.c-timetable thead th {
		font-size: 14px;
	}
	
	.reserve_left {
		width: 60%;
		padding-left: 40px;
	}
	
	.reserve_right {
		margin-top:90px;
		margin-bottom: 20px;
	}
	
	
	.r_number {
		font-size: 40px;
	}
}

/*　連絡先　*/
@media (min-width: 900px) {
	.contact_box{
	width: 50%;
	margin: 0 auto;
	}
}

.contact_box{
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 20px;
	border: solid 1px #ddd;
	text-align: center;
}

.contact_box h3 {
	margin-top: 0;
	font-size: 1.2rem;
}

.contact_box span {
	display: inline-block;
	margin-bottom: 20px;
	font-size: 2.2rem;
	width: 2em;
	line-height: 2em;
	border-radius: 50%;
	text-align: center;
	background-color: #5D9AB2;
	color: #fff;
}

/*　地図　*/
.map iframe {
	width: 100%;
	height: 500px;
	margin-bottom: -5px;
	margin-top: 30px;
}

/* 新しいフッター */
.new_footer {
	padding: 50px 0;
	text-align: center;
}

.rogo {
	border-bottom: 2px solid #003C7C;
	padding-bottom: 25px;
	margin-bottom: 25px;
}

.rogo img {
	height: 230px;
}

.new_footer_ttl{
	font-weight: 700;
	font-size: 12px;
	line-height: 2;
	margin-bottom: 5px;
	color: #000032;
}

.new_footer_text{
	font-size: 12px;
	line-height: 1.58;
	font-weight: lighter;
	margin-bottom: 20px;
	color: #333333;
}

.new_footer .sns {
	display: flex;
	list-style: none;
	justify-content: center;
	padding-left: 20px
}

.new_footer .sns li {
	margin-right: 25px;
}


@media (min-width: 900px) {
	.rogo img {
	height: 300px;
	}
	
	.new_footer_ttl{
	font-size: 16px;
}

	.new_footer_text{
	font-size: 16px;
}


	.new_footer .sns img {
	margin-top: 10px;
	width: 50px;
	margin-right: 15px;
	
}

}

/* コピーライト */
.copyright {
	padding: 10px 0;
	background-color: #003C7C;
	margin-bottom: 73px;
}

.copyright p {
	color: #fff;
	text-align: center;
	font-size: 12px;
	font-family: 'Noto Serif JP', serif;
}

/* フッター */
.footer {
	padding: 38px 0 56px;
	background-color: #003C7C;
}

.footer .site img {
	width: 47px;
	margin-right: 14px;
}

.footer .site .corp {
	color: #ffffff;
	font-size: 16px;
}

.footer .add {
	margin: 20px 0 36px 61px;
	color: #ffffff;
	font-size: 12px;
	line-height: 2;
}

.footer .sns {
	display: flex;
	margin-left: 61px;
	list-style: none;
}



.footer .sns img {
	width: 35px;
}


.footer .sns li:not(:first-child) {
	margin-left: 25px;
}


@media (min-width: 900px) {
	.footer {
	/*margin-top: -48px;*/
	padding: 70px 0 88px;
	position: relative;		/*z-index: -1;*/
	}

	.footer .container {
		display: flex;
		justify-content: space-between;
	}

	.footer .site img {
		width: 59px;
		margin-right: 18px;
	}
	
	.footer .site .corp {
		font-size: 20px;
	}

	.footer .add {
		margin: 22px 0 0 77px;
	}

	.footer .sns {
		height: 59px;
		align-items: center;
	}
}

/* フェードイン */
body {
	animation: fade 5s;
}
 
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}


/* footer */
.fix_box{
	display: flex;
	list-style: none;
	color: #fff;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 1px;
	opacity: 0.9
}

.fix_box li {
	background-color: #000032;
	padding: 8px 20px;
	border: 1px solid #FFFFFF;
	width: 100%;
	text-align: center;
}

.fix_box li:last-child {
	background-color: #8E7E0D;
} 

.fix_box img {
	display: block;
	margin: 0px auto 5px;
}

.fix_box a {
	display: block;
}

.fix_box a:hover {
	opacity: 0.8;
	color: #fff;
}

/* パンくずリスト */
.bread {
	margin: 15px auto;
}

.bread_link {
	font-weight: bold;
	color: #122948;
}

.bread ul {
	list-style: none;
	display: flex;
}

.bread ul li {
	font-family: 'Noto Serif JP', serif;
	font-size: 12px;
	padding-right: 15px
}

.sukima {
	margin: 0 -5px;
}


@media (max-width: 374px) {
	.message h2 {
	font-size: 24px;
	font-weight: 600;
	}
}

/* ボタン */
.btn {
	display: block;
	width: 208px;
	margin: 0 auto;
	padding: 11px 11px 13px;
	box-sizing: border-box;
	border: solid 2px currentColor;
	border-radius: 24px;
	color: #2E5180;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}


.menu_area {
    display: none;
}


@media (min-width: 900px) {
    .menu_area {
    display: block;
    background-color: #0F103D;
    text-align: center;
    padding: 15px 0 ;
}


.menu {
    position: relative;
    height: 30px;
    margin: 0 auto;
    display: flex;
    width: 100%;
    list-style: none;
    font-size:13px;
    font-family: 'Noto Serif JP', serif;
}

.menu > li {
    padding: 5px 0 ;
    width: 100%;
}

.menu > li a {
    display: block;
    color: #fff;
    text-decoration: none;
}

.menu > li a:hover {
    
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    list-style: none;
}

ul.menu__third-level {
    visibility: hidden;
    opacity: 0;
}

ul.menu__fourth-level {
    visibility: hidden;
    opacity: 0;
}

.menu > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu__second-level li {
    border-top: 1px solid #111;
}

.menu__third-level li {
    border-top: 1px solid #111;
}

.menu__second-level li a:hover {
    background: #111;
}

.menu__third-level li a:hover {
    background: #2a1f1f;
}

.menu__fourth-level li a:hover {
    background: #1d0f0f;
}

/* 下矢印 */
.init-bottom:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 2px 15px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* floatクリア */
.menu:before,
.menu:after {
    content: " ";
    display: table;
}

.menu:after {
    clear: both;
}

.menu {
    *zoom: 1;
}


.menu > li.menu__single {
    position: relative;
}

li.menu__single ul.menu__second-level {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 45px;
    width: 100%;
    background: #072A24;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

ul.menu__second-level li a{
    padding: 15px 0 15px; 
}

li.menu__single {
border-left: 0.5px solid #FFFFFF;
}

li.menu__single:last-child {
    border-right: 0.5px solid #FFFFFF;
}

li.menu__single:hover ul.menu__second-level {
    top: 45px;
    visibility: visible;
    opacity: 1;
}
}

@media (min-width: 900px) {
         #gnav-btn div {
            display: none;
    }
    
         #gnav-btn  {
            display: none;
    }
}

.humb-menu a:hover {
  /*  transform: translate(10px, 0);
    transition: all .2s ease;*/
    color: inherit;
}


#gnav-btn {
    color: #FFFFFF;
    padding: 10px 12px;
    font-size: 18px;
    position: fixed;
    top: 15px;
    right: 5%;
    z-index: 10000;
    background-color: #003C7C;
    transition: all .2s ease;
    border-style: none;
    border-radius: 2px;
  }

  #gnav-input:checked ~ #gnav-content {
    left: 0px;
    transition: all .2s ease;
  }

  #gnav-content {
position: fixed;
/* top: -100%;
        left: 0;*/
top: 0;
left: -100%;
z-index: 2000;
transition: 0.3s;
width: 100%;
background-color: #1E1E1E;
transition: all .2s ease;
opacity: 0.98;
color: #fff;
font-family: 'Noto Serif JP', serif;
height: 100vh;
scroll: auto;
overflow-y: scroll;
overflow-x: hidden;
height: 100%;
font-size: 15px;
  }

  .humb-menu__title {
        padding: 1.2rem 1.2rem 1.2rem;
        transition: all .2s ease;
        /*background-color: #8E8B8B*/
      border-top: 0.5px solid #c7c5c5;
      
  }

.humb-menu__title__sub    {
        
        
}

.humb-menu__title__sub img    {
       transform: scale(1.05)
        
}

.humb-menu__title .menu_sns {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

  .humb-menu label {
        display: flex;
        justify-content: space-between;
        padding: 1.2rem;
        cursor: pointer;
        border-top: 0.5px solid #c7c5c5;
        transition: all .2s ease;
  }

.menu__bottom {
        border-bottom: 0.5px solid #c7c5c5;
}

  .humb-menu input {
        display: none;
        transition: all .2s ease;
  }


/*ここを開始するとサブメニューが開閉する*/
  .humb-menu .accshow {
        height: 0;
        overflow: hidden;
        transition: all .2s ease;
  }

  .humb-menu .accshow p {
        padding: 1.2rem;
        transition: all .2s ease;
        border-bottom: #FFFFFF 0.5px solid;
        background-color: #959595;
        color: #D7D7D7;
        padding-left: 50px;
  }


  .humb-menu .cssacc:checked + .accshow {
        height: auto;
        transition: all .2s ease;
  }


  .humb-menu__yotaku_box {
        padding: 1.8rem 1.2rem 0.5rem 1.2rem;
        transition: all .2s ease;
        /*background-color: #8E8B8B*/
      text-align: center;
  }

 .yoyaku_form {
border: 1.2px solid #FFFFFF;
padding: 20px 0px;
border-radius: 5px;
  }
  
    .humb-menu_pur_box {
        padding: 1.0rem 1.2rem 1.5rem 1.2rem;
        transition: all .2s ease;
        /*background-color: #8E8B8B*/
      text-align: center;
  }

 .pur_form {
border: 1.2px solid #FFFFFF;
padding: 20px 0px;
border-radius: 5px;
background-color: #8E7E0D;
color: #ffffff;

  }

  .humb-menu__sns_box {
        padding: 0.8rem 1.2rem ;
        transition: all .2s ease;
        /*background-color: #8E8B8B*/
      text-align: center;
  }

.sns_box_link {
    list-style: none;
    display: flex;
    justify-content: space-around;
    
}



.fixed {
    position: fixed;
}


/*ハンバーガーメニューデザイン*/

.sumaho_menu{
    width: 18px;
    height: 19px;
    cursor: pointer;
    margin: 0 auto;
    position: relative;
    display: block;
    z-index: 1500;
}

.sumaho_menu span{
    display: block;
    margin: 0;
    border: none;
    width: 100%;
    height: 3px;
    background: #fff;
    transform-origin:0% 50%;
    position: absolute;
    top: -2px;
    left: 4%;
    transition: .3s;
}

.sumaho_menu span:nth-of-type(2){
    top: 8px;
}

.sumaho_menu span:nth-of-type(3){
    top: 18px;
}

.close span{
    left: 30%;        
}

.close span:nth-of-type(1){
    transform: rotate(45deg);
    width: 178%;
    left:-2px;
}

.close span:nth-of-type(2){
    opacity: 0;
}

.close span:nth-of-type(3){
    top: 21px;
    transform: rotate(-45deg);
    width: 178%;
    left: -1px;
}
