@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: #4d4945;
  background-color: #f3f7f3;
  background: url(<path-to-image>) lightgray 0% 0%/28.9999991655px 28.9999991655px repeat;
  background-blend-mode: multiply;
}

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

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

/* フッター全体の背景と余白設定 */
.layout-footer {
  /* 画像を繰り返し表示（テクスチャ用） */
  background-repeat: repeat;
  background-position: center;
  padding: 60px 0 20px;
  color: #2d4f3e; /* 文字色（濃い緑） */
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
}

/* レイアウト調整 */
.footer__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    align-items: center;
  }
}

/* 左側のロゴ・SNSエリア */
.footer__left {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .footer__left {
    gap: 50px;
  }
}

.footer__logo img {
  width: 130px; /* ロゴの大きさ */
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer__logo img {
    width: 150px; /* ロゴの大きさ */
  }
}

.footer__sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #3e3a39;
  font-family: sans-serif;
  font-size: 12px;
  gap: 5px;
  position: relative;
  top: 130px;
}
@media screen and (min-width: 768px) {
  .footer__sns {
    position: static;
    top: auto;
  }
}

.footer__sns i {
  font-size: 50px;
  color: #585555;
}
@media screen and (min-width: 768px) {
  .footer__sns i {
    margin-top: 10px;
    font-size: 50px;
  }
}

.footer__nav {
  margin-top: -40px;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    margin-top: 0;
  }
}

/* 右側のメニューリスト */
.footer__nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav-item a {
  text-decoration: none;
  color: #3e3a39;
  display: block;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .footer__nav-item a {
    font-size: 22px;
    margin-left: 45px;
  }
}

.footer__nav-sub {
  display: block;
  font-family: "Times New Roman", Times, serif;
  font-size: 12px;
  margin-top: 5px;
  letter-spacing: 0.05em;
}

/* コピーライト */
.footer__copyright {
  text-align: center;
  font-size: 11px;
  color: #3e3a39;
  font-family: sans-serif;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 70px;
  }
}

/* スマホ用（画面が狭いとき） */
@media screen and (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    padding-bottom: 150px;
  }
  .footer__nav-list {
    flex-direction: column;
    gap: 20px;
  }
  .footer__left {
    flex-direction: column;
  }
}
.l-header__common {
  background: #2a5e2d;
  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: #2a5e2d !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: #2a5e2d !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: #2a5e2d;
  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: #2a5e2d;
  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 #2a5e2d;
  }
}
@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: #2a5e2d;
  }
}

.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: #2a5e2d;
  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: 800px;
  }
}
@media screen and (min-width: 1000px) {
  .l-inner {
    max-width: 1100px;
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .l-inner {
    max-width: 1300px;
    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: #2a5e2d;
  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;
  align-items: center;
  font-size: 0.9375rem;
}
@media screen and (min-width: 1440px) {
  .c-button {
    width: 152px;
    font-size: 16px;
    padding: 15px 24px;
  }
}

.c-button--border {
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  background-color: transparent;
  padding: 15px 20px !important;
}
.c-button--border:hover,
.footer__btn--border:hover,
.p-CTA__button:hover {
  background-color: #fff;
  color: #4d4945;
  opacity: 1;
}

.c-button--black {
  color: #fff;
  border: none;
  border-radius: 80px;
  border: 0.25px solid #373232;
  background: #2a5e2d;
  margin-top: 5px;
}

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

.header__drawer {
  padding: 20.625rem 0 !important;
  display: none;
  position: absolute;
  z-index: 900;
  top: -60px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  background-color: #899f83 !important;
  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-color__white {
  color: #fff !important;
}

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

.c-heading__news {
  font-size: 30px;
}

.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: #2a5e2d;
}
@media screen and (min-width: 768px) {
  .c-subHeading {
    font-size: 14px;
  }
}

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

.c-cta__heading {
  font-size: clamp(14px, 2.2vw, 38px);
  padding-bottom: 3px;
}

.c-cta__box {
  padding-bottom: 30px;
}

/* 基本設定：最初は隠しておく */
.js-fadeup {
  opacity: 0; /* 透明にする */
  transform: translateY(30px); /* 30px下にずらしておく */
  transition: all 0.8s ease; /* 0.8秒かけて変化させる（ふわっと感） */
}

/* 画面に入った時につけるクラス */
.js-fadeup.is-active {
  opacity: 1; /* 不透明に戻す */
  transform: translateY(0); /* 元の位置に戻す */
}

/* ------------------------------------ */
/* (オプション) 順番に出てくるように遅らせたい場合 */
/* ------------------------------------ */
.js-delay-1 {
  transition-delay: 0.2s;
}

.js-delay-2 {
  transition-delay: 0.4s;
}

.js-delay-3 {
  transition-delay: 0.6s;
}

.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;
}

/* ====================================
   About Section
==================================== */
/* ====================================
   About Section (スプリットレイアウト)
==================================== */
.p-about {
  width: 100%;
  background: #dbdad5;
  padding-block: 100px;
  /* PC以上で左右分割レイアウトにする */
}
@media screen and (min-width: 1000px) {
  .p-about {
    padding-block: 180px 360px;
  }
}

/* 全体のラッパー */
.p-about__wrapper {
  width: 100%;
  display: block;
  padding-top: 100px;
}
@media screen and (min-width: 768px) {
  .p-about__wrapper {
    display: flex;
    width: 100%;
    padding-top: 180px;
  }
}

/* ------------------------------------
   左側：画像エリア
------------------------------------ */
.p-about__figure {
  margin: 0;
  width: 100%;
  height: 300px; /* スマホ時の画像の高さ（お好みで調整） */
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-about__figure {
    width: 50%; /* PCでは画面の半分 */
    height: auto; /* 高さは自動、もしくは min-height で固定 */
    /* 画面いっぱいに広げるための重要な設定 */
    flex-shrink: 0;
  }
}
.p-about__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画像をトリミングして枠いっぱいに表示 */
  display: block;
  /* PCで角を直角にする場合（デザインに合わせて） */
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .p-about__figure {
    padding-inline: 0px;
  }
}

