@charset "UTF-8";
/* =========================
PC
========================= */
/* =========================
SP
========================= */
/* =========================
SP（359px以下想定）
========================= */
/* =============================
reset
============================= */
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

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

abbr[title] {
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

/* =============================
base
============================= */
body {
  font-family: "Hiragino Mincho Pro", "Hiragino Mincho ProN", YuMincho, serif;
  color: #000000;
  line-height: 1.8;
  font-weight: 400;
}

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

a {
  transition: opacity 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.6;
  }
}

/* =============================
layout base
============================= */
.l-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 90%;
  }
}

/* =============================
layout main
============================= */
/* ==============================


header


=================================*/
.header-logo {
  transition: opacity 0.3s ease;
}

.header-logo.is-fade {
  opacity: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: clamp(0px, 5.8565153734vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  header {
    height: 80px;
  }
}
header > div {
  width: 96%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  header > div {
    width: 92%;
  }
}
header a img {
  width: clamp(0px, 6.8814055637vw, 94px);
}
@media screen and (max-width: 767px) {
  header a img {
    width: 70px;
  }
}

.hamburger {
  position: relative;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #AC1A0A;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}
.hamburger span:nth-child(1) {
  top: 6px;
}
.hamburger span:nth-child(2) {
  top: 14px;
}
.hamburger.is-open span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  top: 11px;
  transform: rotate(-45deg);
}

/* ==============================


header modal


=================================*/
#menu-modal .modal__bg {
  background: #AC1A0A;
  background: linear-gradient(135deg, rgb(172, 26, 10) 20%, rgb(86, 13, 5) 100%);
}
#menu-modal .modal__bg::before {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#menu-modal ul {
  color: #ffffff;
  text-align: center;
  font-size: 28px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0px, 4.39238653vw, 60px);
  padding-bottom: clamp(0px, 2.196193265vw, 30px);
}
@media screen and (max-width: 767px) {
  #menu-modal ul {
    font-size: 18px;
    gap: clamp(0px, 13.3333333333vw, 50px);
    padding-bottom: clamp(0px, 8vw, 30px);
  }
}

body.is-menu-open .hamburger span {
  background: #fff;
}

/* ==============================


footer


=================================*/
footer {
  background-color: #AC1B09;
  color: #ffffff;
  height: 80px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  footer {
    height: 137px;
  }
}
footer > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  footer > div {
    flex-direction: column;
    gap: 25px;
    width: 96%;
  }
}
footer > div p {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  footer > div p {
    text-align: center;
    font-size: clamp(10px, 3.2vw, 12px);
  }
}
footer > div ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  footer > div ul {
    gap: 15px;
  }
}
footer > div ul img {
  max-width: 25px;
}
@media screen and (max-width: 767px) {
  footer > div ul img {
    max-width: 20px;
  }
}

/* ==============================


bg-layer


=================================*/
.bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../img/cmn__bg.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .bg-layer {
    background: url(../img/cmn__bg_sp.png) no-repeat center center/cover;
  }
}

