@charset "UTF-8";
/* CSS Document */
@import url("css/all.min.css");
/*
Theme Name: Lightning Child
Template: lightning
Description: Lightningテーマ用の子テーマ
Author: 伊藤由佳子
Version: 1.0
*/

* {
  　　box-sizing: border-box; }

img {
  max-width: 100%;
  vertical-align: top; }

ul {
  list-style: none; }

body {
  font-family: heisei-kaku-gothic-std, sans-serif;
  background-color: #000000; }

iframe, video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; }

main {
  overflow: hidden;
  text-align: center; }

a {
  text-decoration: none;
  color: #ffffff; }

.ab-quadra {
  font-family: ab-quadra, sans-serif;
  font-weight: 400;
  font-style: normal; }

.pc {
  display: none; }

.inner {
  padding: 0 2%;
  max-width: 1080px;
  margin: 0 auto; }

#page_top {
  width: 45px;
  height: 45px;
  position: fixed;
  right: 10px;
  bottom: 90px;
  background: #bb1f1f;
  border-radius: 50%;
  box-shadow: #fff 0px 0px 1px 2px;
  z-index: 100; }

#page_top a {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  text-decoration: none; }

#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center; }

/**********************************************
*hoverした時の変化
**********************************************/
.sepia a:hover img {
  filter: sepia(60%);
  transition: .3s ease-in-out;
  /*移り変わる速さを変更したい場合はこの数値を変更*/ }

.pc-nav-unit a:hover, .primary a:hover {
  /*hoverした時の変化*/
  color: #a51f1c;
  transition: .3s ease-in-out;
  /*移り変わる速さを変更したい場合はこの数値を変更*/ }

.news-list .news-list-unit:hover {
  width: 100%;
  border: solid 1.75px #fff;
  background-color: #420000;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, #831616 2px, #831616 10px);
  transition: .5s ease-in-out;
  /*移り変わる速さを変更したい場合はこの数値を変更*/ }

.common-arrow-btn:hover {
  color: #ffffff;
  background: #a51f1c;
  transition: .5s ease-in-out;
  /*移り変わる速さを変更したい場合はこの数値を変更*/ }

/**********************************************
*白ボタン
***********************************************/
.common-arrow-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  height: 50px;
  width: 40%;
  margin: auto;
  color: #000000; }

.common-radius-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #b20000;
  height: 50px;
  width: 66%;
  margin: auto;
  color: #ffffff; }