/* ------------------------------------
   右側：コンテンツエリア
------------------------------------ */
.p-about__content {
  width: 100%;
  padding: 90px 20px; /* スマホ時の上下左右の余白 */
}
@media screen and (min-width: 768px) {
  .p-about__content {
    width: 50%; /* PCでは画面の残り半分 */
    padding: 0; /* PCではインナーで余白調整するためリセット */
    display: flex;
    align-items: center; /* 上下中央寄せ */
    padding: 60px 20px; /* スマホ時の上下左右の余白 */
  }
}

/* 位置調整用のインナー（PCでテキストを右に寄せる要） */
.p-about__content-inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-about__content-inner {
    /* ★ここが重要：左側に大きな余白を入れてテキストを右に寄せる */
    padding-left: 15%; /* 画面幅の15%分左を空ける（調整してください） */
    padding-right: 5%; /* 右側の余白 */
    max-width: 600px; /* テキストが広がりすぎないように制限 */
  }
}
@media screen and (min-width: 1000px) {
  .p-about__content-inner {
    padding-left: 20%; /* 大きな画面ではさらに左を空ける */
  }
}

/* タイトルエリア */
.p-about__header {
  text-align: left;
}

.p-about__title {
  font-size: clamp(30px, 5vw, 56px);
  font-family: serif;
  font-weight: 500;
  margin-bottom: 5px;
  line-height: 1;
  color: #333;
}

.p-about__subtitle {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  margin: 0;
}

/* 本文 */
.p-about__text {
  font-size: clamp(18px, 3vw, 24px);
  line-height: 2.4; /* 行間を広めに */
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.217em;
  line-height: 2.6666666667;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    text-align: justify;
  }
}
@media screen and (min-width: 1000px) {
  .p-about__text {
    letter-spacing: 0.163em;
    line-height: 2.4166666667;
  }
}

/* ボタンエリア */
.p-about__btn-area {
  margin-top: 90px;
  text-align: -webkit-center;
}
@media screen and (min-width: 768px) {
  .p-about__btn-area {
    margin-top: 150px;
  }
}

/* ボタン本体（既存スタイルを維持） */
.p-about__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  font-family: serif;
  font-size: 16px;
  width: 100%;
  max-width: 350px;
  height: 60px;
  padding: 0 20px;
  transition: opacity 0.3s ease;
}
.p-about__btn:hover {
  opacity: 0.7;
}

.p-about__btn-text {
  font-weight: 500;
  font-family: Montserrat;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 1000px) {
  .p-about__btn-text {
    font-size: 18px;
  }
}

/* 矢印画像 */
.p-about__view-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; /* 矢印のサイズ */
  height: auto;
}

.p-access {
  width: 100%;
  padding-block: 80px 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-access {
    padding-block: 100px;
    padding-inline: 40px;
  }
}

.p-access__inner {
  max-width: 1000px;
  margin-inline: auto;
}

.p-access__title {
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.40625;
}

.p-access__content {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-access__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
  }
}

.p-access__map {
  width: 100%;
  /* マップの縦横比調整 */
  aspect-ratio: 16/9;
}
@media screen and (min-width: 768px) {
  .p-access__map {
    width: 45%;
    aspect-ratio: 4/3;
    flex-shrink: 0;
  }
}

.p-access__map iframe {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  /* 画像に合わせて彩度を落とす場合 */
  /* filter: grayscale(100%); */
}

.p-access__info {
  width: 100%;
  margin-top: 80px;
  border-left: 1px solid #2a5e2d;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .p-access__info {
    margin-top: 0;
    width: 55%;
    padding-left: 40px;
  }
}

.p-access__item {
  margin-top: 40px;
}
.p-access__item:first-child {
  margin-top: 0;
}

.p-access__text {
  font-size: clamp(14px, 2.5vw, 22px);
  line-height: 2.8571428571;
  letter-spacing: 0.05em;
}

.p-access__label {
  color: #2a5e2d; /* 緑色 */
  font-weight: bold;
  margin-right: 0.5em;
}

/* 全体の背景色（カンプに合わせて薄いグレーなどを指定してください） */
.p-archive {
  width: 100%;
  padding-block: 40px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-archive {
    padding-block: 100px;
    padding-inline: 40px;
  }
}

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

/* グリッドレイアウト */
.p-archive__list {
  margin-top: 60px;
  display: grid;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-archive__list {
    grid-template-columns: repeat(3, 1fr); /* PCは3列 */
    -moz-column-gap: 30px;
         column-gap: 30px; /* カンプに合わせて少し狭めに調整 */
    row-gap: 50px;
  }
}

/* カード全体 */
.p-archive__item {
  display: block;
  text-decoration: none;
  background: #fff; /* カードの背景は白 */
  border-radius: 12px; /* 角丸 */
  overflow: hidden; /* 画像のはみ出しをカット */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* うっすら影 */
  transition: all 0.3s;
  color: #333;
}
.p-archive__item:hover {
  transform: translateY(-5px); /* ホバー時に少し浮かす */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* 画像エリア */
.p-archive__figure {
  width: 100%;
  aspect-ratio: 16/9; /* 画像の比率を固定（カンプに合わせて調整） */
  margin: 0;
}

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

/* テキストエリア（白背景部分） */
.p-archive__body {
  padding: 25px; /* 内部の余白 */
}

/* タイトル */
.p-archive__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.5555555556;
  /* 長すぎる場合に2行で省略記号を表示（任意） */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 説明文（抜粋） */
.p-archive__text {
  font-size: 14px;
  line-height: 1.7142857143;
  color: #666;
  /* 長すぎる場合に3行で省略記号を表示（任意） */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* WordPressが出力するpタグの余白をリセット */
}
.p-archive__text p {
  margin: 0;
}

/* ページネーションエリア */
.p-archive__pager {
  margin-top: 60px;
  text-align: center;
}

/* 「次のページへ」ボタン */
.p-archive__next-btn {
  display: inline-block;
  padding: 12px 40px;
  background: #fff;
  border: 1px solid #2a5e2d; /* 緑色の枠線 */
  color: #2a5e2d; /* 緑色の文字 */
  text-decoration: none;
  border-radius: 30px; /* 丸いボタン */
  font-weight: 500;
  transition: all 0.3s;
  font-size: 16px;
}
.p-archive__next-btn:hover {
  background: #2a5e2d;
  color: #fff;
}

@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;
}