/* ==============================


kv


=================================*/
.kv {
  height: 56.26vw;
  padding: clamp(0px, 5.8565153734vw, 80px) 2% clamp(0px, 2.196193265vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(0px, 7.32vw, 109.8px);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .kv {
    height: 100svh;
    max-height: 700px;
    min-height: clamp(0px, 190vw, 750px);
    padding: 80px 4% clamp(0px, 2.67vw, 12px);
  }
}
.kv h1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .kv h1 {
    gap: clamp(0px, 4vw, 18px);
  }
}
.kv h1 picture:nth-of-type(1) img {
  max-width: 70.94vw;
}
@media screen and (max-width: 767px) {
  .kv h1 picture:nth-of-type(1) img {
    max-width: clamp(0px, 95.47vw, 429.6px);
  }
}
.kv h1 picture:nth-of-type(2) img {
  max-width: 32.58vw;
}
@media screen and (max-width: 767px) {
  .kv h1 picture:nth-of-type(2) img {
    max-width: clamp(0px, 62.93vw, 283.2px);
  }
}
.kv .kv-sub-txt {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.kv .kv-sub-txt .kv-sub-txt__shop {
  max-width: 31.04vw;
}
@media screen and (max-width: 767px) {
  .kv .kv-sub-txt .kv-sub-txt__shop {
    max-width: clamp(0px, 52vw, 234px);
  }
}
.kv .kv-sub-txt .kv-sub-txt__sign {
  max-width: 10.91vw;
}
@media screen and (max-width: 767px) {
  .kv .kv-sub-txt .kv-sub-txt__sign {
    max-width: clamp(0px, 22.13vw, 99.6px);
  }
}
.kv::before, .kv::after {
  z-index: -1;
}
.kv::before {
  content: "";
  position: absolute;
  background-image: url("../img/kv__pasta.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 67.19vw;
  height: 55.34vw;
  right: 3%;
  top: 0;
}
@media screen and (max-width: 767px) {
  .kv::before {
    content: "";
    position: absolute;
    background-image: url("../img/kv__pasta_sp.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: clamp(0px, 125.07vw, 563px);
    height: clamp(0px, 102.93vw, 463.2px);
    right: clamp(-36px, -8vw, 0px);
    bottom: clamp(0px, 45.33vw, 204px);
    top: inherit;
  }
}
.kv::after {
  content: "";
  position: absolute;
  background-image: url("../img/kv__chef.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 30.96vw;
  height: 41.58vw;
  right: 1%;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .kv::after {
    content: "";
    position: absolute;
    background-image: url("../img/kv__chef_sp.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    right: 0;
    width: clamp(0px, 59.2vw, 267px);
    height: clamp(0px, 91.47vw, 411.6px);
  }
}

/* ==============================


sec02


=================================*/
.sec02 {
  background-color: rgba(255, 255, 255, 0.75);
  position: relative;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  padding: clamp(0px, 9.5168374817vw, 130px) 0 clamp(0px, 12.8111273792vw, 175px);
}
@media screen and (max-width: 767px) {
  .sec02 {
    padding: 100px 3%;
  }
}
@media screen and (max-width: 767px) {
  .sec02 .l-inner {
    max-width: 400px;
  }
}
.sec02 .sec02__ctr {
  display: flex;
  justify-content: center;
  gap: clamp(0px, 11.7130307467vw, 160px);
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .sec02 .sec02__ctr {
    flex-direction: column !important;
    align-items: center;
    gap: 70px !important;
  }
}
.sec02 .sec02__ctr:nth-of-type(2) {
  margin-top: clamp(0px, 21.9619326501vw, 300px);
  flex-direction: row-reverse;
  gap: clamp(0px, 10.2489019034vw, 140px);
}
@media screen and (max-width: 767px) {
  .sec02 .sec02__ctr:nth-of-type(2) {
    margin-top: 145px;
  }
}
.sec02 .sec02__ctr:nth-of-type(2) .sec02__ctr-img {
  max-width: 313px;
}
@media screen and (max-width: 767px) {
  .sec02 .sec02__ctr:nth-of-type(2) .sec02__ctr-img {
    max-width: 201px;
  }
}
@media screen and (max-width: 767px) {
  .sec02 .sec02__ctr:nth-of-type(2) .sec02__ctr-txt {
    font-size: 14px;
  }
}
.sec02 .sec02__ctr .sec02__ctr-txt p:nth-of-type(1) {
  font-size: clamp(12px, 2.3426061493vw, 32px);
  color: #AC1A0A;
  font-weight: 600;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .sec02 .sec02__ctr .sec02__ctr-txt p:nth-of-type(1) {
    font-size: 22px;
    margin-bottom: 40px;
  }
}
.sec02 .sec02__ctr .sec02__ctr-txt p:nth-of-type(2) {
  font-size: clamp(12px, 1.317715959vw, 18px);
}
@media screen and (max-width: 767px) {
  .sec02 .sec02__ctr .sec02__ctr-txt p:nth-of-type(2) {
    font-size: 16px;
  }
}
.sec02 .sec02__ctr .sec02__ctr-img {
  max-width: 352px;
  width: 25.77vw;
  box-shadow: 20px 20px 3px 0px #AC1A0A;
}
@media screen and (max-width: 767px) {
  .sec02 .sec02__ctr .sec02__ctr-img {
    max-width: 223px;
    width: 80%;
  }
}

/* ==============================


sec03


=================================*/
.sec03 {
  padding: clamp(0px, 7.3206442167vw, 100px) 0 clamp(0px, 15.3733528551vw, 210px);
}
@media screen and (max-width: 767px) {
  .sec03 {
    padding: 100px 0;
  }
}
.sec03 .l-inner {
  max-width: 1220px;
}
.sec03 .sec03__ttl {
  font-size: 32px;
  color: #AC1A0A;
  margin-bottom: clamp(0px, 3.6603221083vw, 50px);
  text-align: center;
}
.sec03 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(0px, 0.7320644217vw, 10px);
}
@media screen and (max-width: 767px) {
  .sec03 ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.sec03 ul li {
  cursor: pointer;
  width: clamp(0px, 29.2825768668vw, 400px);
}
@media screen and (max-width: 767px) {
  .sec03 ul li {
    width: 90%;
    max-width: 300px;
  }
}

/* ==============================


modal


=================================*/
.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  visibility: hidden;
  pointer-events: none;
}
.modal.is-open {
  visibility: visible;
  pointer-events: auto;
}
.modal__bg {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: url(../img/sec03__mdl-bg.png) no-repeat center center/cover;
}
.modal__bg::before {
  content: "";
  position: absolute;
  background-image: url("../img/kv__store.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  bottom: 3%;
  left: 5%;
  width: clamp(0px, 45.2415812592vw, 618px);
  height: clamp(0px, 6.8081991215vw, 93px);
  z-index: 1110;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .modal__bg::before {
    width: 315px;
    height: 47px;
    left: 50%;
    bottom: 1%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1100px;
  z-index: 1120;
}
@media screen and (max-width: 767px) {
  .modal__content {
    top: calc(50% + 20px);
    width: 80%;
  }
}

.modal__ctr {
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.1em;
  padding-right: 40px;
  gap: clamp(0px, 1.4641288433vw, 20px);
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .modal__ctr {
    padding-right: 0px;
  }
}
@media screen and (max-width: 767px) {
  .modal__ctr {
    flex-direction: column-reverse;
    gap: 30px;
    padding-right: 0;
  }
}
.modal__ctr .modal__ctr-txt {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .modal__ctr .modal__ctr-txt {
    text-align: center;
    width: 100%;
  }
}
.modal__ctr .modal__ctr-txt .modal__ctr-txt-ttl-sub {
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .modal__ctr .modal__ctr-txt .modal__ctr-txt-ttl-sub {
    font-size: clamp(10px, 4.2666666667vw, 16px);
    margin-bottom: clamp(0px, 2.6666666667vw, 10px);
  }
}
@media screen and (max-width: 359px) {
  .modal__ctr .modal__ctr-txt .modal__ctr-txt-ttl-sub {
    font-size: clamp(10px, 2.9866666667vw, 16px);
    margin-bottom: clamp(0px, 1.8666666667vw, 10px);
  }
}
.modal__ctr .modal__ctr-txt .modal__ctr-txt-ttl-main {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #AC1A0A;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .modal__ctr .modal__ctr-txt .modal__ctr-txt-ttl-main {
    font-size: clamp(10px, 5.3333333333vw, 20px);
    margin-bottom: clamp(0px, 8vw, 30px);
  }
}
@media screen and (max-width: 359px) {
  .modal__ctr .modal__ctr-txt .modal__ctr-txt-ttl-main {
    font-size: clamp(10px, 3.7333333333vw, 20px);
    margin-bottom: clamp(0px, 5.6vw, 30px);
  }
}
.modal__ctr .modal__ctr-txt .modal__ctr-txt-heading {
  font-size: clamp(12px, 1.9033674963vw, 26px);
  margin-bottom: 30px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .modal__ctr .modal__ctr-txt .modal__ctr-txt-heading {
    font-size: clamp(10px, 4.2666666667vw, 16px);
    margin-bottom: clamp(0px, 6.6666666667vw, 25px);
  }
}
@media screen and (max-width: 359px) {
  .modal__ctr .modal__ctr-txt .modal__ctr-txt-heading {
    font-size: clamp(10px, 2.9866666667vw, 16px);
    margin-bottom: clamp(0px, 4.6666666667vw, 25px);
  }
}
.modal__ctr .modal__ctr-txt .modal__ctr-txt-p {
  font-size: clamp(12px, 1.317715959vw, 18px);
  margin-bottom: 50px;
  letter-spacing: normal;
}
.modal__ctr .modal__ctr-txt .modal__ctr-txt-p span {
  font-size: clamp(10px, 0.65em, 100px);
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .modal__ctr .modal__ctr-txt .modal__ctr-txt-p {
    font-size: clamp(10px, 3.7333333333vw, 14px);
    margin-bottom: clamp(0px, 8vw, 30px);
    line-height: 1.5;
  }
}
@media screen and (max-width: 359px) {
  .modal__ctr .modal__ctr-txt .modal__ctr-txt-p {
    font-size: clamp(10px, 2.6133333333vw, 14px);
    margin-bottom: clamp(0px, 5.6vw, 30px);
  }
}
.modal__ctr .modal__ctr-txt a {
  font-size: clamp(12px, 1.1713030747vw, 16px);
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .modal__ctr .modal__ctr-txt a {
    font-size: clamp(10px, 3.7333333333vw, 14px);
  }
}
@media screen and (max-width: 359px) {
  .modal__ctr .modal__ctr-txt a {
    font-size: clamp(10px, 2.6133333333vw, 14px);
  }
}
.modal__ctr .modal__ctr-img {
  max-width: 356px;
  width: 45%;
}
@media screen and (max-width: 767px) {
  .modal__ctr .modal__ctr-img {
    max-width: 230px;
    width: 27vh;
  }
}
@media screen and (max-width: 359px) {
  .modal__ctr .modal__ctr-img {
    width: clamp(0px, 42.9333333333vw, 230px);
  }
}

/* ==============================


sec04


=================================*/
.sec04 {
  padding: clamp(0px, 12.8111273792vw, 175px) 0 clamp(0px, 7.6866764275vw, 105px);
  background: url(../img/sec04__bg.png) no-repeat center center/cover;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec04 {
    padding: 100px 0;
    background-position: 40% center;
  }
}
@media screen and (max-width: 767px) {
  .sec04 .l-inner {
    width: 90%;
    max-width: 320px;
  }
}
.sec04 .sec04__ctr {
  display: flex;
  justify-content: space-between;
  gap: clamp(0px, 5.4904831625vw, 75px);
}
@media screen and (max-width: 767px) {
  .sec04 .sec04__ctr {
    flex-direction: column-reverse;
    align-items: center;
    gap: 50px;
  }
}
.sec04 .sec04__ctr .sec04__ctr-img {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec04 .sec04__ctr .sec04__ctr-img {
    width: 100%;
  }
}
.sec04 .sec04__ctr .sec04__ctr-img img:nth-of-type(1) {
  max-width: clamp(0px, 39.019033675vw, 533px);
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .sec04 .sec04__ctr .sec04__ctr-img img:nth-of-type(1) {
    margin-bottom: 20px;
    max-width: 290px;
  }
}
.sec04 .sec04__ctr .sec04__ctr-img img:nth-of-type(2) {
  max-width: clamp(0px, 18.6676427526vw, 255px);
}
@media screen and (max-width: 767px) {
  .sec04 .sec04__ctr .sec04__ctr-img img:nth-of-type(2) {
    max-width: 190px;
  }
}
.sec04 .sec04__ctr .sec04__ctr-txt {
  width: calc(50% - clamp(0px, 5.4904831625vw, 75px));
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .sec04 .sec04__ctr .sec04__ctr-txt {
    width: 100%;
  }
}
.sec04 .sec04__ctr .sec04__ctr-txt p:nth-of-type(1) {
  color: #AC1A0A;
  font-size: clamp(12px, 2.0497803807vw, 28px);
  margin-bottom: 10px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .sec04 .sec04__ctr .sec04__ctr-txt p:nth-of-type(1) {
    font-size: clamp(10px, 5.8666666667vw, 22px);
    margin-bottom: 40px;
  }
}
.sec04 .sec04__ctr .sec04__ctr-txt p:nth-of-type(2) {
  font-size: clamp(12px, 1.4641288433vw, 20px);
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .sec04 .sec04__ctr .sec04__ctr-txt p:nth-of-type(2) {
    font-size: clamp(10px, 4.8vw, 18px);
    margin-bottom: 50px;
  }
}
.sec04 .sec04__ctr .sec04__ctr-txt p:nth-of-type(3) {
  font-size: clamp(12px, 1.1713030747vw, 16px);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .sec04 .sec04__ctr .sec04__ctr-txt p:nth-of-type(3) {
    font-size: clamp(10px, 3.7333333333vw, 14px);
    margin-bottom: 30px;
  }
}
.sec04 .sec04__ctr .sec04__ctr-txt a {
  font-size: clamp(12px, 1.1713030747vw, 16px);
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .sec04 .sec04__ctr .sec04__ctr-txt a {
    font-size: clamp(10px, 4.2666666667vw, 16px);
  }
}

/* ==============================


sec05


=================================*/
.sec05 {
  padding: clamp(0px, 6.9546120059vw, 95px) 0 clamp(0px, 9.8828696925vw, 135px);
  background: #AC1A0A;
  background: linear-gradient(135deg, rgb(172, 26, 10) 0%, rgb(116, 13, 0) 100%);
  text-align: center;
  color: #ffffff;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .sec05 {
    padding: 80px 0;
  }
}
.sec05 p:nth-of-type(1) {
  font-size: clamp(0px, 2.3426061493vw, 32px);
  margin-bottom: clamp(0px, 4.39238653vw, 60px);
}
@media screen and (max-width: 767px) {
  .sec05 p:nth-of-type(1) {
    font-size: clamp(10px, 6.4vw, 24px);
    margin-bottom: clamp(0px, 8vw, 30px);
  }
}
.sec05 p:nth-of-type(2) {
  font-size: clamp(0px, 4.39238653vw, 60px);
}
@media screen and (max-width: 767px) {
  .sec05 p:nth-of-type(2) {
    font-size: clamp(10px, 8.5333333333vw, 32px);
    line-height: 1.4;
  }
}

/* ==============================


animation base


=================================*/
[anime-kv],
[anime-scroll],
[anime-kv]::before,
[anime-kv]::after {
  opacity: 0;
  transform: translateY(25px);
}

.is-active,
.is-active::before,
.is-active::after {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease, transform 1s ease;
}

/* ==============================


kv


=================================*/
.kv {
  transform: translateY(0) !important;
}

.kv::before {
  transition-delay: 0.1s;
}

.kv::after {
  transition-delay: 0.35s;
}

h1 picture:nth-of-type(1) {
  transition-delay: 1.1s;
}

h1 picture:nth-of-type(2) {
  transition-delay: 1.3s;
}

.kv-sub-txt__shop {
  transition-delay: 1.4s;
}

.kv-sub-txt__sign {
  transition-delay: 1.5s;
}

/* ==============================


list


=================================*/
.sec03 ul li img {
  transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
  transform: scale(1) translateY(0);
  opacity: 1;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.sec03 ul li img:hover {
  transform: scale(1.01) translateY(-3px);
  z-index: 10;
  opacity: 0.8;
  box-shadow: 0px 0px 20px -5px rgba(97, 93, 93, 0.2);
}

/* ==============================


modal


=================================*/
.modal {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.modal.is-open, .modal.is-closing {
  visibility: visible;
  pointer-events: auto;
}
.modal.is-open {
  opacity: 1;
}
.modal__bg {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.modal.is-open .modal__bg {
  opacity: 1;
}
.modal.is-closing .modal__bg {
  opacity: 0;
}
.modal__content {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 20px));
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.modal.is-open .modal__content {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.modal.is-closing .modal__content {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 20px));
}

/* =============================
utility
============================= */
.u-kome {
  padding-left: 1em;
  text-indent: -1em;
}

/* ==============================
display none
================================= */
@media screen and (min-width: 1101px) {
  .pad_non,
  .sp_non,
  .pad-sp_non {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .pc_non,
  .sp_non,
  .pc-sp_non {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc_non,
  .pad_non,
  .pc-pad_non {
    display: none !important;
  }
}
/* ==============================
h1などでimgを使う際にspanタグを設けそこへテキストを差し込みこのclassをつける
================================= */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