.submit-btn input {
  display: block;
  margin: auto;
  background-color: #BB1F1F;
  padding: 10px;
  width: 80%;
  border-radius: 10px;
  color: #ffffff; }

/**********************************************
*js動き
***********************************************/
.sepiaTrigger {
  filter: sepia(100%); }

.sepiaOn {
  animation-name: sepiaAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  filter: sepia(100%); }

@keyframes sepiaAnime {
  from {
    filter: sepia(100%); }
  to {
    filter: sepia(0); } }
.fadeUpTrigger {
  opacity: 0; }

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.fadeleftTrigger {
  opacity: 0; }

.fadeleft {
  animation-name: fadeleftAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes fadeleftAnime {
  from {
    opacity: 0;
    transform: translateX(-400px); }
  to {
    opacity: 1;
    transform: translateX(0px); } }
.faderightTrigger {
  opacity: 0; }

.faderight {
  animation-name: faderightAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes faderightAnime {
  from {
    opacity: 0;
    transform: translateX(400px); }
  to {
    opacity: 1;
    transform: translateX(0px); } }
/**********************************************
*共通ヘッダー
***********************************************/
.yoko {
  display: flex;
  overflow-x: scroll;
  text-align: center;
  margin-bottom: 3.5vw;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none; }

/*Google Chrome、Safariへの対応*/
.yoko::-webkit-scrollbar {
  display: none; }

.yoko img {
  max-width: none;
  width: 73vw;
  margin: 1vw;
  border: solid 0.75px #ffffff; }

/**********************************************
*共通フッター
***********************************************/
footer {
  background-color: #212121;
  color: #ffffff;
  text-align: center;
  padding-bottom: 10px;
  margin-top: 80px; }

footer a {
  color: #ffffff; }

footer .sns-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 300;
  font-size: 12px; }

footer .sns {
  background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255, 255, 255, 0.5) 12px, rgba(255, 255, 255, 0.5) 25px);
  padding: 30px 0; }

footer .sns p {
  font-size: 1.3em;
  margin-bottom: 10px; }

footer .sns_unit {
  margin: 10px; }

footer .sns_unit a {
  display: flex;
  background: #ffffff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center; }

footer .sns_unit img {
  width: 18px; }

footer .primary {
  font-size: 0.8em;
  font-weight: 100;
  margin-bottom: 30px; }

footer .primary > li {
  margin-bottom: 10px; }

footer .sns > li {
  padding: 0 12px; }

footer .sns i {
  font-size: 30px; }

footer .brand {
  padding-top: 30px;
  margin-bottom: 35px; }

footer .nav-items {
  padding-bottom: 0; }

footer .brand-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 2%; }

footer .brand-unit {
  width: 100px;
  padding: 5px; }

.f-logo {
  margin-bottom: 20px; }

.f-logo img {
  width: 40%; }

/**********************************************
*プラグイン上書きCSS
**********************************************/
.post-password-form input {
  border: none;
  background-color: #ffffff; }

.w3eden .package-title {
  text-align: left; }
  .w3eden .package-title a {
    color: #000000; }

/**********************************************
*Loading背景画面設定
***********************************************/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #000;
  text-align: center;
  color: #fff;
  top: 0; }

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 260px; }

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpLoading;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes fadeUpLoading {
  from {
    opacity: 0;
    transform: translateY(100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/**********************************************
*お知らせページャー
***********************************************/
.nav-links ul {
  display: flex;
  justify-content: center;
  margin-bottom: 20px; }

.pagination li {
  margin: 0 15px; }

.page-numbers .current {
  background: #bb1f1f;
  padding: 10px;
  border-radius: 18%;
  color: #ffffff; }

.news-arrow {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  margin-bottom: 30px; }

/**********************************************
*共通タイトル
***********************************************/
.mainv h1 {
  font-size: 9vw;
  filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.8));
  color: #ffffff; }

#Contact .mainv h1, #Privacy .mainv h1 {
  color: #000000; }

.mainv {
  height: 40vw;
  display: flex;
  justify-content: center;
  align-items: center; }

/**********************************************
*トップページ
***********************************************/
.top-btn-grid {
  display: grid;
  padding: 15px 8%;
  gap: 3vw; }

.top-btn > .row-btn {
  display: flex;
  grid-template-columns: 1fr 1fr;
  column-gap: 2vw; }

.siro {
  position: relative;
  z-index: 0; }

.siro::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  /*四角形を傾けます*/
  transform: skewY(-6deg);
  transform-origin: top right;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #A51F1C; }

.siro-bg {
  background-image: url(img/bg_yakihorumon.webp);
  background-size: contain;
  background-position-y: 26vw; }

.siro .sara {
  margin-top: 36vw;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.6)); }

h2, h3, p {
  color: #ffffff; }

.home-main h2 {
  font-size: 10vw;
  padding-top: 17vw;
  filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.8)); }

.home-main .siro h2 {
  text-align: left; }

.home-main .douga h2 {
  text-align: right; }

.home-main h3 {
  font-size: 9vw;
  text-align: center;
  filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.8));
  padding-top: 28px; }

.home-main h3 span {
  font-size: 7vw;
  margin-left: 7px; }

.home-main p {
  line-height: 1.5;
  text-align: justify;
  padding-top: 21px;
  filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.8)); }

/**********************************************
*メインコンテンツ
***********************************************/
.main-content {
  margin-bottom: 30px; }

section .siro {
  background-color: #A51F1C; }

.home-main .common-radius-btn.white-btn {
  position: relative;
  color: #bb1f1f;
  border-radius: 2em;
  margin-top: 10px; }

.home-main .common-radius-btn.white-btn::after {
  content: "\f138";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 1.3em;
  position: absolute;
  right: 10px;
  top: 25%; }

.main-content .main-content-unit {
  margin-bottom: 15px; }

/**********************************************
*5つの気持ち
***********************************************/
#five:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-image: url("img/five_bg.webp");
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: cover;
  opacity: 0.4; }

#five section {
  filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.8));
  padding-top: 50px;
  height: 100vh; }

.five-list h3 {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.5; }

.five-list p:first-of-type {
  font-size: 2.5em;
  margin-bottom: 25px; }

