@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

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

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 320px) {
  html {
    font-size: 5vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Serif JP";
  font-weight: 400;
  color: #231f20;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}

.footer {
  padding: 2.8125rem 0;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 1.875rem 0 1.25rem;
  }
}

.footer__inner {
  margin: auto;
  padding: 0 0.9375rem;
  max-width: 39.375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 0 1.5625rem;
    max-width: 78.125rem;
  }
}

.footer__logo {
  text-align: center;
  margin-bottom: 1.875rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.footer__logo a {
  display: block;
  padding: 0.625rem 0;
}
@media screen and (min-width: 768px) {
  .footer__logo a {
    padding: 0.9375rem 0;
  }
}
.footer__logo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__divider {
  width: 100%;
  height: 1px;
  background-color: #333;
  margin-bottom: 1.875rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    gap: 2.5rem;
    justify-content: space-between;
  }
}

.footer__copyright {
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 0rem;
  }
}
.footer__copyright span {
  text-transform: uppercase;
}

.footer__nav-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .footer__nav-items {
    gap: 1.5625rem;
  }
}

.footer__nav-item a {
  font-size: 0.875rem;
  line-height: 1;
  text-align: center;
  color: #000;
  text-decoration: none;
}

.footer__buttons {
  display: flex;
  gap: 0.625rem;
}

.footer__btn {
  display: inline-block;
  padding: 0.5rem 0.9375rem;
  font-size: clamp(10px, 1.2vw, 14px);
  text-decoration: none;
  text-align: center;
  border-radius: 0.125rem;
  border: 1px solid #1a1919;
  transition: 0.3s ease;
  white-space: nowrap;
}
.footer__btn--border {
  background: #fff;
  color: #000;
}
.footer__btn--fill {
  background: #1a1919;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer__btn {
    padding: 0.875rem 1.5rem;
  }
}

.footer__logo a {
  width: 12.5rem;
  margin: 0 auto;
}

.l-header__common {
  background: #828487;
  position: relative;
}
.l-header__common::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 85%;
  height: 1px;
  background-color: #fff;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .l-header__common::after {
    width: 90%;
  }
}
@media screen and (min-width: 1000px) {
  .l-header__common::after {
    display: none;
  }
}

@media (min-width: 1200px) {
  .l-header__innerCommon {
    justify-content: space-between !important;
  }
}
.l-header__hamburger span {
  background-color: #fff !important;
}

.l-headerCommon__drawer {
  top: 60px !important;
}
@media screen and (min-width: 768px) {
  .l-headerCommon__drawer {
    top: 99px !important;
  }
}

.l-header__bgWave {
  z-index: 1;
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-header__bgWave {
    top: -20px;
  }
}
@media screen and (min-width: 1000px) {
  .l-header__bgWave {
    top: -140px;
  }
}
@media screen and (min-width: 1440px) {
  .l-header__bgWave {
    top: -190px;
  }
}

.l-header__nav-itemsCommon a {
  color: #fff;
}

.l-commonBox {
  background: #fff !important;
  color: #828487 !important;
  border: 2px solid transparent;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (min-width: 1000px) {
  .l-commonBox:hover {
    border: 2px solid #fff !important;
    background: #828487 !important;
    color: #fff !important;
  }
}

.l-header {
  height: 60px;
  padding: 10px 14px 0px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* ヘッダーが他の要素の上に表示されるようにするため */
  transition: opacity 0.5s ease; /* スムーズなトランジションを追加 */
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 98px;
    padding-top: 32px;
    padding-inline: 60px;
  }
}
@media screen and (min-width: 1000px) {
  .l-header {
    width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .l-header {
    padding-top: 30px;
    padding-inline: 96px 65px;
  }
}

.l-header.scrolled {
  opacity: 0.5;
}

.l-header__inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1440px) {
  .l-header__inner {
    height: 100px;
    gap: 18.3125rem;
  }
}

.l-header__logo {
  font-size: 1.25rem;
  max-width: 2.1875rem;
  width: 100%;
  line-height: 0.8;
  position: relative;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    font-size: 2.375rem;
    max-width: 6.25rem;
    line-height: 1;
  }
}
@media screen and (min-width: 1000px) {
  .l-header__logo {
    line-height: 0.8;
    margin-top: 10px;
  }
}

.l-header__logo a {
  font-family: "Noto Sans JP", sans-serif;
  color: #828487;
  width: 40px;
  height: 36px;
  font-style: italic;
  display: flex;
  align-items: center;
  letter-spacing: -1px;
}
@media screen and (min-width: 1000px) {
  .l-header__logo a {
    width: 100px;
  }
}
@media screen and (min-width: 1440px) {
  .l-header__logo a {
    letter-spacing: -1px;
    line-height: 28.3px;
  }
}

.small-text {
  font-size: 0.6em; /* 適切なサイズに調整してください */
  display: contents;
}

.l-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 1000px) {
  .l-header__nav {
    display: block;
    min-width: 720px;
  }
}
@media screen and (min-width: 1440px) {
  .l-header__nav {
    min-width: 820px;
  }
}

.l-header__nav-items {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1000px) {
  .l-header__nav-items {
    gap: 1.25rem;
  }
}
.l-header__nav-item {
  height: inherit;
  transition: all 0.3s ease;
}
.l-header__nav-item:hover {
  opacity: 0.8;
}

