
body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.6;
  color: #333;
}

/* ヘッダーここから */
header {
  position: relative;
  z-index: 20;        /* 装飾画像より上に重ねる */
  background: #fff;  /* 背景色は白で重なりをはっきり */
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px 5px 30px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.site-header__logo img {
  height: 80px;
}

.site-header__navigation {
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  /* display: flex;
  gap: 45px; */
}

.site-header__navigation ul {
  display: flex;
  gap: 45px;
}

.site-header__navigation a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 10px;
  font-size: 14px;
}

.site-header__nav-text {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.site-header__navigation a:hover {
  background-color: #f0f0f0;
  border-radius: 8px;
}

.site-header__nav-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}

.site-header__nav-icon--sp {
  display: none;
}

.not_clickable {
  pointer-events: none;
}

/* レスポンシブ対応 */
@media (max-width: 820px) {
  .site-header {
  padding: 5px;
  }
  .site-header__nav-icon--pc {
    display: none;
  }
  .site-header__nav-icon--sp {
    display: inline;
  }
/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
    background-color: rgba(114, 188, 75, 0.95); /* 0.5 は透過度（50%） */    
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーション*/
#g-nav ul {
  position: static; /* ← absolute配置やめる */
  transform: none;
  top: auto;
  left: auto;
  flex-direction: column;
  width: 100%;
  padding: 0;
  margin: 0;
  margin-top:100px;
}

/*リストのレイアウト設定*/

#g-nav li {
  text-align: left; /* ← 中央寄せ → 左寄せ */
  width: 100%; /* ← 全幅にしておくとレイアウトが安定 */
}

#g-nav li a {
  max-width: 90%;
  margin: 0 auto;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  color: #fff !important;
  padding: 15px 20px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5); 
}

#g-nav li a img.site-header__nav-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
/* 通常時（三本線） */
.openbtn span {
  display: inline-block;
  transition: background-color 0.4s ease, transform 0.4s ease;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #333; /* ← 通常は黒 */
  width: 45%;
}

/* ×になるとき（active） */
.openbtn.active span {
  background-color: #fff; /* ← 白にフェード変化 */
}

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
}

/* 固定ボタン */
/* デフォルト：PC/タブレット用だけ表示 */
.fixed-buttons--sp {
  display: none;
}
.fixed-buttons--pc {
  position: absolute;
  top: 15px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

/* 固定ボタン 共通スタイル */
.fixed-buttons .fixed-buttons__btn {
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.fixed-buttons .fixed-buttons__btn i {
  margin-right: 6px;
}

.fixed-buttons__btn--phone {
  background-color: #72bc4b; 
  color: #fff;
  font-size: 23px;
  letter-spacing: 0.14em;
}

.fixed-buttons__btn--phone:hover {
  background-color: #5aa63a;;
}

.fixed-buttons__btn--contact {
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 600;
  font-style: normal;
  background-color: #f98c41;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.fixed-buttons__btn--contact i {
  font-size: 20px;
  vertical-align: middle;
}

.fixed-buttons__btn--contact:hover {
  background-color: #e07a33;
}

.fixed-buttons .fixed-buttons__btn--insta {
  background-color: #E1306C;
  color: #fff;
}

.fixed-buttons .fixed-buttons__btn--insta i {
  margin: 0;
  font-size: 38px; 
}

.fixed-buttons .fixed-buttons__btn--insta:hover {
  background-color: #c72a61;
}

/* スマホ専用：SP版を表示し、PC版を非表示に */
@media (max-width: 767px) {
  .fixed-buttons--sp {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    margin-bottom: 10px;
  }

  .fixed-buttons--pc {
    display: none;
  }

  .fixed-buttons--sp .fixed-buttons__btn {
    flex: 1 1 auto;
    white-space: nowrap;     /* テキスト改行防止 */
    font-size: 14px;
    padding: 6px 10px;
    text-align: center;
    display: flex;               
    align-items: center;
    justify-content: center; 
  }

  .fixed-buttons__btn--phone {
    font-size: 18px;
  }

  .fixed-buttons__btn--contact {
    font-size: 11px;
  }

  .fixed-buttons__btn--insta i {
    font-size: 26px;
  }
}

/* ipadmini用 */
@media (max-width: 768px) {
  .fixed-buttons {
    gap: 6px;
    top: 10px;
    right: 10px;
  }

  .fixed-buttons__btn--phone {
    font-size: 16px;
    padding: 6px 10px;
  }

  .fixed-buttons__btn--contact {
    font-size: 10px;
    padding: 6px 8px;
  }

  .fixed-buttons__btn--contact i {
    font-size: 16px;
  }

  .fixed-buttons .fixed-buttons__btn--insta i {
    font-size: 28px;
  }
}
/* ヘッダーここまで */


/* スライドショー*/
.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden; /* はみ出した装飾画像をカット */
}

/* 装飾画像共通 */
.slideshow__decor-image {
  position: absolute;
  z-index: 5; 
  pointer-events: none; 
}

/* 左上 */
.slideshow__decor-image--top-left {
  top: -40px;    
  left: -110px;
  width: 380px;  
  height: auto;
}
.slideshow__decor-image--top-left img {
  width: 100%;
  height: auto;
  display: block;
  transform: rotate(-40deg);
  transform-origin: center center; 
}

/* 右下 */
.slideshow__decor-image--bottom-right {
  bottom: -120px;
  right: -280px;
  width: 660px;
  height: auto;
}

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


.slideshow__slides.slideshow__slides--fade {
  position: relative;
  width: 100%;
  height: 100%;
}

.slideshow__slides.slideshow__slides--fade .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center;
  animation: fadeSlides 24s infinite;
}