.five-list p:last-of-type {
  font-size: 0.9em;
  line-height: 2.5;
  padding: 0 8%;
  padding-top: 30px;
  text-align: justify; }

.picture {
  position: relative;
  margin-top: 20px; }

.picture .left {
  position: absolute;
  top: 60px;
  left: 14px;
  z-index: 1;
  width: 56%;
  transform: rotate(-4deg); }

.picture .right {
  position: absolute;
  top: 0;
  right: 12px;
  width: 37%;
  transform: rotate(4deg); }

/**********************************************
*お知らせ
***********************************************/
.news-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 46px;
  row-gap: 30px; }

.news-box h2 {
  text-align: center;
  margin-bottom: 30px; }

.news-list .news-list-unit {
  width: 100%;
  border: solid 1.75px #fff;
  padding: 8px;
  background-color: #595959;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, black 2px, black 10px); }

.news-list .news-list-unit .date {
  font-size: 0.9em;
  text-align: left;
  padding-top: 12px; }

.news-list .news-list-unit .title {
  font-size: 1em;
  text-align: left;
  padding-top: 12px;
  font-weight: bolder; }

.news-list .news-list-unit .article p {
  margin: auto;
  font-size: 0.8em;
  text-align: justify;
  line-height: 1.8;
  padding-top: 10px; }

#News-detail .bg {
  background-color: #ffffff;
  padding: 30px 2.5% 65px; }

#News-detail .date {
  background-color: #E84031;
  width: 106px;
  font-size: 12px;
  text-align: center;
  padding: 8px; }

#News-detail h2 {
  text-align: left;
  border-bottom: dotted 2px #e84031;
  padding: 10px;
  margin-bottom: 30px;
  line-height: 1.5;
  font-size: 1.25em;
  color: #000000; }

#News-detail .article p {
  width: 100%;
  margin: 0;
  text-align: justify;
  line-height: 1.6;
  font-size: 0.8em;
  color: #000000; }

/**********************************************
*メニュー
***********************************************/
#Menu-detail h2 {
  font-size: 2.2em; }

#Menu-detail .inner {
  max-width: 1200px; }

#Menu-detail .menu-tab {
  margin-top: 30px;
  margin-bottom: 60px; }

#Menu-detail .menu-tab ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px; }

#Menu-detail .menu-tab li > a {
  color: #000;
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding: 25px 0;
  border-radius: 8px; }

#Menu-detail .mainv {
  background-image: url("img/menu_mainv.webp");
  background-size: cover; }

.select-menu {
  border: 1px solid #BB1F1F;
  box-shadow: 3px 3px 5px #3939393D;
  border-radius: 24px;
  padding: 15px 30px;
  margin-top: 20px;
  width: 100%; }

#Menu-detail .menu-detail-list {
  display: grid;
  row-gap: 10px;
  padding-top: 20px;
  margin-bottom: 70px; }

#Menu-detail .menu-detail-unit {
  position: relative; }

#Menu-detail .menu-detail-unit img {
  width: 100%;
  object-fit: cover; }

#Menu-detail .menu-detail-unit > a > p {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  font-size: 1.3em;
  font-weight: 700;
  text-shadow: 2px 2px 5px #000;
  color: #fff;
  text-align: center; }

#Menu-detail .common-arrow-btn {
  padding: 60px 0; }

#Menu-detail .note {
  text-align: left;
  font-size: small;
  font-weight: 200; }

#modal-container {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
   z-index: 99; }

#modal-container div {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center; }

#modal-container img {
  max-width: calc(100vw - 30px);
  max-height: calc(100vh - 30px); }

img.popup {
  cursor: pointer; }

/**********************************************
*FCページ
***********************************************/
#fc section {
  padding-bottom: 80px; }
#fc .btn, #fc a.btn, #fc button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem; }
#fc .btn-wrap {
  margin: auto;
  width: 90%;
  max-width: 500px;
  margin-top: 1vw; }
#fc a.btn-c {
  font-size: 1.2rem;
  position: relative;
  color: #fff;
  background: #4caf21;
  -webkit-box-shadow: 0 5px 0 #205a07;
  box-shadow: 0 5px 0 #205a07; }
#fc a.btn-c span {
  font-size: 0.9rem;
  position: absolute;
  top: -10px;
  left: calc(50% - 125px);
  display: block;
  width: 250px;
  padding: 0.2rem 0;
  color: #32b16c;
  border: 2px solid #32b16c;
  border-radius: 0.5rem;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2); }
