@charset "UTF-8";

/* *{
  outline: 1px solid red;
} */

:root {
  /* color */
  --text-color: #333333;
  --main-color: #C4303A;
  --sub-color: #ffa1a7;
  --button02-color: #fff;
  --base-color: #F5F5F5;
  --white: #ffffff;
  --step-color01: #BED8EE;
  --step-color02: #9EC9EE;
  --step-color03: #80B9EA;
  --step-color04: #58A6EA;
   /* font */
  --ja: "Noto Sans JP", sans-serif;
  --serif:  "Noto Serif JP", serif;
}

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

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

header,
footer,
article,
section,
aside,
main,
nav,
menu,
figure,
figcaption {
  display: block;
}

span,
small,
strong,
em,
b,
i {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--ja);
  letter-spacing: 0.07em;
  -webkit-font-smoothing: antialiased;
}

ul,
ol {
  list-style: none;
}

a {
  color: var(--text-color);
  text-decoration: none;
}

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

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

caption,
th {
  text-align: left;
}

input,
select {
  vertical-align: middle;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}

.pc {
  display: none;
}

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

  .pc {
    display: block;
  }

}

@media (min-width: 768px)/* 786→768 */ {
  a.phone-link {
    pointer-events: none;
    /* クリックを無効化 */
    cursor: default;
    /* 通常のカーソルに変更 */
    text-decoration: none;
    /* 下線を削除（必要に応じて） */
  }
}

/* -----base----- */
/* 画面幅はみ出し設定用クラス */
.wv-justify {
  margin-inline: calc(50% - 50vw);
}

/* -----section----- */

section {
  padding-block: 50px;
  padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem);
  margin-inline: auto;
}
@media (min-width:768px) {
  section {
    padding-block: 70px;
  }
}


/* -----header----- */
header {
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff;
  padding-inline: 5%;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .header-logo {
  width: 130px;
  height: auto;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  header {
    height: 70px;
    padding-right: 0;
    font-family: var(--serif);
  }
  .header-wrapper {
    margin-inline: auto;
  }
  header .header-logo {
    width: 200px;
    height: auto;
    padding-top: 0;
    margin-left: 0;
  }
  header .header-logo a {
    transition: 0.25s;
  }
}
@media screen and (min-width: 768px) and (any-hover: hover) {
  header .header-logo a:hover {
    opacity: 0.7;
  }
}
/* -----hamburger----- */
.hamburger {
  background-color: var(--white);
  width: 30px;
  height: 16px;
  border: none;
}

.hamburger__line {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  top: 0;
  left: 0;
  transition: 0.4s;
  padding: 0;
}

.hamburger__line::before,
.hamburger__line::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  transition: 0.4s;
}

.hamburger__line::before {
  top: 7px;
}

.hamburger__line::after {
  bottom: -14px;
}

/* クリック */
.open .hamburger__line {
  background-color: transparent;
}

.open .hamburger__line::before {
  top: 5px;
  transform: rotate(30deg);
}

.open .hamburger__line::after {
  bottom: -5px;
  transform: rotate(-30deg);
}

/* -----global-nav----- */