.slideshow__slides,
.slideshow__slides--fade {
  width: 100%;
  height: 100%;
}
.slideshow__slides .slide {
  width: 100%;
  height: 100%;
}

.slideshow__slides.slideshow__slides--fade .slide:nth-child(1) {
  animation-delay: 0s;
}
.slideshow__slides.slideshow__slides--fade .slide:nth-child(2) {
  animation-delay: 8s;
}
.slideshow__slides.slideshow__slides--fade .slide:nth-child(3) {
  animation-delay: 16s;
}

@keyframes fadeSlides {
  0%   { opacity: 0; }
  6.25%  { opacity: 1; }
  33.33% { opacity: 1; }
  39.58% { opacity: 0; }
  100%  { opacity: 0; }
}

.slideshow-text {
  position: absolute;
  top: 40%;
  left: 10%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  gap: 10px;
  z-index: 10;
}

.slide-line {
  display: inline-block;
  background-color: #fff;
  color: #43772b;
  padding: 6px 10px;
  font-size: 1.866rem;
}
/* 2行目を1行目の幅の中央に寄せる */
.second-line {
  align-self: center;
}
.slide-line .highlight {
  color: #333;
}

/* ipadpro以下 */
@media (max-width: 1024px) {
  .slideshow__decor-image--top-left {
    top: -15vw;
    left: -18vw;
    width: 50vw;
  }

  .slideshow__decor-image--bottom-right {
    bottom: -15vw;
    right: -40vw;
    width: 80vw;
  }
  .slideshow-text {
    left: 20px;
    transform: translateY(-40%);
  }

  .slide-line {
    font-size: 16px;
    padding: 10px 16px;
  }
}

/* モバイル対応 */
@media (max-width: 767px) {
  .slide-line.first-line {
    max-width: 200px;
    white-space: normal;
  }
}


.youtube-section {
  padding: 60px 20px;
  background-image: url("images/bg-content.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.youtube-section__inner {
  max-width: 1200px; 
  margin: 0 auto;
  padding: 0 20px; 
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.youtube-section__text {
  position: relative;
  flex: 1;
  min-width: 300px;
  padding: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(200px, 40vw, 400px);
  overflow: hidden;
}

.youtube-section__text-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 0;
}
.youtube-section__text-content{
  display: none;
}
.youtube-section__text-content {
  /* position: relative;
  z-index: 1;
  color: #333;
  font-size: clamp(18px, 4.5vw, 36px); */
  text-align: center;
}

.youtube-section__video-wrapper {
  flex: 2;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.youtube-section__iframe-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
}

.youtube-section__iframe-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 600px) {
.youtube-section {
  padding-top: 20px;
  background-image: none;
}
.youtube-section__inner {
  padding: 0; 
  gap: 10px;
}
.youtube-section__text-bg {
  display: none;
}
.youtube-section__text {
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0;
  text-align: center;
  user-select: none;
  height: 60px;
  font-weight: bold;
  color: #6e6e6e;
}
.youtube-section__text-content{
  display: block;
}
}

.message-section {
  width: 100%;
}

.message-section__inner {
  max-width: 1400px;
  margin: 0 auto; 
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  padding: 60px 30px;
}

.message-section__left {
  flex: 2;
  min-width: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px; 
}

.message-section__image-wrapper {
  position: relative;
  width: 100%;
}

/* 外枠ごと左上に出す */
.message-section__image-top-left {
  position: absolute;
  top: -250px;
  left: -150px;
  width: 600px;
  z-index: 1;
}

/* 中の画像 */
.message-section__image-top-left img:first-child {
  width: 100%;
  height: auto;
  display: block;
}

/* 左見出しはこの親に対して相対的に重ねる */
.message-section__left-heading {
  position: absolute;
  top: 35%;
  left: 28%;
  width: 50%;
  z-index: 2;
}

