@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, h3, p, a, span, th, td {
  font-family: "Zen Maru Gothic", sans-serif;
}

h2 {
  font-family: "La Belle Aurore", cursive;
}

p {
  color: #333;
}

li {
  list-style: none;
}

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

a:hover {
  opacity: .8;
}


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

/* 消してる要素 */
.sp-header, .sp-br {
  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%;
  height: min(88px, 6.77vw);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #6BC7E1;
}

.header-container {
  padding-left: min(55px, 4.23vw);
  padding-right: min(87px, 6.69vw);
}

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

.header-logo {
  width: min(192px, 14.77vw);
  height: auto;
}

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

.header-nav ul {
  display: flex;
  gap: min(40px, 3.08vw);
}

.header-nav ul li a {
  font-size: clamp(10px, 1.23vw, 16px);
  color: #fff;
}

.header-link {
  display: flex;
  align-items: center;
}

.header-inst {
  width: min(26px, 2vw);
  height: auto;
  margin-right: min(40px, 3.08vw);
}

.header-tel {
  display: flex;
  margin-right: min(25px, 1.92vw);
}

.header-tel img {
  width: min(24px, 1.85vw);
  height: min(24px, 1.85vw);
}

.header-tel span {
  font-size: clamp(10px, 2.46vw, 32px);
  color: #fff;
}

.header-line {
  width: min(218px, 16.77vw);
  height: auto;
}

/* トップ */
.main-v {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.main-v-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

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

.slide1 { background-image: url(../image/top-back1.png); }
.slide2 { background-image: url(../image/top-back2.png); }
.slide3 { background-image: url(../image/top-back3.png); }

.main-v-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-v-title h1 img {
  width: min(650px, 50vw);
  height: auto;
}

.p1-a {
  background-color: #bbe2f1;
}

.p1-a-container {
  padding: min(80px, 6.15vw) 0;
}

.p1-a-box {
  width: min(815px, 62.69vw);
  position: relative;
  margin: 0 auto;
}

.p1-a-title {
  position: absolute;
  top: 50%;
  left: max(-150px, -11.54vw);
  transform: translateY(-50%);
  text-align: center;
  width: min(128px, 9.85vw);
}

.p1-a-title img {
  width: min(42px, 3.23vw);
  height: auto;
  display: block;
  margin: 0 auto;
}

.p1-a-title h2 {
  font-size: min(32px, 2.46vw);
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
}

.p1-a-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: min(10px, 0.77vw);
  background-color: #fff;
  padding: min(35px, 2.69vw) min(55px, 4.23vw);
  border-radius: min(30px, 2.31vw);
}

.p1-a-link {
  display: flex;
  text-decoration: none;
  border-bottom: 1px dashed #eee;
  padding-bottom: min(10px, 0.77vw);
  color: #333;
}

.p1-a-date {
  width: min(120px, 9.23vw);
  font-size: min(16px, 1.23vw);
  color: #5E454B;
}

.p1-a-post-title {
  font-size: min(16px, 1.23vw);
  flex: 1;
}

.p1-a-img {
  position: absolute;
  bottom: 0;
  right: max(-230px, -17.69vw);
}

.p1-a-img img {
  width: min(250px, 19.23vw);
  height: auto;
}