/* 1. 全体を囲むエリア（基準点） */
.p-page-header {
  position: relative; /* 子要素を絶対配置するための基準 */
  width: 100%;
  height: 122px; /* ★好みの高さに調整してください */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-page-header {
    height: 310px; /* ★好みの高さに調整してください */
  }
}

/* 2. 背景画像の設定 */
.p-page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* 一番後ろ */
}

.p-page-header__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画像をトリミングして枠いっぱいに表示 */
}

/* 3. 画像の上の黒いフィルター（オーバーレイ） */
.p-page-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* 画像より手前 */
}

/* 4. タイトル（文字）の設定 */
.p-page-header__title {
  position: relative;
  font-weight: 400;
  z-index: 3; /* フィルターよりさらに手前（最前面） */
  color: #fff; /* 白文字 */
  font-size: clamp(18px, 4vw, 44px);
  font-weight: normal; /* 画像に合わせて少し細めにしたい場合 */
  letter-spacing: 0.1em; /* 文字間隔を少し開ける */
  margin: 0;
}

.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-concept {
  width: 100%;
  padding-block: 80px;
  padding-inline: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-concept {
    padding-block: 100px;
  }
}

.p-concept__inner {
  max-width: 800px;
  margin-inline: auto;
}

.p-concept__title {
  font-size: clamp(22px, 4.25vw, 36px);
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.8181818182;
}
.p-concept__text {
  margin-top: 40px;
  font-size: clamp(14px, 3vw, 20px);
  letter-spacing: 0.1em;
  line-height: 2.2857142857;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-concept__text {
    margin-top: 60px;
    line-height: 2.6;
  }
}

/* ====================================
   コンタクトフォーム（最終統合版）
   ==================================== */
/* セクション全体の背景（必要なら） */
.p-contact__title {
  text-align: center !important;
}

/* フォーム本体（白いカード） */
.p-contact-form {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  border-radius: 16px;
  margin-top: 45px;
  /* 背景色・影 */
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  /* 余白 */
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-contact-form {
    padding-block: 80px;
    padding-inline: 80px;
  }
}
@media screen and (min-width: 1000px) {
  .p-contact-form {
    margin-top: 110px;
  }
}

/* 各項目の塊 */
.p-contact-form__item {
  width: 100%;
  margin-top: 40px;
}

.p-contact-form__item:first-child {
  margin-top: 0;
}

/* ------------------------------------
   ラベルエリア（Pタグ対策済み）
   ------------------------------------ */
.p-contact-form__head {
  /* 親枠自体の設定 */
  width: 100%;
  /* Pタグがない場合の保険設定 */
  display: flex;
  align-items: center;
  gap: 15px;
  /* ★重要：Contact Form 7が勝手に入れるPタグを強制整形 */
  /* 改行タグ無効化 */
}
.p-contact-form__head p {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 15px;
  margin: 0 !important;
  padding: 0 !important;
}
.p-contact-form__head br {
  display: none;
}

/* 項目名（ラベル） */
.p-contact-form__label {
  font-weight: bold;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.5;
  margin: 0;
  white-space: nowrap; /* 改行禁止 */
}

/* 必須バッジ */
.p-contact-form__required {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  padding-block: 6px;
  padding-inline: 5px;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  background-color: #333;
  color: #fff;
}

/* ------------------------------------
   入力エリア
   ------------------------------------ */
.p-contact-form__body {
  width: 100%;
  margin-top: 15px;
}

/* 姓・名エリア */
.p-contact-form__body--name {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__body--name {
    flex-direction: row;
    gap: 30px;
  }
}

.p-contact-form__name-wrap {
  width: 100%;
}

/* 入力欄共通（テキスト、メール、電話） */
.p-contact-form__input {
  width: 100%;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  padding-block: 15px;
  padding-inline: 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #f5f5f5;
}

/* テキストエリア */
.p-contact-form__textarea {
  width: 100%;
  height: 240px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  padding: 20px;
  resize: vertical;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #f5f5f5;
}

/* プレースホルダー（入力例）の色 */
.p-contact-form__input::-moz-placeholder, .p-contact-form__textarea::-moz-placeholder {
  color: #bbb;
}
.p-contact-form__input::placeholder,
.p-contact-form__textarea::placeholder {
  color: #bbb;
}

/* ------------------------------------
   ラジオボタン
   ------------------------------------ */
.wpcf7-list-item {
  display: inline-block;
  margin: 0;
  margin-inline-end: 30px;
}

.wpcf7-list-item-label {
  margin-inline-start: 8px;
  font-weight: 500;
  cursor: pointer;
}

/* ------------------------------------
   送信ボタン（Pタグ対策済み）
   ------------------------------------ */
.p-contact-form__footer {
  margin-top: 60px;
  text-align: center;
  /* 勝手に入るPタグの余白を消して邪魔させない */
}
.p-contact-form__footer p {
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
}

/* 送信ボタン本体 */
.p-contact-form__submit {
  /* ★重要：ブロック要素にして強制中央揃え */
  display: block;
  margin-inline: auto;
  width: 100%;
  max-width: 400px;
  border: none;
  border-radius: 100px;
  font-weight: bold;
  font-size: 16px;
  padding-block: 20px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: opacity 0.3s;
  /* 色指定 */
  background-color: #e3c546;
  color: #fff;
}

.p-contact-form__submit:hover {
  opacity: 0.8;
}

/* ====================================
   サンクスページ（完全版）
   ==================================== */
/* セクション全体（背景色：ベージュ） */
.p-thanks {
  width: 100%;
  background-color: #e6e6e3; /* 背景色 */
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-thanks {
    padding-block: 80px;
  }
}

/* インナー幅制限 */
.p-thanks__inner {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}

/* ------------------------------------
   タイトルエリア
   ------------------------------------ */
.p-contact__title {
  text-align: center;
  width: 100%;
}

