.google-fonts {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/*ヘッター*/
header {
  background-color: #2F2F2F;
  padding: 16px 0;
}

header img {
  margin: auto;
}

/*メインビジュアル*/
.mv {
  width: 768px;
  background-image: url(../images/mv.png);
  background-position: center;
  background-size: cover;
  height: 550px;
  margin: auto;
}

.mv h2 {
  font-size: 29px;
  font-weight: bold;
  padding-top: 60px;
  padding-left: 20px;
  padding-bottom: 160px;
  line-height: 1.3;
  text-shadow: 3px 3px 6px rgba(255, 255, 255, 0.5);
}

.mv h2 span {
  color: #322FF0;
  font-size: 36px;
}

.mv-schedule {
  padding-left: 20px;
}

.mv-schedule h3 {
  font-size: 24px;
  text-shadow: 3px 3px 6px rgba(255, 255, 255, 0.5);
}

.mv-schedule h3 span {
  font-size: 10px;
  text-shadow: 3px 3px 6px rgba(255, 255, 255, 0.5);
}

.mv-schedule p {
  font-size: 16px;
  text-shadow: 3px 3px 6px rgba(255, 255, 255, 0.5);
}

.mv-box {
  display: flex;
  gap: 10px;
  padding-left: 200px;
}

.mv-item {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #ffffff;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #FF7D93;
  box-shadow: 2px 2px 5px #FF2D55;

}

/*開催期間*/
.info {
  background-color: #FFFBFB;

}

.info h2 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 10px;
  color: #333333;
  padding-top: 20px;
}

.info p {
  font-size: 40px;
  border-radius: 10px;
  border: solid 1px #000000;
  text-align: center;
  font-weight: bold;
  margin: 0;
}

.event-date {
  font-size: 64px;
  font-weight: bold;
  text-align: center;
}

.date-1 {
  color: #39cdff;
  /* 日付の色を水色に設定 */
}

.date-2 {
  color: #ff0000;
  /* 日付の色を赤に設定 */
}

.day {
  font-size: 0.8em;
  /* 曜日を少し小さく設定 */
}

.info h3 {
  font-size: 32px;
  color: #333333;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 60px;
  padding-bottom: 20px;
}

/*CTA*/
.contact {
  width: 500px;
  height: 80px;
  text-align: center;
  margin: auto;
  margin-bottom: 50px;
}

.contact a {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #000000;
  border-radius: 10px;

  background: #e3d7b3;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 240px;
  padding: 10px 25px;

  transition: 0.3s ease-in-out;
  font-weight: 600;
  border-radius: 50px;
  border-bottom: 4px solid #d8c384;
  overflow: hidden;
}

.contact a:active {
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}

.contact a:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
  animation: shine 3s infinite;
}

@keyframes shine {
  33% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.contact a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  transform: rotate(45deg) translateY(-48%);
  position: absolute;
  top: 48%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

/*成約特典*/
.tokuten h2 {
  font-size: 32px;
  text-align: center;
  padding: 20px;
}

.tokuten h2 {
  position: relative;
  margin: 30px;
  text-align: center;
}

.tokuten h2:before,
.tokuten h2:after {
  position: absolute;
  z-index: 0;
  bottom: -10px;
  display: block;
  content: '';
  border: 1em solid #FF2D55;


}

.tokuten h2:before {
  left: -30px;
  border-left-width: 15px;
  border-left-color: transparent;

}

.tokuten h2:after {
  right: -30px;
  border-right-width: 15px;
  border-right-color: transparent;
}

.tokuten h2 span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 1rem 2rem;
  color: #fff;
  background: #FF7D93;

}

.tokuten h2 span:before,
.tokuten h2 span:after {
  position: absolute;
  bottom: -10px;
  display: block;
  width: 10px;
  height: 10px;
  content: '';
  border-style: solid;
  border-color: #FF2D55 transparent transparent transparent;
}

.tokuten h2 span:before {
  left: 0;
  border-width: 10px 0 0 10px;
}

.tokuten h2 span:after {
  right: 0;
  border-width: 10px 10px 0 0;
}