.message-section__photo-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.message-section__photo-item {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.message-section__right {
  flex: 3;
  min-width: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 3;
}

.message-section__right > .message-section__right-heading {
  color: #333;
  font-size: clamp(1.5rem, 4vw, 2.5rem); 
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  text-align: center;
  user-select: none;
  border-bottom: 2px solid #ccc; 
  padding-bottom: 20px;
}

.message-section__text {
  font-size: 1.125rem;
  color: #444;
  margin-bottom: 50px;
  line-height: 2;
}

.message-section__image-right {
  width: 100%;
  max-width: 400px;
  align-self: flex-end;
  margin-bottom: 40px;
  border-radius: 6px;
  object-fit: cover;
}

.message-section__button-link {
  align-self: flex-end;
  background-color: #a0a0a0;
  color: #fff;
  padding: 12px 24px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  user-select: none;
  transition: background-color 0.3s ease;
}

.message-section__button-link:hover {
  background-color: #555555;
}

@media (max-width: 820px) {
  .message-section__image-top-left {
    top: -170px;
    left: -90px;
    width: 460px;
  }

  .message-section__left-heading {
    top: 30%;
    left: 25%;
    width: 50%;
  }
}

@media (max-width: 768px) {
  .message-section {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .message-section__inner {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .message-section__left {
    margin-top: 50px;
  }
  .message-section__left,
  .message-section__right {
    width: 100%;
    padding: 0;
  }

  .message-section__image-top-left {
    top: -230px;
    left: -100px;
    width: 600px;
  }

  .message-section__left-heading {
    top: 28%;
    left: 20%;
    width: 50%;
  }

  .message-section__photo-list {
    flex-direction: row; /* 横並びに変更 */
    justify-content: center;
    gap: 20px;
    max-width: 100%;
    margin-top: 40px; 
  }

  .message-section__photo-item {
    width: 45%; /* 並んだときに収まるサイズ */
  }

  .message-section__button-link {
    align-self: center; 
    margin-top: 20px;
  }

  .message-section__image-right {
    max-width: 80%;
    align-self: center;
  }
}


@media (max-width: 767px) {
  .message-section {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
  }
  .message-section__left {
    margin-top: 20px;
  }

  .message-section__photo-list {
    margin-top: 10px;
  }
  .message-section__image-top-left {
    top: -160px;
    left: -50px;
    width: 350px;
  }

  .message-section__left-heading {
    top: 30%;
    left: 20%;
    width: 50%;
  }

  .message-section__right > .message-section__right-heading {
  margin-top: 20px;
}

.message-section__text {
  font-size: 0.8rem;
  color: #444;
  margin-bottom: 10px;
}

.message-section__image-right {
  width: 60%;
}
}

.instagram-section {
  padding: 60px 20px;
  box-sizing: border-box;
  margin: 1rem auto;
  text-align: center;
}

.instagram-section__inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.instagram-section__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  /* flex-wrap: wrap; */
}

.instagram-section__heading img {
  width: 100%;
  height: auto;
  max-width: 50%;
  box-sizing: border-box;
}

.instagram-section__embed {
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px) {
  .instagram-section__heading {
    flex-direction: column;
    align-items: center;
  }

  .instagram-section__heading img {
  max-width: 80%;
  }
}

.solution-section {
  margin-bottom: 100px;
}

.solution-section__inner {
  background-color: #8ec31f;
  padding: 20px 30px 30px 30px;
  max-width: 900px;
  margin: 0 auto;
}

.solution-section__heading {
  text-align: center;
  margin-bottom: 20px;
}

.solution-section__heading-image {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.solution-section__heading-text {
  font-size: clamp(1.6rem, 4vw, 2.2rem); 
  margin-top: 10px;
  color: #ffffff;
}

.solution-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.solution-section__item-icon {
  width: 100%;
  max-width: 320px;
  object-fit: contain;
  display: block;
  margin: 0 auto; 
}

@media (max-width: 768px) {
  .solution-section__heading-image {
  width: 50%;
}
  .solution-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* benefitセクション */
.benefit-section {
  background-image: url(images/bg-benefit.png);
  background-size: cover;
  position: relative;
  padding-top: 200px;
  padding-bottom: 60px;
}

.benefit-section__inner {
  position: relative;
  z-index: 2;
}

.benefit-section__heading {
  text-align: center;
  margin-bottom: 40px;
}

.benefit-section__heading-image {
  width: 100%;
  max-width: 600px;
  height: auto;
}

/* 画像グリッド */
.benefit-section__grid--pc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
}

/* .benefit-section__grid-item--pc {
  width: 100%;
  height: auto;
  display: block;
} */

/* SP専用 */
@media (max-width: 768px) {
  .benefit-section {
  background-image: url(images/bg-benefit_sp.png);
  padding-top: 100px;
}
  .benefit-section__heading {
  margin: 20px;
  }
  .benefit-section__heading-image {
    width: 90%;
  }
  .benefit-section__grid--pc {
    display: none;

  }
  .benefit-section__grid--sp {
    padding: 10px;
    margin-bottom: 10px;
  }
  .benefit-section__grid-item--sp {
    width: 90%; 
    max-width: 600px; 
    height: auto;
    display: inline-block;
  }
}

@media (min-width: 769px) {
  .benefit-section__grid--sp {
    display: none;
  }
}


/* カルーセル */
.benefit-section__carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel__track-container {
  position: relative;
  overflow: visible;
  width: 100%;
}

.carousel__track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 50px;
  box-sizing: border-box;
  padding: 0;
}

.benefit-slide {
  width: 750px;
  flex-shrink: 0;
}

.carousel__track li {
  list-style: none;
}
.carousel__card.benefit-card {
  width: 100%;
  height: 430px;
  display: flex;
  background-color: #fff;
  border: 4px solid #000;
}

.carousel__card-image,
.carousel__card-content {
  width: 50%;
}

.carousel__card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 30px 10px 30px 30px;
}

.carousel__card-image img {
  width: 100%;
  max-height: auto;
  object-fit: contain;
}

.carousel__card-content {
  padding: 30px 10px 0 0;
  display: flex;
  flex-direction: column;
}

.carousel__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.7rem;
  margin-bottom: 10px;
  text-align: center;
}