.p-about__title {
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.p-about__subtitle {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.5;
  margin-top: 10px;
}

/* ------------------------------------
   白いカード部分
   ------------------------------------ */
.p-thanks__card {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  border-radius: 16px;
  background-color: #fff; /* 白背景 */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* 影 */
  padding-block: 60px;
  padding-inline: 20px;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-thanks__card {
    padding-block: 100px;
    padding-inline: 40px;
    margin-top: 60px;
  }
}

/* 完了メッセージ見出し */
.p-thanks__heading {
  text-align: center;
  font-weight: bold;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
}

/* 本文エリア */
.p-thanks__body {
  width: 100%;
  margin-top: 30px;
}

/* 本文テキスト */
.p-thanks__text {
  text-align: left;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-thanks__text {
    line-height: 1.75;
    text-align: center;
  }
}

/* ------------------------------------
   ボタンエリア
   ------------------------------------ */
.p-thanks__footer {
  width: 100%;
  margin-top: 50px;
  text-align: center;
}

/* ホームに戻るボタン */
.p-thanks__btn {
  display: block;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  border-radius: 100px;
  text-decoration: none;
  font-weight: bold;
  background-color: #e3c546;
  color: #fff;
  padding-block: 20px;
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 1;
  transition: opacity 0.3s;
}

.p-thanks__btn:hover {
  opacity: 0.8;
}

/* -------------------------------------------------- */
/* 共通CTAセクション (Contact, Recruit, Access等に利用可) */
/* -------------------------------------------------- */
.c-cta-area {
  background: #747474;
  color: #fff; /* テキストの色（白系） */
  padding-block: 80px;
}
@media screen and (min-width: 768px) {
  .c-cta-area {
    padding-block: 110px;
  }
}

/* コンテンツ幅とグリッドレイアウト */
.c-cta-area__inner {
  width: 90%;
  max-width: 1200px; /* 最大幅 */
  margin: 0 auto;
  display: flow;
  /* 左(タイトル):右(内容) = 1 : 1.5 の比率で分割 */
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .c-cta-area__inner {
    align-items: center;
    display: grid;
  }
}

/* -------------------------------------------------- */
/* 左側: セクションタイトルエリア */
/* -------------------------------------------------- */
.c-cta-area__title {
  font-family: "Times New Roman", Times, serif; /* 欧文フォント */
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em; /* 広めの字間 */
}

.c-cta-area__subtitle {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif; /* 和文フォント（明朝体） */
  font-size: 18px;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

/* -------------------------------------------------- */
/* 右側: コンテンツボディエリア */
/* -------------------------------------------------- */
.c-cta-area__body {
  text-align: center;
  margin: 0 auto;
}

/* リード文 */
.c-cta-area__lead {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.07em;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .c-cta-area__lead {
    font-size: 20px;
    margin-top: 0;
  }
}

/* 電話番号などの強調テキスト */
.c-cta-area__highlight {
  font-size: clamp(38px, 5vw, 48px);
  font-weight: 500;
  margin-top: 15px;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

/* 受付時間などの補足テキスト */
.c-cta-area__note {
  font-size: 14px;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-cta-area__note {
    font-size: 16px;
  }
}

/* -------------------------------------------------- */
/* ボタンエリア */
/* -------------------------------------------------- */
.c-cta-area__actions {
  display: flex;
  flex-direction: column; /* ボタンを縦に並べる */
  gap: 30px;
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .c-cta-area__actions {
    margin-top: 50px;
  }
}

/* ゴールドボタン共通スタイル */
.c-gold-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 18px;
  max-width: 440px;
  margin: 0 auto;
  background-color: #e8c642; /* ボタンの色（ゴールド/黄色系） */
  color: #333; /* ボタンテキストの色 */
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
  border: none;
  cursor: pointer;
}

.c-gold-btn:hover {
  opacity: 0.7;
}

.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;
}

.header {
  height: 40px;
  margin-top: -10px;
  margin-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .header {
    height: 70px;
    max-width: 1000px;
    margin: 50px auto;
  }
}
@media screen and (min-width: 1000px) {
  .header {
    max-width: 1350px;
  }
}
@media screen and (min-width: 1440px) {
  .header {
    max-width: 1320px;
  }
}

.header__inner {
  height: inherit;
  display: flex;
  justify-content: right;
}
@media screen and (min-width: 768px) {
  .header__inner {
    margin: auto;
    justify-content: space-between;
    width: 97%;
  }
}
@media screen and (min-width: 1440px) {
  .header__inner {
    width: 102%;
  }
}

.header__nav-sub {
  font-size: 11px;
  display: contents;
}

.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-sp {
  position: absolute;
  top: 40px;
  left: 75px;
  transform: translateX(-50%);
  max-width: 110px;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__logo-sp {
    display: none;
  }
}

.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-right: 30px;
  height: inherit;
  display: flex;
  text-align: center;
  align-items: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  color: #333;
}

.header__hamburger {
  height: 34px;
  top: 9px;
  right: 20px;
  border-radius: 5px;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.5rem;
  background: unset;
  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: 1.875rem;
  height: 1px;
  background-color: #4d4945;
  transition: 0.5s;
}

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

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

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

.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(42, 94, 45, 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: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.header__drawerButton {
  padding: 14px 10px !important;
  width: 210px;
  margin-top: 15px !important;
}
@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;
  }
}

.header__hamburger-text {
  color: #4d4945;
  font-size: 10px;
  position: relative;
  top: 3px;
}

/* ====================================
   会社情報セクション
   ==================================== */
.p-info {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-block: 40px;
  padding-inline: 20px;
  background: #fff; /* 親セクション自体の背景は白 */
}
@media screen and (min-width: 768px) {
  .p-info {
    padding-block: 100px;
    padding-inline: 40px;
  }
}

/* 文字などを手前に浮かす設定 */
.p-info__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin-inline: auto;
}

.p-info__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  max-width: 600px;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-info__bg {
    width: 30%;
  }
}
@media screen and (min-width: 1000px) {
  .p-info__bg {
    width: 25%;
  }
}
.p-info__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
  transform: translateX(-100vw);
  filter: drop-shadow(100vw 0 0 #2a5e2d);
}

.p-info__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}

.p-info__inner {
  max-width: 1000px;
  margin-inline: auto;
}

.p-info__title {
  text-align: center;
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1000px) {
  .p-info__title {
    text-align: left;
    margin-left: 100px;
  }
}

.p-info__list {
  margin-top: 40px;
  border-left: 1px solid #2a5e2d;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .p-info__list {
    margin-top: 120px;
    padding-left: 40px;
  }
}

.p-info__row {
  margin-top: 40px;
}
.p-info__row:first-child {
  margin-top: 0;
}

.p-info__term {
  color: #2a5e2d;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
}

