@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/*
  value_pc(min, max)

  使い方：
  - width: value_pc(18rem, 21.6rem);
  - font-size: value_pc(12px, 20px);

  説明：
  - 最小値(min)と最大値(max)を渡すと
  - SP幅(767px)〜PC幅(1130px)の間で自然に補間される clamp(...) を返す
*/
/*======================================
セッティング
======================================*/
.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .spNone {
    display: none !important;
  }
}
.tabOnly {
  display: none !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tabOnly {
    display: block !important;
  }
}
.pcNone {
  display: block !important;
}

@media screen and (min-width: 768px) {
  .pcNone {
    display: none !important;
  }
}
@media (min-width: 768px) {
  a[href*="tel:"] {
    /* pointer-events: none;
    cursor: default; */
    text-decoration: none;
  }
}
@-webkit-keyframes zoom-fade {
  0% {
    /*transform: scale(1.05);*/
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    /*transform: scale(1);*/
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}
@keyframes zoom-fade {
  0% {
    /*transform: scale(1.05);*/
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    /*transform: scale(1);*/
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}




html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
  font-size: 62.5%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}




body {
  width: 100%;
  font-size: 18px;
  font-size: clamp(1.2rem, calc(1.2rem + (1.6rem - 1.2rem) * ((100vw - 767px) / 363px)), 1.6rem); /* 1440px幅は、font-size: 16px */
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #18284d;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  /* background-image: url(../img/main_bg.jpg); */
  background-repeat: repeat;
  background-size: 100%;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
}
body.fixed {
  position: fixed;
}




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

a {
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:hover {
  opacity: 0.7;
}

p {
  line-height: 2.2;
  letter-spacing: 0.2em;
}

.l-inner {
  max-width: 1072px;
  width: 95%;
  margin: 0 auto;
}
.l-inner--l {
  max-width: 1400px;
}
.l-inner--m {
  max-width: 1200px;
}
.l-inner--s {
  max-width: 1000px;
}

@media screen and (max-width: 767px) {
  .l-inner {
    width: 90%;
  }
}
.l-wrapper {
  overflow: hidden;
}

/*======================================
　共通ボタン
======================================*/
.c-btn {
  display: block;
  width: 13.75em;
  z-index: 1;
  margin: 0 auto;
}

.c-btn.left {
  margin-left: 0;
}

.c-btn.right {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .c-btn.left {
    margin: 0 auto;
  }
  .c-btn.right {
    margin: 0 auto;
  }
}
/*======================================
　アニメーション : fade
======================================*/
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeUp {
  -webkit-animation: fadeUp 0.5s ease;
  animation: fadeUp 0.5s ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(2rem);
  transform: translateY(2rem);
}

.delay-1 {
  animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.35s;
  -moz-animation-delay: 0.35s;
  -webkit-animation-delay: 0.35s;
  -o-animation-delay: 0.35s;
}

.delay-3 {
  animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
}

.delay-4 {
  animation-delay: 0.65s;
  -moz-animation-delay: 0.65s;
  -webkit-animation-delay: 0.65s;
  -o-animation-delay: 0.65s;
}

.delay-5 {
  animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
}








/*======================================
フッター
======================================*/
footer {
  background-color: #ffd201;
  position: relative;
  z-index: 1;
  padding: 7.5em 0 0;
}

.footer_inner > p {
  text-align: center;
  font-size: 1.74em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 1.7em 0 1.2em
}

.footer__text {
  text-align: center;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.15em;
  margin: 5em 0 1em
}

.footer__block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8em;
  margin-bottom: 2em;
}
.footer__block > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  font-size: 0.85em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.0em;
}
.footer__block > div > div {
  color: #fff;
  background-color: #000;
  border-radius: 0.3em;
  padding: 0.3em 0.5em 0.4em;
}
.footer__block > div > p {
  letter-spacing: 0.05em;
}

footer .copy {
  background-color: #000;
  color: #fff;
  height: 3.1em;
  display: flex;
  align-items: center;
}
footer .copy a {
  color: #fff;
}
.copy__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
.copy__block ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3em;
}
.copy__block li {
  position: relative;
}
		.copy__block li:nth-child(1)::before {
			content: "";
			background-color: #fff;
			width: 0.07em;
			height: 100%;
			/* aspect-ratio: 293/95; */
			position: absolute;
			top: 0;
      right: -1.5em;
			pointer-events: none;
		}

.copy__block li {
  list-style: none;
}

.footer_pagetop {
  position: absolute;
  top: 15.6rem;
  right: clamp(2rem, 6.5972222222vw, 9.5rem);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: top right;
  transform-origin: top right;
}

@media screen and (max-width: 1366px) {
  .footer_pagetop {
    right: 2rem;
  }
}
.footer_pagetop a {
  display: block;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.2em;
}

.footer_pagetop a span {
  display: block;
  padding-left: 11.4rem;
  position: relative;
  z-index: 1;
}

.footer_pagetop a span::before {
  content: "";
  width: 10rem;
  height: 0.2rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.footer_inner {
}


footer .wrap {
  display: flex;
  justify-content: space-between;
  padding: 0.5em 1.6em 1.5em 5em;
}

/* logo */
footer .logo {
  flex-basis: 32%;
}
footer .logo a {
  width: 14.5em;
  display: block;
  margin-bottom: 1.4em;
}
footer .logo p {
  font-size: 0.875em;
  font-weight: 500;
  line-height: 2.14;
  letter-spacing: 0.05em;
}

footer .info {
  /* flex-basis: 30%; */
  flex:1;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.39;
  letter-spacing: 0.05em;
  border-left: 1px solid #999;
  padding-left: 1.5em;
}
footer .info a {
  color: #18284d;
}

/* nav */
footer nav {
  flex-basis: 32%;
  border-left: 1px solid #999;
  padding-left: 2.5em;
}

footer nav ul {
}

footer nav ul a {
  font-size: 1em;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
  color: #18284d;
  position: relative;
  display: inline-block;
}

footer nav ul li a::before {
    content: "";
    background: none;
    width: 0.464em;
    height: 0.837em;
    /* aspect-ratio: 293/95; */
    position: absolute;
    top: 0.6em;
    left: -1em;
    pointer-events: none;
}

@media screen and (max-width: 767px) {
  footer nav ul li:not(:last-of-type) a::after {
    content: none;
  }
}

footer nav .iconBox {
  display: flex;
  justify-content: flex-end;
  gap: 1em;
  margin-top: 3px;
}

footer nav .iconBox .icon {
  display: block;
  width:2.4em;
}

.footer__img {
  margin-bottom: 1em;
}

footer small {
  display: block;
  text-align: center;
  font-size: clamp(1.3rem, 1.4545454545vw, 1.6rem);
  font-size: clamp(1.2rem, calc(1.2rem + (1.4rem - 1.2rem) * ((100vw - 767px) / 363px)), 1.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 3em 0 6rem;
  }
  .footer_inner > p {
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.5;
    margin: 1.7em 0 1.2em;
        word-break: keep-all;
        word-break: auto-phrase;
        overflow-wrap: anywhere;

  }

  .footer__text {
    text-align: center;
    font-size: 1.125em;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.15em;
    margin: 3em 0 0.5em
  }

  .footer__block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    margin-bottom: 2em;
  }
  .footer__block > div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4em;
    font-size: 0.85em;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.0em;
  }
  .footer__block > div > div {
    color: #fff;
    background-color: #000;
    border-radius: 0.3em;
    padding: 0.3em 0.5em 0.4em;
  }
  .footer__block > div > p {
    letter-spacing: 0.05em;
  }

  footer .copy {
    background-color: #000;
    color: #fff;
    height: 3.1em;
    display: flex;
    align-items: center;
  }
  footer .copy a {
    color: #fff;
  }
  .copy__block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75em;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  .copy__block ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3em;
  }
  .copy__block li {
    position: relative;
  }
      .copy__block li:nth-child(1)::before {
        content: "";
        background-color: #fff;
        width: 0.07em;
        height: 100%;
        /* aspect-ratio: 293/95; */
        position: absolute;
        top: 0;
        right: -1.5em;
        pointer-events: none;
      }

  .copy__block li {
    list-style: none;
  }
 
  footer .btnPagetop {
    right: 1rem;
  }
  footer .logo {
    padding-top: 0;
    margin-bottom: 2em;
    text-align: center;
  }

  footer .info {
    /* border-left: 1px solid #999; */
    border-left: none;
    padding-left: 0;
    text-align: center;
    margin-bottom: 2em;
    line-height: 1.6;
  }

  /* nav */
  footer nav {
    border-left: none;
    padding-left: 0;
    margin-bottom: 3em;
  }
  footer nav ul {
    margin-left: 1.5em;
  }
  
  footer nav ul li {
  }
  footer nav ul a {
    font-size: 1em;
    font-weight: 500;
    line-height: 2.3;
    letter-spacing: 0.05em;
    color: #18284d;
    position: relative;
    display: inline-block;
  }

  footer nav ul li:not(:last-child) {
    margin-right: 0;
  }
  footer nav .iconBox {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin-top: 2.5em;
  }
  footer nav .iconBox .icon {
    width: 2.8rem;
  }

  .footer__img {
    max-width: 400px;
    margin: 0 auto 2.5em;
  }
 
}
@media screen and (max-width: 374px) {
  .footer__block {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7em;
    margin-bottom: 2em;
  }
  .copy__block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7em;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  .copy__block ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
  }
  .copy__block li {
    position: relative;
  }
      .copy__block li:nth-child(1)::before {
        content: "";
        background-color: #fff;
        width: 0.07em;
        height: 100%;
        /* aspect-ratio: 293/95; */
        position: absolute;
        top: 0;
        right: -1em;
        pointer-events: none;
      }

  .copy__block li {
    list-style: none;
  }
}









/*======================================
　ヘッダー
======================================*/
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(1rem, 2.7272727273vw, 3rem);
  /* padding-left: clamp(2rem, 4.5138888889vw, 6.5rem);
  padding-right: clamp(2rem, 6.3888888889vw, 9.2rem); */
  position: absolute;
  z-index: 10;
  height: 8rem;
  width: 100%;
  /* background-color: #18284d; */
}

header h1 {
  width: 18.5vw;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}

header .gnav {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(2rem, 3.125vw, 4.5rem);
}

header .gnav .icon {
  display: block;
  width: clamp(1.5rem, 1.7361111111vw, 2.2rem);
  margin-top: 0.2rem;
}

@media screen and (max-width: 767px) {
  header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 6rem;
    padding: 0;
  }
  header h1 {
    width: 13rem;
    top: -0.01em;
  }
}
/*======================================
　nav
======================================*/
ul.gnav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(2.2rem, calc(2.2rem + (6.5rem - 2.2rem) * ((100vw - 767px) / 363px)), 6.5rem);
}

ul.gnav-menu > li {
  white-space: nowrap;
  text-align: center;
}
ul.gnav-menu > li:not(:last-of-type) a::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0px;
  right: calc(clamp(2.2rem, calc(2.2rem + (6.5rem - 2.2rem) * ((100vw - 767px) / 363px)), 6.5rem) / -2);
  width: 1px;
  background: #fff;
}
ul.gnav-menu > li > a {
  display: inline-block;
  position: relative;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: clamp(1.5rem, 1.25vw, 1.6rem);
  font-weight: 500;
  line-height: 1;
  padding: 0;
}

ul.gnav-menu > li.current a {
  color: #cbbea5;
}