#fc a.btn-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: #30a967;
  -webkit-box-shadow: 0 2px 0 #2c9d60;
  box-shadow: 0 2px 0 #2c9d60; }
#fc a.btn-c:hover:before {
  left: 2rem; }
#fc .mainv {
  background-image: url("img/fc/main_bg.webp");
  background-size: cover;
  height: 75vh; }
  #fc .mainv h1 {
    line-height: 2;
    margin-bottom: 35px; }
#fc .head_title {
  font-size: clamp(2.25rem, calc(-0.125rem + 12.5vw), 8rem);
  font-weight: 800; }
#fc .clip-bg {
  position: relative; }
  #fc .clip-bg .clip-bg_container {
    width: 100%;
    padding-top: 60px; }
    #fc .clip-bg .clip-bg_container .ontext {
      padding: 0 2%;
      filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.8)); }
      #fc .clip-bg .clip-bg_container .ontext .toptext {
        font-size: clamp(2.25rem, calc(-0.125rem + 12.5vw), 8rem);
        line-height: 1;
        text-align: justify; }
      #fc .clip-bg .clip-bg_container .ontext .bottomtext {
        font-size: clamp(0.9rem, calc( 0.35rem + 2.2vw ), 2rem);
        text-align: justify;
        line-height: 1.8;
        padding-top: 1vw; }
  #fc .clip-bg .polygon {
    clip-path: polygon(0 calc(0% + 13vw), 100% 0, 100% calc(100% - 13vw), 0 100%);
    width: 93%; }
#fc .tuyomi .tuyomi_container {
  background-color: #fff;
  clip-path: polygon(0 calc(0% + 13vw), 100% 0, 100% calc(100% - 13vw), 0 100%);
  padding-top: 20vw;
  padding-bottom: 16vw; }
#fc .tuyomi h3 {
  font-size: clamp(2.25rem, calc(-0.125rem + 12.5vw), 8rem);
  font-weight: 800; }
#fc .tuyomi .tuyomi-unit {
  margin-bottom: 60px; }
  #fc .tuyomi .tuyomi-unit .title {
    color: #000;
    font-size: clamp(2rem, calc( 1.5rem + 2vw ), 3rem);
    line-height: 1.3;
    font-weight: 800;
    padding: 28px 0 19px; }
  #fc .tuyomi .tuyomi-unit .text {
    color: #000;
    font-size: clamp(0.9rem, calc(0.72rem + 0.72vw), 1.15rem);
    line-height: 2;
    padding: 0 3% 50px;
    text-align: justify; }
#fc .owner {
  padding: 3%; }
  #fc .owner .copytext {
    font-size: clamp(1.5rem, calc(0.75rem + 3vw), 3rem);
    line-height: 1.5;
    font-weight: 800;
    padding: 35px 0 25px; }
  #fc .owner .textbox {
    padding: 54px 1%; }
    #fc .owner .textbox .name {
      font-weight: 700;
      font-size: clamp(1.77rem, calc(1.155rem + 2.46vw), 3rem);
      line-height: 1.5;
      text-align: left; }
      #fc .owner .textbox .name small {
        display: block;
        font-size: 60%; }
    #fc .owner .textbox .voice {
      font-size: clamp(0.9rem, calc(0.72rem + 0.72vw), 1.15rem);
      line-height: 1.7;
      text-align: justify; }
#fc .model .title {
  font-size: 2.45rem;
  font-weight: 800;
  padding: 0 0 7px; }
#fc .model .sbtitle {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 800;
  padding: 0 0 25px; }
#fc .model .modelsample table {
  padding: 35px 10%;
  margin: auto;
  border-spacing: 0;
  font-size: clamp(1rem, calc(0.6rem + 1.6vw), 1.8rem);
  background-color: #fff; }
  #fc .model .modelsample table th {
    border-bottom: 1px solid #000;
    padding: .5em;
    color: #2B2B2B;
    opacity: 0.7;
    font-weight: bold; }
  #fc .model .modelsample table td {
    border-bottom: 1px solid #000;
    padding: .5em;
    font-weight: bold;
    height: 3.5em;
    color: #002975; }
