@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;
}

h1,
h2,
h3,
h4,
span,
li,
a,
th,
td {
  font-family: "Hina Mincho", serif;
  color: #333;
}

p {
  font-family: "Noto Serif JP", serif;
  color: #333;
}

li {
  list-style: none;
}

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-fixed-menu {
  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 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  margin-top: min(18px, 1.25vw);
  transition: 0.5s;
}

.header-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: min(200px, 13.89vw);
  padding-left: min(34px, 2.36vw);
  padding-right: min(148px, 10.28vw);
  background: transparent;
  transition: 0.5s;
}

.header-logo {
  display: flex;
  gap: min(34px, 2.36vw);
}

.header-logo img {
  width: min(292px, 20.28vw);
  height: auto;
}

.header-nav {
  display: flex;
  align-items: flex-start;
}

.header-nav ul {
  display: flex;
  gap: min(50px, 3.47vw);
  margin-top: min(25px, 1.74vw);
}

.header-nav li {
  position: relative;
  writing-mode: vertical-rl;
  text-orientation: upright;
  transition: 0.5s;
}

.header-nav li a {
  font-size: min(20px, 1.39vw);
}

body:not(.home) #header:not(.is-scroll) .header-nav li a {
  color: #fff;
  text-shadow: 0 10px 10px rgba(0, 0, 0, 0.8);
}

body:not(.home) #header.is-scroll .header-nav li a {
  color: #000;
}

.header-nav li::before {
  content: "";
  position: absolute;
  top: calc(min(30px, 2.08vw) * -1);
  left: 50%;
  width: min(12px, 0.83vw);
  height: min(20px, 1.39vw);
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.3s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.home .header-nav li::before {
  background-image: url(../image/part3.png);
}

body:not(.home) #header:not(.is-scroll) .header-nav li::before {
  background-image: url(../image/part6.png);
}

body:not(.home) #header.is-scroll .header-nav li::before {
  background-image: url(../image/part3.png);
}

.header-nav li.current::before,
.header-nav li:hover::before {
  opacity: 1;
}

.header-tel,
.header-tel2 {
  width: min(300px, 20.83vw);
  height: min(69px, 4.79vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(5px, 0.35vw);
}

#header .header-tel {
  margin-top: min(25px, 1.74vw);
  background: #c60000;
}

.header-tel span {
  color: #fff;
  font-size: min(16px, 1.11vw);
  font-family: "Noto Serif JP", serif;
  line-height: 1;
}

.header-tel2 span {
  color: #c60000;
  font-size: min(16px, 1.11vw);
  font-family: "Noto Serif JP", serif;
  line-height: 1;
}

.header-tel-text,
.header-tel2-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(5px, 0.35vw);
}

.header-tel-text img,
.header-tel2-text img {
  width: min(29px, 2.01vw);
  height: auto;
}

.header-tel-text span,
.header-tel2-text span {
  font-size: min(32px, 2.22vw);
}

.header-tel-top {
  display: flex;
}

.header-tel-scroll {
  display: none;
}

#header.is-scroll {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.8);
}

#header.is-scroll .header-box {
  height: min(100px, 6.94vw);
  align-items: center;
  background: #fff;
}

#header.is-scroll .header-logo img {
  width: min(120px, 8.33vw);
}

#header.is-scroll .header-nav {
  display: flex;
  align-items: center;
  gap: min(50px, 3.47vw);
}

#header.is-scroll .header-nav ul {
  gap: min(45px, 3.13vw);
}

#header.is-scroll .header-nav li {
  writing-mode: horizontal-tb;
}

#header.is-scroll .header-nav li a {
  font-size: min(16px, 1.11vw);
}

#header.is-scroll .header-tel-top {
  display: none;
}

#header.is-scroll .header-tel-scroll {
  display: flex;
}

/* トップ */
.main-v {
  position: relative;
  height: calc(928 / 1440 * 100vw);
}

.main-v-slider {
  position: absolute;
  inset: 0;
}

.slide-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.slide-img.is-active {
  opacity: 1;
}

.slide1 {
  background-image: url(../image/top-img1.png);
}

.slide2 {
  background-image: url(../image/top-img2.png);
}

.slide3 {
  background-image: url(../image/top-img3.png);
}