ul.gnav-menu > li.current a::before {
  content: "";
  background: none;
  background-size: contain;
  width: 1.6rem;
  height: 0.9rem;
  position: absolute;
  left: 50%;
  bottom: -2rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

ul.gnav-menu .fa-brands {
  font-size: clamp(2.5rem, 2.4305555556vw, 3.5rem);
  color: #962337;
}

/*======================================
　hamburger
======================================*/
.gnav-sp {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
  opacity: 0;
  background-color: #18284d;
}

.gnav-sp .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.gnav-sp-menu li {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  font-weight: 400;
  line-height: 1.4;
}

.gnav-sp-menu li span {
  display: block;
  font-weight: normal;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
}

.gnav-sp-menu li a {
  display: block;
  padding: 1.4rem 0;
  white-space: nowrap;
  color: #fff;
}

.gnav-sp-menu li .fa-brands {
  font-size: 3.5rem;
}

.gnav-sp .iconBox {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.gnav-sp .iconBox .icon {
  display: block;
  width: 3rem;
}

/* toggle */
.toggle-btn {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100000;
  background-color: #18284d;
}

.toggle-btn span {
  display: block;
  position: absolute;
  left: 2rem;
  width: 4rem;
  height: 0.25rem;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.toggle-btn span:nth-child(1) {
  top: 2.3rem;
}

.toggle-btn span:nth-child(2) {
  top: 3.7rem;
}

.toggle-btn span:nth-child(3) {
  top: 5.1rem;
}

@media screen and (max-width: 767px) {
  .toggle-btn {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100000;
  }
  .toggle-btn span {
    display: block;
    position: absolute;
    left: 2rem;
    width: 2rem;
    height: 0.2rem;
    background-color: #fff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .toggle-btn span:nth-child(1) {
    top: 1.9rem;
  }

  .toggle-btn span:nth-child(2) {
    top: 2.7rem;
  }

  .toggle-btn span:nth-child(3) {
    top: 3.5rem;
  }
}


/* open */
.open .gnav-sp {
  top: 0;
  opacity: 1;
  z-index: 99999;
}

.open .toggle-btn span {
  background-color: #fff;
}

.open .toggle-btn span:nth-child(1) {
  -webkit-transform: translateY(1.9rem) rotate(-45deg);
  transform: translateY(1.9rem) rotate(-45deg);
}

.open .toggle-btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle-btn span:nth-child(3) {
  -webkit-transform: translateY(-0.8rem) rotate(45deg);
  transform: translateY(-0.8rem) rotate(45deg);
}

.secHeading {
  font-size: clamp(1.2rem, calc(1.2rem + (1.6rem - 1.2rem) * ((100vw - 767px) / 363px)), 1.6rem);
  height: clamp(6rem, calc(6rem + (7.7rem - 6rem) * ((100vw - 767px) / 363px)), 7.7rem);
  height: 2.5em;
  text-align: center;
}

.secHeading img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 767px) {
  .open .gnav-sp {
    top: 0;
    opacity: 1;
    z-index: 99999;
  }

  .open .toggle-btn span {
    background-color: #fff;
  }

  .open .toggle-btn span:nth-child(1) {
    -webkit-transform: translateY(0.8rem) rotate(-45deg);
    transform: translateY(0.8rem) rotate(-45deg);
  }

  .open .toggle-btn span:nth-child(2) {
    opacity: 0;
  }

  .open .toggle-btn span:nth-child(3) {
    -webkit-transform: translateY(-0.8rem) rotate(45deg);
    transform: translateY(-0.8rem) rotate(45deg);
  }

  .secHeading {
    font-size: clamp(1.2rem, calc(1.2rem + (1.6rem - 1.2rem) * ((100vw - 767px) / 363px)), 1.6rem);
    height: clamp(6rem, calc(6rem + (7.7rem - 6rem) * ((100vw - 767px) / 363px)), 7.7rem);
    height: 2.5em;
    text-align: center;
  }

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





/*======================================
　KV : 下層ページタイトル
======================================*/
.pageMv_inner {
  width: 100%;
  height: clamp(25rem, 34.7222222222vw, 50rem);
  height: clamp(30rem, calc(30rem + (50rem - 30rem) * ((100vw - 767px) / 363px)), 50rem);
  background-image: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* .pageMv_inner::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
} */

.pageMv h1 {
  font-size: clamp(3rem, 3.6603221083vw, 5rem);
  /* font-family: "Shippori Mincho", serif; */
  font-weight: 500;
  line-height: 1.5;
  color: #18284d;
  text-align: center;
  z-index: 3;
}









/*============================
	hero
============================*/
.top-kv {
  position: relative;
}
.top-kv a {
  position: absolute;
  bottom: -3.3em;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .top-kv a {
    bottom: -5em;
  }
}
@media screen and (max-width: 767px) {
  .top-kv {
    position: relative;
  }
  .top-kv__img {
    overflow: hidden;
    width: 130%;
    margin-left: -14%;
  }
  .top-kv a {
    position: absolute;
    bottom: -3.2em;
    left: 0;
    right: 0;
  }
}


.top-kv-slider > * {
  height: 100vh;
}

.top-kv-slider > *:nth-of-type(1) {
  background: none;
}

.top-kv-slider > *:nth-of-type(2) {
  background: none;
}

.top-kv-slider > *:nth-of-type(3) {
  background: none;
}

.scroll {
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  letter-spacing: 0.2em;
}

.scroll span {
  width: 0.2rem;
  height: 7rem;
  background: #fff;
  margin-top: 1rem;
  -webkit-animation: scroll infinite 1s;
  animation: scroll infinite 1s;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}
@media screen and (max-width: 767px) {
  .top-kv-slider > * {
    height: 100vh;
  }
}





.delay__text--left {
	opacity: 0;
	transform: translateX(2em);
	will-change: transform, opacity;
}

.delay__text--left.is-show {
	animation: delayTextLeft 1.5s cubic-bezier(.22, 1, .36, 1) 0.8s forwards;
}

@keyframes delayTextLeft {
	0% {
		opacity: 0;
		transform: translateX(2em);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.delay__text--top {
	opacity: 0;
	transform: translateY(1em);
	will-change: transform, opacity;
}

.delay__text--top.is-show {
	animation: delayTextTop 1.5s cubic-bezier(.22, 1, .36, 1) 1s forwards;
}

@keyframes delayTextTop {
	0% {
		opacity: 0;
		transform: translateY(1em);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.delay__text--front {
	opacity: 0;
	transform: scale(.8);
	transform-origin: center;
	will-change: transform, opacity;
}

.delay__text--front.is-show {
	animation: delayTextFront 1.5s cubic-bezier(.22, 1, .36, 1) 1s forwards;
}

@keyframes delayTextFront {
	0% {
		opacity: 0;
		transform: scale(.8);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}










/*======================================
　こだわりページ
======================================*/
.pageSub .about_inner {
  padding: clamp(5rem, 8.3333333333vw, 12rem) 2rem 0;
  max-width: 102rem;
  margin: 0 auto;
}

.about:last-of-type .about_inner {
  padding-bottom: clamp(5rem, 8.3333333333vw, 12rem);
}

.pageSub .about h2 {
  font-size: clamp(2rem, 2.0833333333vw, 3rem);
  font-weight: 900;
  padding-bottom: 2rem;
  margin-bottom: clamp(3rem, 3.4722222222vw, 5rem);
  position: relative;
  line-height: 1.5;
}

.pageSub .about h2::before {
  content: "";
  width: clamp(10rem, 20.8333333333vw, 30rem);
  height: 0.3rem;
  background-color: #8c0032;
  position: absolute;
  bottom: -0.15rem;
  left: 0;
  z-index: 2;
}

.pageSub .about h2::after {
  content: "";
  width: 100%;
  height: 0.1rem;
  background-color: #ccc;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.pageSub .about_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2rem, 3.4722222222vw, 5rem);
}

@media screen and (max-width: 767px) {
  .pageSub .about_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.pageSub .about_content .photo {
  width: clamp(30rem, 27.7777777778vw, 40rem);
}

@media screen and (max-width: 767px) {
  .pageSub .about_content .photo {
    width: 100%;
  }
}
.pageSub .about_content .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pageSub .about_content .detail p {
  letter-spacing: 0.08em;
}

/*======================================
店舗情報
======================================*/
.pageSub .information_inner {
  padding: clamp(5rem, 10.4166666667vw, 15rem) clamp(2rem, 2.7777777778vw, 4rem);
  max-width: 106rem;
  margin: 0 auto;
}

.pageSub .information_table {
  margin-bottom: 5rem;
}

.pageSub .information_table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 1.5rem;
}

@media screen and (max-width: 767px) {
  .pageSub .information_table dl {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
}
.pageSub .information_table dl:not(:last-child) {
  border-bottom: solid 1px rgba(29, 29, 29, 0.2);
}

.pageSub .information_table dt, .pageSub .information_table dd, .pageSub .information_table a {
  line-height: 1.5;
  color: #1d1d1d;
}

.pageSub .information_table dt {
  width: 30%;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .pageSub .information_table dt {
    width: 100%;
  }
}
.pageSub .information_table dd {
  width: 70%;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .pageSub .information_table dd {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .pageSub .information_table a {
    text-decoration: underline;
  }
}
.pageSub .information_map {
  height: 50rem;
}

@media screen and (max-width: 767px) {
  .pageSub .information_map {
    height: 25rem;
  }
}
.pageSub .information_map iframe {
  width: 100%;
  height: 100%;
}

/*======================================
ギャラリー
======================================*/
.pageSub .galleryBox_inner {
  max-width: 100rem;
  padding: clamp(5rem, 10.4166666667vw, 15rem) 2rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .pageSub .galleryBox_inner {
    width: 100%;
  }
}
.pageSub .galleryBox_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(1rem, 1.3888888889vw, 2rem);
}

.pageSub .galleryBox_item {
  list-style-type: none;
}

.pageSub .galleryBox_item img {
  width: clamp(8rem, 12.1527777778vw, 17.5rem);
  height: clamp(8rem, 12.1527777778vw, 17.5rem);
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .pageSub .galleryBox_item img {
    width: clamp(10rem, 19.556714472vw, 15rem);
    height: clamp(10rem, 19.556714472vw, 15rem);
  }
}
/*======================================
商品一覧
======================================*/
.pageSub .menu_inner {
  padding: clamp(5rem, 10.9090909091vw, 12rem) clamp(2rem, 5.4545454545vw, 6rem);
  max-width: 122rem;
  margin: 0 auto;
}

.pageSub .menu_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(1rem, 1.8181818182vw, 2rem);
  margin-bottom: clamp(5rem, 9.0909090909vw, 10rem);
}

.pageSub .menu_category li {
  width: calc((100% - clamp(1rem, 1.8181818182vw, 2rem)) / 4);
  list-style-type: none;
}

.pageSub .menu_category a {
  display: block;
  width: 100%;
  padding: clamp(2rem, 2.7272727273vw, 3rem) 0;
  font-size: 1.3em;
  font-weight: bold;
  color: #1d1d1d;
  text-align: center;
  background-color: #fff;
}

.pageSub .menu_category a.active {
  background-color: #8c0032;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .pageSub .menu_category {

    gap: clamp(1rem, 1.8181818182vw, 2rem);
    margin-bottom: clamp(5rem, 9.0909090909vw, 10rem);
  }
  .pageSub .menu_category li {
    /* width: calc((100% - clamp(1rem, 1.8181818182vw, 2rem)) / 2);
    width: 8em; */
    flex: 1;
  }
  .pageSub .menu_category a {
    display: block;
    width: 100%;
    padding: clamp(1.5rem, 2.7272727273vw, 3rem) 0.5em;
    font-size: 0.9em;
    letter-spacing: -0.1em;
    font-weight: bold;
    color: #1d1d1d;
    text-align: center;
    background-color: #fff;
  }
}
.pageSub .menu .rstdtl-menu-lst__heading {
  font-size: clamp(2.5rem, 2.7272727273vw, 3rem);
  font-size: 1.5em;
  margin-top: 10rem;
  margin-bottom: 1rem;
  color: #962337;
  border-left: solid 0.8rem #962337;
  padding-left: 2rem;
}

.pageSub .menu .rstdtl-menu-lst__contents {
  padding: 2rem 0;
}

.pageSub .menu .rstdtl-menu-lst__contents:has(img) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}

@media screen and (max-width: 767px) {
  .pageSub .menu .rstdtl-menu-lst__contents:has(img) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
  }
}
.pageSub .menu .rstdtl-menu-lst__contents:has(img) .rstdtl-menu-lst__info-inner {
  padding: 0;
  margin-bottom: 1rem;
}

.pageSub .menu .rstdtl-menu-lst__contents:has(.rstdtl-menu-lst__option) .rstdtl-menu-lst__info-inner {
  padding: 0;
  margin-bottom: 1rem;
}

.pageSub .menu .rstdtl-menu-lst__contents:not(:last-child) {
  border-bottom: dotted 0.1rem #1d1d1d;
}

.pageSub .menu .rstdtl-menu-lst__option {
  display: inline-block;
  background-color: #962337;
  font-weight: bold;
  padding: 0.6rem 1rem;
  color: #fff;
  margin-bottom: 1rem;
}

.pageSub .menu .rstdtl-menu-lst__target {
  display: block;
  width: clamp(10rem, 18.1818181818vw, 20rem);
}

@media screen and (max-width: 767px) {
  .pageSub .menu .rstdtl-menu-lst__target {
    width: 100%;
  }
}
.pageSub .menu .rstdtl-menu-lst__ex {
  line-height: 1.5;
}

.pageSub .menu .rstdtl-menu-lst__info-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4rem;
}

.pageSub .menu .rstdtl-menu-lst a {
  pointer-events: none;
}

.pageSub .menu .preparation {
  text-align: center;
  font-size: clamp(2.5rem, 5.4545454545vw, 6rem);
  font-weight: 900;
}

/*======================================
お知らせ
======================================*/
.pageSub .articleBox_inner {
  padding: clamp(10rem, 10.980966325vw, 15rem) clamp(2rem, 2.9282576867vw, 4rem) clamp(20rem, 10.980966325vw, 25rem);
  max-width: 106rem;
  margin: 0 auto;
}

.pageSub .articleBox .CMS-NEWS-INDEX {
  max-width: 110rem;
  gap: 4rem clamp(2rem, 6.0909090909vw, 6.7rem);
}

@media screen and (max-width: 767px) {
  .pageSub .articleBox .CMS-NEWS-INDEX {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
}
.pageSub .articleBox .CMS-NEWS-ITEM {
  width: calc((100% - clamp(2rem, 6.0909090909vw, 6.7rem) * 2) / 3);
  margin: 0;
}

@media screen and (max-width: 767px) {
  .pageSub .articleBox .CMS-NEWS-ITEM {
    width: 100%;
  }
}
.pageSub .articleBox .CMS-NEWS-ITEM a {
  padding: 0;
}

.pageSub .articleBox .CMS-NEWS-THUMBNAIL {
  height: 20rem;
  height: clamp(14rem, calc(14rem + (19rem - 14rem) * ((100vw - 767px) / 363px)), 19rem);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {
  .pageSub .articleBox .CMS-NEWS-THUMBNAIL {
    height: 30rem;
  }
}
@media screen and (max-width: 500px) {
  .pageSub .articleBox .CMS-NEWS-THUMBNAIL {
    height: 20rem;
  }
}
.pageSub .articleBox .CMS-NEWS-TIME {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #1d1d1d;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #666;
}

.pageSub .articleBox .CMS-NEWS-LINK {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  color: #1d1d1d;
}

/*======================================
お知らせ詳細
======================================*/
.pageSub .newsDetail_inner {
  padding: clamp(10rem, 10.980966325vw, 15rem) clamp(2rem, 2.9282576867vw, 4rem);
  max-width: 106rem;
  margin: 0 auto;
}

.pageSub .newsDetail .CMS-NEWS-TITLE:after {
  border-bottom: solid 3px #962337;
}














/*======================================
common
======================================*/


.common__title {
  font-size: 8.53125em;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #b61515;
  text-align: center;
}
.common__title--choose {
  font-size: 8.0em;
  letter-spacing: -0.06em;
}
.common__title.bk {
  color: #000;
}
.common__title span {
  display: block;
  font-size: 0.23em;
  letter-spacing: -0.0em;
  line-height: 2.8;
  color: #000;
}

@media screen and (max-width: 767px) {
  .common__title {
    font-size: 3.0em;
    letter-spacing: -0.03em;
    line-height: 1.5;
  }
  .common__title--choose {
    font-size: 3em;
    letter-spacing: -0.07em;
  }
  .common__title span {
    font-size: 0.4em;
    letter-spacing: -0.0em;
    line-height: 2.0;
  }
}
@media screen and (max-width: 374px) {
  .common__title {
    font-size: 2.7em;
    letter-spacing: -0.03em;
    line-height: 1.5;
  }
  .common__title--choose {
    font-size: 2.6em;
    letter-spacing: -0.08em;
  }
}


.common-btn {
    display: block;
    width: 45em;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .common-btn {
      display: block;
      width: 90%;
      max-width: 30em;
      margin: 0 auto;
  }
}













/*======================================
TOPページ
======================================*/

.topService {
  padding: 9.3em 0 7.5em;
  z-index: 1;
  position: relative
}

.topService__block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.8em 0;
  padding: 4em 0 4em;
}
.topService__block > div {
  flex-basis: 31%;
}
.topService__text1 {
  text-align: center;
  font-size: 0.844em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.0em;
  color: #b61515;
  border: 0.12em solid #b61515;
  width: 65%;
  border-radius: 2em;
  padding: 0.65em 0;
  margin: 1.5em auto;
}
.topService h3 {
  text-align: center;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 0.6em;
}
.topService__text2 {
  width: 88%;
  margin: 0 auto;
  font-size: 0.844em;
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .topService {
    padding: 6em 0 4em;
    z-index: 1;
    position: relative
  }

  .topService__block {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.8em 0;
    padding: 2em 0 3em;
  }
  .topService__block > div {
    flex-basis: 48%;
  }
  .topService__text1 {
    font-size: 1em;
    width: 100%;
    max-width: 280px;
  }
  .topService h3 {
    font-size: 1.55em;
  }
  .topService__text2 {
    width: 88%;
    margin: 0 auto;
    font-size: 0.93em;
    font-weight: 500;
    line-height: 1.78;
    letter-spacing: 0.1em;
  }

}
@media screen and (max-width: 500px) {
  .topService__block {
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.8em 0;
    padding: 2em 0 3em;
  }
  .topService__block > div {
    flex-basis: 31%;
  }
  .topService__text1 {
    font-size: 1em;
    width: 70%;
  }
}
@media screen and (max-width: 374px) {
  .topService__text1 {
    width: 80%;
  }
}

/* --------------------------------------- */

.topPrice {
  background-color: #fafafa;
  padding: 5em 0 6.7em;
  z-index: 1;
  position: relative;
}

.topPrice__box {
  background-color: #fff;
  padding: 3.5em 3.5em 3.6em;
  box-shadow: -0.1em 0em 1em #ccc;    /* 水平方向の距離  垂直方向の距離  ぼかし距離  広がり距離  影の色 */
  border-radius: 0.5em;
  margin: 2.5em 0 4.7em;
}

.topPrice__text {
  width: 49%;
  margin: 0 auto 0.9em;
  padding: 0.6em 0;
  text-align: center;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  background-color: #ffd201;
}
.topPrice__price {
  text-align: center;
  border-bottom: 0.15em dashed #ccc;
  padding-bottom: 2.2em;
  margin-bottom: 1em;
}
.topPrice__price1 {
  font-size: 1.97em;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  color: #fff;
  background-color: #b61515;
  padding: 0.1em 0.9em 0.15em;
  border-radius: 1em;
  margin-right: 0.5em;
  vertical-align: 0.5em;
}
.topPrice__price2 {
    background: linear-gradient(180deg, #b7342d, #A02117);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 5.625em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}
.topPrice__price2 > span:nth-of-type(1) {
    font-size: 0.5em;
}
.topPrice__price2 > span:nth-of-type(2) {
    font-size: 0.25em;
    font-weight: 600;
    padding-left: 0.5em;
    vertical-align: 0.2em;
}

.topPrice p {
  font-size: 0.75em;
  font-weight: 500;
  line-height: 2.32;
  letter-spacing: 0.1em;
  width: 95%;
  margin: 0 auto;
}
.topPrice p span {
  font-size: 1.125em;
  display: block;
  text-align: center;
  margin-bottom: 2.8em;
}

@media screen and (max-width: 767px) {
  .topPrice {
    padding: 3em 0 4em;
  }

  .topPrice__box {
    padding: 2em 1em 2em;
    border-radius: 0.5em;
    margin: 2.5em 0 3em;
  }

  .topPrice__text {
    width: 100%;
    max-width: 18em;
    margin: 0 auto 2em;
    font-size: 1.125em;
    line-height: 1.3;
  }
  .topPrice__price {
    text-align: center;
    border-bottom: 0.15em dashed #ccc;
    padding-bottom: 2.2em;
    margin-bottom: 1em;
  }
  .topPrice__price1 {
    display: block;
    width:8em;
    margin: 0 auto 0.3em;
    font-size: 1.5em;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    color: #fff;
    background-color: #b61515;
    padding: 0.3em 0.9em 0.35em;
    border-radius: 1em;
    vertical-align: 0.5em;
  }
  .topPrice__price2 {
       display: block;
     background: linear-gradient(180deg, #b7342d, #A02117);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-size: 3.8em;
      font-weight: 700;
      line-height: 1;
      letter-spacing: -0.03em;
  }
  .topPrice__price2 > span:nth-of-type(1) {
      font-size: 0.5em;
  }
  .topPrice__price2 > span:nth-of-type(2) {
      font-size: 0.3em;
      font-weight: 600;
      padding-left: 0.5em;
      vertical-align: 0.2em;
  }

  .topPrice p {
    font-size: 0.85em;
    font-weight: 500;
    line-height: 2.32;
    letter-spacing: 0.1em;
    width: 95%;
    margin: 0 auto;
  }
  .topPrice p span {
    font-size: 1.125em;
    display: block;
    text-align: center;
    margin-bottom: 2em;
  }

}



/* --------------------------------------- */

.topChoose {
  padding: 7.3em 0 7.8em;
  z-index: 1;
  position: relative;
}

.topChoose__block {
  margin: 4.8em 0;
  padding: 0 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2em;
}
.topChoose__block:nth-of-type(even) {
  flex-direction: row-reverse;
}
.topChoose__block > div:nth-of-type(1) {
  flex:1;
}
.topChoose__block > div:nth-of-type(2) {
  width: 29em;
  background-color: #fff;
  margin-left: -9em;
  padding: 3.5em 3.5em 3.5em 2.5em;
  border-radius: 1em;
  box-shadow: -0.1em 0em 1em #ccc;    /* 水平方向の距離  垂直方向の距離  ぼかし距離  広がり距離  影の色 */
	position: relative;
}
.topChoose__block:nth-of-type(even) > div:nth-of-type(2) {
  margin-left: 0;
  margin-right: -9em;
}


		.topChoose__block > div:nth-of-type(2)::before {
			content: "";
			width: 5.1em;
			height: 4.3em;
			/* aspect-ratio: 293/95; */
			position: absolute;
			top: -1.6em;
			pointer-events: none;
		}
    .topChoose__block:nth-of-type(1) > div:nth-of-type(2)::before {
			background: url(../img/no1.png) no-repeat center top / contain;
			right: 1.5em;
    }
    .topChoose__block:nth-of-type(2) > div:nth-of-type(2)::before {
			background: url(../img/no2.png) no-repeat center top / contain;
			left: 1.8em;
    }
    .topChoose__block:nth-of-type(3) > div:nth-of-type(2)::before {
			background: url(../img/no3.png) no-repeat center top / contain;
			right: 1.5em;
    }
    .topChoose__block:nth-of-type(4) > div:nth-of-type(2)::before {
			background: url(../img/no4.png) no-repeat center top / contain;
			left: 1.8em;
    }
    .topChoose__block:nth-of-type(5) > div:nth-of-type(2)::before {
			background: url(../img/no5.png) no-repeat center top / contain;
			right: 1.5em;
    }

.topChoose__block h3 {
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.0em;
  padding-bottom: 1.4em;
		position: relative;
    margin-bottom: 1em;
}

		.topChoose__block h3::before {
			content: "";
      background-color: #b61515;
			width: 2.7em;
			height: 0.07em;
			/* aspect-ratio: 293/95; */
			position: absolute;
			bottom: 0;
			left: 0;
			pointer-events: none;
		}

.topChoose__block p {
  font-size: 0.85em;
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .topChoose__block > div:nth-of-type(2) {
    width: 22em;
    background-color: #fff;
    margin-left: -9em;
    padding: 3.5em 2em 3.5em 2em;
    border-radius: 1em;
    box-shadow: -0.1em 0em 1em #ccc;    /* 水平方向の距離  垂直方向の距離  ぼかし距離  広がり距離  影の色 */
    position: relative;
  }
}
@media screen and (max-width: 670px) {
  .topChoose {
    padding: 3em 0 4em;
    z-index: 1;
    position: relative;
  }

  .topChoose__block {
    margin: 3em 0;
    padding: 0 0em;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3em;
  }
  .topChoose__block:nth-of-type(even) {
    flex-direction: column;
  }
  .topChoose__block > div:nth-of-type(1) {
    flex:1;
  }
  .topChoose__block > div:nth-of-type(2) {
    width: 100%;
    background-color: #fff;
    margin-left: 0em;
    padding: 3em 1.5em 3em 1.5em;
    border-radius: 1em;
    box-shadow: -0.1em 0em 1em #ccc;    /* 水平方向の距離  垂直方向の距離  ぼかし距離  広がり距離  影の色 */
    position: relative;
  }
  .topChoose__block:nth-of-type(even) > div:nth-of-type(2) {
    margin-left: 0;
    margin-right: 0;
  }


      .topChoose__block > div:nth-of-type(2)::before {
        content: "";
        width: 4.5em;
        height: 3.5em;
        /* aspect-ratio: 293/95; */
      }
      .topChoose__block:nth-of-type(1) > div:nth-of-type(2)::before {
        right: 1.5em;
      }
      .topChoose__block:nth-of-type(2) > div:nth-of-type(2)::before {
        left:inherit;
        right: 1.5em;
      }
      .topChoose__block:nth-of-type(3) > div:nth-of-type(2)::before {
        right: 1.5em;
      }
      .topChoose__block:nth-of-type(4) > div:nth-of-type(2)::before {
        left:inherit;
        right: 1.5em;
      }
      .topChoose__block:nth-of-type(5) > div:nth-of-type(2)::before {
        right: 1.5em;
      }

  .topChoose__block h3 {
    font-size: 1.4em;
    line-height: 1.4;
    letter-spacing: -0.0em;
    padding-bottom: 1.4em;
      margin-bottom: 1em;
        word-break: keep-all;
        word-break: auto-phrase;
        overflow-wrap: anywhere;
  }


  .topChoose__block p {
    font-size: 0.95em;
  }

}



/* --------------------------------------- */

.topFlow {
  padding: 7.7em 0 7.7em;
  z-index: 1;
  position: relative;
  background-color: #fafafa;
}

.topFlow__block {
  display: flex;
  justify-content: space-between;
  gap: 2.1em;
  margin: 4em 0 5.2em;
}
.topFlow__block > div {
  flex: 1;
}
.topFlow__block h3 {
  text-align: center;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 1.4em 0 1.2em;
}

.topFlow__text {
  width: 99%;
  margin: 0 auto;
  font-size: 0.844em;
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .topFlow {
    padding: 3em 0 4em;
  }

  .topFlow__block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5em 0;
    margin: 3em 0 3em;
  }
  .topFlow__block > div {
    flex:inherit;
    flex-basis: 48%;
  }
  .topFlow__block h3 {
    text-align: center;
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    padding: 1.4em 0 1.2em;
  }

  .topFlow__text {
    width: 99%;
    margin: 0 auto;
    font-size: 0.95em;
    font-weight: 500;
    line-height: 1.78;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 500px) {
  .topFlow {
    padding: 3em 0 4em;
  }

  .topFlow__block {
    gap: 2.5em;
  }
  .topFlow__block > div {
    flex-basis: 100%;
  }
  .topFlow__block h3 {
    text-align: center;
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    padding: 1.4em 0 1.2em;
  }

}





/* --------------------------------------- */

.topFaq {
  padding: 8.5em 0 5em;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .topFaq {
    padding: 3em 0 3em;
  }
}

/* faq
---------------------------------------------------------------- */
.faq .faq__block {
  max-width: 900px;
  margin: 0 auto 2.5em;
}
.faq .faq__block:nth-of-type(1) {
  margin-top: 5em;
}
.faq .faq__block .faq__q {
    display: flex;
    align-items: center;
    background-color: #fff;
    /* color: #fff; */
    font-size: 1.125em;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.05em;
    height: 4.3em;
    border-bottom: 0.15em dashed #ccc;
    padding: 0 5em;
    cursor: pointer;
    position: relative;
}
/* .faq .faq__block:nth-of-type(2) .faq__q {
    border-top: 1px solid #999;
} */

.faq .faq__block .faq__q::before {
    content: "";
    background: url(../img/faq_q.png) no-repeat center top / contain;
    width: 2.4em;
    height: 2.4em;
    position: absolute;
    top: 1.1em;
    left: 1em;
}

.faq .faq__block .faq__q::after {
    content: "";
    background: url(../img/faq_icon1.png) no-repeat center top / contain;
    transform: rotate(0);
    width: 0.8em;
    height: 0.8em;
    position: absolute;
    top: 1.9em;
    right: 1em;
    transition: all 0.3s;
}

.faq .faq__block .faq__q.faq__block--preopen::after {
    content: "";
    background: url(../img/faq_icon1.png) no-repeat center top / contain;
    transform: rotate(180deg);
    width: 0.8em;
    height: 0.8em;
    position: absolute;
    top: 1.5em;
    right: 1em;
}

.faq .faq__block .faq__a {
  font-size: 1.125em;
  font-weight: 500;
  letter-spacing: 0.05em;
    line-height: 1.7;
    position: relative;
    overflow: hidden;
}
.faq .faq__block .faq__aInner {
    font-size: 0.75em;
    padding: 1.65em 1.3em 1.3em 6.7em;
    position: relative;
}
.faq .faq__block .faq__a::before {
    content: "";
    background: url(../img/faq_a.png) no-repeat center top / contain;
    width: 2.4em;
    height: 2.4em;
    position: absolute;
    top: 0.8em;
    left: 1em;
}

.faq .faq__block .faq__a.faq__block--preopen {
    display: block;
}

.faq .faq__block .faq__a:not(.faq__block--preopen) {
    display: none;
}

@media screen and (max-width: 767px) {
    .faq {
    }

    .faq .faq__block {
        margin-bottom: 0.7em;
    }
    .faq .faq__block:nth-of-type(1) {
      margin-top: 2em;
    }

    .faq .faq__block .faq__q {
        font-size: 1.1em;
        height: 5em;
        padding: 0 2.5em 0 3.5em;
        line-height: 1.3;
    }

    .faq .faq__block .faq__q::before {
        width: 1.9em;
        height: 1.9em;
        top: 1.5em;
        left: 1em;
    }

    .faq .faq__block .faq__q::after {
        width: 1em;
        height: 1em;
        top: 2em;
        right: 1em;
    }

    .faq .faq__block .faq__q.faq__block--preopen::after {
        width: 1em;
        height: 1em;
        position: absolute;
        top: 2.4em;
        right: 1em;
    }

    .faq .faq__block .faq__a {
        line-height: 1.7;
    }
    .faq .faq__block .faq__aInner {
        font-size: 0.85em;
        padding: 1.65em 1.3em 1.3em 4.1em;
        position: relative;
    }

    .faq .faq__block .faq__a::before {
        width: 1.9em;
        height: 1.9em;
        top: 1.2em;
        left: 1em;
    }
}













.topInsta {
  padding: 6.5em 0 7.5em;
  position: relative;
  background-color: #fffede;
  background: #fffede;
}
.topInsta__inner {
  position: relative;
}
		.topInsta__inner::before {
			content: "";
			background: none;
			width: 9.125em;
			height: 4.05em;
			/* aspect-ratio: 293/95; */
			position: absolute;
			top: -9.3em;
			right: -3em;
			pointer-events: none;
      z-index: 3;
		}

.topInsta__title {
  margin-bottom: 6em;
}
.topInsta__title h2 {
  letter-spacing: 0.2em;
}

.topInsta__block {
  display: flex;
  justify-content: space-between;
  gap: 1.2em;
  margin-bottom: 5em;
}

.topInsta .common-btn {
  width: 30em;
}

@media screen and (max-width: 1400px) {
  .topInsta {
    background: #fffede;
  }
		.topInsta__inner::before {
			right: 0em;
		}
}
@media screen and (max-width: 767px) {
  .topInsta {
    background: #fffede;
    padding: 4em 0 5em;
  }
		.topInsta__inner::before {
			width: 5em;
			height: 2.5em;
			top: -5.5em;
			right: 0em;
		}
  .topInsta__title {
    margin-bottom: 4em;
  }
  .topInsta__block {
    flex-wrap: wrap;
    gap: 0.8em 0;
    margin-bottom: 4em;
  }
  .topInsta__block > * {
    flex-basis: 31%;
  }
  .topInsta .common-btn {
    width: 100%;
  }
}










.topCorp {
  background: #fff;
  padding: 7em 0 13em;
  position: relative;
  z-index: 1;
}

.topCorp__title {
  margin-bottom: 6em;
  padding-bottom: 3.5em;
  border-bottom: 1px solid #aaa;
}
.topCorp__title h2 {
  letter-spacing: 0.2em;
}

.topInsta__block1 {
  display: flex;
  justify-content: space-between;
  gap: 4em;
  margin-bottom: 2em;
  padding-left: 1.5em;
}
.topInsta__block1 > div:nth-of-type(1) {
  width: 27.4em;
}
.topInsta__block1 > div:nth-of-type(2) {
  flex:1;
}

.topCorp__list1 dl {
  display: flex;
  gap: 2em;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.05em;
}
.topCorp__list1 dl * {
  color: #18284d;
}
.topCorp__list1 dt {
  flex-basis: 10%;
}
.topCorp__list1 dd {
  flex: 1;
}
.gmap iframe {
  width: 100%;
  height: 17em;
}

.topCorp__bar {
  border-bottom: 1px solid #aaa;
  margin: 2.2em 0;
}

.topInsta__block2 {
  display: flex;
}
.topCorp__list2 {
  flex-basis: 37%;
}
.topCorp__list3 {
  flex: 1;
		position: relative;
}
		.topCorp__list3::before {
			content: "";
      background-color: #aaa;
			width: 1px;
			height: 100%;
			/* aspect-ratio: 293/95; */
			position: absolute;
			top: 0;
			left: -4em;
			pointer-events: none;
		}

.topCorp__list2 dl {
  display: flex;
  gap: 2em;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.05em;
}
.topCorp__list2 dt {
  flex-basis: 18%;
}
.topCorp__list2 dd {
  flex: 1;
}

.topCorp__list3 dl {
  display: flex;
  gap: 2em;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0em;
}
.topCorp__list3 dt {
  flex-basis: 23%;
}
.topCorp__list3 dd {
  flex: 1;
}

.topInsta__block3 {
  font-size: 1.125em;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
.topInsta__block3:last-of-type {
  margin-bottom: 5em;
}

.topInsta__block3 dl {
  display: flex;
  gap: 2em;
}
.topInsta__block3 dt {
  flex-basis: 8.5%;
}
.topInsta__block3 dd {
  flex: 1;
}

@media screen and (max-width: 767px) {
  .topCorp {
    padding: 4em 0 6em;
  }
  .topCorp__title {
    margin-bottom: 3em;
    padding-bottom: 2.5em;
  }
  .topInsta__block1 {
    flex-direction: column;
    gap: 3em;
    margin-bottom: 2em;
    padding-left: 0;
  }
  .topInsta__block1 > div:nth-of-type(1) {
    width: 100%;
    max-width: 26em;
    margin: 0 auto;
  }
  .topInsta__block1 > div:nth-of-type(2) {
    flex:1;
  }

  .topCorp__list1 dl:not(:last-of-type) {
    margin-bottom: 1.5em;
  }
  .topCorp__list1 dl {
    flex-direction: column;
    gap: 0em;
    font-size: 1.0em;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  .topCorp__list1 dt {
    font-size: 1.1em;
    font-weight: 700;
  }

  .topInsta__block2 {
    flex-direction: column;
  }
      .topCorp__list3::before {
        content: none;
      }
  
  .topCorp__list2 dl {
    flex-direction: column;
    gap: 0em;
    font-size: 1em;
    line-height: 2;
    margin-bottom: 1.5em;
  }
  .topCorp__list2 dt {
    font-size: 1.1em;
    font-weight: 700;
  }

  .topCorp__list3 dl:not(:last-of-type) {
    margin-bottom: 1.5em;
  }
  .topCorp__list3 dl {
    flex-direction: column;
    gap: 0em;
    font-size: 1em;
    line-height: 2;
  }
  .topCorp__list3 dt {
    font-size: 1.1em;
    font-weight: 700;
  }

  .topCorp__list4 dl:not(:last-of-type) {
    margin-bottom: 1.5em;
  }
  .topCorp__list4 dl {
    flex-direction: column;
    gap: 0em;
    font-size: 1em;
    line-height: 2;
  }
  .topCorp__list4 dt {
    font-size: 1.1em;
    font-weight: 700;
  }
  .topCorp__list4 dd {
    font-size: 0.93em;
  }

  .topInsta__block3:last-of-type {
    margin-bottom: 3.5em;
  }

}












.topForm {
  background: #e5f5fd;
  padding: 9em 0 11em;
}

.topForm__title {
  margin-bottom: 6em;
}
.topForm__title h2 {
  letter-spacing: 0.2em;
}

.topForm__link {
  display: flex;
  justify-content: space-between;
  gap: 2em;
  margin-bottom: 4em;
}
.topForm__link > div a {
  width: 18.75em;
}
.topForm__link .active a .common-btn__surface {
  background-color: #16284d;
  color: #fff;
}
.topForm__link .active .common-btn::before{
  content: none;
}

.topForm__form {
  background-color: #fff;
  border-radius: 0.8em;
  padding: 2em 1em 2em;
}
.topForm__form:not(.active) {
  display: none;
}


.topForm__form {
    display: none;
    opacity: 0;
}

.topForm__form.active {
    display: block;
    animation: formFadeIn 1.6s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes formFadeIn {
    0% {
        opacity: 0;
        transform: translateY(1.5em);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 767px) {
  .topForm {
    padding: 4em 0 6em;
    background: #e5f5fd;
  }
  .topForm__title {
    margin-bottom: 3.5em;
  }
  .topForm__link {
    flex-direction: column;
  }
}




/*-------------------------
  contact
---------------------------*/
  
@media screen and (min-width: 768px) {
	form {
		padding: 20px 0 0 0;
		max-width: 1200px;
		margin: 0 auto;
		width: calc(100% - 40px);
	}
  
	form div {
		margin-bottom: 40px !important;
	}
  
	form div label {
		display: block;
		font-weight: bold;
		margin-bottom: 10px;
		font-size: 18px;
	}
  
	form select {
		padding: 20px;
		background: #fff;
		border: #bbb solid 1px;
		border-radius: 3px;
	}
  
	form input,
	form textarea {
		width: calc(100% - 40px);
		padding: 15px 20px;
		background: #fff;
		border: #bbbbbb solid 1px;
		border-radius: 4px;
		font-size: 1.5em;
	}
	form textarea {
	  resize: vertical;
	  height: 25rem;
	}
	form input[type="submit"] {
		border: 0px;
		width: 40%;
		background: #0D0505;
		border: 2px solid #fff;
		border: solid 4px #0D0505;
		color: #fff;
		font-size: 26px;
		font-weight: 600;
		padding: 15px 0;
		margin: 0 auto;
		display: block;
	}
  }
  
  form input[type="submit"]:hover {
	transition: all 0.3s;
	cursor: pointer;
	/* opacity: 0.7; */
	color: #b0e2f1;
  }
  .CMS-FORM-RADIO input[type="radio"] {
    width: 2rem;
    height: 2rem;
    display: block;
    margin-top: 1.3rem;
    border-radius: 50%;
}
.CMS-FORM-RADIO {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 70%;
}
.CMS-FORM-RADIO label{
    display: block;
    width: calc(100% - 3.5rem);
}
.CMS-FORM-RADIO > label {
    font-weight: normal;
    padding-top: 0.8rem;
}
.CMS-FORM-RADIO > label:not(:last-of-type) {
    margin-bottom: 1rem;
}

  @media screen and (max-width: 767px) {
	form {
		padding: 0 0 0px;
	}
  
	form div {
		margin-bottom: 20px;
	}
  
	form div label {
		display: block;
		font-weight: bold;
		margin-bottom: 10px;
		font-size: 14px;
	}
  
	form select {
		padding: 20px;
		background: #fff;
		border: #bbb solid 1px;
		border-radius: 3px;
	}
  
	form input,
	form textarea {
		max-width: 1000px;
		width: calc(100% - 20px);
    width: 100%;
		padding: 15px 10px;
		background: #fff;
		border: #bbbbbb solid 1px;
		border-radius: 4px;
		font-size: 1.2em;
	}
	form textarea {
		height: 20rem;
	  }  
  
	form input[type="submit"] {
		border: 0px;
		width: 90%;
		background: #0D0505;
		border: 2px solid #fff;
		border: solid 4px #0D0505;

		color: #fff;
		font-size: 22px;
		font-weight: 600;
		padding: 16px 0;
		margin: 0 5%;
	}

	.CMS-FORM-RADIO input[type="radio"] {
        width: 2rem;
        height: 2rem;
        margin-top: 0;
        margin-bottom: 1.5rem;
    }
    .CMS-FORM-RADIO {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }
    .CMS-FORM-RADIO label{
        width: calc(100% - 3.5rem);
        padding-top: 0;
        margin-top: -0.1rem;
    }
    .CMS-FORM-RADIO > label {
        font-weight: normal;
    }
    .CMS-FORM-RADIO > label:not(:last-of-type) {
        margin-bottom: 0;
    }

  }
  
@media screen and (max-width: 450px) {

	.inner-flex h2 {
		font-size: 25px;
	}
	.inner-flex-reverse h2{
		font-size: 25px;
	}
	.inner-flex-reverse h2{
		font-size: 25px;
	}

}


.thanks_width {
	text-align: center;
	margin: auto;
  }
  .thanks_width .btn {
	margin: 0 auto;
  } 


/*
 * required mark 
 */
 .form_required1 {
	width: 250px;
	display: flex;
	justify-content: space-between;
  }
  .form_required2 {
    display: inline-block;
    background-color: #ffdae7;
    color: #ff5883;
    font-size: 0.9em;
    line-height: 1;
    font-weight: bold;
    width: 4em;
    padding: 0.5em 0;
    text-align: center;
    border-radius: 1.5em;
    
    margin-top: 3px;
    margin-left: 30px;
  }
  .form_required3 {
    display: inline-block;
    background-color: #ebebeb;
    color: #a3a3a3;
    font-size: 0.9em;
    line-height: 1;
    font-weight: bold;
    width: 4em;
    padding: 0.5em 0;
    text-align: center;
    border-radius: 1.5em;
    
    margin-top: 3px;
    margin-left: 30px;
  }
  @media screen and (max-width: 768px) {
    .form_required1 {
      width: 100%;
    }  
    .form_required2 {
      font-size: 0.8em;
    }
    .form_required3 {
      font-size: 0.8em;
    }
  }
  

  /*
 * privacy policy
 */

.privacy {
	width: calc(100% - 6em) !important;
	margin: 0 auto 5rem;
	border: 2px solid #ddd;
	height: 20.5em;
	overflow: auto;
	overflow-y: scroll !important;
	background-color: #fff;
  box-shadow: inset 0 0px 0.4em rgba(0, 0, 0, 0.2);
  border-radius: 0.8em;
  }
  .privacy p {
    color: #000;
    padding: 20px;
    font-size: 0.9em;
  }
  .privacy span {
	font-weight: bold;
  }
  
  p.privacy_notes {
	padding: 4rem 0 2rem;
	padding-left: 2em;
	text-indent: -1em;
  
  }
  
  @media screen and (max-width: 767px) {
	.privacy {
		width: calc(100% - 0px) !important;
		/* height: 110vw; */
		height: 380px;
	}
  }
  
/*
 * thanx
 */

.thanx {
    text-align: center;
}
.back {
    text-align: center;
    display: block;
}
@media screen and (max-width: 768px) {
    .thanx {
        text-align: left;
    }
}



button.common-btn {
    --navy: #0c1528;
    --press-y: 0.5em;

    position: relative;
    display: block;
    width: 39.125em;
    height: 5.625em;
    margin: 0 auto;
    padding: 0;

    border: none;
    background: transparent;
    border-radius: 9999px;

    font-family: inherit;
    font-size: 1em;
    line-height: 1;
    color: inherit;

    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

button.common-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--navy);
    border-radius: 9999px;
    transform: translateY(var(--press-y));
    transition: opacity .18s;
    z-index: 0;
}

button.common-btn .common-btn__surface {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #1f3465;
    border: 0.15em solid var(--navy);
    border-radius: 9999px;

    color: #fff;
    transition: transform .18s;
}

button.common-btn:hover .common-btn__surface {
    transform: translateY(var(--press-y));
}

button.common-btn:hover::before {
    opacity: 0;
}

button.common-btn .common-btn__text {
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

button.common-btn .common-btn__arrow {
    width: 0.47em;
    margin-left: 0.7em;
    margin-top: 0.2em;
    display: block;
    flex-shrink: 0;
  filter: grayscale(100%) brightness(0) invert(100%);  /* 白 */

}

@media screen and (max-width: 767px) {
    button.common-btn {
        width: 100%;
        max-width: 33em;
    }

    button.common-btn .common-btn__text {
        font-size: 1.15em;
        letter-spacing: 0;
    }

    button.common-btn .common-btn__arrow {
        margin-left: 0.6em;
    }
}




















/*  ----------------------------------------------------------

fixed btn

----------------------------------------------------------  */
.fixed-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  width: 5em;
  list-style: none;
  z-index: 999;
}

.fixed-btn li:nth-child(1) {
  margin-bottom: 1.0em;
}
.fixed-btn li:nth-child(2) {
  margin-bottom: 1em;
}

.fixed-btn img {
  width: 100%;
  height: auto;
}

.fixed-btn li::marker {
  content: none;
}

@media (min-aspect-ratio: 1440/800) { /* 横長 */
  .fixed-btn {
    width: 4em;
  }
  .fixed-btn li:nth-child(1) {
    margin-bottom: 0.7em;
  }
  .fixed-btn li:nth-child(2) {
    margin-bottom: 0.7em;
  }
}
@media (min-aspect-ratio: 1440/670) { /* さらに横長 */
  .fixed-btn {
    width: 3em;
  }
  .fixed-btn li:nth-child(1) {
    margin-bottom: 0.5em;
  }
  .fixed-btn li:nth-child(2) {
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 1900px) {
  .fixed-btn {
    width: 3.8em;
  }
  .fixed-btn li:nth-child(1) {
    margin-bottom: 0.5em;
  }
  .fixed-btn li:nth-child(2) {
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 1400px) {
  .fixed-btn {
    width: 3.2em;
  }
  .fixed-btn li:nth-child(1) {
    margin-bottom: 0.4em;
  }
  .fixed-btn li:nth-child(2) {
    margin-bottom: 0.4em;
  }
}
@media screen and (max-width: 767px) {
  .fixed-btn {
    top: auto;
    right: auto;
    bottom: 0;
    transform: none;
    -webkit-transform: none;
    width: 100%;
    display: flex;
  }
  .fixed-btn li {
    /* width: 50%; */
    flex: 1;
    margin-top: 0;
    margin-bottom: 0 !important;
  }
  .fixed-btn li.tel {
    width: 39%;
    flex:inherit;
  }
  .fixed-btn a.sp {
    width: 100%;
    padding: 0;
    height: 5.5rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    line-height: 1.2;
  }
  .fixed-btn a.pc {
    display: none;
  }
  /* icon */
  .fixed-btn li img {
    width: 2em;
    height: 2em;
    margin-right: 0.3rem;
  }
  .fixed-btn li.form img {
    width: 1.1em;
    height: 1.1em;
    margin-right: 0.8rem;
  }
  .fixed-btn li.tel img {
    width: 1.4em;
    height: 1.4em;
    margin-right: 0.8rem;
  }
  /* txt */
  .fixed-btn a > span {
    display: flex;
    flex-direction: column;
  }
  .fixed-btn a > span > span:nth-child(1) {
    margin-left: 0;
    margin-bottom: 0.3rem;
    font-size: 0.8em;
  }
  .fixed-btn a > span > span:nth-child(2) {
    /* font-weight: bold; */
    font-size: 1.25rem;
    text-decoration: underline;
  }
  .fixed-btn li.tel {
    margin-bottom: 0;
  }
  .fixed-btn .tel a > span > span:nth-child(1) {
    font-size: 0.75em;
  }
  .fixed-btn .tel a > span > span:nth-child(2) {
    font-size: 0.9em;
    letter-spacing: 0em;
  }
  .fixed-btn .line a {
    background: #4cc764;
    color: #fff;
            /* Safaei,Firefox等に対応するために、テキスト内の改行しても良い位置に<wbr>を設定すること */ 
        word-break: keep-all;
        word-break: auto-phrase;
        overflow-wrap: anywhere;
        padding:0 0.3em

  }
  .fixed-btn .form a {
    background: #1f3465;
    color: #fff;
        word-break: keep-all;
        word-break: auto-phrase;
        overflow-wrap: anywhere;
        padding:0 0.5em

  }
  .fixed-btn .tel a {
    background: #fff;
    color: #18284d;
  }
}











/*  ----------------------------------------------------------

page-top

----------------------------------------------------------  */
#page-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5.5rem;
  height: 5.5rem;
  padding-left: 0.1rem;
  border-radius: 50%;
  background: #8c0032;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  /* border: #fff solid 1px; */
}

@media screen and (max-width: 767px) {
  #page-top {
    bottom: 6rem;
  }
  #page-top a {
    width: 4.5rem;
    height: 4.5rem;
  }
}
/*  ----------------------------------------------------------

Retty

----------------------------------------------------------  */
.CMS-FORM-GROUP {
  margin-bottom: 2em !important;
  display: flex;
  padding-bottom: 2em;
  padding-left: 3em;
  padding-right: 3em;
  border-bottom: solid 1px #eee;
}
.CMS-FORM-GROUP.notline {
  border-bottom: none;
}
.CMS-FORM-GROUP label {
  flex-basis: 30%;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}
.CMS-FORM-GROUP label.top {
  align-items: start;
}
.CMS-FORM-GROUP p {
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  margin-left: 1em;
}
.CMS-FORM-GROUP input:not(.input_checkbox) {
  flex:1;
  box-shadow: inset 0 0px 0.4em rgba(0, 0, 0, 0.2);
  border-radius: 0.3em;
}
.CMS-FORM-GROUP input.input_half {
  flex:inherit;
  flex-basis: 35%;
}
.CMS-FORM-GROUP textarea {
  flex:1;
  box-shadow: inset 0 0px 0.4em rgba(0, 0, 0, 0.2);
  border-radius: 0.3em;
}
.CMS-FORM-GROUP p {
  flex-basis: 10%;
}
*::placeholder {
    color: #c9c9c9;
    font-size: 0.85em; 
}

@media screen and (max-width: 767px) {
  .CMS-FORM-GROUP {
    margin-bottom: 1em !important;
    flex-direction: column;
    padding-bottom: 1em;
    padding-left: 0em;
    padding-right: 0em;
  }
  .CMS-FORM-GROUP label {
    flex-basis: 30%;
    font-size: 1em;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
  }
  .CMS-FORM-GROUP label.top {
    align-items: center;
  }
  .CMS-FORM-GROUP p {
    font-size: 1em;
    justify-content: flex-end;
  }
}




.privacy-check {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.input_checkbox {
    transform: scale(1.8);
    margin-right: .3em;
    cursor: pointer;
    width: 2em;
    margin-top: 0.3em;
}
@media screen and (max-width: 767px) {
  .input_checkbox {
      transform: scale(1.5);
      margin-right: 1em;
  }
}

.CMS-FORM-INPUT-LABEL,
.CMS-FORM-EMAIL-LABEL,
.CMS-FORM-TEXTAREA-LABEL {
  display: block;
  font-weight: 600;
}

.CMS-FORM-INPUT,
.CMS-FORM-TEXTAREA,
.CMS-FORM-EMAIL {
  width: 100%;
  padding: 0.7em;
  border-radius: 4px;
  border: solid 1px #d4d4d4;
}

.CMS-FORM-RADIO-LABEL {
  font-weight: 600;
}

.content__title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 0 1rem;
  border-bottom: 2px solid #666;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 3.5rem;
  position: relative;
  gap: inherit;
  height: inherit;
}

.restaurant-detail__menu:nth-child(n+2) {
  margin-top: 1.5rem;
}

.menu-price-list:last-of-type {
  border-bottom: 1px solid #666;
}

.menu-price-list__row {
  display: flex;
  border-top: 1px solid #666;
  font-size: 1.6rem;
  line-height: 2.2rem;
}

.menu-price-list__name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  padding: 16px 24px;
  font-size: 1.2em;
  font-weight: 700;
}
.menu-price-list__name span {
    font-size: 0.8em;
    margin-top: 1rem;
    font-weight: 400;
    line-height: 1.6;
}
.menu-price-list__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  align-items: flex-end;
  padding: 16px 0 16px 24px;
}

@media screen and (max-width: 767px) {
  .content__title {
    font-size: 1.45rem;
    letter-spacing: 0;
  }
  .content__title p {
    font-size: 1.4rem;
  }
  .menu-price-list__row {
    font-size: 1.5rem;
    display: block;
  }
  .menu-price-list__name {
    padding: 16px 24px 0;
  }
  .menu-price-list__name span {
      margin-top: 3rem;
  }  
  .menu-price-list__price {
    padding: 0px 0 16px 24px;
  }
}
.course-list-heading {
  display: flex;
  align-items: center;
  padding: 0 0 12px;
}

.course-list-heading__title {
  flex-shrink: 0;
  font-size: 2.4rem;
  font-weight: 700;
}

.course-list-heading__supplement {
  align-self: flex-end;
  margin-left: auto;
  padding-left: 10px;
  color: #6c6c75;
  font-size: 14px;
  font-weight: 400;
}
.course-list {
  margin-bottom: 3em;
}
.course-list__item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #666;
}

.course-list__item:first-child {
  border-top: 1px solid #666;
}

.course-list-item {
  display: flex;
  width: 100%;
  min-height: 80px;
  align-items: center;
  padding: 16px 0;
}

.course-list-item__thumbnail {
  flex-shrink: 0;
}

.course-list-item__thumbnail img {
  font-family: "object-fit: cover;";
  object-fit: cover;
  width: 80px;
  height: 80px;
  background-color: #f4f4f5;
}

.course-list-item__detail {
  flex: 1 1 auto;
}

.course-list-item__detail:nth-child(n+2) {
  margin-left: 12px;
}

.course-list-item__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.course-list-item__title:nth-child(n+2) {
  margin-top: 6px;
}

.course-list-item__description {
  font-size: 13px;
  margin-bottom: 10px;
}

.course-list-item__footer {
  display: flex;
}

.course-list-item__price {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d70025;
  font-size: 20px;
  font-weight: 700;
}

.course-list-item__label {
  display: inline-block;
  padding: 5px 11px;
  border: 1px solid #ffa014;
  background-color: #fff;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  color: #ffa014;
  vertical-align: top;
  margin-right: 5px;
}

.course-list-item__label--discount {
  background: #d70025;
  border-color: #d70025;
  color: #fff;
}

.course-list-item__before-discount {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  text-decoration: line-through;
}

.course-list-item__discount-arrow {
  margin: 0 4px;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}

.course-list-item__tax {
  display: inline;
  align-self: auto;
  color: #d70025;
  font-size: 20px;
}

.course-list-item__term {
  margin-left: 12px;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.course-list-item__actions-list {
  display: flex;
  flex: 0 0 150px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.course-list-item__action {
  width: 9rem;
  display: flex;
  justify-content: center;
  /* display: none; */
  margin-top: -0.3rem;
}

.course-list-item__action a {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4.5rem;
  background: var(--blue);
  background: #000;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
}

.course-list-item__action:nth-child(n+2) {
  /* margin-top:12px */
}

.course-list-item__button {
  width: 96px;
  padding: 6px 0;
}

.course-summary {
  display: flex;
}

.course-summary:nth-child(n+2) {
  margin-top: 10px;
}

.course-summary__label {
  width: 100%;
  flex: 0 0 100%;
}

.course-summary__photo {
  font-family: "object-fit: cover;";
  object-fit: cover;
  width: 184px;
  height: 184px;
  flex: 0 0 184px;
  align-self: flex-start;
}

.course-summary__body:nth-child(n+2) {
  margin-left: 16px;
  font-size: 1.07692rem;
}

.course-summary-label {
  display: block;
}

.course-info-list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #eaeaeb;
  font-size: 1.07692rem;
}

.course-info-list__description, .course-info-list__title {
  border-top: 1px solid #eaeaeb;
}

.course-info-list__title {
  box-sizing: border-box;
  padding: 16px 24px;
  max-width: 216px;
  flex: 0 0 216px;
  background-color: #fafbfc;
}

.course-info-list__description {
  box-sizing: border-box;
  padding: 16px 24px;
  max-width: calc(100% - 216px);
  flex-basis: calc(100% - 216px);
  flex-grow: 1;
  flex-shrink: 0;
}

.course-info-list__description--pre {
  white-space: pre-line;
  word-break: break-all;
}

.course-info-list__description--strong {
  font-weight: 700;
  color: #d70025;
  font-size: 1.23077rem;
}

.course-info-list__before-discount {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 1.07692rem;
  font-weight: 400;
  text-decoration: line-through;
}

.course-info-list__discount-arrow {
  margin: 0 4px;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}

.course-info-list__tax {
  display: inline;
  align-self: auto;
  color: #d70025;
  font-size: 0.92308rem;
}

.restaurant-coupon-heading {
  display: flex;
  align-items: center;
  padding: 0 0 12px;
  border-bottom: 1px solid #666;
}

.restaurant-coupon-heading__title {
  flex-shrink: 0;
  max-width: calc(100% - 300px);
  color: #fff;
  font-size: 1.38462rem;
  font-weight: 700;
}

.restaurant-coupon-heading__supplement {
  align-self: flex-end;
  margin-left: auto;
  padding-left: 10px;
  color: #6c6c75;
  font-size: 0.92308rem;
  font-weight: 400;
}

.restaurant-coupon-list {
  border: 1px solid #666;
}

.restaurant-coupon-list:nth-child(n+2) {
  margin-top: 20px;
}

.restaurant-coupon-list__item:nth-child(n+2) {
  border-top: 1px dashed #666;
}

.restaurant-coupon {
  display: flex;
}

.restaurant-coupon:before {
  display: block;
  min-height: 80px;
  flex: 0 0 48px;
  background: url("https://assets.retty.me/v-202103090658-master-5faacc28934ec9ceed6332f40621248775413203/images/pancake/ic_coupon.svg") #ffa014;
  background-position: 50%;
  background-repeat: no-repeat;
  content: "";
}

.restaurant-coupon--marked {
  position: relative;
}

.restaurant-coupon--marked:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  border-color: #ffc814 transparent transparent #ffc814;
  border-style: solid;
  border-width: 8px;
  content: "";
}

.restaurant-coupon__body {
  flex: 1 1 auto;
  padding: 18px 20px;
}

.restaurant-coupon__title {
  color: #fff;
  font-size: 1.23077rem;
  font-weight: 700;
}

.restaurant-coupon__description {
  color: #6c6c75;
  font-size: 0.84615rem;
}

.restaurant-coupon__description:nth-child(n+2) {
  margin-top: 4px;
}

.restaurant-coupon__supplement {
  display: flex;
  box-sizing: border-box;
  flex: 0 0 200px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
}

.restaurant-coupon__supplement:nth-child(n+2) {
  border-left: 1px dashed #666;
}

.restaurant-coupon__expiration {
  color: #6c6c75;
  font-size: 0.92308rem;
}

.restaurant-coupon__link {
  cursor: pointer;
  color: #2d88d9;
  font-size: 0.92308rem;
}

.restaurant-coupon__link:hover {
  opacity: 0.8;
}

.restaurant-coupon__link--external {
  display: flex;
  align-items: center;
}

.restaurant-coupon__link--external:after {
  content: "\ea0c";
  font-size: 1.23077rem;
}

@keyframes show-sticky-actions {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.restaurant-sidebar {
  width: 300px;
  flex-direction: column;
}

.restaurant-sidebar__prepare-stuck {
  z-index: 90;
  display: none;
}

.restaurant-sidebar__prepare-stuck[data-stuck=true] {
  display: flex;
  animation: show-sticky-actions 0.1s ease-out;
}

.restaurant-sidebar__campaign-banner {
  z-index: 90;
  padding-top: 12px;
}

.menu-description__text {
  margin-bottom: 4rem;
}

.menu-price-list {
  font-size: 1.07692rem;
}

.menu-price-list:last-of-type {
  border-bottom: 1px solid #666;
}

.menu-price-list__row {
  display: flex;
  border-top: 1px solid #666;
}

.menu-price-list__name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  padding: 16px 24px;
  font-weight: 700;
}

.menu-price-list__supplement {
  font-weight: 400;
}

.menu-price-list__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  align-items: flex-end;
  padding: 16px 0 16px 24px;
  font-weight: bold;
  font-size: 1.1em;
}

.photo-menu {
  display: flex;
  flex-wrap: wrap;
  margin-left: -36px;
  margin-bottom: 4rem;
}

.photo-menu__item {
  width: calc((100% - 108px) / 3);
  margin-left: 35px;
}

.photo-menu__item:nth-child(n+4) {
  margin-top: 36px;
}

.photo-menu__figure {
  width: 100%;
  height: auto;
}

.photo-menu__image {
  position: relative;
  height: auto;
}

.photo-menu__image:before {
  display: block;
  padding-top: 100%;
  content: "";
}

.photo-menu__image img {
  font-family: "object-fit: cover;";
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f4f4f5;
}

.photo-menu__caption {
  display: flex;
  flex-direction: column;
}

.photo-menu__caption:nth-child(n+2) {
  margin-top: 16px;
}

.photo-menu__reporter:nth-child(n+2) {
  margin-top: 8px;
}

.photo-menu__title {
  font-size: 1.6rem;
  font-weight: 700;
}

.photo-menu__price {
  align-self: flex-end;
  font-size: 1.2rem;
}

.photo-menu__price:nth-child(n+2) {
  margin-top: 8px;
}

.menu-price-list__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.menu-price-list__wrapper-in-wrapper {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .photo-menu {
    display: block;
    margin-left: 0;
  }
  .photo-menu__item {
    width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
  }
  .photo-menu__figure {
    width: auto;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .course-list-heading {
    display: flex;
    align-items: center;
    padding: 0 0 12px;
  }
  .course-list-heading__title {
    flex-shrink: 0;
    max-width: 100%;
    font-size: 2.2rem;
    font-weight: 700;
  }
  .course-list-heading__supplement {
    align-self: flex-end;
    margin-left: auto;
    padding-left: 10px;
    color: #6c6c75;
    font-size: 14px;
    font-weight: 400;
  }
  .course-list__item {
    display: block;
    flex-direction: column;
    border-bottom: 1px solid #666;
  }
  .course-list__item:first-child {
    border-top: 1px solid #666;
  }
  .course-list-item {
    display: block;
    width: 100%;
    min-height: 80px;
    align-items: center;
    padding: 16px 0;
  }
  .course-list-item__thumbnail {
    flex-shrink: 0;
  }
  .course-list-item__thumbnail img {
    font-family: "object-fit: cover;";
    object-fit: cover;
    width: 60%;
    height: 60%;
    background-color: #f4f4f5;
    display: block;
    margin: 0 auto 20px auto;
  }
  .course-list-item__detail {
    flex: 1 1 auto;
  }
  .course-list-item__detail:nth-child(n+2) {
    margin-left: 12px;
  }
  .course-list-item__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .course-list-item__title:nth-child(n+2) {
    margin-top: 6px;
  }
  .course-list-item__description {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .course-list-item__footer {
    display: flex;
  }
  .course-list-item__price {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d70025;
    font-size: 20px;
    font-weight: 700;
  }
  .course-list-item__label {
    display: inline-block;
    padding: 5px 11px;
    border: 1px solid #ffa014;
    background-color: #fff;
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    color: #ffa014;
    vertical-align: top;
    margin-right: 5px;
  }
  .course-list-item__label--discount {
    background: #d70025;
    border-color: #d70025;
    color: #fff;
  }
  .course-list-item__before-discount {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    text-decoration: line-through;
  }
  .course-list-item__discount-arrow {
    margin: 0 4px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
  }
  .course-list-item__tax {
    display: inline;
    align-self: auto;
    color: #d70025;
    font-size: 20px;
  }
  .course-list-item__term {
    margin-left: 12px;
    display: flex;
    align-items: center;
    font-size: 16px;
  }
  .course-list-item__actions-list {
    display: flex;
    flex: 0 0 150px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .course-list-item__action {
    width: 96px;
    width: 12rem;
    display: flex;
    justify-content: center;
    /* display: none; */
  }
  .course-list-item__action a {
    height: 4.5rem;
    font-size: 1.6rem;
  }
  .course-list-item__action:nth-child(n+2) {
    margin-top: 12px;
  }
  .course-list-item__button {
    width: 96px;
    padding: 6px 0;
  }
  .course-summary {
    display: flex;
  }
  .course-summary:nth-child(n+2) {
    margin-top: 10px;
  }
  .course-summary__label {
    width: 100%;
    flex: 0 0 100%;
  }
  .course-summary__photo {
    font-family: "object-fit: cover;";
    object-fit: cover;
    width: 184px;
    height: 184px;
    flex: 0 0 184px;
    align-self: flex-start;
  }
  .course-summary__body:nth-child(n+2) {
    margin-left: 16px;
    font-size: 1.07692rem;
  }
  .course-summary-label {
    display: block;
  }
  .course-info-list {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eaeaeb;
    font-size: 1.07692rem;
  }
  .course-info-list__description, .course-info-list__title {
    border-top: 1px solid #eaeaeb;
  }
  .course-info-list__title {
    box-sizing: border-box;
    padding: 16px 24px;
    max-width: 216px;
    flex: 0 0 216px;
    background-color: #fafbfc;
  }
  .course-info-list__description {
    box-sizing: border-box;
    padding: 16px 24px;
    max-width: calc(100% - 216px);
    flex-basis: calc(100% - 216px);
    flex-grow: 1;
    flex-shrink: 0;
  }
  .course-info-list__description--pre {
    white-space: pre-line;
    word-break: break-all;
  }
  .course-info-list__description--strong {
    font-weight: 700;
    color: #d70025;
    font-size: 1.23077rem;
  }
  .course-info-list__before-discount {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 1.07692rem;
    font-weight: 400;
    text-decoration: line-through;
  }
  .course-info-list__discount-arrow {
    margin: 0 4px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
  }
  .course-info-list__tax {
    display: inline;
    align-self: auto;
    color: #d70025;
    font-size: 0.92308rem;
  }
}
.table_link {
  text-decoration: underline;
}

.menu__pasteimg {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

._reserve {
  font-size: clamp(1.8rem, calc(1.8rem + (2.5rem - 1.8rem) * ((100vw - 767px) / 363px)), 2.5rem);
  text-align: center;
  font-weight: bold;
}







/*  ----------------------------------------------------------

Google翻訳

----------------------------------------------------------  */
#google_translate {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9999;
}

#google_translate img {
  height: auto;
  width: auto;
}

@media only screen and (max-width: 767px) {
  #google_translate {
    position: fixed;
    right: 6rem; /* ハンバーガーボタン分左へずらす */
  }
}








/*  ----------------------------------------------------------

reserve

----------------------------------------------------------  */
.top-reservation {
  padding: 6.1em 0 7.5em;
}


.top-reservation > p {
  text-align: center;
  font-size: 1.1em;
  line-height: 1.9;
  font-weight: 500;
  margin: 2em auto 3.5em;
  width: 90%;
  letter-spacing: 0.1em;
  color: #000;
}

.top-reservation > p span {
  font-size: 0.88em;
  font-weight: 500;
  display: block;
  margin-top: 0.8rem;
}

.top-reserve a {
  display: inline-block;
  margin: 0.5rem 0 0;
  font-size: 1rem;
  /* border-bottom: 2px solid #9c8e79; */
  padding-bottom: 0.5rem;
}

@media screen and (max-width: 767px) {
  .top-reservation {
    padding: 5rem 0rem 2rem;
  }
}
/* ------------------------------
　calendar
------------------------------ */
.calendar-wrapper {
  position: relative;
  outline: 16px solid #ccc;
  /* max-width: 1000px; */
  width: 65%;
  margin: 50px auto 0 auto;
  display: flex;
  background-color: rgb(255, 255, 255);
}

@media screen and (max-width: 1000px) {
  .calendar-wrapper {
    width: 90%;
  }
}
#calendar {
  text-align: center;
  width: 100%;
}

table {
  /* outline: 16px solid #ccc; */
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-all;
}

.calendar-wrapper th {
  color: #000;
}

.calendar-wrapper th,
.calendar-wrapper td {
  outline: 1px solid #ddd;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  color: #111111;
  line-height: 1.5;
}

.calendar-wrapper td:nth-child(6) .reservation-date,
.calendar-wrapper td:nth-child(6) .reservation-date a {
  color: #8888ff;
}

.calendar-wrapper td:last-child .reservation-date,
.calendar-wrapper td:last-child .reservation-date a {
  color: #ff8888;
}

.calendar-wrapper td.disabled {
  background-color: #eeeeee;
  color: #aaaaaa;
}

.reservation-date {
  text-decoration: underline;
}

.reservation-seat {
  font-size: 14px;
}

.reservation-seat a {
  color: #dd8866;
}

.reservation-seat-disabled {
  color: #aaaaaa;
}

.calendar-reservation {
  border-collapse: collapse;
  width: 100%;
  word-break: break-all;
  /* margin-top: 10px;
  margin-left: 1rem; */
  padding: 20px;
  line-height: 1.8;
  border-left: 1.3rem solid #ccc;
}

.calendar-reservation form {
  padding-top: 0;
}

.calendar_title {
  color: #000;
  font-size: 1em;
}

.calendar_date {
  font-size: 1em;
  line-height: 2;
}

.calendar_person,
.calendar_time {
  width: 100%;
  font-size: 1.2em;
  padding: 8px;
  margin-top: 4px;
  margin-bottom: 8px;
  border: 0.1rem solid #aaaaaa;
}

.calendar_person,
.calendar_time {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 6px;
  padding-right: 30px;
}

.calendar_button {
  width: 100%;
  font-size: 1.1em;
  padding: 12px;
  border-radius: 6px;
  background-color: #000;
  color: #ffffff;
  border: 1px solid #aaaaaa;
}

.calendar_button:not([disabled]) {
  cursor: pointer;
}

.calendar_info {
  font-size: 0.8em;
  margin-top: 20px;
  line-height: 1.5;
}

.calendar_ok {
  color: #dd8866;
}

.reservation-message {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 16px;
  text-align: center;
  color: #c00000;
}

@media screen and (max-width: 767px) {
  .calendar-wrapper {
    width: 80%;
    margin: 40px auto 60px auto;
    flex-direction: column;
  }
  .calendar-wrapper {
    font-size: 12px;
  }
  .calendar-reservation {
    padding: 0;
    margin-top: 20px;
    margin-left: 0;
    border-left: 0;
    border-top: 1.3rem solid #ccc;
  }
  .calendar-reservation form {
    padding: 20px;
  }
  .calendar-reservation form div {
    margin-bottom: 20px;
  }
  .calendar_info {
    padding: 0 20px 20px 20px;
    font-size: 0.95em;
  }
  .calendar_date {
    font-size: 16px;
  }
  .calendar_button {
    font-size: 16px;
  }
}
@media screen and (max-width: 450px) {
  .reservation-date {
    font-size: 2.8vw;
  }
}
/* ------------------------------
　reservation
------------------------------ */
.regform {
  /* max-width: 840px; */
  margin: auto;
}

.form-container {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}

.form-container input,
.form-container select {
  height: 2rem;
  font-size: 1.2rem;
}

.form-container textarea {
  width: 100%;
  height: 8rem;
}

.form-container .tel-form input,
.form-container .mail-form input {
  width: 100%;
  font-size: 1.2rem;
}

.form-container .pay-form select {
  width: 33%;
  font-size: 1.2rem;
}

.form-container dl {
  display: flex;
}

.form-container dt {
  display: flex;
  align-items: center;
  width: 300px;
  width: 30%;
  background-color: #eeebe4;
  font-weight: bold;
  padding: 5px 15px;
  border: 1px solid #cccccc;
}

.form-container dd {
  padding: 5px 15px;
  flex: 1;
  border: 1px solid #cccccc;
}

.form-container .text_field {
  width: 47.6%;
}

.form-container .text_field:first-child {
  margin-right: 3%;
}

.form-container .date-form,
.form-container .course-form,
.form-container .seat-form,
.form-container .cost-form {
  /* height: 36px; */
}

/* .form-container .date-form dd,
.form-container .course-form dd,
.form-container .seat-form dd,
.form-container .cost-form dd{
  padding: 12px 5px; 
} */
.form-container .blank-area {
  margin-right: 10px;
}

.hissu {
  min-width: 28px;
  height: 20px;
  display: inline-block;
  border: 1px solid #c00;
  padding: 3px;
  margin-left: 14px;
  font-size: 0.75rem;
  line-height: 1;
  color: #c00;
}

.nini {
  min-width: 28px;
  height: 20px;
  display: inline-block;
  border: 1px solid #999;
  padding: 3px;
  margin-left: 14px;
  font-size: 0.75rem;
  line-height: 1;
  color: #333;
}

.btn-container {
  display: flex;
  justify-content: space-evenly;
  justify-content: center;
  margin-top: 2rem;
  gap: 4rem;
}

.btn-container .submit-btn input {
  font-weight: bold;
  background: #f95a6b;
  background: linear-gradient(to bottom, #ff9ba2 0%, #f95a6b 75%, #f85164 100%);
  border: 1px solid #da949b;
  border-radius: 4px;
  box-shadow: inset 1px 1px 3px #f9d8db, inset -1px -1px 3px #ffa6ae;
  color: #ffffff !important;
  padding: 0.4rem 1.6rem;
  text-decoration: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.btn-container .pre-btn input {
  background-color: #ffffff;
  border: solid #cccccc;
  border-radius: 4px;
  border-width: 1px 1px 3px;
  color: #666666 !important;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  padding: 0.4rem 1.6rem;
  text-decoration: none;
  font-size: 1.2rem;
}

.submit-message {
  margin-top: 4rem;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  animation: blink 6s ease-in-out infinite;
}

@keyframes blink {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
@media screen and (max-width: 767px) {
  .form-container dl {
    flex-direction: column;
  }
  .form-container dt {
    width: 100%;
  }
  .form-container .date-form,
  .form-container .course-form,
  .form-container .seat-form,
  .form-container .cost-form {
    height: auto;
  }
  .form-container .text_field {
    width: 47.6%;
  }
  .form-container .blank-area {
    margin-right: 8px;
  }
}
/* ローディング */
.loader_container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1;
}

.spinner {
  width: 64px;
  height: 64px;
  border: 8px solid;
  border-color: var(--brown) var(--brown) var(--brown) transparent;
  border-radius: 50%;
  animation: spin-animation 1.2s linear infinite;
}

@keyframes spin-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader_container.isLoad {
  animation: fade-out 0.5s;
  animation-fill-mode: both;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.reserve-txt {
  text-align: center;
  font-size: 2rem;
}

/* index.html reserve-txt編集 */
.reserve-txt span {
  font-size: 1.5rem;
}/*# sourceMappingURL=style.css.map */










/*  ----------------------------------------------------------

ベタ打ち

----------------------------------------------------------  */

.ttl3 {
	border-bottom: solid 1px rgba(0,0,0,0.2);
	font-size: 1.4em;
	line-height: 1.4;
	margin-bottom: 3rem;
	padding: 1rem 0 1.4rem 0;
	position: relative;
}
.ttl3:after {
	border-bottom: solid 5px #8c0032;
	bottom: -5px;
	content: " ";
	display: block;
	position: absolute;
	width: 25%;
}
@media screen and (max-width: 767px) {
	.ttl3:after {
		width: 40%;
	}	
}


.menu_betauchi:not(:last-of-type) {
	margin-bottom: 5rem;
}
.content__title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 0 1rem;
    border-bottom: 2px solid #d5d5d8;
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 3.5rem;
}
.restaurant-detail__menu:nth-child(n+2) {
    margin-top: 1.5rem;
}
.menu-price-list:last-of-type {
    border-bottom: 1px solid #d5d5d8;
}
.menu-price-list__row {
    display: flex;
    border-top: 1px solid #d5d5d8;
    font-size: 1.4rem;
    line-height: 2.2rem;
}
.menu-price-list__name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    padding: 16px 24px 16px 0;
    font-weight: 700;
}
.menu-price-list__price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    align-items: flex-end;
    padding: 16px 0 16px 24px;
	text-align: right;
}
.menu-price-list__text {
	display: block;
	font-size: 0.9em;
	line-height: 1.6;
	font-weight: 400;
	color: #333;
}

@media screen and (max-width: 767px) {
    .menu-price-list__row {
        display: block;
    }
    .menu-price-list__name {
        padding: 16px 24px 0;
    }
    .menu-price-list__price {
        padding: 0px 0 16px 24px;
    }
}


.course-list-heading {
    display: flex;
    align-items: center;
    padding:0 0 12px;
}

.course-list-heading__title {
    flex-shrink: 0;
    font-size: 2.4rem;
    font-weight:700
}

.course-list-heading__supplement {
    align-self: flex-end;
    margin-left: auto;
    padding-left: 10px;
    color: #6c6c75;
    font-size: 14px;
    font-weight:400
}

.course-list__item {
    display: flex;
    flex-direction: column;
    border-bottom:1px solid #d5d5d8
}

.course-list__item:first-child {
    border-top:1px solid #d5d5d8
}

.course-list-item {
    display: flex;
    width: 100%;
    min-height: 80px;
    align-items: center;
    padding:16px 0
}

.course-list-item__thumbnail {
    flex-shrink:0
}

.course-list-item__thumbnail img {
    font-family: "object-fit: cover;";
    object-fit: cover;
    width: 80px;
    height: 80px;
    background-color:#f4f4f5
}

.course-list-item__detail {
    flex:1 1 auto;
    line-height:1.9;
}

.course-list-item__detail:nth-child(n + 2) {
    margin-left:12px
}

.course-list-item__title {
    font-size: 1.25em;
    font-weight:700;
    margin-bottom: 10px;
}

.course-list-item__title:nth-child(n + 2) {
    margin-top:6px
}

.course-list-item__description {
    font-size:12px;
    margin-bottom: 10px;
}

.course-list-item__footer {
    /* display:flex */
}

.course-list-item__price {
    display: flex;
    align-items: flex-start;
    /* justify-content: center; */
    color: #d70025;
    font-size: 1.3em;
    font-weight:700;
	margin-bottom: 1rem;
}

.course-list-item__label {
    display: inline-block;
    padding: 5px 11px;
    border: 1px solid #ffa014;
    background-color: #fff;
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    color: #ffa014;
    vertical-align:top;
    margin-right: 5px;
}

.course-list-item__label--discount {
    background: #d70025;
    border-color: #d70025;
    color:#fff
}

.course-list-item__before-discount {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    text-decoration:line-through
}

.course-list-item__discount-arrow {
    margin: 0 4px;
    color: #fff;
    font-weight: 400;
    text-decoration:none
}

.course-list-item__tax {
    display: inline;
    align-self: auto;
    color: #d70025;
    font-size:20px;
}

.course-list-item__term {
    display: flex;
    align-items: center;
    font-size: 0.9em;
}

.course-list-item__actions-list {
    display: flex;
    flex: 0 0 150px;
    flex-direction: column;
    justify-content: center;
    align-items:center
}

.course-list-item__action {
    width: 9rem;
    display: flex;
    justify-content:center;
    /* display: none; */
    margin-top: -0.3rem;
}
.course-list-item__action button {
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 2.5em;
	background: #8c0032;
    color: #fff;
	font-size: 1em;
    text-decoration: none;
	border: none;
}

.course-list-item__action:nth-child(n + 2) {
    /* margin-top:12px */
}

.course-list-item__button {
    width: 96px;
    padding:6px 0
}

.course-summary {
    display:flex
}

.course-summary:nth-child(n + 2) {
    margin-top:10px
}

.course-summary__label {
    width: 100%;
    flex:0 0 100%
}

.course-summary__photo {
    font-family: "object-fit: cover;";
    object-fit: cover;
    width: 184px;
    height: 184px;
    flex: 0 0 184px;
    align-self:flex-start
}

.course-summary__body:nth-child(n + 2) {
    margin-left:16px;
    font-size:1.07692rem
}

.course-summary-label {
    display:block
}

.course-info-list {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eaeaeb;
    font-size:1.07692rem
}

.course-info-list__description, .course-info-list__title {
    border-top:1px solid #eaeaeb
}

.course-info-list__title {
    box-sizing: border-box;
    padding: 16px 24px;
    max-width: 216px;
    flex: 0 0 216px;
    background-color:#fafbfc
}

.course-info-list__description {
    box-sizing: border-box;
    padding: 16px 24px;
    max-width: calc(100% - 216px);
    flex-basis: calc(100% - 216px);
    flex-grow: 1;
    flex-shrink:0
}

.course-info-list__description--pre {
    white-space: pre-line;
    word-break:break-all
}

.course-info-list__description--strong {
    font-weight: 700;
    color: #d70025;
    font-size:1.23077rem
}

.course-info-list__before-discount {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 1.07692rem;
    font-weight: 400;
    text-decoration:line-through
}

.course-info-list__discount-arrow {
    margin: 0 4px;
    color: #fff;
    font-weight: 400;
    text-decoration:none
}

.course-info-list__tax {
    display: inline;
    align-self: auto;
    color: #d70025;
    font-size:.92308rem
}

.restaurant-coupon-heading {
    display: flex;
    align-items: center;
    padding: 0 0 12px;
    border-bottom:1px solid #d5d5d8
}

.restaurant-coupon-heading__title {
    flex-shrink: 0;
    max-width: calc(100% - 300px);
    color: #fff;
    font-size: 1.38462rem;
    font-weight:700
}

.restaurant-coupon-heading__supplement {
    align-self: flex-end;
    margin-left: auto;
    padding-left: 10px;
    color: #6c6c75;
    font-size: .92308rem;
    font-weight:400
}

.restaurant-coupon-list {
    border:1px solid #d5d5d8
}

.restaurant-coupon-list:nth-child(n + 2) {
    margin-top:20px
}

.restaurant-coupon-list__item:nth-child(n + 2) {
    border-top:1px dashed #d5d5d8
}

.restaurant-coupon {
    display:flex
}

.restaurant-coupon:before {
    display: block;
    min-height: 80px;
    flex: 0 0 48px;
    background: url("https://assets.retty.me/v-202103090658-master-5faacc28934ec9ceed6332f40621248775413203/images/pancake/ic_coupon.svg") #ffa014;
    background-position: 50%;
    background-repeat: no-repeat;
    content: ""
}

.restaurant-coupon--marked {
    position:relative
}

.restaurant-coupon--marked:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 0;
    height: 0;
    border-color: #ffc814 transparent transparent #ffc814;
    border-style: solid;
    border-width: 8px;
    content: ""
}

.restaurant-coupon__body {
    flex: 1 1 auto;
    padding:18px 20px
}

.restaurant-coupon__title {
    color: #fff;
    font-size: 1.23077rem;
    font-weight:700
}

.restaurant-coupon__description {
    color: #6c6c75;
    font-size:.84615rem
}

.restaurant-coupon__description:nth-child(n + 2) {
    margin-top:4px
}

.restaurant-coupon__supplement {
    display: flex;
    box-sizing: border-box;
    flex: 0 0 200px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:12px 16px
}

.restaurant-coupon__supplement:nth-child(n + 2) {
    border-left:1px dashed #d5d5d8
}

.restaurant-coupon__expiration {
    color: #6c6c75;
    font-size:.92308rem
}

.restaurant-coupon__link {
    cursor: pointer;
    color: #2d88d9;
    font-size:.92308rem
}

.restaurant-coupon__link:hover {
    opacity:.8
}

.restaurant-coupon__link--external {
    display: flex;
    align-items:center
}

.restaurant-coupon__link--external:after {
    content: "\EA0C";
    font-size:1.23077rem
}

@keyframes show-sticky-actions {
    0% {
        opacity:0
    }

    to {
        opacity:1
    }
}

.restaurant-sidebar {
    width: 300px;
    flex-direction:column
}

.restaurant-sidebar__prepare-stuck {
    z-index: 90;
    display:none
}

.restaurant-sidebar__prepare-stuck[data-stuck=true] {
    display: flex;
    animation:show-sticky-actions .1s ease-out
}

.restaurant-sidebar__campaign-banner {
    z-index: 90;
    padding-top:12px
}

.menu-description__text {
    margin-bottom: 4rem;
}

.menu-price-list {
    font-size:1.07692rem
}

.menu-price-list:last-of-type {
border-bottom:1px solid #d5d5d8
}

.menu-price-list__row {
    display: flex;
    border-top:1px solid #d5d5d8
}

.menu-price-list__name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    padding: 16px 24px 16px 0;
    font-weight:700
}

.menu-price-list__supplement {
    font-weight:400
}

.menu-price-list__price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    align-items: flex-end;
    padding:16px 0 16px 24px
}

.photo-menu {
    display: flex;
    flex-wrap: wrap;
    margin-left:-36px;
    margin-bottom: 4rem;
}

.photo-menu__item {
    width: calc((100% - 108px) / 3);
    margin-left:35px
}

.photo-menu__item:nth-child(n + 4) {
    margin-top:36px
}

.photo-menu__figure {
    width: 100%;
    height:auto
}

.photo-menu__image {
    position: relative;
    height:auto
}

.photo-menu__image:before {
    display: block;
    padding-top: 100%;
    content: ""
}

.photo-menu__image img {
    font-family: "object-fit: cover;";
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#f4f4f5
}

.photo-menu__caption {
    display: flex;
    flex-direction:column
}

.photo-menu__caption:nth-child(n + 2) {
    margin-top:16px
}

.photo-menu__reporter:nth-child(n + 2) {
    margin-top:8px
}

.photo-menu__title {
    font-size: 1.6rem;
    font-weight:700
}

.photo-menu__price {
    align-self: flex-end;
    font-size:1.2rem
}

.photo-menu__price:nth-child(n + 2) {
    margin-top:8px
}

.menu-price-list__wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.menu-price-list__wrapper-in-wrapper{
  display: flex;
  justify-content: space-between;
}


@media screen and (max-width: 767px) {
    .photo-menu {
        display: block;
        margin-left:0;
    }
    .photo-menu__item {
        width: 100%;
        margin-left: 0;
        margin-bottom: 40px;
    }
    .photo-menu__figure {
        width: auto;
        height:auto
    }   

}


@media screen and (max-width: 767px) {
    .course-list-heading {
        display: flex;
        align-items: center;
        padding:0 0 12px;
    }

    .course-list-heading__title {
        flex-shrink: 0;
        max-width: 100%;
        font-size: 2.2rem;
        font-weight:700
    }

    .course-list-heading__supplement {
        align-self: flex-end;
        margin-left: auto;
        padding-left: 10px;
        color: #6c6c75;
        font-size: 14px;
        font-weight:400
    }

    .course-list__item {
        display: block;
        flex-direction: column;
        border-bottom:1px solid #d5d5d8
    }

    .course-list__item:first-child {
        border-top:1px solid #d5d5d8
    }

    .course-list-item {
        display: block;
        width: 100%;
        min-height: 80px;
        align-items: center;
        padding:16px 0
    }

    .course-list-item__thumbnail {
        flex-shrink:0
    }

    .course-list-item__thumbnail img {
        font-family: "object-fit: cover;";
        object-fit: cover;
        width: 60%;
        height: 60%;
        background-color:#f4f4f5;
        display: block;
        margin: 0 auto 20px auto;
    }

    .course-list-item__detail {
        flex:1 1 auto
    }

    .course-list-item__detail:nth-child(n + 2) {
        margin-left:12px
    }

    .course-list-item__title {
        font-size: 16px;
        font-weight:700;
        margin-bottom: 10px;
    }

    .course-list-item__title:nth-child(n + 2) {
        margin-top:6px
    }

    .course-list-item__description {
        font-size:12px;
        margin-bottom: 10px;
    }

    .course-list-item__footer {
		margin-bottom: 3rem;
    }

    .course-list-item__price {
        display: flex;
        color: #d70025;
        font-size: 16px;
        font-weight:700;
        min-width: 90px;
    }

    .course-list-item__label {
        display: inline-block;
        padding: 5px 11px;
        border: 1px solid #ffa014;
        background-color: #fff;
        border-radius: 2px;
        color: #fff;
        font-size: 12px;
        font-weight: 400;
        color: #ffa014;
        vertical-align:top;
        margin-right: 5px;
    }

    .course-list-item__label--discount {
        background: #d70025;
        border-color: #d70025;
        color:#fff
    }

    .course-list-item__before-discount {
        display: inline-flex;
        align-items: center;
        font-size: 16px;
        font-weight: 400;
        text-decoration:line-through
    }

    .course-list-item__discount-arrow {
        margin: 0 4px;
        color: #fff;
        font-weight: 400;
        text-decoration:none
    }

    .course-list-item__tax {
        display: inline;
        align-self: auto;
        color: #d70025;
        font-size:20px;
    }

    .course-list-item__term {
        display: flex;
        align-items: center;
    }

    .course-list-item__actions-list {
        display: flex;
        flex: 0 0 150px;
        flex-direction: column;
        justify-content: center;
        align-items:center
    }

    .course-list-item__action {
        width: 96px;
        width: 12rem;
        display: flex;
        justify-content:center;
        /* display: none; */
    }
    .course-list-item__action button {
        height: 4.5rem;
        font-size: 1.6rem;
    }

    .course-list-item__action:nth-child(n + 2) {
        margin-top:12px
    }

    .course-list-item__button {
        width: 96px;
        padding:6px 0
    }

    .course-summary {
        display:flex
    }

    .course-summary:nth-child(n + 2) {
        margin-top:10px
    }

    .course-summary__label {
        width: 100%;
        flex:0 0 100%
    }

    .course-summary__photo {
        font-family: "object-fit: cover;";
        object-fit: cover;
        width: 184px;
        height: 184px;
        flex: 0 0 184px;
        align-self:flex-start
    }

    .course-summary__body:nth-child(n + 2) {
        margin-left:16px;
        font-size:1.07692rem
    }

    .course-summary-label {
        display:block
    }

    .course-info-list {
        display: flex;
        flex-wrap: wrap;
        border-bottom: 1px solid #eaeaeb;
        font-size:1.07692rem
    }

    .course-info-list__description, .course-info-list__title {
        border-top:1px solid #eaeaeb
    }

    .course-info-list__title {
        box-sizing: border-box;
        padding: 16px 24px;
        max-width: 216px;
        flex: 0 0 216px;
        background-color:#fafbfc
    }

    .course-info-list__description {
        box-sizing: border-box;
        padding: 16px 24px;
        max-width: calc(100% - 216px);
        flex-basis: calc(100% - 216px);
        flex-grow: 1;
        flex-shrink:0
    }

    .course-info-list__description--pre {
        white-space: pre-line;
        word-break:break-all
    }

    .course-info-list__description--strong {
        font-weight: 700;
        color: #d70025;
        font-size:1.23077rem
    }

    .course-info-list__before-discount {
        display: inline-flex;
        align-items: center;
        color: #fff;
        font-size: 1.07692rem;
        font-weight: 400;
        text-decoration:line-through
    }

    .course-info-list__discount-arrow {
        margin: 0 4px;
        color: #fff;
        font-weight: 400;
        text-decoration:none
    }

    .course-info-list__tax {
        display: inline;
        align-self: auto;
        color: #d70025;
        font-size:.92308rem
    }
}




/* ---- */

.course-dialog {
	width: 100%;
	padding: 0;
	border: none;
	border-radius: 1.6rem;
	height: 95vh;
	max-height: 95vh;
	overflow: hidden;
	background: transparent;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.course-dialog::backdrop {
	background: rgba(0, 0, 0, 0.6);
}

.course-dialog__inner {
	position: relative;
	height: 95vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background: #fff;
	border-radius: 1.6rem;
	overscroll-behavior: contain;
	padding: 0 0 7rem;
}

.course-dialog__header {
	padding: 3.2rem 3.2rem 2.4rem;
	border-bottom: 1px solid #ececec;
	background: #fff;
}

.course-dialog__close {
	position: sticky;
	top: 0;
	margin-left: auto;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 4.2rem;
	height: 4.2rem;

	border: none;
	border-radius: 50%;
	background: #f3f3f3;

	font-size: 2rem;
	line-height: 1;
	cursor: pointer;

	z-index: 10;
}

/* ボタンだけだと左に寄るのでラッパー追加 */
.course-dialog__close-wrap {
	position: sticky;
	top: 0;
	display: flex;
	justify-content: flex-end;
	padding: 1.2rem 1.2rem 0;
	background: #fff;
	z-index: 10;
}
.course-dialog__title {
	padding-right: 5.2rem;
	font-size: 1.7em;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 1.4rem;
	color: #222;
}

.course-dialog__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-bottom: 1.6rem;
}

.course-dialog__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.4rem 1rem;
	border-radius: 999px;
	background: #fff3f4;
	border: 1px solid #f4c8cf;
	color: #c84b5d;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.2;
}

.course-dialog__lead {
	font-size: 1em;
	line-height: 2;
	color: #444;
}

.course-dialog__summary {
	padding: 0 3.2rem;
	background: #fff;
}

.course-dialog__info {
	border-top: 1px solid #e7e7e7;
}

.course-dialog__infoRow {
	display: grid;
	grid-template-columns: 16rem 1fr;
	border-bottom: 1px solid #e7e7e7;
}

.course-dialog__infoTitle {
	padding: 1.4rem 1.6rem;
	background: #fafafa;
	font-size: 1em;
	font-weight: 700;
	line-height: 1.8;
	color: #333;
}

.course-dialog__infoText {
	padding: 1.4rem 1.6rem;
	font-size: 1em;
	line-height: 1.8;
	color: #333;
}

.course-dialog__section {
	padding: 2.8rem 3.2rem 0;
}

.course-dialog__section + .course-dialog__section {
	padding-top: 3.2rem;
}

.course-dialog__sectionTitle {
	font-size: 1.4em;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 0rem;
	padding-bottom: 0.8rem;
	border-bottom: 2px solid #ccc;
	color: #222;
}

.course-dialog__raw {
	white-space: pre-line;
	font-size: 0.95em;
	line-height: 2;
	color: #333;
	word-break: break-word;
}

.course-dialog__foot {
	padding: 3.2rem;
}

html.is-dialog-open,
body.is-dialog-open {
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	.course-dialog {
		width: calc(100% - 1.6rem);
		height: 94vh;
		max-height: 94vh;
		border-radius: 1.2rem;
	}

	.course-dialog__inner {
		height: 94vh;
		border-radius: 1.2rem;
	}

	.course-dialog__header {
		padding: 2.2rem 1.6rem 1.8rem;
	}

	.course-dialog__close {
		top: 1rem;
		right: 1rem;
		width: 3.8rem;
		height: 3.8rem;
		font-size: 1.8rem;
	}

	.course-dialog__title {
		padding-right: 4.4rem;
		font-size: 2rem;
		margin-bottom: 1.2rem;
	}

	.course-dialog__lead,
	.course-dialog__raw,
	.course-dialog__infoText {
		font-size: 1.3rem;
		line-height: 1.9;
	}

	.course-dialog__infoRow {
		grid-template-columns: 1fr;
	}

	.course-dialog__infoTitle {
		padding: 1rem 1.2rem 0.6rem;
		background: #fff;
		font-size: 1.2rem;
		color: #777;
	}

	.course-dialog__infoText {
		padding: 0 1.2rem 1rem;
	}

	.course-dialog__summary,
	.course-dialog__section,
	.course-dialog__foot {
		padding-left: 1.6rem;
		padding-right: 1.6rem;
	}

	.course-dialog__sectionTitle {
		font-size: 1.7rem;
	}
}

.course-dialog span.red {
	color: red;
	font-weight: 700;
}







.topTakeout {
  background: #fff;
  padding: 2em 0 ;
}
.topTakeout a {
  display: block;
  width: 46.25em;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .topTakeout a {
    width: 100%;
  }
}





/* ------------------------------
pc-menu
------------------------------ */

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

/* ------------------------------
rstdtl-menu-lst
------------------------------ */
    .pttl {
        padding: 60px;
        text-align: center;
    }

    .pttl img {
        height: 36px;
        width: auto;
    }

    .rstdtl-menu-lst {
        max-width: 980px;
        margin: 0 auto 100px auto;
    }
    .rstdtl-menu-lst:last-of-type {
        margin-bottom: 0;
    }


/* ------------------------------
rstdtl-menu-lst
------------------------------ */
    .pttl {
        padding: 60px;
        text-align: center;
    }

    .pttl img {
        height: 36px;
        width: auto;
    }

    .rstdtl-menu-lst {
        margin: 60px auto 80px auto;
        max-width: 980px;
    }



/* ------------------------------
menu new
------------------------------ */
    .rstdtl-menu-lst__heading {
        margin-top: 50px;
        margin-bottom: 20px;
        font-size: 1.5rem;
        font-weight: bold;
    }

    .rstdtl-menu-lst__contents {
        display: table;
        padding: 0 10px;
        border-bottom: 1px dotted #d2d2d2;
        width: 100%;
        box-sizing: border-box
    }

    .rstdtl-menu-lst__contents:last-of-type {
        border-bottom: none
    }


    .rstdtl-menu-lst__info {
        display: table-cell;
        padding: 10px 0;
        vertical-align: top
    }

    .rstdtl-menu-lst__info-inner {
        display: table;
        width: 100%
    }

    .rstdtl-menu-lst__menu-title {
        display: table-cell;
        /* color: #111; */
        font-weight: bold;
        font-size: 1.5rem
    }

    .rstdtl-menu-lst__price {
        display: table-cell;
        font-weight: bold;
        text-align: right;
        width: 9rem;
        font-size: 1.8rem
    }


    .rstdtl-menu-lst__desc {
        font-size: 15px;
        padding-bottom: 10px;
    }

    .rstdtl-menu-lst__desc p {
        font-size: 20px;
        padding: 12px 10px;
        line-height: 1.6;
        background: url('https://tblg.k-img.com/images/line/line_dot.gif?1547477344') repeat-x 0 100%
    }

    .rstdtl-menu-lst__img {
        display: table-cell;
        padding: 20px 15px 20px 0;
        width: 120px;
        text-align: center
    }


/* ------------------------------
course menu pc
------------------------------ */

    .course-list {
        margin: 20px 0 30px
    }

    .course-list__heading {
        display: block;
        position: relative
    }

    .course-list__hotpepper-logo {
        display: block;
        position: absolute;
        top: 3.2rem;
        right: 0.5rem
    }

    .course-list__heading-tax {
        position: absolute;
        right: 0;
        color: #949499;
        top: 2.8rem;
        font-size: 1.1rem;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%)
    }

    .course-list__items {
        margin: auto;
        width: 95%;
    }

    .course-list__tax-notice {
        margin-top: 5px;
        color: #949499;
        font-size: 1rem
    }

    .course-seatonly {
        padding: 12px 15px;
        background-color: #faf8f5;
        margin-bottom: 1.5rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        justify-content: space-between;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center
    }

    .course-seatonly__title {
        /* color: #13131e; */
        font-weight: bold;
        font-size: 1.4rem
    }

    .course-seatonly__btn {
        width: 10rem
    }



    .rstdtl-course-list {
        display: table;
        position: relative;
        z-index: 1;
        border-top: 1px solid #e0dccc;
        border-bottom: 1px solid #e0dccc;
        width: 100%
    }

    .rstdtl-course-list + .rstdtl-course-list {
        border-top: none
    }

    .rstdtl-course-list__target {
        color: inherit;
        z-index: 1
    }

    .rstdtl-course-list__target:hover {
        color: inherit;
        text-decoration: none
    }

    .rstdtl-course-list.rstdtl-course-list--hotpepper:hover {
        cursor: default
    }

    .rstdtl-course-list__data {
        display: table-cell;
        position: relative;
        padding: 20px 0;
        /* width: 100%; */
        word-break: break-all;
        vertical-align: top
    }

    .rstdtl-course-list__tieup-mc ~ .rstdtl-course-list__img {
        padding-top: 6.5rem
    }

    .rstdtl-course-list__tieup-mc ~ .rstdtl-course-list__data {
        padding-top: 6.5rem
    }

    .rstdtl-course-list__data-header {
        display: table;
        width: 100%
    }

    .rstdtl-course-list__img + .rstdtl-course-list__data .rstdtl-course-list__data-header {
        min-height: 72px
    }

    .rstdtl-course-list__course-title {
        display: table-cell;
        word-break: break-all
    }

    .rstdtl-course-list__course-title-text {
        margin-bottom: 0.2rem;
        /* color: #111; */
        font-weight: bold;
        line-height: 1.6;
        font-size: 1.5rem
    }

    .rstdtl-course-list__course-title-text .rstdtl-course-list__target:hover {
        color: #ff9600;
        text-decoration: underline
    }

    .rstdtl-course-list.rstdtl-course-list--hotpepper .rstdtl-course-list__course-title-text {
        /* color: #13131e */
    }

    .rstdtl-course-list__dish-count.rstdtl-course-list__dish-count {
        border: 1px solid #e0dccc;
        box-sizing: border-box;
        /* color: #463f2d; */
        background-color: #fff;
        margin-left: 0.5rem;
        padding: 0.1rem 0.3rem;
        font-size: 0.9rem
    }

    .rstdtl-course-list__price-wrap {
        display: table-cell;
        white-space: nowrap;
        vertical-align: top;
        padding-right: 0.8rem;
        width: 100%;
        display: inline-block;
    }

    .rstdtl-course-list__price-discount {
        display: inline-block
    }

    .rstdtl-course-list__price-before {
        /* color: #13131e; */
        text-align: left;
        margin-right: 0.5rem;
        margin-bottom: -0.2rem;
        font-size: 1.1rem
    }

    .rstdtl-course-list__price-hotpepper-discount {
        display: inline-block;
        position: relative;
        margin-bottom: 7px;
        border: solid 1px #d2d2d2;
        border-radius: 2px;
        color: #949499;
        font-weight: bold;
        line-height: 1;
        background-color: #fff;
        padding: 0.4rem 0.5rem 0.3rem;
        font-size: 1rem
    }

    .rstdtl-course-list__price-hotpepper-discount::before,
    .rstdtl-course-list__price-hotpepper-discount::after {
        display: block;
        position: absolute;
        border: solid transparent;
        width: 0;
        height: 0;
        content: ''
    }

    .rstdtl-course-list__price-hotpepper-discount::before {
        bottom: -7px;
        border-width: 6px 6px 0;
        border-top-color: #d2d2d2;
        right: 3rem
    }

    .rstdtl-course-list__price-hotpepper-discount::after {
        bottom: -5px;
        border-width: 5px 5px 0;
        border-top-color: #fff;
        right: 3.1rem
    }

    .rstdtl-course-list__price-num {
        /* color: #000; */
        font-weight: bold;
        font-size: 1rem
    }

    .rstdtl-course-list.rstdtl-course-list--hotpepper .rstdtl-course-list__price-num {
        display: block
    }

    .rstdtl-course-list__price-num > em {
        margin-right: 2px;
        font-family: Arial, sans-serif;
        font-size: 1.8rem
    }

    .rstdtl-course-list__price-num-tax {
        font-weight: normal;
        font-size: 0.6rem;
    }

    .rstdtl-course-list__data-body {
        display: block;
        width: 100%;
        line-height: 1;
        padding-top: 0.5rem
    }

    .rstdtl-course-list__data-body:before,
    .rstdtl-course-list__data-body:after {
        display: block;
        overflow: hidden;
        content: ""
    }

    .rstdtl-course-list__data-body:after {
        clear: both
    }

    .rstdtl-course-list__inner {
      /* display: table;
      width: 100%; */
      /* justify-content: space-between; */
    }

    .rstdtl-course-list__img {
        display: table-cell;
        padding: 20px 15px 20px 0;
        width: 150px
    }

    .rstdtl-course-list__img .rstdtl-course-list__target:hover {
        opacity: 0.8
    }

    .rstdtl-course-list.rstdtl-course-list--hotpepper .rstdtl-course-list__img:hover {
        opacity: 1
    }

    .rstdtl-course-list__subinfo {
        display: table;
        position: relative;
        float: left;
        padding-top: 0.5rem
    }


    .rstdtl-course-list__desc {
        color: #fff;
        line-height: 1.6;
        font-size: 1.2rem;
    }

    .rstdtl-course-list__data-footer {
        float: right
    }

    .rstdtl-course-list__label {
        margin-left: 5px
    }

    .rstdtl-course-list__label.rstdtl-course-list__label {
        background-color: #a40000;
        padding: 0.2rem 0.4rem;
        line-height: 1.1rem;
        font-size: 1.5rem;
		color: #fff;
    }

    .rstdtl-course-list__hotpepper-target::before {
        color: #999
    }

    .rstdtl-course-list__course-rule {
        display: table-cell;
        white-space: nowrap;
        vertical-align: bottom;
        padding: 0 0 0.3rem 1rem
    }

    .rstdtl-course-list__course-rule > dt,
    .rstdtl-course-list__course-rule > dd {
        display: inline-block
    }

    .rstdtl-course-list__course-rule > dd {
        margin-right: 0.5rem
    }

    .rstdtl-course-list__course-rule-title::before {
        display: inline-block;
        color: #bcb08a;
        vertical-align: -0.1rem
    }

    .rstdtl-course-list__course-rule-title.rstdtl-course-list__course-rule-title--member::before {
        /* font-family: "Tabelog Glyph"; */
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        -webkit-font-smoothing: antialiased;
        text-transform: none;
        speak: none;
        /* content: "\f663" */
        content: "※"
    }

    .rstdtl-course-list__course-rule-title.rstdtl-course-list__course-rule-title--time::before {
        /* font-family: "Tabelog Glyph"; */
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        -webkit-font-smoothing: antialiased;
        text-transform: none;
        speak: none;
        /* content: "\f677" */
		content: "※"
    }

    .rstdtl-course-list__course-rule-title > i {
        display: none
    }

    .rstdtl-course-list__action-btn {
        display: table-cell;
        width: 100px;
        text-align: right;

        padding-left: 1.5rem;
        color: #fff;
    }



    .rstdtl-course-list__action-btn-target {
        display: block;
        float: right;
        clear: right;
        cursor: pointer;
        white-space: nowrap;
        vertical-align: middle;
        width: 10rem;
        /* color: #000; */
    }

    .rstdtl-course-list__action-btn-target + .rstdtl-course-list__action-btn-target {
        margin-top: 0.6rem
    }

    .rstdtl-course-list__reserve-notice + .rstdtl-course-list__action-btn-target {
        margin-top: 0.6rem
    }

    .rstdtl-course-list__coupon {
        display: inline-block;
        float: right;
        margin-top: 0.5rem
    }

    .rstdtl-course-list__coupon-btn {
        float: right
    }

    .rstdtl-course-list__coupon-contents {
        width: auto;
        text-align: left;
        padding-top: 0.7rem
    }

    .rstdtl-course-rdimg {
        position: absolute;
        bottom: 0;
        left: 0
    }

    .rstdtl-course-list__tieup-mc {
        display: table-row;
        position: absolute;
        left: 0;
        z-index: 5;
        border-radius: 6px;
        vertical-align: middle;
        /* background-color: #221815; */
        top: 1.5rem
    }

    .rstdtl-course-list__tieup-mc:hover {
        opacity: 0.8
    }

    .rstdtl-course-list__tieup-mc-target {
        display: block;
        box-sizing: border-box;
        padding: 0.6rem 1.2rem 0.6rem 1.5rem
    }

    .rstdtl-course-list__tieup-mc-target::after {
        color: #fff;
        vertical-align: middle
    }

    .rstdtl-course-list__tieup-mc-target:hover {
        text-decoration: none
    }

    .rstdtl-course-list__tieup-mc-logo {
        display: inline-block;
        width: 123px;
        height: 22px;
        background: url('https://tblg.k-img.com/images/shared/tieup/mastercard_pricelessjapan/tieup_logo_mastercard.png?1547477503') no-repeat 0 0;
        background-size: 123px 22px;
        vertical-align: bottom
    }

    .rstdtl-course-list__tieup-mc-logo > i {
        display: none
    }

    .rstdtl-course-list__tieup-mc-text {
        display: inline-block;
        color: #fff;
        margin-left: 1rem;
        padding-bottom: 0.2rem;
        font-size: 1.1rem
    }

    .rstdtl-course-list__tieup-mc-text > em {
        color: #ff9600;
        font-weight: bold;
        margin-right: 0.7rem;
        font-size: 1.3rem
    }


}
.course-dtl__course-title {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 1em;
}
.course-dtl__img {
  margin-bottom: 1em;
  max-width: 500px;
}