#fc .step {
  background-color: #f1f1f1f1;
  padding: 0 5%; }
  #fc .step .head_title {
    color: #000; }
  #fc .step .step-unit {
    position: relative; }
    #fc .step .step-unit p {
      color: #000; }
    #fc .step .step-unit .l {
      position: absolute;
      border: solid 2px #0F3174;
      width: 46px;
      height: 46px;
      top: 0;
      left: 0;
      display: grid;
      justify-content: center;
      align-items: center;
      background-color: #fff; }
      #fc .step .step-unit .l span {
        color: #0F3174; }
    #fc .step .step-unit .r {
      display: grid;
      padding-left: 60px;
      text-align: left; }
      #fc .step .step-unit .r .r-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #0F3174;
        height: 46px;
        display: flex;
        justify-content: flex-start;
        align-items: center; }
      #fc .step .step-unit .r .r-text {
        font-size: 0.9rem;
        font-weight: 400;
        margin-bottom: 28px;
        line-height: 1.5; }
#fc .qa {
  background-color: #fff;
  padding: 0 5% 70px;
  margin-bottom: 60px; }
  #fc .qa .head_title {
    color: #000; }
  #fc .qa p {
    color: #000; }
  #fc .qa details {
    padding: 10px;
    border: 1px solid #004082;
    color: #004082;
    font-weight: 700;
    margin-bottom: 15px;
    height: fit-content; }
    #fc .qa details summary {
      text-align: left;
      font-size: 1rem;
      line-height: 2; }
  #fc .qa details[open] {
    border: 1px solid #cf2e2e; }
    #fc .qa details[open] summary {
      border-bottom: 1px solid #cf2e2e;
      margin-bottom: 0.5em;
      color: #cf2e2e; }
    #fc .qa details[open] p {
      text-align: left;
      line-height: 1.8;
      font-weight: 400;
      font-size: 0.8rem; }
    #fc .qa details[open] a {
      color: #000;
      border-bottom: solid 1px #000; }

/**********************************************
*店舗一覧ページ
***********************************************/
#Shop {
  background-color: #ffffff; }

#Shop-list .mainv {
  background-image: url("img/shop_mainv.webp");
  background-size: cover; }

#Shop-list .shop-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 90px;
  margin-bottom: 40px; }

#Shop-list .shop-list-unit {
  width: 136px;
  text-align: center;
  margin: 0 1% 0;
  margin-bottom: 3.2%;
  background-color: #ffffff; }

#Shop-list .shop-list-unit a {
  display: grid;
  padding: 30px 0 10px;
  color: #000000; }

#Shop-list .shop-list-unit a > span {
  margin-bottom: 10px; }

#Shop-list .shop-detail-list {
  margin-bottom: 30px; }

#Shop-list .shop-detail-list h3 {
  background-color: #870019;
  padding: 10px 0; }

#Shop-list .shop-text {
  color: #000000;
  line-height: normal;
  text-align: left; }

#Shop-list .shop-detail-unit .shop-btn {
  display: grid;
  width: 45%;
  row-gap: 10px; }

#Shop-list .shop-detail-unit .shop-btn a {
  padding: 10px 20px;
  min-width: 80px;
  text-align: center; }

#Shop-list .shop-detail-unit .shop-btn a:nth-child(1) {
  background-color: #BB1F1F;
  color: #ffffff; }

#Shop-list .shop-detail-unit .shop-btn a:nth-child(2) {
  background-color: #F2C94C;
  color: #BB1F1F; }

.saList {
  background: #ffffff;
  margin-bottom: 5px; }

.saList dl {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #666; }

.saList dl dt {
  width: 22%;
  padding: 3vw;
  display: flex;
  justify-content: center;
  align-items: center; }

.saList dl dd p {
  color: #000000;
  text-align: left; }

.saList dl dt span {
  display: block;
  text-align: center;
  color: #fff;
  background: #606060;
  width: 100%;
  font-size: 0.8rem;
  padding: 0.5em;
  line-height: 1.2; }

.saList dl dd {
  width: 78%;
  padding: 3vw; }

.saList .saRsvMore a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  background-color: #F2C94C;
  color: #000; }

.saList .saRsvWeb a {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  background-color: #CE052B;
  color: #fff; }

.saList .saAddress .linkOut {
  display: inline-block;
  margin-left: 0.5em;
  color: #c8b900;
  font-weight: bold;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  border-bottom: 1px solid #c8b900; }

/**********************************************
*店舗詳細ページ
***********************************************/
#Shop-detail h2 {
  padding-bottom: 10px;
  margin-bottom: 20px;
  margin-top: 30px;
  font-size: 1.2rem;
  line-height: 1.7; }

.shop-btnList {
  margin-bottom: 20px; }

.shop-btnList a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 58px;
  background-color: #d50000;
  color: #fff;
  border: solid #fff 1px;
  border-radius: 8px; }

.shop-btn1 {
  margin-bottom: 2vw; }

.shop-btn2 {
  display: flex;
  gap: 2vw; }

.shop-btn2 > .shop-btn {
  width: 50%; }

.shop-detail-content {
  display: block; }

.shop-detail-img {
  margin-bottom: 25px; }

#Shop-detail .map {
  padding-top: 25px; }