/* スマホ */
  .gnav {
    position: absolute;
    width: 70%;
    background-color: var(--white);
    top: 50px;
    left: 110vw;
    height: 100dvh;
    overflow-y: scroll;
    transition: 0.7s;
    padding-top: 50px;
  }
  .gnav ul {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-inline: auto;
    align-items: center;
  }
  .gnav ul li {
    width: 160px;
    border-bottom: 2px solid var(--main-color);
  }
  .gnav ul li a {
    display: block;
    width: 100%;
    color: var(--color-black, #333);
    padding: 10px 20px;
    font-weight: bold;
    font-family: var(--serif);
    letter-spacing: 0.08em;
    text-align: center;
  }
  .gnav ul .contact-btn a {
    background-color: var(--main-color);
    color: var(--white);
    position: relative;
  }
  .gnav ul .contact-btn {
    width: 200px;
    margin-top: 30px;
    border: none;
  }
  .mask {
    top: 50px;
    width: 100%;
    height: calc(100dvh - 50px);
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: -100vw;
    transition: 0.6s;
    opacity: 0;
  }
  .open.gnav {
    left: 30%;
  }
  .open.mask {
    left: 0;
    opacity: 1;
  }


/* PC（768px〜） */
@media screen and (min-width: 768px) {
  .hamburger,
  .mask {
    display: none;
  }

  /* スマホのスライドメニュー設定を解除してヘッダー内配置に戻す */
  .gnav {
    position: static;
    height: auto;
    width: auto;
    overflow: visible;
    padding-top: 0;
    background: transparent;/* どちらでもOK */
    transition: none;
  }
  .gnav ul {
    flex-direction: row;
    align-items: center;
    column-gap: 10px;
    row-gap: 0;
  }

  .gnav ul li {
    width: auto;
    border-bottom: none;
  }

  .gnav ul li a {
    padding: 10px;
    position: relative;
  }

  /* 下線（hoverで伸ばす） */
  .gnav ul li a::after {
    position: absolute;
    left: 0;
    bottom: 5px;
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: 0.4s;
  }
  .gnav ul li a:hover::after {
    width: 100%;
  }

  /* お問い合わせボタン */
  .gnav ul .contact-btn {
    margin-top: 0;
    width: auto;
    margin-left: 30px;
  }
  .gnav ul .contact-btn a {
    height: 70px;
    background-color: var(--main-color);
    color: var(--white);
    font-size: 1rem;
    transition: 0.4s;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 8px;
    padding-inline: clamp(1.25rem, -3.41rem + 9.71vw, 3.75rem);
  }
   .gnav ul .contact-btn__text {
    grid-column: 2;
    justify-self: center;
    white-space: nowrap; 
    padding-bottom: 2px;
  }
  .gnav ul .contact-btn__icon {
    grid-column: 3;
    justify-self: end;
    width: 20px;
    height: 16px;
    background-color: currentColor; /* hoverで色も追従 */
    -webkit-mask: url("/img/icon-mail.svg") center / contain no-repeat;
     mask: url("/img/icon-mail.svg") center / contain no-repeat;
  }
  .gnav ul .contact-btn a:after {
    display: none;
  }
  .gnav ul .contact-btn a:hover {
    background-color: var(--sub-color);
    color: var(--text-color);
  }
}
/* ========================================
   Header（PC 中間サイズ調整）
   768px – 920px
======================================== */
@media screen and (min-width: 768px) and (max-width: 920px) { 
  header .header-logo { 
    width: 170px; 
  } 
  .gnav ul { 
    column-gap: 6px; 
  } 
  .gnav ul li a { 
    font-size: 14px;
    padding: 10px 6px; 
  } 
  .gnav ul li:nth-child(4) { 
    flex-shrink: 0; 
  }
}

/* -----main----- */

main {
  padding-top: 50px;
}

@media (min-width: 768px) {
  main {
    padding-top: 70px;
  }
}

/* -----breadcrumb----- */

.breadcrumb {
  display: none;
}

@media (min-width: 768px) {
.breadcrumb {
  display: block;
  padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem);
  padding-top: 20px;
  background: var(--text-color);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 16px;
  color: var(--white);
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap:12px;
}

.breadcrumb__item a {
  color: var(--white);
  text-decoration: none;
  transition: 0.5s;
  text-decoration: underline;
}

/* .breadcrumb__item a:hover {
  text-decoration: underline;
} */

/* 区切り " > " */
.breadcrumb__item:not(:last-child)::after {
  content: "＞";
  color: var(--white);
}
}
/* -----footer----- */
footer {
  width: 100%;
  background-color: #111;
  padding-block: 30px;
}

footer p {
  text-align: center;
  font-size: clamp(0.75rem, 0.692rem + 0.25vw, 0.875rem);
  color: var(--white);
}

