@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
html {
  scroll-behavior: smooth;
}

body{
  width: 100%;
  color: #003D6C;
  background-color: #EEEAE1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  letter-spacing: .15rem;
}


*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}



/*//////////////
link
/////////////*/
header a:link{
    text-decoration: none;
}
header a:hover{
    opacity: 0.6;
    text-decoration: none;
}

main a:link{
    color: #CE3A2B;  
    text-decoration: none;
}
main a:hover{
    opacity: 0.6;
    text-decoration: none;
}

footer a:link{
    color: #CE3A2B;  
    text-decoration:underline;
}

main{
    position: relative;
}

img{
    width: 100%;
    height: auto;
}



/*//////////////
br
/////////////*/
.pcView{
	display:none;
}
.spView{
	display:inherit;
}
.tbView{
	display:inherit;
}
.tbOff{
	display:none;
}

@media screen and (min-width: 768px){

.tbView,
.spView{
	display:none;
}
.pcView{
	display:inherit;
}
.pcOff{
	display:off;
}
}



/*//////////////
font
/////////////*/
.zen{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.jost{
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}



/*//////////////
header
/////////////*/

.header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}


/* ヘッダーのロゴ部分 */
.header__title {
  width: 90px;
  z-index: 9999;
}

@media screen and (max-width: 375px) {
.header__title {
  width: 70px;
}
}

@media screen and (min-width: 768px) {

.header {
  height: auto;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header__title {
  width: 140px;
  padding: 2rem;
}

.header.scrolled {
  background-color: rgba(255,255,255,0.7);
}
}


.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

.header__title .header-title-color.active img{
  filter: invert(90%) sepia(65%) saturate(0%) hue-rotate(188deg) brightness(109%) contrast(101%);
}


/* ヘッダーのナビ部分 */

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #003D6C;
  transition: ease .4s;
}


@media screen and (min-width: 768px) {

  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: inherit;
  }

  .nav__items {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: initial;
    justify-content: space-between;
  }
}

.nav-items {
  width: 80%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}


@media screen and (max-width: 375px) {
  .nav-items {
    width: 70%;
    top: 60%;
    transform: translate(-50%, -60%);
}
}

@media screen and (min-width: 768px) {
.nav-items {
  position: inherit;
  top: 0;
  left: 0;
  transform: translate(0, 0);
  width: 100%;
}

.nav-items li {
  margin-right: 2rem;
}

}

/* ナビのリンク */
.nav-items__item a {
  width: 100%;
  display: block;
  text-align: left;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: #fff;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
.nav-items__item a {
  margin-bottom: 0;
  color: #003D6C;
  font-size: 1.4rem;
}

.nav-items__item a.icon_insta_pc {
  font-size: 3rem;
}

.nav-items__item a.icon_pc {
  font-size: 2.5rem;
}
}


/* ナビのsns */
.sns_flex{
    display: flex;
    margin: 4.5rem 0 0;
}

.sns_cont:first-of-type{
 margin-right: 2rem;
}

.sns_cont a{
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}


/* ナビの予約ボタン */
.nav_btn{
  width: 100%;
}

.nav_btn a{
  background-color: #fff;
  width: 100%;
  text-align: center;
  padding: 1.5rem 1rem;
  color: #003D6C;
  border-radius: 10px;
}


/* ハンバーガーメニュー */
.header__hamburger {
  width: 50px;
  height: 50px;

}

.hamburger {
  background-color: #003D6C;
  border-radius: 5px;
  border-color: transparent;
  z-index: 9999;
}

@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  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;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -10px;
  transform: rotate(-45deg);
}