.course-dtl__contents table {
  width: 100%;
}
.course-dtl__contents th {
  width: 100%;
}
.c-table.c-table--form {
  border-collapse: separate;
  border-top: 1px solid #d6ceb4;
  color: #000;
}
.c-table tr {
    vertical-align: top;
}
.c-table tbody tr th {
  border-bottom: 1px solid #d6ceb4;
  color: #13131e;
  font-weight: bold;
  vertical-align: inherit;
  width: 5em;
  line-height: 1.5;
  padding: 1rem;
}
.c-table.c-table--form tbody tr th {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #d6ceb4;
  background-color: #faf8f5;
}
.c-table tbody tr td {
  border-bottom: 1px solid #d6ceb4;
  vertical-align: inherit;
  padding: .6rem;
}
.course-dtl__data-table tbody tr td {
  padding: 1.2rem 1.5rem;
}
.course-dtl__price-num {
  color: #e64c30;
  font-size: 1rem;
  font-weight: bold;
}
.course-dtl__price-num>em {
  margin-right: 2px;
  font-size: 1.8rem;
}

.rstdtl-course-list__img-target {
    pointer-events: none;
}

.course-dtl__info {
    padding-bottom: 3rem;
}
/* ------------------------------
sp-menu
------------------------------ */

@media screen and (max-width: 767px) {

/* ------------------------------
rstdtl-menu-lst
------------------------------ */
    .pttl {
        padding: 33px 0 40px 0;
        text-align: center;
    }

    .pttl img {
        height: 32px;
        width: auto;
    }

    .rstdtl-menu-lst {
        margin: 0 20px 60px 20px;
    }

/* ------------------------------
access
------------------------------ */
    dl.shop-info dt {
        clear: both;
        font-weight: bold;
        padding-top: 11px;
        padding-right: 10px;
        padding-bottom: 0;
        padding-left: 10px;
    }

    dl.shop-info dd {
        font-size: 0.9em;
        line-height: 1.6;
        padding-right: 10px;
        padding-left: 10px;
        padding-bottom: 10px;
    }

/* ------------------------------
rstdtl-menu-lst
------------------------------ */
    .pttl {
        padding: 33px 0 40px 0;
        text-align: center;
    }

    .pttl img {
        height: 32px;
        width: auto;
    }

    .rstdtl-menu-lst {
        margin: 40px 0px 0px 0px;
    }


    .rstdtl-menu-lst__heading {
        margin-top: 40px;
        margin-bottom: 20px;
        font-size: 1.6rem;
        font-weight: bold;
    }

    .rstdtl-menu-lst__contents {
        display: table;
        padding: 0 10px;
        border-bottom: 1px dotted #d2d2d2;
        width: 100%;
        box-sizing: border-box
    }

    .rstdtl-menu-lst__contents:last-of-type {
        border-bottom: none;
        padding-top: 10px;
    }


    .rstdtl-menu-lst__info {
        display: table-cell;
        padding: 6px 0;
        vertical-align: top
    }


    .rstdtl-menu-lst__info-inner {
    /*        display: table;*/
        width: 100%;
    }

    .rstdtl-menu-lst__menu-title {
        display: table-cell;
        width: 100%;
        /* color: #111; */
        font-weight: bold;
        font-size: 1.4rem
    }


/*
    .rstdtl-menu-lst__price {
        display: table-cell;
        font-weight: bold;
        text-align: right;
        width: 7rem;
        font-size: 1.5rem
    }
*/


    .rstdtl-menu-lst__price {
        display: inline-block;
        width: 100% !important;
        font-weight: bold;
        text-align: right !important;
        font-size: 1.5rem
    }

    .rstdtl-menu-lst__desc {
        font-size: 12px;
        padding-bottom: 10px;
    }

    .rstdtl-menu-lst__desc p {
        font-size: 20px;
        padding: 12px 10px;
        line-height: 1.6;
        background: url('https://tblg.k-img.com/images/line/line_dot.gif?1547477344') repeat-x 0 100%
    }

    .rstdtl-menu-lst__img {
        display: table-cell;
        padding: 20px 15px 20px 0;
        width: 120px;
        text-align: center
    }


/* ------------------------------
course menu sp
------------------------------ */


    .course-list__items {
        margin: auto;
        width: 100%;
    }

    .rstdtl-course-list {
        display: table;
        position: relative;
        z-index: 1;
        border-top: 1px solid #e0dccc;
        border-bottom: 1px solid #e0dccc;
        width: 100%
    }

    .rstdtl-course-list + .rstdtl-course-list {
        border-top: none
    }

    .rstdtl-course-list__target {
        color: inherit;
        z-index: 1
    }

    .rstdtl-course-list__target:hover {
        color: inherit;
        text-decoration: none
    }

    .rstdtl-course-list.rstdtl-course-list--hotpepper:hover {
        cursor: default
    }


    .rstdtl-course-list__data {
        display: table-cell;
        position: relative;
        padding: 20px 0 40px;
        width: 100%;
        word-break: break-all;
        vertical-align: top
    }



    .rstdtl-course-list__tieup-mc ~ .rstdtl-course-list__img {
        padding-top: 6.5rem
    }

    .rstdtl-course-list__tieup-mc ~ .rstdtl-course-list__data {
        padding-top: 6.5rem
    }

    .rstdtl-course-list__data-header {
        display: table;
        width: 100%
    }

    .rstdtl-course-list__img + .rstdtl-course-list__data .rstdtl-course-list__data-header {
        min-height: 72px
    }

    .rstdtl-course-list__course-title {
        display: table-cell;
        word-break: break-all;

    }

    .rstdtl-course-list__course-title-text {
        margin-bottom: 0.2rem;
        /* color: #111; */
        font-weight: bold;
        line-height: 1.6;
        font-size: 1.3rem;
    }

    .rstdtl-course-list__course-title-text .rstdtl-course-list__target:hover {
        color: #ff9600;
        text-decoration: underline
    }

    .rstdtl-course-list.rstdtl-course-list--hotpepper .rstdtl-course-list__course-title-text {
        /* color: #13131e */
    }

    .rstdtl-course-list__dish-count.rstdtl-course-list__dish-count {
        border: 1px solid #e0dccc;
        box-sizing: border-box;
        /* color: #463f2d; */
        background-color: #fff;
        margin-left: 0.5rem;
        padding: 0.1rem 0.3rem
    }


    .rstdtl-course-list__price-wrap {
        display: table-cell;
        white-space: nowrap;
        vertical-align: top;
        padding-right: 0rem;
    }

    .rstdtl-course-list__price-wrap {
        display: block;
        width: 100%;
        white-space: nowrap;
        vertical-align: top;
        padding-right: 0rem;
		margin-bottom: 1rem;
    }

    .rstdtl-course-list__price-discount {
        display: inline-block
    }

    .rstdtl-course-list__price-before {
        /* color: #13131e; */
        text-align: left;
        margin-right: 0.5rem;
        margin-bottom: -0.2rem;
        font-size: .1rem
    }

    .rstdtl-course-list__price-hotpepper-discount {
        display: inline-block;
        position: relative;
        margin-bottom: 7px;
        border: solid 1px #d2d2d2;
        border-radius: 2px;
        color: #949499;
        font-weight: bold;
        line-height: 1;
        background-color: #fff;
        padding: 0.4rem 0.5rem 0.3rem;
        font-size: 1rem
    }

    .rstdtl-course-list__price-hotpepper-discount::before,
    .rstdtl-course-list__price-hotpepper-discount::after {
        display: block;
        position: absolute;
        border: solid transparent;
        width: 0;
        height: 0;
        content: ''
    }

    .rstdtl-course-list__price-hotpepper-discount::before {
        bottom: -7px;
        border-width: 6px 6px 0;
        border-top-color: #d2d2d2;
        right: 3rem
    }

    .rstdtl-course-list__price-hotpepper-discount::after {
        bottom: -5px;
        border-width: 5px 5px 0;
        border-top-color: #fff;
        right: 3.1rem
    }

    .rstdtl-course-list__price-num {
        /* color: #000; */
        font-weight: bold;
        font-size: 1.4rem
    }

    .rstdtl-course-list.rstdtl-course-list--hotpepper .rstdtl-course-list__price-num {
        display: block
    }

    .rstdtl-course-list__price-num > em {
        margin-right: 2px;
        font-family: Arial, sans-serif;
        font-size: 2.0rem
    }

    .rstdtl-course-list__price-num-tax {
        font-weight: normal;
        font-size: 0.6rem;
    }

    .rstdtl-course-list__data-body {
        display: block;
        width: 100%;
        line-height: 1;
        padding-top: 0.5rem
    }

    .rstdtl-course-list__data-body:before,
    .rstdtl-course-list__data-body:after {
        display: block;
        overflow: hidden;
        content: ""
    }

    .rstdtl-course-list__data-body:after {
        clear: both
    }

    .rstdtl-course-list__img {
    /*        display: table-cell;*/
        padding: 20px 15px 20px 0;
        width: 200px;
        width: 100%;
    }

    .rstdtl-course-list__img img {
        width: 90%;
        height: auto;
        display: block;
        margin: 0 auto;
    }


    .rstdtl-course-list__img .rstdtl-course-list__target:hover {
        opacity: 0.8
    }

    .rstdtl-course-list.rstdtl-course-list--hotpepper .rstdtl-course-list__img:hover {
        opacity: 1
    }


    .rstdtl-course-list__subinfo {
    /*        display: table;*/
        position: relative;
    /*        float: left;*/
        padding-top: 0.5rem
    }



    .rstdtl-course-list__desc {
        color: #fff;
        line-height: 1.6;
        font-size: 1.2rem;
    }

    .rstdtl-course-list__data-footer {
        float: right
    }

    .rstdtl-course-list__label {
        margin-left: 5px
    }

    .rstdtl-course-list__label.rstdtl-course-list__label {
        background-color: #ffd700;
        padding: 0.2rem 0.4rem;
        line-height: 1.1rem;
        font-size: 1.3rem;
		color: #fff;
    }

    .rstdtl-course-list__hotpepper-target::before {
        color: #999
    }


    .rstdtl-course-list__course-rule {
        display: table-cell;
        white-space: nowrap;
        vertical-align: bottom;
        padding: 0 0 0.3rem 1rem
    }




    .rstdtl-course-list__course-rule > dt,
    .rstdtl-course-list__course-rule > dd {
        display: inline-block
    }

    .rstdtl-course-list__course-rule > dd {
        margin-right: 0.5rem
    }

    .rstdtl-course-list__course-rule-title::before {
        display: inline-block;
        color: #bcb08a;
        vertical-align: -0.1rem
    }



    .rstdtl-course-list__course-rule-title.rstdtl-course-list__course-rule-title--member::before {
        /* font-family: "Tabelog Glyph"; */
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        -webkit-font-smoothing: antialiased;
        text-transform: none;
        speak: none;
        content: "※"
    }

    .rstdtl-course-list__course-rule-title.rstdtl-course-list__course-rule-title--time::before {
        /* font-family: "Tabelog Glyph"; */
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        -webkit-font-smoothing: antialiased;
        text-transform: none;
        speak: none;
        content: "※"
    }

    .rstdtl-course-list__course-rule-title > i {
        display: none
    }

    .rstdtl-course-list__action-btn {
        display: table-cell;
        width: 100px;
        text-align: right;
        vertical-align: top;
        padding-left: 1.2rem;
        color: #fff;
    }

    .rstdtl-course-list__reserve-notice {
        display: block;
        color: #b4b4b4;
        text-indent: -1em;
        padding-left: 1em;
        text-align: left;
        white-space: nowrap;
        vertical-align: middle;
        line-height: 1.2;
        font-size: 0.8rem
    }

    .rstdtl-course-list__action-btn-target {
        display: block;
        float: right;
        clear: right;
        cursor: pointer;
        white-space: nowrap;
        vertical-align: middle;
    /*        width: 10rem;*/
        /* color: #111; */
    }

    .rstdtl-course-list__action-btn-target + .rstdtl-course-list__action-btn-target {
        margin-top: 0.6rem
    }

    .rstdtl-course-list__reserve-notice + .rstdtl-course-list__action-btn-target {
        margin-top: 0.6rem
    }

    .rstdtl-course-list__coupon {
        display: inline-block;
        float: right;
        margin-top: 0.5rem
    }

    .rstdtl-course-list__coupon-btn {
        float: right
    }

    .rstdtl-course-list__coupon-contents {
        width: auto;
        text-align: left;
        padding-top: 0.7rem
    }

    .rstdtl-course-rdimg {
        position: absolute;
        bottom: 0;
        left: 0
    }

    .rstdtl-course-list__tieup-mc {
        display: table-row;
        position: absolute;
        left: 0;
        z-index: 5;
        border-radius: 6px;
        vertical-align: middle;
        /* background-color: #221815; */
        top: 1.5rem
    }

    .rstdtl-course-list__tieup-mc:hover {
        opacity: 0.8
    }

    .rstdtl-course-list__tieup-mc-target {
        display: block;
        box-sizing: border-box;
        padding: 0.6rem 1.2rem 0.6rem 1.5rem
    }

    .rstdtl-course-list__tieup-mc-target::after {
        color: #fff;
        vertical-align: middle
    }

    .rstdtl-course-list__tieup-mc-target:hover {
        text-decoration: none
    }

    .rstdtl-course-list__tieup-mc-logo {
        display: inline-block;
        width: 123px;
        height: 22px;
        background: url('https://tblg.k-img.com/images/shared/tieup/mastercard_pricelessjapan/tieup_logo_mastercard.png?1547477503') no-repeat 0 0;
        background-size: 123px 22px;
        vertical-align: bottom
    }

    .rstdtl-course-list__tieup-mc-logo > i {
        display: none
    }

    .rstdtl-course-list__tieup-mc-text {
        display: inline-block;
        color: #fff;
        margin-left: 1rem;
        padding-bottom: 0.2rem;
        font-size: 1.1rem
    }

    .rstdtl-course-list__tieup-mc-text > em {
        color: #ff9600;
        font-weight: bold;
        margin-right: 0.7rem;
        font-size: 1.3rem
    }

	.cms_menu___modal--close {
		left: 10px;
	}
	

}

