@charset "utf-8";
/*--------------------
Reset
--------------------*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

.flex {
  display: flex;
}

body {
  font-family: "source-han-serif-jp-variable", sans-serif;
  font-variation-settings: "wght" 250;
  /* font-family: 'MS P明朝', cardo, serif; */
  font-size: 16px;
  min-width: 1500px;
}

.inarea {
  max-width: 1370px;
  margin: 0 auto;
}

.sp {
  display: none;
}

h2 {
  font-size: 2.7rem;
  letter-spacing: 0.05em;
}

p {
  font-size: 1.3rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

/* マスクアニメーション: 初期状態はコンテンツが隠れている */
.slide-mask {
  position: relative;
  overflow: hidden; /* はみ出した部分を隠す */
}

.slide-mask .content {
  position: relative;
  clip-path: inset(0 100% 0 0); /* 初期状態では右側が100%隠れている */
  transition: clip-path 1s ease-out; /* マスクが徐々に動く */
}

/* スクロールで表示されたとき、マスクが右に移動してコンテンツを表示 */
.slide-mask.show .content {
  clip-path: inset(0 0 0 0); /* マスクが右に移動して要素が全て表示される */
}

/* フェードインしながらスライドイン */
.fade-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-slide-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* ヘッダー */
header {
  width: 100%;
  height: 900px;
  position: relative;
}

header .head {
  position: absolute;
  top: 2rem;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  max-width: 1370px;
  z-index: 3;
  gap: 2rem;
}

header .head h1 {
  width: 580px;
}

header .head h1 img {
  width: 100%;
  height: auto;
}

header .head ul {
  list-style: none;
  color: #ffffff;
  gap: 0.8rem 0;
  flex-wrap: wrap;
  height: 2rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

header .head ul li {
  display: flex;
}
header .head ul li:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #ffffff;
  margin-left: 0.6rem;
  margin-right: 0.6rem;
}

header .head ul li:last-child:after {
  content: none;
}

header .head ul li a {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0.2rem 0;
}

header .mainword {
  position: absolute;
  z-index: 3;
  color: #927822;
  bottom: 20rem;

  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  max-width: 1370px;
}
header .mainword span {
  font-size: 7rem;
  line-height: 1.1;
}

header .mainword small {
  font-size: 2rem;
}

.main-visual {
  position: relative;
  width: 100%; /* 幅は画面幅に応じて100% */
  height: 900px; /* 画像の指定の高さ（例: 500px） */
  overflow: hidden; /* はみ出た部分を隠す */
}

.main-visual img {
  width: 100%; /* 画像の幅はコンテナに対して100% */
  height: auto; /* 高さは自動調整 */
  object-fit: cover; /* 画像をコンテナに収めつつトリミングする */
  object-position: 7rem -3rem;
  transform: scale(1.3); /* 1.2倍に拡大 */
  transition: transform 0.3s ease; /* アニメーション（任意） */
}

/* 各記事 */
.safety {
  padding: 3rem 0;
  background: #e6e6e6;
  width: 100%;
  background-image: url(../img/safety_bg.png);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 50%;
}

.safety .inarea {
  align-items: center;
  gap: 5rem;
}

.safety .inarea img {
  border-radius: 100%;
  width: 500px;
  height: 500px;
}

.safety h2 {
  margin-bottom: 1rem;
}
.safety h2,
.safety p {
  color: #a18536;
}

.safety span {
  color: #f38b63;
  font-size: 1.7rem;
  font-weight: bold;
  padding-top: 0.5em;
  display: inline-block;
}

.permission {
  padding: 4rem 0;
  background-image: url(../img/permission_bg.webp);
  background-size: cover;
}

.permission h2 {
  margin-bottom: 2rem;
  font-size: 3.3rem;
  color: #eeecde;
  text-shadow: 0em 0.0375em 0.28125em rgba(0, 0, 0, 0.6);
}
.permission .inarea .flex {
  gap: 1rem;
  align-items: center;
}
.permission .inarea .flex img {
  width: 50%;
}
.permission p {
  color: #6a3413;
  font-size: 1.2rem;
  line-height: 1.8;
  background: #eae9e9;
  padding: 1.3rem;
}

/* cpc */
.cpc {
  padding: 4rem 0;
  background-color: #eeecde;
  background-image: url(../img/cpc_bg.webp);
  background-size: cover;
  background-position: 50% 54.83790956%;
}

.cpc_one {
  position: relative;
  margin-bottom: 3rem;
}

.cpc_one img {
  z-index: 1;
  position: relative;
  left: 0;
  width: 55%;
}

.cpc_one .cpc_txt {
  z-index: 2;
  background: #eae9e9;
  color: #6a3413;
  width: 60%;
  position: absolute;
  right: 0;
  top: 0;
  padding: 2rem 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.cpc_one h2 {
  margin-bottom: 1rem;
}

.cpc_two {
  position: relative;
  margin-bottom: 3rem;
}

/* .cpc_two {
  position: relative;
  margin-bottom: 3rem;
  text-align: right;

} */

.cpc_two img {
  z-index: 1;
  position: relative;
  left: 0;
  width: 65%;
}

/* .cpc_two img {
  z-index: 1;
  position: relative;
  margin-left: auto;
  width: 70%;
} */

h2.new_title {
  font-size: 3.3rem;
  text-align: center;
  display: block;
  color: #6a3413;
  margin-bottom: 3rem;
}

h3.new_title {
  font-size: 2.7rem;
  letter-spacing: 0.05em;
}

.cpc_two .cpc_txt {
  z-index: 2;
  background: #eae9e9;
  color: #6a3413;
  width: 60%;
  position: absolute;
  right: 0;
  top: 0;
  padding: 2rem 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
/*
.cpc_two .cpc_txt {
  text-align: left;
  z-index: 2;
  background: #eae9e9;
  color: #6a3413;
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 1.5rem 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
} */

.cpc_two h2 {
  margin-bottom: 1rem;
}

.cpc_two .cpc_txt ul {
  padding-left: 3em;
}
.cpc_two .cpc_txt ul li {
  font-size: 1.3rem;
  line-height: 1.6;
}

.cpc_three {
  margin-bottom: 2rem;
}

.cpc_three h2 {
  font-size: 3.3rem;
  text-align: center;
  display: block;
  color: #eeecde;
  text-shadow: 0em 0.0375em 0.28125em rgba(0, 0, 0, 0.6);
  margin-bottom: 2rem;
}

.cpc_three img.cpc_three0 {
  width: fit-content;
  display: block;
  margin: 0 auto 2rem;
}

.cpc_three ul {
  list-style: none;
  gap: 4rem;
}

.cpc_three ul li {
  width: 25%;
  color: #156669;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cpc_three ul li img {
  width: 80%;
  height: auto;
  border-radius: 100%;
  margin-bottom: 1.5rem;
}

.cpc_three ul li h3 {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}
.cpc_three ul li h3.sm {
  font-size: 1.3rem;
}

.cpc_three ul li p {
  font-size: 1rem;
}

.cpc_four {
  margin-bottom: 2rem;
}

.cpc_four h2 {
  color: #156669;
  text-align: center;
  display: block;
  font-size: 3.3rem;
  margin-bottom: 2rem;
}

.cpc_four ul {
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

.cpc_four ul li {
  width: calc(50% - 1rem);
  color: #6a3413;
}

.cpc_four ul li h3 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.features {
  padding: 3rem 0;
  background: #dfc2bd;
}

.features h2 {
  text-align: center;
  color: #a28636;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.features h2 img {
  width: 600px;
}

.features img.ft_line {
  width: 550px;
  margin: -28px auto 2rem;
  display: block;
}

.features_one {
  position: relative;
  margin-bottom: 2rem;
}

.features_one img {
  width: 70%;
}

.features_one .featurestxt {
  position: absolute;

  width: 60%;
  right: 0;
  bottom: 3rem;
  padding: 3rem 1rem 2rem 3rem;
  color: #6a3413;
  background: #eae9e9;
  /* background-image: url(../img/txtbg.webp); */
  background-repeat: no-repeat;
  background-size: 140px;
  background-position: 10px 10px;
}

.features_one span.ft_num {
  position: absolute;
  z-index: 3;
  right: calc(60% + 1rem);
  bottom: 19rem;
  font-size: 9rem;
  color: #373737;
  font-family: "liebedoris", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.features_one .featurestxt h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.features_one .featurestxt p {
  font-size: 1.3rem;
}

.features_two {
  position: relative;
  margin-bottom: 2rem;
  text-align: left;
}

.features_two img {
  width: 70%;
}

.features_two span.ft_num {
  position: absolute;
  z-index: 3;
  right: calc(60% + 1rem);
  bottom: 30rem;
  font-size: 9rem;
  color: #373737;
  font-family: "liebedoris", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.features_two .featurestxt {
  text-align: left;
  position: absolute;
  width: 60%;
  right: 0;
  bottom: 3rem;
  padding: 3rem 1rem 2rem 3rem;
  color: #6a3413;
  background: #eae9e9;
  /* background-image: url(../img/txtbg.webp); */
  background-repeat: no-repeat;
  background-size: 140px;
  background-position: 10px 10px;
}

.features_two .featurestxt h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.features_two .featurestxt p {
  font-size: 1.2rem;
  letter-spacing: 1;
}

.features_two .featurestxt ul {
  padding-left: 2em;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.features_three {
  position: relative;
  margin-bottom: 2rem;
}

.features_three img {
  position: relative;
  width: 70%;
}

.features_three span.ft_num {
  position: absolute;
  z-index: 3;
  right: calc(60% - 2rem);
  bottom: 28rem;
  font-size: 9rem;
  color: #373737;
  font-family: "liebedoris", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.features_three .txt_circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 40%;
  aspect-ratio: 1 / 1;
}
.features_three .txt_circle .circle_bg {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0;
}

.circle_bg span {
  position: absolute;
  width: 160px; /* 円のサイズ */
  height: 160px; /* 円のサイズ */
  border-radius: 50%;
  background-color: #d5a9cf;
  /* color: #fff; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.4rem;
}

.circle_bg span small {
  font-size: 0.9rem;
}

/* 五角形の頂点に配置 */
.circle1 {
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle2 {
  top: 45%;
  left: 20%;
  transform: translate(-50%, -50%);
}

.circle3 {
  top: 45%;
  right: 20%;
  transform: translate(50%, -50%);
}

.circle4 {
  bottom: 20%;
  left: 30%;
  transform: translate(-50%, 50%);
}

.circle5 {
  bottom: 20%;
  right: 30%;
  transform: translate(50%, 50%);
}

.features_three .featurestxt {
  position: absolute;
  width: 55%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  padding: 3rem 1rem 2rem 3rem;
  color: #6a3413;
  background: #eae9e9;
  /* background-image: url(../img/txtbg.webp); */
  background-repeat: no-repeat;
  background-size: 140px;
  background-position: 10px 10px;
}

.features_three .featurestxt h3 {
  font-size: 2.2rem;
  margin-bottom: 0rem;
}

.features_three .featurestxt strong {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
  display: block;
}

.features_three .featurestxt p {
  font-size: 1.1rem;
  letter-spacing: 1;
}

.features_three .featurestxt ul {
  padding-left: 2em;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.treatmentflow {
  padding: 3rem 0;
  background: #eeecde;
}

.treatmentflow h2 {
  color: #d5a9cf;
  font-size: 3.3rem;
  display: block;
  text-align: center;
  margin-bottom: 2rem;
}

.treatmentflow ul {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 2rem;
  list-style: none;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.treatmentflow ul li {
  width: calc(33% - 1.5rem);
  position: relative;
}

.treatmentflow ul li h3 {
  position: absolute;
  top: 0;
  left: 0;
  background: #d5a9cf;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0.5rem 1rem;
  border-radius: 13px;
  font-weight: normal;
}

.treatmentflow ul li img {
  width: 100%;
}

.treatmentflow ul li p {
  color: #6a3413;
  font-size: 1.1rem;
  letter-spacing: -0.07em;
}

.treatmentflow ul li p span {
  color: #cb6ce6;
}

.pricing-table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #6a3413;
  table-layout: auto; /* 横幅の自動調整 */
  margin-bottom: 2rem;
}

.pricing-table td {
  border: 1px solid #6a3413;
  padding: 1.2rem 0;
  text-align: center;
  font-size: 1.5rem; /* フォントサイズ固定 */
  white-space: nowrap; /* 改行させない */
}

.header-cell {
  background-color: #f1bfd8;
  /* color: white; */
  vertical-align: middle; /* 縦中央揃え */
  width: 45%;
}

.header {
  background-color: #dfc2bc;
  color: black;
  vertical-align: middle; /* 縦中央揃え */
  padding: 2.5rem 0;
}

.pricing-table td.header {
  padding: 2rem 0;
}

.left-cell {
  background-color: #f1bfd8;
  /* color: white; */
}

.body {
  background-color: white;
  color: black;
}

p.pricing_txt {
  width: 1370px;
  margin: -2rem auto 0 auto;
  color: #6a3413;
  display: block;
  font-size: 1.3rem;
  text-align: right;
}

p.treatment_txt {
  width: 900px;
  margin: 2rem auto;
  color: #6a3413;
  display: block;
  font-size: 1.3rem;
}

.contacts {
  padding: 3rem 0;
  background: #dfc2bd;
}

.contacts h2 {
  font-size: 3.3rem;
  display: block;
  text-align: center;
  color: #ffffff;
  text-shadow: 0em 0.0375em 0.28125em rgba(0, 0, 0, 0.6);
  margin-bottom: 2rem;
}

.telcontact {
  width: 900px;
  margin: 0 auto 1rem;
  background: #eae9e9;
  box-shadow: inset 0 0 0 2px #a28537, /* 内側の2pxの線 */ 0 0 0 5px #eae9e9; /* 外側の5pxの線 */
  padding: 2rem;
}

.telnumber {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.telnumber a {
  justify-content: center;
  gap: 0.2rem;
  color: #f8759e;
  font-size: 3rem;
  text-decoration: none;
  font-family: serif;
  align-items: center;
  width: fit-content;
}

.telnumber a img {
  width: 70px;
  height: auto;
}

.teltime {
  align-items: center;
  justify-content: center;
}

.teltime strong {
  display: block;
  width: fit-content;
  font-size: 2.3rem;
  color: #6a3413;
  padding-right: 0.8rem;
}
.teltime p {
  width: 70%;
  display: block;
  line-height: 1.3;
  font-size: 1.1rem;
  border-left: solid 2px #f8759e;
  padding-left: 0.8rem;
  font-weight: bold;
}
.teltime p span {
  color: #f8759e;
  font-size: 1.8rem;
  font-weight: bold;
}
.teltime p span small {
  font-size: 1.4rem;
}

.contact_btn {
  gap: 1rem;
  width: 974px;
  margin: 0 auto;
  justify-content: center;
}

.contact_btn a {
  height: 9rem;
  width: calc(50% - 0.5rem);
  color: #ffffff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  padding: 1rem;
  gap: 1rem;
}

.contact_btn a.linebtn {
  background: #43c506;
  color: #5a3a0f;
}

.contact_btn a.reservebtn {
  background: #72b7b5;
}

.contact_btn a.telbtn {
  display: flex;
  justify-content: center;
  color: #f8759e;
  background: #eae9e9;
  box-shadow: inset 0 0 0 2px #a28537, 0 0 0 5px #eae9e9;
  padding: 1rem;
  margin: 0 auto 1rem;
}

.contact_btn a.telbtn img {
  width: 70px;
}

.contact_btn a.telbtn .telleft {
  font-size: 2rem;
  text-align: center;
  color: #53391d;
  line-height: 1.2;
  border-right: 2px solid #f8759e;
  padding-right: 20px;
}

.contact_btn a.telbtn .telright {
  font-size: 1.5rem;
}

.contact_btn a.telbtn .telright span {
  display: block;
}

.contact_btn a.telbtn .telright .telbtnnum {
  font-size: 2.2rem;
}

.contact_btn a.telbtn .telright .telbtntime {
  font-size: 1.1rem;
  font-weight: normal;
}

.ttelbtn_txt {
  max-width: 974px;
  font-size: 0.9rem;
  text-align: center;
  margin: 1rem auto 4rem auto;
}

/* FAQ */
.accordion {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.accordion-item {
  margin-bottom: 1rem;
}

.accordion-header {
  width: 100%;
  background-color: #d5a9cf;
  color: #6a3413;
  padding: 10px;
  padding-left: 2.6rem;
  text-align: left;
  border: none;
  cursor: pointer;
  outline: none;
  font-size: 1.8rem;
  letter-spacing: -0.07em;
  display: flex;
  justify-content: space-between; /* タイトルと矢印を左右に配置 */
  align-items: center;
  font-family: inherit;
  position: relative;
}

.accordion-header:before {
  content: "Q. ";
  position: absolute;
  left: 0.5rem;
}

.accordion-header .arrow {
  font-size: 1.6rem;
  color: #cb6de6;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background-color: white;
  transition: max-height 0.3s ease;
  padding: 0 10px;
}

.accordion-content p {
  color: #6a3413;
  padding: 10px 0;
  padding-left: 1.5em;
  /* text-indent: 2em; */
  margin: 0;
  position: relative;
  font-size: 1.8rem;
}

.accordion-content p:before {
  content: "A. "; /* インデント記号として「A.」を追加 */
  position: absolute;
  left: 0.5rem;
}

footer {
  background-image: url(../img/contact_bg.webp);
  background-size: cover;
  padding: 3rem 0;
}

footer .shop {
  background: #ffffff;
  padding: 1rem 0;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: none !important;

  font-family: Arial, Helvetica, sans-serif;
}

footer .shop .ft_logo {
  width: 50%;
  margin: 0rem auto 1rem;
}

footer .shop .ft_logo img {
  width: 100%;
}

footer .shop .shopmain {
  width: 96%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

footer .shop > div div {
  width: 100%;
  max-width: 547px;
}

footer .shop div table {
  width: 100%;
  margin: 0 0 20px;
  border-bottom: solid 1px #927822;
  font-family: Arial, Helvetica, sans-serif;
  border-spacing: 0;
}

footer .shop div table tr.top {
  font-size: 25px;
  background: #927822;
  color: #ffffff;
  border: solid 1px #927822;
  text-align: center;
}

footer .shop div table tr.top td {
  padding: 5px;
}

footer .shop div table tr.bottom {
  font-size: 25px;
  color: #927822;
  text-align: center;
}

footer .shop div table tr.bottom td {
  padding: 0.8em 5px;
  font-size: 2rem;
}
footer .shop div table tr.bottom td.sm {
  font-size: 1rem;
}

footer .shop div table tr.bottom td.hour {
  color: #292929;
  text-align: left;
  font-weight: bold;
  font-size: 1.5rem;
}

footer .shop div p {
  color: #484848;
  font-size: 1.2rem;
  padding-left: 1em;
  margin-bottom: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

footer .shop div strong {
  width: 100%;
  margin: 0 0 10px;
  /* padding-bottom:2px; */
  display: flex;
  justify-content: center;
  align-items: center;
  background: #71b7b5;
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  font-weight: normal;
  clip-path: polygon(50% 0%, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0 50%, 15px 0);
}

footer .shop div span.tel {
  width: 75%;
  font-size: 49px;
  text-align: center;
  color: #927822;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  border-bottom: dotted 1px #cccccc;
  margin: 0 auto 0.5em;
}

footer .shop div span.tel a {
  color: #927822;
}
footer .shop div span.tel::before {
  content: "";
  display: inline-block;
  width: 1em; /*画像の幅*/
  height: 1em; /*画像の高さ*/
  background-image: url(../../img/clinicrenew/tel.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

footer .shop div .address {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0.5em;
}

footer .shop iframe {
  width: 50%;
  max-width: 600px;
  height: 440px;
  margin-bottom: -10px;
}

article.supports {
  position: relative;
  background-image: url(../img/features_two.webp);
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 3rem 0;
}

article.supports:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(161, 35, 39);
  opacity: 0.8; /* フィルターの強さを調整 */
  pointer-events: none;
  z-index: 3;
}

.supports h2 {
  color: #ffffff;
  text-align: center;
  display: block;
  margin-bottom: 2rem;
  position: relative;
  z-index: 5;
  font-weight: normal;
}

.supports div {
  background: rgb(234, 233, 233);
  width: 1000px;
  margin: 0 auto 1rem;
  padding: 0.5rem 1rem;
  font-weight: bold;
  font-size: 2rem;
  position: relative;
  z-index: 5;
}