.p-info__desc {
  margin-top: 15px;
  margin-left: 20px;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 2;
  letter-spacing: 0.05em;
}

.p-info__note {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9em;
}

.p-member {
  width: 100%;
  background: #fbf8eb;
  padding-block: 80px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-member {
    padding-block: 100px;
    padding-inline: 40px;
  }
}

.p-member__inner {
  max-width: 1000px;
  margin-inline: auto;
}

.p-member__title {
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  color: #2a5e2d; /* 緑色 */
}

.p-member__lead {
  margin-top: 30px;
  font-size: clamp(14px, 1.5vw, 22px);
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
}

.p-member__list {
  margin-top: 60px;
  display: grid;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-member__list {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 40px;
         column-gap: 40px;
    row-gap: 60px;
    margin-top: 80px;
    /* ▼▼▼ 追加：最後の1人だけ真ん中（2列目）に配置 ▼▼▼ */
    /* ▲▲▲ 追加ここまで ▲▲▲ */
  }
  .p-member__list .p-member__item:last-child {
    grid-column: 2; /* 3列あるうちの「2列目」を指定 */
  }
}
@media screen and (min-width: 1000px) {
  .p-member__list {
    margin-top: 110px;
    row-gap: 110px;
  }
}

/* メンバーアイテムの初期状態 */
.p-member__item.js-member-fade {
  opacity: 0; /* 最初は透明 */
  visibility: hidden; /* 読み上げやクリックも防止 */
  transform: translateY(40px); /* 少し下に配置 */
  /* GSAPで制御するため、ここでの transition 設定は不要です */
}

.p-member__item {
  width: 100%;
}

.p-member__figure {
  width: 100%;
  aspect-ratio: 1/1; /* 正方形を維持 */
  border-radius: 6px;
  margin: 0 auto;
  overflow: hidden;
  max-width: 400px;
  background-color: #ddd; /* 画像読み込み前のグレー */
}

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

.p-member__body {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-member__body {
    margin-top: 30px;
  }
}

.p-member__name {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.p-member__position {
  font-size: 14px;
  margin-left: 10px;
  font-weight: 400;
  color: #9b9b9b;
}

.p-member__text {
  margin-top: 15px;
  line-height: 1.6;
  text-align: left; /* テキストは左揃え */
}

.p-message {
  width: 100%;
  background-color: #fff;
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-message {
    padding-block: 80px;
    padding-inline: 40px;
  }
}

.p-message__inner {
  max-width: 1400px;
  margin-inline: auto;
  border-block: 10px solid #e0e0e0;
  padding-block: 40px;
}
@media screen and (min-width: 768px) {
  .p-message__inner {
    padding-inline: 40px;
  }
}

.p-message__figure {
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
  /* margin-bottom削除 */
}
@media screen and (min-width: 768px) {
  .p-message__figure {
    flex-shrink: 0;
    margin-inline: 0;
    max-width: 420px;
  }
}

.p-message__figure img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  vertical-align: bottom;
}

.p-message__body {
  width: 100%;
  text-align: center;
  margin: 40px auto;
  max-width: 450px;
}
@media screen and (min-width: 768px) {
  .p-message__body {
    text-align: left;
    margin-top: 0;
    max-width: none;
  }
}

@media screen and (min-width: 768px) {
  .p-message__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    padding-block: 60px;
    max-width: 1000px;
    margin: 0 auto;
  }
}

.p-message__title {
  font-size: clamp(22px, 4vw, 40px);
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.2727272727;
  text-align: center;
  color: #2a5e2d;
  font-weight: 500;
}

.p-message__text {
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 2;
  letter-spacing: 0.06em;
  margin-top: 32px;
  text-align: left;
}
@media screen and (min-width: 1000px) {
  .p-message__text {
    margin-top: 40px;
  }
}

.p-message__sign {
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  margin-top: 40px;
}
@media screen and (min-width: 1000px) {
  .p-message__sign {
    text-align: right;
  }
}

.p-mv {
  width: 85%;
  text-align: center;
}
.p-mv__images {
  position: relative;
}

.p-mv__main-text {
  display: block; /* 独立したブロックにする */
  font-size: clamp(27px, 5vw, 42px);
  line-height: 1.2; /* 日本語の行間を締める */
  font-weight: 400;
}

.p-mv__sub-text {
  display: block; /* これが重要：ブロックにしないとline-heightが効きにくい */
  font-size: clamp(12px, 2.5vw, 14px);
  line-height: 1.7857142857;
  margin-top: 16px;
  /* br自体をブロック化して余計な隙間を消す */
}
.p-mv__sub-text br {
  display: block; /* br自体をブロック化して余計な隙間を消す */
  content: "";
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-mv__sub-text {
    padding-left: 150px;
  }
}

.p-mv__main-text,
.p-mv__sub-text {
  display: inline-block;
  /* backgroundの4番目の数字（0.8）が透明度です。0〜1の間で調整してください */
  /* 1に近いほど濃く、0に近いほど透明になります */
  background-color: rgba(255, 255, 255, 0.7);
  /* 文字の色は不透明（100%）な濃いグレーに設定 */
  color: #3e3a39;
  padding: 10px 20px;
  opacity: 1;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-mv__main-text,
  .p-mv__sub-text {
    background-color: transparent;
    padding: 0;
    text-align: center;
  }
}

.p-mv__title {
  font-weight: 400;
  position: absolute;
  top: 77%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  font-weight: 500;
  min-width: 200px;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    top: 36%;
    left: 95%;
  }
}
@media screen and (min-width: 1000px) {
  .p-mv__title {
    letter-spacing: 0.03em;
  }
}

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

.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 > * {
  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 img {
  width: 100%;
  height: auto;
  border-radius: 0 0 16px 0;
  -o-object-fit: cover;
     object-fit: cover;
}

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

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

.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-mv__scroll {
  position: absolute;
  right: -10%; /* 右端からの距離 */
  top: 55%;
  z-index: 10; /* 画像より上に表示 */
  display: flex;
  flex-direction: column; /* 縦並び */
  align-items: center;
  gap: 10px; /* 文字と線の間隔 */
}

/* "Scroll" テキストの設定 */
.p-mv__scroll-text {
  font-family: "Times New Roman", Times, serif; /* 明朝・セリフ体 */
  font-size: 12px;
  letter-spacing: 0.1em;
  /* 文字を縦書きにする */
  writing-mode: vertical-rl;
}

/* 線の設定（アニメーションの枠） */
.p-mv__scroll-line {
  width: 1px; /* 線の太さ */
  height: 200px; /* 線の長さ */
  background-color: #ccc; /* 薄いグレー（背景の線） */
  position: relative;
  overflow: hidden; /* アニメーションが枠外に出ないように */
}

/* 動く線の設定（擬似要素） */
.p-mv__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3e3a39; /* 濃い色（動く線） */
  /* アニメーションの実行 */
  animation: scrollLine 2s infinite;
}