.carousel__card-separator {
  border: none;
  border-top: 2px solid #000;
  margin: 0 auto 20px auto; 
  width: 90%;
}

.carousel__card-text {
  line-height: 1.7;
  color: #333;
}

.carousel__card-text span {
  line-height: 1.7;
  color: red;
  font-weight: bold;
}

/* 矢印ボタン */
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
}

.carousel__arrow img {
  width: 30px; 
  height: auto;
  display: block;
}

.benefit-arrow--left {
  right: 48%;
  transform: translate(calc(-400px - 10px), -50%);
}

.benefit-arrow--right {
  left: 48%;
  transform: translate(calc(400px + 10px), -50%);
}

@media (max-width: 768px) {
  .carousel__track-container {
    padding: 0;
  }

  .carousel__slide {
    width: 70vw;
  }

  .carousel__track {
    gap: 35px;
  }

  .carousel__card.benefit-card {
    display: flex;
    flex-direction: column-reverse;
    height: auto; /* 初期状態では自動、高さはJSで調整 */
    box-sizing: border-box;
  }

  .carousel__card-image,
  .carousel__card-content {
    width: 100%;
  }

  .carousel__card-image {
    flex-shrink: 0;
    padding: 16px;
  }

  .carousel__card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .carousel__card-text {
    flex-grow: 1;
  }
  .carousel__card-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .carousel__card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 16px;
    box-sizing: border-box;
  }

  .carousel__card-title {
    font-size: 1.2rem;
  }

  .carousel__card-separator {
    margin-bottom: 10px;
  }

  .carousel__card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
  }

  .carousel__arrow img {
    width: 20px; 
    height: auto;
    display: block;
  }

  .benefit-arrow--left {
    right: 50%;
    transform: translate(calc(-37vw), -25%);
  }

  .benefit-arrow--right {
    left: 50%;
    transform: translate(calc(36vw + 8px), -25%);
  }
}

.contact-section {
  width: 100%;
  max-width: 900px;
  background-color: #fff;
  margin: 60px auto;
  padding: 60px 20px;
  overflow: hidden;
}

.contact-section__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  color: #705030;
}