.l-header__navBox {
  justify-content: space-between;
  align-items: center;
  display: flex;
  color: #fff;
  padding: 0.9375rem 1.875rem 0.9375rem 1.875rem;
  border-radius: 100px;
  background: #828487;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
@media screen and (min-width: 768px) {
  .l-header__navBox {
    font-size: 16px;
    padding-left: 3.125rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-header__navBox {
    padding: 1.25rem 1.875rem 1.25rem 1.875rem;
  }
  .l-header__navBox:hover {
    background: #fff;
    border: 2px solid #828487;
  }
}
@media screen and (min-width: 1000px) and (min-width: 1440px) {
  .l-header__navBox {
    margin-left: 20px;
    font-size: 18px;
  }
}
@media screen and (min-width: 1000px) {
  .l-header__navBox:hover:hover {
    color: #828487;
  }
}

.l-header__navBox a {
  color: #fff;
}
.box__contact {
  padding: 23px 46px;
  background: #9f9f9f;
  color: #fff;
  margin-left: 4px;
}
.box__contact:hover {
  background: #ffffff;
}

.l-header__nav-item a {
  height: inherit;
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .l-header__nav-item a {
    line-height: 1.125rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-header__nav-item a {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440px) {
  .l-header__nav-item a {
    font-size: 18px;
  }
}

.l-header__nav-item.p-header__nav-item--contact a {
  padding: 24px 32px;
  position: relative;
  color: #fff;
  background-color: #9f9f9f;
}

.l-header__hamburger {
  background-color: transparent;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.5rem;
  height: inherit;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 3px;
}
@media screen and (min-width: 1000px) {
  .l-header__hamburger {
    display: none;
  }
}

.l-header__hamburger.is-open {
  background-color: transparent;
}

.l-header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.6875rem;
  height: 2px;
  background-color: #828487;
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .l-header__hamburger span {
    width: 2.5rem;
    height: 3px;
  }
}

.l-header__hamburger span:nth-of-type(1) {
  top: -0.375rem;
}
@media screen and (min-width: 768px) {
  .l-header__hamburger span:nth-of-type(1) {
    top: -0.625rem;
  }
}

.l-header__hamburger span:nth-of-type(2) {
  top: 0;
}

.l-header__hamburger span:nth-of-type(3) {
  top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .l-header__hamburger span:nth-of-type(3) {
    top: 0.625rem;
  }
}

.l-header__hamburger.is-open span:nth-of-type(1) {
  top: 3px;
  transform: translateX(-50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .l-header__hamburger.is-open span:nth-of-type(1) {
    top: 5px;
  }
}

.l-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.l-header__hamburger.is-open span:nth-of-type(3) {
  top: -1px;
  transform: translateX(-50%) rotate(-45deg);
}

.l-header__drawer {
  padding: 5rem 0;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  background-color: #9f9f9f;
  overflow-y: scroll;
  scrollbar-width: none;
}
@media screen and (min-width: 768px) {
  .l-header__drawer {
    top: 0px;
    height: 105vh;
    padding: 6.25rem 0;
  }
}

.l-header__drawer::-webkit-scrollbar {
  display: none;
}

.l-header__drawer-item:not(:first-child):not(:last-child) {
  margin-top: 60px;
}

.l-header__drawerItem a {
  display: block;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.l-header__drawerItem a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .l-header__drawerItem a {
    font-size: 26px;
  }
}

.l-header__drawer-item--contact,
.l-header__drawer-item--dl {
  max-width: 295px;
  border: 1px solid #fff;
  padding: 24px 78px;
}

.l-header__drawer-item--dl {
  margin: 43px auto;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .l-header__drawer-item--dl {
    margin-top: 48px;
  }
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

.l-header__drawer.open {
  display: block;
}

.gtranslate_wrapper {
  font-size: 14px;
  margin-top: 1.25rem;
  background: transparent;
}
@media screen and (min-width: 768px) {
  .gtranslate_wrapper {
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
  .gtranslate_wrapper {
    margin-top: 0rem;
    margin-left: 1.25rem;
  }
}
.gtranslate_wrapper select {
  background: transparent;
}
@media screen and (min-width: 1000px) {
  .gtranslate_wrapper select {
    font-size: 18px;
  }
}

@media screen and (min-width: 1000px) {
  .gtranslate_footer {
    margin-left: 0;
    margin-top: 15px;
  }
}

.gtranslate_footer select {
  color: #fff;
}

.l-header__nav-item:nth-child(3) {
  width: -moz-max-content;
  width: max-content;
}

.l-inner {
  margin: 0 auto;
  max-width: 540px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 750px;
  }
}
@media screen and (min-width: 1000px) {
  .l-inner {
    max-width: 1100px;
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .l-inner {
    max-width: 1200px;
    padding-inline: 40px;
  }
}

.l-mv__inner {
  padding-inline: 20px;
  margin: 0 auto;
  max-width: 450px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-mv__inner {
    max-width: 550px;
  }
}
@media screen and (min-width: 1000px) {
  .l-mv__inner {
    max-width: 700px;
  }
}

.l-inner__CTA {
  margin: 0 auto;
  max-width: 540px;
  padding-inline: 0.625rem;
}
@media screen and (min-width: 768px) {
  .l-inner__CTA {
    max-width: 850px;
    padding-inline: 1.875rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-inner__CTA {
    max-width: 1000px;
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .l-inner__CTA {
    max-width: 1100px;
    padding-inline: 20px;
  }
}

.l-inner__facility {
  margin: 0 auto;
  max-width: 540px;
  padding-inline: 0.625rem;
}
@media screen and (min-width: 768px) {
  .l-inner__facility {
    max-width: 850px;
    padding-inline: 1.875rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-inner__facility {
    max-width: 950px;
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .l-inner__facility {
    max-width: 1000px;
    padding-inline: 20px;
  }
}

.l-inner_info {
  margin: 0 auto;
  max-width: 540px;
  padding-inline: 0.625rem;
}
@media screen and (min-width: 768px) {
  .l-inner_info {
    max-width: 850px;
    padding-inline: 1.875rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-inner_info {
    max-width: 950px;
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .l-inner_info {
    max-width: 1000px;
    padding-inline: 20px;
  }
}

.l-news__inner {
  margin: 0 auto;
  max-width: 540px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-news__inner {
    max-width: 750px;
  }
}
@media screen and (min-width: 1000px) {
  .l-news__inner {
    max-width: 960px;
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .l-news__inner {
    max-width: 1160px;
    padding-inline: 0px 80px;
  }
}

@media screen and (min-width: 1000px) {
  .l-newsBlog__inner {
    max-width: 830px;
  }
}
@media screen and (min-width: 1440px) {
  .l-newsBlog__inner {
    max-width: 920px;
  }
}

.l-footer__inner {
  margin: 0 auto;
  max-width: 540px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    max-width: 750px;
  }
}
@media screen and (min-width: 1000px) {
  .l-footer__inner {
    max-width: 1000px;
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .l-footer__inner {
    max-width: 1210px;
    padding-inline: 80px 40px;
  }
}

.l-inner__rink {
  margin: 0 auto;
  max-width: 540px;
  text-align: center;
  margin: 0 auto;
  padding-inline: 0.625rem;
}
@media screen and (min-width: 768px) {
  .l-inner__rink {
    max-width: 850px;
    padding-inline: 1.875rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-inner__rink {
    max-width: 1050px;
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .l-inner__rink {
    max-width: 1100px;
    padding-inline: 20px;
  }
}

.c-bgWave {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
  z-index: -1;
}
@media screen and (min-width: 1000px) {
  .c-bgWave {
    top: -240px;
  }
}
@media screen and (min-width: 1440px) {
  .c-bgWave {
    top: -300px;
  }
}

.c-bg img {
  width: 100vw; /* ★ 画面幅に合わせて拡大 */
  height: auto; /* 縦横比を維持 */
  -o-object-fit: cover;
     object-fit: cover; /* ★ 画像の比率を維持しつつ、要素全体をカバー */
  position: absolute;
  top: 0;
  left: 0;
}

.c-bgWave__white {
  top: 50px;
  z-index: 0; /* 背景として後ろに配置 */
}

.c-bgWave__common {
  z-index: 1; /* 背景として後ろに配置 */
  top: 10px;
}
@media screen and (min-width: 1440px) {
  .c-bgWave__common {
    top: -170px;
  }
}

.c-bgWave__position {
  top: -408px;
}
@media screen and (min-width: 768px) {
  .c-bgWave__position {
    top: -470px;
  }
}
@media screen and (min-width: 1000px) {
  .c-bgWave__position {
    top: -650px;
  }
}
@media screen and (min-width: 1440px) {
  .c-bgWave__position {
    top: -860px;
  }
}

.p-philosophy__bgWave {
  top: 170px;
}

.u-highlight {
  display: inline;
  background-image: linear-gradient(to top, #ebc511 50%, transparent 50%);
  background-size: 100% 0.6em;
  background-repeat: no-repeat;
  background-position: bottom;
}

.u-highlight__min {
  background: linear-gradient(to bottom, transparent 80%, #ebc511 20%);
  font-weight: bold;
  padding: 0 4px;
}

.c-btn {
  background-color: #828487;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.625rem 1.25rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.c-button {
  display: inline-block;
  padding: 16px 30px;
  line-height: 1;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 30px;
  align-items: center;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-button {
    margin-right: 20px;
    margin-top: 15px;
  }
}
@media screen and (min-width: 1440px) {
  .c-button {
    margin-top: 11px;
    width: 152px;
    font-size: 16px;
    padding: 15px 24px;
  }
}

.c-button--border {
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  background-color: transparent;
  padding: 15px 20px !important;
}
@media screen and (min-width: 768px) {
  .c-button--border {
    padding: 15px 16px !important;
  }
}
@media screen and (min-width: 1440px) {
  .c-button--border {
    padding: 14px 16px !important;
  }
}

.c-button--border:hover,
.footer__btn--border:hover,
.p-CTA__button:hover {
  background-color: #1a1a1a;
  color: #fff;
  opacity: 1;
}

.c-button--black {
  background-color: #1a1a1a;
  color: #fff;
  border: none;
  padding: 16px 20px !important;
}
@media screen and (min-width: 768px) {
  .c-button--black {
    padding: 15px 16px !important;
  }
}
@media screen and (min-width: 1440px) {
  .c-button--black {
    padding: 15px 24px !important;
  }
}

.c-button--black:hover {
  opacity: 0.85;
}

.header__drawer {
  padding: 8.75rem 0;
  display: none;
  position: absolute;
  z-index: 900;
  top: -60px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  background-color: rgba(130, 132, 135, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
}

.c-service-box__button {
  position: relative;
  display: inline-block;
  color: #9f9f9f;
  margin: 1.875rem auto;
  border: 1px solid #9f9f9f;
  padding-block: 1.25rem;
  padding-left: 1.25rem;
  display: flex;
  justify-content: center;
  width: 17.5rem;
  text-align: left;
  font-size: 1.125rem;
  transition: color 0.3s; /* テキストの色の変化を0.3秒かけて行う */
}
.c-service-box__button p {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-service-box__button {
    width: 28.125rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-service-box__button {
    margin: 49px auto;
    padding: 22px 0px;
    font-size: 16px;
    width: 305px;
  }
}
@media screen and (min-width: 1000px) and (min-width: 768px) {
  .c-service-box__button:hover {
    color: #fff;
    background: #9f9f9f;
  }
}

.c-common__arrow {
  position: absolute;
  left: 50%;
  transition: none;
  opacity: 1;
}

@media screen and (min-width: 1000px) {
  a:hover .c-common__arrow {
    animation: arrowSlideOnce 0.4s ease forwards;
  }
}
@keyframes arrowSlideOnce {
  0% {
    left: 75%;
    opacity: 1;
  }
  100% {
    left: 90%; /* 85% を 90% に変更 */
    opacity: 1;
  }
}
.c-common__arrow {
  position: absolute;
  left: calc(50% + 108px);
  top: 50%;
  transform: translateY(-50%);
  transition: fill 0.3s, left 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-common__arrow {
    left: calc(50% + 58px);
  }
}
@media screen and (min-width: 1000px) {
  .c-common__arrow {
    left: calc(50% + 100px);
  }
}
@media screen and (min-width: 1440px) {
  .c-common__arrow {
    left: calc(50% + 124px);
  }
}

.c-commonService__arrow {
  left: calc(50% + 43px);
}
@media screen and (min-width: 768px) {
  .c-commonService__arrow {
    top: 26px;
    left: calc(50% + 120px);
  }
}
@media screen and (min-width: 1000px) {
  .c-commonService__arrow {
    top: 22px;
    left: calc(50% + 102px);
  }
}
@media screen and (min-width: 1440px) {
  .c-commonService__arrow {
    top: 20px;
    left: calc(50% + 104px);
  }
}

@media screen and (min-width: 1000px) {
  .c-commonNews__arrow {
    left: calc(50% + 76px);
  }
}
@media screen and (min-width: 1440px) {
  .c-commonNews__arrow {
    top: 38px;
    left: calc(50% + 124px);
  }
}

.arrow__alt {
  top: 44px;
}
@media screen and (min-width: 768px) {
  .arrow__alt {
    top: 41px;
  }
}
@media screen and (min-width: 1000px) {
  .arrow__alt {
    top: 23px;
  }
}

.c-heading {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1440px) {
  .c-heading {
    line-height: 1;
  }
}

.c-lead__box {
  text-align: left;
  margin-top: 2.5rem;
  position: relative;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .c-lead__box {
    margin-top: 4.375rem;
    text-align: left;
  }
}
@media screen and (min-width: 1000px) {
  .c-lead__box {
    margin-top: 6.25rem;
  }
}

.c-lead__box::after {
  content: "";
  position: absolute;
  z-index: 10;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #828487 0%, #828487 33.3%, rgba(130, 132, 135, 0.5) 33.3%, rgba(130, 132, 135, 0.5) 100%);
}

.c-lead {
  font-size: clamp(22px, 2.8vw, 40px);
  font-weight: 700;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1000px) {
  .c-lead {
    line-height: 0.75;
  }
}

.c-lead__sub {
  font-size: clamp(10px, 1.6vw, 20px);
  color: #828487;
  margin-top: 1rem;
  line-height: 1;
  font-weight: 400;
}
.c-subHeading {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: #828487;
}
@media screen and (min-width: 768px) {
  .c-subHeading {
    font-size: 14px;
  }
}

.c-titleBox {
  text-align: center !important;
}

.c-title {
  font-size: 1.5rem;
  color: black;
}
@media screen and (min-width: 768px) {
  .c-title {
    color: red;
  }
}
@media screen and (min-width: 1000px) {
  .c-title {
    color: blue;
  }
}
@media screen and (min-width: 1440px) {
  .c-title {
    color: green;
  }
}

.c-space {
  padding-block: 1.875rem 1.875rem;
}
@media screen and (min-width: 1000px) {
  .c-space {
    padding-block: 5rem 5rem;
  }
}

.p-404__header {
  padding-bottom: 0 !important;
}

.p-404 {
  padding: 80px 0;
  text-align: center;
}
.p-404__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-404__title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
}
.p-404__text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #666;
}
.p-404__btn {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .p-404 {
    padding: 60px 0;
  }
  .p-404__title {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  .p-404__text {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .c-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
.p-404__btn {
  position: relative;
  z-index: 10000;
}

.p-member__header {
  text-align: center;
}

.p-member {
  padding-block: 3.75rem;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .p-member {
    padding-block: 9.375rem;
  }
}

.p-member__description {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.7142857143;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", serif;
  text-align: left;
  margin-top: 20px;
}
@media screen and (min-width: 1000px) {
  .p-member__description {
    max-width: 740px;
    display: block;
    margin: 0 auto;
    padding-top: 50px;
  }
}

.p-member__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-member__list {
    flex-direction: row;
    justify-content: center;
  }
}
@media screen and (min-width: 1000px) {
  .p-member__list {
    gap: 8.375rem;
  }
}

.p-member__item {
  text-align: left;
}

.p-member__image {
  width: 188px;
  height: 200px;
  background-color: #ddd; /* 仮の背景 */
  overflow: hidden;
  margin: 0 auto 10px;
}

.p-member__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-member__name,
.p-member__role {
  height: 20px;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", serif;
  line-height: 2.1428571429;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .p-member__role {
    margin-top: 6px;
  }
}

@media screen and (min-width: 768px) {
  .p-caseStudies {
    padding-top: 100px;
  }
}
@media screen and (min-width: 1000px) {
  .p-caseStudies {
    padding-top: 125px;
  }
}
@media screen and (min-width: 1440px) {
  .p-caseStudies {
    padding-top: 146px;
  }
}

.archive-blog__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.p-caseStudies-main {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-caseStudies-main {
    width: 65%;
  }
}
@media screen and (min-width: 1000px) {
  .p-caseStudies-main {
    width: 66%;
  }
}

.archive-blog__sidebar {
  width: 100%;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .archive-blog__sidebar {
    width: 32%;
    margin-top: 0;
  }
}
@media screen and (min-width: 1000px) {
  .archive-blog__sidebar {
    width: 27%;
    margin-top: -57px;
  }
}
@media screen and (min-width: 1440px) {
  .archive-blog__sidebar {
    margin-top: -67px;
  }
}

.archive-blog__sidebar-list {
  padding-bottom: 250px;
}

.p-caseStudies__title {
  margin-top: 2px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 1440px) {
  .p-caseStudies__title {
    font-size: 1.5rem;
    line-height: 32px;
    margin-top: 26px;
  }
}

.p-caseStudies__mv {
  margin-top: 22px;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .p-caseStudies__mv {
    margin-top: 39px;
  }
}

.p-caseStudies__mv img {
  width: 100%;
  height: auto;
}

.p-caseStudies__content {
  margin-top: 20px;
}
.p-caseStudies__content a.p-caseStudies__readmore {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  text-decoration: underline;
}

.p-common__header {
  background-color: #828487;
  color: #fff;
  padding: 3.3125rem 1.1875rem;
  margin-top: -1px;
}
.p-common__header .p-common__inner {
  max-width: 550px;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .p-common__header .p-common__inner {
    max-width: 800px !important;
  }
}
@media screen and (min-width: 1000px) {
  .p-common__header .p-common__inner {
    max-width: 1000px !important;
  }
}
.p-common__header .p-common__title {
  font-size: clamp(22px, 3vw, 40px);
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 1440px) {
  .p-common__header .p-common__title {
    margin-top: 30px;
  }
}
.p-common__header .p-common__subtitle {
  font-size: clamp(14px, 2vw, 18px);
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-header__none {
    display: none;
  }
}

.p-company {
  padding: 0px 20px 50px;
}
@media screen and (min-width: 768px) {
  .p-company {
    padding: 40px 40px 80px;
  }
}
@media screen and (min-width: 1440px) {
  .p-company {
    padding: 100px 80px 60px 100px;
  }
}

.p-company__container {
  padding-block: 3.125rem 3.125rem;
  padding-inline: 0.625rem;
  border-radius: 10px;
  background: #eef6f7;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-company__container {
    padding-block: 5rem 5rem;
    padding-inline: 2.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-company__container {
    padding-inline: 95px;
    padding-block: 100px;
  }
}

.p-company__header {
  text-align: left;
}

.p-company__title {
  font-size: clamp(26px, 5vw, 60px);
  line-height: 1;
  font-weight: 400;
}
@media screen and (min-width: 1440px) {
  .p-company__title {
    line-height: 1;
  }
}

.p-company__info {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-company__info {
    max-width: 800px;
  }
}
@media screen and (min-width: 1440px) {
  .p-company__info {
    max-width: 1210px;
  }
}

.p-company__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #757575;
  margin-top: 30px;
}
@media screen and (min-width: 1440px) {
  .p-company__list {
    margin-top: 5rem;
  }
}

.p-company__item {
  display: flex;
  border-bottom: 1px solid #757575; /* 枠線 */
  padding: 1.25rem 0.625rem;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", serif;
  align-items: baseline;
}
@media screen and (min-width: 1440px) {
  .p-company__item {
    padding-block: 1.875rem 1.5625rem;
  }
}

.p-company__label,
.p-company__value {
  font-weight: 400;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1;
}

.p-company__label {
  flex: 0.4;
}

.p-company__value {
  line-height: 1.7142857143;
  flex: 1;
}
@media screen and (min-width: 1000px) {
  .p-company__value {
    flex: 0.4;
  }
}

/* ==============================
   p-contact セクション
================================ */
.p-contact {
  background: #fff;
  padding-bottom: 5rem;
  padding-inline: 10px;
}

.contact {
  background: rgba(237, 232, 229, 0.9);
  padding: 2.5rem 0;
  margin: 0 auto;
  position: relative;
  top: -40px;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .contact {
    max-width: 600px;
    padding: 5rem 0;
    top: -80px;
  }
}
@media screen and (min-width: 1000px) {
  .contact {
    max-width: 900px;
  }
}
@media screen and (min-width: 1440px) {
  .contact {
    max-width: 1100px;
  }
}

.contact__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
@media screen and (min-width: 1440px) {
  .contact__wrap {
    margin-top: 50px;
  }
}

@media screen and (min-width: 768px) {
  .contact__info {
    max-width: 30rem;
    width: 100%;
  }
}

.contact__guide {
  padding: 0.625rem 0.3125rem;
  font-size: 1.25rem;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__guide {
    padding: 0.625rem 1.875rem;
    font-size: 1.5rem;
  }
}

.contact__tel-number {
  margin-top: 1.25rem;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__tel-number {
    font-size: 3.125rem;
  }
}

.contact__business-hours {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__business-hours {
    font-size: 1rem;
  }
}

.contact__img {
  margin: 2.5rem auto 0;
  width: 70%;
}
@media screen and (min-width: 768px) {
  .contact__img {
    margin-top: 3.75rem;
    max-width: 28.125rem;
    width: 100%;
  }
}

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

.contact__form {
  margin-top: 2.5rem;
  padding: 2.5rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-left: 3.125rem;
    padding: 1.875rem;
    max-width: 46.875rem;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .contact__form-wrap {
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .contact__form-wrap.contact__form-wrap--textarea {
    align-items: flex-start;
  }
}

.contact__form-wrap + .contact__form-wrap {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap + .contact__form-wrap {
    margin-top: 1.25rem;
  }
}

.contact__form-label {
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: bold;
  line-height: 1;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .contact__form-label {
    max-width: 15.625rem;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .contact__form-wrap.contact__form-wrap--textarea .contact__form-label {
    padding-top: 0.9375rem;
  }
}

.contact__form-label span {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1;
  color: #ff3f02;
  position: relative;
  top: -5px;
}

.contact__form-input {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .contact__form-input {
    margin-top: initial;
    flex-grow: 1;
  }
}

.contact__form-input input {
  padding: 0.9375rem 1.25rem;
  width: 100%;
  font-size: clamp(12px, 1.4vw, 16px);
  line-height: 1;
  background-color: #fbfbfb;
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.08);
  border-radius: 0;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: none;
}

.contact__form-input input:focus {
  outline: none;
}

.contact__form-input input::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact__form-input input::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact__form-textarea {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .contact__form-textarea {
    margin-top: initial;
    flex-grow: 1;
  }
}

.contact__form-textarea textarea {
  padding: 0.9375rem 1.25rem;
  width: 100%;
  height: 18.75rem;
  font-size: 1.25rem;
  background-color: #fbfbfb;
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.08);
  border-radius: 0;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: none;
  resize: none;
}
@media screen and (min-width: 768px) {
  .contact__form-textarea textarea {
    margin-top: initial;
    flex-grow: 1;
  }
}

.contact__form-textarea textarea:focus {
  outline: none;
}

.contact__form-textarea textarea::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact__form-textarea textarea::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact__form-submit {
  margin: 2.5rem auto 0;
  position: relative;
  max-width: 18.75rem;
  width: 100%;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .contact__form-submit:hover {
    opacity: 0.7;
  }
}

.contact__form-submit input {
  padding: 1.25rem 0;
  width: 100%;
  position: relative;
  z-index: 11;
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #fff;
  background-color: transparent;
  background-image: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.contact__form-submit input:hover,
.contact__form-submit input:focus {
  outline: none;
}

.contact__form-submit::-moz-foucus-inner {
  padding: 0;
  border: none;
}

.contact__form-submit-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 70%;
  border-radius: 999px;
  background-color: #828487;
}

.contact__form-submit-bg::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  display: inline-block;
  border-style: solid;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-color: transparent transparent transparent #fff;
}

.contact__form-submit input:hover,
.contact__form-submit input:focus {
  opacity: 0.8;
}

.contact__form-submit-bg {
  transition: background-color 0.3s ease;
}

.contact__form-submit-bg::before {
  transition: border-color 0.3s ease;
}

.contact__form-submit {
  pointer-events: none;
}

.contact__form-submit input[type=submit] {
  pointer-events: auto;
}

input.wpcf7-submit[disabled]::before {
  content: "送信中…";
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 3;
}

input.wpcf7-submit[disabled] {
  position: relative;
}

.agree-note a {
  color: #007acc;
  text-decoration: underline;
  font-weight: 500;
}

.agree-note a:hover {
  color: #005f99;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-list-item-label {
  font-size: 15px;
  text-align: center;
}

.agree-note {
  display: block;
  font-size: 14px;
  text-align: center;
}

.contact__form-wrap {
  text-align: center;
}

.p-cta {
  width: 100%;
  overflow: hidden;
  padding-block: 60px;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-cta {
    max-width: none;
  }
}
@media screen and (min-width: 1000px) {
  .p-cta {
    padding-block: 160px;
  }
}

.p-cta__figure {
  margin: 0;
}

.p-cta__figure img,
.p-cta__figure picture {
  width: 100%;
  height: auto;
  display: block;
}

.p-facility__figure {
  margin-top: 50px;
}
@media screen and (min-width: 1000px) {
  .p-facility__figure {
    margin-top: 100px;
  }
}

.p-CTA__text {
  font-size: clamp(13px, 1.8vw, 20px);
  margin-block: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-CTA__text {
    margin-block: 25px 35px;
  }
}
@media screen and (min-width: 1000px) {
  .p-CTA__text {
    margin-block: 30px 45px;
  }
}

.p-rink__figure {
  max-width: 400px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-rink__figure {
    max-width: 500px;
  }
}
@media screen and (min-width: 1000px) {
  .p-rink__figure {
    max-width: 600px;
  }
}
@media screen and (min-width: 1440px) {
  .p-rink__figure {
    max-width: 700px;
  }
}

.terms__block {
  margin-bottom: 3rem;
  padding: 1.5rem;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.terms__subheading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-top: 5px;
  padding-left: 0.75rem;
}

.terms__text {
  line-height: 1.7;
  font-size: 1rem;
  color: #444;
  margin-top: 5px;
}
.terms__text .terms__number {
  font-weight: bold;
  margin-right: 0.5rem;
  display: inline-block;
  min-width: 1.5em;
  color: #111;
}

.terms__subsubheading {
  margin-top: 5px;
}

.terms__list {
  list-style: none;
  padding-left: 1.5em;
  margin-top: 5px;
}
.terms__list li {
  position: relative;
  padding-left: 2em;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {
  .terms__block {
    padding: 1rem;
  }
  .terms__subheading {
    font-size: 1.1rem;
  }
  .terms__text {
    font-size: 0.95rem;
  }
  .terms__list li {
    font-size: 0.95rem;
  }
}
.terms__block {
  padding: 1.5rem;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 3rem;
}

.terms__text {
  list-style: none;
  padding-left: 0;
}

.terms__text ul {
  list-style: none;
  padding-left: 0;
}

.p-CTA__button {
  font-size: clamp(14px, 1.6vw, 18px);
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  background-color: transparent;
  display: inline-block;
  line-height: 1;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 20px;
  padding: 15px 15px;
}
@media screen and (min-width: 768px) {
  .p-CTA__button {
    margin-top: 30px;
    width: 180px;
  }
}
@media screen and (min-width: 1000px) {
  .p-CTA__button {
    margin-top: 40px;
    width: 200px;
  }
}
@media screen and (min-width: 1440px) {
  .p-CTA__button {
    margin-top: 50px;
    height: 52px;
    width: 220px;
  }
}

.p-facility {
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 1000px) {
  .p-facility {
    padding-bottom: 9.375rem;
  }
}

.p-facility__text {
  font-size: clamp(14px, 2vw, 22px);
  font-weight: bold;
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-facility__text {
    margin-top: 25px;
  }
}
@media screen and (min-width: 1000px) {
  .p-facility__text {
    margin-top: 30px;
  }
}

.p-faq {
  margin: 0 auto;
  background-color: #f2f2f2;
  padding-block: 3.75rem 5rem;
}
@media screen and (min-width: 1000px) {
  .p-faq {
    padding-block: 6.25rem 9.375rem;
  }
}

.p-faq__item {
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  padding-bottom: 0.625rem;
  padding: 20px 36px;
}
@media screen and (min-width: 1000px) {
  .p-faq__item {
    padding: 40px 72px;
  }
}

.p-faq__item.is-first {
  margin-top: 50px !important;
}
@media screen and (min-width: 1000px) {
  .p-faq__item.is-first {
    margin-top: 100px !important;
  }
}

.p-faq .p-faq__item:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 1000px) {
  .p-faq .p-faq__item:not(:first-child) {
    margin-top: 40px;
  }
}

.p-faq__question {
  display: flex;
  align-items: baseline;
  border: 0;
  border-bottom: 1px dotted #d8a3a7;
  width: 100%;
  text-align: left;
  color: #231f20 !important;
  background-color: #fff;
  font-weight: 500;
  font-size: clamp(16px, 1.8vw, 20px);
  letter-spacing: 0.08em;
  cursor: pointer;
  padding-block: 10px;
}
@media screen and (min-width: 1000px) {
  .p-faq__question {
    padding: 1.25rem 1.875rem 1.25rem 1.875rem;
  }
}

.p-faq__answer {
  word-break: break-word;
}

.p-faq__label {
  font-size: clamp(20px, 3.5vw, 50px);
  font-weight: bold;
  color: #a1847c;
  margin-right: 20px;
  margin-right: 10px;
  white-space: nowrap;
}
@media screen and (min-width: 1000px) {
  .p-faq__label {
    margin-right: 30px;
  }
}

.p-faq__answer {
  display: none;
  align-items: center;
  padding-block: 10px;
  font-size: clamp(16px, 1.8vw, 20px);
  letter-spacing: 0.01em;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-faq__answer {
    line-height: 1.6666666667;
  }
}
@media screen and (min-width: 1000px) {
  .p-faq__answer {
    padding: 1.25rem 0rem 0.3125rem 1.875rem;
  }
}

a.faq-link {
  color: #1a73e8; /* Google系に近い青。好みに応じて変更可 */
  text-decoration: underline;
}

.label_dif {
  color: #cc80a1;
}

.p-faq__item.is-open .p-faq__answer {
  display: block;
}

.layout-header {
  position: relative;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .layout-header {
    position: fixed;
  }
}

.header {
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 768px) {
  .header {
    height: 70px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 15px;
  }
}
@media screen and (min-width: 1000px) {
  .header {
    max-width: 1100px;
  }
}
@media screen and (min-width: 1440px) {
  .header {
    max-width: 1320px;
  }
}

.header__inner {
  padding-left: 0.9375rem;
  height: inherit;
  display: flex;
  justify-content: right;
}
@media screen and (min-width: 768px) {
  .header__inner {
    margin: auto;
    padding-left: 4.375rem;
    justify-content: space-around;
    width: 100%;
  }
}

.header__logo {
  position: absolute;
  top: 4;
  left: 20%;
  transform: translateX(-50%);
  max-width: 110px;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__logo {
    position: initial;
    transform: initial;
    max-width: 10.3125rem;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item a {
  padding: 0 0.9375rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  color: #333;
}

.header__hamburger {
  height: 34px;
  top: 3px;
  right: 10px;
  border-radius: 5px;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.5rem;
  background-color: #828487;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0.9375rem;
  height: 1px;
  background-color: #fff;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.3125rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.3125rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  padding: 8.75rem 0;
  display: none;
  position: absolute;
  z-index: 900;
  top: -60px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  background-color: rgba(130, 132, 135, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item {
  text-align: center;
}

.header__drawer-item a {
  padding: 0.9375rem 0;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.header__drawerButton {
  padding: 14px 10px !important;
  width: 210px;
}
@media screen and (min-width: 1000px) {
  .header__drawerButton {
    padding: 14px 10px !important;
  }
}

.p-header__rinkButton {
  font-size: 10px;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  background-color: transparent;
  display: inline-block;
  line-height: 1;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 5px;
  margin-right: 20px;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .p-header__rinkButton {
    display: none;
  }
}

.p-info {
  position: relative;
  z-index: 0;
  padding-block: 3.125rem;
}
@media screen and (min-width: 1000px) {
  .p-info {
    padding-block: 6.25rem;
  }
}

.p-info__main {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-info__main {
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 1000px) {
  .p-info__main {
    gap: 3.125rem;
    margin-top: 3.125rem;
  }
}

.p-info__image {
  flex: 1 1 50%;
}

.p-info__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 1000px) {
  .p-info__image img {
    width: 457px;
    height: 305px;
    flex-shrink: 0;
    aspect-ratio: 457/305;
  }
}

.p-info__detail {
  flex: 1 1 50%;
}

.p-info__name {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: bold;
  line-height: 1;
  font-weight: 500;
  border-bottom: 2px solid #cd96b4;
  padding-bottom: 10px;
  width: -moz-fit-content;
  width: fit-content;
}

.p-info__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 1000px) {
  .p-info__list {
    margin-top: 0.9375rem;
  }
}

.p-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
@media screen and (min-width: 1000px) {
  .p-info__item {
    gap: 3.125rem;
  }
}

.p-info__item dt {
  flex-shrink: 0;
  width: 80px; /* ← ラベル幅を固定することで揃う！ */
  font-weight: bold;
}

.p-info__item dd {
  margin: 0;
  line-height: 1.6;
}

.p-info__list dt {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.p-info__list dd {
  line-height: 1.6;
}

.p-info__map {
  margin-top: 3.125rem;
  text-align: center;
}
.p-info__map img {
  width: 100%;
  height: auto;
  display: block;
}

.p-info__map {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
}

.p-info__map iframe {
  width: 100%;
  height: 300px;
  display: block;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-info__map iframe {
    height: 400px;
  }
}

.p-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/Mask group.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: -10;
}

.p-mv {
  width: 100%;
  text-align: center;
}

.p-mv__images {
  position: relative;
}

.p-mv__title {
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  font-size: clamp(18px, 2.5vw, 34px);
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  min-width: 200px;
}
@media screen and (min-width: 1000px) {
  .p-mv__title {
    line-height: 1.6666666667;
    letter-spacing: 0.03em;
  }
}

.p-mv__figure img {
  width: 100%;
  height: auto;
  display: block;
}

.p-mv__content {
  padding-block: 3.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv__content {
    padding-block: 6.25rem 3.75rem;
  }
}
@media screen and (min-width: 1000px) {
  .p-mv__content {
    padding-block: 8.75rem 3.75rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-mv__content {
    padding-block: 8.75rem 5rem;
  }
}

.p-mv__subtitle {
  padding-block: 0 1.875rem;
}
@media screen and (min-width: 1000px) {
  .p-mv__subtitle {
    padding-block: 0 3.75rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-mv__subtitle {
    padding-block: 0 5rem;
  }
}

.p-mv__text {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}
@media screen and (min-width: 1000px) {
  .p-mv__text {
    font-size: 16px;
    line-height: 1.875;
  }
}
@media screen and (min-width: 1440px) {
  .p-mv__text {
    font-size: 18px;
  }
}

.p-mv__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/strength2.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.p-mv__content > * {
  position: relative;
  z-index: 1;
}

.swiper {
  width: 100%;
  height: 70vh;
  position: relative;
}
@media screen and (min-width: 768px) {
  .swiper {
    height: 100vh;
  }
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide,
.swiper-slide-img3 {
  height: 100vh;
}

.swiper-slide picture {
  display: block;
  height: 100%;
}

.swiper-slide-img3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: center bottom !important;
     object-position: center bottom !important;
}

.swiper-slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .swiper-slide-img img {
    -o-object-position: right center;
       object-position: right center; /* 右側を中心に表示 */
  }
}

.swiper-slide-img4 img,
.swiper-slide-img5 img,
.swiper-slide-img2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: center 80% !important;
     object-position: center 80% !important; /* 中央 */
}

.p-news {
  position: relative;
}

.p-news__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-block: 3.125rem;
  padding-inline: 20px;
  gap: 0.625rem;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-news__content {
    padding-block: 5rem 1.875rem;
    flex-direction: row-reverse;
    padding-inline: 0px;
  }
}
@media screen and (min-width: 1000px) {
  .p-news__content {
    padding-block: 1.4375rem 0;
    position: relative;
    top: 140px;
  }
}

.p-news__link {
  background: #fff;
  text-align: center;
  border-radius: 56px 56px 0px 0px;
  width: 100%;
  max-width: 400px;
  padding: 20px 0px 20px;
}
@media screen and (min-width: 768px) {
  .p-news__link {
    border-radius: 56px 0px 0px 56px;
    height: 255px;
    padding: 58px 0px;
    max-width: 270px;
  }
}
@media screen and (min-width: 1000px) {
  .p-news__link {
    border-radius: 56px 0px 0px 56px;
    min-height: 240px;
    padding: 58px 45px;
  }
}

.p-news__button {
  display: block;
  border-radius: 21px;
  background: #828487;
  padding: 10px 20px;
  max-width: 130px;
  margin: 10px auto 0;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-news__button {
    margin-top: 16px;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 1000px) {
  .p-news__button {
    margin-top: 1.875rem;
    padding: 10px 10px;
  }
}
.p-news__button p {
  color: #fff;
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 500;
  margin: 0;
}
.p-news__button:hover {
  opacity: 0.8;
}

/* ==============================
   p-news 記事のレイアウト調整
================================ */
.p-news__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  background: #fff;
  padding: 40px 15px;
  border-radius: 0px 0px 56px 56px;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .p-news__box {
    gap: 30px;
    border-radius: 0px;
    padding: 57px 15px 0 30px;
    height: 255px;
    max-width: 500px;
  }
}
@media screen and (min-width: 1000px) {
  .p-news__box {
    padding: 71px 70px 51px 0px;
    gap: 38px;
    max-width: 700px;
    width: 700px;
  }
}
@media screen and (min-width: 1440px) {
  .p-news__box {
    width: 800px;
    max-width: 800px;
  }
}

.p-newsArchive__box {
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-newsArchive__box {
    gap: 50px;
  }
}

.p-news__item {
  display: flex;
  align-items: center;
}

/* ==============================
   アイキャッチ画像
================================ */
.p-news__contentWrapper {
  flex-grow: 1;
}
@media screen and (min-width: 1000px) {
  .p-news__contentWrapper {
    flex-grow: 0;
    padding-left: 40px;
  }
}

/* カテゴリ・日付 */
.p-news__info {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 1000px) {
  .p-news__info {
    gap: 25px;
    margin-top: -10px;
  }
}

.p-news__infoCategory {
  background: #828487;
  color: #fff;
  font-size: 12px;
  padding: 0.3125rem 0.625rem;
  font-weight: 400;
  min-width: 100px;
}
@media screen and (min-width: 768px) {
  .p-news__infoCategory {
    min-width: 140px;
  }
}
@media screen and (min-width: 1000px) {
  .p-news__infoCategory {
    font-size: 14px;
    padding: 0.1875rem 1.625rem;
    min-width: 160px;
  }
}
@media screen and (min-width: 1440px) {
  .p-news__infoCategory {
    min-width: 180px;
  }
}

.p-newsArchive__infoCategory,
.p-newsArchive__infoDate {
  font-size: clamp(18px, 2vw, 22px);
}

.p-newsArchive__title {
  font-size: clamp(22px, 2.6vw, 30px);
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-newsArchive__title {
    margin-top: 16px;
  }
}

.p-news__infoDate {
  font-size: 12px;
  line-height: 1;
}
@media screen and (min-width: 1000px) {
  .p-news__infoDate {
    font-weight: 400;
    font-size: 14px;
  }
}

/* 記事タイトル */
.p-news__title {
  font-size: 0.75rem;
  line-height: 1.3333333333;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media screen and (min-width: 768px) {
  .p-news__title {
    font-size: 16px;
    line-height: 1;
  }
}
.p-news__buttonNext {
  width: clamp(30px, 50%, 60px);
}
@media screen and (min-width: 1000px) {
  .p-news__buttonNext {
    margin-top: 20px;
  }
}

.p-newsBlog__return {
  font-size: clamp(12px, 2vw, 16px);
  margin-top: 50px;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 1000px) {
  .p-newsBlog__return {
    margin-top: 100px;
  }
}
@media screen and (min-width: 1440px) {
  .p-newsBlog__return {
    margin-top: 150px;
  }
}

.p-newsBlog__returnLink {
  display: inline-flex;
  align-items: center;
  color: #828487; /* テキストの色 */
  text-decoration: none; /* 下線を削除 */
}

.p-newsBlog__prev {
  max-width: 35px;
}

.p-newsBlog__prev img {
  width: clamp(30px, 50%, 60px);
  max-width: 60px;
  height: auto; /* 画像の高さ */
  margin-right: 10px; /* 画像とテキストの間の余白 */
  font-weight: 700;
}
@media screen and (min-width: 1000px) {
  .p-newsBlog__prev img {
    max-width: 60px;
  }
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.p-newsArchive {
  padding-block: 60px 12.5rem;
  height: 115vh;
}
@media screen and (min-width: 768px) {
  .p-newsArchive {
    padding-block: 80px 6.25rem;
    height: 140vh;
  }
}
@media screen and (min-width: 1000px) {
  .p-newsArchive {
    height: 150vh;
  }
}

.p-new__container {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.news-pagination {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1.875rem;
  flex-wrap: wrap;
}
@media screen and (min-width: 1000px) {
  .news-pagination {
    gap: 1rem;
  }
}

.news-pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  background-color: #f5f5f5;
  text-decoration: none;
  border-radius: 4px;
  font-size: clamp(10px, 2vw, 14px);
  transition: all 0.2s ease;
}
@media screen and (min-width: 768px) {
  .news-pagination .page-numbers {
    padding: 0.75rem 1rem;
  }
}

.news-pagination .page-numbers:hover {
  background-color: #ddd;
}

.news-pagination .page-numbers.current {
  background-color: #333;
  color: #fff;
  font-weight: bold;
  pointer-events: none;
}

.news-pagination .page-numbers.prev,
.news-pagination .page-numbers.next {
  font-weight: bold;
}

.p-newsBlog {
  padding-bottom: 200px;
  margin-top: -100px;
}
@media screen and (min-width: 1000px) {
  .p-newsBlog {
    margin-top: -110px;
  }
}
@media screen and (min-width: 1440px) {
  .p-newsBlog {
    padding-block: 160px 200px;
    margin-top: -285px;
  }
}

.p-newsBlog__bgWave {
  top: 50px;
}
@media screen and (min-width: 1440px) {
  .p-newsBlog__bgWave {
    top: -250px;
  }
}

.p-newsBlog__header {
  padding-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .p-newsBlog__header {
    padding-bottom: 100px;
  }
}
.p-newsBlog__content {
  padding-top: 100px;
}
@media screen and (min-width: 1000px) {
  .p-newsBlog__content {
    padding-top: 150px;
  }
}

.p-newsBlog__mv {
  padding-block: 1.25rem 1.875rem;
  justify-content: center;
  display: flex;
}

.p-newsBlog__mv img {
  height: auto;
}
@media screen and (min-width: 1440px) {
  .p-newsBlog__mv img {
    min-width: 875px;
  }
}

.p-newsBlog__meta {
  padding-block: 10px;
  display: flex;
  font-size: 0.625rem;
  font-size: clamp(10px, 3vw, 14px);
  gap: 0.8125rem;
  color: #fff;
  align-items: center;
}

.p-newsBlog__date {
  font-size: clamp(10px, 3vw, 14px);
}

.p-newsBlog__title {
  font-size: clamp(20px, 2vw, 30px);
}

.p-newsBlog__category {
  background: #fff;
  color: #828487;
  padding: 0.1875rem 0.625rem;
}

.p-newsBlog__title {
  color: #fff;
}

.p-newsBlog__text {
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.4285714286;
}
@media screen and (min-width: 1440px) {
  .p-newsBlog__text {
    font-weight: 500;
    line-height: 1.875;
  }
}

#preloader {
  position: fixed;
  z-index: 9999;
  background: #000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.is-hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

#preloader video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-relaxation {
  width: 100%;
  padding-block: 40px 100px;
}
@media screen and (min-width: 1000px) {
  .p-relaxation {
    padding-block: 50px 0px;
  }
}

.p-relaxation__cards {
  position: relative;
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  z-index: 1;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-relaxation__cards {
    flex-direction: row;
  }
}

.p-relaxation__card {
  flex: 1;
  background: #f5efeb;
  padding: 1rem;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  min-height: 400px;
}
@media screen and (min-width: 1000px) {
  .p-relaxation__card {
    min-height: 435px;
  }
}
.p-relaxation__card img {
  width: 100%;
  height: auto;
  height: 260px !important;
}
@media screen and (min-width: 768px) {
  .p-relaxation__card img {
    height: 200px !important;
  }
}
@media screen and (min-width: 1000px) {
  .p-relaxation__card img {
    height: 200px !important;
  }
}

.p-relaxation__intro {
  font-size: 14px;
  line-height: 1.7857142857;
  text-align: left;
}
@media screen and (min-width: 1000px) {
  .p-relaxation__intro {
    font-size: 16px;
    line-height: 1.8125;
  }
}

.p-relaxation__card-title {
  color: #828487;
  font-weight: 500;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1;
  margin-block: 0.625rem;
}
@media screen and (min-width: 1000px) {
  .p-relaxation__card-title {
    line-height: 0.1666666667;
    margin-block: 1.25rem;
  }
}

.p-relaxation__card-text {
  font-size: clamp(12px, 1.4vw, 16px);
  line-height: 1.6666666667;
}
@media screen and (min-width: 1000px) {
  .p-relaxation__card-text {
    line-height: 1.5625;
  }
}

.p-img__figure img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  aspect-ratio: 24/8;
}

.p-serviceSection {
  padding-block: 60px 12.5rem;
}
@media screen and (min-width: 768px) {
  .p-serviceSection {
    padding-block: 80px 0rem;
  }
}

.p-serviceSection__contents {
  display: flex;
  flex-direction: column;
  gap: 44px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", serif;
  padding-bottom: 1.875rem;
}
.p-serviceSection__contents:not(:first-of-type) .p-serviceSection__title {
  padding-top: 45px;
}
@media screen and (min-width: 768px) {
  .p-serviceSection__contents {
    flex-direction: row;
    align-items: center;
    gap: 50px;
    padding-bottom: 3.125rem;
    min-height: 472px;
  }
}
@media screen and (min-width: 1000px) {
  .p-serviceSection__contents {
    padding-top: 6.25rem;
    border-top: 1px solid #e8eef4;
    gap: 22px;
    padding-bottom: 6.25rem;
  }
}

.p-serviceSection__contents:not(:last-of-type) {
  border-bottom: 1px solid #e8eef4;
}

@media screen and (min-width: 1000px) {
  .p-serviceSection__contents {
    border-bottom: 1px solid #e8eef4;
  }
}
.p-serviceSection__content {
  flex: 1;
}
.p-serviceSection__content dl {
  display: flex;
  flex-direction: column;
}
.p-serviceSection__content dl dt {
  font-size: clamp(15px, 2vw, 20px);
  font-weight: bold;
  line-height: 1;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-serviceSection__content dl dt {
    margin-top: 2.1875rem;
  }
}
.p-serviceSection__content dl dd {
  margin-top: 0.1875rem;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .p-serviceSection__content dl dd {
    margin-top: 0.625rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-serviceSection__content {
    flex: 1.7;
  }
}

.p-serviceSection__title {
  font-size: clamp(20px, 3vw, 30px);
  color: #828487;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .p-serviceSection__title {
    text-align: left;
  }
}

.p-serviceSection__img {
  flex: 1;
}
.p-serviceSection__img img {
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
  height: auto;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1000px) {
  .p-serviceSection__img img {
    max-width: 430px;
    margin: 0;
  }
}

.p-service {
  width: 100%;
  background: rgba(130, 132, 135, 0.6);
  text-align: center;
  padding-block: 100px 0;
}
@media screen and (min-width: 1000px) {
  .p-service {
    padding-block: 200px;
  }
}

.p-service__heading {
  margin-bottom: 40px;
  text-align: center;
}

.p-service__body {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 1.25rem;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-service__body {
    flex-direction: row;
    margin-top: 40px;
  }
}
@media screen and (min-width: 1000px) {
  .p-service__body {
    margin-top: 2.5rem;
  }
}

.p-service__image-main {
  flex: 1 1 50%;
}
@media screen and (min-width: 768px) {
  .p-service__image-main {
    min-width: 300px;
  }
}

@media screen and (min-width: 1000px) {
  .p-service__box + .p-service__box {
    margin-top: 120px;
  }
}

.p-service__image-main img {
  width: 100%;
  height: 345px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .p-service__image-main img {
    height: 380px;
  }
}
@media screen and (min-width: 1000px) {
  .p-service__image-main img {
    height: 500px;
  }
}

.p-service__content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-service__content {
    min-width: 300px;
  }
}

.p-service__text p {
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: clamp(16px, 1.8vw, 20px);
  position: relative;
  z-index: 10;
}

.p-service__text strong {
  color: #c89441; /* 強調カラー：金っぽい */
  font-weight: bold;
}

.p-service__sub-images {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.p-service__sub-image {
  flex: 1 1 50%;
}

.p-service__sub-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  height: 140px;
}
@media screen and (min-width: 768px) {
  .p-service__sub-image img {
    height: 195px;
  }
}

.p-service__sub-images {
  position: relative;
  display: flex;
  gap: 1rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-service__sub-images {
    margin-top: 1.5rem;
  }
}

.p-service__sub-images::before {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  z-index: -100 !important;
  top: -620px;
  left: -17%;
  width: 123%;
  height: calc(100% + 640px);
}
@media screen and (min-width: 400px) {
  .p-service__sub-images::before {
    width: 122%;
  }
}
@media screen and (min-width: 500px) {
  .p-service__sub-images::before {
    width: 121%;
  }
}
@media screen and (min-width: 600px) {
  .p-service__sub-images::before {
    left: -11%;
  }
}
@media screen and (min-width: 768px) {
  .p-service__sub-images::before {
    top: -260px;
    left: -17%;
    width: 120%;
    height: calc(100% + 280px);
  }
}
@media screen and (min-width: 1000px) {
  .p-service__sub-images::before {
    top: -310px;
    left: -17%;
    width: 120%;
    height: calc(100% + 440px);
  }
}
@media screen and (min-width: 1440px) {
  .p-service__sub-images::before {
    top: -290px;
    left: -37%;
    width: 160%;
    height: calc(100% + 400px);
  }
}

.p-service__sub-image {
  position: relative;
  flex: 1;
  z-index: 1;
}

.p-caseStudies {
  padding-block: 50px 250px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", serif;
}
@media screen and (min-width: 768px) {
  .p-caseStudies {
    padding-top: 60px;
  }
}
@media screen and (min-width: 1000px) {
  .p-caseStudies {
    padding-block: 80px 400px;
  }
}
@media screen and (min-width: 1440px) {
  .p-caseStudies {
    padding-block: 120px 900px;
  }
}

.p-caseStudies__container {
  display: block;
  margin: 0 auto;
  max-width: 500px;
}
@media screen and (min-width: 768px) {
  .p-caseStudies__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 850px;
    border-radius: 10px;
    background: #fbfbfb;
    box-shadow: 0px 0px 8.892px 0px rgba(0, 0, 0, 0.3);
  }
}
@media screen and (min-width: 1000px) {
  .p-caseStudies__container {
    max-width: none;
  }
}
@media screen and (min-width: 1440px) {
  .p-caseStudies__container {
    max-width: 1200px;
  }
}

.p-caseStudies-main {
  padding: 30px 10px 50px;
  width: 100%;
  border-radius: 10px;
  background: #fbfbfb;
  box-shadow: 0px 0px 8.892px 0px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .p-caseStudies-main {
    width: 66%;
    max-width: 400px;
    border-radius: 0;
    padding-top: 40px;
    background: transparent;
    box-shadow: none;
  }
}
@media screen and (min-width: 1000px) {
  .p-caseStudies-main {
    width: 55%;
    max-width: 600px;
    padding-top: 60px;
  }
}
@media screen and (min-width: 1440px) {
  .p-caseStudies-main {
    min-width: 600px;
  }
}

.p-caseStudies__title {
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .p-caseStudies__title {
    font-size: 1.5rem;
    line-height: 32px;
    margin-top: 26px;
  }
}

.p-caseStudies__mv {
  margin-top: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1000px) {
  .p-caseStudies__mv {
    margin-block: 20px 30px;
  }
}

.p-caseStudies__mv img {
  width: 100%;
  height: auto;
}

.p-caseStudies__contents {
  margin-top: 20px;
}

.p-caseStudies__contents a.p-caseStudies__readmore {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  text-decoration: underline;
}

.archive-blog__sidebar {
  width: 100%;
  margin: 40px auto;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .archive-blog__sidebar {
    width: 37%;
    max-width: 450px;
    margin: 0;
    padding-top: 40px;
  }
}
@media screen and (min-width: 1000px) {
  .archive-blog__sidebar {
    padding-top: 60px;
  }
}
@media screen and (min-width: 1440px) {
  .archive-blog__sidebar {
    margin-top: 3.75rem;
  }
}

.archive-blog__sidebar-heading {
  padding-block: 0.375rem;
  border-radius: 3.49px;
  background: #dcdacc;
  text-align: center;
}

.archive-blog__sidebar-heading p {
  font-size: clamp(14px, 2vw, 20px);
  color: #828487;
  font-weight: 500;
  line-height: 1;
}

.archive-blog__sidebar-list {
  margin-top: 1.25rem;
}
@media screen and (min-width: 1000px) {
  .archive-blog__sidebar-list {
    margin-top: 1.875rem;
  }
}

.archive-blog__sidebar-link {
  display: block;
  border-radius: 8.301px;
  background: #fbfbfb;
  box-shadow: 0px 0px 8.301px 0px rgba(0, 0, 0, 0.3);
  padding: 14px 10px 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .archive-blog__sidebar-link {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
}

.archive-blog__sidebar-link + .archive-blog__sidebar-link {
  margin-top: 30px;
}

.archive-blog__sidebar-inner {
  display: block;
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 768px) {
  .archive-blog__sidebar-inner {
    display: flex;
  }
}

.archive-blog__sidebar-contents {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  padding-inline: 0.625rem;
}
@media screen and (min-width: 768px) {
  .archive-blog__sidebar-contents {
    align-items: flex-start;
  }
}

.archive-blog__sidebarImg {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .archive-blog__sidebarImg {
    flex-shrink: 0;
  }
}

@media screen and (min-width: 768px) {
  .archive-blog__sidebarImg img {
    max-width: 120px;
    height: auto;
  }
}
@media screen and (min-width: 1440px) {
  .archive-blog__sidebarImg img {
    max-width: 173px;
  }
}

.archive-blog__sidebar-content {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .archive-blog__sidebar-content {
    width: auto;
    flex: 1;
  }
}

.archive-blog__sidebar-text {
  font-weight: 700;
  line-height: 1;
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .archive-blog__sidebar-text {
    margin-top: 0;
    width: -moz-max-content;
    width: max-content;
    font-size: 11px;
  }
}
@media screen and (min-width: 1000px) {
  .archive-blog__sidebar-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440px) {
  .archive-blog__sidebar-text {
    font-size: 16px;
    line-height: 1.25;
  }
}

.archive-blog__sidebar-excerpt {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .archive-blog__sidebar-excerpt {
    font-size: 11px;
  }
}
@media screen and (min-width: 1000px) {
  .archive-blog__sidebar-excerpt {
    font-size: 13px;
    width: 90%;
  }
}

.archive-blog__sidebar-arrow {
  position: absolute;
  right: 0px;
}
@media screen and (min-width: 768px) {
  .archive-blog__sidebar-arrow {
    top: 50px;
  }
}
@media screen and (min-width: 1000px) {
  .archive-blog__sidebar-arrow {
    top: 30px;
  }
}
@media screen and (min-width: 1440px) {
  .archive-blog__sidebar-arrow {
    top: 40px;
  }
}

@media screen and (min-width: 768px) {
  .p-single-blog {
    padding-top: 100px;
  }
}
@media screen and (min-width: 1000px) {
  .p-single-blog {
    padding-top: 125px;
  }
}
@media screen and (min-width: 1440px) {
  .p-single-blog {
    padding-top: 146px;
  }
}

@media screen and (min-width: 768px) {
  .p-single-blog-main {
    width: 65%;
    margin-top: -96px;
  }
}
@media screen and (min-width: 1000px) {
  .p-single-blog-main {
    width: 69%;
  }
}

.p-single-blog__meta {
  display: flex;
  align-items: center;
  margin-top: 55px;
  justify-content: space-between;
}
@media screen and (min-width: 1000px) {
  .p-single-blog__meta {
    margin-top: 42px;
  }
}
@media screen and (min-width: 1440px) {
  .p-single-blog__meta {
    margin-top: 28px;
  }
}

.p-single-blog__category {
  padding: 10px 12px;
}

.p-single-blog__date {
  font-size: 0.875rem;
  line-height: 1;
}

.p-single-blog__title {
  margin-top: 2px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  line-height: 28px; /* 140% */
}
@media screen and (min-width: 1440px) {
  .p-single-blog__title {
    font-size: 1.5rem;
    line-height: 32px; /* 133.333% */
    margin-top: 26px;
  }
}

.p-single-blog__mv {
  margin-top: 22px;
  width: 101%;
}
@media screen and (min-width: 1000px) {
  .p-single-blog__mv {
    margin-top: 39px;
  }
}

.p-single-blog__mv img {
  width: 100%;
}

.p-single-blog__content {
  margin-top: 43px;
}
.p-single-blog__content h2 {
  color: #9f9f9f;
  font-size: 1.25rem;
  background: #f8f8f8;
}
.p-single-blog__content h2::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 46px;
  background-color: #9f9f9f; /* 縦棒の色 */
  margin-right: 20px; /* 縦棒とテキストの間隔 */
  vertical-align: middle; /* テキストと縦棒の垂直中央揃え */
}
.p-single-blog__content .p-single-blog__content-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  margin-top: 18px;
}
.p-single-blog__content h3 {
  color: #9f9f9f;
  font-weight: 700;
  margin-top: 37px;
  padding-bottom: 5px;
  font-size: 1.125rem;
  border-bottom: 1px solid #9f9f9f;
}
.p-single-blog__content h4 {
  color: #9f9f9f;
  margin-top: 36px;
  font-size: 1rem;
  font-weight: 700;
}
.p-single-blog__content ul {
  margin-top: 35px;
}
@media screen and (min-width: 1440px) {
  .p-single-blog__content ul {
    margin-top: 28px;
    padding-left: 40px;
  }
}
.p-single-blog__content ul li {
  font-size: 1rem;
}
.p-single-blog__content ul li:not(:first-of-type) {
  margin-top: 15px;
}
.p-single-blog__content ul li::before {
  content: "・";
  margin-right: -3px;
}

.p-single-blog__content-quote {
  margin-top: 57px;
  padding: 12px 29px 28px;
  background: #f8f8f8;
  border-left: 4px solid #023e78;
  position: relative;
}
@media screen and (min-width: 1440px) {
  .p-single-blog__content-quote {
    margin-top: 37px;
    padding: 14px 30px 31px;
    margin-left: 40px;
    width: 646px;
  }
}
.p-single-blog__content-quote::before {
  background-image: url(/public/assets/images/page-case/single-pattern.png) center/cover no-repeat;
  content: "";
  height: 45px;
  left: 25px;
  position: absolute;
  top: 25px;
  width: 60px;
}

.p-single-blog__links {
  display: flex;
  justify-content: space-between;
  color: #9f9f9f;
  margin: 40px 0 -8px;
}
.p-single-blog__link-prev,
.p-single-blog__link-next {
  border-radius: 4px;
  border: 1px solid #9f9f9f;
  color: #9f9f9f;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
}

.p-single-blog__aside {
  margin-bottom: -39px;
}

@media screen and (min-width: 1440px) {
  .u-hidden-xl {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-hidden-md {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .u-hidden-lg {
    display: none;
  }
}

@media screen and (min-width: 320px) {
  .u-hidden-sm {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-hidden-sm {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-img-sm {
    display: none;
  }
}

@media screen and (min-width: 320px) {
  .u-img-md {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-img-md {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-link-sm {
    visibility: hidden;
  }
}

@media screen and (min-width: 320px) {
  .u-link-md {
    visibility: hidden;
  }
}
@media screen and (min-width: 768px) {
  .u-link-md {
    visibility: visible;
    margin-top: -35px;
  }
}

.u-center {
  text-align: center;
}
/*# sourceMappingURL=style.css.map */