.tblg-coupon__main-title,
.tblg-coupon__main-contents,
.rstdtl-course-list__coupon,
.tblg-coupon-toggle-btn{
    visibility: hidden;
    display: none;
    width: 0;
    height: 0;
}

#cms_menu__modal {
    z-index: 99999999 !important;
}

.rstdtl-tax-alert {
    line-height: 1.6;
    padding: 2rem 0;
}





.thanx__txt {
  font-size: 1.1em;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
}
.thanx_btn a {
  display: block;
background: #18284d;
border-radius: 0.8em;
  width: max-content;
  color: #fff;
  padding: 1rem 5rem;
  margin: 4rem auto 0;

  font-size: 1.2em;
}






/*
 * Legal Table
 */

 .topTokusho {
  padding: 9em 0 8em;
 }
 .topTokusho h2 {
  text-align: center;
  line-height: 1.5;
  font-size: 2.2em;
  font-weight: 700;
  margin: 0 0 2em;
    word-break: keep-all;
    word-break: auto-phrase;
    overflow-wrap: anywhere;
 }
.legal-table {
  --legal-border: #aab9c8;
  --legal-heading-bg: #ebebeb;
  --legal-heading-text: #173954;

  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border: 1px solid var(--legal-border);
  font-size: 1em;
  line-height: 1.55;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--legal-border);
  padding: 9px 12px;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.legal-table th {
  width: 24%;
  background: var(--legal-heading-bg);
  color: var(--legal-heading-text);
  font-weight: 500;
}
.legal-table td {
  font-weight: 400;
}

