@charset "UTF-8";

/* --- 共通設定 --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: min(100px, 9.09vw);
}

body {
  margin: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
p,
span,
a,
li,
th,
td {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.en {
  color: #ff0000;
}

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

a:hover {
  opacity: 0.8;
}

/* --- コンテナ設定 --- */
img {
  max-width: 100%;
  height: auto;
  border-style: none;
  display: block;
}

/* 消してる要素 */
.sp-header,
.sp,
.sp-footer {
  display: none;
}

/* アニメーションの動き */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

/* 画面に入った時に付与するクラス */
.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ヘッダー */
#header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  background: #fff0cc;
}

.header-container {
  width: 100%;
  padding: 0 min(10px, 0.69vw);
  margin: 0 auto;
}

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

.header-logo {
  width: min(270px, 18.75vw);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: min(40px, 2.78vw);
}

.header-nav nav ul {
  display: flex;
  align-items: center;
  gap: min(45px, 3.13vw);
}

.header-nav nav ul > li {
  position: relative;
  padding: min(30px, 2.08vw) 0;
}

.header-nav nav ul > li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(5px, 0.35vw);
  color: #000;
  position: relative;
}

.header-nav nav ul > li > a .en {
  font-size: min(14px, 0.97vw);
  line-height: 1;
}

.header-nav nav ul > li > a span:last-child {
  font-size: min(16px, 1.11vw);
  line-height: 1.4;
}

.header-nav nav ul > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: max(-18px, -1.25vw);
  transform: translateX(-50%);
  width: min(10px, 0.69vw);
  height: min(10px, 0.69vw);
  background-image: url(../image/part1.png);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: 0.3s;
}

.header-nav nav ul > li:hover > a::after,
.header-nav nav ul > li.current-menu-item > a::after {
  opacity: 1;
}

.has-sub-menu {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(210px, 14.58vw);
  background: rgba(255, 0, 0, 0.5);
  padding: min(15px, 1.04vw);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 100;
}

.has-sub-menu:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.has-sub-menu .sub-menu li:hover a::after {
  opacity: 0;
}

.header-nav nav ul > li .sub-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.header-nav nav ul > li .sub-menu ul li {
  width: 100%;
  padding: 0;
}