#Shop-detail .map iframe {
  height: 280px; }

#Shop-detail .shop-info {
  text-align: left; }

#Shop-detail .shop-info-list {
  background-color: #ffffff;
  margin-top: 30px;
  margin-bottom: 10px;
  filter: drop-shadow(0px 2px 5px #d3d3d3);
  border: #fff solid 1px; }

.shop-info-list dt {
  background-color: #000000;
  display: block;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  padding: 15px 0;
  text-align: center;
  gap: 10px;
  cursor: pointer; }

.shop-info-list dd {
  display: none;
  padding: 20px 3%;
  color: #000000; }

.shop-info-list dd p {
  color: #000000; }

#Shop-detail .shop-info .shop-info-list .common-arrow-btn {
  text-align: left; }

/**********************************************
*プライバシーポリシー
***********************************************/
#Privacy a {
  text-decoration: underline;
  color: #0000ff; }

#Privacy p {
  color: #000000; }

#Privacy ul > li:before {
  display: inline-block;
  margin-right: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
  vertical-align: 0.18em;
  content: ""; }

#Privacy ul > ul {
  padding-left: 20px; }

#Privacy ul > ul > li:before {
  display: inline-block;
  margin-right: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #a2a2a2;
  vertical-align: 0.18em;
  content: ""; }

#Privacy .contact-box h3 {
  text-align: left;
  padding-top: 25px;
  margin-bottom: 10px; }

#Privacy .contact-box h4 {
  border-bottom: solid 2px #c2c2c2;
  text-align: left;
  color: #6b6b6b;
  padding-top: 25px;
  margin-bottom: 10px; }

/**********************************************
*お問合せ
***********************************************/
#Contact, #Privacy {
  background-color: #ffffff;
  padding-bottom: 12vw; }

.contact-box {
  border: solid 2px #000000;
  border-radius: 10px;
  padding: 10px;
  padding-bottom: 20px;
  margin-top: 50px;
  text-align: left; }

.contact-box a {
  color: #0004ff; }

#Contact h2 {
  color: #000000; }

.contact-box h3 {
  border-bottom: solid 2px #000000;
  padding-bottom: 10px;
  text-align: left;
  color: #000000;
  padding-top: 25px; }

.contact-box h3 + p {
  padding-top: 25px;
  text-align: justify;
  font-size: 12px;
  line-height: 22px;
  margin-bottom: 20px;
  color: #000000; }

form dl {
  margin-bottom: 20px; }

form .item input, select, textarea {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 8px;
  padding: 10px 5px; }

form dt {
  background-color: #606060;
  color: #ffffff;
  padding: 10px 0;
  margin-bottom: 5px;
  padding-left: 10px; }

form .radio > p {
  color: #000000; }

form .label-required {
  display: inline-block;
  background-color: #BB1F1F;
  color: #fff;
  padding: 3px 10px;
  border-radius: 10px;
  margin-left: 10px;
  font-size: 12px;
  font-weight: 100;
  vertical-align: bottom; }

form .item input, select {
  width: 100%; }

.row-btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 13px; }

#Confirm .common-radius-btn {
  width: 100%; }

.contact-box .text {
  text-align: center;
  font-size: 0.8em;
  line-height: 20px; }

.contact-box .text p {
  color: #000; }

.contact-box .text a {
  color: #0693e3; }

/**********************************************
*クーポンページ
***********************************************/
#Coupon {
  font-style: normal;
  background: #000000; }

#Coupon .inner {
  max-width: 1200px;
  padding-top: 50px; }

#Coupon p {
  color: #000; }

#Coupon section {
  background: #ffffff;
  margin: 0 5% 45px;
  background: #ffffff;
  padding-bottom: 18px;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.25); }