.legal-table a {
  color: #000;
}

@media (max-width: 640px) {
  .topTokusho {
    padding: 6em 0 4em;
  }
  .topTokusho h2 {
    font-size: 1.8em;
  }

  .legal-table {
    font-size: 1em;
  }

  .legal-table th,
  .legal-table td {
    padding: 8px 10px;
  }

  .legal-table th {
    width: 34%;
  }
}





/*
 * Privacy
 */

 .topPrivacy {
  padding: 9em 0 8em;
 }
 .topPrivacy h2 {
  text-align: center;
  line-height: 1.5;
  font-size: 2.2em;
  font-weight: 700;
  margin: 0 0 2em;
    word-break: keep-all;
    word-break: auto-phrase;
    overflow-wrap: anywhere;
 }

.topPrivacy .privacy2 {
    margin: 0 auto;
  }
  .topPrivacy .privacy2 p {
    font-size: 1em;
    font-weight: 400;
  }
  .topPrivacy .privacy2 span {
    display: block;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 0.8em;
  }
  
  
  @media screen and (max-width: 767px) {
    .topPrivacy h2 {
      font-size: 1.8em;
    }
      
      .legal-table a{
          text-decoration: underline;
      }
  }


.reserve-btn {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 8.5rem;
	z-index: 9999;
	background-color: green;
	display: flex;
	justify-content: center;
    
    border-radius: 4rem;
}

