@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/*
  * Reset CSS
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* list Remove default style */
ul,
ol {
  padding: 0;
  list-style: none;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  text-rendering: optimizespeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  -webkit-text-decoration-skip: ink;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* フォームリセット */
input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
}

/* stylelint-disable */
textarea {
  resize: vertical;
}

/* stylelint-enable */
input[type=radio] {
  visibility: hidden;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

/* =====================
 * Baseスタイル
===================== */
:root,
:root[theme=Default] {
  --pc-max-width:1360px;
  --pc-max-width2:1140px;
  --pc-max-width2-2:1060px;
  --pc-max-width3:960px;
  --pc-max-width4:700px;
  --pc-max-width5:700px;
  --f-family-main: "FOT-TsukuAOldMin Pr6N", sans-serif;
  --f-family-en: "Montserrat", sans-serif;
  --f-font-size: 18px;
  --f-nav-font-size: 15px;
  --f-nav2-font-size: 15px;
  --f-nav3-font-size: 12px;
  --f-font2-size: 20px;
  --f-font-h1-size: 40px;
  --f-font-h2-1-size: 32px;
  --f-font-h2-min-size: 22px;
  --f-font-p-1-size: 18px;
  --f-font-p-2-size: 16px;
  --f-font-h3-1-size: 24px;
  --f-font-h3-2-size: 22px;
  --f-line-height: 1.5;
  --f-line-height2: 2.8;
  --f-h2-marginbottom: 60px;
  --c-white: #fff;
  --c-footer-color:#F1F1F1;
  --c-white2: #FDFCFA;
  --c-black: #424141;
  --c-black2: #191919;
  --c-darkblue:#061D73;
  --c-gray:#484848;
  --c-red:#FF4956;
  --c-grade:linear-gradient(180deg,rgba(256,256,256,0.5) 0%, rgba(256,256,256,0) 70%);
  --c-grade2:linear-gradient(180deg,rgba(256,256,256,0.8) 0%, rgba(256,256,256,0) 70%);
  --box-shadow1:10px 10px 36px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  :root,
  :root[theme=Default] {
    --f-font-size: 15px;
    --f-nav-font-size: 15px;
    --f-nav2-font-size: 12px;
    --f-nav3-font-size: 10px;
    --f-font2-size: 15px;
    --f-font-h1-size: 32px;
    --f-font-h2-1-size: 20px;
    --f-font-h2-min-size: 12px;
    --f-font-p-1-size: 15px;
    --f-font-p-2-size: 13px;
    --f-font-h3-1-size: 16px;
    --f-font-h3-2-size: 18px;
    --f-font-sub-size: 15px;
    --f-h2-marginbottom: 40px;
    --f-line-height2: 2.0;
  }
}

html {
  /* ----------------------------
  * リキッドレイアウト rootのfont-sizeを可変にして、単位をremで指定することでレイアウトを可変にする
    // 計算式参考サイト：https://lpeg.info/html/css_calc_font.html
    // font-size: calc([最小値px] + ([最大値] - [最小値]) * ((100vw - [最小画面幅px]) / ([最大画面幅] - [最小画面幅])));
    // clampと併用して上限下限を設定すること。しないと無限に変化し続ける
  * ---------------------------- */
  font-size: 14px;
  color: var(--c-black2);
  font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
  font-weight: 300;
  font-style: normal;
}
@media (max-width: 1140px) {
  html {
    font-size: clamp(12px, 12px + 4 * (100vw - 768px) / 372, 16px);
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: clamp(12px, 4.2666666667vw, 16px);
  }
}

body {
  font-family: var(--f-family-main);
  font-size: var(--f-font-size);
  line-height: var(--f-line-height);
  background-color: var(--c-3);
  overflow-wrap: break-word;
  word-break: break-all;
  background-color: var(--c-white);
}

@media (max-width: 768px) {
  img {
    width: 100%;
  }
}

a {
  display: inline-block;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

button {
  transition: 0.3s;
}
button:hover, button:focus {
  opacity: 0.7;
}

p {
  line-height: var(--f-line-height);
}

.l-footer {
  background-color: var(--c-footer-color);
  color: var(--c-black);
  padding: 80px 80px 40px;
  position: relative;
}
@media (max-width: 450px) {
  .l-footer {
    padding: 60px 50px 30px;
  }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 6fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media (max-width: 450px) {
  .footer-container {
    gap: 40px;
  }
}

.footer-column .footer-title {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 2px solid rgb(54, 54, 54);
}
@media (max-width: 450px) {
  .footer-column .footer-title {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list > li {
  margin-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.6;
}
@media (max-width: 450px) {
  .footer-list > li {
    margin-bottom: 12px;
    font-size: 0.85rem;
  }
}
.footer-list > li > a {
  color: var(--c-black);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-list > li > a:hover {
  color: #fff;
}
.footer-list.footer-list-flex {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .footer-list.footer-list-flex {
    flex-wrap: wrap;
  }
}

.footer-sublist {
  list-style: none;
  margin-bottom: 8px;
}
@media (max-width: 450px) {
  .footer-sublist {
/*     padding-left: 15px; */
    margin-top: 10px;
  }
}
.footer-sublist li {
  margin-bottom: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
}
@media (max-width: 450px) {
  .footer-sublist li {
    margin-bottom: 8px;
    font-size: 0.8rem;
  }
}
.footer-sublist li a {
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-sublist li a:hover {
  color: #fff;
}

.p-footer-copy {
  font-size: 10px;
  color: #a0a0a0;
  margin: 32px auto 0;
  text-align: center;
}

.l-header {
  position: relative;
  width: 100%;
  height: 80px;
  z-index: 1000;
  transition: all 0.3s ease;
  text-align: center;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .l-header {
    padding: 0 20px;
    height: 64px;
    display: flex;
    align-items: center;
  }
}
.l-header__container {
/*   max-width: var(--pc-max-width); */
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 42px 0;
}
@media (max-width: 768px) {
  .l-header__container {
    align-items: center;
    padding: 0;
    margin-top: auto;
    margin-bottom: auto;
  }
}
.l-header__no2container {
  justify-content: space-between;
}
.l-header__logo {
  height: 40px;
  font-size: 20px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .l-header__logo {
    height: unset;
  }
}
.l-header__logo a {
  display: block;
  height: 100%;
}
.l-header__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.l-header__home__logo {
  position: absolute;
  right: 100px;
  top: 80px;
  height: 80px;
}
@media (max-width: 768px) {
  .l-header__home__logo {
    right: 50px;
    top: 20px;
    height: 60px;
    z-index: 250;
  }
}
.l-header__home__logo a {
  display: block;
  height: 100%;
}
.l-header__home__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .l-header__nav {
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 64px;
    left: 0;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    overflow: hidden;
  }
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .l-header__nav-list {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    padding: 20px 0;
  }
}
@media (max-width: 768px) {
  .l-header__nav-list > li {
    width: 100%;
  }
}
.l-header__nav-list > li > a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}
@media (max-width: 768px) {
  .l-header__nav-list > li > a {
    color: #000;
    display: block;
    padding: 12px 0;
    width: 100%;
  }
}
.l-header__nav-list > li > a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #333;
  transition: width 0.3s ease;
}
@media (max-width: 768px) {
  .l-header__nav-list > li > a::after {
    content: none;
  }
}
.l-header__nav-list > li > a:hover {
  color: #666;
}
.l-header__nav-list > li > a:hover::after {
  width: 100%;
}
.l-header__nav-list > li > a.c-current::after {
  width: 100%;
}
.l-header__nav-list > li a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

/* ヘッダー固定時のスタイル */
.l-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.p-nav-down {
  position: relative;
}
.p-nav-down > a {
  display: block;
}
.p-nav-down ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: rgba(0, 25, 98, 0.35);
  border: 1px dotted #fff;
  padding: 0.5em 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 9999;
}
@media (max-width: 768px) {
  .p-nav-down ul {
    background-color: #fff;
    color: var(--c-black2);
    border: none;
  }
}
.p-nav-down li a {
  display: block;
  padding: 0.5em 4em 0.5em 1em;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  text-align: left;
}
@media (max-width: 768px) {
  .p-nav-down li a {
    background-color: #fff;
    color: var(--c-black2);
    border: none;
    width: 100%;
    text-align: center;
    padding: 0.5em 4em 0.5em 1em;
  }
}
.p-nav-down li a:hover {
  background-color: #f6f6f6;
  color: #000;
}
@media (max-width: 768px) {
  .p-nav-down li a:hover {
    background-color: #fff;
    color: var(--c-black2);
  }
}
.p-nav-down:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.humburger {
  display: none;
  transition: all 0.2s;
}
@media (max-width: 768px) {
  .humburger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 3000;
    right: 0;
    top: 20px;
    color: var(--c-black2);
    padding-right: 20px;
  }
}
.humburger span {
  transition: all 0.2s;
  display: block;
  height: 0.0714285714rem;
  width: 1.5714285714rem;
  margin-top: 0.2142857143rem;
  margin-bottom: 0.2142857143rem;
  background-color: var(--c-black);
}

.nav-open .l-header__nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-open .humburger {
  transition: all 0.2s;
  padding-block: 10px;
}
.nav-open .humburger span {
  transition: all 0.2s;
  background-color: var(--c-black);
  margin-top: 0;
  margin-bottom: 0;
}
.nav-open .humburger span:first-child {
  transform: rotate(45deg) translateY(1px);
}
.nav-open .humburger span:nth-child(2) {
  opacity: 0;
}
.nav-open .humburger span:last-child {
  transform: rotate(-45deg) translateY(-1px);
}

@media (max-width: 768px) {
  .p-nav-down ul {
    display: none;
    position: static;
    background: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
  }
  .p-nav-down.is-open ul {
    display: block;
  }
}
h2.c-notice {
  position: relative;
  width: 100%;
  font-family: var(--f-family-en);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
h2.c-notice:before {
  content: "/";
  padding-right: 0.5em;
}
h2.c-notice span {
  font-size: 13px;
  font-weight: 400;
  display: block;
  font-family: var(--f-family-main);
}

.c-link-btn-wrapper {
  text-align: center;
}
.c-link-btn-wrapper a.c-link-btn1 {
  color: var(--c-black2);
  font-family: var(--f-family-en);
  font-size: 13px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  letter-spacing: 0.08em;
  transition: all 0.5s;
  line-height: 1;
  position: relative;
  background: url(../images/icon-btn-arrow03.svg) center right no-repeat;
  background-position: center right 30px;
  padding: 20px 120px 20px 0;
}
.c-link-btn-wrapper a.c-link-btn1:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: url(../images/icon-btn-arrow3.svg) center right no-repeat;
  display: block;
}
.c-link-btn-wrapper a.c-link-btn1:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg-arrow-line.svg) center right no-repeat;
  background-position: center right 50px;
  transition: all 0.5s;
}
.c-link-btn-wrapper a.c-link-btn1:hover {
  opacity: 0.5;
  transition: all 0.5s;
}
.c-link-btn-wrapper a.c-link-btn1:hover:after {
  background-position: center right 42px;
  transition: all 0.5s;
}
.c-link-btn-wrapper a.c-link-btn2 {
  color: var(--c-black2);
  font-family: var(--f-family-en);
  font-size: 8px;
  padding: 6px 30px;
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid var(--c-black2);
  margin: 40px auto 0;
  letter-spacing: 0.08em;
  transition: all 0.5s;
  line-height: 1;
}
.c-link-btn-wrapper a.c-link-btn2:after {
  content: url(../images/icon-btn-arrow1.svg);
  display: block;
  margin-left: 18px;
  margin-bottom: 4px;
}
.c-link-btn-wrapper a.c-link-btn2:hover {
  opacity: 0.5;
  transition: all 0.5s;
}