#Coupon section > h3 {
  padding: 20px 0;
  background: #bb1f1f;
  color: #fff; }

#Coupon .scan {
  width: 46%;
  display: block;
  margin: auto; }

#Coupon section h4 {
  color: #bb1f1f;
  font-size: 20; }

#Coupon .text.intro {
  font-size: 20px;
  letter-spacing: 3px;
  text-align: center;
  color: #bb1f1f;
  font-weight: bold; }

#Coupon .flex > .text {
  letter-spacing: 2px;
  line-height: 25px; }

#Coupon .text {
  padding: 20px 10% 20px; }

#Coupon .text > span {
  display: block;
  font-size: 12px;
  padding-top: 6px; }

#Coupon .text > a {
  border-radius: 10px;
  width: 165px;
  padding: 6px 0px;
  margin: 14px auto 0;
  display: block;
  background: #bb1f1f;
  color: #fff;
  font-size: 13px; }

#Coupon .add-unit .text {
  padding: 8px 0 10px;
  border-bottom: solid 2px #bb1f1f;
  margin: 0 40px 38px; }

#Coupon .add-unit .text li {
  margin-bottom: 20px; }

#Coupon .add-unit .text a {
  color: #000; }

#Coupon .text.detail {
  text-align: justify;
  margin: 0 10%;
  font-size: 12px; }