.reserve-btn-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	color: #fff;
	writing-mode: vertical-lr;
	padding: 3rem 0;
	text-align: center;
	font-weight: 600;
	line-height: 1;
    font-size: 3rem;
}


@media screen and (max-width: 767px) {
	.reserve-btn {
		top: initial;
		right: initial;
		left: 0;
		bottom: 0;
		width: 100%;
		transform: initial;
        
    border-radius: 0;
	}

	.reserve-btn-link {
		display: block;
		writing-mode: initial;
		line-height: 1.4;
		padding: 1rem 0;
        text-decoration: underline;
	}
}


/* phone link fix 2026-08-28 */
a[href^="tel:"] {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.common-btn, .reserve-btn-link {
  position: relative;
  z-index: 10000;
}
.common-btn picture,
.common-btn img {
  display: block;
  width: 100%;
}
.common-btn picture *,
.common-btn img {
  pointer-events: none;
}


/* =========================================================
   Dynamic call-tracking phone CTA
   The phone number is real DOM text so Delacon can replace
   both the visible number and tel: destination.
   ========================================================= */
.common-btn {
  position: relative;
  box-sizing: border-box;
  display: block;
  width: min(90%, 920px);
  margin: 2.2rem auto 0;
  padding: 2.4rem 1.8rem 1.15rem;
  background: linear-gradient(#1eb817, #078a08);
  border: 4px solid #0d8e10;
  border-radius: 999px;
  box-shadow: inset 0 -10px 0 rgba(0, 75, 0, .42);
  color: #fff;
  text-decoration: none !important;
  text-align: center;
  line-height: 1;
  overflow: visible;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}

.phone-cta__label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -56%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60%;
  padding: .45rem 1.6rem .5rem;
  background: #ffd400;
  border: 3px solid #0d8e10;
  border-radius: 999px;
  color: #151515;
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  font-weight: 900;
  line-height: 1.05;
  white-space: nowrap;
  z-index: 3;
}

.phone-cta__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}