/* 料理の部分 */
.sp_menu_list_parent a {
  width: 100%;
  display: block;
  text-align: left;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.sp_menu_list{
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  padding: 1.5rem 1.5rem 1rem;
  margin-bottom: 2.5rem;
}

.sp_menu_list li{
  width: 50%;
}

.sp_menu_list li:first-of-type{
  margin-right: 1.5rem;
}

.sp_menu_list img{
  border-radius: 5px;
}

.nav-items__item .sp_menu_list a {
  color: #003D6C;
  font-size: 1.2rem;
  margin-bottom: 0;
  text-align: center;
  line-height: 2rem;
}


@media screen and (min-width: 768px){

/* navのドロップダウン */
.menu-parent {
  position: relative;
}

.menu-parent:last-child {
  border-right: 0;
}

.menu-parent_a {
  display: block;
  padding: 0;
  text-align: center;
  cursor:pointer
}

.menu-parent_a.blrn{
  border-left: none;
  border-right: none;
}

.menu-child {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 300px;
  padding: 1.5rem 1.5rem 1rem;
  background-color: #003D6C;
  border-radius: 1rem;
  color: #fff;
  margin-top: 1rem;
}

.menu-child a {
  color: #fff;
  font-size: 1.2rem;
}

.menu-child_ul{
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.nav-items .menu-child_li {
  line-height: 2;
  margin: 0;
}

.nav-items .menu-child_li:first-of-type {
  margin-right: 2rem;
}

}


/*//////////////
各ページ共通
/////////////*/
#main_visual{
  position: relative;
  background-size: cover;
  background-position: center;
  width: 90%;
  height: 45vh;
  border-radius: 3rem;
  margin: 10rem auto 0;
}

.contents_postion{
  position: absolute;
  right: 0;
  bottom: -2rem;
}


/* 各ページsectionタイトル部分 */
.sec_ttl{
  font-size: 1.4rem;
  letter-spacing: 2.5px;
  text-align: center;
  text-decoration: underline wavy;
  text-decoration-thickness: 1px;
  margin-bottom: 5rem;
  text-underline-offset: 7px;
  text-decoration-skip-ink: none;
}

.sec_ttl span{
  display: inline-block;
  font-size: 1.8rem;
  margin-top: 2.7rem;
  letter-spacing: .15rem;
  font-weight: 600;
}

/* 各ページメインタイトル部分 */
.page-title{
  text-align: right;
  color: #003D6C;
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-shadow:1px 1px 0 #EEEAE1, -1px -1px 0 #EEEAE1,
              -1px 1px 0 #EEEAE1, 1px -1px 0 #EEEAE1,
              0px 1px 0 #EEEAE1,  0 -1px 0 #EEEAE1,
              -1px 0 0 #EEEAE1, 1px 0 0 #EEEAE1;
}

.page-read-txt{
  width: 90%;
  text-align: right;
  margin: 5rem auto;
  font-size: 1.25rem;
  line-height: 2.2rem;
}


@media screen and (min-width: 768px){

#main_visual {
    width: 80%;
    height: 70vh;
}

.page-title {
    font-size: 6rem;
    font-weight: 500;
      text-shadow:2px 2px 0 #EEEAE1, -2px -2px 0 #EEEAE1,
              -2px 2px 0 #EEEAE1, 2px -2px 0 #EEEAE1,
              0px 2px 0 #EEEAE1,  0 -2px 0 #EEEAE1,
              -2px 0 0 #EEEAE1, 2px 0 0 #EEEAE1;
}

.contents_postion {
    right: inherit;
    left: 0;
}

.page-read-txt {
    width: 80%;
    text-align: left;
    font-size: 1.6rem;
    line-height: 2.5rem;
}

.sec_ttl {
    font-size: 1.8rem;
}

.sec_ttl span {
    font-size: 2.2rem;
}
}

/*//////////////
予約ボタン
/////////////*/

.reserve_postion{
  position: fixed;
  right: 0;
  top: 15%;
  z-index: 5;
}

.reserve_postion a{
  display: inline-block;
  background-color: #CE3A2B;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  text-align: center;
  padding: .7rem 1.5rem;
  font-weight: 400;
  line-height: 2.8rem;
  border-radius: 5px 0 0 5px;
}

.reserve_postion a i{
  font-size: 2.8rem;
}

@media screen and (min-width: 768px){

.reserve_postion a {
    font-size: 1.6rem;
    padding: .7rem 2rem;
    line-height: 3.5rem;
}

.reserve_postion a i {
    font-size: 3rem;
}
}

/*//////////////
btn
/////////////*/

main .btn a,footer .btn a {
    background: #fff;
    border-radius: .8rem;
    border: 1px solid #003D6C;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
    max-width: 330px;
    padding: 10px 25px;
    text-decoration: none;
    color: #003D6C;
    line-height: 1.8;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    font-size: 1.2rem;
}
.btn a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn a:hover {
  background: #003D6C;
  color: #FFF;
}
.btn a:hover:after {
  right: 1.4rem;
}



@media screen and (min-width: 768px){

main .btn a, footer .btn a {
  max-width: 500px;
  padding: 15px 25px;
  font-size: 1.4rem;
}
}


/*//////////////
footer
/////////////*/

footer{
  position: relative;
  background-color: #003D6C;
  color: #fff;
  border-radius: 3rem 3rem 0 0;
  padding-top: 7rem;
  margin-top: -3rem;
  z-index: 2;
}

.footer_flex{
      display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: auto;
}

.footer_cont{
  width: 100%;
}

.footer_ttl{
  font-size: 3rem;
  margin-bottom: 2.5rem;
}

.footer_ttl span{
  display: inline-block;
  font-size: 1.4rem;
}

.footer_cont .adress{
  font-size: 1.2rem;
  line-height: 2.2rem;
}

.footer_cont .adress a{
  color: #fff;
}

.footer_cont .tel{
  font-size: 2.2rem;
  margin: 2rem 0 1rem;
}

.footer_cont .tel a{
  color: #fff;
  text-decoration: none;
}