/* アニメーションの定義 */
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.p-news {
  position: relative;
}

.p-news__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 117%;
  padding-inline: 20px;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-news__content {
    width: 100%;
    flex-direction: row-reverse;
    padding-inline: 0px;
  }
}
@media screen and (min-width: 1000px) {
  .p-news__content {
    position: relative;
    top: -100px;
  }
}

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

.p-news__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-items: baseline;
  border-radius: 4px;
  background: #585555;
  padding: 14px 20px;
  max-width: 180px;
  margin: 10px auto 0;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  bottom: -150px;
  /* --- フォントオーサム（アイコン）のスタイル --- */
}
@media screen and (min-width: 768px) {
  .p-news__button {
    margin-top: 16px;
    padding: 10px 20px;
    position: static;
    bottom: auto;
  }
}
@media screen and (min-width: 1000px) {
  .p-news__button {
    margin-top: 1.875rem;
    padding: 10px 10px;
  }
}
.p-news__button i {
  color: #fff;
  font-size: 16px;
}
.p-news__button p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
.p-news__button:hover {
  opacity: 0.8;
}

.p-news__box {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  padding: 0px 15px 160px;
  border-radius: 0px 0px 16px 16px;
  max-width: 440px;
  margin-top: -10px;
}
@media screen and (min-width: 768px) {
  .p-news__box {
    padding: 57px 15px 0 30px;
    height: 255px;
    max-width: 500px;
    border-radius: 0px 16px 16px 0px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1000px) {
  .p-news__box {
    padding: 71px 70px 51px 0px;
    max-width: 700px;
    width: 700px;
    gap: 33px;
  }
}
@media screen and (min-width: 1440px) {
  .p-news__box {
    width: 700px;
    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__item {
  text-decoration: none;
  display: block;
}
.p-news__item:first-child .p-news__contentWrapper {
  border-top: 1px solid #e6e5e0;
}
@media screen and (min-width: 768px) {
  .p-news__item:first-child .p-news__contentWrapper {
    border-top: none;
  }
}

.p-news__contentWrapper {
  flex-grow: 1;
  border-bottom: 1px solid #e6e5e0;
  padding: 25px 0px;
}
@media screen and (min-width: 768px) {
  .p-news__contentWrapper {
    border-bottom: none;
    padding: 0;
  }
}
@media screen and (min-width: 1000px) {
  .p-news__contentWrapper {
    flex-grow: 0;
    padding-left: 40px;
  }
}

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

.p-news__infoCategory {
  background: #899f83;
  color: #fff;
  font-size: 16px;
  padding: 0.3125rem 0.3125rem;
  font-weight: 500;
  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: 16px;
    padding: 0.1875rem 0.625rem;
    min-width: 110px;
  }
}
.p-newsArchive__infoCategory,
.p-newsArchive__infoDate {
  font-size: clamp(18px, 2vw, 22px);
}

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

.p-news__infoDate {
  font-size: 16px;
  line-height: 1;
  margin-left: 10px;
}
@media screen and (min-width: 1000px) {
  .p-news__infoDate {
    font-weight: 400;
    font-size: 17px;
    margin-left: 0;
  }
}

/* 記事タイトル */
.p-news__title {
  font-size: 16px;
  margin-top: 14px;
  line-height: 1.3333333333;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media screen and (min-width: 768px) {
  .p-news__title {
    font-size: 17px;
    line-height: 1;
    margin-top: 0px;
  }
}
.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: #2a5e2d; /* テキストの色 */
  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-news__button i {
  font-size: 18px;
}

.p-news__no-posts {
  margin-top: 20px;
}

/* ====================================
   ニュース一覧ページ専用スタイル
   ==================================== */
.p-newsArchive {
  width: 100%;
  padding-block: 80px;
}
@media screen and (min-width: 768px) {
  .p-newsArchive {
    padding-block: 100px;
  }
}

.p-newsArchive__container {
  max-width: 800px; /* リストの横幅を制限 */
  margin-inline: auto;
}

/* --- 白い箱（リスト全体） --- */
.p-newsArchive__list {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* うっすら影 */
}
@media screen and (min-width: 768px) {
  .p-newsArchive__list {
    padding: 50px 60px;
  }
}

/* --- 各記事アイテム --- */
.p-newsArchive__item {
  display: block;
  text-decoration: none;
  border-bottom: 1px solid #e0e0e0; /* 下線 */
  padding-block: 25px;
  transition: opacity 0.3s;
}
.p-newsArchive__item:first-child {
  padding-top: 0;
}
.p-newsArchive__item:last-child {
  border-bottom: none; /* 最後の線は消す */
  padding-bottom: 0;
}
.p-newsArchive__item:hover {
  opacity: 0.7;
}

/* --- メタ情報（カテゴリラベル + 日付） --- */
.p-newsArchive__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

/* カテゴリラベル */
.p-newsArchive__cat {
  background-color: #899f83; /* 緑色 */
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  font-weight: 500;
  display: inline-block;
}

/* 日付 */
.p-newsArchive__date {
  font-size: 14px;
  letter-spacing: 0.05em;
  font-family: "Yu Mincho", serif; /* 雰囲気に合わせて明朝体など */
}

/* --- タイトル --- */
.p-newsArchive__title {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .p-newsArchive__title {
    font-size: 18px;
  }
}

/* --- ページネーション --- */
.p-newsArchive__pager {
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
  /* ページャーの数字やボタンのスタイル */
}
.p-newsArchive__pager .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  /* 現在のページ */
  /* "次へ"などのテキストリンクの場合幅調整 */
}
.p-newsArchive__pager .page-numbers.current {
  background: #899f83; /* 緑色 */
  color: #fff;
  border-color: #899f83;
}
.p-newsArchive__pager .page-numbers:hover:not(.current) {
  background: #f0f0f0;
}
.p-newsArchive__pager .page-numbers.next, .p-newsArchive__pager .page-numbers.prev {
  width: auto;
  padding: 0 15px;
}

/* ====================================
   ニュース詳細ページ
   ==================================== */
.p-newsDetail {
  width: 100%;
  background-color: #fff;
  margin-top: 130px;
  margin-bottom: 20px;
  padding-block: 60px 80px;
}
@media screen and (min-width: 768px) {
  .p-newsDetail {
    padding-block: 120px;
    margin-bottom: 40px;
  }
}

.p-newsDetail__inner {
  max-width: 800px; /* 記事が読みやすい幅に制限 */
  margin-inline: auto;
  padding-inline: 20px;
}

/* --- ヘッダー情報 --- */
.p-newsDetail__header {
  margin-bottom: 60px;
}

.p-newsDetail__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.p-newsDetail__cat {
  background-color: #899f83; /* 落ち着いた緑 */
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  font-weight: 500;
  display: inline-block;
}
@media screen and (min-width: 1000px) {
  .p-newsDetail__cat {
    font-size: 16px;
  }
}

.p-newsDetail__date {
  font-size: 14px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1000px) {
  .p-newsDetail__date {
    font-size: 16px;
  }
}

.p-newsDetail__title {
  /* 白飛びしていた原因（color: #fff）を排除し、サイト共通の黒系に */
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.5;
  font-weight: normal;
  letter-spacing: 0.05em;
}

/* --- アイキャッチ画像 --- */
.p-newsDetail__thumb {
  margin-bottom: 60px;
  width: 100%;
}
.p-newsDetail__thumb img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* 角を少し丸める */
}

/* --- 本文エリア（WordPressが出力するタグへのスタイル） --- */
.p-newsDetail__content {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 80px;
  /* 本文内の段落の余白 */
  /* 本文内の見出し */
}
@media screen and (min-width: 768px) {
  .p-newsDetail__content {
    font-size: 18px;
  }
}
@media screen and (min-width: 1000px) {
  .p-newsDetail__content {
    font-size: 20px;
  }
}
.p-newsDetail__content p {
  margin-bottom: 2em;
}
.p-newsDetail__content h2 {
  font-size: 20px;
  border-left: 4px solid #2a5e2d;
  padding-left: 15px;
  margin-block: 40px 20px;
}
@media screen and (min-width: 768px) {
  .p-newsDetail__content h2 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1000px) {
  .p-newsDetail__content h2 {
    font-size: 26px;
  }
}
.p-newsDetail__content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-block: 30px 15px;
}
@media screen and (min-width: 768px) {
  .p-newsDetail__content h3 {
    font-size: 22px;
  }
}
@media screen and (min-width: 1000px) {
  .p-newsDetail__content h3 {
    font-size: 24px;
  }
}