.go-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}

.go-top.show {
  opacity: 1;
  visibility: visible;
}

/* -----共通見出し----- */
.common-heading-001 {
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.common-heading-001 h2 {
  font-size: clamp(1.3rem, 1.25rem + 0.8vw, 1.875rem);
  font-family: var(--serif);
  color: #616161;
  text-transform: uppercase;
}

.common-heading-001 .white {
  color: var(--white);
}

.common-heading-001 .black {
  color: #616161;
}

.common-heading-001 p {
  font-size: clamp(0.75rem, 0.634rem + 0.5vw, 1rem);
  color: var(--text-color);
}

@media screen and (min-width: 768px) {
  .common-heading-001 {
    margin-bottom: 30px;
  }
}

/* -----共通ボタン----- */
/* 共通ボタン01 */
.common-btn01 {
  text-align: center;
}


.common-btn01 a {
  line-height: 1;
  display: inline-block;
  border: 1px solid var(--main-color);
  padding: 15px 64px 15px 40px;
  text-align: center;
  background-color: var(--white);
  color: var(--main-color);
  position: relative;
  letter-spacing: 0.15em;
  font-weight: bold;
  font-size: 16px;
  margin-top: 30px;
}

.common-btn01 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 14px;
  height: 16px;
  -webkit-mask-image: url(/img/arrow.svg);
  mask-image: url(/img/arrow.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--main-color);
}

@media screen and (min-width: 768px) {
  .common-btn01 a {
    margin-top: 40px;
    font-size: 20px;
  }
}

@media (any-hover: hover) {
  .common-btn01 a {
    transition: 0.4s;
  }

  .common-btn01 a:after {
    transition: 0.4s;
  }

  .common-btn01 a:hover {
    background-color: var(--main-color);
    color: var(--white);
  }

  .common-btn01 a:hover::after {
    background-color: var(--white);
    right: 30px;
  }
}

/* -----その他共通パーツ----- */
.lower-heading-001 {
  width: 100%;
  padding-block: clamp(80px, 14vw, 200px); /* SP〜1440px対応 */
  text-align: center;
  position: relative;
}

.lower-heading-001::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.lower-heading-001 hgroup {
  letter-spacing: 0.1em;
  color: var(--white);
  position: relative;
  z-index: 1;
  font-family: var(--serif);
}

.lower-heading-001 hgroup .lower-heading-inner {
  font-size: clamp(1.75rem, 1.168rem + 2vw, 2.5rem);
  font-weight: normal;
  position: relative;
  padding-bottom: 5px;
}

.lower-heading-001 hgroup .lower-heading-inner:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(100px, 20vw, 150px);
  height: 3px;
  background-color: #E6C542;
  border-radius: 3px;
}

.lower-heading-001 hgroup p {
  font-size: clamp(0.75rem, 0.634rem + 0.5vw, 1rem);
  padding-top: 10px;
  font-weight: bold;
}

/* -----.common-heading-003----- */

.common-heading-003 {
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: clamp(1.25rem, 1.017rem + 0.99vw, 1.75rem);
  font-weight: 700;
  color: var(--text-color);
  font-family: var(--serif);
}

.common-heading-003::before,
.common-heading-003::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 3px;
  margin-top: 2px;
}

.common-heading-003.is-white {
  color: var(--white);
}
.common-heading-003.is-white::before,
.common-heading-003.is-white::after {
  background-color: var(--white);
}



/*# sourceMappingURL=common.css.map */


.gallery-01 .common-heading-003::before,
.gallery-01 .common-heading-003::after {
  background-color: var(--white);
}

.gallery-01 .gallery hgroup,
.lunch hgroup {
  color: var(--white);
}

.sec-009 .common-heading-003 {
  color: var(--text-color);
  margin-top: 100px;
}

.sec-009 .common-heading-003::before,
.sec-009 .common-heading-003::after {
  background-color: var(--text-color);
}