.p1-b {
  background-color: #D9F4FF;
  background-image: url(../image/top-back8.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right;
}

.p1-b-container {
  padding-top: min(60px, 4.62vw);
  padding-bottom: min(40px, 3.08vw);
}

.p1-b-box {
  width: min(588px, 45.23vw);
  text-align: center;
  position: relative;
  margin: 0 auto;
}

.p1-b .h2-title p {
  font-size: min(24px, 1.85vw);
  font-weight: bold;
  color: #6BC7E1;
}

.p1-b-text {
  margin-top: min(16px, 1.23vw);
  margin-bottom: min(50px, 3.85vw);
}

.p1-b-text p {
  font-size: min(15px, 1.15vw);
  line-height: 2;
}

.p1-b-img1 {
  position: absolute;
  top: 0;
  left: max(-376px, -28.92vw);
  z-index: 10;
}

.p1-b-img1 img {
  width: min(276px, 21.23vw);
  height: auto;
}

.p1-b-img2 {
  position: absolute;
  bottom: min(22px, 1.69vw);
  left: max(-219px, -16.85vw);
  z-index: 10;
}

.p1-b-img2 img {
  width: min(187px, 14.38vw);
  height: auto;
}

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

.p1-c-container {
  padding-top: min(70px, 5.38vw);
  padding-bottom: min(100px, 7.69vw);
}

.p1-c-box {
  width: min(1280px, 98.46vw);
  position: relative;
  margin: 0 auto;
}

.p1-c .h2-title {
  text-align: center;
}

.p1-c-item {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-top: min(50px, 3.85vw);
}

.p1-c-text {
  width: min(418px, 32.15vw);
  text-align: center;
  background-color: #fff;
  position: absolute;
  top: min(24px, 1.85vw);
  left: min(246px, 18.92vw);
  z-index: 10;
  padding: min(50px, 3.85vw) min(60px, 4.62vw);
}

.p1-c-text span {
  font-size: min(36px, 2.77vw);
  font-weight: bold;
  color: #5E454B;
  position: relative;
  display: inline-block;
  padding-top: min(15px, 1.15vw);
}

.p1-c-text span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(87px, 6.69vw);
  height: min(36px, 2.77vw);
  background-image: url(../image/part5.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p1-c-text h3 {
  font-size: min(24px, 1.85vw);
  color: #5E454B;
  margin: min(15px, 1.15vw) 0;
}

.p1-c-text p {
  font-size: min(15px, 1.15vw);
  line-height: 2;
  margin-bottom: min(15px, 1.15vw);
}

.p1-c-img1 img {
  width: min(765px, 58.85vw);
  height: auto;
}

.p1-c-item.p1-c-item2 {
  justify-content: flex-start;
}

.p1-c-item2 .p1-c-text {
  left: auto;
  right: min(246px, 18.92vw);
}

.p1-c-item:nth-child(3),
.p1-c-item:nth-child(4) {
  margin-top: min(75px, 5.77vw);
}

.p1-c-img2 {
  position: absolute;
  bottom: max(-60px, -4.62vw);
  left: min(100px, 7.69vw);
  z-index: 10;
}

.p1-c-img2 img {
  width: min(95px, 7.31vw);
  height: auto;
}

.p1-d {
  background-color: #bbe2f1;
}

.p1-d-container {
  padding-top: min(60px, 4.62vw);
  padding-bottom: min(110px, 8.46vw);
}

.p1-d-box1 {
  width: min(1186px, 91.23vw);
  text-align: center;
  position: relative;
  margin: 0 auto;
}

.p1-d-text p {
  font-size: min(15px, 1.15vw);
  line-height: 2;
}

.p1-d-item-box {
  display: flex;
  justify-content: space-between;
  margin: min(44px, 3.38vw) min(128px, 9.85vw) 0;
}

.p1-d-item {
  position: relative;
  z-index: 5;
}

.p1-d-item img {
  width: min(422px, 32.46vw);
  height: auto;
}

.p1-d-item a {
  width: min(264px, 20.31vw);
  height: min(58px, 4.46vw);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: min(28px, 2.15vw);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: min(24px, 1.85vw);
  color: #6BC7E1;
  background-color: #fff;
  border-radius: min(10px, 0.77vw);
  border: 1px solid #6BC7E1;
  text-decoration: none;
}

.p1-d-item a::after {
  content: "";
  position: absolute;
  right: min(10px, 0.77vw);
  top: 50%;
  transform: translateY(-50%);
  width: min(29px, 2.23vw);
  height: min(29px, 2.23vw);
  background-image: url(../image/part6.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p1-d-img1 {
  position: absolute;
  top: min(80px, 6.15vw);
  left: 0;
  z-index: 2;
}

.p1-d-img1 img {
  width: min(250px, 19.23vw);
  height: auto;
}

.p1-d-img2 {
  position: absolute;
  bottom: max(-27px, -2.08vw);
  right: 0;
  z-index: 2;
}

.p1-d-img2 img {
  width: min(115px, 8.85vw);
  height: auto;
}

.p1-d-box2 {
  margin-top: min(110px, 8.46vw);
  overflow: hidden;
  width: 100%;
}

.p1-d-slider-track {
  display: flex;
  width: calc(min(307px, 23.62vw) * 16);
  animation: p1-d-loop 80s linear infinite;
  transform: translateX(max(-307px, -23.62vw));
}

.p1-d-box2 img {
  width: min(307px, 23.62vw);
  height: auto;
  flex-shrink: 0;
}

@keyframes p1-d-loop {
  0% {
    transform: translateX(max(-307px, -23.62vw));
  }
  100% {
    /* -2763px = -307px(初期位置) - (307px * 8枚分) */
    transform: translateX(max(-2763px, -212.54vw));
  }
}

.p1-e {
  background-color: #D9F4FF;
  background-image: url(../image/top-back12.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right;
}

.p1-e-container {
  padding-top: min(110px, 8.46vw);
  padding-bottom: min(110px, 8.46vw);
}

.p1-e-box {
  width: min(906px, 69.69vw);
  margin: 0 auto;
}

.p1-e .h2-title {
  display: inline-block;
  padding-left: min(10px, 0.77vw);
}

.p1-e .h2-title img {
  display: block;
  margin: 0 auto;
  height: auto;
}

.p1-e .h2-title h2 {
  font-size: min(64px, 4.92vw);
  text-align: left;
}

.p1-e .h2-title p {
  font-size: min(36px, 2.77vw);
  font-weight: bold;
  color: #6BC7E1;
  text-align: left;
}

.p1-e .p1-b-botan a {
  margin-left: 0;
  margin-right: auto;
}

.p1-e-text {
  padding-left: min(10px, 0.77vw);
  margin-top: min(35px, 2.69vw);
  margin-bottom: min(35px, 2.69vw);
}

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

.p1-f {
  background-image: url(../image/top-back13.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p1-f-box {
  width: min(503px, 38.69vw);
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  padding: min(54px, 4.15vw) min(50px, 3.85vw);
  margin: 0 auto;
}

.p1-f-title h2 {
  font-size: min(48px, 3.69vw);
  font-weight: 400;
  color: #6BC7E1;
}

.p1-f-text p {
  font-size: min(16px, 1.23vw);
  color: #5E454B;
  line-height: 2;
}

.p1-f-link {
  width: min(218px, 16.77vw);
  margin: min(28px, 2.15vw) auto min(20px, 1.54vw);
}

.p1-f-tel {
  display: flex;
  justify-content: center; /* 電話番号エリアを中央に */
  align-items: center;
  margin-bottom: min(20px, 1.54vw);
}

.p1-f-tel img {
  width: min(24px, 1.85vw);
  height: min(24px, 1.85vw);
}

.p1-f-tel span {
  font-size: min(32px, 2.46vw);
  font-weight: bold;
  color: #5E454B;
}

.p1-f-line {
  width: min(218px, 16.77vw);
  height: auto;
}

.p1-f-item-box {
  width: min(200px, 15.38vw);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.p1-f-item-box p {
  font-size: min(15px, 1.15vw);
  color: #5E454B;
  line-height: 2;
}

.p1-f-item {
  text-align: left;
}


/* 商品一覧 */
.p2-a {
  background-image: url(../image/top-back5.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p2-a-container {
  padding-top: min(52px, 3.85vw);
  padding-bottom: min(115px, 8.52vw);
}

.p2-a .h2-title {
  text-align: center;
}

.p2-a .h2-title h2 {
  font-family: "Zen Maru Gothic", sans-serif;
}

.p2-a-box {
  width: min(1280px, 94.81vw);
  margin: min(52px, 3.85vw) auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p2-a-item {
  width: min(608px, 45.04vw);
  margin-bottom: min(25px, 1.85vw);
  box-sizing: border-box;
}

.p2-a-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #333333;
  padding-bottom: min(5px, 0.37vw);
  margin-bottom: min(10px, 0.74vw);
}

.p2-a-title span {
  font-size: min(20px, 1.48vw);
  color: #333;
}

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


/* 店舗案内 */
.p3-a {
  background-color: #D9F4FF;
}

.p3-a-container {
  padding-top: min(64px, 4.74vw);
  padding-bottom: min(107px, 7.93vw);
}

.p3-a .h2-title {
  text-align: center;
}

.p3-a .h2-title h2 {
  font-family: "Zen Maru Gothic", sans-serif;
}

.p3-a-box {
  width: min(1280px, 94.81vw);
  margin: min(64px, 4.74vw) auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: min(25px, 1.85vw) min(25px, 1.85vw);
  justify-content: space-between;
}

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

.p3-b {
  background-image: url(../image/p3-back1.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p3-b-container {
  padding-top: min(77px, 5.92vw);
  padding-bottom: min(130px, 10vw);
}

.p3-b .h2-title {
  text-align: center;
}

.p3-b .h2-title h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
}

.p3-b-text {
  text-align: center;
  margin-top: min(55px, 4.23vw);
  margin-bottom: min(34px, 2.62vw);
}

.p3-b-text p {
  font-size: min(15px, 1.15vw);
  line-height: 2;
  color: #fff;
}

.p3-b-p {
  text-align: center;
}

.p3-b-p p {
  font-size: min(24px, 1.85vw);
  color: #fff;
}

.p3-b-p p span {
  font-size: min(16px, 1.23vw);
  color: #fff;
  margin-left: min(30px, 2.31vw);
}

.p3-c {
  background-image: url(../image/top-back5.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p3-c-container {
  padding: min(100px, 7.69vw) 0;
}

.p3-c-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.p3-c-table {
  width: min(596px, 45.85vw);
  background-color: #fff;
  padding: min(47px, 3.62vw) min(45px, 3.46vw) min(64px, 4.92vw);
  position: relative;
  z-index: 5;
  margin-right: max(-24px, -1.85vw);
}

.p3-c-table table {
  width: 100%;
  margin-top: min(28px, 2.15vw);
}

.p3-c .h2-title {
  text-align: center;
}

.p3-c .h2-title h2 {
  font-family: "Zen Maru Gothic", sans-serif;
}

.p3-c-table table tr th, 
.p3-c-table table tr td {
  text-align: left;
  font-size: min(15px, 1.15vw);
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  padding-top: min(10px, 0.77vw);
  padding-bottom: min(10px, 0.77vw);
}

.p3-c-table table tr th {
  width: min(110px, 8.46vw);
  vertical-align: top;
}

.p3-c-img {
  width: min(636px, 48.92vw);
  height: auto;
  margin-top: min(60px, 4.62vw);
}

.p3-d {
  background-color: #D9F4FF;
}

.p3-d-container {
  padding: min(105px, 8.08vw) 0;
}

.p3-d-img {
  text-align: center;
}

.p3-d-img img {
  width: min(728px, 56vw);
  height: auto;
}


/* 当店のこだわり */
.p4-a .p1-b-text {
  padding-bottom: min(120px, 9.23vw);
  margin-bottom: 0;
}

.p4-b {
  background-image: url(../image/p4-back1.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p4-b-container {
  padding-top: min(70px, 5.38vw);
  padding-bottom: min(80px, 6.15vw);
}

.p4-b .h2-title {
  text-align: center;
}

.p4-b .h2-title h2 {
  font-family: "Zen Maru Gothic", sans-serif;
}

.p4-b-box {
  margin-top: min(40px, 3.08vw);
}

.p4-b-img {
  text-align: center;
} 

.p4-b-img img {
  width: min(700px, 53.85vw);
  height: auto;
  display: block;
  margin: 0 auto;
}

.p4-b-item {
  width: min(990px, 76.15vw);
  text-align: center;
  background-color: #fff;
  box-shadow: 0 min(10px, 0.77vw) min(20px, 1.54vw) min(-5px, -0.38vw) rgba(0, 0, 0, 0.1);
  padding: min(50px, 3.85vw) min(20px, 1.54vw) min(80px, 6.15vw);
  margin: 0 auto;
}

.p4-b-item span {
  font-size: min(36px, 2.77vw);
  font-weight: bold;
  color: #5E454B;
  position: relative;
  display: inline-block;
  padding-top: min(15px, 1.15vw);
}

.p4-b-item span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(87px, 6.69vw);
  height: min(36px, 2.77vw);
  background-image: url(../image/part5.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p4-b-item h3 {
  font-size: min(24px, 1.85vw);
  color: #5E454B;
  margin: min(15px, 1.15vw) 0;
}

.p4-b-item p {
  font-size: min(15px, 1.15vw);
  line-height: 2;
  margin-bottom: min(15px, 1.15vw);
}

.p4-b-box:nth-child(3),
.p4-b-box:nth-child(4) {
  margin-top: min(60px, 4.62vw);
}

.p4-c {
  background-color: #D9F4FF;
}

.p4-c-container {
  padding-top: min(80px, 5.93vw);
  padding-bottom: min(100px, 7.41vw);
}

.p4-c .h2-title {
  text-align: center;
}

.p4-c .h2-title h2 {
  font-family: "Zen Maru Gothic", sans-serif;
}

.p4-c-box {
  width: min(1280px, 94.81vw);
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-bottom: min(120px, 8.89vw);
  margin: min(170px, 12.59vw) auto 0;
}

.p4-c-item {
  width: min(570px, 42.22vw);
}

.p4-c-title {
  display: flex;
  justify-content: space-between;
}

.p4-c-title span {
  font-size: min(36px, 2.67vw);
  font-weight: bold;
  color: #6BC7E1;
}

.p4-c-p {
  padding: min(10px, 0.74vw) 0;
}

.p4-c-p p {
  font-size: min(16px, 1.19vw);
  color: #6BC7E1;
}

.p4-c-img {
  width: 100%;
}

.p4-c-img2 {
  position: absolute;
  top: max(-242px, -17.93vw);
  left: 0;
  z-index: 10;
}

.p4-c-img2 img {
  width: min(250px, 18.52vw);
  height: auto;
}

.p4-c-img3 {
  position: absolute;
  bottom: 0;
  right: min(65px, 4.81vw);
  z-index: 10;
}

.p4-c-img3 img {
  width: min(115px, 8.52vw);
  height: auto;
}


/* 採用情報 */
.p5-a {
  background-color: #D9F4FF;
}

.p5-a-container {
  padding-top: min(65px, 3.82vw);
  padding-bottom: min(77px, 4.53vw);
}

.p5-a .h2-title {
  text-align: center;
}

.p5-a .h2-title h2 {
  font-family: "Zen Maru Gothic", sans-serif;
}

.p5-a-box {
  width: min(1170px, 68.82vw);
  position: relative;
  padding: min(30px, 1.76vw) 0;
  margin: 0 auto;
}

.p5-a-item {
  display: flex;
  justify-content: space-between;
  margin-top: min(30px, 1.76vw);
}

.p5-a-text {
  position: relative;
  padding-top: min(10px, 0.59vw);
  padding-left: min(30px, 1.76vw);
}

.p5-a-text h3 {
  font-size: min(36px, 2.12vw);
  color: #333;
  padding-bottom: min(20px, 1.18vw);
}

.p5-a-text p {
  font-size: min(20px, 1.18vw);
  color: #333;
  line-height: 2;
}

.p5-a-text img {
  width: min(42px, 2.47vw);
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.p5-a-img {
  width: min(392px, 23.06vw);
  height: auto;
}

.p5-a-item.p5-a-item2 {
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: min(27px, 1.59vw);
}

.p5-a-img2 {
  position: absolute;
  bottom: 0;
  left: max(-173px, -10.18vw);
  z-index: 10;
}

.p5-a-img2 img {
  width: min(250px, 14.71vw);
  height: auto;
}

.p5-a-img3 {
  position: absolute;
  top: min(165px, 9.71vw);
  right: max(-234px, -13.76vw);
  z-index: 10;
}

.p5-a-img3 img {
  width: min(250px, 14.71vw);
  height: auto;
}

.p5-d .h2-title {
  text-align: center;
}

.p5-d .h2-title h2 {
  font-family: "Zen Maru Gothic", sans-serif;
}

.p5-d .p1-f-text {
  margin-top: min(34px, 2.62vw);
}

.p5-d .p1-f-link {
  width: min(218px, 16.77vw);
  margin: min(34px, 2.62vw) auto;
}


/* お知らせ */
.p6-a {
  background-image: url(../image/top-back5.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p6-a-container {
  padding: min(100px, 8.33vw) 0;
}

.p6-a-box {
  width: min(1000px, 83.33vw);
  margin: 0 auto;
}

.p6-a-title {
  text-align: center;
  font-size: min(36px, 3.0vw);
  color: #333;
  font-weight: bold;
  margin-bottom: min(30px, 2.5vw);
}

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

.p6-a-content img {
  width: 100%;
  max-width: min(500px, 41.67vw);
  height: auto;
  display: block;
  margin: min(30px, 2.5vw) auto;
}

.p6-a-content > * {
  margin-bottom: min(30px, 2.5vw);
}

.p6-a-content > *:last-child {
  margin-bottom: 0;
}




/* 下層共通 */
.sub-v {
  background-image: url(../image/sub-back.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.sub-v.sub-v2 {
  background-image: url(../image/sub-back2.png);
}

.sub-v.sub-v3 {
  background-image: url(../image/sub-back3.png);
}

.sub-v-container {
  padding-top: min(240px, 18.46vw);
  padding-bottom: min(123px, 9.46vw);
}

.sub-v-title {
  text-align: center;
}

.sub-v-title h1 {
  font-size: min(32px, 2.46vw);
  font-weight: 400;
  color: #fff;
}


/* 共通 1300で可変 */
.h2-title img {
  width: min(42px, 3.23vw);
  height: auto;
}

.h2-title h2 {
  font-size: min(36px, 2.77vw);
  font-weight: 400;
  color: #6BC7E1;
  line-height: 1.3;
}

.p1-c .h2-title h2 {
  font-family: "Zen Maru Gothic", sans-serif;
}

.p1-b-botan a {
  width: min(264px, 20.31vw);
  height: min(58px, 4.46vw);
  font-size: min(15px, 1.15vw);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #6BC7E1;
  border-radius: min(10px, 0.77vw);
  margin: 0 auto;
  position: relative;
}

.p1-b-botan a::after {
  content: "";
  position: absolute;
  right: min(20px, 1.54vw);
  top: 50%;
  transform: translateY(-50%);
  width: min(10px, 0.77vw);
  height: min(9px, 0.69vw);
  background-image: url(../image/part4.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}



/* フッター */
.footer-map {
  width: 100%;
  height: min(500px, 38.46vw);
}

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

.footer-container {
  background-color: #6BC7E1;
  padding-top: min(44px, 3.38vw);
}

.footer-logo {
  width: min(192px, 14.77vw);
  height: auto;
  margin: 0 auto;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  gap: min(50px, 3.85vw);
  margin-top: min(30px, 2.31vw);
  margin-bottom: min(30px, 2.31vw);
}

.footer-nav ul li a {
  font-size: min(16px, 1.23vw);
  color: #fff;
  text-decoration: none;
}

.copy-right {
  text-align: center;
  padding-bottom: min(18px, 1.38vw);
}

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

/* トップに戻るボタン */
.page-top {
  position: fixed;
  bottom: min(27px, 2.08vw);
  right: min(326px, 25.08vw);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

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

.page-top img {
  width: min(56px, 4.31vw);
  height: auto;
}



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

  .sp-br, .sp-header {
    display: block;
  }

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

  .sp-header-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 15px;
    background-color: #6BC7E1;
    z-index: 2;
  }

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

  .sp-menu-btn {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    z-index: 3;
    cursor: pointer;
  }

  .sp-menu-btn span {
    position: absolute;
    left: 7.5px;
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s;
  }

  .sp-menu-btn span:nth-child(1) { top: 10px; }
  .sp-menu-btn span:nth-child(2) { top: 18px; }
  .sp-menu-btn span:nth-child(3) { top: 26px; }

  .sp-header-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 305px;
    background: rgba(107, 199, 225, 0.95);
    z-index: 1;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
    display: flex;
  }

  .sp-header-nav.is-active {
    transform: translateY(60px);
  }

  .sp-nav-list {
    width: 100%;
    list-style: none;
    padding: 44px;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .sp-nav-list li {
    padding: 15px 0;
    border-bottom: 1px solid #fff;
  }

  .sp-nav-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
  }


  /* トップ */
  .main-v {
    height: 578px;
  }

  .main-v-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .main-v-title h1 img {
    width: 393px;
    height: auto;
  }

  .p1-a-container {
    padding: 28px 0 43px;
  }

  .p1-a-box {
    width: 92%;
  }

  .p1-a-title {
    text-align: center;
    position: static;
    transform: none;
    width: 100%;
    margin-bottom: 24px;
  }

  .p1-a-title img {
    width: 42px;
  }

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

  .p1-a-item {
    gap: 12px;
    padding: 30px;
    border-radius: 20px;
  }

  .p1-a-link {
    padding-bottom: 10px;
  }

  .p1-a-date {
    width: 130px;
    font-size: 16px;
    padding-left: 20px;
  }

  .p1-a-post-title {
    font-size: 16px;
    flex: 1;
  }

  .p1-a-img {
    display: none;
  }

  .p1-b {
    background-image: url(../image/sp-top-back1.png);
    background-size: 186px;
    background-position: right bottom;
  }

  .p1-b-container {
    padding-top: 28px;
    padding-bottom: 14px;
  }

  .p1-b-box {
    width: 92%;
  }

  .p1-b .h2-title p {
    font-size: 24px;
  }

  .p1-b-text {
    margin-top: 5px;
    margin-bottom: 115px;
  }

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

  .p1-b-img1 {
    top: auto;
    left: -4%;
    bottom: 75px;
  }

  .p1-b-img1 img {
    width: 137px;
    height: auto;
  }

  .p1-b-img2 {
    bottom: 75px;
    left: 104px;
  }

  .p1-b-img2 img {
    width: 93px;
    height: auto;
  }

  .p1-c-container {
    padding-top: 43px;
    padding-bottom: 66px;
  }

  .p1-c-box {
    width: 92%;
  }

  .p1-c-item {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 42px;
  }

  .p1-c-text {
    max-width: 480px;
    width: 96%;
    position: static;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    padding: 48px 8px;
    margin: -34px 10px 0;
  }

  .p1-c-text span {
    font-size: 36px;
    padding-top: 15px;
  }

  .p1-c-text span::before {
    width: 87px;
    height: 36px;
  }

  .p1-c-text h3 {
    font-size: 24px;
    margin: 13px 0;
  }

  .p1-c-text p {
    font-size: min(15px, 3.49vw);
    margin-bottom: 13px;
  }

  .p1-c-img1 img {
    max-width: 500px;
    width: 100%;
    height: auto;
  }

  .p1-c-item.p1-c-item2 {
    justify-content: center;
  }

  .p1-c-item:nth-child(3),
  .p1-c-item:nth-child(4) {
    margin-top: 26px;
  }

  .p1-c-img2 {
    display: none;
  }

  .p1-d {
    background-color: #bbe2f1;
  }

  .p1-d-container {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .p1-d-box1 {
    width: 92%;
    padding-bottom: 68px;
  }

  .p1-d-text p {
    font-size: 15px;
  }

  .p1-d-item-box {
    flex-direction: column;
    align-items: center;
    gap: 33px;
    margin: 66px 20px 0;
  }

  .p1-d-item img {
    max-width: 500px;
    width: 100%;
    height: auto;
  }

  .p1-d-item a {
    width: 264px;
    height: 58px;
    bottom: 22px;
    font-size: 24px;
    border-radius: 10px;
  }

  .p1-d-item a::after {
    right: 10px;
    width: 29px;
    height: 29px;
  }

  .p1-d-img1 {
    position: absolute;
    top: 175px;
    left: -4%;
  }

  .p1-d-img1 img {
    width: 112px;
    height: auto;
  }

  .p1-d-img2 {
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .p1-d-img2 img {
    width: 67px;
    height: auto;
  }

  .p1-d-box2 {
    margin-top: 34px;
    overflow: hidden;
    width: 100%;
  }

  .p1-d-slider-track {
    display: flex;
    width: 3328px;
    animation: p1-d-loop 80s linear infinite;
    transform: translateX(-166.4px);
  }

  .p1-d-box2 img {
    width: 208px;
    height: auto;
    flex-shrink: 0;
  }

  @keyframes p1-d-loop {
    0% {
      transform: translateX(-166.4px);
    }
    100% {
      transform: translateX(-1830.4px);
    }
  }

  .p1-e {
    background-image: url(../image/sp-top-back2.png);
    background-size: 100% auto;
    background-position: bottom;
  }

  .p1-e-container {
    padding-top: 40px;
    padding-bottom: 95px;
  }

  .p1-e-box {
    width: 92%;
  }

  .p1-e .h2-title {
    display: block;
    text-align: center;
    padding-left: 0;
  }

  .p1-e .h2-title h2 {
    font-size: 48px;
    text-align: center;
  }

  .p1-e .h2-title p {
    font-size: 24px;
    text-align: center;
  }

  .p1-e .p1-b-botan a {
    margin-left: auto;
    margin-right: auto;
  }

  .p1-e-text {
    padding-left: 0;
    margin-top: 26px;
    margin-bottom: 60px;
  }

  .p1-e-text p {
    font-size: 15px;
  }

  .p1-f {
    background-image: url(../image/top-back13.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .p1-f-box {
    max-width: 397px;
    width: 92%;
    padding: 66px 18px 44px;
  }

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

  .p1-f-text p {
    font-size: min(14px, 3.26vw);
  }

  .p1-f-link {
    width: 218px;
    margin: 20px auto;
  }

  .p1-f-tel {
    margin-bottom: 23px;
  }

  .p1-f-tel img {
    width: 24px;
    height: 24px;
  }

  .p1-f-tel span {
    font-size: 32px;
  }

  .p1-f-line {
    width: 218px;
    height: auto;
  }

  .p1-f-item-box {
    width: 200px;
  }

  .p1-f-item-box p {
    font-size: 15px;
  }


  /* 商品一覧 */
  .p2-a-container {
    padding-top: 50px;
    padding-bottom: 60px;
  }

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

  .p2-a-item {
    width: 100%;
    margin-bottom: 25px;
  }

  .p2-a-title {
    padding-bottom: 5px;
    margin-bottom: 10px;
  }

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

  .p2-a-text p {
    font-size: 14px;
  }


  /* 店舗案内 */
  .p3-a-container {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .p3-a-box {
    width: 92%;
    margin: 64px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 2%; 
    justify-content: space-between;
  }

  .p3-a-box img {
    width: 32%;
    height: auto;
  }

  .p3-b-container {
    width: 92%;
    padding-top: 35px;
    padding-bottom: 70px;
    margin: 0 auto;
  }

  .p3-b-text {
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .p3-b-text p {
    font-size: 15px;
  }

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

  .p3-b-p p span {
    font-size: 16px;
    margin-left: 10px;
  }

  .p3-c-container {
    padding: 50px 0;
  }

  .p3-c-box {
    width: 92%;
    flex-direction: column-reverse;
    align-items: center;
    margin: 0 auto;
  }

  .p3-c-table {
    max-width: 480px;
    width: 92%;
    padding: 25px 25px 35px;
    margin-top: -24px;
    margin-right: 0;
  }

  .p3-c-table table {
    margin-top: 0;
  }

  .p3-c-table table tr th, 
  .p3-c-table table tr td {
    font-size: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .p3-c-table table tr th {
    width: 100px;
  }

  .p3-c-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-top: 0;
  }

  .p3-d-container {
    width: 92%;
    padding: 50px 0;
    margin: 0 auto;
  }

  .p3-d-img img {
    max-width: 500px;
    width: 100%;
    height: auto;
  }

  /* 当店のこだわり */
  .p4-a .p1-b-text {
    padding-bottom: 115px;
    margin-bottom: 0;
  }

  .p4-a .p1-b-img1, .p4-a .p1-b-img2 {
    bottom: 15px;
  }

  .p4-b-container {
    padding-top: 40px;
    padding-bottom: 50px;
  }

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

  .p4-b-img img {
    max-width: 500px;
    width: 100%;
  }

  .p4-b-item {
    max-width: 480px;
    width: 96%;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    padding: 30px 10px 45px;
  }

  .p4-b-item span {
    font-size: 36px;
    padding-top: 15px;
  }

  .p4-b-item span::before {
    width: 87px;
    height: 36px;
  }

  .p4-b-item h3 {
    font-size: 24px;
    margin: 15px 0;
  }

  .p4-b-item p {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .p4-b-box:nth-child(3),
  .p4-b-box:nth-child(4) {
    margin-top: 50px;
  }

  .p4-c-container {
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .p4-c-box {
    width: 92%;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-bottom: 60px;
    margin: 70px auto 0;
  }

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

  .p4-c-title span {
    font-size: 20px;
  }

  .p4-c-p {
    padding: 10px 0;
  }

  .p4-c-p p {
    font-size: 15px;
  }

  .p4-c-img {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }

  .p4-c-img2 {
    position: absolute;
    top: -78px;
    left: -4%;
  }

  .p4-c-img2 img {
    width: 100px;
    height: auto;
  }

  .p4-c-img3 {
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .p4-c-img3 img {
    width: 65px;
    height: auto;
  }

  /* 採用情報 */
  .p5-a-container {
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .p5-a-box {
    width:92%;
    padding: 30px 0 90px;
  }

  .p5-a-item {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .p5-a-text {
    position: relative;
    padding-top: 10px;
    padding-left: 0;
  }

  .p5-a-text h3 {
    font-size: 20px;
    padding-bottom: 10px;
  }

  .p5-a-text p {
    font-size: 15px;
  }

  .p5-a-text img {
    width: 35px;
    left: -4%;
  }

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

  .p5-a-item.p5-a-item2 {
    flex-direction: column;
    gap: 20px;
  }

  .p5-a-img2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
  }

  .p5-a-img2 img {
    width: 110px;
    height: auto;
  }

  .p5-a-img3 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
  }

  .p5-a-img3 img {
    width: 110px;
    height: auto;
  }

  .p5-d .p1-f-text {
    margin-top: 30px;
  }

  .p5-d .p1-f-link {
    width: 218px;
    margin: 30px auto;
  }


  /* お知らせ */
  .p6-a-container {
    padding: 50px 0;
  }

  .p6-a-box {
    width: 92%;
  }

  .p6-a-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .p6-a-content {
    font-size: 15px;
  }

  .p6-a-content img {
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
  }

  .p6-a-content > * {
    margin-bottom: 30px;
  }


  /* 下層共通 */
  .sub-v-container {
    padding-top: 140px;
    padding-bottom: 100px;
  }

  .sub-v-title h1 {
    font-size: 32px;
  }


  /* 共通 */
  .h2-title img {
    width: 42px;
  }

  .h2-title h2 {
    font-size: 36px;
  }

  .p1-b-botan a {
    width: 264px;
    height: 58px;
    font-size: 15px;
    border-radius: 10px;
  }

  .p1-b-botan a::after {
    right: 20px;
    width: 10px;
    height: 9px;
  }


  /* フッター */
  .footer-map {
    height: 270px;
  }

  .footer-container {
    padding-top: 30px;
  }

  .footer-logo {
    width: 120px;
  }

  .footer-nav ul {
    gap: 30px;
    margin-top: 34px;
    margin-bottom: 70px;
  }

  .footer-nav ul li a {
    font-size: 13px;
  }

  .copy-right {
    padding-bottom: 20px;
  }

  .copy-right p {
    font-size: 12px;
  }

  /* トップに戻るボタン */
  .page-top {
    bottom: 50px;
    right: 17px;
  }

  .page-top img {
    width: 42px;
    height: auto;
  }




} 