/* --- 戻るボタン --- */
.p-newsDetail__footer {
  text-align: center;
  margin-top: 80px;
}

.p-newsDetail__back {
  color: #2a5e2d; /* 緑色の文字 */
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  letter-spacing: 0.1em;
  position: relative;
  transition: opacity 0.3s;
  /* ホバー時の挙動 */
  /* 左側の矢印アイコンなどをつけたい場合 */
  /*
  &::before {
    content: "«";
    margin-right: 10px;
  }
  */
}
.p-newsDetail__back:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .p-newsDetail__back {
    font-size: 20px;
  }
}

#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: #2a5e2d;
  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: #2a5e2d;
  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%;
  text-align: center;
  padding-block: 100px;
}
@media screen and (min-width: 1000px) {
  .p-service {
    padding-block: 100px 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-service__list {
  display: grid;
  grid-template-columns: 1fr; /* スマホ：1列 */
  gap: 50px 20px; /* 上下40px, 左右20pxの間隔 */
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-service__list {
    grid-template-columns: repeat(3, 1fr); /* PC：3列 */
    gap: 60px 40px; /* PCでは間隔を少し広げる */
  }
}

/* 個々のアイテム */
.p-service__item {
  display: block;
  text-decoration: none;
  color: #333; /* 文字色 */
  transition: opacity 0.3s ease;
}
.p-service__item:hover {
  opacity: 1;
}

/* 画像エリア */
.p-service__figure {
  margin: 0;
  width: 100%;
  overflow: hidden;
}
.p-service__figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2; /* 画像比率を3:2に固定 */
  -o-object-fit: cover;
     object-fit: cover; /* 比率に合わせてトリミング */
  display: block;
}

/* テキストと矢印のエリア */
.p-service__body {
  display: block; /* ★Flexをやめて縦積みに変更 */
  margin-top: 15px;
}

/* タイトル */
.p-service__title {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  -moz-text-align-last: left;
       text-align-last: left;
  margin-bottom: -5px; /* ★タイトルと矢印の間に隙間を作る */
  font-family: serif;
  line-height: 1.4; /* 行間を整える */
}
@media screen and (min-width: 768px) {
  .p-service__title {
    font-size: 20px;
  }
}

/* 矢印画像 */
/* 矢印画像 */
.p-service__arrow {
  width: 40%;
  height: auto;
  display: block;
  margin-top: 3px;
  /* ★重要1：アニメーションを滑らかにする */
  transition: transform 0.3s ease;
  /* ★重要2：左端を基準点にする（ここを基点に右へ伸びる） */
  transform-origin: left center;
}
@media screen and (min-width: 768px) {
  .p-service__arrow {
    width: 45%;
  }
}

/* ------------------------------------
   ホバー時のアニメーション（タブレット以上）
   ------------------------------------ */
@media screen and (min-width: 768px) {
  /* 親要素（.p-service__item）をホバーした時に、矢印（.p-service__arrow）を変形させる */
  .p-service__item:hover .p-service__arrow {
    transform: scaleX(1.3); /* 横に1.2倍伸びる */
  }
}
.p-service__view {
  width: 10%;
  height: auto;
  display: block;
}

/* ボタンエリア（中央寄せと余白） */
.p-service__btn-area {
  margin-top: 100px; /* リストとの間隔 */
  text-align: center;
}

/* ボタン本体 */
/* ボタン本体 */
/* ボタン本体 */
.p-service__btn {
  display: flex; /* Flexboxにする */
  align-items: center; /* 上下中央揃え */
  justify-content: center; /* ★テキストを左右中央に配置 */
  position: relative; /* ★画像を絶対配置する基準点 */
  font-family: Montserrat;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  font-family: serif;
  font-size: 18px;
  /* ボタンのサイズ調整 */
  width: 100%;
  max-width: 450px;
  height: 50px;
  padding: 0 20px;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}
.p-service__btn:hover {
  opacity: 0.7;
}

/* テキスト */
.p-service__btn-text {
  font-weight: 500;
  /* 余白などは指定せず、親のjustify-content: centerに任せる */
}

/* 矢印画像（右端に固定） */
.p-service__view {
  position: absolute; /* ★絶対配置 */
  right: 20px; /* ★右端から20pxの位置 */
  top: 50%; /* 上から50%の位置 */
  transform: translateY(-50%); /* 完全に上下中央にする補正 */
  width: 30px; /* ★画像の幅を指定（デザインに合わせて調整してください） */
  height: auto;
}

.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: #2a5e2d;
  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;
}