.footer_cont .tel span{
  display: inline-block;
  font-size: 1.2rem;
  margin-right: 1rem;
}

.footer_cont .sns{
  font-size: 1.4rem;
  margin: 3rem 0 2rem;
}

.footer_cont .sns a{
  color: #fff;
  text-decoration: none;
}

.footer_cont .time{
  font-size: 1.2rem;
  line-height: 2.2rem;
  padding: .8rem 0;
  border-top: 1px dashed #fff;
  border-bottom: 1px dashed #fff;
}

.footer_reserve{
  background-color: #fff;
  color: #003D6C;
  text-align: center;
  border-radius: 3rem;
  padding: 3rem 1.5rem;
  margin: 3rem 0;
}

.footer_reserve h5{
  font-size: 1.8rem;
}

.footer_reserve p{
  font-size: 1.2rem;
  line-height: 2.2rem;
  margin: 2rem 0;
}

.footer_reserve p a{
  color: #CE3A2B;
}

.footer_cont .recruit_ttl{
  font-size: 2rem;
  margin-bottom: 2rem;
}

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

.recruit_cont{
  width: 50%;
}

.recruit_cont:first-of-type{
  margin-right: 1rem;
}

footer .recruit_cont a{
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
}

footer .btn a {
    margin: 0;
}


@media screen and (min-width: 768px){

.footer_flex {
    justify-content: space-between;
    width: 95%;
}

.footer_cont {
    width: 31%;
    margin: 0 1rem;
}

.footer_ttl {
    font-size: 3.8rem;
    font-weight: 500;
}

.footer_ttl span {
    font-size: 1.6rem;
}

.footer_cont .adress {
    font-size: 1.4rem;
    line-height: 2.5rem;
}

.footer_cont .tel {
    font-size: 3rem;
}

.footer_cont .sns {
    font-size: 1.7rem;
}

.footer_cont .time {
    font-size: 1.4rem;
    line-height: 2.5rem;
}

.footer_reserve {
    padding: 3.5rem 1.5rem 3rem;
    margin: 2rem 0;
}

.footer_reserve h5 {
    font-size: 2rem;
}

.footer_reserve p {
    font-size: 1.4rem;
    line-height: 2.5rem;
    margin: 2rem 0 1rem;
}

.footer_cont .recruit_ttl {
    text-align: center;
}

.recruit_cont:first-of-type {
    margin-right: 0;
}

.recruit_flex {
  flex-wrap: wrap;
  justify-content: center;
}

.recruit_cont {
    width: 70%;
    margin: 1rem 0;
}

.recruit_cont img {
    margin-bottom: -.5rem;
}

footer .recruit_cont a {
    font-size: 1.4rem;
}
}

/* 姉妹店 */

#other_shop{
	margin: 5rem auto 0;
  border-radius: 5rem 5rem 0 0;
  background-color: #EEEAE1;
  padding: 7rem 0 0.5rem;
}

#other_shop h4{
	font-size: 2.5rem;
	text-align: center;
    letter-spacing: 0.2em;
    color: #003D6C;
    font-weight: 600;
}

#other_shop h4 span{
	font-size: 1.2rem;
	display: inline-block;
  margin-top: 1rem;
  font-weight: 400;
}

.other_shop{
	display: flex;
	justify-content: center;
	width: 90%;
	margin: 3rem auto;
  flex-wrap: wrap;
}

.other_shop .other_shop_cont{
	width: 100%;
	margin: 1rem;
}

.other_shop .other_shop_cont a{
	color: #003D6C;
	text-decoration: none;
}

.other_shop .other_shop_cont a:hover{
	opacity: 0.6;
	transition: 0.6s;
}

.other_shop .other_shop_cont p{
	font-size: 1.2rem;
	line-height: 2.2rem;
	margin-top: 1rem;
}

.other_shop .other_shop_cont p span{
	display: inline-block;
	margin-bottom: 1rem;
	font-weight: bold;
	font-size: 1.8rem;
}

.other_shop .other_shop_cont img{
	width: 100%;
	height: auto;
}


footer .copy{
  text-align: center;
  background-color: #fff;
  padding: 1rem 0;
}

footer .copy a{
  color: #003D6C;
  font-size: 1rem;
}


@media screen and (min-width:768px){

#other_shop h4 {
  font-size: 3rem;
}

#other_shop h4 span {
    font-size: 1.6rem;
}

  .other_shop {
    width: 90%;
}

.other_shop .other_shop_cont {
    width: 30%;
    margin: 1rem;
}

.other_shop .other_shop_cont p {
    font-size: 1.4rem;
    line-height: 2.5rem;
}

.other_shop .other_shop_cont p span {
    font-size: 2rem;
}
}

/*================================
pc,sp
================================*/

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (min-width: 768px) {

.pc { display: none !important; }
.sp { display: block !important; }

}