.header-nav nav ul > li .sub-menu ul li a {
  width: 100%;
  color: #fff;
  font-size: min(16px, 1.11vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: min(10px, 0.69vw);
  padding: min(15px, 1.04vw) 0;
  border-bottom: 1px dashed #fff;
  padding-left: min(40px, 2.78vw);
}

.sub-menu ul li a img {
  width: min(12px, 0.83vw);
  height: auto;
}

.header-tel {
  width: min(240px, 16.67vw);
  height: min(64px, 4.44vw);
  border-radius: 999px;
  background: #ff0000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(12px, 0.83vw);
}

.header-tel-icon {
  width: min(24px, 1.67vw);
}

.header-tel-text {
  color: #fff;
}

.header-tel-text span {
  display: block;
  font-size: min(14px, 0.97vw);
  color: #fff;
  line-height: 1;
}

.header-tel-text p {
  font-size: min(22px, 1.53vw);
  color: #fff;
  line-height: 1;
  margin-top: min(4px, 0.28vw);
}

/* トップ */
.main-v {
  position: relative;
  margin-top: min(100px, 6.94vw);
}

.main-v-img {
  width: 100%;
}

.main-v-container {
  position: absolute;
  top: min(50px, 3.47vw);
  right: min(70px, 4.86vw);
  z-index: 10;
}

.main-v-title h1 {
  font-size: min(60px, 4.17vw);
  color: #fff;
  line-height: 1.6;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.main-v-title h1 span {
  display: inline-block;
  font-size: min(60px, 4.17vw);
  color: #fff;
  line-height: 1.6;
}

.main-v-title h1 span:first-of-type {
  margin-top: min(170px, 11.81vw);
}

.main-v-title h1 span:last-of-type {
  margin-top: min(65px, 4.51vw);
}

.p1 {
  background-image: url(../image/top-back1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

/* p1-a */
.p1-a-container {
  padding-top: min(90px, 6.25vw);
}

.p1-a-box {
  width: min(1082px, 75.14vw);
  display: flex;
  align-items: center;
  gap: min(120px, 8.33vw);
  background-color: rgba(255, 240, 204, 0.6);
  padding: min(30px, 2.08vw);
  border-radius: min(30px, 2.08vw);
  margin: 0 auto;
}

.p1-a-title {
  text-align: center;
  padding-left: min(10px, 0.69vw);
}

.p1-a-title span {
  font-size: min(40px, 2.78vw);
}

.p1-a-title h2 {
  font-size: min(24px, 1.67vw);
  font-weight: 500;
}

.p1-a-item {
  flex: 1;
  max-height: min(106px, 7.36vw);
}

.p1-a-news {
  max-height: min(106px, 7.36vw);
  overflow-y: auto;
}

.p1-a-news-item {
  display: flex;
  gap: min(20px, 1.39vw);
  padding: min(20px, 1.39vw) 0;
}

.p1-a-news-item:first-child {
  padding-top: min(10px, 0.69vw);
}

.p1-a-news-item:last-child {
  padding-bottom: min(10px, 0.69vw);
}

.p1-a-news-date {
  flex-shrink: 0;
  font-size: min(16px, 1.11vw);
}

.p1-a-news-title {
  font-size: min(16px, 1.11vw);
  margin: 0;
}

.p1-a-news::-webkit-scrollbar {
  width: max(min(8px, 0.56vw), 4px);
}

.p1-a-news::-webkit-scrollbar-thumb {
  background: #fdda85;
}

/* p1-b */
.p1-b-container {
  padding-top: min(106px, 7.36vw);
}

.p1-b-box {
  display: flex;
  gap: min(80px, 5.56vw);
}

.p1-b-box.reverse {
  flex-direction: row-reverse;
}

.p1-b-item {
  flex: 1;
}

.p1-b-text {
  width: min(490px, 34.03vw);
  margin-top: min(100px, 6.94vw);
  margin-left: auto;
}

.p1-b-text h3 {
  font-size: min(24px, 1.67vw);
  font-weight: 500;
  padding-bottom: min(10px, 0.69vw);
}

.p1-b-text p {
  font-size: min(16px, 1.11vw);
  font-weight: 500;
  line-height: 2;
}

.p1-b-text .p1-b-p {
  font-size: min(20px, 1.39vw);
}

.p1-b-text .p1-b-p span {
  font-size: min(32px, 2.22vw);
}

.p1-b-img {
  width: calc(769 / 1440 * 100vw);
  margin-top: min(30px, 2.08vw);
}

.p1-b .header-tel {
  margin-top: min(60px, 4.17vw);
  margin-left: auto;
  margin-right: min(130px, 9.03vw);
}

/* p1-c */
.p1-c-container {
  padding-top: min(106px, 7.36vw);
}

.p1-b-box.reverse .p1-title {
  text-align: left;
}

.p1-c .p1-b-text {
  width: min(514px, 35.69vw);
  margin-top: min(36px, 2.5vw);
  margin-left: 0;
  margin-right: auto;
}

/* p1-d */
.p1-d-container {
  padding-top: min(106px, 7.36vw);
}

.p1-d .p1-title span {
  font-size: min(45px, 3.13vw);
}

.p1-d .p1-b-text {
  width: min(527px, 36.6vw);
  margin-top: min(26px, 1.81vw);
  margin-left: auto;
  margin-right: 0;
}

.p1-d .p1-d-btn {
  margin: min(53px, 3.68vw) auto 0;
}

.p1-d-btn {
  width: min(276px, 19.17vw);
  height: min(60px, 4.17vw);
  background: #ff0000;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  padding-left: min(28px, 1.94vw);
  padding-right: min(10px, 0.69vw);
}

.p1-d-btn span {
  color: #fff;
  font-size: min(22px, 1.53vw);
}

.p1-d-btn-img {
  width: min(45px, 3.13vw);
  height: min(45px, 3.13vw);
  display: flex;
  justify-content: center;
  align-items: center;
  border: max(min(3px, 0.21vw), 1px) solid #fff;
  border-radius: 50%;
}

.p1-d-btn-img img {
  width: min(20px, 1.39vw);
  height: auto;
}

.p1-d-btn:hover {
  background: #ff9797;
  opacity: 1;
}

/* p1-e */
.p1-e-container {
  padding: min(110px, 7.64vw) 0;
}

.p1-e-title {
  width: min(590px, 40.97vw);
  text-align: center;
  margin: 0 auto;
}

.p1-e-title span {
  font-size: min(50px, 3.47vw);
}

.p1-e-title h2 {
  font-size: min(24px, 1.67vw);
  font-weight: 500;
  padding-top: min(10px, 0.69vw);
  border-top: 2px solid #ff0000;
  margin-top: min(10px, 0.69vw);
}

.p1-e-text {
  width: min(812px, 56.39vw);
  margin: min(40px, 2.78vw) auto 0;
}

.p1-e-text p {
  font-size: min(16px, 1.11vw);
  line-height: 2;
}

.p1-e-box {
  display: flex;
  justify-content: center;
  gap: min(18px, 1.25vw);
  margin-top: min(65px, 4.51vw);
}

.p1-e-item {
  width: min(307px, 21.32vw);
  position: relative;
  text-align: center;
  background-color: #fff;
}

.p1-e-item span {
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: min(24px, 1.67vw);
  z-index: 10;
  transform: translateX(-50%);
  font-size: min(16px, 1.11vw);
  display: inline-block;
}

.p1-e .p1-d-btn {
  margin: min(40px, 2.78vw) auto 0;
}

/* p1-f */
.p1-f-container {
  background-color: rgba(255, 240, 204, 0.5);
  padding-bottom: min(80px, 5.56vw);
}

.p1-f .p1-b-box {
  width: calc(1360 / 1440 * 100vw);
  margin-left: auto;
}

.p1-f .p1-b-img {
  width: calc(676 / 1440 * 100vw);
  margin-top: min(5px, 0.35vw);
}

.p1-f-text {
  width: min(1117px, 77.57vw);
  margin: min(66px, 4.58vw) auto 0;
}

.p1-f-text p {
  font-size: min(16px, 1.11vw);
  line-height: 2;
}

.p1-f .p1-d-btn {
  margin: min(66px, 4.58vw) auto 0;
}

/* p1-g */
.p1-g-container {
  padding: min(75px, 5.21vw) 0 min(145px, 10.07vw);
}

.p1-g .p1-b-box {
  width: calc(1360 / 1440 * 100vw);
  gap: min(118px, 8.19vw);
  margin-right: auto;
}

.p1-g-map {
  width: calc(634 / 1440 * 100vw);
  margin-top: min(30px, 2.08vw);
}

.p1-g-map iframe {
  width: 100%;
  height: min(576px, 40vw);
}

.p1-g-map p {
  font-size: min(16px, 1.11vw);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(10px, 0.69vw);
  padding-top: min(10px, 0.69vw);
}

.p1-g-map p img {
  width: min(27px, 1.88vw);
  height: auto;
}

.p1-g-table {
  width: min(490px, 34.03vw);
  margin-top: min(20px, 1.39vw);
  margin-left: auto;
}

.p1-g-table table {
  width: 100%;
  border-collapse: collapse;
}

.p1-g-table th,
.p1-g-table td {
  font-size: min(16px, 1.11vw);
  padding: min(15px, 1.04vw) 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px dashed #888888;
}

.p1-g-table th {
  width: min(160px, 11.11vw);
  font-weight: 500;
  padding-left: min(5px, 0.35vw);
}

.p1-g-table td span {
  display: block;
  margin-top: min(5px, 0.35vw);
  font-size: 0.9em;
}

.p1-g-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: min(40px, 2.78vw);
  margin-top: min(48px, 3.33vw);
}

.p1-g-btn {
  width: min(270px, 18.75vw);
  height: min(64px, 4.44vw);
  font-size: min(20px, 1.39vw);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(5px, 0.35vw);
  background-color: #ff0000;
  border-radius: min(100px, 6.94vw);
  /* margin-right: -76px; */
}

.p1-g-btn img {
  width: min(29px, 2.01vw);
  height: auto;
}

/* 共通 */
.p1-title {
  text-align: right;
}

.p1-title span {
  font-size: min(50px, 3.47vw);
}

.p1-title h2 {
  font-size: min(24px, 1.67vw);
  font-weight: 500;
  padding-top: min(10px, 0.69vw);
  border-top: 2px solid #ff0000;
  margin-top: min(10px, 0.69vw);
}

/* 当店のこだわり */
/* p2-a */
.p2-a-container {
  padding-top: min(100px, 6.94vw);
}

.p2-a .p1-b-text,
.p2-b .p1-b-text,
.p2-c .p1-b-text {
  margin-top: min(24px, 1.67vw);
}

/* p2-b */
.p2-b-container {
  padding-top: min(140px, 9.72vw);
}

.p2-b .p1-b-text {
  margin-left: 0;
  margin-right: auto;
}

/* p2-c */
.p2-c-container {
  padding: min(140px, 9.72vw) 0 min(600px, 41.67vw);
}

/* メニュー一覧 */
/* p3-a */
.p3-a-container {
  padding: min(117px, 8.13vw) 0 min(600px, 41.67vw);
}

.p3-a-box {
  width: min(1280px, 88.89vw);
  margin: min(100px, 6.94vw) auto 0;
}

.p3-a-box:first-child {
  margin-top: min(170px, 11.81vw);
}

.p3-a-title {
  display: flex;
  align-items: center;
  gap: min(10px, 0.69vw);
  position: relative;
}

.p3-a-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: min(150px, 10.42vw);
  right: 0;
  transform: translateY(-50%);
  height: 1px;
  background: #ff0000;
}

.p3-a-title img {
  width: min(24px, 1.67vw);
  height: auto;
}

.p3-a-title h3 {
  font-size: min(24px, 1.67vw);
  font-weight: 500;
  font-family: "Asta Sans", sans-serif;
  color: #ff0000;
}

.p3-a-item {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: min(46px, 3.19vw) min(18px, 1.25vw);
  overflow: hidden;
  margin-top: min(40px, 2.78vw);
}

.p3-a-post {
  width: min(307px, 21.32vw);
  height: min(307px, 21.32vw);
  background-color: #fff;
  position: relative;
}

.p3-a-img {
  width: 100%;
}

.p3-a-post-title {
  width: 100%;
  text-align: center;
  font-size: min(16px, 1.11vw);
  font-weight: 500;
  position: absolute;
  left: 50%;
  bottom: min(10px, 0.69vw);
  z-index: 10;
  transform: translateX(-50%);
  padding: 0 min(5px, 0.35vw);
}

.p3-a-empty {
  font-size: min(24px, 1.67vw);
}

/* メニュー詳細 */
/* p4-a */
.p4-a-container {
  padding-top: min(160px, 11.11vw);
}

.p4-a-box {
  width: min(1250px, 86.81vw);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.p4-a-img {
  width: min(576px, 40vw);
}

.p4-a-img img {
  width: 100%;
  height: auto;
}

.p4-a-content {
  width: min(611px, 42.43vw);
}

.p4-a-title {
  font-size: min(36px, 2.5vw);
  font-weight: 500;
  color: #ff0000;
  padding: min(10px, 0.69vw) 0;
  border-bottom: 1px solid #ff0000;
}

.p4-a-text {
  margin-top: min(35px, 2.43vw);
}

.p4-a-text p {
  font-size: min(16px, 1.11vw);
  line-height: 2;
}

.p4-a-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: min(210px, 14.58vw);
}

/* p4-b */
.p4-b-container {
  padding-bottom: min(680px, 47.22vw);
}

.p4-b .p4-b-container .p3-a-box {
  margin-top: min(580px, 40.28vw);
}

/* 店舗情報 */
/* p5-a */
.p5-a-container {
  padding: min(100px, 6.94vw) 0 min(560px, 38.89vw);
}

.p5-a-text {
  width: min(986px, 68.47vw);
  margin: min(40px, 2.78vw) auto 0;
}

.p5-a-text p {
  font-size: min(16px, 1.11vw);
  line-height: 2;
}

.p5-a-box {
  width: min(640px, 44.44vw);
  margin: min(170px, 11.81vw) auto 0;
}

.p5-a-table {
  margin-top: min(60px, 4.17vw);
}

.p5-a-table table {
  width: 100%;
  border-collapse: collapse;
}

.p5-a-table table th,
.p5-a-table table td {
  text-align: left;
  font-size: min(16px, 1.11vw);
  font-weight: 500;
  padding-top: min(20px, 1.39vw);
  padding-bottom: min(20px, 1.39vw);
}

.p5-a-table table th {
  width: min(188px, 13.06vw);
  padding-left: min(60px, 4.17vw);
  border-bottom: min(7px, 0.49vw) solid #fcbebe;
}

.p5-a-table table td {
  width: auto;
  padding-left: min(70px, 4.86vw);
  border-bottom: min(7px, 0.49vw) solid #fff6e0;
}

.p5-a-box2 {
  margin-top: min(160px, 11.11vw);
}

.p5-a-item2 {
  width: min(371px, 25.76vw);
  display: flex;
  flex-direction: column;
  gap: min(10px, 0.69vw);
  margin: 0 auto;
}

.p5-a-text2,
.p5-a-text3 {
  display: flex;
  align-items: center;
  gap: min(10px, 0.69vw);
}

.p5-a-text2 img {
  width: min(28px, 1.94vw);
  height: auto;
}

.p5-a-text3 img {
  width: min(36px, 2.5vw);
  height: auto;
}

.p5-a-text2 p,
.p5-a-text3 p {
  font-size: min(16px, 1.11vw);
  font-weight: 500;
}

.p5-a-map {
  width: min(958px, 66.53vw);
  height: min(564px, 39.17vw);
  margin: min(12px, 0.83vw) auto 0;
}

.p5-a-map iframe {
  width: 100%;
  height: 100%;
}

/* お問い合わせ / ご注文 */
/* p6-a */
.p6-a-container {
  padding-top: min(100px, 6.94vw);
}

.p6-a-box {
  width: min(654px, 45.42vw);
  margin: min(30px, 2.08vw) auto 0;
}

.contact-table {
  width: 100%;
  border-collapse: collapse;
}

.contact-table tr:not(:first-child) th,
.contact-table tr:not(:first-child) td {
  padding-top: min(28px, 1.94vw);
}

.contact-table th {
  width: min(220px, 15.28vw);
  padding-right: min(40px, 2.78vw);
  text-align: left;
  vertical-align: top;
  font-size: min(16px, 1.11vw);
  font-weight: 500;
  color: #333;
}

.contact-table td {
  vertical-align: top;
}

.contact-table td input[type="text"]:not([name="zip1"]):not([name="zip2"]),
.contact-table td input[type="tel"],
.contact-table td input[type="email"],
.contact-table td textarea {
  width: 100%;
}

.zip-label p,
.pref-label p,
.address-label p {
  font-size: min(14px, 0.97vw);
  font-weight: 500;
  line-height: 1.4;
  color: #7f7f7f;
}

.zip-label,
.address-label {
  margin-top: min(5px, 0.35vw);
}

.contact-table input,
.contact-table select,
.contact-table textarea {
  width: 100%;
  height: min(44px, 3.06vw);
  padding: 0 min(18px, 1.25vw);
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background: #f6f6f6;
  font-size: min(16px, 1.11vw);
  box-sizing: border-box;
}

.contact-table textarea {
  height: min(220px, 15.28vw);
  padding: min(15px, 1.04vw) min(18px, 1.25vw);
  resize: vertical;
}

.contact-table input::placeholder {
  color: #999;
}

.zip p {
  display: flex;
  align-items: center;
  gap: min(10px, 0.69vw);
}

.zip input {
  width: min(72px, 5vw);
}

.zip span {
  font-size: min(20px, 1.39vw);
}

.pref {
  margin-top: 0;
}

.pref select {
  width: min(190px, 13.19vw);
}

.address2 {
  padding-top: min(28px, 1.94vw);
}

.wpcf7-number[name="quantity"] {
  width: min(72px, 5vw) !important;
}

.contact-table td br {
  display: none;
}

.unit-text {
  font-size: min(14px, 0.97vw);
  color: #888888;
  margin-left: min(10px, 0.69vw);
}

.wpcf7-number[name="month"],
.wpcf7-number[name="order-day"] {
  width: min(72px, 5vw) !important;
}

.wpcf7-number[name="order-day"] {
  margin-left: min(20px, 1.39vw);
}

.zip p .wpcf7-form-control-wrap {
  display: inline-block;
  width: min(72px, 5vw);
}

.zip .wpcf7-form-control-wrap input {
  width: min(72px, 5vw);
}

.form-note {
  margin-top: min(10px, 0.69vw);
  color: #f00;
  font-size: min(14px, 0.97vw);
  line-height: 1.6;
}

.contact-submit {
  text-align: center;
  margin: min(120px, 8.33vw) auto 0;
}

.contact-submit .wpcf7-submit {
  width: min(276px, 19.17vw);
  height: min(60px, 4.17vw);
  background: url(../image/part12.png) no-repeat center / 100% 100%;
  border: none;
  color: transparent;
  font-size: 0;
  cursor: pointer;
  transition: 0.3s;
}

.contact-submit .wpcf7-submit:hover {
  opacity: 0.8;
}

.wpcf7-spinner {
  display: none;
}

.zip .wpcf7-form-control-wrap {
  display: inline-block;
  width: auto;
}

.wpcf7-form-control-wrap[data-name="quantity"] {
  display: inline-block;
  width: auto;
}

.wpcf7-form-control-wrap[data-name="month"],
.wpcf7-form-control-wrap[data-name="day"] {
  display: inline-block;
  width: auto;
}

/* p6-b */
.p6-b-container {
  padding-top: min(230px, 15.97vw);
}

.p6-b-text {
  width: min(711px, 49.38vw);
  margin: min(58px, 4.03vw) auto 0;
}

.p6-b-text p {
  font-size: min(16px, 1.11vw);
  line-height: 2;
}

.p6-b-box {
  width: min(817px, 56.74vw);
  background-color: #fff;
  box-shadow: 0 min(4px, 0.28vw) min(4px, 0.28vw) rgba(0, 0, 0, 0.25);
  padding: min(36px, 2.5vw) min(40px, 2.78vw);
  margin: min(68px, 4.72vw) auto 0;
}

.p6-b-item {
  margin-top: min(26px, 1.81vw);
}

.p6-b-item:first-child {
  margin-top: 0;
}

.p6-b-item h3 {
  font-size: min(20px, 1.39vw);
  font-weight: 500;
  color: #ff0000;
  padding-bottom: min(10px, 0.69vw);
}

.p6-b-item p {
  font-size: min(16px, 1.11vw);
  line-height: 2;
}

.p6-b-item table {
  width: 100%;
}

.p6-b-item table th,
.p6-b-item table td {
  font-size: min(16px, 1.11vw);
  font-weight: 400;
  line-height: 2;
}

.p6-b-item table th {
  width: min(170px, 11.81vw);
  text-align: left;
}

/* p6-c */
.p6-c-container {
  padding: min(230px, 15.97vw) 0 min(310px, 21.53vw);
}

.p6-c-box {
  text-align: center;
  margin-top: min(32px, 2.22vw);
}

.p6-c-box p {
  font-size: min(24px, 1.67vw);
  font-weight: 500;
}

/* 下層共通 */
.sub-v {
  margin-top: min(100px, 6.94vw);
}

.sub-v-box {
  position: relative;
}

.sub-v-title {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
}

.sub-v-title h1 {
  font-size: min(50px, 3.47vw);
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.sub-v-title span {
  font-size: min(24px, 1.67vw);
  font-weight: bold;
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.sub {
  background-image: url(../image/sub-back.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

/* フッター */
footer {
  background-color: rgba(255, 240, 204, 0.5);
}

.footer-container {
  width: min(1220px, 84.72vw);
  display: flex;
  justify-content: space-between;
  padding: min(36px, 2.5vw) 0 min(65px, 4.51vw);
  margin: 0 auto;
}

.footer-item {
  width: min(394px, 27.36vw);
  text-align: center;
}

.footer-logo {
  width: 100%;
}

.footer-text {
  margin-top: min(53px, 3.68vw);
}

.footer-text p {
  font-size: min(16px, 1.11vw);
  line-height: 1.8;
}

.footer-nav {
  margin-top: min(87px, 6.04vw);
}

.footer-link {
  width: min(53px, 3.68vw);
  display: inline-block;
}

.footer-nav ul {
  margin-top: min(76px, 5.28vw);
  display: flex;
  align-items: center;
  gap: min(26px, 1.81vw);
}

.footer-nav ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(5px, 0.35vw);
}

.footer-nav ul li a .en {
  font-weight: 400;
}

.footer-nav ul li a span {
  font-size: min(16px, 1.11vw);
  font-weight: 500;
}

.copy-right {
  text-align: center;
  background-color: #ff0000;
  padding: min(20px, 1.39vw) 0;
}

.copy-right p {
  font-size: min(16px, 1.11vw);
  color: #fff;
}

/* トップに戻る */
.pagetop {
  position: fixed;
  right: min(38px, 2.64vw);
  bottom: min(75px, 5.21vw);
  width: min(87px, 6.04vw);
  height: min(87px, 6.04vw);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.pagetop img {
  width: 100%;
  height: 100%;
}

.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.pagetop:hover {
  transform: translateY(-5px);
}

/* お知らせ内容 1100で可変 */
.single-container {
  width: 100%;
  padding: min(60px, 5.45vw) 0;
}

.single-box {
  width: min(1000px, 90.91vw);
  margin: 0 auto;
}

.single-title {
  font-size: min(32px, 2.91vw);
  font-weight: 600;
  margin-bottom: min(30px, 2.73vw);
  line-height: 1.4;
}

.single-img {
  width: 100%;
  max-width: min(600px, 54.55vw);
  margin-bottom: min(40px, 3.64vw);
}

.single-img img {
  width: 100%;
  height: auto;
  display: block;
}

.single-content {
  font-size: min(16px, 1.45vw);
  line-height: 1.8;
  color: #333;
}

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

@media screen and (max-width: 767px) {
  /* 全体 */
  #header,
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /* ヘッダー */
  .sp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #fff0cc;
    z-index: 9999;
    display: block;
  }

  .sp-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 6px;
  }

  .sp-header-logo img {
    width: 136px;
    height: auto;
  }

  /* ハンバーガーボタン */
  .sp-menu-btn {
    position: relative;
    width: 30px;
    height: 30px; /* MENU分高さを追加 */
    background: transparent;
    border: none;
    z-index: 1000;
  }

  .sp-menu-btn span {
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ff0000;
    transition: 0.3s;
  }

  /* ハンバーガー */
  .sp-menu-btn span:nth-child(1) {
    top: 0;
  }

  .sp-menu-btn span:nth-child(2) {
    top: 8px;
  }

  .sp-menu-btn span:nth-child(3) {
    top: 16px;
  }

  /* 開いた時 */
  .sp-menu-btn.is-active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }

  .sp-menu-btn.is-active span:nth-child(2) {
    opacity: 0;
  }

  .sp-menu-btn.is-active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }

  /* MENU文字 */
  .sp-menu-btn::after {
    content: "MENU";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    font-size: 10px;
    line-height: 1;
    color: #ff0000;
    letter-spacing: 0.08em;
    font-weight: 500;
    font-family: sans-serif;
  }

  /* 全画面メニュー */
  .sp-header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fff0cc;
    transition: 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .sp-header-nav.is-active {
    right: 0;
  }

  .sp-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sp-nav-list li {
    margin: 25px 0;
  }

  .sp-nav-list li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
  }

  .sp-nav-list li a .en {
    font-size: 12px;
  }

  .sp-menu-parent {
    position: relative;
  }

  .sp-menu-parent::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -25px;
    width: 12px;
    height: 12px;
    background: url(../image/part1.png) no-repeat center / contain;
    transform: translateY(-50%) rotate(180deg);
  }

  /* サブメニューが開いたら非表示 */
  .sp-menu-parent.is-open::after {
    opacity: 0;
  }

  .sp-sub-btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    border: none;
    background: none;
    color: inherit;
    text-align: left;
    cursor: pointer;
  }

  .sp-sub-menu {
    display: none;
    background: rgba(255, 0, 0, 0.5);
    margin-top: 20px;
  }

  .sp-sub-menu li {
    margin: 0;
  }

  .sp-sub-menu li a {
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 100px;
  }

  .sp-sub-menu li a img {
    width: 14px;
    height: auto;
  }

  .sp-sub-menu.is-open {
    display: block;
  }

  /* トップ */
  .main-v {
    position: relative;
    margin-top: 50px;
  }

  .main-v-img {
    width: 100%;
  }

  .main-v-container {
    position: absolute;
    top: 5px;
    right: 25px;
    z-index: 10;
  }

  .main-v-title h1 {
    font-size: 20px;
    color: #fff;
    line-height: 1.6;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }

  .main-v-title h1 span {
    display: inline-block;
    font-size: 20px;
    color: #fff;
    line-height: 1.3;
  }

  .main-v-title h1 span:first-of-type {
    margin-top: 60px;
  }

  .main-v-title h1 span:last-of-type {
    margin-top: 22px;
  }

  .p1 {
    background-image: url(../image/top-back1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
  }

  /* p1-a */
  .p1-a-container {
    padding-top: 50px;
  }

  .p1-a-box {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 240, 204, 0.6);
    padding: 25px 18px;
    border-radius: 30px;
    margin: 0 auto;
  }

  .p1-a-title {
    text-align: center;
    padding-left: 0;
  }

  .p1-a-title span {
    font-size: 40px;
  }

  .p1-a-title h2 {
    font-size: 24px;
    font-weight: 500;
  }

  .p1-a-item {
    width: 100%;
    max-height: 224px;
  }

  .p1-a-news {
    max-height: 224px;
    overflow-y: auto;
  }

  .p1-a-news-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }

  .p1-a-news-item:first-child {
    padding-top: 10px;
  }

  .p1-a-news-item:last-child {
    padding-bottom: 10px;
  }

  .p1-a-news-date {
    flex-shrink: 0;
    font-size: 16px;
  }

  .p1-a-news-title {
    font-size: 16px;
    margin: 0;
  }

  .p1-a-news::-webkit-scrollbar {
    width: 4px;
  }

  .p1-a-news::-webkit-scrollbar-thumb {
    background: #fdda85;
  }

  /* p1-b */
  .p1-b-container {
    padding-top: 60px;
  }

  .p1-b-box {
    width: 92%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
    margin: 50px auto 0;
  }

  .p1-b-box.reverse {
    flex-direction: column;
  }

  .p1-b-item {
    width: 100%;
  }

  .p1-b-text {
    width: 100%;
    margin-top: 0;
    margin-left: auto;
  }

  .p1-b-text h3 {
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 10px;
  }

  .p1-b-text p {
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
  }

  .p1-b-text .p1-b-p {
    font-size: 20px;
  }

  .p1-b-text .p1-b-p span {
    font-size: 26px;
  }

  .p1-b-img {
    max-width: 400px;
    width: 100%;
    margin: 50px auto;
  }

  .p1-b .header-tel {
    margin: 34px auto 0;
  }

  .header-tel {
    width: 270px;
    height: 60px;
    border-radius: 999px;
    background: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .header-tel-icon {
    width: 24px;
  }

  .header-tel-text {
    color: #fff;
  }

  .header-tel-text span {
    display: block;
    font-size: 14px;
    color: #fff;
    line-height: 1;
  }

  .header-tel-text p {
    font-size: 22px;
    color: #fff;
    line-height: 1;
    margin-top: 4px;
  }

  /* p1-c */
  .p1-c-container {
    padding-top: 60px;
  }

  .p1-b-box.reverse .p1-title {
    text-align: center;
  }

  .p1-c .p1-b-text {
    width: 100%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
  }

  /* p1-d */
  .p1-d-container {
    padding-top: 60px;
  }

  .p1-d .p1-title span {
    font-size: 40px;
    line-height: 1;
  }

  .p1-d .p1-b-text {
    width: 100%;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .p1-d .p1-d-btn {
    margin: 40px auto 0;
  }

  .p1-d-btn {
    width: 276px;
    height: 60px;
    background: #ff0000;
    border-radius: 999px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    padding-left: 28px;
    padding-right: 10px;
  }

  .p1-d-btn span {
    color: #fff;
    font-size: 22px;
  }

  .p1-d-btn-img {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #fff;
    border-radius: 50%;
  }

  .p1-d-btn-img img {
    width: 20px;
    height: auto;
  }

  .p1-d-btn:hover {
    background: #ff9797;
    opacity: 1;
  }

  /* p1-e */
  .p1-e-container {
    padding: 60px 0;
  }

  .p1-e-title {
    width: 92%;
    text-align: center;
    margin: 0 auto;
  }

  .p1-e-title span {
    font-size: 40px;
  }

  .p1-e-title h2 {
    font-size: 24px;
    font-weight: 500;
    padding-top: 5px;
    border-top: 2px solid #ff0000;
    margin-top: 5px;
  }

  .p1-e-text {
    width: 92%;
    margin: 50px auto 0;
  }

  .p1-e-text p {
    font-size: 16px;
    line-height: 2;
  }

  .p1-e-box {
    width: 92%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
    margin: 50px auto 0;
  }

  .p1-e-item {
    width: 100%;
    position: relative;
    text-align: center;
    background-color: #fff;
  }

  .p1-e-item span {
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 2px;
    z-index: 10;
    transform: translateX(-50%);
    font-size: 16px;
    line-height: 1;
    display: inline-block;
  }

  .p1-e .p1-d-btn {
    margin: 40px auto 0;
  }

  /* p1-f */
  .p1-f-container {
    background-color: rgba(255, 240, 204, 0.5);
    padding-bottom: 60px;
  }

  .p1-f .p1-b-box {
    width: 92%;
    flex-direction: column-reverse;
    margin-left: auto;
    margin-top: 0;
  }

  .p1-f .p1-b-img {
    max-width: 400px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .p1-f-text {
    width: 92%;
    margin: 50px auto 0;
  }

  .p1-f-text p {
    font-size: 16px;
    line-height: 2;
  }

  .p1-f .p1-d-btn {
    margin: 40px auto 0;
  }

  /* p1-g */
  .p1-g-container {
    padding: 90px 0 65px;
  }

  .p1-g .p1-b-box {
    width: 92%;
    flex-direction: column;
    gap: 60px;
    margin-right: auto;
  }

  .p1-g-map {
    width: 100%;
    margin-top: 0;
  }

  .p1-g-map iframe {
    width: 100%;
    height: 340px;
  }

  .p1-g-map p {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
  }

  .p1-g-map p img {
    width: 27px;
    height: auto;
  }

  .p1-g-table {
    width: 100%;
    margin-top: 40px;
    margin-left: auto;
  }

  .p1-g-table table {
    width: 100%;
    border-collapse: collapse;
  }

  .p1-g-table th,
  .p1-g-table td {
    display: block;
    font-size: 16px;
    padding: 10px 0;
    text-align: left;
    border-bottom: 1px dashed #888888;
  }

  .p1-g-table th {
    width: 100%;
    font-weight: 500;
    padding-left: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .p1-g-table td span {
    display: block;
    margin-top: 0;
    font-size: 0.9em;
  }

  .p1-g-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-top: 40px;
  }

  .p1-g-btn {
    width: 270px;
    height: 64px;
    font-size: 20px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background-color: #ff0000;
    border-radius: 100px;
  }

  .p1-g-btn img {
    width: 29px;
    height: auto;
  }

  /* 共通 */
  .p1-title {
    text-align: center;
  }

  .p1-title span {
    font-size: 40px;
  }

  .p1-title h2 {
    font-size: 24px;
    font-weight: 500;
    padding-top: 5px;
    border-top: 2px solid #ff0000;
    margin-top: 5px;
  }

  /* 当店のこだわり */
  /* p2-a */
  .p2-a-container {
    padding-top: 60px;
  }

  .p2-a .p1-b-text,
  .p2-b .p1-b-text,
  .p2-c .p1-b-text {
    margin-top: 20px;
  }

  /* p2-b */
  .p2-b-container {
    padding-top: 60px;
  }

  .p2-b .p1-b-text {
    margin-left: 0;
    margin-right: auto;
  }

  /* p2-c */
  .p2-c-container {
    padding: 60px 0 200px;
  }

  /* メニュー一覧 */
  /* p3-a */
  .p3-a-container {
    padding: 60px 0 300px;
  }

  .p3-a-box {
    width: 92%;
    margin: 50px auto 0;
  }

  .p3-a-box:first-child {
    margin-top: 50px;
  }

  .p3-a-title {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
  }

  .p3-a-title::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 130px;
    right: 0;
    transform: translateY(-50%);
    height: 1px;
    background: #ff0000;
  }

  .p3-a-title img {
    width: 20px;
    height: auto;
  }

  .p3-a-title h3 {
    font-size: 20px;
    font-weight: 500;
    font-family: "Asta Sans", sans-serif;
    color: #ff0000;
  }

  .p3-a-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    margin-top: 40px;
  }

  .p3-a-post {
    width: 307px;
    height: 307px;
    background-color: #fff;
    position: relative;
  }

  .p3-a-img {
    width: 100%;
  }

  .p3-a-post-title {
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    left: 50%;
    bottom: 5px;
    z-index: 10;
    transform: translateX(-50%);
    padding: 0 5px;
  }

  .p3-a-empty {
    font-size: 24px;
  }

  /* メニュー詳細 */
  /* p4-a */
  .p4-a-container {
    padding-top: 60px;
  }

  .p4-a-box {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 0 auto;
  }

  .p4-a-img {
    max-width: 400px;
    width: 100%;
  }

  .p4-a-img img {
    width: 100%;
    height: auto;
  }

  .p4-a-content {
    width: 100%;
  }

  .p4-a-title {
    font-size: 24px;
    font-weight: 500;
    color: #ff0000;
    padding: 10px 0;
    border-bottom: 1px solid #ff0000;
  }

  .p4-a-text {
    margin-top: 30px;
  }

  .p4-a-text p {
    font-size: 16px;
    line-height: 2;
  }

  .p4-a-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }

  /* p4-b */
  .p4-b-container {
    padding-bottom: 300px;
  }

  .p4-b .p4-b-container .p3-a-box {
    margin-top: 200px;
  }

  /* 店舗情報 */
  /* p5-a */
  .p5-a-container {
    padding: 60px 0 200px;
  }

  .p5-a-text {
    width: 92%;
    margin: 40px auto 0;
  }

  .p5-a-text p {
    font-size: 16px;
    line-height: 2;
  }

  .p5-a-box {
    width: 92%;
    margin: 60px auto 0;
  }

  .p5-a-table {
    margin-top: 50px;
  }

  .p5-a-table table {
    width: 100%;
    border-collapse: collapse;
  }

  .p5-a-table table th,
  .p5-a-table table td {
    display: block;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .p5-a-table table th {
    width: 188px;
    padding-left: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .p5-a-table table td {
    width: auto;
    padding-left: 0;
    border-bottom: 4px solid #fff6e0;
  }

  .p5-a-box2 {
    margin-top: 60px;
  }

  .p5-a-item2 {
    width: 92%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
  }

  .p5-a-text2,
  .p5-a-text3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .p5-a-text2 img {
    width: 20px;
    height: auto;
  }

  .p5-a-text3 img {
    width: 30px;
    height: auto;
  }

  .p5-a-text2 p,
  .p5-a-text3 p {
    font-size: 16px;
    font-weight: 500;
  }

  .p5-a-map {
    width: 92%;
    height: 480px;
    margin: 20px auto 0;
  }

  .p5-a-map iframe {
    width: 100%;
    height: 100%;
  }

  /* お問い合わせ / ご注文 */
  /* p6-a */
  .p6-a-container {
    padding-top: 60px;
  }

  .p6-a-box {
    width: 92%;
    margin: 30px auto 0;
  }

  .contact-table {
    width: 100%;
    border-collapse: collapse;
  }

  .contact-table th,
  .contact-table td {
    padding-top: 20px;
  }

  .contact-table th {
    display: block;
    width: 100%;
    padding-right: 0;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #333;
  }

  .contact-table td {
    display: block;
  }

  .contact-table td input[type="text"]:not([name="zip1"]):not([name="zip2"]),
  .contact-table td input[type="tel"],
  .contact-table td input[type="email"],
  .contact-table td textarea {
    width: 100%;
  }

  .zip-label p,
  .pref-label p,
  .address-label p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #7f7f7f;
  }

  .zip-label,
  .address-label {
    margin-top: 5px;
  }

  .contact-table input,
  .contact-table select,
  .contact-table textarea {
    width: 100%;
    height: 44px;
    padding: 0 18px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    background: #f6f6f6;
    font-size: 16px;
    box-sizing: border-box;
  }

  .contact-table textarea {
    height: 220px;
    padding: 15px 18px;
    resize: vertical;
  }

  .contact-table input::placeholder {
    color: #999;
  }

  .zip p {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .zip input {
    width: 72px;
  }

  .zip span {
    font-size: 20px;
  }

  .pref {
    margin-top: 0;
  }

  .pref select {
    width: 190px;
  }

  .address2 {
    padding-top: 28px;
  }

  .wpcf7-number[name="quantity"] {
    width: 72px !important;
  }

  .contact-table td br {
    display: none;
  }

  .unit-text {
    font-size: 14px;
    color: #888888;
    margin-left: 10px;
  }

  .wpcf7-number[name="month"],
  .wpcf7-number[name="order-day"] {
    width: 72px !important;
  }

  .wpcf7-number[name="order-day"] {
    margin-left: 20px;
  }

  .zip p .wpcf7-form-control-wrap {
    display: inline-block;
    width: 72px;
  }

  .zip .wpcf7-form-control-wrap input {
    width: 72px;
  }

  .form-note {
    margin-top: 10px;
    color: #f00;
    font-size: 14px;
    line-height: 1.6;
  }

  .contact-submit {
    text-align: center;
    margin: 120px auto 0;
  }

  .contact-submit .wpcf7-submit {
    width: 276px;
    height: 60px;
    background: url(../image/part12.png) no-repeat center / 100% 100%;
    border: none;
    color: transparent;
    font-size: 0;
    cursor: pointer;
    transition: 0.3s;
  }

  .contact-submit .wpcf7-submit:hover {
    opacity: 0.8;
  }

  .wpcf7-spinner {
    display: none;
  }

  .zip .wpcf7-form-control-wrap {
    display: inline-block;
    width: auto;
  }

  .wpcf7-form-control-wrap[data-name="quantity"] {
    display: inline-block;
    width: auto;
  }

  .wpcf7-form-control-wrap[data-name="month"],
  .wpcf7-form-control-wrap[data-name="day"] {
    display: inline-block;
    width: auto;
  }

  /* p6-b */
  .p6-b-container {
    padding-top: 100px;
  }

  .p6-b-text {
    width: 92%;
    margin: 50px auto 0;
  }

  .p6-b-text p {
    font-size: 16px;
    line-height: 2;
  }

  .p6-b-box {
    width: 92%;
    background-color: #fff;
    box-shadow: 0 4px 4px rgba (0, 0, 0, 0.25);
    padding: 20px;
    margin: 50px auto 0;
  }

  .p6-b-item {
    margin-top: 20px;
  }

  .p6-b-item:first-child {
    margin-top: 0;
  }

  .p6-b-item h3 {
    font-size: 20px;
    font-weight: 500;
    color: #ff0000;
    padding-bottom: 10px;
  }

  .p6-b-item p {
    font-size: 16px;
    line-height: 2;
  }

  .p6-b-item table {
    width: 100%;
  }

  .p6-b-item table th,
  .p6-b-item table td {
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
  }

  .p6-b-item table th {
    width: 160px;
    text-align: left;
  }

  /* p6-c */
  .p6-c-container {
    padding: 100px 0 200px;
  }

  .p6-c-box {
    text-align: center;
    margin-top: 30px;
  }

  .p6-c .p1-e-title span {
    line-height: 1;
  }

  .p6-c-box p {
    font-size: 24px;
    font-weight: 500;
  }

  /* 下層共通 */
  .sub-v {
    margin-top: 50px;
  }

  .sub-v-box {
    position: relative;
  }

  .sub-v-title {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
  }

  .sub-v-title h1 {
    font-size: 24px;
    color: #fff;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }

  .sub-v-title span {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }

  .sub {
    background-image: url(../image/sub-back.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
  }

  /* フッター */
  footer {
    background-color: rgba(255, 240, 204, 0.5);
  }

  .footer-container {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    padding: 30px 0 70px;
    margin: 0 auto;
  }

  .footer-item {
    width: 100%;
    text-align: center;
  }

  .footer-logo {
    width: 310px;
    margin: 0 auto;
  }

  .footer-text {
    margin-top: 30px;
  }

  .footer-text p {
    font-size: 16px;
    line-height: 1.8;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  .footer-link {
    width: 53px;
    display: inline-block;
    margin: 0 auto;
  }

  .footer-nav ul {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .footer-nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .footer-nav ul li a .en {
    font-weight: 400;
  }

  .footer-nav ul li a span {
    font-size: 16px;
    font-weight: 500;
  }

  .copy-right {
    text-align: center;
    background-color: #ff0000;
    padding: 20px 0;
  }

  .copy-right p {
    font-size: 16px;
    color: #fff;
  }

  body {
    padding-bottom: 78px;
  }

  .sp-footer {
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 78px;
    background: #ef120d;
    z-index: 990;
  }

  .sp-footer-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    box-sizing: border-box;
  }

  .sp-footer-item:last-child {
    border-right: none;
  }

  /* 幅 */
  .sp-footer-tel {
    width: 46%;
  }

  .sp-footer-mail {
    width: 34%;
  }

  .sp-footer-top {
    width: 20%;
  }

  .sp-footer-item img {
    display: block;
    margin-bottom: 4px;
  }

  .sp-footer-tel img {
    width: 20px;
  }

  .sp-footer-mail img {
    width: 25px;
  }

  .sp-footer-top img {
    width: 34px;
    margin-bottom: 0;
  }

  .sp-footer-item p {
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
  }

  .sp-footer-item p span {
    display: block;
    font-size: 21px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
  }

  /* トップに戻る */
  .pagetop {
    display: none;
  }

  /* お知らせ内容 1100で可変 */
  .single-container {
    width: 100%;
    padding: 40px 0;
  }

  .single-box {
    width: 94%;
    margin: 0 auto;
  }

  .single-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .single-img {
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
  }

  .single-img img {
    width: 100%;
    height: auto;
    display: block;
  }

  .single-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
  }

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