/* ====================================
   詳細ページ：メインレイアウト
   ==================================== */
.p-workDetail {
  width: 100%;
  padding-bottom: 100px;
}

@media screen and (min-width: 768px) {
  .p-workDetail__inner {
    max-width: 1150px;
    margin-inline: auto;
    padding-inline: 20px;
  }
}

/* 1. 一番上の大きな画像 */
.p-workDetail__main {
  margin-bottom: 60px;
  width: 100%;
}

.p-workDetail__main img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1000px) {
  .p-workDetail__main img {
    border-radius: 8px; /* 角を少し丸める */
  }
}

/* 2. タイトルと説明文エリア */
.p-workDetail__header {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.p-workDetail__title {
  font-size: clamp(22px, 4vw, 44px);
  letter-spacing: 0.1em;
  font-family: serif; /* 明朝体風のデザインに合わせて */
}

.p-workDetail__subTitle {
  font-size: clamp(24px, 4vw, 32px);
  margin-top: 10px;
  font-weight: normal;
}

.p-workDetail__desc {
  font-size: 15px;
  margin-top: 30px;
  line-height: 2;
  text-align: left;
  padding-inline: 35px;
}
@media screen and (min-width: 768px) {
  .p-workDetail__desc {
    font-size: 20px;
  }
}

/* ====================================
   3. ギャラリーエリア（ここが重要）
   ==================================== */
.p-workDetail__gallery {
  display: grid;
  width: 100%;
  gap: 30px; /* 画像と画像の間隔 */
  margin-top: 80px;
  /* スマホは1列 (デフォルト) */
  grid-template-columns: 1fr;
  /* タブレットは2列 */
  /* PCは3列 */
}
@media screen and (min-width: 768px) {
  .p-workDetail__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media screen and (min-width: 1000px) {
  .p-workDetail__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 個別のアイテム（画像＋キャプション） */
.p-workDetail__item {
  width: 100%;
  padding-inline: 15px;
  max-width: 550px;
  margin: 0 auto;
}

/* 画像枠 */
.p-workDetail__figure {
  margin: 0;
  width: 100%;
  aspect-ratio: 4/3; /* 画像の比率を固定（横長） */
  overflow: hidden;
  border-radius: 4px;
}

/* 画像本体 */
.p-workDetail__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 枠いっぱいにトリミングして表示 */
  transition: transform 0.3s;
}
.p-workDetail__figure img:hover {
  transform: scale(1.05); /* ホバーで少し拡大 */
}

/* キャプション（テキスト） */
.p-workDetail__caption {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-workDetail__caption {
    font-size: 18px;
  }
}

/* ====================================
   戻るボタン
   ==================================== */
.p-workDetail__footer {
  text-align: center;
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .p-workDetail__footer {
    margin-top: 100px;
  }
}

.p-workDetail__back {
  /* ボタンの形状を作るために必須 */
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 100px; /* 丸い形状 */
  /* ★ボタンデザインのため例外的に色を指定します */
  background-color: #fff;
  color: #2a5e2d;
  /* フォントサイズ: clamp(最小, 推奨, 最大) */
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1;
  /* 余白（SP版） */
  padding-block: 15px;
  padding-inline: 40px;
  /* 余白（PC版） */
  /* ホバーアニメーション */
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .p-workDetail__back {
    padding-block: 20px;
    padding-inline: 80px;
  }
}
.p-workDetail__back:hover {
  opacity: 0.7;
}

/* 右側の矢印（＞） */
.p-workDetail__back::after {
  content: "＞";
  margin-left: 20px;
  font-weight: normal;
  font-size: 0.9em;
} /* ====================================
 ライトボックス画像の強制拡大設定
 ==================================== */
/* 1. 画像を包む枠を画面いっぱいに広げる */
.lum-lightbox-image-wrapper {
  display: flex !important;
  width: 100vw !important;
  height: 100vh !important;
  justify-content: center !important;
  align-items: center !important;
}

/* 2. 画像自体を画面サイズに合わせて拡大・縮小させる */
.lum-img {
  /* 幅を画面の85%に強制設定（これで小さい画像も引き伸ばされます） */
  width: 85vw !important;
  height: auto !important;
  /* ただし、縦長すぎて画面からはみ出る場合は高さ基準に切り替える */
  max-height: 80vh !important;
  max-width: 66vw !important;
  /* 画像の比率を保ったまま収める */
  -o-object-fit: contain !important;
     object-fit: contain !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
}

/* ====================================
   ライトボックスのクリック制御（スマホ無効化）
   ==================================== */
.js-lightbox {
  /* 【スマホ（標準）の設定】 */
  /* クリックを無効化する（これで何も起きなくなります） */
  pointer-events: none;
  cursor: default;
  /* 【タブレット以上（768px〜）の設定】 */
}
@media screen and (min-width: 768px) {
  .js-lightbox {
    /* クリックできるように戻す */
    pointer-events: auto;
    cursor: zoom-in; /* カーソルを虫眼鏡にする */
  }
}

@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;
}

.u-visible-sp {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .u-visible-sp {
    display: none !important;
  }
}

.u-visible-pc {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .u-visible-pc {
    display: block !important;
  }
}
/*# sourceMappingURL=style.css.map */