.main-v-container {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.main-v-title {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.main-v-title h1 {
  color: #fff;
  font-size: min(75px, 5.21vw);
  font-weight: 500;
  line-height: 1.6;
  text-shadow: 0 min(4px, 0.28vw) min(4px, 0.28vw) rgba(0, 0, 0, 0.25);
  margin-top: min(50px, 3.47vw);
}

.main-v-title .line {
  display: inline-block;
}

.main-v-title .line2 {
  color: #fff;
  padding-top: min(140px, 9.72vw);
}

.main-v-title .line3 {
  color: #fff;
  padding-top: min(78px, 5.42vw);
}

.main-v-title .small {
  color: #fff;
  font-size: min(50px, 3.47vw);
}

/* p1-a */
.p1-a {
  background-image: url(../image/top-back2.png);
  background-repeat: repeat;
  background-size: min(589px, 40.9vw) auto;
}

.p1-a-container {
  background-image: url(../image/top-back1.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top;
  padding: min(54px, 3.75vw) 0 min(133px, 9.24vw);
}

.p1-a-box {
  width: min(1154px, 80.14vw);
  display: flex;
  align-items: flex-start;
  gap: min(80px, 5.56vw);
  background-color: rgba(217, 217, 217, 0.8);
  padding: min(40px, 2.78vw) min(30px, 2.08vw) min(40px, 2.78vw)
    min(80px, 5.56vw);
}

.p1-a-title {
  width: min(150px, 10.42vw);
  flex-shrink: 0;
  text-align: right;
}

.p1-a-title h2 {
  font-size: min(48px, 3.33vw);
  font-weight: 500;
  font-family: "Newsreader", serif;
  line-height: 1;
}

.p1-a-title p {
  display: block;
  font-size: min(20px, 1.39vw);
  font-weight: bold;
  margin-top: min(10px, 0.69vw);
}

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

.p1-a-news-item {
  display: flex;
  align-items: center;
  gap: min(60px, 4.17vw);
  padding: min(10px, 0.69vw);
  border-bottom: 1px dashed #bdbdbd; /* 線の太さは1pxを維持 */
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.p1-a-news-item:hover {
  opacity: 0.7;
}

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

.p1-a-news-title {
  flex: 1;
  font-size: min(16px, 1.11vw);
  font-weight: 500;
}

.p1-a-botan {
  flex-shrink: 0;
  margin-top: min(25px, 1.74vw);
}

.p1-a-botan a {
  width: min(150px, 10.42vw);
  height: min(34px, 2.36vw);
  background: #c60000;
  font-size: min(16px, 1.11vw);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  transition: 0.3s;
  padding-left: min(20px, 1.39vw);
}

.p1-a-botan a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: min(40px, 2.78vw);
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
}

.p1-a-botan a:hover {
  opacity: 0.8;
}

.p1-a-box2 {
  width: min(942px, 65.42vw);
  /* height: min(819px, 56.88vw); */
  margin: min(60px, 4.17vw) auto;
}

.p1-a-title2 a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(25px, 1.74vw);
  margin-bottom: min(10px, 0.69vw);
}

.p1-a-img {
  width: min(185px, 12.85vw);
}

.p1-a-item2 img {
  width: min(263px, 18.26vw);
  height: auto;
}

.p1-a-item2 p {
  text-align: center;
  font-size: min(16px, 1.11vw);
  padding-top: min(10px, 0.69vw);
}

/* p1-b */
.p1-b-container {
  background-image: url(../image/top-back3.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: min(140px, 9.72vw);
}

.p1-b-box {
  width: calc(1380 / 1440 * 100vw);
  display: flex;
}

.p1-b-img {
  width: 47%;
  margin-top: min(170px, 11.81vw);
}

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

.p1-b-img2 {
  width: 100%;
  margin-left: calc(min(30px, 2.08vw) * -1);
}

.p1-b-span {
  margin-top: min(100px, 6.94vw);
}

.p1-b-span span {
  position: relative;
  display: block;
  font-size: min(32px, 2.22vw);
  padding-left: min(246px, 17.08vw);
}

.p1-b-span span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: min(222px, 15.42vw);
  height: 1px;
  background-color: #000;
  transform: translateY(-50%);
}

.p1-b-title {
  text-align: center;
  margin-top: min(53px, 3.68vw);
}

.p1-b-title h2 {
  font-size: min(50px, 3.47vw);
  font-weight: 500;
}

.p1-b-text {
  width: min(614px, 42.64vw);
  margin: min(76px, 5.28vw) auto 0;
}

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

/* p1-c */
.p1-c-box {
  position: relative;
  background-image: url(../image/top-back4.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: min(200px, 13.89vw) 0 min(137px, 9.51vw);
}

.p1-c-title {
  position: absolute;
  top: min(37px, 2.57vw);
  left: min(150px, 10.42vw);
  z-index: 10;
}

.p1-c-title h2 {
  font-size: min(50px, 3.47vw);
  font-weight: 500;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1.2;
}

.p1-c-title h2 span {
  display: block;
  font-size: min(50px, 3.47vw);
  font-weight: 500;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1.2;
  padding-top: min(110px, 7.64vw);
}

.p1-c-text {
  width: min(748px, 51.94vw);
  margin: 0 auto;
}

.p1-c-text p {
  font-size: min(16px, 1.11vw);
  color: #fff;
  line-height: 2.4;
}

.p1-c .p1-botan a {
  margin: min(77px, 5.35vw) auto 0;
}

.p1-c-box.reverse {
  background-image: url(../image/top-back5.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: min(230px, 15.97vw);
}

.p1-c-box.reverse .p1-c-title {
  left: auto;
  right: min(150px, 10.42vw);
}

/* p1-d */
.p1-d-container {
  background-image: url(../image/top-back6.png), url(../image/top-back3.png);
  background-repeat: no-repeat;
  background-size:
    min(700px, 48.61vw) auto,
    cover;
  background-position:
    top min(10px, 0.69vw) right,
    center;
  padding: min(140px, 9.72vw) 0;
}

.p1-d-box {
  width: calc(1380 / 1440 * 100vw);
  margin-left: auto;
  display: flex;
  flex-direction: row-reverse;
}

.p1-d-img {
  width: 47%;
  margin-top: min(170px, 11.81vw);
}

.p1-d-item {
  width: 53%;
}

.p1-d-img2 {
  width: 100%;
  position: relative;
  z-index: 10;
  margin-left: min(30px, 2.08vw);
}

.p1-d-span {
  margin-top: min(100px, 6.94vw);
  text-align: right;
}

.p1-d-span span {
  position: relative;
  display: block;
  font-size: min(32px, 2.22vw);
  padding-right: min(246px, 17.08vw);
}

.p1-d-span span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: min(222px, 15.42vw);
  height: 1px;
  background-color: #000;
  transform: translateY(-50%);
}

.p1-d-title {
  width: min(686px, 47.64vw);
  padding-left: min(30px, 2.08vw);
  margin: min(53px, 3.68vw) auto 0;
}

.p1-d-title h2 {
  font-size: min(50px, 3.47vw);
  font-weight: 500;
}

.p1-d-title h2 span {
  display: inline-block;
  font-size: min(50px, 3.47vw);
  font-weight: 500;
  padding-left: min(43px, 2.99vw);
}

.p1-d-text {
  width: min(614px, 42.64vw);
  margin: min(76px, 5.28vw) auto 0;
}

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

.p1-d .p1-botan a {
  margin: min(42px, 2.92vw) auto 0;
}

/* p1-e */
.p1-e-container {
  display: flex;
  flex-direction: column;
  gap: min(44px, 3.06vw);
  background-image: url(../image/top-back3.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.marqueer,
.marqueer2 {
  overflow: hidden;
}

.marqueer ul,
.marqueer2 ul {
  display: flex;
  margin: 0;
  padding: 0;
  width: max-content;
}

.marqueer li,
.marqueer2 li {
  list-style: none;
  width: min(360px, 25vw);
}

.marqueer img,
.marqueer2 img {
  display: block;
  width: 100%;
}

/* p1-f */
.p1-f {
  background-image: url(../image/top-back2.png);
  background-repeat: repeat;
  background-size: min(589px, 40.9vw) auto;
}

.p1-f-container {
  background-image: url(../image/top-back7.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top min(323px, 22.43vw) center;
  padding-top: min(138px, 9.58vw);
}

.p1-f-box {
  display: flex;
  align-items: center;
  padding-bottom: min(103px, 7.15vw);
}

.p1-f-img {
  width: calc(872 / 1440 * 100vw);
}

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

.p1-f-title {
  text-align: center;
}

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

.p1-f-text {
  width: min(456px, 31.67vw);
  margin: min(50px, 3.47vw) auto 0;
}

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

.p1-f-box .p1-botan a {
  margin: min(50px, 3.47vw) auto 0;
}

.p1-f-box-box {
  position: relative;
  background-image: url(../image/top-back9.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}

.p1-f-box2 {
  width: min(1257px, 87.29vw);
  display: flex;
  justify-content: space-between;
  padding-top: min(222px, 15.42vw);
  padding-bottom: min(107px, 7.43vw);
  margin: 0 auto;
}

.p1-f-item2 {
  width: min(529px, 36.74vw);
}

.p1-f-title2 {
  text-align: center;
}

.p1-f-title2 h2 {
  font-size: min(50px, 3.47vw);
  font-weight: 500;
  color: #fff;
}

.p1-f-table {
  width: 100%;
  margin: min(66px, 4.58vw) auto 0;
}

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

.p1-f-table th,
.p1-f-table td {
  text-align: left;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
  padding: min(25px, 1.74vw) 0;
  color: #fff;
  font-size: min(16px, 1.11vw);
  font-weight: 500;
  line-height: 1.7;
  vertical-align: top;
}

.p1-f-table th {
  width: min(187px, 12.99vw);
  padding-left: min(24px, 1.67vw);
}

.p1-f-link .header-tel {
  background-color: #c60000;
}

.p1-f-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(50px, 3.47vw);
  margin-top: min(48px, 3.33vw);
}

.p1-f-img-box {
  width: min(640px, 44.44vw);
  margin-top: min(72px, 5vw);
}

.p1-f-img2 {
  width: min(416px, 28.89vw);
}

.p1-f-img3 {
  width: min(416px, 28.89vw);
  margin-left: auto;
  margin-top: min(27px, 1.88vw);
}

.p1-f-img4 {
  width: min(594px, 41.25vw);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

/* p1-g */
.p1-g-box {
  width: 100%;
  height: min(392px, 27.22vw);
}

.p1-g-box iframe {
  width: 100%;
  height: 100%;
}

/* 共通 */
.p1-botan a {
  width: min(300px, 20.83vw);
  height: min(59px, 4.1vw);
  background: #c60000;
  font-size: min(20px, 1.39vw);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  transition: 0.3s;
  padding-left: min(40px, 2.78vw);
}

.p1-botan a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: min(70px, 4.86vw);
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
}

/* こだわり */
/* p2-a */
.p2-a-container {
  background-image: url(../image/sub-back1.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: min(207px, 14.38vw);
}

.p2-a-box {
  display: flex;
  justify-content: flex-end;
  gap: min(55px, 3.82vw);
  background-image: url(../image/top-back6.png);
  background-repeat: no-repeat;
  background-size: min(700px, 48.61vw) auto;
  background-position: top left min(175px, 12.15vw);
  padding-top: min(93px, 6.46vw);
}

.p2-a-item {
  width: min(537px, 37.29vw);
}

.p2-a-span span {
  font-size: min(40px, 2.78vw);
  color: #c60000;
}

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

.p2-a-box .p2-a-title {
  width: min(406px, 28.19vw);
  margin: min(40px, 2.78vw) auto 0;
}

.p2-a-title h2 {
  font-size: min(32px, 2.22vw);
  font-weight: 500;
}

.p2-a-text {
  margin-top: min(26px, 1.81vw);
}

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

.p2-a-img {
  width: calc(768 / 1440 * 100vw);
}

.p2-a-img-box {
  width: min(1280px, 88.89vw);
  display: flex;
  gap: min(10px, 0.69vw);
  margin: min(57px, 3.96vw) auto 0;
}

.p2-a-img-box img {
  width: min(420px, 29.17vw);
  height: auto;
}

.p2-a-box2.reverse {
  flex-direction: row-reverse;
  background-image: url(../image/p2-back3.png);
  background-repeat: no-repeat;
  background-size: min(700px, 48.61vw) auto;
  background-position: top right min(175px, 12.15vw);
  padding-top: min(196px, 13.61vw);
  padding-bottom: min(98px, 6.81vw);
}

/* p2-b */
.p2-b-container {
  background-image: url(../image/p2-back2.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
}

.p2-b-title {
  text-align: center;
  padding: min(80px, 5.56vw) 0 min(110px, 7.64vw);
  background-image: url(../image/p2-back1.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 55% center;
}

.p2-b-title h2 {
  font-size: min(42px, 2.92vw);
  font-weight: 500;
}

.p2-b-box {
  width: min(1280px, 88.89vw);
  display: flex;
  gap: min(40px, 2.78vw);
  margin: 0 auto;
}

.p2-b-item {
  width: min(400px, 27.78vw);
}

.p2-b-text {
  width: 100%;
  height: min(330px, 22.92vw);
  background-color: #fff;
  box-shadow: 0 min(4px, 0.28vw) min(4px, 0.28vw) rgba(0, 0, 0, 0.25);
  padding: min(32px, 2.22vw) min(16px, 1.11vw) min(23px, 1.6vw);
}

.p2-b-text h3 {
  font-size: min(32px, 2.22vw);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(30px, 2.08vw);
}

.p2-b-text h3 span {
  font-size: min(24px, 1.67vw);
}

.p2-b-text p {
  font-size: min(16px, 1.11vw);
  line-height: 2.2;
  padding-top: min(10px, 0.69vw);
}

.p2-b-box2 {
  width: min(1280px, 88.89vw);
  display: flex;
  align-items: center;
  gap: min(40px, 2.78vw);
  margin: min(73px, 5.07vw) auto 0;
}

.p2-b-box2 .p2-b-text {
  height: min(365px, 25.35vw);
  padding-top: min(20px, 1.39vw);
}

.p2-b-box2 .p2-b-text h3 {
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.p2-b-box3 {
  padding-top: min(100px, 6.94vw);
  padding-bottom: min(200px, 13.89vw);
}

.p2-b-box3 .p1-botan a {
  margin: 0 auto;
}

/* 店舗案内 */
.p3 {
  background-image: url(../image/p3-back2.png);
  background-repeat: no-repeat;
  background-size: cover;
}

/* p3-a */
.p3-a-container {
  padding-top: min(40px, 2.78vw);
}

.p3-a-text {
  width: min(1080px, 75vw);
  margin: calc(min(42px, 2.92vw) * -1) auto 0;
}

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

.p3-a-box {
  width: min(1280px, 88.89vw);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: min(10px, 0.69vw);
  background-image: url(../image/p3-back1.png);
  background-repeat: no-repeat;
  background-size: min(700px, 48.61vw) auto;
  background-position: top right;
  padding-top: min(10px, 0.69vw);
  margin: min(62px, 4.31vw) auto 0;
}

.p3-a-box img {
  width: min(420px, 29.17vw);
  height: auto;
}

.p3-a-box img:nth-of-type(2) {
  margin-top: min(96px, 6.67vw);
}

.p3-a-box img:nth-of-type(3) {
  margin-top: min(186px, 12.92vw);
}

/* p3-b */
.p3-b-container {
  padding-top: min(110px, 7.64vw);
}

.p3-b-title {
  text-align: center;
  padding: min(80px, 5.56vw) 0 min(110px, 7.64vw);
  background-image: url(../image/p3-back4.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 45% center;
}

.p3-b-title h2 {
  font-size: min(42px, 2.92vw);
  font-weight: 500;
}

.p3-b-box {
  width: min(726px, 50.42vw);
  margin: min(43px, 2.99vw) auto 0;
}

.p3-b-table {
  width: 100%;
}

.p3-b-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.p3-b-table tr {
  border-bottom: min(4px, 0.28vw) solid #d9d9d9;
}

.p3-b-table th,
.p3-b-table td {
  position: relative;
  padding: min(28px, 1.94vw) 0;
  vertical-align: top;
  font-size: min(16px, 1.11vw);
  font-weight: 500;
  line-height: 2;
  color: #333;
}

.p3-b-table th {
  width: min(200px, 13.89vw);
  text-align: left;
  padding-left: min(40px, 2.78vw);
}

.p3-b-table td {
  padding-left: min(60px, 4.17vw);
}

.p3-b-table th::after {
  content: "";
  position: absolute;
  left: calc(min(40px, 2.78vw) * -1);
  bottom: calc(min(4px, 0.28vw) * -1);
  width: min(200px, 13.89vw);
  height: min(4px, 0.28vw);
  background: #d40000;
}

/* p3-c */
.p3-c-container {
  padding-top: min(200px, 13.89vw);
  padding-bottom: min(150px, 10.42vw);
}

.p3-c-box {
  width: min(1230px, 85.42vw);
  display: flex;
  justify-content: space-between;
  margin: min(80px, 5.56vw) auto 0;
}

.p3-c-img {
  width: min(572px, 39.72vw);
}

.p3-c-item {
  width: min(614px, 42.64vw);
}

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

.p3-c-item p:nth-of-type(2) {
  padding: min(35px, 2.43vw) 0;
}

.p3-c-map {
  width: min(895px, 62.15vw);
  height: min(309px, 21.46vw);
  margin: min(45px, 3.13vw) auto 0;
}

.p3-c-map iframe {
  width: 100%;
  height: 100%;
}

/* p3-d */
.p3-d {
  background-image: url(../image/top-back2.png);
  background-repeat: repeat;
  background-size: min(589px, 40.9vw) auto;
}

.p3-d-container {
  background-image: url(../image/p3-back3.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top;
  padding-top: min(110px, 7.64vw);
  padding-bottom: min(297px, 20.63vw);
}

.p3-d-box {
  width: min(761px, 52.85vw);
  background-color: #fff;
  box-shadow: 0 min(4px, 0.28vw) min(4px, 0.28vw) rgba(0, 0, 0, 0.25);
  padding: min(60px, 4.17vw) min(85px, 5.9vw);
  margin: min(98px, 6.81vw) auto 0;
}

.p3-d-table {
  width: 100%;
}

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

.p3-d-table th,
.p3-d-table td {
  font-size: min(16px, 1.11vw);
  font-weight: 500;
  line-height: 2;
  vertical-align: top;
  padding: min(23px, 1.6vw) 0;
  border-bottom: min(1px, 0.07vw) solid #bcbcbc;
}

.p3-d-table th {
  width: min(230px, 15.97vw);
  text-align: left;
  padding-left: min(17px, 1.18vw);
}

.p3-d-table td strong {
  display: block;
  font-weight: 500;
}

.p3-d .header-tel {
  background-color: #c60000;
  margin: min(50px, 3.47vw) auto 0;
}

/* p3-e */
.p3-e {
  background-image: url(../image/top-back3.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: min(190px, 13.19vw);
}

/* お料理 */
.p4 {
  background-image: url(../image/p3-back2.png);
  background-repeat: no-repeat;
  background-size: cover;
}

/* p4-a */
.p4-a-container {
  background-image: url(../image/p3-back1.png);
  background-repeat: no-repeat;
  background-size: min(700px, 48.61vw) auto;
  background-position: top min(850px, 59.03vw) right min(45px, 3.13vw);
  padding-top: min(40px, 2.78vw);
}

.p4-a-box {
  width: min(1136px, 78.89vw);
  margin: min(162px, 11.25vw) auto 0;
}

.p4-a-box:nth-of-type(2) {
  margin-top: min(25px, 1.74vw);
}

.p4-a-title {
  display: flex;
  align-items: center;
}

.p4-a-title.p4-a-title2 {
  line-height: 1;
  margin-top: calc(min(10px, 0.69vw) * -1);
}

.p4-a-title h2 {
  text-align: center;
  display: flex;
  align-items: center;
  font-size: min(40px, 2.78vw);
  font-weight: 500;
  color: #c60000;
  flex: 1;
  margin: 0;
}

.p4-a-title h2::before,
.p4-a-title h2::after {
  content: "";
  flex: 1;
  height: min(1px, 0.07vw);
  background: #c60000;
}

.p4-a-title h2::before {
  margin-right: min(30px, 2.08vw);
}

.p4-a-title h2::after {
  margin-left: min(30px, 2.08vw);
}

.p4-a-p {
  text-align: center;
}

.p4-a-item .p4-a-p p {
  font-size: min(16px, 1.11vw);
}

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

.p4-a-item-box {
  display: flex;
  justify-content: space-between;
  margin-top: min(48px, 3.33vw);
}

.p4-a-item {
  width: min(530px, 36.81vw);
}

.p4-a-item table {
  width: min(454px, 31.53vw);
  border-collapse: collapse;
  margin: 0 auto;
}

.p4-a-item table th,
.p4-a-item table td {
  font-size: min(16px, 1.11vw);
  font-weight: 500;
  vertical-align: top;
  line-height: 2;
  padding: min(25px, 1.74vw) 0;
  border-bottom: min(1px, 0.07vw) dashed #767676;
}

.p4-a-item table th {
  text-align: left;
  padding-left: min(5px, 0.35vw);
}

.p4-a-item table td {
  text-align: right;
  padding-right: min(5px, 0.35vw);
}

.p4-a-item table td img {
  width: min(160px, 11.11vw);
  height: auto;
  margin-left: auto;
}

.p4-a-item table .p4-a-tr1 th,
.p4-a-item table .p4-a-tr1 td {
  padding-top: min(100px, 6.94vw);
  padding-bottom: 0;
  border-bottom: none;
}

.p4-a-item table .p4-a-tr1 th {
  display: flex;
  align-items: center;
  gap: min(10px, 0.69vw);
}

.p4-a-item table .p4-a-tr1 th img {
  width: min(26px, 1.81vw);
  height: auto;
}

.p4-a-item table .p4-a-tr1-sub td {
  text-align: left;
  padding: min(10px, 0.69vw) 0 0 min(5px, 0.35vw);
  border-bottom: none;
}

.p4-a-item table .p4-a-tr2 th {
  padding-top: min(50px, 3.47vw);
  padding-bottom: 0;
  border-bottom: none;
}

.p4-a-item table .p4-a-tr3 th {
  padding-bottom: 0;
  border-bottom: none;
}

.p4-a-item table .p4-a-tr4 th,
.p4-a-item table .p4-a-tr4 td {
  padding-top: min(10px, 0.69vw);
  padding-bottom: min(10px, 0.69vw);
}

.p4-a-item table .p4-a-tr5 th {
  padding: min(37px, 2.57vw) 0 0;
  border-bottom: none;
}

.p4-a-item table .p4-a-tr5 th img {
  width: min(350px, 24.31vw);
  height: auto;
}

.p4-a-item table .p4-a-tr6 th,
.p4-a-item table .p4-a-tr6 td {
  padding-bottom: 0;
  border-bottom: none;
}

.drink-table .drink-comment {
  border-bottom: none;
}

.drink-table .drink-comment td {
  padding: min(10px, 0.69vw) 0 min(20px, 1.39vw) min(20px, 1.39vw);
  text-align: left;
  font-size: min(14px, 0.97vw);
  line-height: 1.8;
}

/* お飲み物 */
/* p5-a */
.p5-a-box {
  width: min(1136px, 78.89vw);
  padding-bottom: min(227px, 15.76vw);
  margin: min(120px, 8.33vw) auto 0;
}

.p5-a-p {
  text-align: center;
  margin-top: min(70px, 4.86vw);
}

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

.p5-a-item-box {
  display: flex;
  justify-content: center;
  gap: min(133px, 9.24vw);
  margin-top: min(144px, 10vw);
}

.p5-a-item-box img {
  width: min(435px, 30.21vw);
  height: auto;
}

/* ギャラリー */
.p6 {
  background-image: url(../image/p3-back2.png);
  background-repeat: no-repeat;
  background-size: cover;
}

/* p6-a */
.p6-a-container {
  background-image: url(../image/p3-back1.png);
  background-repeat: no-repeat;
  background-size: min(700px, 48.61vw) auto;
  background-position: top min(850px, 59.03vw) right min(45px, 3.13vw);
  padding-top: min(40px, 2.78vw);
}

.p6-a-box {
  width: min(1282px, 89.03vw);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(70px, 4.86vw) min(6px, 0.42vw);
  padding-bottom: min(660px, 45.83vw);
  margin: min(84px, 5.83vw) auto 0;
}

.p6-a-item img {
  display: block;
  width: 100%;
  height: auto;
}

/* お知らせ一覧 */
.p7-a-container {
  padding-top: min(40px, 2.78vw);
}

.p7-a-box {
  width: min(1000px, 69.44vw);
  padding-bottom: min(200px, 13.89vw);
  margin: min(50px, 3.47vw) auto 0;
}

.p7-a-item {
  border-bottom: min(1px, 0.07vw) dashed #767676;
}

.p7-a-item a {
  display: flex;
  align-items: center;
  gap: min(40px, 2.78vw);
  padding: min(30px, 2.08vw) 0;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.p7-a-item a:hover {
  opacity: 0.7;
}

.p7-a-item time {
  flex-shrink: 0;
  width: min(140px, 9.72vw);
  font-size: min(16px, 1.11vw);
  color: #767676;
}

.p7-a-item h2 {
  flex: 1;
  font-size: min(20px, 1.39vw);
  font-weight: 500;
  line-height: 1.8;
}

.p7-a-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(40px, 2.78vw);
  margin-top: min(80px, 5.56vw);
}

.p7-page-btn a {
  width: min(240px, 16.67vw);
  height: min(59px, 4.1vw);
  background: #c60000;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.3s;
  font-size: min(20px, 1.39vw);
}

.p7-page-btn.prev a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: min(50px, 3.47vw);
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
}

.p7-page-btn.next a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: min(50px, 3.47vw);
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
}

.p7-page-btn a:hover,
.p1-botan a:hover {
  opacity: 0.8;
}

/* 下層共通 */
.sub-v {
  width: 100%;
  height: min(500px, 34.72vw);
}

.sub-v-container,
.sub-v-box {
  position: relative;
  width: 100%;
  height: 100%;
}

.sub-v-img {
  width: 100%;
  height: 100%;
}

.sub-v-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sub-v-title {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub-v-title h1 {
  font-size: min(64px, 4.44vw);
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

/* フッター */
.footer-container {
  background-image: url(../image/top-back10.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: min(76px, 5.28vw);
}

.footer-box {
  width: min(1200px, 83.33vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: min(57px, 3.96vw);
  margin: 0 auto;
}

.footer-item {
  display: flex;
  gap: min(36px, 2.5vw);
}

.footer-logo {
  width: min(308px, 21.39vw);
}

.footer-logo a img {
  width: min(241px, 16.74vw);
}

.footer-logo p {
  font-size: min(16px, 1.11vw);
  margin-top: min(14px, 0.97vw);
}

.footer-link {
  margin-top: min(76px, 5.28vw);
}

.footer-link img {
  width: min(54px, 3.75vw);
  height: auto;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  gap: min(60px, 4.17vw);
}

.footer-nav li {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.footer-nav a {
  display: block;
  font-size: min(20px, 1.39vw);
  line-height: 1;
  transition: 0.3s;
}

.copy-right {
  text-align: center;
  background-color: #c60000;
  padding: min(26px, 1.81vw) 0;
}

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

.page-top {
  position: fixed;
  right: min(70px, 4.86vw);
  bottom: min(70px, 4.86vw);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

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

.page-top img {
  display: block;
  width: min(60px, 4.17vw);
  height: auto;
  transition: 0.3s;
}

/* お知らせ内容 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;
}

.single-botan {
  padding-top: min(100px, 6.94vw);
  padding-bottom: min(200px, 13.89vw);
}

.single-botan .p1-botan a {
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  /* 全体 */
  body {
    padding-bottom: 70px;
  }

  #header,
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

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

  .sp-header-inner {
    display: flex;
    justify-content: space-between;
    height: 100%;
    padding-left: 10px;
    padding-right: 5px;
  }

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

  /* ハンバーガーボタン */
  .sp-menu-btn {
    position: relative;
    width: 44px;
    height: 44px;
    background: #c60000;
    border: none;
    z-index: 1000;
    cursor: pointer;
  }

  .sp-menu-btn::after {
    content: "MENU";
    position: absolute;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
    font-size: 10px;
    font-family: "Noto Serif JP", serif;
    line-height: 1;
    color: #fff;
    letter-spacing: 0.05em;
  }

  .sp-menu-btn span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 27px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
  }

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

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

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

  .sp-menu-btn.is-active span:nth-child(1) {
    top: 16px;
    transform: translateX(-50%) rotate(45deg);
  }

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

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

  /* 全画面メニュー */
  .sp-header-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #fff;
    transition: 0.4s;
    z-index: 999;
    padding: 100px 40px 40px;
  }

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

  .sp-nav-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .sp-nav-list li {
    list-style: none;
    border-bottom: 1px solid #e5e5e5;
  }

  .sp-nav-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 18px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
  }

  .sp-nav-list li a:hover {
    color: #c60000;
    padding-left: 10px;
  }

  .sp-nav-list li a:hover::after {
    width: 60px;
  }

  .sp-nav-list li.current-menu-item a {
    color: #c60000;
  }

  .sp-nav-list li.current-menu-item a::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #c60000;
    border-radius: 50%;
  }

  /* トップ */
  .main-v {
    position: relative;
    height: 720px;
  }

  .main-v-slider {
    position: absolute;
    inset: 0;
  }

  .slide-img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .slide-img.is-active {
    opacity: 1;
  }

  .main-v-container {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
  }

  .main-v-title {
    background-image: url(../image/sp-back1.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }

  .main-v-title h1 {
    color: #fff;
    font-size: 51px;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: none;
    margin-top: 0;
  }

  .main-v-title .line {
    display: inline-block;
  }

  .main-v-title .line2 {
    color: #fff;
    padding-top: 95px;
  }

  .main-v-title .line3 {
    color: #fff;
    padding-top: 48px;
  }

  .main-v-title .small {
    color: #fff;
    font-size: 34px;
  }

  /* p1-a */
  .p1-a {
    background-image: url(../image/top-back2.png);
    background-repeat: repeat;
    background-size: 589px auto;
  }

  .p1-a-container {
    background-image: url(../image/sp-back2.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top left;
    padding: 38px 0 122px;
  }

  .p1-a-box {
    width: 96%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    background-color: rgba(217, 217, 217, 0.8);
    padding: 28px 24px 10px;
  }

  .p1-a-title {
    width: 100%;
    flex-shrink: 0;
    text-align: center;
  }

  .p1-a-title h2 {
    font-size: 40px;
    font-weight: 500;
    font-family: "Newsreader", serif;
    line-height: 1;
  }

  .p1-a-title p {
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
  }

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

  .p1-a-news-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 1px dashed #bdbdbd; /* 線の太さは1pxを維持 */
    color: #333;
    text-decoration: none;
    transition: 0.3s;
  }

  .p1-a-news-item:hover {
    opacity: 0.7;
  }

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

  .p1-a-news-title {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
  }

  .p1-a-botan {
    flex-shrink: 0;
    margin-top: 0;
  }

  .p1-a-botan a {
    width: 150px;
    height: 34px;
    background: #c60000;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    transition: 0.3s;
    padding-left: 20px;
  }

  .p1-a-botan a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background: #fff;
    transform: translateY(-50%);
  }

  .p1-a-botan a:hover {
    opacity: 0.8;
  }

  .p1-a-box2 {
    width: 92%;
    height: auto;
    margin: 60px auto;
  }

  .p1-a-title2 a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
  }

  .p1-a-img {
    width: 107px;
  }

  .p1-a-item2 img {
    width: 201px;
    height: auto;
  }

  .p1-a-item2 p {
    text-align: center;
    font-size: 16px;
    padding-top: 10px;
  }

  /* p1-b */
  .p1-b-container {
    background-image: url(../image/top-back3.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 72px;
  }

  .p1-b-box {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .p1-b-img {
    width: 60%;
    margin-top: -75px;
  }

  .p1-b-item {
    width: 92%;
    margin: 0 auto;
  }

  .p1-b-img2 {
    width: 70%;
    position: relative;
    z-index: 10;
    margin-left: auto;
    margin-top: -34px;
  }

  .p1-b-span {
    text-align: center;
    margin-top: 0;
  }

  .p1-b-span span {
    position: relative;
    display: inline-block;
    font-size: 24px;
    padding: 32px 78px;
    border-left: 1px solid #5e5e5e;
  }

  .p1-b-span span::before {
    display: none;
  }

  .p1-b-title {
    text-align: center;
    margin-top: 0;
  }

  .p1-b-title h2 {
    font-size: 32px;
    font-weight: 500;
  }

  .p1-b-text {
    width: 100%;
    margin: 30px auto 0;
  }

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

  /* p1-c */
  .p1-c-box {
    position: relative;
    background-image: url(../image/top-back4.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 20px 0 58px;
  }

  .p1-c-title {
    text-align: center;
    display: flex;
    justify-content: center;
    position: static;
  }

  .p1-c-title h2 {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    writing-mode: vertical-rl;
    text-orientation: upright;
    line-height: 1.2;
  }

  .p1-c-title h2 span {
    display: block;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    writing-mode: vertical-rl;
    text-orientation: upright;
    line-height: 1.2;
    padding-top: 130px;
    padding-right: 30px;
  }

  .p1-c-text {
    width: 92%;
    margin: 22px auto 0;
  }

  .p1-c-text p {
    font-size: 16px;
    color: #fff;
    line-height: 2;
  }

  .p1-c .p1-botan a {
    margin: 54px auto 0;
  }

  .p1-c-box.reverse {
    background-image: url(../image/top-back5.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 38px;
  }

  /* p1-d */
  .p1-d-container {
    background-image: url(../image/top-back6.png), url(../image/top-back3.png);
    background-repeat: no-repeat;
    background-size:
      375px auto,
      cover;
    background-position:
      top left 10px,
      center;
    padding: 190px 0 155px;
  }

  .p1-d-box {
    width: 100%;
    margin-left: auto;
    display: flex;
    flex-direction: column;
  }

  .p1-d-img {
    width: 60%;
    margin-top: -44px;
    margin-left: auto;
  }

  .p1-d-item {
    width: 92%;
    margin: 0 auto;
  }

  .p1-d-img2 {
    width: 75%;
    position: relative;
    z-index: 10;
    margin-left: 0;
    margin-right: auto;
  }

  .p1-d-span {
    margin-top: 0;
    text-align: center;
  }

  .p1-d-span span {
    position: relative;
    display: inline-block;
    font-size: 24px;
    padding: 32px 26px;
    border-right: 1px solid #5e5e5e;
  }

  .p1-d-span span::after {
    display: none;
  }

  .p1-d-title {
    width: 345px;
    padding-left: 0;
    margin: 6px auto 0;
  }

  .p1-d-title h2 {
    font-size: 38px;
    font-weight: 500;
  }

  .p1-d-title h2 span {
    display: inline-block;
    font-size: 38px;
    font-weight: 500;
    padding-left: 36px;
  }

  .p1-d-text {
    width: 100%;
    margin: 15px auto 0;
  }

  .p1-d-text p {
    font-size: 16px;
    line-height: 2.4;
  }

  .p1-d .p1-botan a {
    margin: 35px auto 0;
  }

  /* p1-e */
  .p1-e-container {
    display: flex;
    flex-direction: column;
    gap: 27px;
    background-image: url(../image/top-back3.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .marqueer,
  .marqueer2 {
    overflow: hidden;
  }

  .marqueer ul,
  .marqueer2 ul {
    display: flex;
    margin: 0;
    padding: 0;
    width: max-content;
  }

  .marqueer li,
  .marqueer2 li {
    list-style: none;
    width: 221px;
  }

  .marqueer img,
  .marqueer2 img {
    display: block;
    width: 100%;
  }

  /* p1-f */
  .p1-f {
    background-image: url(../image/top-back2.png);
    background-repeat: repeat;
    background-size: 589px auto;
  }

  .p1-f-container {
    background-image: url(../image/top-back7.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top right;
    padding-top: 124px;
  }

  .p1-f-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-bottom: 40px;
  }

  .p1-f-img {
    width: 100%;
  }

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

  .p1-f-title {
    text-align: center;
  }

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

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

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

  .p1-f-box .p1-botan a {
    margin: 60px auto 0;
  }

  .p1-f-box-box {
    position: relative;
    background-image: url(../image/top-back9.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
  }

  .p1-f-box2 {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 255px;
    padding-bottom: 100px;
    margin: 0 auto;
  }

  .p1-f-item2 {
    width: 100%;
  }

  .p1-f-title2 {
    text-align: center;
  }

  .p1-f-title2 h2 {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
  }

  .p1-f-table {
    width: 100%;
    margin: 50px auto 0;
  }

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

  .p1-f-table th,
  .p1-f-table td {
    display: block;
    text-align: left;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
    padding: 20px 24px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
  }

  .p1-f-table th {
    width: 100%;
    padding-left: 24px;
  }

  .p1-f-link .header-tel {
    background-color: #c60000;
  }

  .p1-f-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 80px;
  }

  .header-tel,
  .header-tel2 {
    width: 300px;
    height: 69px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  #header .header-tel {
    margin-top: 25px;
    background: #c60000;
  }

  .header-tel span {
    color: #fff;
    font-size: 16px;
    font-family: "Noto Serif JP", serif;
    line-height: 1;
  }

  .header-tel-text,
  .header-tel2-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .header-tel-text img,
  .header-tel2-text img {
    width: 29px;
    height: auto;
  }

  .header-tel-text span,
  .header-tel2-text span {
    font-size: 32px;
  }

  .p1-f-img-box {
    width: 100%;
    margin: 97px auto 0;
  }

  .p1-f-img2 {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }

  .p1-f-img3 {
    max-width: 400px;
    width: 100%;
    margin: 37px auto 0;
  }

  .p1-f-img4 {
    width: 331px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
  }

  /* p1-g */
  .p1-g-box {
    width: 100%;
    height: 311px;
  }

  .p1-g-box iframe {
    width: 100%;
    height: 100%;
  }

  /* 共通 */
  .p1-botan a {
    width: 300px;
    height: 59px;
    background: #c60000;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    transition: 0.3s;
    padding-left: 40px;
  }

  .p1-botan a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 70px;
    height: 1px;
    background: #fff;
    transform: translateY(-50%);
  }

  /* こだわり */
  /* p2-a */
  .p2-a-container {
    background-image: url(../image/sub-back1.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 100px;
  }

  .p2-a-box {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    background-image: url(../image/top-back6.png);
    background-repeat: no-repeat;
    background-size: 365px auto;
    background-position: top left 10px;
    padding-top: 45px;
  }

  .p2-a-item {
    width: 92%;
    margin: 0 auto;
  }

  .p2-a-span span {
    font-size: 24px;
    color: #c60000;
  }

  .p2-a-span span span {
    font-size: 32px;
  }

  .p2-a-box .p2-a-title {
    width: auto;
    margin: 20px auto 0;
  }

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

  .p2-a-text {
    margin-top: 20px;
  }

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

  .p2-a-img {
    max-width: 400px;
    width: 92%;
    margin: 0 auto;
  }

  .p2-a-img-box {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 30px auto 0;
  }

  .p2-a-img-box img {
    max-width: 400px;
    width: 100%;
    height: auto;
  }

  .p2-a-box2.reverse {
    flex-direction: column-reverse;
    background-image: url(../image/p2-back3.png);
    background-repeat: no-repeat;
    background-size: 375px auto;
    background-position: top right 10px;
    padding-top: 100px;
    padding-bottom: 50px;
  }

  /* p2-b */
  .p2-b-container {
    background-image: url(../image/p2-back2.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
  }

  .p2-b-title {
    text-align: center;
    padding: 40px 0 50px;
    background-image: url(../image/p2-back1.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 70% center;
  }

  .p2-b-title h2 {
    font-size: 24px;
    font-weight: 500;
  }

  .p2-b-box {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
  }

  .p2-b-item {
    max-width: 400px;
    width: 100%;
  }

  .p2-b-text {
    width: 100%;
    height: auto;
    background-color: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    padding: 20px 10px;
  }

  .p2-b-text h3 {
    font-size: 20px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .p2-b-text h3 span {
    font-size: 16px;
  }

  .p2-b-text p {
    font-size: 16px;
    line-height: 2.2;
    padding-top: 10px;
  }

  .p2-b-box2 {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px auto 0;
  }

  .p2-b-box2 .p2-b-text {
    height: auto;
    padding: 20px 10px;
  }

  .p2-b-box2 .p2-b-text h3 {
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }

  .p2-b-box3 {
    padding-top: 50px;
    padding-bottom: 200px;
  }

  .p2-b-box3 .p1-botan a {
    margin: 0 auto;
  }

  /* 店舗案内 */
  .p3 {
    background-image: url(../image/p3-back2.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  /* p3-a */
  .p3-a-container {
    padding-top: 40px;
  }

  .p3-a-text {
    width: 92%;
    margin: 0 auto;
  }

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

  .p3-a-box {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background-image: url(../image/p3-back1.png);
    background-repeat: no-repeat;
    background-size: 320px auto;
    background-position: top left;
    padding-top: 10px;
    margin: 30px auto 0;
  }

  .p3-a-box img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .p3-a-box img:nth-of-type(2) {
    margin-top: 0;
  }

  .p3-a-box img:nth-of-type(3) {
    margin-top: 0;
  }

  /* p3-b */
  .p3-b-container {
    padding-top: 50px;
  }

  .p3-b-title {
    text-align: center;
    padding: 40px 0 50px;
    background-image: url(../image/p3-back4.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 30% center;
  }

  .p3-b-title h2 {
    font-size: 24px;
    font-weight: 500;
  }

  .p3-b-box {
    width: 92%;
    margin: 30px auto 0;
  }

  .p3-b-table {
    width: 100%;
  }

  .p3-b-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  .p3-b-table tr {
    border-bottom: 2px solid #d9d9d9;
  }

  .p3-b-table th,
  .p3-b-table td {
    display: block;
    position: relative;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    color: #333;
  }

  .p3-b-table th {
    width: 100%;
    text-align: left;
    padding-left: 20px;
    padding-bottom: 0;
  }

  .p3-b-table td {
    padding-top: 10px;
    padding-left: 20px;
  }

  .p3-b-table th::after {
    display: none;
  }

  /* p3-c */
  .p3-c-container {
    padding-top: 100px;
    padding-bottom: 70px;
  }

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

  .p3-c-img {
    max-width: 400px;
    width: 100%;
  }

  .p3-c-item {
    width: 100%;
  }

  .p3-c-item p {
    font-size: 16px;
    line-height: 2;
  }

  .p3-c-item p:nth-of-type(2) {
    padding: 20px 0;
  }

  .p3-c-map {
    width: 92%;
    height: 311px;
    margin: 30px auto 0;
  }

  .p3-c-map iframe {
    width: 100%;
    height: 100%;
  }

  /* p3-d */
  .p3-d {
    background-image: url(../image/top-back2.png);
    background-repeat: repeat;
    background-size: 589px auto;
  }

  .p3-d-container {
    background-image: url(../image/p3-back3.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top;
    padding-top: 50px;
    padding-bottom: 150px;
  }

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

  .p3-d-table {
    width: 100%;
  }

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

  .p3-d-table th,
  .p3-d-table td {
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    vertical-align: top;
    padding: 20px 0;
    border-bottom: 1px solid #bcbcbc;
  }

  .p3-d-table th {
    width: 100px;
    text-align: left;
    padding-left: 0;
  }

  .p3-d-table td strong {
    display: block;
    font-weight: 500;
  }

  .p3-d .header-tel {
    background-color: #c60000;
    margin: 30px auto 0;
  }

  /* p3-e */
  .p3-e {
    background-image: url(../image/top-back3.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: min(190px, 13.19vw);
  }

  /* お料理 */
  .p4 {
    background-image: url(../image/p3-back2.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  /* p4-a */
  .p4-a-container {
    background-image: url(../image/p3-back1.png);
    background-repeat: no-repeat;
    background-size: 320px auto;
    background-position: top 300px right;
    padding-top: 40px;
  }

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

  .p4-a-box:nth-of-type(2) {
    margin-top: 25px;
  }

  .p4-a-title {
    display: flex;
    align-items: center;
  }

  .p4-a-title.p4-a-title2 {
    line-height: 1;
    margin-top: 0;
  }

  .p4-a-title h2 {
    text-align: center;
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 500;
    color: #c60000;
    flex: 1;
    margin: 0;
  }

  .p4-a-title h2::before,
  .p4-a-title h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #c60000;
  }

  .p4-a-title h2::before {
    margin-right: 20px;
  }

  .p4-a-title h2::after {
    margin-left: 20px;
  }

  .p4-a-p {
    text-align: center;
  }

  .p4-a-item .p4-a-p p {
    font-size: 16px;
  }

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

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

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

  .p4-a-item table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
  }

  .p4-a-item table th,
  .p4-a-item table td {
    font-size: 16px;
    font-weight: 500;
    vertical-align: top;
    line-height: 2;
    padding: 20px 0;
    border-bottom: 1px dashed #767676;
  }

  .p4-a-item table th {
    text-align: left;
    padding-left: 5px;
  }

  .p4-a-item table td {
    text-align: right;
    padding-right: 5px;
  }

  .p4-a-item table td img {
    width: 130px;
    height: auto;
    margin-left: auto;
  }

  .p4-a-item table .p4-a-tr1 th,
  .p4-a-item table .p4-a-tr1 td {
    padding-top: 50px;
    padding-bottom: 0;
    border-bottom: none;
  }

  .p4-a-item table .p4-a-tr1 th {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .p4-a-item table .p4-a-tr1 th img {
    width: 20px;
    height: auto;
  }

  .p4-a-item table .p4-a-tr1-sub td {
    text-align: left;
    padding: 10px 0 0 5px;
    border-bottom: none;
  }

  .p4-a-item table .p4-a-tr2 th {
    padding-top: 20px;
    padding-bottom: 0;
    border-bottom: none;
  }

  .p4-a-item table .p4-a-tr3 th {
    padding-bottom: 0;
    border-bottom: none;
  }

  .p4-a-item table .p4-a-tr4 th,
  .p4-a-item table .p4-a-tr4 td {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .p4-a-item table .p4-a-tr5 th {
    padding: 20px 0 0;
    border-bottom: none;
  }

  .p4-a-item table .p4-a-tr5 th img {
    width: 200px;
    height: auto;
  }

  .p4-a-item table .p4-a-tr6 th,
  .p4-a-item table .p4-a-tr6 td {
    padding-bottom: 0;
    border-bottom: none;
  }

  .drink-table .drink-comment {
    border-bottom: none;
  }

  .drink-table .drink-comment td {
    padding: 10px 0 10px 5px;
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
  }

  /* お飲み物 */
  /* p5-a */
  .p5-a-box {
    width: 92%;
    padding-bottom: 100px;
    margin: 60px auto 0;
  }

  .p5-a-p {
    text-align: center;
    margin-top: 30px;
  }

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

  .p5-a-item-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
  }

  .p5-a-item-box img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  /* ギャラリー */
  .p6 {
    background-image: url(../image/p3-back2.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  /* p6-a */
  .p6-a-container {
    background-image: url(../image/p3-back1.png);
    background-repeat: no-repeat;
    background-size: 320px auto;
    background-position: top 300px right;
    padding-top: 40px;
  }

  .p6-a-box {
    width: 92%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
    padding-bottom: 300px;
    margin: 40px auto 0;
  }

  .p6-a-item img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* お知らせ一覧 */
  .p7-a-container {
    padding-top: 40px;
  }

  .p7-a-box {
    width: 92%;
    padding-bottom: 100px;
    margin: 30px auto 0;
  }

  .p7-a-item {
    border-bottom: 1px dashed #767676;
  }

  .p7-a-item a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 0;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
  }

  .p7-a-item a:hover {
    opacity: 0.7;
  }

  .p7-a-item time {
    flex-shrink: 0;
    width: 100%;
    font-size: 16px;
    color: #767676;
  }

  .p7-a-item h2 {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
  }

  .p7-a-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 80px;
  }

  .p7-page-btn a {
    width: 240px;
    height: 59px;
    background: #c60000;
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: 0.3s;
    font-size: 20px;
  }

  .p7-page-btn.prev a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 50px;
    height: 1px;
    background: #fff;
    transform: translateY(-50%);
  }

  .p7-page-btn.next a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 50px;
    height: 1px;
    background: #fff;
    transform: translateY(-50%);
  }

  .p7-page-btn a:hover,
  .p1-botan a:hover {
    opacity: 0.8;
  }

  /* 下層共通 */
  .sub-v {
    width: 100%;
    height: 260px;
  }

  .sub-v-container,
  .sub-v-box {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .sub-v-img {
    width: 100%;
    height: 100%;
  }

  .sub-v-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .sub-v-title {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sub-v-title h1 {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
  }

  /* フッター */
  .footer-container {
    background-image: url(../image/sp-back5.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 30px;
  }

  .footer-box {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 85px;
    margin: 0 auto;
  }

  .footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }

  .footer-logo {
    width: 100%;
  }

  .footer-logo a img {
    width: 241px;
    height: auto;
    margin: 0 auto;
  }

  .footer-logo p {
    font-size: 16px;
    margin-top: 10px;
  }

  .footer-link {
    margin-top: 0;
  }

  .footer-link img {
    width: 54px;
    height: auto;
  }

  .footer-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px 50px;
    margin-top: 80px;
  }

  .footer-nav li {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
  }

  .footer-nav a {
    display: block;
    font-size: 16px;
    line-height: 1;
    transition: 0.3s;
  }

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

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

  .page-top {
    display: none;
  }

  .sp-fixed-menu {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    display: flex;
    z-index: 9999;
  }

  .sp-fixed-item,
  .sp-fixed-top {
    background: #c60000;
    color: #fff;
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .sp-fixed-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }

  /* 電話は残りの幅 */
  .sp-fixed-item:first-child {
    flex: 1;
  }

  /* アクセスは90px */
  .sp-fixed-item:nth-child(2) {
    flex: 0 0 90px;
  }

  /* トップへは70px */
  .sp-fixed-top {
    flex: 0 0 70px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sp-fixed-item img {
    width: 29px;
    height: auto;
  }

  .sp-fixed-item:nth-child(2) img {
    width: 25px;
    height: auto;
  }

  .sp-fixed-item span {
    font-size: 26px;
    color: #fff;
    line-height: 1;
  }

  .sp-fixed-item:nth-child(2) span {
    font-size: 20px;
    color: #fff;
    line-height: 1;
  }

  .sp-fixed-top img {
    width: 22px;
    height: auto;
  }

  .sp-fixed-item:active,
  .sp-fixed-top:active {
    opacity: 0.8;
  }

  /* お知らせ内容 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;
  }
}

@media screen and (max-width: 375px) {
  /* トップ */
  .slide1 {
    background-image: url(../image/sp-img1.png);
  }

  .slide2 {
    background-image: url(../image/sp-img2.png);
  }

  .slide3 {
    background-image: url(../image/sp-img3.png);
  }

  .p1-f-container {
    background-image: url(../image/sp-back3.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top right;
    padding-top: 124px;
  }

  .p1-f-box-box {
    position: relative;
    background-image: url(../image/sp-back4.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top 38px left;
  }
}