.p-fv {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0;
  width: 100%;
}
.p-fv__content {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  text-align: center;
}
.p-fv__image {
  width: 100%;
  padding: 40px 40px 0;
}
@media (max-width: 768px) {
  .p-fv__image {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .p-fv__image-home {
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
}
.p-fv__image-home img {
  max-width: unset;
  aspect-ratio: 1120/631;
}
@media (max-width: 768px) {
  .p-fv__image-home img:first-of-type {
    display: none;
  }
}
.p-fv__image-home img:last-of-type {
  display: none;
}
@media (max-width: 768px) {
  .p-fv__image-home img:last-of-type {
    display: block;
    object-fit: cover;
    object-position: center center;
    aspect-ratio: 43/69;
  }
}
.p-fv__image-home .p-fv__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.p-fv__image-home .p-fv__text span {
  font-style: italic;
  font-size: 1.5625rem;
  font-family: var(--f-family-en);
  letter-spacing: 0.2em;
  font-weight: 500;
  white-space: nowrap;
}
.p-fv__image img {
  width: 100%;
  height: 100%;
  max-width: unset;
}
@media (max-width: 768px) {
  .p-fv__image img {
    object-fit: cover;
  }
}
.p-fv h1.copy-home {
  font-family: var(--f-family-en);
  color: #fff;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 1;
}
.p-fv h1.copy {
  letter-spacing: 0.2em;
  font-weight: 500;
  position: relative;
  text-transform: uppercase;
}
.p-fv h1.copy:before {
  content: "/";
  padding-right: 0.5em;
}
.p-fv h1.copy.copy-2 {
  font-size: 20px;
}
@media (max-width: 768px) {
  .p-fv h1.copy.copy-2 {
    font-size: 18px;
  }
}
.p-fv h1.copy.copy-3:before {
  content: none;
}

.p-header__scroll {
  position: absolute;
  top: 90px;
  right: 0;
  text-align: center;
  writing-mode: vertical-rl;
  height: 100%;
  width: 40px;
  display: flex;
  justify-content: center;
  vertical-align: middle;
  letter-spacing: 0.1em;
  z-index: 50;
}
@media (max-width: 768px) {
  .p-header__scroll {
    width: 36px;
    word-break: keep-all;
    white-space: nowrap;
  }
}
.p-header__scroll .p-header__scroll-text {
  display: flex;
  justify-content: center;
  text-align: center;
  height: 100%;
  width: 100%;
  align-items: center;
  font-family: var(--f-family-en);
  font-size: 12px;
  color: var(--c-black2);
}
.p-header__scroll .p-header__scroll-text:after {
  content: "";
  display: block;
  width: 1px;
  height: 20vh;
  margin-top: 2vh;
  background-color: var(--c-black);
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.p-header__scroll2 {
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  writing-mode: vertical-rl;
  height: 100%;
  width: 40px;
  display: flex;
  opacity: 0;
  transition: 0.5s all;
  text-transform: uppercase;
  z-index: 10;
  justify-content: center;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .p-header__scroll2 {
    width: 36px;
  }
}
.p-header__scroll2.is-fixed {
  opacity: 1;
  transition: 0.5s all;
}
.p-header__scroll2 .p-header__scroll-text {
  display: flex;
  justify-content: center;
  text-align: center;
  height: 100%;
  width: 100%;
  align-items: center;
  font-family: var(--f-family-en);
  font-size: 12px;
  color: var(--c-black2);
}
.p-header__scroll2 .p-header__scroll-text:after {
  content: "";
  display: block;
  width: 1px;
  height: 20vh;
  margin-top: 2vh;
  background-color: var(--c-black);
}

.p-philosophy {
  padding: 120px 0 0;
  background-color: #fff;
  max-width: var(--pc-max-width2);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (max-width: 768px) {
  .p-philosophy {
    padding: 60px 20px;
  }
}
.p-philosophy__container {
  max-width: 1140px;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 768px) {
  .p-philosophy__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}
.p-philosophy__content {
  padding-right: 40px;
}
@media (max-width: 768px) {
  .p-philosophy__content {
    padding-right: 0;
  }
}
.p-philosophy__title {
  margin-bottom: 32px;
}
.p-philosophy__title:after {
  content: "";
  height: 92px;
  width: 1px;
  background-color: var(--c-black2);
  margin: 24px auto 32px;
  display: block;
}
@media (max-width: 768px) {
  .p-philosophy__title:after {
    height: 50px;
    margin: 12px auto 16px;
  }
}
.p-philosophy__subtitle {
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .p-philosophy__subtitle {
    font-size: 18px;
  }
}
.p-philosophy__subtitle2 {
  font-family: var(--f-family-en);
  letter-spacing: 0.04em;
  font-size: 24px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .p-philosophy__subtitle2 {
    font-size: 15px;
  }
}
.p-philosophy__text {
  width: 60%;
  padding: 48px;
  background-color: #fff;
  transform: translateX(50%) translateY(-80%);
  margin-bottom: -20%;
}
@media (max-width: 768px) {
  .p-philosophy__text {
    width: 80%;
    padding: 24px;
    transform: translateX(20%) translateY(-20%);
    margin-bottom: -20%;
  }
}
.p-philosophy__text p {
  font-size: 14px;
  line-height: 240%;
}
.p-philosophy__text p.c-link-btn-wrapper {
  margin-top: 60px;
  font-size: 10px;
  letter-spacing: -0.1em;
}
.p-philosophy__image {
  width: 60%;
}
.p-philosophy__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-products {
  padding: 120px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-products {
    padding: 60px 0;
  }
}
.p-products__container {
  max-width: var(--pc-max-width2);
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .p-products__container {
    padding: 0;
  }
}
.p-products__item-list {
  width: 220px;
}
@media (max-width: 768px) {
  .p-products__item-list {
    padding: 0;
  }
}
.p-products__title {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .p-products__title {
    font-size: 2.2rem;
  }
}
.p-products__title:after {
  content: "";
  height: 92px;
  width: 1px;
  background-color: var(--c-black2);
  margin: 24px auto 32px;
  display: block;
}
@media (max-width: 768px) {
  .p-products__title:after {
    height: 50px;
    margin: 12px auto 16px;
  }
}
.p-products__subtitle {
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .p-products__subtitle {
    font-size: 0.9rem;
    margin-bottom: 60px;
  }
}
.p-products__overview {
  margin-bottom: 180px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .p-products__overview {
    margin-bottom: 90px;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .p-products__overview img:first-of-type {
    transform: translateX(-5%);
  }
}
@media (max-width: 768px) {
  .p-products__overview img:last-of-type {
    transform: translateY(-12%) translateX(5%);
  }
}
.p-products__grid {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  max-width: var(--pc-max-width2);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 992px) {
  .p-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .p-products__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.p-products__grid.p-products__grid2 {
  max-width: var(--pc-max-width4);
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 992px) {
  .p-products__grid.p-products__grid2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .p-products__grid.p-products__grid2 {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.p-products__item {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .p-products__item {
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: row-reverse;
    gap: 24px;
  }
}
.p-products__item .c-link-btn-wrapper {
  text-align: left;
  padding-bottom: 32px;
}
.p-products__item-image {
  min-width: 88px;
}
@media (max-width: 768px) {
  .p-products__item-image {
    max-width: calc(100% - 200px);
  }
}
.p-products__item-image img {
  width: 100%;
  height: auto;
}
.p-products__item-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  padding: 20px 0 0;
  text-transform: uppercase;
  font-family: var(--f-family-en);
}
.p-products__item-title span {
  font-size: 12px;
  display: block;
}
.p-products__item-subtitle {
  font-size: 12px;
  letter-spacing: 0;
  margin-bottom: 15px;
  font-weight: 500;
}
.p-products__item-subtitle span {
  font-size: 75%;
}
.p-products__item-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.p-products__item-desc span {
  font-size: 12px;
  display: block;
}

.p-topics {
/*   padding: 120px 0; */
}
@media (max-width: 768px) {
  .p-topics {
    padding: 60px 20px;
  }
}
.p-topics.p-no2-notice .p-topics__container:after {
  content: none;
}
.p-topics__container {
  max-width: var(--pc-max-width4);
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.p-topics__container:after {
  content: "";
  display: block;
  position: absolute;
  top: 34px;
  right: 0;
  width: 80%;
  height: 1px;
  background-color: var(--c-black2);
  opacity: 0.3;
}
@media (max-width: 768px) {
  .p-topics__container:after {
    right: unset;
    left: 7.1428571429rem;
  }
}
.p-topics__title {
  margin-bottom: -15px;
}
.p-topics__title span {
  padding-left: 2em;
}
.p-topics__list {
  display: grid;
  margin-bottom: 32px;
  margin-left: 30%;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .p-topics__list {
    margin-bottom: 32px;
    margin-left: 3%;
  }
}
.p-topics__item {
  border-bottom: 1px solid var(--c-black2);
  display: flex;
  align-items: center;
  line-height: 1;
  padding: 25px 5px;
  position: relative;
}
@media (max-width: 768px) {
  .p-topics__item {
    line-height: 1.2;
  }
}
.p-topics__item a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/icon-btn-arrow03.svg) center right no-repeat;
  background-position: center right 30px;
}
.p-topics__item a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/bg-arrow-line.svg) center right no-repeat;
  background-position: center right 50px;
  transition: all 0.5s;
}
.p-topics__item a:hover {
  background: url(../images/icon-btn-arrow03-w.svg) center right no-repeat;
  background-position: center right 30px;
}
.p-topics__item a:hover:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #D0D0D0;
}
.p-topics__item a:hover:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/bg-arrow-line-w.svg) center right no-repeat;
  background-position: center right 40px;
  transition: all 0.5s;
}
.p-topics__item a:hover + time, .p-topics__item a:hover + time + h3 {
  color: #fff;
}
.p-topics__item-date {
  margin: 0;
  margin-right: 32px;
  font-family: var(--f-family-en);
}
@media (max-width: 768px) {
  .p-topics__item-date {
    margin-right: 16px;
    font-size: 10px;
  }
}
.p-topics__item-title {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 768px) {
  .p-topics__item-title {
    font-size: 12px;
  }
}
.p-topics.p-no2-topics .p-topics__container::after {
  content: none;
}
.p-topics.p-no2-topics .p-topics__container .p-product-detail__headfv h2 {
  font-size: 24px;
}
.p-topics.p-no2-topics .p-topics__container .p-topics__list {
  margin-left: 0;
  border-bottom: none;
  border-top: 1px dotted var(--c-black2);
}
.p-topics.p-no2-topics .p-topics__container .p-topics__item {
  border-bottom: 1px dotted var(--c-black2);
}
.p-topics.p-no2-topics .p-topics__container .p-topics__item a:hover {
  background: url(../images/icon-btn-arrow03-w.svg) center right no-repeat;
  background-position: center right 30px;
}
.p-topics.p-no2-topics .p-topics__container .p-topics__item a:hover:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #D0D0D0;
}
.p-topics.p-no2-topics .p-topics__container .p-topics__item a:hover:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/bg-arrow-line-w.svg) center right no-repeat;
  background-position: center right 40px;
  transition: all 0.5s;
}
.p-topics.p-no2-topics .p-topics__container .p-topics__item a:hover + time, .p-topics.p-no2-topics .p-topics__container .p-topics__item a:hover + time + h3 {
  color: #fff;
}
.p-topics.p-no2-topics .p-topics__container .p-topics__item-date {
  width: 25%;
}
.p-topics .c-link-nav-wrapper {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.p-topics .c-link-nav-wrapper a, .p-topics .c-link-nav-wrapper span {
  width: 36px;
  height: 36px;
  margin: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-family-en);
}
.p-topics .c-link-nav-wrapper a:hover, .p-topics .c-link-nav-wrapper span:hover {
  background-color: #D0D0D0;
  color: #fff;
}
.p-topics .c-link-nav-wrapper span {
  background-color: #D0D0D0;
  color: #fff;
}