.phone-cta__icon {
  justify-self: center;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  font-family: sans-serif;
  line-height: 1;
}

.phone-cta__number {
  justify-self: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 900;
  letter-spacing: .025em;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none !important;
}

.phone-cta__arrow {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
  background: #fff;
  color: #159d12;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.phone-cta__sub {
  display: block;
  margin-top: .65rem;
  padding-bottom: .2rem;
  font-size: clamp(.9rem, 1.6vw, 1.35rem);
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

.common-btn--simple {
  margin-top: 2rem;
  padding-top: 1.45rem;
}

.common-btn--simple .phone-cta__label {
  display: none;
}

/* Ensure child artwork never steals taps. */
.common-btn * {
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .common-btn {
    width: 90%;
    max-width: none;
    margin-top: 2rem;
    padding: 1.75rem .9rem .78rem;
    border-width: 3px;
    box-shadow: inset 0 -7px 0 rgba(0, 75, 0, .42);
  }

  .phone-cta__label {
    min-width: 62%;
    padding: .35rem .9rem .42rem;
    border-width: 2px;
    font-size: clamp(.98rem, 4.25vw, 1.5rem);
  }

  .phone-cta__main {
    grid-template-columns: 10% 80% 10%;
  }

  .phone-cta__icon {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .phone-cta__number {
    font-size: clamp(2.3rem, 10.2vw, 3.4rem);
    letter-spacing: .01em;
  }

  .phone-cta__arrow {
    width: 2.2rem;
    height: 2.2rem;
    font-size: .95rem;
  }

  .phone-cta__sub {
    margin-top: .48rem;
    font-size: clamp(.72rem, 2.8vw, 1rem);
  }

  .common-btn--simple {
    padding-top: 1.05rem;
  }
}