#Coupon .text.detail li {
  margin-bottom: 5px; }

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

  .pc {
    display: block; }

  .top-slider-unit img {
    width: 100%;
    max-width: 1386px;
    padding: 0 5px; }

  .header-inner {
    justify-content: center;
    height: 80px; }

  .header-title a {
    width: 100%; }

  .pc-nav {
    display: flex;
    justify-content: center;
    align-items: center; }

  .pc-nav-unit {
    margin-right: 35px;
    font-size: 1em; }

  .pc-nav-unit:last-child {
    margin-right: 0; }

  .common-radius-btn {
    width: 350px; }

  .common-arrow-btn {
    width: 25%; }

  .mainv {
    height: 405px; }

  .mainv h1 {
    font-size: 4vw; }

  .yoko {
    display: flex;
    overflow-x: scroll;
    text-align: center;
    margin-bottom: 10px;
    max-width: 1120px;
    margin: auto; }

  .yoko img {
    width: 95%;
    margin: 10px 5px; }

  /**********************************************
  *フッター
  ***********************************************/
  .f-logo img {
    width: 8%; }

  .nav-items {
    padding: 50px 0 150px;
    max-width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin: auto; }

  /**********************************************
  *メインコンテンツ
  ***********************************************/
  .main-content.inner, .pickup.inner {
    max-width: 1300px; }

  .main-content .main-content-unit, .pickup .pickup-unit, .bnr-list-unit {
    padding: 0 10px;
    text-align: center; }

  .top-btn {
    padding: 30px 18vw 10px; }

  .row-btn {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 13px; }

  .home-main h2 {
    font-size: clamp(48px, 6vw, 96px);
    padding-top: 10vw; }

  .home-main .siro h2, .home-main .douga h2 {
    text-align: center; }

  .siro .sara {
    margin-top: 78px;
    display: flex;
    align-items: center; }

  .siro img {
    width: 58%; }

  .home-main h3 {
    font-size: clamp(30px, 4vw, 50px); }

  .home-main h3 span {
    font-size: 70%; }

  .home-main p {
    line-height: 1.8;
    font-size: 1em; }

  .siro-bg {
    background-image: url("img/pc_yaki.webp");
    background-size: contain;
    background-position-y: 17.5vh; }

  .siro::after {
    content: '';
    transform: skewY(-3deg); }

  .news-list {
    grid-template-columns: 1fr 1fr 1fr 1fr; }

  /**********************************************
  *5つの気持ち
  ***********************************************/
  #five section {
    padding-top: 50px;
    height: 70vh;
    display: flex;
    gap: 15px; }

  #five:before {
    content: "";
    background-position: 50% 50%; }

  #five .text {
    width: 50%; }

  #five .picture {
    width: 50%; }

  .five-list h3 {
    text-align: left; }

  .five-list p:first-of-type {
    font-size: 4em;
    text-align: left;
    padding-left: 26px; }

  .five-list p:last-of-type {
    font-size: 0.9em;
    line-height: 2.5;
    padding: 30px 0 0; }

  .reverse {
    flex-direction: row-reverse; }

  /**********************************************
  *メニュー
  ***********************************************/
  #Menu-detail .mainv {
    background-image: url("img/menu_mainv_long.webp");
    background-attachment: fixed;
    background-size: inherit;
    background-position: center top; }

  #Menu-detail .menu-others-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 25px; }

  #Menu-detail .menu-detail-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
    row-gap: 20px;
    padding-top: 90px;
    margin-bottom: 70px; }

  #Menu-detail .note {
    padding-top: 30%;
    text-align: center; }

  /**********************************************
  *FCページ
  ***********************************************/
  #fc .inner {
    max-width: 1300px;
    margin: auto; }
  #fc .mainv {
    background-position: bottom;
    background-attachment: fixed; }
  #fc .clip-bg_container .ontext {
    position: absolute;
    z-index: 1; }
  #fc .clip-bg_container .polygon {
    height: 100%;
    width: 80%;
    opacity: 0.8; }
  #fc .tuyomi .tuyomi-unit {
    display: grid;
    grid-template-columns: 56% 40%;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 50px; }
  #fc .owner .textbox {
    padding: 0; }
  #fc .owner .owner-unit {
    display: grid;
    grid-template-columns: 49% 49%;
    gap: 2%;
    align-items: self-start;
    padding: 40px 5% 67px; }
    #fc .owner .owner-unit img {
      height: 100%;
      width: 100%;
      object-fit: cover; }
  #fc .step .list {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    margin: auto;
    padding: 54px 0; }
  #fc .step .step-unit {
    max-width: 200px;
    margin: 0 1%; }
    #fc .step .step-unit .l {
      position: static;
      margin: auto; }
    #fc .step .step-unit .r {
      padding-top: 28px;
      padding-left: 0;
      text-align: center; }
      #fc .step .step-unit .r .r-title {
        justify-content: center; }
  #fc .qa .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 27px; }

  /**********************************************
  *店舗詳細ページ
  ***********************************************/
  #Shop-detail .inner {
    padding: 0 2%;
    max-width: 1200px;
    margin: 0 auto; }

  #Shop-detail h2 {
    margin-bottom: 40px;
    margin-top: 60px;
    font-size: 1.3em; }

  .shop-detail-content {
    padding-top: 50px; }

  #Shop-detail .shop-info .shop-info-list dt:first-child {
    margin-top: 0; }

  /**********************************************
  *店舗一覧
  ***********************************************/
  #Shop-list .mainv {
    background-image: url("img/shop_mainv_long.webp");
    background-attachment: fixed;
    background-size: auto 485px;
    background-position: center top; }

  .saList {
    display: flex;
    align-items: center;
    justify-content: space-between; }

  .saList dl dt {
    width: 45%;
    padding: 1vw;
    display: block; }

  .saList dl {
    width: 100%; }

  .saList .pclist {
    width: 50%; }

  .saList .pclist:first-child {
    border-right: 1px dashed #666666; }

  .saDl2, .saDl3 {
    border-bottom: none !important; }

  .saList dl dd {
    padding: 1vw; }

  /**********************************************
  *お知らせ詳細
  ***********************************************/
  #News-detail {
    margin-top: 130px; }

  /**********************************************
  *クーポンページ
  ***********************************************/
  #Coupon {
    font-weight: 100;
    font-style: normal;
    background: none; }

  #Coupon .main_content {
    margin: 0 auto;
    width: 375px; }

  #Coupon .top_bg {
    height: 653px; }

  #Coupon .top_img {
    padding-top: 20px; }

  #Coupon .only-desktop {
    background-size: cover;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
    background-color: #000000; }

  #Coupon section {
    background: #ffffff;
    margin-bottom: 45px;
    background: #ffffff;
    margin-bottom: 45px;
    padding-bottom: 18px; }

  #Coupon section > h3 {
    padding: 20px 0;
    background: #bb1f1f;
    color: #fff; }

  #Coupon section h4 {
    color: #bb1f1f; }

  #Coupon .add-unit .text {
    padding: 20px 0 20px; }

  #Coupon .add > .text {
    padding: 20px 10% 20px; } }