.p-topics .p-topics__contents {
  max-width: 700px;
  padding-bottom: 200px;
  margin-left: auto;
  margin-right: auto;
}
.p-topics .p-topics__contents h2 {
  font-size: 20px;
  padding-bottom: 60px;
  margin-bottom: 80px;
  background-image: radial-gradient(circle, #959595 1px, transparent 1px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 6px 2px;
  font-weight: 500;
  margin-top: 10px;
}
.p-topics .p-topics__contents time {
  text-transform: uppercase;
  font-family: var(--f-family-en);
}
.p-topics .p-topics__contents p, .p-topics .p-topics__contents .wp-block-image {
  font-size: 14px;
  margin-bottom: 40px;
}
.p-topics .p-topics__contents .p-flex-box {
  display: flex;
}

.p-partners {
  padding: 120px 0;
  background-color: #fff;
}
@media (max-width: 768px) {
  .p-partners {
    padding: 60px 20px;
  }
}
.p-partners__container {
  max-width: var(--pc-max-width2);
  margin: 0 auto;
  padding: 0 20px;
}
.p-partners__title {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  text-transform: uppercase;
}
.p-partners__contetnts {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin: 250px auto 50px;
  line-height: 2;
}
@media (max-width: 768px) {
  .p-partners__contetnts {
    margin: 125px auto 25px;
    width: 96%;
  }
}
.p-partners__clinics {
  display: flex;
  justify-content: space-between;
  margin-top: 160px;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--pc-max-width3);
}
@media (max-width: 768px) {
  .p-partners__clinics {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    gap: 30px;
  }
}
.p-partners__clinic {
  border: 1px solid #707070;
  border-radius: 22px;
  overflow: hidden;
  padding: 36px 32px;
  display: flex;
  font-size: 13px;
  flex-direction: column;
  align-items: center;
  text-align: left;
  position: relative;
  width: 275px;
}
@media (max-width: 450px) {
  .p-partners__clinic {
    padding: 25px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-partners__clinic-image {
  position: relative;
  text-align: center;
}
.p-partners__clinic-image img {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  width: auto;
}
.p-partners__clinic-content {
  width: 100%;
  padding: 0 22px;
}
.p-partners__clinic-name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.p-partners__clinic-name.p-partners__clinic-name-min {
  font-size: 11px;
}
@media (max-width: 450px) {
  .p-partners__clinic-name {
    font-size: 1rem;
  }
}
.p-partners__clinic-zip {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
  font-weight: normal;
}
.p-partners__clinic-address {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #666;
  margin-bottom: 10px;
}
.p-partners__clinic-address p {
  margin: 0;
  line-height: 1.4;
}
.p-partners__clinic-tel {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
}
.p-partners__clinic-web {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: capitalize;
}
.p-partners__clinic-web-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.85rem;
  transition: background-color 0.3s ease;
  position: relative;
}
.p-partners__clinic-web-link:hover {
  background-color: #555;
}
.p-partners__clinic-web-link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 8px;
}
.p-partners__contact {
  text-align: center;
  padding: 40px;
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 450px) {
  .p-partners__contact {
    padding: 30px 20px;
  }
}
.p-partners__contact-text {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}
@media (max-width: 450px) {
  .p-partners__contact-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
.p-partners__contact-link {
  display: inline-block;
  padding: 15px 40px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.p-partners__contact-link:hover {
  background-color: #555;
}
@media (max-width: 450px) {
  .p-partners__contact-link {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

.p-partner-with {
  margin-top: 200px;
  padding: 160px 0;
  background: url(../images/bg-footer.jpg) center center no-repeat;
  background-size: cover;
  color: var(--c-black2);
  text-align: center;
  min-height: 25vw;
}
@media (max-width: 768px) {
  .p-partner-with {
    margin-top: 100px;
    padding: 80px 0;
  }
}
.p-partner-with__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-partner-with__title {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .p-partner-with__title {
    font-size: 18px !important;
  }
}
.p-partner-with p {
  font-size: 13px;
  margin-top: 20px;
}

.p-pagetop {
  position: fixed;
  top: 20vh;
  right: 0;
  text-align: center;
  z-index: 2;
  writing-mode: vertical-rl;
  height: 100%;
  width: 40px;
  display: flex;
  transition: 0.5s all;
  opacity: 0;
  justify-content: center;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .p-pagetop {
    width: 36px;
  }
}
.p-pagetop.is-fixed {
  opacity: 1;
  transition: 0.5s all;
}
.p-pagetop .p-pagetop-text {
  display: flex;
  justify-content: center;
  text-align: center;
  height: 100%;
  width: 100%;
  align-items: center;
  font-family: var(--f-family-en);
  font-size: 11px;
  color: var(--c-black2);
}
.p-pagetop .p-pagetop-text:before {
  content: "";
  display: block;
  width: 1px;
  height: 20vh;
  margin-bottom: 2vh;
  background-color: var(--c-black);
}
.p-pagetop .p-pagetop-text p {
  margin-top: 1vh;
}
.p-pagetop .p-pagetop-text p img {
  margin-top: 2vh;
  height: auto;
  width: 22px;
}
.p-pagetop a {
  transition: all 0.5s;
}
.p-pagetop a:hover {
  opacity: 0.5;
  transition: all 0.5s;
}

.p-partner-logo {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
}
.p-partner-logo.p-partner-logo2 {
  padding: 0 0 40px;
}
@media (max-width: 768px) {
  .p-partner-logo.p-partner-logo2 {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .p-partner-logo {
    padding: 0;
  }
}
.p-partner-logo .partner-list {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  transform: translateX(0);
  will-change: transform;
}
@media (max-width: 768px) {
  .p-partner-logo .partner-list {
    gap: 18px;
  }
}
.p-partner-logo .partner-list li {
  flex: 0 0 auto;
}
.p-partner-logo .partner-list img {
  display: block;
  height: 40px;
  width: auto;
}

/* ===============================
   ローディング画面（白背景＋青文字）
=============================== */
#loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  min-height: 100svh;
  background-color: #fff;
  color: #012489;
  z-index: 99999;
  transition: opacity 1.2s ease;
  opacity: 1;
  pointer-events: none;
}

#loader.is-loaded {
  opacity: 0;
}

/* ロゴ文字をFVと同じセンターポジションにする */
.loader__logo {
  position: absolute;
  top: 50%;
  left: 49.5%;
  transform: translate(-50%, -50%);
  margin: 40px 0 0;
  font-family: var(--f-family-en);
  font-weight: 500;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

/* ===============================
   ページ本体フェードイン
=============================== */
body {
  transition: opacity 3s ease;
}

body.loaded {
  opacity: 1;
}

.p-products-intro {
  text-align: center;
  margin: 6rem auto;
  text-transform: uppercase;
}
.p-products-intro span {
  height: 2.2em;
  display: block;
}
@media (max-width: 768px) {
  .p-products-intro {
    padding: 0 20px;
  }
}
.p-products-intro p {
  line-height: 2;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .p-products-intro p {
    font-size: 1rem;
  }
}

.p-products-page-list {
  max-width: var(--pc-max-width4);
  margin-left: auto;
  margin-right: auto;
}
.p-products-page-list__list {
  display: flex;
  flex-direction: column;
  gap: 156px;
}
.p-products-page-list .p-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.p-products-page-list .p-product__image {
  flex: 1;
}
.p-products-page-list .p-product__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.p-products-page-list .p-product__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  font-size: 14px;
}
@media (max-width: 768px) {
  .p-products-page-list .p-product__content {
    padding: 0 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-products-page-list .p-product__title {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .p-products-page-list .p-product__title {
    font-size: 1.4rem;
  }
}
.p-products-page-list .p-product__title span {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-products-page-list .p-product__title span {
    font-size: 1.2rem;
  }
}
.p-products-page-list .p-product__subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .p-products-page-list .p-product__subtitle {
    font-size: 1.2rem;
  }
}
.p-products-page-list .p-product__txtsub span {
  font-size: 10px;
  display: block;
}
.p-products-page-list .p-product__desc {
  font-size: 1.4rem;
  line-height: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: -10px;
}
.p-products-page-list .p-product__desc__image {
  margin-bottom: 0;
}
.p-products-page-list .p-product__desc__image img {
  min-width: 88px;
  margin-left: 22px;
}
.p-products-page-list .p-product__desc-item {
  font-size: 14px;
  padding-bottom: 32px;
}
.p-products-page-list .p-product__price {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.p-products-page-list .p-product .c-link-btn-wrapper {
  text-align: left;
}
.p-products-page-list .p-product .c-link-btn-wrapper a {
  margin-left: 0;
  margin-right: 0;
  margin-top: 24px;
}
.p-products-page-list .p-product .c-link-btn-wrapper a.c-link-btn2 {
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.p-products-page-list .p-product.is-right {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .p-products-page-list .p-product {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .p-products-page-list .p-product.is-right {
    flex-direction: column;
    align-items: center;
  }
  .p-products-page-list .p-product__image {
    width: 100%;
  }
  .p-products-page-list .p-product__content {
    width: 100%;
  }
}
.p-product-detail .t-h3-title {
  font-size: 19px !important;
  color: var(--c-darkblue);
  display: inline-block;
  border-radius: 8px;
  padding: 5px 20px;
  border: 1px solid var(--c-darkblue);
  margin: 60px 0 20px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-product-detail .t-h3-title {
    margin: 30px 0 20px;
    font-size: 14px !important;
  }
}
.p-product-detail .t-h3-title strong {
  position: relative;
  font-weight: 500;
  top: -1px;
}
.p-product-detail .t-h3-title strong:before {
  position: absolute;
  top: -8px;
  left: 0;
  display: block;
  font-size: 8px;
  font-weight: 300;
}
.p-product-detail .t-h3-title strong.c-at1:before {
  content: "※1";
}
.p-product-detail__headfv {
  padding: 200px 0 120px;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .p-product-detail__headfv {
    padding: 80px 0;
  }
}
.p-product-detail__headfv h2 {
  color: var(--c-darkblue);
  letter-spacing: 0.2em;
  font-weight: 500;
  font-size: 32px;
  font-family: var(--f-family-en);
}
@media (max-width: 768px) {
  .p-product-detail__headfv h2 {
    font-size: 24px;
  }
}
.p-product-detail__headfv p {
  font-size: 15px;
  color: #191919;
  letter-spacing: 0.2em;
  font-family: var(--f-family-en);
}
@media (max-width: 768px) {
  .p-product-detail__headfv p {
    font-size: 12px;
  }
}
.p-product-detail {
  /* ========== INTRO SECTION ========== */
}
.p-product-detail .p-product-detail__info {
  position: relative;
}
.p-product-detail .p-product-detail__info .subtxt {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .p-product-detail .p-product-detail__info .subtxt {
    font-size: 1.2rem;
    padding-top: 40px;
  }
}
.p-product-detail .p-product-detail__info .subcatch {
  position: absolute;
  right: 0;
  top: -32px;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c-darkblue);
  text-align: center;
  color: var(--c-darkblue);
  width: 114px;
  height: 114px;
  border-radius: 50%;
  font-weight: 400;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
}
@media (max-width: 768px) {
  .p-product-detail .p-product-detail__info .subcatch {
    width: 100px;
    height: 100px;
    top: -60px;
  }
}
.p-product-detail .p-product-detail__info .subcatch span {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: -10px;
}
.p-product-detail .p-product-detail__info p strong {
  position: relative;
  font-weight: 300;
}
.p-product-detail .p-product-detail__info p strong:before {
  position: absolute;
  top: -9px;
  left: 0;
  display: block;
  font-size: 7.5px;
}
.p-product-detail .p-product-detail__info p strong.c-at1:before {
  content: "※1";
}
.p-product-detail .p-product-detail__info p strong.c-at2:before {
  content: "※2";
}
.p-product-detail .p-product-detail__info p strong.c-at3:before {
  content: "※3";
}
.p-product-detail .p-product-detail__info p strong.c-at4:before {
  content: "※4";
}
.p-product-detail .p-product-detail__info p strong.c-at6:before {
  content: "※6";
}
.p-product-detail .p-product-detail__info p strong.c-at7:before {
  content: "※7";
}
.p-product-detail .p-product-detail__info p strong.c-at8:before {
  content: "※8";
}
.p-product-detail .p-product-detail__info p strong.c-at9:before {
  content: "※9";
}
.p-product-detail .p-product-detail__info span {
  font-weight: 700;
}
.p-product-detail .p-product-detail__info h2 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 1.2rem 0 0;
}
.p-product-detail .p-product-detail__info h2 span {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.p-product-detail .p-product-detail__info .subtitle {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: #555;
}
.p-product-detail .p-product-detail__info .boxtxt1 {
  font-weight: 500;
  display: inline-block;
  padding: 0.25em 0.75em;
  border: 1px solid var(--c-black);
}
@media (max-width: 768px) {
  .p-product-detail .p-product-detail__info .boxtxt1 {
    padding: 0.25em 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
}
.p-product-detail .p-product-detail__info ul.boxtxt2 {
  display: inline-flex;
  flex-wrap: wrap;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 460px;
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .p-product-detail .p-product-detail__info ul.boxtxt2 {
    flex-direction: column;
    width: 100%;
  }
}
.p-product-detail .p-product-detail__info ul.boxtxt2 li {
  background-color: var(--c-darkblue);
  color: #fff;
  font-weight: 500;
  font-size: 1.3rem;
  position: relative;
  min-width: 157px;
  padding: 0.5em;
}
@media (max-width: 768px) {
  .p-product-detail .p-product-detail__info ul.boxtxt2 li {
    padding: 0.25em 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
}
.p-product-detail .p-product-detail__info ul.boxtxt2 li span {
  font-size: 8px;
  vertical-align: super;
  margin-left: 0.5rem;
  position: absolute;
  right: 4px;
  top: 4px;
}
.p-product-detail .p-product-detail__info .boxtxt3 {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  font-size: 23px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-product-detail .p-product-detail__info .boxtxt3 {
    font-size: 20px;
    align-items: center;
    gap: 12px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .p-product-detail .p-product-detail__info .boxtxt3 img {
    width: 20px;
    height: 20px;
  }
}
.p-product-detail .p-product-detail__info .price {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0.2rem 0 1.8rem;
}
.p-product-detail .p-product-detail__info p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 0.8rem;
}
.p-product-detail .p-product-detail__info .disc {
  font-size: 17px;
}
@media (max-width: 768px) {
  .p-product-detail .p-product-detail__info .disc {
    font-size: 14px;
  }
}
.p-product-detail .p-product-detail__info .disc span {
  position: relative;
  font-weight: 300;
}
.p-product-detail .p-product-detail__info .disc span:before {
  position: absolute;
  top: -10px;
  left: 0;
  display: block;
  font-size: 8px;
}
.p-product-detail .p-product-detail__info .disc span.c-at1:before {
  content: "※1";
}
.p-product-detail .p-product-detail__info .disc span.c-at2:before {
  content: "※2";
}
.p-product-detail .p-product-detail__info .disc span.c-at3:before {
  content: "※3";
}
.p-product-detail .p-product-detail__info .disc span.c-at4:before {
  content: "※4";
}
.p-product-detail .p-product-detail__info .disc span.c-at5:before {
  content: "※5";
}
.p-product-detail .p-product-detail__info .attention {
  font-size: 14px;
}
@media (max-width: 768px) {
  .p-product-detail .p-product-detail__info .attention {
    font-size: 12px;
  }
}
.p-product-detail__quality ul {
  display: grid;
  gap: 2px;
}
.p-product-detail__quality li {
  width: 100%;
  position: relative;
  list-style: none;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  bottom: 4px;
  margin-bottom: 16px;
  transform: translateY(12px);
}
.p-product-detail__quality li:before {
  top: -2px;
  position: relative;
  margin-right: 6px;
  transform: scale(0.6);
  content: url(../images/sa-serum/icon-free.svg);
}
.p-product-detail__quality li span span {
  display: block;
  color: #012489;
  margin-bottom: 6px;
  font-size: 17px;
}
.p-product-detail__quality .p-explanation {
  text-align: center;
}
.p-product-detail__quality .p-explanation img {
  margin: 20px auto;
}
.p-product-detail__quality strong {
  position: relative;
  font-weight: 500;
  top: -1px;
}
.p-product-detail__quality strong:before {
  position: absolute;
  top: -8px;
  left: 0;
  display: block;
  font-size: 8px;
  font-weight: 300;
}
.p-product-detail__quality strong.c-at1:before {
  content: "※1";
}
.p-product-detail__quality strong.c-at2:before {
  content: "※2";
}
.p-product-detail__quality strong.c-at3:before {
  content: "※3";
}
.p-product-detail__quality strong.c-at4:before {
  content: "※4";
}
.p-product-detail__quality strong.c-at5:before {
  content: "※5";
}
.p-product-detail {
  /* ========== INGREDIENTS ========== */
}
.p-product-detail .p-product-detail__ingredients h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.p-product-detail .p-product-detail__ingredients p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .p-product-detail .p-product-detail__ingredients p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .p-product-detail .p-product-detail__ingredients p img {
    max-width: 120px;
  }
}
.p-product-detail .p-product-detail__ingredients ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
}
@media (max-width: 768px) {
  .p-product-detail .p-product-detail__ingredients ul {
    flex-direction: column;
  }
}
.p-product-detail .p-product-detail__ingredients ul li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
}
.p-product-detail .p-product-detail__ingredients ul li img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .p-product-detail .p-product-detail__ingredients ul li img {
    width: 20px;
    height: 20px;
  }
}
.p-product-detail .vitamin-ex-img {
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-product-detail .vitamin-ex-img span {
  color: #012489;
  font-weight: bold;
  line-height: 1.2;
}
.p-product-detail .vitamin-ex-img span span {
  font-weight: 400;
  color: #000;
  display: block;
  font-size: 12px;
  padding-left: 24px;
}
.p-product-detail__ingredients-chart .vitamin-chart {
  position: relative;
}
.p-product-detail__ingredients-chart .vitamin-chart p {
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  text-align: center;
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  padding-left: 30.6%;
  color: #001962;
  font-weight: bold;
}
@media (max-width: 768px) {
  .p-product-detail__ingredients-chart .vitamin-chart p {
    padding-left: 0;
    right: 0;
    justify-content: center;
  }
}
.p-product-detail__ingredients-chart .vitamin-chart p span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  font-size: 8px;
  font-weight: 300;
}
.p-product-detail .vitamin-desc ul {
  display: flex;
  flex-direction: column;
  margin-top: 64px;
  gap: 24px;
}
@media (max-width: 768px) {
  .p-product-detail .vitamin-desc ul {
    margin-top: 32px;
    gap: 12px;
  }
}
.p-product-detail .vitamin-desc ul li {
  background-color: var(--c-darkblue);
  color: #fff;
  font-weight: 500;
  display: flex;
  font-size: 18px;
  text-align: center;
  align-items: center;
  padding: 8px 20px;
  justify-content: center;
  border-radius: 6px;
  min-height: 65px;
  position: relative;
}
@media (max-width: 768px) {
  .p-product-detail .vitamin-desc ul li {
    font-size: 14px;
    padding: 8px 20px 8px 44px;
  }
}
.p-product-detail .vitamin-desc ul li img {
  position: absolute;
  left: 5%;
}
@media (max-width: 768px) {
  .p-product-detail .vitamin-desc ul li img {
    height: 2.5rem;
    width: auto;
  }
}
.p-product-detail {
  /* ========== ingredients ========== */
}
.p-product-detail .p-product__ingredients2 {
  margin: 60px 0;
  display: grid;
  gap: 30px 0;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .p-product-detail .p-product__ingredients2 {
    margin: 30px 0;
    gap: 20px;
  }
}
.p-product-detail .p-product__ingredients2 li {
  display: flex;
  font-size: 15px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-product-detail .p-product__ingredients2 li img {
  width: 164px;
  margin-top: 30px;
}
.p-product-detail .c-attention2 span {
  position: relative;
  font-weight: 300;
}
.p-product-detail .c-attention2 span:before {
  content: "※1";
  position: absolute;
  top: -6px;
  left: 0;
  display: block;
  font-size: 8px;
}
.p-product-detail .c-attention2 span.c-at1:before {
  content: "※1";
}
.p-product-detail {
  /* ========== FREE SECTION ========== */
}
.p-product-detail__free h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.p-product-detail__free ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 2rem;
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  .p-product-detail__free ul {
    grid-template-columns: 1fr;
  }
}
.p-product-detail__free ul li {
  position: relative;
  padding: 0.2em 1.2em;
  list-style: none;
  border: 1px solid var(--c-darkblue);
  text-align: center;
  border-radius: 25px;
  left: 50px;
  width: calc(100% - 40px);
  color: var(--c-darkblue);
  font-weight: 500;
  font-size: 15px;
}
.p-product-detail__free ul li:before {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  content: url(../images/sa-serum/icon-free.svg);
}
.p-product-detail__attentionbox {
  background-color: #012489;
  width: 60%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 16px auto 16px 10%;
  padding: 5px;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .p-product-detail__attentionbox {
    margin-left: auto;
  }
}
.p-product-detail__attention {
  font-size: 10px;
  margin-top: 65px;
}
.p-product-detail {
  /* ========== HOW TO USE ========== */
}
.p-product-detail__howto {
  background-color: #C1CAD6;
  color: #fff;
  padding: 95px 0;
}
.p-product-detail__howto h3 {
  text-align: center;
  font-size: 15px;
  margin-bottom: 50px;
}
.p-product-detail__howto h3 span {
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 5px 30px;
  display: block;
  width: 240px;
  margin: 0 auto 5px;
  font-size: 20px;
  font-family: var(--f-family-en);
}
.p-product-detail__howto .c-center {
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
}
.p-product-detail__howto-container {
  max-width: var(--pc-max-width4);
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .p-product-detail__howto-container {
    flex-direction: column;
  }
}
.p-product-detail__howto-container.--min {
  max-width: 500px;
}
.p-product-detail__howto-item {
  text-align: left;
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .p-product-detail__howto-item {
    margin-bottom: 16px;
    flex-direction: column;
    padding: 0 20px;
  }
}
.p-product-detail__howto-item:last-of-type {
  margin-bottom: 0;
}
.p-product-detail__howto-item h4 {
  display: inline-block;
  border-radius: 20px;
  padding: 5px 30px;
  background-color: #fff;
  color: #bcbcbc;
  min-width: 116px;
  margin-top: 4px;
  margin-right: 40px;
  font-family: var(--f-family-en);
}
.p-product-detail__howto-item p:first-of-type {
  font-size: 16px;
}
@media (max-width: 768px) {
  .p-product-detail__howto-item p:first-of-type {
    margin-bottom: 6px;
    margin-top: 10px;
  }
}
.p-product-detail__howto-item p:last-of-type {
  font-size: 12px;
}
.p-product-detail__howto-right {
  display: grid;
  gap: 32px;
  margin-left: 32px;
  min-width: 128px;
  margin-top: auto;
  margin-bottom: auto;
}
@media (max-width: 768px) {
  .p-product-detail__howto-right {
    width: 92%;
    margin-top: 40px;
    gap: 16px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.p-product-detail {
  /* ========== recommend ========== */
}
.p-product-detail__recommend {
  padding: 95px 0;
  position: relative;
  width: 100%;
  text-align: center;
}
.p-product-detail__recommend h3 {
  text-align: center;
  margin-bottom: 80px;
}
.p-product-detail__recommend h3 span {
  display: block;
  font-size: 12px;
  font-family: var(--f-family-en);
}
.p-product-detail__recommend-item {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--pc-max-width4);
}
@media (max-width: 768px) {
  .p-product-detail__recommend-item {
    width: 90%;
  }
}
.p-product-detail__recommend:after {
  content: "";
  width: 100%;
  height: 21vw;
  background-color: #F2F2F2;
  display: block;
  position: absolute;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-product-detail__recommend:after {
    width: 50%;
    height: 100%;
    top: 0;
    bottom: unset;
    left: 0;
  }
}
.p-product-detail {
  /* ========== ALL INGREDIENTS ========== */
}
.p-product-detail .p-product-detail__allingredients {
  background-color: #C1CAD6;
  padding: 15px 40px;
  border-radius: 8px;
  max-width: 520px;
  margin: 60px auto;
}
@media (max-width: 768px) {
  .p-product-detail .p-product-detail__allingredients {
    width: 92%;
  }
}
.p-product-detail .p-product-detail__allingredients h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  position: relative;
}
.p-product-detail .p-product-detail__allingredients h3:after {
  content: "";
  position: absolute;
  right: -15px;
  top: 15px;
  width: 40px;
  height: 10px;
  margin: 0 auto;
  background: url(../images/icon-aroww-down.svg) center center no-repeat;
  background-size: contain;
  display: block;
  transition: all 0.2s;
}
.p-product-detail .p-product-detail__allingredients h3.is-open:after {
  transform: rotate(180deg);
  transition: all 0.2s;
}
.p-product-detail .p-product-detail__allingredients p {
  margin-top: 24px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #fff;
  display: none;
}
.p-product-detail__point-recommend {
  max-width: var(--pc-max-width4);
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
@media (max-width: 768px) {
  .p-product-detail__point-recommend {
    flex-direction: column;
    width: 92%;
  }
}
.p-product-detail__point-recommend-1, .p-product-detail__point-recommend-2 {
  width: 46%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .p-product-detail__point-recommend-1, .p-product-detail__point-recommend-2 {
    width: 100%;
  }
}
.p-product-detail__point-recommend-1 h3, .p-product-detail__point-recommend-2 h3 {
  background-color: #012489;
  color: #fff;
  border-radius: 20px;
  width: 70%;
  font-family: var(--f-family-en);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  padding: 4px;
  font-weight: 500;
  margin-top: 60px;
  margin-bottom: 42px;
}
.p-product-detail__point-recommend-1 h3 img, .p-product-detail__point-recommend-2 h3 img {
  position: absolute;
  right: -10px;
  top: -20px;
}
@media (max-width: 768px) {
  .p-product-detail__point-recommend-1 h3 img, .p-product-detail__point-recommend-2 h3 img {
    width: 18%;
  }
}
.p-product-detail__point-recommend-1 ul, .p-product-detail__point-recommend-2 ul {
  display: grid;
  gap: 20px;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .p-product-detail__point-recommend-1 ul, .p-product-detail__point-recommend-2 ul {
    place-content: center;
  }
}
.p-product-detail__point-recommend-1 ul li, .p-product-detail__point-recommend-2 ul li {
  color: #fff;
  padding: 6px;
  font-size: 15px;
  text-align: center;
  border-radius: 20px;
  max-width: 420px;
  background-color: #C1CAD6;
  position: relative;
}
.p-product-detail__point-recommend-1 ul li:before, .p-product-detail__point-recommend-2 ul li:before {
  top: 2px;
  left: 4px;
  position: absolute;
  margin-right: 6px;
  transform: scale(0.6);
  content: url(../images/icon-free-w.svg);
}
.p-product-detail__faq {
  max-width: 520px;
  margin: 70px auto;
  padding: 0;
}
@media (max-width: 768px) {
  .p-product-detail__faq {
    margin: 35px auto;
    width: 92%;
  }
}
.p-product-detail__faq h3 {
  font-size: 16px;
  text-align: center;
  color: var(--c-darkblue);
  font-family: var(--f-family-en);
  margin-bottom: 2rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-product-detail__faq h3 {
    font-size: 14px;
    margin-bottom: 1rem;
  }
}
.p-product-detail__faq dl dt {
  border-top: 1px dotted #707070;
  font-weight: 600;
  padding: 1.5rem 30px;
  position: relative;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .p-product-detail__faq dl dt {
    font-size: 14px;
    margin-bottom: 1rem;
  }
}
.p-product-detail__faq dl dt:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 15px;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  background: url(../images/icon-faq.svg) center center no-repeat;
  background-size: contain;
  display: block;
  transition: all 0.2s;
}
.p-product-detail__faq dl dt.is-open:after {
  transform: rotate(180deg);
  transition: all 0.2s;
}
.p-product-detail__faq dl dd {
  border-bottom: 1px dotted #707070;
  display: none;
  padding: 1rem 30px 2rem;
  font-size: 1.3rem;
  color: #555;
  transition: all 0.5s;
}
@media (max-width: 768px) {
  .p-product-detail__faq dl dd {
    font-size: 14px;
  }
}
.p-product-detail__faq dl dt.is-open + dd {
  display: block;
  transition: all 0.5s;
}
.p-product-detail .p-notice {
  max-width: 520px;
  margin: 60px auto;
  font-size: 12px;
}
@media (max-width: 768px) {
  .p-product-detail .p-notice {
    width: 92%;
    margin-bottom: 0;
  }
}
.p-product-detail .p-notice h3 {
  color: #091F73;
  margin-bottom: 32px;
  font-size: 16px;
  text-align: center;
}
.p-product-detail .p-label-ul {
  display: flex;
  gap: 18px;
}
@media (max-width: 768px) {
  .p-product-detail .p-label-ul {
    flex-direction: column;
    gap: 0;
  }
}
.p-product-detail .p-label-ul li {
  color: #012489;
  font-weight: bold;
  border: 1px solid #012489;
  border-radius: 30px;
  padding: 3px 24px;
  font-size: 14px;
  margin-bottom: 10px;
}
.p-product-detail .t-h4-title {
  color: #012489;
  font-weight: bold;
  border: 1px solid #012489;
  border-radius: 30px;
  padding: 3px 24px;
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
}
.p-product-detail .c-flex {
  display: flex;
  gap: 20px;
  font-size: 12px;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .p-product-detail .c-flex {
    flex-direction: column;
  }
}
.p-product-detail .c-flex img {
  width: 150px;
  min-width: 150px;
  height: 150px;
}
@media (max-width: 768px) {
  .p-product-detail .c-flex img {
    width: 100px;
    min-width: 100px;
    height: 100px;
  }
}
.p-product-detail .c-flex h4 {
  font-size: 18px;
  color: #012489;
}
.p-product-detail .c-flex .t-h4-title {
  font-size: 14px;
}
.p-product-detail .c-flex .p-notice2 {
  font-size: 16px;
}
.p-product-detail p.p-attention2 {
  margin-bottom: 20px;
  font-size: 10px;
}
.p-product-detail .p-point-box3 {
  color: #fff;
  display: block;
  border-radius: 20px;
  padding: 10px 20px 10px 48px;
  margin-bottom: 20px;
  display: inline-block;
  font-size: 20px;
  background: #012489 url(../images/icon-free-w.svg) left center no-repeat;
  background-position: left 6px center;
}
.p-product-detail .p-point-box3.p-point-box3-2 {
  margin-bottom: 5px;
}
.p-product-detail .p-point-box3.p-point-box3-2 + li {
  margin-bottom: 20px;
}
.p-product-detail .p-point-box3.p-point-box3-2 + li strong {
  position: relative;
}
.p-product-detail .p-point-box3.p-point-box3-2 + li strong:before {
  position: absolute;
  top: -8px;
  left: 0;
  display: block;
  font-size: 8px;
  font-weight: 300;
}
.p-product-detail .p-point-box3.p-point-box3-2 + li strong.c-at8:before {
  content: "※8";
}
.p-product-detail .p-point-box3.p-point-box3-2 + li strong.c-at9:before {
  content: "※9";
}
.p-product-detail .p-point-box3 strong {
  position: relative;
}
.p-product-detail .p-point-box3 strong:before {
  position: absolute;
  top: -8px;
  left: 0;
  display: block;
  font-size: 8px;
  font-weight: 300;
}
.p-product-detail .p-point-box3 strong.c-at8:before {
  content: "※8";
}
.p-product-detail .p-point-box3 strong.c-at9:before {
  content: "※9";
}
.p-product-detail .c-flex2 {
  position: relative;
}
.p-product-detail .c-flex2 img {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  .p-product-detail .c-flex2 img {
    position: static;
    display: none;
  }
}
.p-product-detail .p-point-box4-count {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .p-product-detail .p-point-box4-count {
    gap: 20px;
    flex-direction: column;
  }
}
.p-product-detail .p-point-box4-count .p-point-box4-3 {
  margin-bottom: 0;
  font-size: 12px;
  width: calc(50% - 20px);
  background: #5967AB url(../images/bg-babble.png) top right no-repeat;
  background-position: top 5px right 5px;
}
@media (max-width: 768px) {
  .p-product-detail .p-point-box4-count .p-point-box4-3 {
    width: 100%;
  }
}
.p-product-detail .p-point-box4-count .p-point-box4-3 h4 {
  font-size: 14px;
  border-bottom: 1px solid #fff;
  padding-bottom: 6px;
  margin-bottom: 6px;
}
.p-product-detail .p-point-box4 {
  background-color: #445695;
  color: #fff;
  padding: 15px;
  font-size: 12px;
  margin-bottom: 20px;
  border-radius: 9px;
}
.p-product-detail .p-point-box4 h3 {
  padding-bottom: 6px;
  margin-bottom: 12px;
  font-size: 18px;
  border-bottom: 1px solid #fff;
}
.p-product-detail .p-point-box4 strong {
  font-weight: 600;
  top: 0 !important;
  font-size: 100%;
}
.p-product-detail .p-point-box4 strong {
  position: relative;
  font-weight: 500;
}
.p-product-detail .p-point-box4 strong:before {
  position: absolute;
  top: -8px;
  left: 0;
  display: block;
  font-size: 8px;
  font-weight: 300;
}
.p-product-detail .p-point-box4 strong.c-at3:before {
  content: "※3";
}
.p-product-detail .p-point-box4 strong.c-at5:before {
  content: "※5";
}

/* Product Hotspots (Clickable Image Map) */
.p-product-hotspots,
.p-product-hotspots-sp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.p-product-hotspot,
.p-product-hotspot-sp {
  position: absolute;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.p-product-hotspot .sr-only,
.p-product-hotspot-sp .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.p-product-detail__recommend-item {
  position: relative;
  display: inline-block;
  width: 100%;
}

.p-product-detail__recommend-item img {
  display: block;
  width: 100%;
  height: auto;
}

.p-product-detail__fv {
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}
.p-product-detail__fv-main {
  position: relative;
  width: 100%;
  height: 570px;
  border: 1px solid var(--c-darkblue);
}
.p-product-detail__fv-main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.p-product-detail__fv-main img.is-active {
  opacity: 1;
  z-index: 2;
}
.p-product-detail__fv-sub {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.p-product-detail__fv-sub img {
  width: 106px;
  height: 106px;
  object-fit: cover;
  border: 1px solid transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .p-product-detail__fv-sub img {
    width: 22vw;
    height: 22vw;
  }
}
.p-product-detail__fv-sub img:hover {
  opacity: 1;
  transform: scale(1.03);
}
.p-product-detail__fv-sub img.is-active {
  border-color: #000;
  opacity: 1;
}
@media (max-width: 768px) {
  .p-product-detail__fv-main {
    height: 360px;
  }
  .p-product-detail__fv-sub img {
    width: 80px;
    height: 80px;
  }
}

.p-product-detail__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  position: relative;
  max-width: var(--pc-max-width2-2);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .p-product-detail__wrapper {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .p-product-detail__wrapper {
    gap: 30px;
    flex-direction: column;
  }
}

.p-product-detail__fv-left {
  position: sticky;
  top: 80px;
  flex: 0 0 50%;
  max-width: 472px;
  width: 100%;
  min-height: calc(100vh - 80px);
}
@media (max-width: 1024px) {
  .p-product-detail__fv-left {
    transform: scale(0.8);
    top: 0;
  }
}
@media (max-width: 768px) {
  .p-product-detail__fv-left {
    transform: scale(1);
    width: 100%;
    min-height: unset;
    margin-top: 0;
    top: 80px;
  }
}

.p-product-box {
  border-radius: 5px;
  padding: 8px;
  margin: 24px auto 44px;
  border: 1px solid #012489;
}
.p-product-box:last-of-type {
  margin-bottom: 0;
}
.p-product-box h4 {
  background-color: #012489;
  color: #fff;
  position: relative;
  text-align: center;
  border-radius: 4px;
  width: 210px;
  padding: 6px;
  display: inline-block;
  margin: 0 auto 0 20px;
  transform: translateY(-24px);
}
.p-product-box h4 span {
  position: relative;
}
.p-product-box h4 span:before {
  position: absolute;
  top: -8px;
  left: 0;
  display: block;
  font-size: 8px;
  font-weight: 300;
}
.p-product-box h4 span.c-at3:before {
  content: "※3";
}
.p-product-box h4 span.c-at7:before {
  content: "※7";
}
.p-product-box ul {
  text-align: center;
  padding-bottom: 24px;
  gap: 10px;
  display: grid;
}
.p-product-box ul li {
  display: block;
  color: #012489;
}
.p-product-box ul li:before {
  content: "・";
}
.p-product-box strong {
  position: relative;
  font-weight: 600;
}
.p-product-box strong:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  display: block;
  font-size: 7.5px;
}
.p-product-box strong.c-at2:before {
  content: "※2";
}

.p-product-detail__right {
  flex: 0 0 50%;
  position: relative;
  margin-top: 80px;
  padding-bottom: 84px;
}
@media (max-width: 768px) {
  .p-product-detail__right {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .p-product-detail__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .p-product-detail__fv-left,
  .p-product-detail__right {
    flex: 1 1 100%;
    position: static;
    padding-left: 32px;
    padding-right: 32px;
  }
}
.p-product-hotspots,
.p-product-hotspots-sp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.p-product-hotspot,
.p-product-hotspot-sp {
  position: absolute;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}
.p-product-hotspot .sr-only,
.p-product-hotspot-sp .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.p-product-hotspot:hover,
.p-product-hotspot-sp:hover {
  background-color: rgba(1, 36, 137, 0.1);
  border-radius: 8px;
  z-index: 20;
}
.p-product-hotspot:active,
.p-product-hotspot-sp:active {
  background-color: rgba(1, 36, 137, 0.15);
}

.p-product-detail__recommend-item {
  position: relative;
  display: inline-block;
  width: 100%;
}
.p-product-detail__recommend-item img {
  display: block;
  width: 100%;
  height: auto;
}

.p-lelated-links {
  max-width: var(--pc-max-width3);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 40px;
  padding-top: 80px;
}
@media (max-width: 768px) {
  .p-lelated-links {
    padding-top: 150px;
    flex-direction: column;
  }
}
.p-lelated-links.-itemr {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .p-lelated-links.-itemr {
    flex-direction: column;
  }
}
.p-lelated-links.-itemn {
  max-width: 1028px;
  padding-top: 300px;
}
.p-lelated-links .p-lelated-links__item1, .p-lelated-links .p-lelated-links__item2 {
  position: relative;
}
.p-lelated-links .p-lelated-links__item1 .p-txt span.p-titile-l, .p-lelated-links .p-lelated-links__item2 .p-txt span.p-titile-l {
  letter-spacing: 0.1em;
  font-size: 22px;
  font-family: var(--f-family-en);
  display: block;
  font-weight: 500;
  font-size: 22px;
  text-transform: uppercase;
}
.p-lelated-links .p-lelated-links__item1 .c-link-btn-wrapper, .p-lelated-links .p-lelated-links__item2 .c-link-btn-wrapper {
  text-align: left;
}
.p-lelated-links .p-lelated-links__item1 a.c-link-btn1, .p-lelated-links .p-lelated-links__item2 a.c-link-btn1 {
  color: #fff !important;
  text-align: left;
  margin-top: 12px;
  background: url(../images/icon-btn-arrow03-w.svg) center right no-repeat;
  background-position: center right 30px;
  padding: 20px 120px 20px 0;
}
.p-lelated-links .p-lelated-links__item1 a.c-link-btn1:before, .p-lelated-links .p-lelated-links__item2 a.c-link-btn1:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: url(../images/icon-btn-arrow3-w.svg) center right no-repeat;
  display: block;
}
.p-lelated-links .p-lelated-links__item1 a.c-link-btn1:after, .p-lelated-links .p-lelated-links__item2 a.c-link-btn1:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg-arrow-line-w.svg) center right no-repeat;
  background-position: center right 50px;
  transition: all 0.5s;
}
.p-lelated-links .p-lelated-links__item1 a.c-link-btn1:hover, .p-lelated-links .p-lelated-links__item2 a.c-link-btn1:hover {
  opacity: 0.5;
  transition: all 0.5s;
}
.p-lelated-links .p-lelated-links__item1 a.c-link-btn1:hover:after, .p-lelated-links .p-lelated-links__item2 a.c-link-btn1:hover:after {
  background-position: center right 42px;
  transition: all 0.5s;
}
.p-lelated-links .p-lelated-links__item1 .p-txt {
  position: absolute;
  bottom: 16px;
  right: 24px;
  z-index: 10;
  color: #fff !important;
  font-family: var(--f-family-en);
}
.p-lelated-links .p-lelated-links__item1 .p-txt span {
  font-size: 12px;
  font-family: var(--f-family-main);
}
.p-lelated-links .p-lelated-links__item2 .p-txt {
  position: absolute;
  top: 60px;
  left: 35px;
  color: #fff !important;
  font-size: 14px;
  z-index: 10;
}
.p-lelated-links .p-lelated-links__item2 .p-txt .p-titile-l:before {
  content: "/";
  padding-right: 0.5em;
}
.p-lelated-links .p-lelated-links__item3 .p-txt {
  position: absolute;
  top: 30px;
  left: unset;
  right: 35px;
  text-transform: uppercase;
  color: #fff !important;
  font-size: 14px;
  z-index: 10;
}
.p-lelated-links .p-lelated-links__item3 .p-txt span.p-titile-l {
  letter-spacing: 0.1em;
  font-size: 22px;
  font-family: var(--f-family-en);
}
.p-lelated-links .p-lelated-links__item3 .p-txt span.p-titile-l:before {
  content: none;
}
.p-lelated-links .p-lelated-links__item4 .p-txt {
  position: absolute;
  top: unset;
  bottom: 20px;
  left: 20px;
}

.p-news-aside .p-lelated-links:last-of-type {
  padding-top: 40px;
}
.p-news-aside .p-lelated-links:last-of-type .p-lelated-links__item1 {
  padding-left: 234px;
}
@media (max-width: 768px) {
  .p-news-aside .p-lelated-links:last-of-type .p-lelated-links__item1 {
    padding-left: 0;
  }
}

.p-partners-locallist {
  margin: 0 auto;
  max-width: var(--pc-max-width3);
}
@media (max-width: 768px) {
  .p-partners-locallist {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.p-partners-locallist h2 {
  font-size: 20px;
  position: relative;
  margin-bottom: 40px;
  margin-top: 150px;
}
.p-partners-locallist h2:after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 100%;
  z-index: -1;
  height: 1px;
  background-color: var(--c-black2);
}
.p-partners-locallist h2 span {
  display: inline-block;
  background-color: #fff;
  padding: 0 20px 0 0;
}
.p-partners-locallist h3 {
  font-size: 13px;
  font-weight: 500;
  margin-top:80pox;
}
.p-partners-locallist h3 span {
  font-size: 20px;
  margin-right: 16px;
  font-family: var(--f-family-en);
}
.p-partners-locallist h3:before {
  font-size: 20px;
  content: "/ ";
}
.p-partners-locallist .c-link-a {
  position: relative;
  top: -120px;
}
.p-partners-locallist .p-partners-locallist-item {
  margin: 30px 0;
  border-top: #707070 dashed 1px;
}
.p-partners-locallist article.clinic {
  width: 100%;
  display: flex;
  padding: 30px 0;
  position: relative;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .p-partners-locallist article.clinic {
    flex-direction: column;
    padding: 15px 0;
  }
}
.p-partners-locallist article.clinic > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.p-partners-locallist article.clinic > a:hover {
  color: #666;
}
.p-partners-locallist article.clinic > a:hover + .p-partner-list-txt h4::after {
  width: 100%;
}
.p-partners-locallist article.clinic .p-partner-list-txt {
  gap: 24px;
  font-size: 14px;
  width: 75%;
  font-weight: 500;
  position: relative;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .p-partners-locallist article.clinic .p-partner-list-txt {
    width: 100%;
    flex-direction: column;
  }
}
.p-partners-locallist article.clinic .p-partner-list-txt .c-catch-award {
  background: url(../images/partners/icon-award.png) left top no-repeat;
  padding-left: 30px;
  background-size: 16px;
  font-size: 12px;
  z-index: -1;
  display: block;
  margin-bottom: 10px;
}
.p-partners-locallist article.clinic .p-partner-list-txt > div {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
}
.p-partners-locallist article.clinic .p-partner-list-txt h4 {
  font-size: 14px;
  display: inline;
  position: relative;
  min-width: 10rem;
  font-family: var(--f-family-en);
}
@media (max-width: 768px) {
  .p-partners-locallist article.clinic .p-partner-list-txt h4 {
    padding-bottom: 0.5rem;
  }
}
.p-partners-locallist article.clinic .p-partner-list-txt h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #333;
  transition: width 0.3s ease;
}
@media (max-width: 768px) {
  .p-partners-locallist article.clinic .p-partner-list-txt h4::after {
    content: none;
  }
}
.p-partners-locallist article.clinic .p-partner-list-txt h4 span {
  top: 1.8rem;
  font-family: var(--f-family-main);
  display: block;
  position: absolute;
}
@media (max-width: 768px) {
  .p-partners-locallist article.clinic .p-partner-list-txt h4 span {
    top: 1.2rem;
  }
}
.p-partners-locallist article.clinic .p-partner-list-txt .c-link-btn-wrapper {
  margin-left: 0;
  text-align: left;
  z-index: 10;
  position: relative;
}
.p-partners-locallist article.clinic .p-partner-list-txt .c-link-btn-wrapper a {
  margin-top: 16px;
}
.p-partners-locallist article.clinic .p-partner-list-txt .c-link-btn-wrapper a:hover {
  opacity: 0.6;
}

.partners-list ul {
  display: flex;
  justify-content: center;
  gap: 60px;
}
@media (max-width: 768px) {
  .partners-list ul {
    padding-left: 40px;
    padding-right: 40px;
    gap: 20px;
    flex-direction: column;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.partners-list ul a {
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  display: block;
  padding-right: 40px;
  background: url(../images/partners/icon-arrow-nav.svg) center right no-repeat;
  background-size: 10px auto;
}
.partners-list ul a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #333;
  transition: width 0.3s ease;
}
@media (max-width: 768px) {
  .partners-list ul a::after {
    content: none;
  }
}
.partners-list ul a:hover {
  color: #666;
}
.partners-list ul a:hover h4::after {
  width: 100%;
}

.p-about__headfv {
  padding: 210px 40px 135px;
}
@media (max-width: 768px) {
  .p-about__headfv {
    padding: 100px 40px;
  }
}
.p-about__headfv .copy {
  font-size: 25px;
  text-align: center;
  font-weight: 400;
}
@media (max-width: 768px) {
  .p-about__headfv .copy {
    font-size: 18px;
  }
}
.p-about__headfv p {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  font-family: var(--f-family-en);
}
@media (max-width: 768px) {
  .p-about__headfv p {
    font-size: 16px;
  }
}

.p-story, .p-reason {
  max-width: var(--pc-max-width5);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 200px;
}
@media (max-width: 768px) {
  .p-story, .p-reason {
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 100px;
  }
}
.p-story .p-story__title, .p-reason .p-story__title {
  font-family: var(--f-family-en);
  font-size: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .p-story .p-story__title, .p-reason .p-story__title {
    font-size: 18px;
  }
}
.p-story .p-story__title:before, .p-reason .p-story__title:before {
  content: "/ ";
}
.p-story .p-story__text, .p-reason .p-story__text {
  font-size: 13px;
  line-height: 2.5;
}

.p-story1 {
  position: relative;
}
@media (max-width: 768px) {
  .p-story1 {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
.p-story1 .p-story__img {
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .p-story1 .p-story__img img {
    object-fit: cover;
    width: 150%;
    max-width: unset;
    position: relative;
    left: -25%;
    z-index: -1;
  }
}
.p-story1 .p-story__block {
  position: absolute;
  color: #fff;
  padding: 34px;
  bottom: 0;
  left: 0;
}
@media (max-width: 1200px) {
  .p-story1 .p-story__block {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .p-story1 .p-story__block {
    padding: 34px;
  }
}

.p-story2 {
  max-width: 480px;
}

.p-story__block-flex {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .p-story__block-flex {
    flex-direction: column;
    gap: 20px;
  }
}
.p-story__block-flex img {
  width: 160px;
}
@media (max-width: 768px) {
  .p-story__block-flex img {
    width: 100%;
    max-width: 120px;
  }
}

.p-reason .p-reason__title {
  text-align: center;
  font-size: 13px;
  margin-bottom: 120px;
  font-weight: 400;
}
.p-reason .p-reason__title span {
  font-weight: 600;
  display: block;
  font-family: var(--f-family-en);
  font-size: 20px;
}
.p-reason .p-reason__title span:before {
  content: "/ ";
}
.p-reason .p-reason__list {
  display: grid;
  gap: 64px;
}
.p-reason .p-reason__list .p-reason__list-item {
  display: flex;
  gap: 36px;
  align-items: center;
}
@media (max-width: 768px) {
  .p-reason .p-reason__list .p-reason__list-item {
    flex-direction: column;
  }
}
.p-reason .p-reason__list .p-reason__list-item span {
  display: block;
}
.p-reason .p-reason__list .p-reason__list-item img {
  width: 267px;
  height: auto;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .p-reason .p-reason__list .p-reason__list-item img {
    width: 100%;
    max-width: unset;
  }
}
@media (max-width: 768px) {
  .p-reason .p-reason__list .p-reason__list-item p {
    width: 100%;
  }
}
.p-reason .p-reason__list .p-reason__list-item p:last-of-type {
  font-size: 14px;
  line-height: 2;
  width: calc(100% - 310px);
}
@media (max-width: 768px) {
  .p-reason .p-reason__list .p-reason__list-item p:last-of-type {
    width: 100%;
  }
}

.p-fv__content-notice {
  padding: 125px 0 157px;
  position: relative;
}
@media (max-width: 768px) {
  .p-fv__content-notice {
    padding: 110px 0 80px;
  }
}

.p-contact__container > p {
  text-align: center;
  font-size: 16px;
  max-width: 660px;
  margin: 0 auto 150px;
}
.p-contact__container > p span {
  display: block;
  font-size: 14px;
  margin-top: 60px;
  margin-bottom: 120px;
}

.p-no2-contact {
  font-size: 14px;
}
.p-no2-contact form {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.p-no2-contact .wpcf7-form.init {
  display: grid;
  gap: 46px;
}
.p-no2-contact .wpcf7-form.init p {
  margin: 0 auto 40px;
}
.p-no2-contact .wpcf7-form.init p:last-of-type {
  text-align: center;
}
.p-no2-contact select, .p-no2-contact input[type=text], .p-no2-contact input[type=tel], .p-no2-contact input[type=email], .p-no2-contact textarea {
  margin-top: 8px;
  border: #707070 solid 1px;
  height: 40px;
  width: 100%;
  padding: 4px;
  font-size: 16px;
}
.p-no2-contact textarea {
  height: unset;
}
.p-no2-contact #submit-btn {
  background-color: #D0D0D0;
  color: #fff;
  width: 240px;
  height: 60px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin: 100px auto 0px;
}
.p-no2-contact .pp-check {
  text-align: center;
  margin-bottom: 15px;
}
.p-no2-contact .pp-check label:before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background-color: #D0D0D0;
  border-radius: 50%;
}
.p-no2-contact .pp-check label:has(input[type=checkbox]:checked):before {
  background-color: transparent;
  background: url(../images/contact/check.png) left center no-repeat;
  width: 28px;
  height: 20px;
  display: block;
  border-radius: 0;
}

.p-no2-notice p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.p-privacy-box p, .p-privacy-box ul {
  margin-bottom: 0;
  font-size: 14px;
}
.p-privacy-box li {
  text-indent: 40px;
}
.p-privacy-box li:before {
  content: "・";
  font-size: 11px;
  margin-right: 40px;
}
.p-privacy-box .mb-1 {
  margin-bottom: 40px;
}

.u-pc-hidden {
  display: none !important;
}
@media (max-width: 768px) {
  .u-pc-hidden {
    display: block !important;
  }
}

.u-sm-hidden {
  display: none;
}
@media (max-width: 450px) {
  .u-sm-hidden {
    display: initial;
  }
}

.u-xl-hidden {
  display: none;
}
@media (max-width: 1200px) {
  .u-xl-hidden {
    display: initial;
  }
}

.u-sp-hidden {
  display: initial;
}
@media (max-width: 768px) {
  .u-sp-hidden {
    display: none !important;
  }
}

.u-space-contact {
  margin-top: 8.5714285714rem;
}
@media (max-width: 768px) {
  .u-space-contact {
    margin-top: 11.4285714286rem;
  }
}/*# sourceMappingURL=style.css.map */

/* privacy-check のエラーだけ、元の文言を隠す */
.wpcf7-form-control-wrap[data-name="privacy-check"] .wpcf7-not-valid-tip {
  font-size: 0;         /* 文字を見えなくする */
  line-height: 0;
}

/* 代わりの文言を表示 */
.wpcf7-form-control-wrap[data-name="privacy-check"] .wpcf7-not-valid-tip::before {
  content: "個人情報の取り扱いに同意してください。";
  font-size: 14px;      /* 好みで調整 */
  line-height: 1.6;
  display: inline-block;
}

.wpcf7-list-item label {
  display: inline-flex;
  align-items: center;   /* ← 縦中央に揃える */
  gap: 8px;              /* チェックと文字の間隔 */
}

.p-product-detail__ingredients-chart .vitamin-chart {
  position: relative;
  text-align: center; 
}

.p-product-detail__ingredients-chart .vitamin-chart img {
  display: block;
  margin: 0 auto;      
  max-width: 100%;     
  height: auto;
}

.p-product-detail__ingredients-chart .vitamin-chart p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  margin: 0;

  display: flex;
  align-items: center;
  justify-content: center; 
  width: auto;             
  height: auto;

  padding-left: 0;         
  text-align: center;

  color: #001962;
  font-weight: bold;
}

.c-link-btn-wrapper a.c-link-btn2:after {
    content: url(../images/icon-btn-arrow1.svg);
    display: inline-block;        
    margin-left: 18px;
    margin-bottom: 4px;
    transition: transform 0.3s ease;  /* ← アニメーション追加 */
}

/* ホバー時 */
.c-link-btn-wrapper a.c-link-btn2:hover:after {
    transform: translateX(5px);   /* ← 右に5px動く */
}

.l-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* スクロール後に付与するクラス */
.l-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.9);  /* 少し透ける白 */

}

.privacy-policy-box {
    margin-top: 150px !important;
	margin-bottom: 50px !important;
}

.pp-check > p {
  margin-bottom: 0 !important;
}

#submit-btn-container > p {
  margin-bottom: 0 !important;
}


section#news-title {
    margin: 30px auto 200px;
}

.p-partner-list-img {
  width: 180px;
  height: 120px;
}

.p-partner-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {

  .clinic {
    flex-direction: column;
  }

  .p-partner-list-txt > div {
    display: flex;
    flex-direction: column;
  }

  .c-link-btn-wrapper {
    margin-top: 12px;
  }
  .p-partners-locallist article.clinic .p-partner-list-txt > div {
    gap: 0;
  }

}

h2.p-product__title.sa {
    font-size: 2.1rem;
}

p.p-product__subtitle.sa {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
   h2.p-product__title.sa {
        font-size: 1.4rem;
    }
}

@media (max-width: 383px) {
    p.p-product__subtitle.sa {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 375px) {
  .c-link-btn-wrapper a.c-link-btn1 {
    font-size: 10px;
  }
}

@media (max-width: 450px) {
  .award-text {
    font-size: 10px !important;
  }
}