.tokuten-box {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.tokuten-box h3 {
  text-align: center;
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 5px #C0C0C0;
  background-color: #faebf5;
  border-radius: 10px 10px 0px 0px;

  text-align: center;
  margin: auto;
}

.tokuten-1 {
  width: 379px;
  height: 514px;
  border-radius: 10px;
  border: solid 1px #FF7D93;
}

.tokuten-lens-text {
  padding: 20px 30px;
}

/*
.tokuten-1 span {
  background-color: #f8b6c1;
  color: #000;
  margin: 0 0.03em;
  display: inline-block;
  width: 2.7em;
  height: 2.7em;
  line-height: 1.7;
  /* これによりテキストが垂直方向にも中央に配置される 
  border-radius: 100vh;
  font-weight: bold;
  text-align: center;
  /* テキストを水平方向の中央に配置 
  font-size: 1.3em;
  /* フォントを大きくする 

}*/

.tokuten-1 p {
  padding: 15px;
}

.tokuten-1 li {
  color: #ff0000;
  font-weight: bold;
  padding-bottom: 5px;
}

.tokuten-1-p {
  display: flex;
  justify-content: center;
  gap: 5px;

}

.tokuten-2 {
  width: 379px;
  height: 514px;
  border-radius: 10px;
  border: solid 1px #FF7D93;
  text-align: center;
}

.tokuten-2 h6 {
  font-size: 16px;
  font-weight: lighter;
  padding: 16px 20px 0px 20px;
  margin: 0;
}

.tokuten-2 p {
  padding: 0px 15px;
  margin: 0;
}

.tokuten-lens h4 {
  margin: 0;
  padding-top: 18px;
  font-weight: bold;
}

.tokuten-lens p {
  font-size: 13px;
}

.tokuten-lens span {
  color: #ff0000;
  font-weight: bold;
}

.tokuten-2-p img {
  margin: auto;
  padding-top: 20px;
  padding-left: 40px;
}

/*お悩み*/
.nayami h2 {
  margin-bottom: 30px;
}

.nayami-p img {

  margin: 0 auto;
  padding: 50px 0px;
}

.nayami {
  text-align: center;
}

/*おしゃれメガネ相談会*/
.soudankai {
  width: 768px;
  height: auto;
  border-radius: 10px;
  border: solid 1px #FF7D93;
  margin: auto;
  margin-bottom: 40px;
  background-color: rgba(255, 246, 246)
}

.soudankai h2 {
  text-align: center;
  font-size: 36px;
  padding: 20px;
  background: linear-gradient(to right, #e53500, #ff00e1);
  background: -webkit-linear-gradient(to right, #e53500, #ff00e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.soudankai-yokoyama {
  display: flex;
}

.soudankai-yokoyama img {
  padding-left: 60px;
}

.soudankai-yokoyama-name h5 {
  font-size: 16px;
  font-weight: bold;
  padding-left: 40px;
}

.soudankai-yokoyama-name p {
  font-size: 14px;
  padding: 0px 40px 10px
}

.soudankai-style {
  display: flex;
  padding: 30px;
}

.soudankai-style p {
  font-size: 14px;
  padding-left: 60px;
  padding-top: 20px;
}

.soudankai-style img {
  padding-right: 30px;

}

.soudankai-p {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding-bottom: 40px;
}

/*出展ブランド*/
.brand img {
  margin: 0 auto;
  margin-bottom: 40px;
}

.brand h2 {
  text-align: center;
  margin-bottom: 20px;
}

/*オリバートランクショー*/
.trunk img {
  margin: 0 auto;
  margin-bottom: 40px;
}

.trunk p {
  margin: auto;
  margin-bottom: 10px;
}

/*オリバー*/

/* CSS（スタイル） */

/* .detail-box {
   
    display: none;
     最初は非表示 
    padding: 20px;
    margin-top: 10px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
  }

  .show-detail-button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    /* ブロック要素にする 
    margin: 0 auto;
    /* 左右のマージンをautoに設定して中央揃えにする
  }

  .container {
    display: flex;
    /* Flexboxを使用 
    justify-content: center;
    /* 水平方向中央揃え 
    align-items: center;
    /* 垂直方向中央揃え 
    min-height: 100vh;
    /* 画面全体の高さにする 
  }

  .show-detail-button:hover {
    background-color: #367c39;
  }*/



.trunk p {
  padding: 1rem 2rem;
  color: #fff;
  background-image: -webkit-linear-gradient(315deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
  background-image: linear-gradient(135deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
  width: 200px;
  text-align: center;
  font-weight: bold;
}

.oriver {
  width: 768px;
  height: auto;
  background-color: rgba(#FAFFFF, 0, 0, 20);
  border-radius: 10px;
  border: solid 1px #39CDFF;
  margin: auto;
  margin-bottom: 40px;
}

.oriver h2 {
  font-size: 32px;
  text-align: center;
  padding: 20px;
}

.oriver-text {
  font-size: 16px;
  text-align: center;
  padding: 20px 20px;
}

.oriver-history {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding-bottom: 20px;
}

.oriver-box {
  width: 636px;
  height: 192px;
  border-radius: 10px;
  border: solid 1px #39CDFF;
  display: flex;
  padding: 20px;
  gap: 20px;
}

.oriver-box p {
  font-size: 12px;
}

.oriver-1 {
  display: flex;
  flex-direction: column;
}

.oriver-box h3 {
  font-size: 16px;
  white-space: nowrap;
  text-align: center;
  border-bottom: 1px solid #000;
}

/*高級宝飾メガネ*/
.kinbekkou p {
  padding: 1rem 2rem;
  color: #fff;
  background-image: -webkit-linear-gradient(315deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
  background-image: linear-gradient(135deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
  width: 200px;
  text-align: center;
  font-weight: bold;
  margin: auto;
  margin-bottom: 10px;

}

.kinbekkou {
  width: 768px;
  height: auto;
  margin: auto;
  margin-bottom: 40px;
}

.kinbekkou-box {
  background-color: rgba(243, 237, 218, 0.35);
  padding: 30px 55px;
  margin: 0 auto 2em;
  /* 外側の余白（上下と中央配置） */
  padding: 2em;
  /* 内側余白 */
  background: none;
  /* 元のボックス背景色なし */
  border: 1px solid #D8C384;
  /* 線の太さ（1px）、種類（実線）、色（#ccc） */
  position: relative;
  /* 配置（基準となる位置） */
}

.kinbekkou-box:after {
  background-color: #f3edda;
  /* ずらしたボックスの背景色 */
  border: none;
  /* 枠線なし */
  content: '';
  /* 擬似要素にコンテンツなし */
  position: absolute;
  /* 配置（ここを動かす） */
  top: 7px;
  /* 上から7pxずらす */
  left: 7px;
  /* 左から7pxずらす */
  width: 100%;
  /* 幅100%（親要素に合わせる） */
  height: 100%;
  /* 高さ100%（親要素に合わせる） */
  z-index: -1;
  /* 背景として後ろに表示 */
}

/* pタグの余白 */
.box2-6 p {
  margin: 0;
}

.kinbekkou-box img {
  margin-bottom: 15px;
}

.kinbekkou h2 {
  font-size: 32px;
  text-align: center;
}

.kinbekkou h5 {
  font-size: 14px;
  font-weight: lighter;
  padding: 0 30px;
}

.kinbekkou-p {
  margin: 0 auto;
  padding: 30px;
}

/*特別価格セット*/
.set {
  width: 768px;
  height: auto;
  margin: auto;
  margin-bottom: 40px;
}

.set-box {
  border: solid 1px #D8C384;
}

.set-text p {
  padding: 1rem 2rem;
  color: #fff;
  background-image: -webkit-linear-gradient(315deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
  background-image: linear-gradient(135deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
  width: 200px;
  text-align: center;
  font-weight: bold;
  margin: auto;
  margin-bottom: 10px;
}

.set h5 {
  text-align: center;
}

.set-item {
  width: 666px;
  height: 250px;
  border: solid 2px #39CDFF;
  margin: auto;
  margin-bottom: 20px;
}

.set-item h3 {
  font-size: 19px;
  font-weight: bold;
  white-space: nowrap;
  margin: auto;
}

.set-titil {
  display: flex;
  gap: 5px;
  height: 72px;
  padding: 10px;

}

.set-titil h3 {
  margin: auto;
  white-space: nowrap;
}

.set-titil p {
  font-size: 12px;
  white-space: nowrap;
  text-align: center;
  margin: 0;
}

.set-titil h5 {
  font-size: 19px;
  font-weight: bold;
  white-space: nowrap;
  margin: 0;
}

.set-titil h5 span {
  font-size: 32px;
  font-weight: bold;
  color: #FF0404;
}

.set-titil-1 {
  display: flex;
  flex-direction: column;
}

.set-lens {
  width: 333px;
}

.set-lens h4 {
  font-size: 16px;
  text-align: center;
  padding: 5px 0px;
}



.set-lens p {
  font-size: 10px;
  text-align: center;
  padding-top: 5px;
}

.set-lens img {
  padding-left: 16px;
}

.set-hoya {
  background-image: url(../images/b-lens.png);
  width: 300px;
  height: 119px;
  margin: auto;

}

.set-hoya h5 {
  padding-top: 5px;
  margin: 0;
}

.set-hoya h6 {
  font-weight: lighter;
  padding: 5px 10px;
  margin: 0;
}

.kingaku {
  color: #FF0404;
}

.setkingaku {
  color: #39CDFF;
  font-size: 15px;
  font-weight: bold;
}

.set-megane {
  display: flex;
  height: 178px;
  background-color: rgba(57, 205, 225, 0.09)
}

.set-frame {
  width: 333px;

}

.set-frame h4 {
  font-size: 16px;
  text-align: center;
  padding-top: 5px;
}

.set-frame h5 {
  font-size: 13px;
  margin: 0;
}

.set-frame p {
  font-size: 10px;
  text-align: center;
  padding-top: 5px;
}

.kokusan {
  color: #39CDFF;
  font-size: 15px;
  font-weight: bold;
}

.set-frame img {
  padding-left: 44px;
  padding-top: 10px;

}

.set-item2 {
  width: 666px;
  height: 250px;
  border: solid 2px #39ff5d;
  margin: auto;
  margin-bottom: 20px;
}

.set-megane2 {
  display: flex;
  height: 178px;
  background-color: rgba(57, 255, 93, 0.09)
}

.setkingaku2 {
  color: #39FF5D;
  font-size: 15px;
  font-weight: bold;
}

.osyare {
  color: #39FF5D;
  font-size: 15px;
  font-weight: bold;
}

.set-item3 {
  width: 666px;
  height: 250px;
  border: solid 2px #FCF403;
  margin: auto;
  margin-bottom: 20px;
}

.set-megane3 {
  display: flex;
  height: 178px;
  background-color: rgba(252, 244, 3, 0.09)
}

.setkingaku3 {
  color: #C2C202;
  font-size: 15px;
  font-weight: bold;
}

.set-frame-p {
  display: flex;
  justify-content: center;
}

.set-frame-p2 {
  display: flex;
  gap: 10px;
  margin: auto;
}

.set-fram-p2_1 {
  background-image: url(../images/dome.png);
  width: 160px;
  height: 119px;
}

.set-fram-p2_1 h5 {
  margin: 0;
  font-size: 10px;
}

.set-fram-p2_1 h6 {
  font-weight: lighter;
  padding: 5px;
  margin: 0;
}

.set-fram-p2_2 {
  background-image: url(../images/rose.png);
  width: 160px;
  height: 119px;
}

.set-fram-p2_2 h5 {
  margin: 0;
  font-size: 10px;
}

.set-fram-p2_2 h6 {
  font-weight: lighter;
  padding: 5px;
  margin: 0;
}

.set-frame-p23 {
  background-image: url(../images/titan.png);
  width: 300px;
  height: 119px;
  margin: auto;
}

.set-frame-p23 h5 {
  padding-top: 5px;
  margin: 0;
}

.set-frame-p23 h6 {
  font-weight: lighter;
  padding: 5px 30px;
  margin: 0;
}

.set-fram-p2_12 {
  background-image: url(../images/rub.png);
  width: 160px;
  height: 119px;
}

.set-fram-p2_12 h5 {
  margin: 0;
  font-size: 10px;
}

.set-fram-p2_12 h6 {
  font-weight: lighter;
  padding: 5px;
  margin: 0;
}

.set-fram-p2_22 {
  background-image: url(../images/inon1.png);
  width: 160px;
  height: 119px;
}

.set-fram-p2_22 h5 {
  margin: 0;
  font-size: 10px;
}

.set-fram-p2_22 h6 {
  font-weight: lighter;
  padding: 5px;
  margin: 0;
}


.clear {
  color: #C2C202;
  font-size: 15px;
  font-weight: bold;
}

.set-item4 {
  width: 666px;
  height: 250px;
  border: solid 2px #F7810B;
  margin: auto;
  margin-bottom: 20px;
}

.set-megane4 {
  display: flex;
  height: 178px;
  background-color: rgba(255, 164, 72, 0.09)
}

.clear2 {
  color: #F7810B;
  font-size: 15px;
  font-weight: bold;
}

.setkingaku4 {
  color: #F7810B;
  font-size: 15px;
  font-weight: bold;
}

.set-titil h6 {
  width: 42px;
  height: 42px;
  border-radius: 21px;
  border: solid 1px #FF2D55;
  font-weight: bold;
  color: #FF2D55;
  text-align: center;
  margin: 10px 0px 20px 0px;
}

.set-item5 {
  width: 666px;
  height: 250px;
  border: solid 2px #FF7D93;
  margin: auto;
  margin-bottom: 20px;
}

.set-megane5 {
  display: flex;
  height: 178px;
  background-color: rgba(255, 125, 147, 0.09)
}

.clear3 {
  color: #FF7D93;
  font-size: 15px;
  font-weight: bold;
}

.setkingaku5 {
  color: #FF7D93;
  font-size: 15px;
  font-weight: bold;
}

/*レンズアドバイザー*/
.advisor {
  width: 768px;
  height: auto;
  background-color: rgba(235, 250, 250, 0.7);
  margin: auto;

  padding: 30px 55px;
  margin: 0 auto 2em;
  /* 外側の余白（上下と中央配置） */
  padding: 2em;
  /* 内側余白 */
  background: none;
  /* 元のボックス背景色なし */
  border: 1px solid #39CDFF;
  /* 線の太さ（1px）、種類（実線）、色（#ccc） */
  position: relative;
  /* 配置（基準となる位置） */
  margin-bottom: 40px;
}

.advisor:after {
  background-color: rgba(235, 250, 250);
  /* ずらしたボックスの背景色 */
  border: none;
  /* 枠線なし */
  content: '';
  /* 擬似要素にコンテンツなし */
  position: absolute;
  /* 配置（ここを動かす） */
  top: 7px;
  /* 上から7pxずらす */
  left: 7px;
  /* 左から7pxずらす */
  width: 100%;
  /* 幅100%（親要素に合わせる） */
  height: 100%;
  /* 高さ100%（親要素に合わせる） */
  z-index: -1;
  /* 背景として後ろに表示 */
}

/* pタグの余白 */
.box2-6 p {
  margin: 0;
}


.advisor h2 {
  font-size: 32px;
  text-align: center;
  padding: 30px;
}

.advisor-img {
  padding-left: 84px;
}

.advisor-yamamoto {
  display: flex;
}

.advisor-yamamoto-text h3 {
  text-align: center;
  font-size: 20px;
  text-decoration: underline #39CDFF;
  line-height: 1.7;
  padding: 20px;

}

.advisor-yamamoto-shin p {
  text-align: center;
  padding: 16px;
  font-weight: bold;
}

.advisor-yamamoto-shin img {
  margin: auto;
}

.advisor-yoyaku {
  display: flex;
  gap: 20px;
  padding-top: 42px;
  padding-bottom: 30px;
}

.advisor-yoyaku h5 {
  width: 280px;
  height: 96px;
  border-radius: 10px;
  margin: auto;
  text-align: center;
  font-size: 18px;
  color: #FFF;
  background-color: #e53500;
  padding-top: 18px;
}


.advisor-yoyaku p {
  width: 380px;
  text-align: center;
  padding-right: 20px;
  font-size: 14px;
}

/*HOYAレンズ*/

.lens-parent h2 {
  text-align: center;
  padding: 20px;

}

.lens-item {
  width: 753px;
  height: 506px;
  border-radius: 10px;
  border: solid 3px #7EE1D4;
  margin: auto;
  margin-bottom: 30px;
}

.lens-item h3 {
  font-size: 20px;
  color: #024554;
  /*border-left: 10px solid #7ee1D4;
  text-decoration: underline #f9e615c7;*/
  padding: 20px;
  text-align: center;
  text-shadow: 2px 2px 5px #C0C0C0;
  background-color: rgba(235, 250, 250);
  border-radius: 10px 10px 0px 0px;
}

.lens-item p {
  padding: 22px 40px;
}

.lens-item ul {
  padding-left: 60px;

}

.lens-text h4 {
  text-align: center;
}

.lens-text ul {
  padding-right: 20px;
}

.lens-item-p img {
  padding-left: 20px;
}

.lens-parent-box {
  gap: 10px;
  height: auto;
}

.lens-item-p {
  display: flex;
}

/*視覚検査*/
.kensa {
  width: 768px;
  height: auto;
  margin: auto;
  border: solid 2px #7EE1D4;
  border-radius: 10px;
  margin-bottom: 40px;
}

.kensa h2 {
  text-align: center;
  font-size: 32px;
  padding: 30px;
}

.kensa h6 {
  font-size: 14px;
  font-weight: lighter;
  padding: 0px 30px 20px 30px;
}

.sikakukensa {
  width: 520px;
  height: 200px;
  display: flex;
  margin: auto;
  background-color: rgba(235, 250, 250);
  margin-bottom: 20px;
  border-radius: 10px;
}

.sikakukensa-box {
  margin-bottom: 10px;
}

.sikakukensa-png img {
  padding-left: 231px;
  padding-bottom: 30px;
}

.sikakukensa-box h3 {
  text-align: center;
}

.sikakukensa-text h4 {
  text-align: center;
  font-size: 24px;
  font-weight: lighter;
  padding: 20px;
  text-shadow: 2px 2px 5px #C0C0C0;
}

.sikakukensa-text p {
  font-size: 12px;
  padding: 0 40px;
}

/*お客様の感想*/
.kansou img {

  margin: 0 auto;
  margin-bottom: 40px;

}

/*固定フッター*/
#floating_menu {
  display: block;
  width: 100%;
  background-color: rgba(28, 28, 28, 0.93);
  color: rgb(255, 255, 255);
  z-index: 10;
  bottom: 0px;
  left: 0px;
  position: fixed;
  margin: auto;
  padding: 5px 0px;
}

#floating_menu .floating_menu_wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  height: 50px;
  width: 90%;
  margin: auto;
}

#floating_menu .floating_menu_wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  width: 50%;
  height: 50px;
  text-align: center;
  color: rgb(255, 255, 255);
  flex-direction: row-reverse;
  padding: 0px;
  border-right: 1px solid rgb(235, 235, 235);
  gap: 5px;
}

#floating_menu .floating_menu_wrap .tel::after {
  background-image: url(../images/footer_icon_tel.svg);
}

#floating_menu .floating_menu_wrap a:last-child {
  border-right: 0px solid rgb(235, 235, 235);
}

#floating_menu .floating_menu_wrap .raiten::after {
  background-image: url(../images/footer_icon_calendar.svg);
}


/*店舗情報*/
.tenpo {
  max-width: 750px;
  padding: 20px;
  margin: 10px auto 10px;
  background-color: #fff;
  color: #000;
  overflow: auto;
  box-sizing: border-box;
}

.tenpo h3 {
  font-size: 20px;
  color: #333333;
  text-align: center;
  margin: 0;
}

.tenpo-p {
  text-align: center;
  font-size: 25px;
}

.tenpo-p img {
  width: 100%;

}

.logo2 {
  max-width: 250px;
  margin: 0 auto 20px;
  position: relative;
  margin: 20px auto 40px;
  left: 0;
  right: 0;
}

.left {
  float: left;
  width: 39%;
  overflow: auto;
}

.left p {
  font-size: 14px;
  text-align: left;
}

.tenpo-p {
  width: 100%;
  margin: 0 auto 10px;
}

.right {
  float: right;
  width: 60%;
  padding: 0 0 0 0;
  overflow: auto;
}

.g-map {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.tenpo a {
  font-size: 16px;
  border-radius: 0px;
  display: block;
  max-width: 100%;
  margin: 10px auto;
  padding: 0.5em;
  border: 1px solid #454545;
  box-sizing: content-box;
  background: #fff;
  color: #000000;
  text-align: center;
  margin-bottom: 150px;
}


/*レスポンシブ*/
@media screen and (max-width: 768px) {
  .logo {
    margin: auto;
  }

  .logo img {
    width: 50%;

  }

  .tenpologo img {
    width: 50%;
    margin: auto;
  }

  .mv {
    height: auto;
    width: 100%;
  }

  .mv h2 {

    width: 80%;
    /* 幅いっぱいに */
    text-align: center;
    /* 中央寄せ */
    font-size: 1.3em;
    /* スマホで見やすいサイズに縮小 */
    line-height: 1.3;
    padding: 40px 0px 160px 0px;
  }


  .mv h2 span {
    font-size: 1.4em;
  }

  .mv p {
    font-size: 2.4vw;
  }

  .mv-schedule {
    margin-top: 20px;
  }

  .mv-schedule h3 {
    font-size: 1.4em;
  }

  .mv-schedule p {
    font-size: 0.9em;
    line-height: 1.5;
  }

  .mv-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* 折り返しを許可 */
    gap: 10px;
    margin-top: 20px;
    padding: 10px 0px;
    margin-bottom: 20px;
  }

  .mv-item {
    width: 60px;
    /* 円のサイズ */
    height: 60px;
    border-radius: 50%;
    background-color: #f0f0f0;
    /* 仮の色 */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    font-size: 0.9em;
    padding: 5px;
    /* テキストが円からはみ出さないように */
    box-sizing: border-box;
  }



  .info h1 {
    font-size: 3.45vw;
  }

  .info p {
    font-size: 7.45vw;
  }

  .info h3 {
    font-size: 6.45vw;
  }

  .event-date {
    font-size: 6.8vw;
    margin: 10px;
  }

  .contact {
    width: auto;
  }

  .tokuten h2 {
    font-size: 18px;
    padding: 0;
  }

  .tokuten-box {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .nayami-p {
    width: 100%;
    padding: 0;
    align-items: center;

  }

  .soudankai {
    width: 100%;

  }

  .soudankai h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .soudankai-yokoyama {
    flex-direction: column;
    /* 画像とテキストを縦並びにする */
    gap: 15px;
    /* 縦並び時の間隔を調整 */
    padding: 15px;
    margin-bottom: 30px;
  }

  .soudankai-yokoyama img {
    flex: none;
    /* 固定幅を解除 */
    width: 80%;
    /* 幅いっぱいに広げつつ、少し余白を残す */
    max-width: 250px;
    /* 画像の最大幅 */
    margin: 0 auto;
    /* 中央寄せ */
    padding: 0;
  }

  .soudankai-yokoyama-name h5 {
    font-size: 1.5em;
    text-align: center;
    margin-top: 0;
    padding: 0;
  }

  .soudankai-yokoyama-name p {
    font-size: 0.95em;
    text-align: center;
    padding: 0;
  }

  .soudankai-style {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    padding: 13px;
  }

  .soudankai-style p {
    font-size: 0.95em;
    padding: 0;
  }

  .soudankai-style img {
    flex: none;
    /* 固定幅を解除 */
    width: 80%;
    /* 幅いっぱいに広げつつ、少し余白を残す */
    max-width: 300px;
    /* 画像の最大幅 */
    margin: 0 auto;
    /* 中央寄せ */
    padding: 0;
  }

  .soudankai-p {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    /* 要素の折り返しを許可 */
    justify-content: center;
    /* 中央寄せ */
    width: 100%;
  }

  .soudankai-p img {
    /* 2列表示にする（2%は隙間） */
    /* width: calc(50% - 5px); のようにgapを考慮してcalcを使っても良い */
    height: auto;
    /* 縦横比を維持 */
    object-fit: cover;
  }

  .oriver {
    width: 100%;
    height: auto;
  }

  .oriver h2 {
    font-size: 1.4em;

  }

  .oriver-box {
    display: flex;
    /* 画像とテキストを横並びにする */

    align-items: flex-start;
    /* 上揃え */
    flex-direction: column;
    /* 画像とテキストを縦並びにする */
    gap: 20px;
    /* 縦並びになった時の間隔 */
    flex: 1;
    width: 90%;
  }

  .oriver-box img {
    max-width: 100%;
    /* 画像がエリアからはみ出さないように */
    height: auto;
    /* 縦横比を維持 */
    display: block;
    /* 余白除去 */
    max-width: 80%;
    /* 例: 画像を少し小さくする */
    margin: 0 auto;
    /* 中央寄せ */
  }

  .oriver-1 {
    flex: 1;
  }

  .kinbekkou {
    width: 100%;
    height: auto;
  }

  .kinbekkou h2 {
    font-size: 1.4em;
  }

  .kinbekkou-p {
    width: 100%;
    padding: 0;
  }

  .set {
    width: 100%;
  }

  .set-item {
    width: 100%;
    height: auto;
    flex-direction: column;
  }

  .set-titil {
    flex-direction: column;
    height: auto;
    padding: 10px 0px;
  }

  .set-titil h5 {
    font-size: 1em;
  }

  .set-titil h5 span {
    font-size: 1.4em;
  }

  .set-megane {
    flex-direction: column;
    height: auto;
    margin: auto;
  }

  .set-lens {
    margin: auto;
    padding-top: 10px;
  }

  .set-frame {
    margin: auto;
    padding-top: 10px;
    padding-bottom: 5px;
  }

  .set-item2 {
    width: 100%;
    height: auto;
    flex-direction: column;
  }

  .set-megane2 {
    flex-direction: column;
    height: auto;
    margin: auto;
  }

  .set-item3 {
    width: 100%;
    height: auto;
    flex-direction: column;
  }

  .set-megane3 {
    flex-direction: column;
    height: auto;
    margin: auto;
  }

  .set-item4 {
    width: 100%;
    height: auto;
    flex-direction: column;
  }

  .set-megane4 {
    flex-direction: column;
    height: auto;
    margin: auto;
  }

  .set-item5 {
    width: 100%;
    height: auto;
    flex-direction: column;
  }

  .set-megane5 {
    flex-direction: column;
    height: auto;
    margin: auto;
  }

  

  .set-titil h6 {
    border-radius: 5px;
    width: auto;
    height: auto;
    font-size: 20px;
  }

  .set-frame-p2 {
    padding: 0;
  }

  .set-frame img {
    padding: 0;
    margin: auto;
  }

  .advisor {
    width: 100%;
    height: auto;
  }

  .advisor h2 {
    font-size: 1.5em;
  }

  .advisor-img {
    padding: 0;
  }

  .advisor-yamamoto {
    flex-direction: column;
  }

  .advisor-yamamoto-text h3 {
    font-size: 1.4em;
  }

  .advisor-yoyaku {
    flex-direction: column;
  }

  .lens-parent h2 {
    font-size: 1.6em;
  }

  .lens-item {
    width: 100%;
    height: auto;
  }

  .lens-item-p {
    flex-direction: column;
  }

  .lens-item-p img {
    padding: 10px;
  }

  .kensa {
    width: 100%;
    height: auto;
  }

  .kensa h2 {
    font-size: 1.6em;
  }

  .sikakukensa {
    width: auto;
    height: auto;

  }

  .sikakukensa-text h4 {
    white-space: nowrap;
    font-size: 1.2em;
    padding: 20px 10px;
  }

  .sikakukensa-text p {
    padding: 0 8px;
  }

  .sikakukensa-png img {
    padding: 0;
    margin-bottom: 10px;
  }

  .tenpo h3 {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .logo2 img {
    margin: auto;
    margin-bottom: 20px;
  }

  .tenpo-info {
    display: flex;
    flex-direction: column;
  }

  .left {
    margin: auto;
    width: 90%;
  }

  .right {
    margin: auto;
    width: 90%;
  }

}

/* タブレット用のスタイル（例: 768pxから1024pxまで）*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv-item {
    width: 80px;
    /* タブレットでは少し大きくする */
    height: 80px;
    font-size: 1em;
    /* フォントサイズも調整 */
    padding: 8px;
  }

  .mv p {
    font-size: 1em;
  }
}