.contact-section__divider {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-section__divider::before {
  content: "";
  display: block;
  width: 300px; 
  height: 20px; 
  background: url('images/wave.png') no-repeat center center;
  background-size: contain;
}

.contact-section__text {
  font-size: 23px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact-section__image-wrapper {
  background: url('images/btn-tel_bg.png') no-repeat center 25%;
  background-size: 80%; 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.contact-section__image {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin-bottom: 32px;
}

.contact-section__buttons {
  display: flex;
  justify-content: center;
}

.contact-section__button {
  flex: 1;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-section__button-label img {
  width: 40px;
  height: 20px;
}

.contact-section__button-image {
  width: 100%;
  height: auto;
}

.contact-section__button img,
.contact-section__button-label img {
  max-width: 80%;
  height: auto;
}

.contact-section__button-label{
  margin-bottom: 10px;
}
.contact-section__button-link {
  display: inline-flex;
  width: 300px;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  padding: 10px;
  background-color: #ffd6a4;
  color: #965712;
  border-radius: 15px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3rem;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-section__button-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-section__button-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.contact-section__button-text {
  display: inline-block;
}

@media (max-width: 820px) {
  .contact-section__button-label img {
    width: 20px;
  }
}

/* ==== SP対応 ==== */
@media (max-width: 768px) {
  .contact-section {
    width: 95%; 
    max-width: 600px;
    margin: 20px auto; 
    padding: 20px;
}
  .contact-section__buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .contact-section__button {
    width: 100%;    
    max-width: 500px;
  }

  .contact-section__title {
    font-size: 24px;
  }

  .contact-section__text {
    font-size: 15px;
  }
  .contact-section__button-label img {
    width: 20px;
  }
}
@media (max-width: 480px) {
  .contact-section__image-wrapper {
    padding: 0;
    background-size: contain;
  }
  .contact-section__button-label{
    font-size: 0.8rem;
    margin-bottom: 0;
  }
  .contact-section__button-link {
  width: 250px;
  font-size: 1rem;
}
}

.menu-section {
  position: relative;
  padding: 100px 20px;
  background: url('images/menu-bg.png') no-repeat center center / cover;
  z-index: 0; /* 後述の疑似要素の後ろにするために必要 */
}

.menu-section::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; left:0; right:0; bottom:0; の省略形 */
  background-color: rgba(255, 255, 255, 0.5); /* 白＋透過 */
  z-index: 1; /* 背景の上・本文の下に配置 */
  pointer-events: none; /* クリックなどに干渉しない */
}

.menu-section > * {
  position: relative;
  z-index: 2; /* コンテンツがフィルターの上に来るように */
}


.menu-section__title {
  text-align: center;
  margin-bottom: 40px;
}

.menu-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto 80px auto;
}

.menu-card {
  background-color: #ffd6a4;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 8px 8px 20px rgba(80, 40, 10, 0.9);
  flex: 0 0 calc(25% - 18px); /* PC：4列 */
}

.menu-card__inner {
  padding: 5px 5px 15px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-card__title {
  background-color: white;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  width: 100%; /* 横幅をカードに合わせる */
  text-align: center;
  padding: 8px 0;
  height: 60px; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-card__text {
  text-align: center;
  margin-bottom: 16px;
  height: 100px;
  overflow: hidden;
}

.menu-card__button {
  background-color: white;
  border-radius: 10px;
  padding: 8px 16px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  width: 100%;
  text-align: center;
  display: block;
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out,
    background-color 0.3s ease-in-out,
    color 0.3s ease-in-out;
}

.menu-card__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.menu-card__image {
  width: 100%;
  margin-bottom: 12px;
}

/* タブレット（iPad Pro含む）まで：2列 */
@media (max-width: 1024px) {
  .menu-card {
    flex: 0 0 calc(46% - 12px); /* 2列きっちり */
  }
}

/* スマホ：1列 */
@media (max-width: 767px) {
  .menu-card {
    flex: 0 0 100%;
    max-width: 90%;
  }
}

.paint-section {
    position: relative;
    padding: 80px 20px 20px 20px;
}

.paint-section__title {
    text-align: center;
    margin-bottom: 40px;
}

.paint-section__feature {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.paint-section__feature-card {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  padding: 40px 20px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 750px;
}

.paint-section__feature-icon {
  position: absolute;
  top: -85px;
  left: -20px;
  max-width: 350px;
  height: auto;
}

.paint-section__feature-content {
  flex: 1;
  padding: 60px 0 40px 0;
}

.paint-section__feature-subtitle {
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  text-align: left;
}

.paint-section__feature-title {
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 33px;
  margin-bottom: 12px;
  border-bottom: 2px solid #333; 
  display: inline-block; 
  padding-bottom: 4px; 
}

.paint-section__feature-text {
  font-size: 14px;
  margin-bottom: 16px;
}

.paint-section__feature-image {
  width: 300px;
  border: solid 1px #000;
}

@media (max-width: 767px) {
  .paint-section__feature {
    padding-left: 0;
  }
  .paint-section__feature-card {
    flex-direction: column;
    align-items: center;
    padding: 30px 16px 20px;
    position: relative; 
  }

  .paint-section__feature-icon {
    position: absolute;
    top: -120px;
    left: -10px;
    max-width: 300px;
    height: auto;
    z-index: 3;
  }

  .paint-section__feature-content {
    padding: 0;
    width: 100%;
  }

  .paint-section__feature-subtitle {
    font-size: 16px;
  }

  .paint-section__feature-title {
    font-size: 22px;
  }

  .paint-section__feature-text {
    font-size: 13px;
    text-align: left;
  }

  .paint-section__feature-image {
    width: 60%;
    display: block;
    z-index: 1;
    border: none;
  }
}

.paint-section__appeal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 60px auto;
  max-width: 1000px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.paint-section__appeal-left {
  position: relative;
  flex: 0 1 300px; 
  margin-left: 50px;
}

.paint-section__appeal-right {
  flex: 0 1 300px; 
}

.paint-section__appeal-box {
  background-color: #8ec31f;
  padding: 5px 10px;
  text-align: center;
  position: relative;
}

.paint-section__appeal-decoration {
  width: 150px;
  margin-bottom: 10px;
}

.paint-section__appeal-text {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #fff;
}

.paint-section__appeal-text span {
  font-size: 2rem; 
}

.paint-section__appeal-image {
  width: 100%;
  height: auto;
  max-width: 280px;
  margin: 0 auto;
}

.paint-section__appeal-note {
  text-align: right;
  font-size: 0.9rem;
  margin-top: 10px;
  max-width: 300px; 
  margin-left: auto;
  margin-right: auto;
}

.paint-section__appeal-right {
  flex: 1;
  max-width: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.paint-section__appeal-right-image {
  width: 80%;
  height: auto;
  display: block;
}

.paint-section__comparison-inner {
  background-color: #8ec31f;
  padding: 50px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.paint-section__comparison-heading {
  position: relative;
  text-align: center;
  margin-bottom: 0.5rem;
}

.paint-section__comparison-heading-text {
  position: relative;
  display: inline-block;
  font-size: clamp(1.4rem, 3vw, 2.4rem); 
  line-height: 1.4;
  padding: 1rem 2rem;
  color:#ffffff;
}

.paint-section__comparison-heading-text span {
  font-size: 4.4rem;
  font-size: clamp(1.5rem, 4vw, 4.4rem); 
}

.paint-section__decoration {
  position: absolute;
  width: 55px; 
  top: 0px;
}

.paint-section__decoration--left {
  left: -5px;
}

.paint-section__decoration--right {
  right: -5px;
}

.paint-section__comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.paint-section__comparison-icon {
  width: 100%;
  max-width: 320px;
  object-fit: contain; 
  display: block;
  margin: 0 auto; 
}

@media (max-width: 768px) {
  .paint-section__title {
  margin-bottom: 120px;
}

  .paint-section__decoration {
  width: 45px; 
  top: -30px;
}

  .paint-section__appeal {
    margin-top: 0;
  }

  .paint-section__appeal-left {
  margin-left: 0;
}

  .paint-section__appeal-right {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    justify-content: center;
  }

  .paint-section__appeal-right-image {
    width: 100%;
    max-width: 300px;
  }

  .paint-section__comparison-inner {
  padding: 50px 30px;
  }

  .paint-section__comparison-heading {
  margin-bottom: 0.5rem;
  }

  .paint-section__comparison-heading-text {
    line-height: 1.2;
    padding: 0 1rem 1rem 1rem;
  }

  .paint-section__comparison-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}

@media (max-width: 767px) {
  .paint-section__appeal {
    flex-direction: column;
    align-items: center;
  }
}

/* ランニングコスト比較 */
.paint-section__cost {
  text-align: center;
  margin: 40px auto;
  max-width: 1400px;
}

.paint-section__cost-image {
  width: 100%;
  height: auto;
  display: none;
}

.paint-section__cost-image--pc {
  display: block;
}

.paint-section__cost-image-group {
  display: none;
}

@media (max-width: 768px) {
  .paint-section__cost-image--pc {
    display: none;
  }

  .paint-section__cost-image-group {
    display: block;
  }

  .paint-section__cost-image--sp1 {
    width: 100%;
    margin-bottom: 10px;
    display: block;

  }

  .paint-section__cost-image--sp2 {
    width: 60%; 
    margin: 0 auto 10px;
    display: block;
  }
  .paint-section__certified-message{
    font-size: 0.8rem;
  }

}


/* 認定証とテキスト */
.paint-section__certified {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 20px;
  gap: 15px;
  font-weight: bold;
  font-size: 1.2rem;
}

.certified-text {
  flex: 0 0 55%;
}

.certified-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.certified-description {
  font-size: 1rem;
  line-height: 1.8;
}

.certified-image-area {
  flex: 0 0 40%;
  text-align: center;
}

.certified-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 820px) {
  .paint-section__certified {
    flex-direction: column;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .certified-text,
  .certified-image-area {
    flex: 1 1 100%;
  }

  .certified-title {
    font-size: 1.5rem;
  }

  .certified-description {
    font-size: 0.95rem;
  }
}

.works-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 60px 0;
  overflow: hidden;
}

.works-section__frame {
  position: relative;
  width: 90%;
  margin: 0 auto;
  border: 5px solid #3e324e;
  background-color: #fff; 
  padding: 20px;
  box-sizing: border-box;
}

.works-section__green-background {
  background-color: #d8ed96; 
  padding: 80px 0 40px; 
}

.works-section__inner {
  width: 100%;
}

.works-section__heading-wrapper {
  position: absolute;
  top: -33px;
  left: 0;
}

.works-section__heading-image {
  width: 440px;
  height: auto;
}

.works-section__carousel-wrapper {
  position: relative;
  width: 100%;
  margin-top: 80px;
  z-index: 1;
}

/* カルーセル本体 */
.works-section__carousel {
  width: 100%;
  position: relative;
}

/* カード全体 */
.works-slide {
  width: 720px;
  flex-shrink: 0;
}

.carousel__card.works-card {
  height: 480px;
  display: flex;
  box-sizing: border-box;
}

/* 画像エリア */
.carousel__card.works-card .carousel__card-image {
  flex: 1;
  margin-right: 20px;
}

/* テキストエリア */
.carousel__card.works-card .carousel__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* タイトルとセパレーター */
.works-card__title {
  margin: 0;
  font-size: 1.2rem;
  text-align: left;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.works-card__separator {
  border: none;
  height: 1px;
  background-color: #ccc;
  margin: 10px 0;
}

/* ボタン */
.works-card__button {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 8px 16px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4); 
  transition: transform 0.2s ease;
}

.works-card__button:hover {
  transform: translateY(-2px);
}

.works-arrow--left {
  right: 50%;
  transform: translate(calc(-360px - 10px), -50%);
}

.works-arrow--right {
  left: 50%;
  transform: translate(calc(360px + 10px), -50%);
}

@media (max-width: 1024px) {

  .works-arrow--left {
    right: 48%;
    transform: translate(calc(-32vw), -50%);
  }

  .works-arrow--right {
    left: 49%;
    transform: translate(calc(30vw + 8px), -50%);
  }
}

@media (max-width: 820px) {

  .works-arrow--left {
    right: 59%;
    transform: translate(calc(-32vw), -50%);
  }

  .works-arrow--right {
    left: 60%;
    transform: translate(calc(30vw + 8px), -50%);
  }
}

@media (max-width: 767px) {
  .works-slide {
    width: 300px;
    flex-shrink: 0;
  }

  .carousel__card.works-card {
    height: 200px;
  }

  .carousel__card.works-card .carousel__card-image {
    margin-right: 0;
    padding: 0;
    padding-left: 10px;
  }

  .works-card__title {
    font-size: 0.8rem;
  }

  .works-card__button {
    padding: 4px 8px;
  }

  .works-arrow--left {
    right: 57%;
    transform: translate(calc(-15vw), -50%);
  }

  .works-arrow--right {
    left: 57%;
    transform: translate(calc(15vw + 8px), -50%);
  }
}

.works-section__more {
  margin-top: 40px;
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: center;
}

/* 外側のボタン */
.works-section__more-button {
  display: inline-block;
  background-color: #ffd6a4;
  border-radius: 16px;
  padding: 12px; 
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

/* 内側の白い角丸背景 */
.works-section__more-button-inner {
  display: inline-block;
  background-color: #fff;
  color: #333;
  font-weight: bold;
  padding: 7px 14px;
  border-radius: 12px;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* hover時の変化 */
.works-section__more-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.works-section__more-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.works-section__more-image {
  flex: 1;
  max-width: 600px;
}

.works-section__more-image img {
  width: 100%;
  max-width: 600px;
}

.works-section__more-textbox {
  background-color: white;
  padding: 16px;
  flex: 1;
  max-width: 400px;
  text-align: left;
}

.works-section__more-thumb {
  width: 300px;
  margin: 0 auto 10px;
  display: block;
}

.works-section__more-prefecture {
  border: 1px solid black;
  display: inline-block;
  padding: 4px 10px;
  margin-top: 10px;
  margin-bottom: 5px;
  margin-left: 0;
}

.works-section__more-text {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .works-section__frame {
  padding: 5px;
  }
  .works-section__heading-wrapper {
    position: absolute;
    top: -20px;
    left: 0;
  }
  .works-section__heading-image {
    width: 220px;
    height: auto;
  }
  .works-section__carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 0;
    z-index: 1;
  }
  .carousel__card.works-card {

  }
  .works-section__more {
  margin: 40px 10px 0 10px;
  }

  .works-section__more-textbox {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 1024px) and (min-width: 481px) {
  .works-section__more-content {
    gap: 12px;
    max-width: 95%;
    flex-direction: row;
    align-items: stretch; 
  }

  .works-section__more-image img,
  .works-section__more-textbox {
    flex: 1;
    max-width: 100%;
  }

   .works-section__more-image img {
    height: 100%;
    object-fit: cover;
  }

  .contact-section{
    width: 95%;
    max-width: 900px;
    margin: 20px auto 0 auto;
  }
}

@media (max-width: 480px) {
  .works-section__more-content {
    flex-direction: column-reverse;
    max-width: 600px;
    margin: 0 auto;
    gap: 20px;
  }

  .works-section__more-image img,
  .works-section__more-textbox {
    width: 100%;
    max-width: 100%;
  }
}

/* フッターここから */
.footer {
  background-color: #b7d893;
  font-family: sans-serif;
  font-size: 14px;
  color: #000;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem;
  gap: 2rem;
}

.footer__left {
  flex: 2;
  min-width: 300px;
}

.footer__right {
  flex: 1;
  min-width: 250px;
}

.footer__logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer__logo {
  width: 250px;
  height: auto;
}

.footer__instagram-btn {
  display: inline-block;
  background-color: #316d03;
  color: #fff;
  padding: 0.4rem 0.8rem;
  text-decoration: none;
  border-radius: 4px;
}

.footer__instagram-btn i {
  margin: 0;
  font-size: 38px; 
}

.footer__instagram-btn:hover {
  background-color: #316d03;
}

.footer__address {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-style: normal;
}

.footer__tel-link {
  color: inherit;
  text-decoration: none;
}

.footer__tel-link:hover {
  text-decoration: underline; 
}

.footer__sitemap-box {
  margin-top: 1.5rem;
}

.footer__sitemap-title {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid #333;
  padding: 0.3rem 0.8rem;
  font-size: 16px;
  color: #333;
  margin-bottom: 0.5rem;
}

.footer__sitemap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

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

.footer__map {
  width: 100%;
  height: 100%;
  min-height: 250px;
}

.footer__copyright {
  background-color: #316d03;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 13px;
  letter-spacing: 0.3rem;
  font-weight: 400;
}

@media (max-width: 767px) {
  .footer__logo-area {
    justify-content: start;
  }
  .footer__inner {
    flex-direction: column;
    padding: 0;
  }

  .footer__address {
    font-size: 1rem;
  }

  .footer__left {
    padding: 2rem;
  }

  .footer__right {
    width: 100%;
  }

  .footer__map {
    width: 100%;
    min-height: 300px;
  }
  .footer__copyright {
    white-space: normal;
    padding: 1rem;
    word-break: break-word;
    letter-spacing: 0.2rem;
  }
}

/*========= ページトップのためのCSS ===============*/

/* ボタン本体 */
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #316d03;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: #fff;
  border: 2px solid transparent;
  transition: all 0.3s;
  font-size: 24px;
}

/* ホバー時に色反転（白背景、緑枠、緑アイコン） */
#page-top a:hover {
  background: #fff;
  color: #316d03;
  border: 2px solid #316d03;
}

/* 固定位置と初期非表示 */
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 10;
  opacity: 0;
  transform: translateY(100px);
}

/* 上昇表示アニメーション */
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 下降非表示アニメーション */
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

/* フッターここまで */


  /*instagram 20250709兵頭追加*/

 .insta_list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.insta_list li{
    position: relative;
    width: calc((100% - 40px)/3);
}

@media screen and (max-width: 750px){
    .insta_list li{
        width: calc((100% - 20px)/2);
    }
}

.insta_list li::before{
	content: "";
	display: block;
	padding-top: 100%;
}

.insta_list a{
	position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.insta_list img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta_btn{
    background-color: #000;
    border-radius: 7rem;
    padding: .5em 1em;
    width: 20rem;
    height: 5rem;
    margin: 0 auto;
    cursor: pointer;
    transition: .3s
}

.insta_btn img {
  width: 4rem;
}

.insta_btn a{
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

.insta_btn:hover{
    background-color: #999;
}

li {
	list-style-type: none;
  }


 /*instagram　ここまで*/

 .ben7 {
  background-image: url(images/benefit7_2.png);
  background-repeat: no-repeat;
  vertical-align: middle;
 }

 .ben7 span {
  font-size: 1.2rem;
 }

 .youtube-section {
  margin-bottom: 3rem;
 }

 .benefit-box {
  position: relative;
  display: inline-block;
  cursor: pointer;
 }

.benefit-box img {
  display:block;                /* 画像下のスキマ対策 */
  width:90%;
  height:auto;
}

 .benefit-box p {
  position:absolute;
  width: 13rem;
  max-width: 100%;
  top:60%;
  left:45%;
  transform: translate(-50%,-50%);
  margin:0;
  text-align:center;
  font-weight:700;
  font-size: 1.3rem;
  color: #000;
 }

 .benefit-section__text--sp {
  margin: 1rem auto 3rem auto;
  width: 90%;
  border: #000 8px solid;
  border-radius: 45px;
  background-color: #fff;
  font-size: 2.1rem;
  font-weight: 900;
  color: #000;
  padding: 1.5rem;
 }

 .benefit-section__text--sp ul {
  margin: 0 auto;
 }

 .benefit-section__text--sp ul li {
  margin: 0 auto;
  text-align: left;
  height: 4rem;
 }

 @media screen and (max-width: 1024px) {
  .benefit-box p {
    width: 11rem;
    font-size: 1.1rem;
  }
 }

  @media screen and (max-width: 900px) {
  .benefit-box p {
    width: 10rem;
    font-size: 1rem;
  }
 }

@media screen and (max-width: 707px) {
 .benefit-section__text--sp {
  padding-right: 1rem;
  font-size: 2rem;
 }
}

@media screen and (max-width: 669px) {
 .benefit-section__text--sp {
  padding-right: 0.5rem;
  font-size: 1.9rem;
 }
}

@media screen and (max-width: 630px) {
 .benefit-section__text--sp {
  font-size: 1.8rem;
 }
}

@media screen and (max-width: 600px) {
 .benefit-section__text--sp {
  font-size: 1.6rem;
  border: #000 6px solid;
 }

 .benefit-section__text--sp ul li {
  height: 3.5rem;
 }
}

@media screen and (max-width: 545px) {
 .benefit-section__text--sp {
  font-size: 1.4rem;
  padding-left: 1rem;
 }

 .benefit-section__text--sp ul li {
  height: 3rem;
 }
}

@media screen and (max-width: 470px) {
 .benefit-section__text--sp {
  font-size: 1.2rem;
 }
}

@media screen and (max-width: 410px) {
 .benefit-section__text--sp {
  font-size: 1.1rem;
  padding-left: 0.6rem;
 }

  .benefit-section__text--sp ul li {
  height: 2.2rem;
 }
}

 .instagram-section__inner {
  margin: 1rem auto;
  text-align: center;
 }

 .instagram-section__embed {
  margin: 1rem auto;
  text-align: center;
 }

 .insta {
  width: 765px;
  max-width: 100%;
  text-align: center;
  margin: 1rem auto;
 }

 .insta .snapwidget-widget {
  max-width: 100%;
 }

 .not_clickable {
  pointer-events: none;
 }