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

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 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: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #262830;
}

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

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

.l-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding-right: 25px;
    padding-left: 25px;
    max-width: 1250px;
  }
}

.l-news {
  max-width: 61.625rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.l-pager {
  margin-top: 6.25rem;
  padding-top: 3.3125rem;
  border-top: 1px solid #6b6b6c;
}

.post-type-archive-info .l-pager {
  border-top: none;
}

.l-post-connect {
  margin-top: 1rem;
}

.c-breadcrumb {
  padding: 1rem 0;
}

.c-breadcrumb a {
  color: #0068b7;
}

.c-btn {
  display: inline-block;
  min-width: 200px;
  padding: 10px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  background-color: #0068b7;
  border: 1px solid #0068b7;
  transition: 0.3s;
}

.c-btn::after {
  content: "";
  display: inline-block;
  margin-left: 16px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}

.c-btn:hover {
  text-decoration: none;
  background-color: #fff;
  color: #0068b7;
  opacity: 1;
  cursor: pointer;
}

.c-btn:hover::after {
  border-top: 1px solid #0068b7;
  border-right: 1px solid #0068b7;
  transform: translateX(5px) rotate(45deg);
}

* {
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}

.btn-blue a {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}
.btn-blue a.learn-more {
  width: 12rem;
  height: auto;
}
.btn-blue a.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 2.8rem;
  height: 2.8rem;
  background: #0068b7;
  border-radius: 1.625rem;
}
.btn-blue a.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.btn-blue a.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
.btn-blue a.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.1rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
.btn-blue a.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 2.85rem;
  color: #0068b7;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}
.btn-blue a:hover .circle {
  width: 100%;
  opacity: 1;
}
.btn-blue a:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
.btn-blue a:hover .button-text {
  color: #fff;
}

@supports (display: grid) {
  .container {
    grid-area: main;
    align-self: center;
    justify-self: center;
  }
}
.btn-blue a:hover {
  opacity: 1;
}
/* 画面幅が767px以下の場合にホバー効果を無効にする */
@media screen and (max-width: 767px) {
  .btn-blue a:hover .circle {
    width: 2.8rem; /* 元のサイズに戻す */
    opacity: 1; /* デフォルトの不透明度 */
  }
  .btn-blue a:hover .circle .icon.arrow {
    background: none; /* 背景色をリセット */
    transform: none; /* トランスフォームをリセット */
  }
  .btn-blue a:hover .button-text {
    color: #0068b7; /* 元のテキストカラーに戻す */
  }
  .btn-blue a .circle,
  .btn-blue a .circle .icon.arrow,
  .btn-blue a .button-text {
    transition: none; /* トランジションを無効化 */
  }
}

.bg-gradation {
  background: #f1f9ff;
}

.bg-gradation2 {
  background: linear-gradient(
    to bottom,
    rgba(222, 235, 249, 0.5),
    rgba(163, 189, 218, 0.5)
  );
}

.item-inner {
  max-width: 1000px;
  margin: 60px auto;
}

.item-contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 5rem;
}

.item-contents-right {
  padding-left: 2.5rem;
}

.item-category span {
  font-size: 12px;
  color: #6b6b6c;
  font-weight: 400;
  padding: 2px 6px;
  border: 1px solid #6b6b6c;
  display: inline-block;
}

.item-updated {
  font-size: 14px;
  font-weight: 400;
  color: #262830;
  margin-top: 10px;
}

.item-detail-item01 {
  font-size: 16px;
  font-weight: 400;
  color: #262830;
  padding: 5px 10px;
  background: #fff3b2;
  margin-top: 10px;
}

.item-detail-item02 {
  font-size: 20px;
  line-height: 1.3;
  margin-top: 10px;
}

.item-detail-item03,
.item-detail-item04 {
  font-size: 16px;
  text-align: right;
}

.item-detail-item03 span {
  font-weight: 700;
  font-size: 20px;
  text-decoration: line-through;
  font-family: "Montserrat", sans-serif;
  margin: 10px;
}

.item-outlet {
  font-size: 16px;
  font-weight: bold;
  margin-top: 1.875rem;
}

.item-detail-item04 span {
  font-size: 3.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: #f23d3d;
}

.item-detail-item05,
.item-detail-item06 {
  color: #6b6b6c;
  font-size: 13px;
  font-weight: 400;
  padding: 10px;
}

.item-detail-item05 span,
.item-detail-item06 span {
  color: #262830;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.item-detail-wrap {
  display: flex;
  border-top: 1px solid #d0d0d0;
}

.item-label {
  flex-shrink: 0;
  background-color: rgba(233, 241, 249, 0.2);
  padding: 10px 30px 10px 10px;
}

.item-detail-item05 {
  margin: 0; /* デフォルトの<p>のマージンを解除 */
}

.item-detail-wrap.item06 {
  border-bottom: 1px solid #d0d0d0;
}

.item-field {
  display: block; /* ブロックレベル要素 */
  overflow: hidden; /* 余分なコンテンツを隠す */
  text-overflow: ellipsis; /* 末尾を省略記号で表示 */
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 表示する行数を3行に制限 */
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 767px) {
  .item-contents {
    display: grid;
    grid-template-columns: 1fr;
  }
  .item-contents .item-slider-wrap {
    width: 100%;
  }
  .item-contents-right {
    padding: 15px;
  }
  .item-detail-item02 {
    font-size: 16px;
    line-height: 1.4;
  }
}
.my-carousel-progress {
  background: #ebebeb;
  width: 90%;
  margin: auto;
}

.my-carousel-progress-bar {
  background: #262830;
  height: 6px;
  transition: width 400ms ease;
  width: 0;
}

.splide__track {
  padding-bottom: 2.5rem;
  margin-top: 2.5rem;
}

.splide11 {
  padding-left: 40px;
  padding-right: 40px;
}

.home .item-title h2 {
  font-size: 2.875rem;
}

.home .item-title h2 span {
  font-size: 1rem;
}

.item-title {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.item-title h2 {
  display: inline-flex;
  align-items: center;
}

.c-title h2 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.08em;
  font-size: 4rem;
  font-weight: 700;
  /* text-transform: uppercase; */
  line-height: 1;
  color: #0068b7;
}
.c-title h2::first-letter {
  text-transform: uppercase;
}

.c-title h2 span {
  font-size: 1rem;
  line-height: 1rem;
  letter-spacing: 0.01em;
  display: block;
  margin-top: 1rem;
}

/* .c-title h2::after {
  content: "";
  display: block;
  height: 2px;
  width: 95px;
  background: #0068b7;
  margin-top: 12px;
  margin-left: auto;
  margin-right: auto;
} */

.p-top-info .c-title h2 {
  line-height: 0.88;
}

.p-top-info .c-title h2::after {
  margin-left: 0;
  margin-top: 8px;
}

.p-top-feature {
  padding: 4.5rem 0.9375rem 6.25rem;
  background: rgba(233, 241, 249, 0.2);
  margin-top: 6.25rem;
}

.p-top-feature .feature-recommend-archive {
  margin-top: 3.125rem;
}

.c-title2 h2 {
  text-align: center;
}

.p-top-service .c-title h2::after,
.p-top-reason .c-title h2::after {
  margin-left: 0;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .home .item-title h2 {
    font-size: 28px;
    line-height: 1.3;
  }
  .c-title h2 {
    font-size: 38px;
    line-height: 1.3;
    padding-left: 0;
    padding-right: 0;
  }
  .p-top-info .c-title h2 {
    padding-left: 0;
  }
}
.p-404__title {
  text-align: center;
}

.p-404__btn {
  text-align: center;
}

.p-contact__head {
  width: 15.625rem;
}

.p-contact__item {
  margin-top: 0.375rem;
}

.p-contact__item-example {
  margin-top: 0.375rem;
  color: gray;
}

.p-contact__required {
  color: #fff;
}

.p-contact__policy,
.p-contact__content,
.p-contact__btn {
  margin: 0;
}

.p-contact__policy-link {
  color: blue;
  transition: all 0.3s;
}

.p-contact__btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-contact__btn-wrap {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.p-contact__btn {
  display: inline-block;
  text-align: center;
}

.p-contact__item-text,
.p-contact__item-tel,
.p-contact__item-email,
.p-contact__item-textarea,
.p-contact__item-select {
  margin: 0;
  padding: 0.8em;
  border: 1px solid #b9b9b9;
  border-radius: 0;
  outline: none;
  background: none;
  background-color: #f4f4f4;
  font-size: 1rem;
  color: inherit;
  font-family: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 90%;
}

@media screen and (max-width: 767px) {
  .p-contact__item-text,
  .p-contact__item-tel,
  .p-contact__item-email,
  .p-contact__item-textarea,
  .p-contact__item-select {
    width: 100%;
  }
}
.p-contact__item-text:focus,
.p-contact__item-tel:focus,
.p-contact__item-email:focus,
.p-contact__item-textarea:focus,
.p-contact__item-select:focus {
  border: 1px solid rgba(0, 0, 0, 0.7);
  box-shadow: none;
  outline: none;
}

.p-contact__item-textarea {
  height: 200px;
  resize: none;
  overflow: auto;
}

.p-contact__item-message {
  white-space: pre-wrap;
}

.p-contact__item-select {
  padding-right: 3em;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: right 0.5em center;
  color: inherit;
}

.p-contact__item-select:invalid {
  color: rgba(0, 0, 0, 0.32);
}

.p-contact__item-select select::-ms-expand {
  display: none;
}

.p-contact__item-radio input[type="radio"],
.p-contact__item-checkbox input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.p-contact__item-radio input[type="radio"] + span,
.p-contact__item-checkbox input[type="checkbox"] + span {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 0.5em 1em 0.5em 1.5em;
  color: #333;
  font-size: 1rem;
}

.p-contact__item-radio input[type="radio"]:focus + span,
.p-contact__item-checkbox input[type="checkbox"]:focus + span {
  opacity: 0.7;
}

.p-contact__item-radio input[type="radio"] + span::before,
.p-contact__item-checkbox input[type="checkbox"] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1em;
  height: 1em;
  content: "";
  transform: translateY(-50%);
  background: white;
  border: 1px solid black;
}

.p-contact__item-checkbox input[type="checkbox"]:checked + span::before {
  background: #333;
}

.p-contact__item-radio input[type="radio"]:checked + span::before {
  background: white;
}

.p-contact__item-radio input[type="radio"] + span::before {
  border-radius: 50%;
}

.p-contact__item-radio input[type="radio"] + span::after {
  position: absolute;
  content: "";
  background: #0068b7;
  border: 1px solid transparent;
  border-radius: 50%;
  height: 0.5em;
  left: 0.25em;
  opacity: 0;
  padding: 0.125em;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
  width: 0.5em;
}

.p-contact__item-checkbox input[type="checkbox"] + span::after {
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  content: "";
  display: block;
  height: 0.35em;
  left: 0.15em;
  margin-top: -0.1em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 0.8em;
}

.p-contact__item-checkbox input[type="checkbox"]:checked + span::after,
.p-contact__item-radio input[type="radio"]:checked + span::after {
  opacity: 1;
}

/* button */
.p-contact__btn input[type="submit"],
.p-contact__btn input[type="button"] {
  display: inline-block;
  margin: 0;
  padding: 0.5em 2em;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  background: rgba(0, 0, 0, 0.32);
  color: #333;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 0;
  border: none;
  transition: all 0.3s;
}

.p-contact__btn input[type="submit"]:hover,
.p-contact__btn input[type="button"]:hover,
.p-contact__btn input[type="submit"]:focus,
.p-contact__btn input[type="button"]:focus {
  outline: none;
  opacity: 0.7;
}

.p-contact__item,
.p-contact__btn-submit {
  min-width: 9.375rem;
}

.wpcf7-spinner {
  position: absolute;
}

.p-contact__description {
  font-size: 16px;
  margin-bottom: 30px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
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;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 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: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}
/* フェードイン(初期値) */
.js-fadeUp {
  opacity: 0; /* 最初は非表示 */
   transform: translateY(5px); /* 下に30pxの位置から */
  transition: opacity 0.6s, transform 0.6s; /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: 0.2s;
}

.js-fadeUp2 {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(5px); /* 下に30pxの位置から */
  transition: opacity 0.6s, transform 0.6s; /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp2.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: 0.2s; /* フェード開始を0.5秒遅らせる */
}

.l-inner {
  padding-right: 25px;
  padding-left: 25px;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
  }
}
.l-post-connect {
  margin-top: 1rem;
}

.c-border-pink {
  height: 1.875rem;
  background: #f0238a;
}

.c-breadcrumb {
  padding: 1rem 0;
}

.c-breadcrumb a {
  color: #2589d0;
}

.c-btn {
  display: inline-block;
  min-width: 200px;
  padding: 10px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  background-color: #2589d0;
  border: 1px solid #2589d0;
  transition: 0.3s;
}

.c-btn::after {
  content: "";
  display: inline-block;
  margin-left: 16px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}

.c-btn:hover {
  text-decoration: none;
  background-color: #fff;
  color: #2589d0;
  opacity: 1;
  cursor: pointer;
}

.c-btn:hover::after {
  border-top: 1px solid #2589d0;
  border-right: 1px solid #2589d0;
  transform: translateX(5px) rotate(45deg);
}

.c-btn__simple a {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 1.875rem;
  padding-top: 0.6875rem;
  padding-bottom: 0.40625rem;
  display: block;
  max-width: 27.625rem;
  background-color: #c9a868;
  text-align: center;
  border-radius: 50px;
  line-height: 56px;
}

@media screen and (max-width: 767px) {
  .c-btn__simple a {
    font-size: 1.375rem;
  }
}
.c-contact-button {
  color: #fff;
  background-color: #0068b7;
  font-size: 1rem;
  display: inline-block;
}

/* .c-contact-button::after {
  content: "";
  position: absolute;
  display: block;
  width: 1.7rem;
  height: 1.3rem;
  background-size: cover;
  margin-top: 3px;
  vertical-align: middle;
  background-image: url(../images/top/mail.svg);
  left: 1rem;
} */

@media (max-width: 1500px) {
  .c-contact-button {
    padding: 0.9375rem 1.25rem;
  }
}
@media (max-width: 768px) {
  .c-contact-button {
    padding: 1.25rem 2.1875rem;
  }
  .c-contact-button::after {
    left: 1.5rem;
  }
}
a.c-contact-button:hover {
  opacity: 0.8;
  color: #fff;
}

.c-contact-button1 {
  font-weight: 500;
  font-size: 1.875rem;
  color: #0068b7;
  background: #fff;
  padding: 0.875rem 2.5rem 0.875rem 4.75rem;
  border-radius: 50px;
  border: 2px solid #fff;
  display: inline-block;
  width: 27rem;
  margin-left: auto;
  position: relative;
  letter-spacing: 0.03em;
	font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 767px) {
  .c-contact-button1 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 0.875rem 0.9375rem 0.875rem 2.9375rem;
    font-size: 1.25rem;
    width: auto;
    max-width: 21.875rem;
  }
}
.c-contact-button1::before {
  content: "";
  position: absolute;
  display: block;
  width: 30px; /* 画像の幅 */
  height: 30px; /* 画像の高さ */
  background-size: cover;
  margin-right: 5px;
  margin-top: 6px;
  vertical-align: middle;
  background-image: url(../images/common/tel3.png);
  left: 20%;
}

@media screen and (max-width: 767px) {
  .c-contact-button1::before {
    left: 19%;
    top: 18%;
    width: 23px; /* 画像の幅 */
    height: 23px; /* 画像の高さ */
  }
}
.c-contact-button2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 26px;
  color: #0068b7;
  background: #fff;
  padding: 1.125rem 2.5rem 1.125rem 4.75rem;
  border-radius: 50px;
  display: inline-block;
  width: 27rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .c-contact-button2 {
    width: auto;
    display: block;
    padding: 0.875rem 0.9375rem 0.875rem 2.9375rem;
    font-size: 1.25rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 21.875rem;
  }
}
.c-contact-button2::before {
  content: "";
  position: absolute;
  display: block;
  width: 33px; /* 画像の幅 */
  height: 26px; /* 画像の高さ */
  background-size: cover;
  margin-right: 5px;
  margin-top: 6px;
  vertical-align: middle;
  background-image: url(../images/top/mail.svg);
  left: 9.5rem;
}

@media screen and (max-width: 767px) {
  .c-contact-button2::before {
    width: 26px; /* 画像の幅 */
    height: 19px;
    left: 21%;
    margin-top: 6px;
  }
}
.c-hover-button {
  position: relative;
  z-index: 2;
  margin-left: -1.25rem;
  margin-top: 1.3rem;
}

.c-hover-button a {
  color: #141414;
  padding: 0.7em 0.84em;
  display: inline-block;
  border: 3px solid transparent;
  position: relative;
  font-size: 1.25rem;
  cursor: pointer;
  letter-spacing: 0.07em;
}

.c-hover-button a .text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  transform: translate3d(0, 0.7em, 0);
  display: block;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1) 0.4s;
}

.c-hover-button a:after {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0.84em;
  right: 0.84em;
  height: 3px;
  background: #f0238a;
  transition: transform 0.8s cubic-bezier(1, 0, 0.37, 1) 0.2s,
    right 0.2s cubic-bezier(0.04, 0.48, 0, 1) 0.6s,
    left 0.4s cubic-bezier(0.04, 0.48, 0, 1) 0.6s;
  transform-origin: left;
}

.c-hover-button .line {
  position: absolute;
  background: #f0238a;
}

.c-hover-button .line.-right,
.c-hover-button .line.-left {
  width: 3px;
  bottom: -3px;
  top: -3px;
  transform: scale3d(1, 0, 1);
}

.c-hover-button .line.-top,
.c-hover-button .line.-bottom {
  height: 3px;
  left: -3px;
  right: -3px;
  transform: scale3d(0, 1, 1);
}

.c-hover-button .line.-right {
  right: -3px;
  transition: transform 0.1s cubic-bezier(1, 0, 0.65, 1.01) 0.23s;
  transform-origin: top;
}

.c-hover-button .line.-top {
  top: -3px;
  transition: transform 0.08s linear 0.43s;
  transform-origin: left;
}

.c-hover-button .line.-left {
  left: -3px;
  transition: transform 0.08s linear 0.51s;
  transform-origin: bottom;
}

.c-hover-button .line.-bottom {
  bottom: -3px;
  transition: transform 0.3s cubic-bezier(1, 0, 0.65, 1.01);
  transform-origin: right;
}

.c-hover-button a:hover .text,
.c-hover-button a:active .text {
  transform: translate3d(0, 0, 0);
  transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1) 0.4s;
}

.c-hover-button a:hover:after,
.c-hover-button a:active:after {
  transform: scale3d(0, 1, 1);
  right: -3px;
  left: -3px;
  transform-origin: right;
  transition: transform 0.2s cubic-bezier(1, 0, 0.65, 1.01) 0.17s,
    right 0.2s cubic-bezier(1, 0, 0.65, 1.01), left 0s 0.3s;
}

.c-hover-button a:hover .line,
.c-hover-button a:active .line {
  transform: scale3d(1, 1, 1);
}

.c-hover-button a:hover .line.-right,
.c-hover-button a:active .line.-right {
  transition: transform 0.1s cubic-bezier(1, 0, 0.65, 1.01) 0.2s;
  transform-origin: bottom;
}

.c-hover-button a:hover .line.-top,
.c-hover-button a:active .line.-top {
  transition: transform 0.08s linear 0.4s;
  transform-origin: right;
}

.c-hover-button a:hover .line.-left,
.c-hover-button a:active .line.-left {
  transition: transform 0.08s linear 0.48s;
  transform-origin: top;
}

.c-hover-button a:hover .line.-bottom,
.c-hover-button a:active .line.-bottom {
  transition: transform 0.5s cubic-bezier(0, 0.53, 0.29, 1) 0.56s;
  transform-origin: left;
}

.p-service-item__button .c-hover-button a .text {
  background-color: rgba(255, 255, 255, 0.4);
}

@media screen and (max-width: 767px) {
  .p-service-item__button .c-hover-button a .text {
    background-color: transparent;
  }
}
.p-service-item__button img {
  width: 160px;
}

.c-logo {
    max-width: 15rem;
    margin-top: 0.25rem;
}

.footer-left .c-logo img {
  max-width: 200px;
}

.footer-left .c-logo {
  max-width: 200px;
}
@media screen and (max-width: 767px) {
  .footer-left .c-logo {
    margin-top: 20px;
    margin: auto;
  }
}
.c-page-scroll {
  padding-top: 1.625rem;
  padding-bottom: 1.125rem;
  background-color: #c9a868;
  margin-top: 4.6875rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 15px;
}

@media screen and (max-width: 767px) {
  .c-page-scroll {
    flex-direction: column;
  }
}
.c-page-scroll span {
  font-size: 0.75rem;
}

.c-page-scroll a {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-left: 3px solid #fff;
  text-align: center;
  display: inline-block;
  text-transform: capitalize;
  line-height: 19px;
}

@media screen and (max-width: 767px) {
  .c-page-scroll a {
    border-left: none;
  }
}
.c-page-scroll.banner {
  background-color: #fff;
  margin-top: -1.75rem;
}

.c-section-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
}

.c-section-title h2 {
  font-size: 46px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .c-section-title h2 {
    font-size: 2.5rem;
  }
}
.c-section-title p {
  font-size: 1.25rem;
  margin-top: -1.25rem;
}

.c-section-title img {
  position: absolute;
  top: 15%;
  left: 42%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .c-section-title img {
    width: 300px;
  }
}
.c-section-title3 {
  /* font-family: "Poppins", sans-serif; */
  font-weight: 600;
  color: #fff;
  font-size: 2.75rem;
  text-align: center;
  line-height: 1;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
}

.c-section-title3 span {
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

.c-section-title2 {
  display: flex;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .c-section-title2 {
    display: block;
  }
}
.c-section-title2 h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 4.1875rem;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .c-section-title2 h2 {
    font-size: 3.125rem;
  }
}
.c-section-title2 p {
  font-size: 1.25rem;
  font-weight: 400;
  margin-left: 2rem;
  margin-top: 1.5rem;
}

@media screen and (max-width: 767px) {
  .c-section-title2 p {
    margin: 0 0 0 1.25rem;
  }
}
.c-section-title2 img {
  position: absolute;
  z-index: 1;
  left: -10%;
  top: -90px;
}

.c-service-title_h3 {
  font-family: "Poppins", sans-serif;
  color: #f0238a;
  font-size: 2.25rem;
  font-weight: 900;
  margin-left: 2.8125rem;
  position: relative;
  z-index: 2;
}

.c-service-title_h3.noto {
  font-family: "Noto Sans JP", sans-serif;
  color: #f0238a;
  font-size: 2.25rem;
  font-weight: 900;
  margin-left: 2rem;
  position: relative;
  z-index: 2;
}

.c-service_text {
  max-width: 35.9375rem;
  line-height: 32px;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-top: 1.40625rem;
  padding-right: 0.9375rem;
}

@media screen and (max-width: 767px) {
  .c-service_text {
    background-color: transparent;
  }
}
.c-title {
  font-size: 1.5rem;
  color: black;
}

@media screen and (max-width: 1199px) {
  .c-title {
    color: green;
  }
}
@media screen and (max-width: 999px) {
  .c-title {
    color: blue;
  }
}
@media screen and (max-width: 767px) {
  .c-title {
    color: red;
  }
}
.p-access.p-company-access {
  max-width: 62.5rem;
  margin: 0 auto;
  padding-top: 4.375rem;
  padding-bottom: 6.25rem;
}

.responsive-map-container.p-company-access__map {
  max-width: 460px;
  margin: 0;
  padding-bottom: 86%;
}

.p-company-access__flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 62.5rem;
  margin: 2.9375rem auto 0;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .p-company-access__flex {
    grid-template-columns: 1fr;
  }
}
.p-company-access__name {
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.625rem;
  padding: 0.625rem 0;
  border: 1px solid #f0238a;
  color: #f0238a;
  text-align: center;
}

.p-company-access__item + .p-company-access__item {
  margin-top: 5.5rem;
}

.p-access__content.p-company-access__content th,
.p-access__content.p-company-access__content td {
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 32px;
}

/* 最初の行(th/td)の上のパディングを0に設定 */
.p-access__content.p-company-access__content tr:first-child th,
.p-access__content.p-company-access__content tr:first-child td {
  padding-top: 0;
}

.p-company-access__items {
  margin-top: 1.375rem;
}

.p-company-access__name h3 {
  font-size: 1.75rem;
}

.p-access.p-company-access .responsive-map-container {
  max-width: 460px;
  margin: 0;
  padding-bottom: 86%;
}

@media screen and (max-width: 767px) {
  .p-access.p-company-access .responsive-map-container {
    order: 2;
    margin-top: 20px;
  }
}
.p-company-access__item {
  padding-left: 15px;
  padding-right: 15px;
}

.p-company-info {
  max-width: 62.5rem;
  margin: 4rem auto 0;
}

.p-company-info__table {
  width: 100%; /* 表の幅 */
  border-collapse: collapse;
  margin-top: 1.25rem;
}

.p-company-info__table th,
.p-company-info__table td {
  border-bottom: 1px solid #c7c7c7;
  padding: 1.125rem 0 2rem 0;
  text-align: left; /* テキストを左揃えにする */
  line-height: 2rem;
}

.p-company-info__table th {
  font-weight: 400; /* フォントの太さ */
  width: 24%;
}

@media screen and (max-width: 767px) {
  .p-company-info__table th {
    padding-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-company-info__table td {
    padding-right: 15px;
  }
}
.p-history {
  background-color: #141414;
  padding-top: 3.75rem;
  padding-bottom: 6.25rem;
  margin-top: 6.25rem;
}

.p-history__inner {
  background-color: #fff;
  padding-top: 4rem;
  padding-bottom: 3.75rem;
  max-width: 75rem;
}

.timeline-container {
  max-width: 62.5rem;
  margin: 1.25rem auto 0;
}

.timeline-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.timeline-table td.year {
  width: 10.5%;
  font-weight: bold;
  color: #f0238a;
  border-bottom: 1px solid #f0238a;
  font-size: 1.25rem;
  padding-top: 1.25rem;
}

@media screen and (max-width: 767px) {
  .timeline-table td.year {
    font-size: 1rem;
    width: 30%;
  }
}
.timeline-table td.event {
  width: 80%;
  background-color: #ffffff;
  padding-left: 35px;
  border-bottom: 1px solid #dbdbdb;
  padding-top: 1.25rem;
  padding-bottom: 0.875rem;
}

@media screen and (max-width: 767px) {
  .timeline-table td.event {
    width: 80%;
    padding-left: 20px;
  }
}
.p-message {
  background-color: #141414;
  color: #fff;
  margin-top: 3.75rem;
}

.p-message__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 767px) {
  .p-message__inner {
    grid-template-columns: 1fr;
  }
}
.p-message__left {
  max-width: 32.5rem;
  padding-top: 3.75rem;
  padding-bottom: 6.25rem;
  margin-left: auto;
  margin-right: 6.25rem;
  padding-left: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-message__left {
    margin-right: 0.9375rem;
    padding-bottom: 4.375rem;
  }
}
.p-message__left h3 {
  font-family: "Poppins", sans-serif;
  font-size: 2.75rem;
  font-weight: 600;
}

.p-message__left h4 {
  margin-top: 0.3125rem;
}

.p-message__left p {
  line-height: 32px;
  margin-top: 1.5rem;
}

.p-message__sign {
  margin-top: 1.4375rem;
}

.p-message__right {
  height: 100%; /* 必要に応じて高さを設定 */
  width: 100%; /* 必要に応じて幅を設定 */
  overflow: hidden; /* はみ出た画像を非表示にする */
}

.p-message__right img {
  height: 100%; /* 要素の高さに合わせる */
  width: 100%; /* 要素の幅に合わせる */
  -o-object-fit: cover;
  object-fit: cover; /* 画像が要素の全体をカバーするように設定 */
  -o-object-position: right center;
  object-position: right center;
}

.p-message__sign {
  margin-top: 2rem;
}

.p-sub-company__titles {
  padding: 8.75rem 0 9.375rem 0;
  text-align: center;
  width: 100%;
  background-image: url(../images/common/cover.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 4rem;
  position: relative;
}
.p-sub-company__titles::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(71 154 218 / 44%);
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-sub-company__titles {
    padding: 3rem 0 3rem 0;
    margin-top: 5rem;
  }
}

.p-contact {
  color: #fff;
  background-image: url(../images/common/contact.jpg);
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  margin-top: 3.75rem;
}

.p-sub-company__title-big {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.p-sub-company__subtitle-big {
  font-size: 1.25rem;
  margin-top: 1.0625rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-sub-company__title-big {
    font-size: 1.875rem;
  }
  .p-sub-company__subtitle-big {
    font-size: 1rem;
    margin-top: 0;
  }
}
.p-sub-company__title {
  color: #f0238a;
}

.p-sub-company__title span {
  color: #141414;
}

.p-sub-company .c-section-title3 span {
  font-size: 1rem;
}

.p-sub-company .responsive-map-container {
  padding-bottom: 33%;
  margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
  .p-sub-company .responsive-map-container {
    padding-bottom: 56%;
  }
}
.p-sub-company .p-access__content th {
  width: 26%;
}
.p-contact__contents {
  margin-top: 3.5rem;
}

.p-contact__content {
  display: grid;
  grid-template-columns: 220px auto;
  border-bottom: 1px solid #6b6b6c;
  padding-top: 1.875rem;
  padding-bottom: 1.8125rem;
}

@media screen and (max-width: 767px) {
  .p-contact__content {
    grid-template-columns: 1fr;
  }
}
.p-contact__content:first-child {
  border-top: 1px solid #6b6b6c;
}

.p-contact__head {
  width: 15.625rem;
  text-align: left;
  padding-top: 13px;
}

.p-contact__item {
  margin-top: 0.375rem;
}

.p-contact__item-example {
  margin-top: 0.375rem;
  color: gray;
}

.p-contact__required {
  color: #fff;
  padding: 1px 5px 2px 5px;
  background-color: #e52020;
  margin-right: 10px;
  font-size: 1rem;
  font-weight: 400;
}

.p-contact__policy,
.p-contact__btn {
  margin: 1.5rem 0;
}

.p-contact__policy-link {
  color: blue;
  transition: all 0.3s;
}

.p-contact__btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-contact__btn-wrap {
    flex-direction: row;
    gap: 2.5rem;
  }
}
.p-contact__btn {
  display: inline-block;
  text-align: center;
}

.p-contact__item-text,
.p-contact__item-tel,
.p-contact__item-email,
.p-contact__item-textarea,
.p-contact__item-select {
  margin: 0;
  padding: 0.8em;
  border: 1px solid #9da3a7;
  border-radius: 4px;
  background: #f8f8f8;
  font-size: 1rem;
  color: inherit;
  font-family: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 90%;
  height: 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .p-contact__item-text,
  .p-contact__item-tel,
  .p-contact__item-email,
  .p-contact__item-textarea,
  .p-contact__item-select {
    width: 100%;
  }
}
.p-contact__item-text:focus,
.p-contact__item-tel:focus,
.p-contact__item-email:focus,
.p-contact__item-textarea:focus,
.p-contact__item-select:focus {
  border: 1px solid rgba(0, 0, 0, 0.7);
  box-shadow: none;
  outline: none;
}

.p-contact__item-email {
  max-width: 700px;
}

.p-contact__item-textarea {
  height: 200px;
  resize: none;
  overflow: auto;
}

.p-contact__item-message {
  white-space: pre-wrap;
}

.p-contact__item-select {
  padding-right: 3em;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: right 0.5em center;
  color: inherit;
}

.p-contact__item-select:invalid {
  color: rgba(0, 0, 0, 0.32);
}

.p-contact__item-select select::-ms-expand {
  display: none;
}

.p-contact__item-radio input[type="radio"],
.p-contact__item-checkbox input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.p-contact__item-radio input[type="radio"] + span,
.p-contact__item-checkbox input[type="checkbox"] + span {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 0.5em 1em 0.5em 1.5em;
  color: #333;
  font-size: 1rem;
}

.p-contact__item-radio input[type="radio"]:focus + span,
.p-contact__item-checkbox input[type="checkbox"]:focus + span {
  opacity: 0.7;
}

.p-contact__item-radio input[type="radio"] + span::before,
.p-contact__item-checkbox input[type="checkbox"] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1em;
  height: 1em;
  content: "";
  transform: translateY(-50%);
  background: white;
  border: 1px solid black;
}

.p-contact__item-checkbox input[type="checkbox"]:checked + span::before {
  background: #333;
}

.p-contact__item-radio input[type="radio"]:checked + span::before {
  background: white;
}

.p-contact__item-radio input[type="radio"] + span::before {
  border-radius: 50%;
}

.p-contact__item-radio input[type="radio"] + span::after {
  position: absolute;
  content: "";
  background: #333;
  border: 1px solid transparent;
  border-radius: 50%;
  height: 0.5em;
  left: 0.25em;
  opacity: 0;
  padding: 0.125em;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
  width: 0.5em;
}

.p-contact__item-checkbox input[type="checkbox"] + span::after {
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  content: "";
  display: block;
  height: 0.35em;
  left: 0.15em;
  margin-top: -0.1em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 0.8em;
}

.p-contact__item-checkbox input[type="checkbox"]:checked + span::after,
.p-contact__item-radio input[type="radio"]:checked + span::after {
  opacity: 1;
}

/* button */
.p-contact__btn input[type="submit"],
.p-contact__btn input[type="button"] {
  display: inline-block;
  margin: 0;
  padding: 0.5em 4em;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  background: #141414;
  color: #fff;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
  font-size: 1.125rem;
  border-radius: 37px;
  border: none;
  transition: all 0.3s;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-contact__btn input[type="submit"],
  .p-contact__btn input[type="button"] {
    display: block;
    padding: 0.5em 0;
  }
}
.p-contact__btn input[type="submit"]:hover,
.p-contact__btn input[type="button"]:hover,
.p-contact__btn input[type="submit"]:focus,
.p-contact__btn input[type="button"]:focus {
  outline: none;
  opacity: 0.7;
}

.p-contact__item,
.p-contact__btn-submit {
  min-width: 9.375rem;
  text-align: left;
}

.wpcf7-spinner {
  position: absolute;
}

.p-contact {
  color: #fff;
  background-image: url(../images/common/contact.jpg);
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-size: cover;
  background-position: center;
  background: #0068b7;
  border-radius: 0 50px 0 50px;
  margin: 6rem auto 0;
}

.p-sub-contact {
  color: #141414;
  background-color: #c9a868;
  background-image: none;
}

.p-contact__text {
  margin-top: -0.25rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  margin-top: 32px;
}

@media screen and (max-width: 767px) {
  .p-contact__text {
    font-size: 1.125rem;
    line-height: 34px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.p-contact__text span {
  font-size: 1.125rem;
}

@media screen and (max-width: 767px) {
  .p-contact__text span {
    font-size: 1rem;
  }
}
.p-contact__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 4.1875rem;
  color: #262830;
}

@media screen and (max-width: 767px) {
  .p-contact__title {
    font-size: 2.75rem;
  }
}
.p-contact__title p {
  margin-top: -0.375rem;
  font-weight: 400;
  font-size: 1.25rem;
  position: relative;
  z-index: 2;
}

.p-sub-contact__title {
  color: #141414;
}

.p-contact__button {
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 62.5rem;
  margin: 2.0625rem auto 0;
}

@media screen and (max-width: 767px) {
  .p-contact__button {
    grid-template-columns: 1fr;
    padding: 1.5625rem 0.9375rem;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 0;
    gap: 1.5rem;
  }
}
.p-contact__button p {
  font-size: 14px;
  font-weight: 400;
}

.p-contact__button a {
  margin-top: 11px;
}

.p-contact__inner {
  max-width: 75rem;
  background-color: #fff;
  margin: 0 auto;
  padding-top: 3.75rem;
  padding-bottom: 6.25rem;
}

@media screen and (max-width: 767px) {
  .p-contact__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.p-contact__kind {
  padding: 0.8125rem 0;
  font-size: 1.5rem;
  background-color: #141414;
  color: #fff;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .p-contact__kind {
    font-size: 1.25rem;
  }
}
.p-contact__kind.tel {
  margin-top: 1.875rem;
  margin-bottom: 2.5rem;
}

.p-contact__kind.mail {
  margin-top: 3rem;
}

.p-contact__tel {
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.3;
  position: relative;
  display: block;
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .p-contact__tel {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__tel::before {
    top: 0.5rem;
    left: -0.1875rem;
  }
}
.p-contact__time {
  margin-top: 1.625rem;
  font-size: 1.125rem;
}

.p-contact__time span {
  font-size: 0.75rem;
  color: #262830;
  padding: 2px;
  margin-right: 6px;
  display: inline-block;
  width: 55px;
  border: 1px solid #262830;
  margin-left: 1rem;
}

.p-contact__any {
  color: #262830;
  padding: 1px 5px 2px 5px;
  background-color: #fff;
  margin-right: 10px;
  font-size: 1rem;
  font-weight: 400;
  border: 1px solid #6b6b6c;
}

.privacy-policy {
  height: 200px;
  max-width: 57.4375rem;
  width: 100%;
  padding: 0 2em 2em 1em;
  border: 2px solid #9da3a7;
  overflow-y: scroll;
  text-align: left;
  font-size: 14px;
  background-color: #fff;
  color: #141414;
  margin: 2.125rem auto 0;
}

.privacy-policy__head {
  margin-top: 14px;
  margin-bottom: 2px;
  font-weight: 700;
}

.fbc-page .fbc-wrap .fbc-items li {
  background-color: #fff;
}

.fbc-page .fbc-wrap .fbc-items li a {
  font-weight: 700;
}

.fbc-page .fbc-wrap .fbc-items li:first-child {
  padding-left: 0;
}

.p-breadcrummb {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-family: "Poppins", sans-serif;
}

.home .p-breadcrummb {
  display: none;
}

.fbc-page .fbc-wrap .fbc-items li .fbc-separator {
  padding: 15px 10px;
}

.fbc-page .fbc-wrap .fbc-items li:first-child {
  margin-right: 0;
  padding-right: 3px;
}

.p-contact__pp-text {
  margin-top: 5.1875rem;
  font-weight: 400;
  font-size: 1rem;
}

.p-contact .c-section-title img {
  top: 49%;
  left: 40%;
}

.p-contact__item-radio input[type="radio"] + span::after {
  width: 0.8em;
  height: 0.8em;
  left: 0.35em;
  background: #cecece;
}

.p-contact__item-radio input[type="radio"] + span::before,
.p-contact__item-checkbox input[type="checkbox"] + span::before {
  width: 1.5em;
  height: 1.5em;
  border: 1px solid #9da3a7;
  margin-right: 0.625rem;
}

.p-contact__item-radio input[type="radio"] + span,
.p-contact__item-checkbox input[type="checkbox"] + span {
  padding-left: 2em;
}

.p-contact__btn input[type="submit"],
.p-contact__btn input[type="button"] {
  padding: 1em 7em;
}

@media screen and (max-width: 767px) {
  .p-contact__btn input[type="submit"],
  .p-contact__btn input[type="button"] {
    padding: 1em 4em;
  }
}
.fbc-page .fbc-wrap .fbc-items li.active span {
  font-weight: bold;
}

.fbc-page .fbc-wrap .fbc-items li a {
  font-weight: 400;
}

.p-contact__policy,
.p-contact__btn {
  margin-top: 2.8125rem;
}

.sub-contact .p-contact__item-radio input[type="radio"] + span::before,
.p-contact__item-checkbox input[type="checkbox"] + span::before {
  width: 1.2em;
  height: 1.2em;
  border: 1px solid #6b6b6c;
  margin-right: 0.625rem;
}

.sub-contact .p-contact__item-radio input[type="radio"] + span::after {
  width: 0.7em;
  height: 0.7em;
}

.sub-contact .p-contact__content {
  grid-template-columns: 213px auto;
}

@media screen and (max-width: 767px) {
  .sub-contact .p-contact__content {
    grid-template-columns: 1fr;
  }
}
.sub-contact .p-contact__item-radio input[type="radio"] + span,
.p-contact__item-checkbox input[type="checkbox"] + span {
  padding: 0.2em 1em 0.2em 1.7em;
}

.sub-contact .p-contact__pp-text {
  margin-top: 1.875rem;
  margin-bottom: 2.5rem;
}

.sub-contact .p-contact__policy,
.p-contact__btn {
  margin-top: 2.3125rem;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #f0238a;
}

.sub-contact .p-contact {
  color: #141414;
  background-color: #fff;
  background-image: none;
  padding-top: 0;
}

.sub-contact .wpcf7-list-item {
  display: block;
}

.sub-contact .p-contact__title {
  color: #141414;
}

.sub-contact .p-contact__wrap {
  max-width: 56.25rem;
  margin: 3.75rem auto 0;
  padding-left: 15px;
  padding-right: 15px;
}

.sub-contact .p-contact__kind {
  background-color: #fff;
  margin-top: 3.75rem;
}

.sub-contact .p-contact__kind.tel {
  margin-top: 3.75rem;
  margin-bottom: 3.25rem;
}

.sub-contact .p-contact__time {
  margin-top: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-contact .p-contact__tel::before {
  content: url("../images/common/tel3.png");
}

.sub-contact .p-contact__btn input[type="submit"],
.p-contact__btn input[type="button"] {
  background: #262830;
  color: #fff;
  padding: 1em 2.5em;
}

.p-contact__tell-text {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 32px;
  letter-spacing: 0.4;
}

.p-about__title {
  position: relative;
}

.p-about__title h2 {
  position: relative;
  z-index: 2;
}

.p-about__logo {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.p-about {
  margin-top: 6.25rem;
  padding-top: 4.0625rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.p-about__text {
  font-weight: 700;
  font-size: 1.625rem;
  text-align: center;
  margin-top: 7.1875rem;
}

.p-about__desc {
  max-width: 62.5rem;
  margin: 1.875rem auto 0;
  line-height: 2rem;
  padding-left: 15px;
  padding-right: 15px;
}

iframe {
  border: none;
  overflow: hidden;
}

/*-------------------------
  右から左に流れるテキスト
-------------------------*/
.text-ani_sample {
  margin: 0 1em 3em;
  position: absolute;
}

.text-ani_sample p {
  margin: 0;
  font-size: 9.25rem; /*文字サイズ*/
  color: #fff; /*文字の色*/
  animation: flowing 20s linear infinite; /*アニメーション*/
  transform: translateX(100%); /*最初の位置*/
  opacity: 0.2;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  white-space: nowrap;
  line-height: 9.25rem;
}

@keyframes flowing {
  100% {
    transform: translateX(-100%); /*終了の位置*/
  }
}
.p-about__img {
  margin-top: 6.875rem;
}

.p-gallery {
  margin-top: 6.6875rem;
}

.p-gallery__contents {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: 1.875rem auto 0;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .p-gallery__contents {
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
}
.p-guide {
  margin-top: 6.25rem;
}

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

.p-guide__title p {
  font-family: "Poppins", sans-serif;
  font-size: 4.375rem;
  font-weight: 700;
  color: #c9a868;
}

.p-guide__title h3 {
  margin-left: 1.875rem;
  font-size: 1.625rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-guide__title h3 {
    font-size: 1.375rem;
  }
}
.p-guide__text {
  max-width: 35rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 2rem;
}

.p-guide__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 767px) {
  .p-guide__grid {
    grid-template-columns: 1fr;
  }
}
.p-guide__grid .p-guide__body:nth-child(odd) {
  padding-right: 2.5rem;
  margin-top: 1.375rem;
}

@media screen and (max-width: 767px) {
  .p-guide__grid .p-guide__body:nth-child(odd) {
    order: 2;
    padding-right: 0;
  }
}
.p-guide__grid .p-guide__body:nth-child(even) {
  padding-left: 2.5rem;
  margin-top: 1.8125rem;
}

@media screen and (max-width: 767px) {
  .p-guide__grid .p-guide__body:nth-child(even) {
    order: 4;
    padding-left: 0;
  }
}
.p-guide__floor {
  border: 2px solid #c9a868;
  padding-bottom: 6.25rem;
}

@media screen and (max-width: 767px) {
  .p-guide__floor {
    border: none;
  }
}
.p-guide__floor h3 {
  background: #c9a868;
  font-size: 2.75rem;
  font-weight: 600;
  text-align: center;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
}

@media screen and (max-width: 767px) {
  .p-guide__floor h3 {
    font-size: 1.875rem;
  }
}
.p-guide__floor h4 {
  font-size: 1.75rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-top: 3.1875rem;
}

.p-guide__floors {
  margin-top: 6.25rem;
}

.p-guide__floor-item {
  padding: 1.625rem;
  padding-bottom: 1.875rem;
  border: 2px solid #c9a868;
}

.p-guide__floor-item h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.6rem;
}

.p-guide__floor-item p {
  margin-top: 0.625rem;
  line-height: 2rem;
}

.p-guide__floor-item img {
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-guide__floor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 62.5rem;
  margin: 4.375rem auto 0;
  gap: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-guide__floor-grid {
    grid-template-columns: 1fr;
  }
}
.p-guide__map {
  margin: 2.5rem auto;
  max-width: 100%;
}

.p-guide__note {
  margin-top: 1rem;
  text-align: center;
}

.p-guide__floor + .p-guide__floor {
  margin-top: 54px;
}

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

.p-guide__floor-grid2 {
  grid-template-columns: 1fr;
}

.p-guide__floor-item2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .p-guide__floor-item2 {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.p-guide__img1 {
  margin-top: 3.25rem;
}

@media screen and (max-width: 767px) {
  .p-guide__img1 {
    order: 1;
    margin-top: 5rem;
  }
}
.p-guide__img2 {
  margin-top: 0.625rem;
}

@media screen and (max-width: 767px) {
  .p-guide__img2 {
    order: 3;
    margin-top: 3.75rem;
  }
}
.map-img {
  transition: opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .map-img {
    display: none;
  }
}
.map-img.show {
  opacity: 1;
  visibility: visible;
}

.map-area {
  mix-blend-mode: multiply;
}

.map-2f,
.map-1f {
  max-width: 750px;
  margin: 2.5rem auto 0;
  position: relative;
}

.powder-room-img {
  top: 17.5rem;
  left: -2.5rem;
  width: 315px;
}

.lounge-img {
  width: 420px;
  top: -6.25rem;
  right: -1rem;
}

.bar-counter-img {
  width: 420px;
  bottom: -11.25rem;
  right: -1.875rem;
}

.audio-light-img {
  width: 420px;
  top: -3.75rem;
  left: -16.5rem;
}

@media screen and (max-width: 1330px) {
  .audio-light-img {
    left: 13.5rem;
  }
}
.stage-img {
  width: 420px;
  top: -7.75rem;
  left: 15.125rem;
}

.main-floor-img {
  width: 380px;
  top: 11.25rem;
  left: -1.875rem;
}

.bar-img {
  width: 380px;
  bottom: -7.75rem;
  right: 3.125rem;
}

.coin-locker-img {
  width: 310px;
  bottom: -1.75rem;
  right: -9.875rem;
}

@media screen and (max-width: 1020px) {
  .coin-locker-img {
    right: 11.125rem;
  }
}
.a-floor-img {
  width: 380px;
  bottom: -7.75rem;
  left: -0.875rem;
}

.b-floor-img {
  width: 400px;
  top: 0.25rem;
  right: -7.125rem;
}

@media screen and (max-width: 930px) {
  .b-floor-img {
    top: -4.75rem;
    right: 18.25rem;
  }
}
.c-floor-img {
  width: 400px;
  top: -0.75rem;
  right: -13.875rem;
}

@media screen and (max-width: 1200px) {
  .c-floor-img {
    right: 11.125rem;
  }
}
.map-img-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .map-img-sp {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 1.875rem;
  }
}
.map-img-sp .c-floor-img {
  margin: auto;
}

.p-plan {
  margin-top: 7.40625rem;
}

@media screen and (max-width: 767px) {
  .p-plan {
    margin-top: 0;
  }
}
.p-plan h3 {
  background: #c9a868;
  font-size: 2.35rem;
  font-weight: 600;
  text-align: center;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  margin-top: 2.59375rem;
  padding-top: 0.625rem;
}

@media screen and (max-width: 767px) {
  .p-plan h3 {
    font-size: 1.5625rem;
  }
}
.p-plan h3 span {
  font-size: 1.125rem;
}

@media screen and (max-width: 767px) {
  .p-plan h3 span {
    display: block;
  }
}
.p-plan__title-text {
  text-align: center;
  margin-top: 2rem;
  line-height: 2rem;
}

.p-plan__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-plan__cards {
    grid-template-columns: 1fr;
  }
}
.p-plan__cards.food {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media screen and (max-width: 767px) {
  .p-plan__cards.food {
    grid-template-columns: 1fr;
  }
}
.p-plan__card {
  text-align: center;
  background-color: #fff;
  color: #141414;
  padding: 1.125rem;
  display: flex;
  flex-direction: column;
  padding-bottom: 6.25rem;
}

.food .p-plan__card {
  padding-bottom: 1.875rem;
}

.p-plan__card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #c9a868;
  text-transform: uppercase;
}

.p-plan__card h4 span {
  font-size: 2rem;
  margin-right: 0.9375rem;
}

.p-card__one {
  margin-top: 0.625rem;
  font-size: 0.875rem;
}

.p-card__fee span {
  font-size: 2.0625rem;
  line-height: 33px;
}

.p-card__fee {
  font-size: 0.75rem;
  font-weight: 700;
}

.p-card__text {
  margin-top: 1.1875rem;
  font-size: 16px;
  text-align: left;
}

.p-card__text2 {
  margin-top: 0.875rem;
  font-size: 16px;
  text-align: left;
  padding-top: 14px;
  border-top: #c9a868 1px solid;
}

.food .p-card__text {
  text-align: center;
}

.food .p-card__text span {
  font-weight: bold;
}

.p-card__kinds {
  margin-top: auto;
  padding-top: 1.25rem;
}

.p-card__kind {
  display: flex;
  justify-content: center;
  text-align: left;
  font-size: 1.125rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  border-radius: 10px;
  background-color: #f0f0f0;
  color: rgba(20, 20, 20, 0.2);
  padding-right: 0.625rem;
}

.p-card__kind + .p-card__kind {
  margin-top: 0.625rem;
}

.p-card__kind.active {
  font-weight: 700;
  background-color: #f0e4c8;
  color: #141414;
}

.p-card__kind::before {
  content: "";
  display: block;
  width: 30px; /* 画像の幅 */
  height: 30px; /* 画像の高さ */
  background-size: cover;
  margin-right: 10px;
  vertical-align: middle;
  opacity: 0.2;
}

.p-card__kind.active::before {
  opacity: 1;
}

.p-plan__scroll-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-top: 3.75rem;
}

.p-plan__scroll-text {
  margin-top: 0.1875rem;
  text-align: center;
}

.p-plan__scroll {
  display: flex;
  overflow: hidden;
  margin-top: 1.25rem;
}

.p-plan__scroll img {
  animation: scroll 20s infinite linear 0.5s both; /* 持続時間を長くする */
  margin-right: 5px;
  height: 14.9375rem;
}

/* キーフレームでスクロールアニメーションを定義 */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.plan-table {
  display: flex;
  background-color: #f5f5f5;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.plan-info,
.plan-pricing,
.plan-details {
  padding: 20px;
  border: 1px solid #ddd;
}

.plan-header {
  background-color: #ffc;
  padding: 10px;
  font-weight: bold;
}

.plan-pricing {
  margin: 0 20px;
  background-color: #ddd;
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.highlight {
  color: #008000;
}

.plan-details {
  flex-grow: 1;
}

.hover-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed; /* 画像がウィンドウに対して固定されるように */
  top: 0;
  left: 0;
  pointer-events: none; /* コンテナがマウスイベントを遮らないようにする */
}

#hoverImage {
  max-width: 100%;
  max-height: 100vh;
  display: none; /* デフォルトでは非表示 */
}

.p-plan__ttl-drink {
  border: 2px solid #c9a868;
  text-align: center;
  font-size: 2.3125rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  text-align: left;
  align-items: center;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .p-plan__ttl-drink {
    font-size: 1.4375rem;
  }
}
.p-plan__ttl-drink::before {
  content: "";
  display: block;
  width: 30px; /* 画像の幅 */
  height: 30px; /* 画像の高さ */
  background-size: cover;
  margin-right: 10px;
}

.p-card__menu-contents {
  font-weight: 400;
  font-size: 1rem;
  background-color: #c9a868;
  color: #fff;
  padding: 2px;
  margin-top: 0.625rem;
}

.p-plan__plus {
  margin: 2.5rem auto;
}

.p-plan2 {
  margin-top: 6.25rem;
}

.p-plan2 h3 {
  background: #c9a868;
  font-size: 2.35rem;
  font-weight: 600;
  text-align: center;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  margin-top: 2.59375rem;
  padding-top: 0.625rem;
}

@media screen and (max-width: 767px) {
  .p-plan2 h3 {
    font-size: 1.875rem;
  }
}
.p-plan2__blocks {
  margin-top: 2.5rem;
}

.p-plan2__block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.45fr;
  gap: 1.25rem;
  color: #141414;
  text-align: center;
  background-color: #fff;
  padding: 1.1875rem;
}

@media screen and (max-width: 767px) {
  .p-plan2__block {
    grid-template-columns: 1fr;
  }
}
.p-plan2__block + .p-plan2__block {
  margin-top: 1.25rem;
}

.p-plan2__header {
  text-transform: uppercase;
  font-size: 1.75rem;
  font-weight: 700;
  color: #c9a868;
  line-height: 3.375rem;
}

.p-plan2__header span {
  font-size: 2.8125rem;
  margin-right: 0.9375rem;
}

.p-plan2__floor {
  font-size: 1.375rem;
  margin-top: 0.40625rem;
}

.p-plan2__price {
  font-size: 0.875rem;
  font-weight: 700;
}

.p-plan2__price span {
  font-size: 3.0625rem;
  font-weight: 700;
}

.p-plan2__content {
  font-size: 1rem;
  font-weight: 700;
  background: #f0e4c8;
  padding-top: 0.875rem;
  padding-bottom: 1rem;
  border-radius: 5px;
}

.p-plan2__content + .p-plan2__content {
  margin-top: 0.625rem;
}

.p-plan2__content span {
  font-weight: 400;
}

.p-plan2__content span span {
  font-size: 0.75rem;
}

.p-plan2-details {
  font-weight: 700;
  text-align: left;
  border: 1px solid #c9a868;
  border-radius: 5px;
  padding: 1.09375rem 1.25rem 0.75rem;
}

.p-plan2-details span {
  font-size: 0.875rem;
  font-weight: 400;
}

.p-plan2-details p {
  margin-top: 0.6rem;
}

.p-plan2-details p:first-of-type {
  margin-top: 0;
}

.p-plan2__block2 {
  grid-template-columns: 0.9fr 1.1fr 1.45fr;
  grid-template-rows: 1fr auto;
  padding: 2rem 1.25rem 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-plan2__block2 {
    display: block;
  }
}
.p-plan2__block2 .p-plan2-details {
  grid-row: 1/3;
  grid-column: 3;
}

@media screen and (max-width: 767px) {
  .p-plan2__block2 .p-plan2-details {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.p-plan2__block2 p + p {
  margin-top: 20px;
}

.p-plan2-surprise {
  grid-row: 2;
  grid-column: 1/3;
  display: grid;
  place-items: center;
  background-color: #fff165;
  border-radius: 6px;
  padding-top: 0.6875rem;
  padding-bottom: 0.875rem;
}

.p-plan2-surprise img {
  max-width: 32rem;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.p-plan2-details p.fz14 {
  font-size: 0.875rem;
}

.p-plan3 {
  margin-top: 3.75rem;
}

.p-plan3__grid {
  display: grid;
  grid-template-columns: auto auto auto;
  background: #fff;
  padding: 26px 28px 30px 28px;
  font-size: 1.125rem;
  color: #141414;
  text-align: center;
  margin-top: 2.5rem;
  row-gap: 2.75rem;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

@media screen and (max-width: 767px) {
  .p-plan3__grid {
    grid-template-columns: 1fr;
    padding: 2.5rem 15px;
  }
}
.p-plan3__grid.first {
  grid-template-columns: auto 1fr;
}

@media screen and (max-width: 767px) {
  .p-plan3__grid.first {
    grid-template-columns: 1fr;
    padding: 2.5rem 15px;
  }
}
.p-plan3__category {
  grid-column: span 3; /* カテゴリは3つのカラムにまたがる */
  background: #d2b48c; /* カテゴリの背景色をタン色に設定 */
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  font-weight: bold;
}

.p-plan3__item {
  padding: 5px 0; /* アイテム間のスペース */
}

.p-plan3__price {
  text-align: right; /* 価格は右揃え */
  padding-left: 3.625rem;
  margin-left: auto;
}

.p-plan3__title {
  font-size: 1.125rem;
  padding-top: 4px;
  padding-bottom: 5px;
  background: #f0e4c8;
  border-radius: 5px;
  text-align: center;
}

.p-plan3__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.p-plan3__item {
  position: relative;
  margin-left: 25px;
}

.p-plan3__item::before {
  content: ""; /* 円形のバレット文字 */
  background-color: #c9a868;
  border-radius: 50%;
  width: 13px; /* バレットの幅を設定 */
  height: 13px;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}

.p-plan3__section.arrange {
  grid-row: 1;
  grid-column: 1/3;
}

@media screen and (max-width: 767px) {
  .p-plan3__section.arrange {
    grid-row: auto;
    grid-column: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-plan3__section img {
    margin-left: auto;
    margin-right: auto;
  }
}
.p-plan3__section.drink-icon img {
  max-width: 8.4375rem;
}

.p-reservation {
  margin-top: 6.25rem;
  text-align: center;
}

.p-reservation img {
  margin: 2.3125rem auto 0;
}

.p-reservation__calender {
  margin-top: 2.0625rem;
}

.iframe-wrapper {
  margin: 2.5rem auto 0;
  position: relative;
  padding-bottom: 48.25%;
  height: 0;
  overflow: hidden;
}

@media screen and (max-width: 1199px) {
  .iframe-wrapper {
    padding-bottom: 60.25%;
  }
}
@media screen and (max-width: 767px) {
  .iframe-wrapper {
    padding-bottom: 85.25%;
  }
}
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 100%;
}

@media screen and (max-width: 1199px) {
  .responsive-iframe {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .responsive-iframe {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.p-example {
  margin-top: 2.5rem;
}

.p-example__post {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 62.5rem;
  margin: 0 auto;
  gap: 3.125rem;
}

@media screen and (max-width: 767px) {
  .p-example__post {
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
    row-gap: 1.25rem;
  }
}
.p-example__post-item {
  padding: 1.125rem 1.125rem 1.625rem 1.125rem;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  border-bottom: 5px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .p-example__post-item {
    padding: 0.625rem 0.625rem 1.125rem 0.625rem;
  }
}
.p-example__post .custom-thumbnail {
  padding: 0.4375rem;
}

.p-example__post .p-post-card__category {
  margin-top: 0.9375rem;
}

.p-example__post .p-post-card__title {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  text-align: left;
  margin-bottom: 1.25rem;
}

.p-example__link-button {
  display: block;
  background-color: #ffec2e;
  padding: 0.625rem 0 0.75rem 2.75rem;
  border-radius: 50px;
  margin-top: auto;
}

@media screen and (max-width: 767px) {
  .p-example__link-button {
    font-size: 14px;
    padding: 0.625rem 0 0.75rem 0.3125rem;
  }
}
.p-example__link-button span {
  position: relative;
}

.p-example__link-button span:before {
  content: ""; /* コンテンツを空にして背景画像を使用 */
  position: absolute;
  left: -36%;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../images/sns/ig.svg) no-repeat center/cover; /* 背景画像として設定し、サイズをカバーに設定 */
}

@media screen and (max-width: 999px) {
  .p-example__link-button span:before {
    width: 22px;
    height: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-example__link-button span:before {
    display: none;
  }
}
.p-faq {
  margin-top: 3.75rem;
  padding-left: 15px;
  padding-right: 15px;
}

.qa_box {
  margin-bottom: 20px;
  border: 1px solid #e4e4e4;
  color: #141414;
}

.area01 {
  margin: 3.4375rem auto 6.25rem;
  max-width: 62.5rem;
}

.area01 .qa_q {
  display: flex;
  align-items: center;
  position: relative;
  padding: 1.5em 2em 1.3em 4em;
  cursor: pointer;
  transition: background-color 1s ease;
}

.area01 .qa_q::before {
  color: #141414;
  content: "Q";
  background-color: #ffec2e;
  padding: 0.1875rem 0.6875rem 0.3125rem 0.625rem;
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1em;
}

.area01 .qa_q .toggle_icon {
  position: absolute;
  top: 50%;
  right: 1.875rem;
  transform: translateY(-50%) rotate(-45deg);
  width: 10px;
  height: 10px;
  margin-left: auto;
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
  content: "";
  transition: transform 1s ease;
}

.area01 .qa_a {
  display: none;
  padding: 0 1.2em 1.3em 1em;
}

.area01 .qa_q.open .toggle_icon {
  transform: rotate(45deg);
}

.a-txt {
  padding: 1em 3em 1.5em 4em;
  background-color: #fffce3;
  border-radius: 6px;
  line-height: 1.75rem;
  position: relative;
  display: block;
}

.a-txt::before {
  color: #141414;
  line-height: 1.2;
  content: "A";
  background-color: #fff;
  padding: 0.1875rem 0.6875rem 0.3125rem 0.625rem;
  margin-top: -3px;
  position: absolute;
  left: 1em;
  top: 1.3em;
}

.p-item {
  margin-top: 3.75rem;
}

.p-item__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  max-width: 62.5rem;
  margin: 2.5rem auto 0;
}

@media screen and (max-width: 767px) {
  .p-item__grid {
    grid-template-columns: 1fr 1fr;
    padding-left: 15px;
    padding-right: 15px;
    -moz-column-gap: 0.9375rem;
    column-gap: 0.9375rem;
  }
}
.p-item_grid-item {
  text-align: center;
}

.p-item_grid-item div {
  font-size: 1.25rem;
  margin-top: 2.375rem;
}

@media screen and (max-width: 767px) {
  .p-item_grid-item div {
    margin-top: 1.25rem;
  }
}
.p-item_grid-item p {
  margin-top: 0.625rem;
}

@media screen and (max-width: 767px) {
  .p-item_grid-item p {
    margin-bottom: 1.25rem;
  }
}
.p-item_grid-item img {
  margin-left: auto;
  margin-right: auto;
}

.p-item__banner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6.25rem;
}

.p-purchase {
  background-color: #fffde2;
  padding-top: 4.5rem;
  margin-top: 5.25rem;
  text-align: center;
  padding-bottom: 6.25rem;
}

.p-purchase__inner {
  background-color: #fff;
  margin-top: 2.5rem;
  padding-bottom: 6.25rem;
  max-width: 75rem;
}

.p-purchase__title {
  background-color: #ffec2e;
  padding-top: 0.3125rem;
  padding-bottom: 1rem;
  max-width: 62.5rem;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-purchase__title {
    padding-bottom: 0.625rem;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.p-purchase__title:after {
  content: "";
  position: absolute;
  bottom: -28px; /* 吹き出しの三角形のサイズに応じて調整 */
  left: 50%;
  width: 0;
  height: 0;
  border-left: 20px solid transparent; /* 三角形の左側 */
  border-right: 20px solid transparent; /* 三角形の右側 */
  border-top: 28px solid #ffec2e; /* 吹き出しと同じ色のボーダーを上側に設定 */
  transform: translateX(-50%);
}

.p-purchase__catch {
  font-size: 1.8125rem;
  font-weight: 700;
  margin-top: 0.75rem;
}

@media screen and (max-width: 767px) {
  .p-purchase__catch {
    font-size: 1.25rem;
  }
}
.p-purchase__time {
  font-size: 1.1875rem;
  font-weight: 700;
}

.p-purchase__content1 {
  padding-top: 3.75rem;
}

.p-purchase__kind {
  font-weight: 700;
  font-size: 1.1875rem;
  background-color: #f1dda3;
  padding-top: 0.8125rem;
  padding-bottom: 1rem;
}

.p-purchase__items {
  max-width: 56.25rem;
  margin-left: auto;
  margin-right: auto;
}

.p-purchase__items.first {
  margin-top: 5.8125rem;
}

.p-purchase__items.second {
  margin-top: 3rem;
}

.p-purchase__item {
  padding-top: 1.25rem;
  padding-bottom: 2.1875rem;
  border: 1px solid #e0b537;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .p-purchase__item {
    padding-bottom: 1.25rem;
  }
}
.p-purchase__item.green {
  border: 1px solid #76b9b7;
}

.p-purchase__item.gray {
  border: 1px solid #95a8a8;
}

.p-purchase__item h5 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #dbaa18;
}

.p-purchase__item.green h5 {
  color: #76b9b7;
}

.p-purchase__item.gray h5 {
  color: #95a8a8;
}

.p-purchase__item div {
  font-weight: 700;
  font-size: 1.0625rem;
  margin-top: 1rem;
}

.p-purchase__item div span {
  font-size: 1.625rem;
}

.p-purchase__item p {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 0.90625rem;
}

.p-purchase__item p span {
  color: #f41616;
}

.p-purchase__grid-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 1.5rem;
  -moz-column-gap: 2.375rem;
  column-gap: 2.375rem;
}

@media screen and (max-width: 767px) {
  .p-purchase__grid-1 {
    grid-template-columns: 1fr;
    row-gap: 15px;
  }
}
.p-purchase__grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 767px) {
  .p-purchase__grid-2 {
    grid-template-columns: 1fr;
  }
}
.p-purchase__grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.125rem;
  max-width: 62.5rem;
  margin: 2.5rem auto 0;
}

@media screen and (max-width: 767px) {
  .p-purchase__grid-3 {
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
  }
}
.p-purchase__grid-3 div {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  padding: 1.5625rem 1.5625rem 2.0625rem 1.5625rem;
  background-color: #fff;
}

.p-purchase__grid-3 p {
  margin-top: 1.5625rem;
}

/* テーブル全体のスタイル */
.p-purchase__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* 列幅を均等に分割 */
  margin-top: 1.25rem;
}

/* テーブルのヘッダー */
.p-purchase__table th {
  background-color: #ffeebb; /* ヘッダーに黄色の背景 */
  padding: 10px; /* 内側の余白 */
  border-bottom: 1px solid #baae89;
}

/* セルのスタイリング */
.p-purchase__table td {
  padding: 10px; /* 内側の余白 */
  border-bottom: 1px solid #baae89;
  text-align: center; /* テキストを中央寄せに */
  font-size: 1.0625rem;
  font-weight: 700;
}

/* 最後の行の下境界線を削除 */
.p-purchase__table tr:last-child td {
  border-bottom: none;
}

.p-purchase__table tr:last-child th {
  border-bottom: none;
}

.p-purchase__voice {
  font-size: 1.25rem;
  font-weight: 700;
  padding-top: 3.75rem;
  padding-bottom: 1.375rem;
}

.p-purchase__voice2 {
  font-size: 1.25rem;
  margin-top: 4.5rem;
  padding-bottom: 1.375rem;
  font-weight: 400;
}

.p-purchase__title-ex {
  font-size: 2rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .p-purchase__title-ex {
    font-size: 1.5rem;
  }
}
.p-purchase__title-ex span {
  font-size: 2.25rem;
  font-weight: 700;
  color: #f02323;
}

@media screen and (max-width: 767px) {
  .p-purchase__title-ex span {
    font-size: 1.75rem;
  }
}
.p-purchase__text {
  font-size: 1.25rem;
  margin-top: 3.25rem;
}

@media screen and (max-width: 767px) {
  .p-purchase__text {
    font-size: 1rem;
  }
}
.p-purchase__text span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f02323;
}

@media screen and (max-width: 767px) {
  .p-purchase__text span {
    font-size: 1.25rem;
  }
}
.p-purchase__text2 {
  margin-top: 2.5rem;
}

.p-404__title {
  text-align: center;
}

.p-404__btn {
  text-align: center;
}

.p-access {
  margin-top: 7rem;
}

.p-access__contents {
  width: 100%;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 2.5rem auto 0;
  position: relative;
  z-index: 2;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

@media screen and (max-width: 767px) {
  .p-access__contents {
    grid-template-columns: 1fr;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.p-access__contents img {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.p-access__content {
  border-collapse: collapse;
}

.p-access__content th,
.p-access__content td {
  border-bottom: 1px solid #c7c7c7; /* セルの境界線色 */
  padding-top: 1.4375rem;
  padding-bottom: 1.5rem; /* セル内の余白 */
  vertical-align: top; /* セルの内容を上揃えに */
  line-height: 2.0625rem;
  font-weight: 400;
}

.p-access__content th {
  width: 40%; /* 見出しセルの幅を30%に設定 */
  text-align: left;
}

.p-access__content td {
  margin-left: -3px;
}

.responsive-map-container {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 20%; /* 高さ326px / 幅1000px のアスペクト比 */
  max-width: 1000px; /* 最大幅を1000pxに設定 */
  margin: 2.9375rem auto 0; /* センタリング */
}

@media screen and (max-width: 767px) {
  .responsive-map-container {
    padding-bottom: 50%;
  }
}
.responsive-map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-sns__container {
  display: flex;
  justify-content: center;
  margin: 2.5rem auto;
  flex-wrap: wrap;
  row-gap: 20px;
}

.p-sns__container img {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-sns__container img {
    width: 70px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
.p-sns__container img.p-sns__first-sns {
  margin-left: 0;
}

.p-sns {
  margin-top: 9rem;
  padding-bottom: 3.8125rem;
}

#sns.p-sns .c-section-title3 span {
  font-size: 1.25rem;
}

.p-access__content tr:first-child th,
.p-access__content tr:first-child td {
  padding-top: 0;
}

.my-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  color: #606060;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
  .my-tabs {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.my-tab {
  cursor: pointer;
  border-bottom: 3px #606060 solid;
  padding-top: 1.625rem;
  padding-bottom: 1.625rem;
  text-align: center;
}

.my-tab-content {
  margin-top: 3.75rem;
  padding-bottom: 5.25rem;
}

.my-content__cat {
  font-size: 2rem;
  font-weight: 500;
  color: #262830;
}

.my-content__wrap {
  margin-top: 2.5rem;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
  row-gap: 3.75rem;
}

.my-content__wrap a {
  display: grid;
  grid-template-columns: 12.5rem 1fr;
  height: 100%;
  gap: 32px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #6b6b6c;
}

@media screen and (max-width: 767px) {
  .my-content__wrap {
    grid-template-columns: 1fr;
  }
  .my-content__wrap a {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.my-tab.active-tab {
  position: relative;
  color: #f0238a;
  border-bottom: none;
}

.p-sub-purchase .my-tab.active-tab {
  color: #e9d71d;
}

.active-tab::after {
  content: ""; /* 疑似要素の内容は空 */
  position: absolute; /* 親要素に対して絶対位置指定 */
  bottom: 0; /* ボーダーを下部に配置 */
  left: 0; /* 左から始める */
  width: 100%; /* 要素の全幅に広げる */
  height: 3px; /* ボーダーの高さ */
  background: linear-gradient(
    to right,
    #f0238a,
    #fcf59b
  ); /* グラデーションの設定 */
}

.p-sub-purchase .active-tab::after {
  background: #ffec2e;
}

.custom-thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.page-numbers {
  display: flex;
  justify-content: center;
  padding: 0.4375rem 0.9375rem 0.5625rem;
}

a.page-numbers {
  border: #6b6b6c 1px solid;
}

.page-numbers li {
  color: #141414;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1rem;
  padding: 0.4375rem 0.4375rem 0.5625rem;
}

@media screen and (max-width: 767px) {
  .page-numbers li {
    font-size: 1.25rem;
    padding: 0.4375rem 0.4375rem 0.5625rem;
  }
}
.page-numbers.current {
  color: #fff;
  padding: 0.4375rem 0.9375rem 0.5625rem;
  background-color: #262830;
  border: #6b6b6c 1px solid;
}

.pagination {
  width: 100%;
}

.sub-event {
  padding-top: 2.375rem;
}

.p-footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  justify-content: space-between;
  padding: 2.5rem 2rem 2.8125rem;
}

@media screen and (max-width: 767px) {
  .p-footer__inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
    padding-bottom: 3.75rem;
    padding: 15px;
  }
}

.footer-left p {
  margin-top: 0.625rem;
}

@media screen and (max-width: 767px) {
  .footer-left {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
.footer-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 2.5rem;
  column-gap: 0.5rem;
  margin-left: 1.875rem;
  font-size: 0.875rem;
}

@media screen and (max-width: 767px) {
  .footer-right {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    row-gap: 20px;
    margin-left: 15px;
    padding-right: 15px;
  }
}
.footer-column {
  display: block;
  width: 12.5rem;
}

.footer-column.item {
  grid-column: 2/3;
  grid-row: 1 / span 2;
}

@media screen and (max-width: 767px) {
  .footer-column.item {
    grid-column: 1;
    grid-row: 1;
  }
  .footer-column {
    width: auto;
  }
}
.footer-column.second {
  margin-top: 1.875rem;
}

.footer-column__ig {
  margin-top: 0.625rem;
  display: block;
}

@media screen and (max-width: 767px) {
  .footer-column.second {
    margin-top: 20px;
  }
  .footer-column__ig img {
    margin: auto;
  }
}
.footer-column h4 {
  color: #0068b7;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
	font-family: "Montserrat", sans-serif;
}

.footer-column ul {
  margin-top: 0.625rem;
}

.footer-column li {
  margin-top: 0.8rem;
}

.footer-column li.first {
  margin-top: 0;
}

.footer-column p {
  margin-top: 1rem;
  font-size: 0.875rem;
}

@media screen and (max-width: 767px) {
  .footer-column img {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-column ul {
    padding-left: 0.5rem;
  }
}
.footer__sns-icon {
  display: flex;
  gap: 10px;
  text-align: center;
  margin-top: 0.625rem;
}

.footer__sns p {
  color: #f0238a;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.3125rem;
}

.footer__sns {
  padding: 0 1.875rem 0.625rem;
  border-left: 1px solid #f0238a;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer__sns {
    text-align: left;
  }
  .footer-sp-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column: 1/3;
  }
}
.footer-column:nth-of-type(5) .footer__sns {
  margin-top: 1.875rem;
}

@media screen and (max-width: 767px) {
  .footer-column:nth-of-type(5) .footer__sns {
    margin-top: 0;
  }
}
.footer-column:nth-of-type(6) .footer__sns {
  margin-top: 1.875rem;
}

.p-footer__copyright {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  background-color: #0068b7;
  color: #fff;
  text-align: center;
  font-size: 12px;
  line-height: 32px;
  letter-spacing: 0.03em;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .footer-column:nth-of-type(6) .footer__sns {
    margin-top: 0;
  }
  .p-footer__copyright {
    line-height: 16px;
  }
}
.p-header {
  position: fixed;
  top: 10px;
  left: 50%;
	transform: translatex(-50%);
  width: 97%;
	border-radius: 10px;
  z-index: 1000;
  background-color:#ffffffb5;
	box-shadow: 8px 8px 16px 0 rgba(0, 0, 0, 0.03);
        transition: all 0.3s;
        backdrop-filter: blur(8px);
	overflow: hidden;
}

.home .p-header {
  background-color: transparent;
	border-radius: 0px;
	width: 100%;
	backdrop-filter: none;
	box-shadow: none;
}
.home .p-header.scrolled {
	width: 97%;
	background-color:#ffffffb5;
	box-shadow: 8px 8px 16px 0 rgba(0, 0, 0, 0.03);
        transition: all 0.3s;
        backdrop-filter: blur(8px);
	border-radius: 10px;
}

.p-header__inner {
  max-width: 97.5rem;
  padding: 0 0 0 40px;
  margin: 0 auto;
  height: inherit;
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .p-header__inner {
    padding-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    height: 3rem;
}
.c-logo {
    max-width: 12rem;
    margin-top: 0.25rem;
}
  .p-header__inner .c-logo {
    position: relative;
    z-index: 9999;
  }
  .p-header__inner .openbtn {
    position: relative;
    z-index: 9999;
    margin-right: 20px;
  }
}
.p-header__left {
  height: inherit;
  display: flex;
  text-align: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-header__left {
    display: none;
  }
}
.p-header__nav {
  height: inherit;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
}

.p-header__nav a {
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    line-height: 1.25rem;
    font-weight: 700;
    padding-left: 0.625rem;
    padding-right: 1rem;
    font-size: 0.875rem;
    padding: 0.6rem;
    width: 100%;
    max-width: 300px;
    position: relative;
}

.p-header__nav a:hover {
  color: #0068b7;
}

.header__tel {
  /* font-family: "Montserrat", sans-serif; */
  font-size: 1.375rem;
  padding-left: 1.625rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .p-header__nav {
    margin: 0;
  }
  .p-header__nav a {
    font-size: 16px;
  }
  .p-header__nav a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50px;
    position: absolute;
    top: 14px;
    left: -3px;
    background: #0068b7;
}
}
@media screen and (max-width: 910px) {
  .header__tel {
    font-size: 1.6rem;
}
  .p-header__nav a {
    padding-right: 0.6rem;
  }
}
.header__top::before {
  content: "";
  position: absolute;
  display: block;
  width: 1.2rem; /* 画像の幅 */
  height: 1.2rem; /* 画像の高さ */
  background-size: cover;
  margin-right: 5px;
  margin-top: 8px;
  vertical-align: middle;
  background-image: url(../images/common/tel.png);
}

.header__time span {
    font-size: 100%;
}

.p-header__tel {
  margin-left: 2rem;
}

.p-header__nav-tel {
  position: relative;
}

.p-header__nav-tel::before {
  content: "";
  position: absolute;
  display: block;
  width: 1.4rem; /* 画像の幅 */
  height: 1.4rem; /* 画像の高さ */
  background-size: cover;
  margin-right: 5px;
  margin-top: 8px;
  vertical-align: middle;
  background-image: url(../images/common/tel.png);
  left: 0;
  top: -8px;
}

.p-header__nav.p-header__button a {
  padding: 1.3rem 10px;
  font-size: 1.0625rem;
  letter-spacing: 0.08em;
  height: inherit;
  position: relative;
	font-family: "Montserrat", sans-serif;
}

/* .p-header__nav.p-header__button a::before {
  content: "";
  position: absolute;
  left: 3.375rem; 
  top: 5px;
  bottom: 0;
  width: 1px;
  background: #fff;
  height: 3rem;
} */

@media screen and (max-width: 767px) {
  .p-header__nav.p-header__button a {
    width: 200px;
    padding-left: 3.5rem;
  }
  .p-header__nav.p-header__button a::before {
    display: none;
  }
  a.p-header__nav-tel {
    /* font-family: "Montserrat", sans-serif; */
    font-size: 20px;
    letter-spacing: 0.08em;
    padding-left: 2rem;
    text-align: center;
    justify-content: center;
    width: auto;
    margin: 1rem 0;
}
}
a.p-header__nav-tel::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 0;
    position: absolute;
    top: 0px;
    left: 0;
    background: none;
    background-image: url(../images/common/tel3.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.p-header__button {
  display: flex;
  text-align: center;
  justify-content: center;
  height: inherit;
  margin-left: 2rem;
  background-color: #0068b7;
}

@media (max-width: 1520px) {
  .p-header__button {
    margin-left: 0.5rem;
  }
}
@media (max-width: 1277px) {
  .p-header__nav.p-header__button a {
    font-size: 1rem;
  }
  .p-header__tel {
    margin-left: 8px;
  }
}
.p-header__button a:hover {
  opacity: 0.8;
  color: #fff;
}

.break {
  display: none;
}

@media (max-width: 1372px) {
  .break {
    display: block;
  }
}
@media (max-width: 768px) {
  .break {
    display: none;
  }
}
.break2 {
  display: none;
}

@media (max-width: 880px) {
  .break2 {
    display: block;
  }
}
@media (max-width: 768px) {
  .break2 {
    display: none;
  }
}
.break3 {
  display: none;
}

@media (max-width: 768px) {
  .break3 {
    display: block;
  }
}
.openbtn {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  display: none;
}

@media screen and (max-width: 767px) {
  .openbtn {
    display: block;
  }
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #0068b7;
  width: 50%;
}

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

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

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

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

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

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

.p-header__sp {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: 100%;
  background-color: #fff;
  transition: right 0.3s ease;
  z-index: 10;
  overflow-y: auto;
  padding-top: 100px;
  padding-bottom: 200px;
	display: none;
}


.p-header__sp li.p-header__nav {
  font-size: 1.25rem;
}

.p-header__sp.is-active {
  right: 0;
}

.p-header__sp .p-header__nav.p-header__button {
  margin-left: 20px;
  margin-right: 20px;
}

.no-scroll {
  overflow: hidden !important;
}

.p-pager-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3.75rem;
  padding-bottom: 6.25rem;
}

.p-pager-list__btn a {
  display: inline-block;
  padding: 10px 10px;
  color: #f0238a;
  font-size: 1.5rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-pager-list__btn a {
    font-size: 1.125rem;
    padding: 10px 5px;
    line-height: 1.125rem;
  }
}
.single-purchase .p-pager-list__btn a {
  color: #141414;
}

.p-pager-list__btn.prev a::before {
  content: ""; /* 実際のテキストは不要なので空に */
  display: inline-block;
  width: 20px; /* 矢印画像の幅 */
  height: 20px; /* 矢印画像の高さ */
  background-image: url(../images/common/prev.svg); /* 矢印画像のパス */
  background-size: contain; /* 画像が要素のサイズに収まるように調整 */
  background-repeat: no-repeat; /* 画像を繰り返さない */
  margin-top: 4px;
}

.p-pager-list__btn.next a::before {
  content: ""; /* 実際のテキストは不要なので空に */
  display: inline-block;
  width: 20px; /* 矢印画像の幅 */
  height: 20px; /* 矢印画像の高さ */
  background-image: url(../images/common/next.svg); /* 矢印画像のパス */
  background-size: contain; /* 画像が要素のサイズに収まるように調整 */
  background-repeat: no-repeat; /* 画像を繰り返さない */
  margin-top: 4px;
}

.item-slider-wrap .p-pager-list__btn.prev a::before {
  background-image: url(../images/common/prev2.svg); /* 矢印画像のパス */
}

.single-purchase .slick-next::before {
  background-image: url(../images/common/next2.svg); /* 矢印画像のパス */
}

.p-post-article__inner.l-inner {
  margin-top: 1.40625rem;
  max-width: 68.75rem;
}

@media screen and (max-width: 767px) {
  .p-post-article__inner.l-inner {
    margin-top: 3.75rem;
  }
}
.p-post-article__title-box h2.p-post-article__title {
  font-size: 2rem;
  color: #262830;
  background-image: none;
  font-weight: 400;
  border: none;
  margin-top: 3.75rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-post-article__title-box h2.p-post-article__title {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    padding: 0;
    text-align: left;
  }
}
.single-purchase .p-post-article__title-box h2.p-post-article__title {
  color: #141414;
  border-bottom: 1px solid #ffec2e;
}

.p-post-article__info {
  display: flex;
}

.p-post-article__category {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  margin-left: 3px;
}

.p-post-article__category li {
  padding: 0.25rem 0.625rem;
  background-color: #0068b7;
  color: #fff;
  font-weight: 400;
}

.p-post-article__box {
  margin: 6.4rem auto 0;
}

.p-post-article__content {
  padding: 1.25rem 1.4375rem 0;
  background-color: #fff;
  width: 100%;
  border-bottom: 1px solid #f0238a;
}

@media screen and (max-width: 767px) {
  .p-post-article__content {
    padding: 0;
  }
}
.single-purchase .p-post-article__content {
  background-color: #fff;
  border-bottom: 1px solid #141414;
}

.p-post-article__content-wrap {
  padding-bottom: 5rem;
  width: 100%;
  margin: auto;
}

.p-post-article__contents {
  margin-top: 1.875rem;
}

.p-post-article__main-img {
  aspect-ratio: 7/4;
}

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

.p-post-article__category {
  letter-spacing: 0;
}

.p-post-article__data {
  font-size: 1rem;
  text-align: right;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.p-post-article__content h2 {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
  padding: 0.375rem 0;
  color: #262830;
  font-size: 2rem;
  font-weight: 700;
  border-left: 3px #0068b7 solid;
  border-bottom: 1px #0068b7 solid;
}

@media screen and (max-width: 767px) {
  .p-post-article__content h2 {
    font-size: 1.5rem;
  }
}
.p-post-article__contents h3 {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
  padding-bottom: 0.625rem;
  color: #f0238a;
  font-size: 1.75rem;
  background-image: linear-gradient(to right, #0068b7 80px, #d9d9d9 80px);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 3px; /* 1pxはボーダーの太さに相当します */
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .p-post-article__contents h3 {
    font-size: 1.375rem;
  }
}
.p-post-article__contents h4 {
  margin: 1.875rem 0;
  color: #262830;
  font-size: 1.5rem;
  border-bottom: 1px solid #0068b7;
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .p-post-article__contents h4 {
    font-size: 1.125rem;
  }
}
.p-post-article__contents h5 {
  margin: 1.25rem 0;
  display: inline-block;
  color: #0068b7;
  font-size: 1.375rem;
  font-weight: 700;
}

.p-post-article__contents p {
  font-size: 16px;
  line-height: 2rem;
}

.p-post-article__contents a {
  color: #2589d0;
  text-decoration: underline;
}

.p-post-article__contents img {
  margin: 0.625rem 0;
}

.p-post-article__contents figure {
  margin: 0.625rem 0;
}

.p-post-article__contents figcaption {
  margin: 0.625rem 0;
  font-size: 1rem;
  text-align: center;
}

h2.wp-block-heading {
  padding-left: 1.5rem;
}

.sub-info .active-tab::after {
  background: linear-gradient(to right, #f0238a, #f0238a);
}

.sub-info .p-post-article__title-box h2.p-post-article__title {
  color: #262830;
  padding-left: 0;
  border-bottom: 1px solid #6b6b6c;
  padding-bottom: 1rem;
  font-size: 2.125rem;
  font-weight: bold;
  border-left: none;
  text-align: left;
}

.sub-info .p-post-article__content {
  border-bottom: 1px solid #6b6b6c;
}

.p-post-card__img {
  width: 100%;
  aspect-ratio: 1/1;
}

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

.p-post-card__body {
  position: relative;
}

.p-post-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.375rem 0 0.5rem;
}

.p-post-card__category {
  padding: 4px 4px;
  background-color: #0068b7;
  color: #fff;
  font-weight: 400;
  font-size: 0.875rem;
  text-align: center;
  margin-left: 30px;
}

.p-post-card__new {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  color: #2589d0;
  padding: 0.3125rem 0.625rem;
  border: 1px solid #2589d0;
}

.p-post-card__date {
  color: #767676;
  display: flex;
}

.p-post-card__title {
  line-height: 32px;
}

.p-post-connect__title {
  font-size: 1.5rem;
  color: #2589d0;
}

.p-post-connect__items {
  display: grid;
  gap: 3.125rem;
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .p-post-connect__items {
    row-gap: 2.5rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
  }
  .sub-info .p-post-article__title-box h2.p-post-article__title {
    font-size: 1.75rem;
  }
}
.p-post-list {
  position: relative;
}

.p-post-list__wrap {
  margin: 2rem 0;
}

.p-post-list__title {
  font-size: 3rem;
  color: #2589d0;
}

.p-post-list__items {
  display: grid;
  gap: 3.125rem;
  margin-top: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 767px) {
  .p-post-list__items {
    row-gap: 2.5rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-post-list__cards {
  margin-top: 3rem;
}

@media screen and (max-width: 767px) {
  .p-post-list__cards {
    margin-top: 6.25rem;
  }
}
.p-post-list__btn {
  margin-top: 1.25rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-post-list__btn {
    margin: 1.75rem auto 0;
    width: 100%;
    max-width: calc(61.25rem + 50px);
    padding: 0 0.625rem;
  }
}
.p-top-gallery__inner {
  margin: 5% 5% 0 5%;
}

.p-top-gallery .splide__slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-gallery .splide__slide picture {
  height: inherit;
}

.p-top-gallery .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1000/563;
}

.p-top-gallery .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-gallery .swiper-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-gallery .slick-track {
  display: block;
  width: 100%;
}

.p-top-gallery .slick-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
  margin: 0 5px;
}

.p-top-gallery .slick-slide picture {
  height: inherit;
  height: 100%;
}
.gallery-slider img {
  border-radius: 20px;
  aspect-ratio: 1;
  object-fit: cover;
}
.p-top-gallery .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-mv-slick {
  background: black;
}

.p-top-mv-slick__inner {
  margin: 5% 5% 0 5%;
}

.p-top-mv-slick .slick-track {
  display: block;
  width: 100%;
}

.p-top-mv-slick .slick-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
  margin: 0 5px;
}

.p-top-mv-slick .slick-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-slick .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-mv-splide__inner {
  margin-top: 3.75rem;
}

.p-top-mv-splide .splide__slide {
  display: block;
  width: 100%;
}

.p-top-mv-splide .splide__slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-splide .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1000/563;
}

.splide__arrow {
  width: 5rem;
  height: 5rem;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #c9a868;
}

@media screen and (max-width: 767px) {
  .splide__arrow {
    width: 3rem;
    height: 3rem;
  }
}
.splide__arrow svg {
  fill: #c9a868;
  width: 1.5rem;
  height: 1.5rem;
}

.splide__pagination {
  bottom: -2.5em;
}

.splide__pagination__page.is-active {
  transform: scale(1);
  background-color: #c9a868;
}

.splide__pagination__page {
  margin: 3px 10px 3px 10px;
  background: #fff;
}

.splide__arrow--prev {
  left: 2.5em;
}

@media screen and (max-width: 767px) {
  .splide__arrow--prev {
    left: 1em;
  }
}
.splide__arrow--next {
  right: 2.5em;
}

@media screen and (max-width: 767px) {
  .splide__arrow--next {
    right: 1em;
  }
}
.p-top-mv-swiper__inner {
  margin: 5% 5% 0 5%;
}

.p-top-mv-swiper .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-mv-swiper .swiper-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-mv-swiper .swiper-button-prev,
.p-top-mv-swiper .swiper-button-next {
  text-rendering: initial;
}

.p-top-post .splide__slide {
  display: block;
  width: 100%;
}

.p-top-post .splide__slide a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.p-top-post .splide__slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-post .splide__pagination {
  display: none;
}

.p-top-post .splide__pagination__page.is-active {
  background-color: blue;
}

.p-top-post .swiper {
  padding-bottom: 20px;
}

.p-top-post .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-post .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-post .swiper-pagination {
  bottom: 0;
}

.p-top-post .swiper-button-prev,
.p-top-post .swiper-button-next {
  text-rendering: initial;
}

.p-top-post .slick-track {
  display: block;
  width: 100%;
}

.p-top-works {
  padding-bottom: 3.125rem;
}

.p-top-works__inner {
  margin: 5% 5% 0 5%;
}

.p-top-works .splide__slide {
  display: block;
  width: 100%;
}

.p-top-works .splide__slide a {
  display: block;
  aspect-ratio: 600/400;
}

.p-top-works .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-works .splide__pagination {
  bottom: -2em;
}

.p-top-works .splide__pagination__page.is-active {
  background-color: blue;
}

.p-top-works .swiper {
  padding-bottom: 20px;
}

.p-top-works .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-works .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-works .swiper-pagination {
  bottom: 0;
}

.p-top-works .swiper-button-prev,
.p-top-works .swiper-button-next {
  text-rendering: initial;
}

.p-top-works .slick-track {
  display: block;
  width: 100%;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: 76.9230769231vw;
}

iframe html {
  overflow-y: hidden;
}

.p-area {
  margin-top: 6.25rem;
}

.p-area__logo {
  margin: 4.5rem auto 0;
  max-width: 31.25rem;
  width: 100%;
}

.p-area__about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-area__about {
    display: flex;
    flex-direction: column-reverse;
  }
}
.p-area__about div {
  position: relative;
  z-index: 2;
}

.p-area__about h3 {
  font-size: 1.625rem;
  font-weight: 700;
  padding-top: 0.625rem;
}

@media screen and (max-width: 767px) {
  .p-area__about h3 {
    padding-top: 1.875rem;
  }
}
.level-up .p-area__about h3 {
  font-size: 1.5rem;
  padding-top: 1.1875rem;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .level-up .p-area__about h3 {
    padding-top: 2.1875rem;
  }
}
.p-area__about p {
  line-height: 2rem;
  margin-top: 1.875rem;
  padding-right: 3.3125rem;
}

@media screen and (max-width: 767px) {
  .p-area__about p {
    padding-right: 0;
  }
}
.p-area__about-image {
  position: relative;
}

.p-area__about-character {
  position: absolute;
  top: 36%;
  right: -20%;
  z-index: 1;
  width: 24.5rem;
}

@media screen and (max-width: 767px) {
  .p-area__about-character {
    width: 15.625rem;
    top: 24%;
    right: -8%;
  }
}
@media screen and (max-width: 399px) {
  .p-area__about-character {
    top: 13%;
    right: -20%;
  }
}
.p-area__guide {
  margin-top: 4.375rem;
}

.p-area__guide-contents {
  margin-top: 2.6875rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.4375rem;
  row-gap: 2.3125rem;
}

@media screen and (max-width: 767px) {
  .p-area__guide-contents {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
.p-area__guide-content h3 {
  font-size: 1.5rem;
  margin-top: 2.125rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-area__guide-content h3 {
    font-size: 1.25rem;
  }
}
.p-area__guide-content p {
  margin-top: 1rem;
  line-height: 2rem;
}

.p-area__guide-gallery {
  overflow: hidden;
}

.p-area__guide-gallery h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 3.75rem;
  margin-bottom: 2.25rem;
}

.p-area__price {
  margin-top: 3.75rem;
}

.p-area__price-title {
  background-color: #da245f;
  padding-top: 0.75rem;
  padding-bottom: 1.1875rem;
  text-align: center;
  margin-top: 1.25rem;
}

.p-area__price-title.blue {
  background-color: #5ebdcc;
}

.p-area__price-title h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-area__price-title h3 {
    font-size: 1.5rem;
  }
}
.p-area__price-title p {
  font-size: 0.75rem;
  font-weight: 700;
}

.p-area__price-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-area__price-tables {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.p-area__pricing-table {
  color: #141414;
}

.p-area__pricing-header {
  display: flex;
  justify-content: center;
  padding: 10px;
  border: 2px solid #5ebdcc;
  border-radius: 5px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #5ebdcc;
}

@media screen and (max-width: 767px) {
  .p-area__pricing-header {
    font-size: 1.5rem;
  }
}
.p-area__pricing-header.red {
  border: 2px solid #da245f;
  color: #da245f;
}

.p-area__pricing-item {
  display: flex;
  justify-content: center;
  padding: 10px;
  background-color: #fff;
  align-items: center;
  margin-top: 1.25rem;
}

.p-area__pricing-item.levelup {
  margin-top: 0;
}

.p-area__item-duration {
  align-items: center;
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 700;
}

.p-area__item-duration span {
  background-color: #5ebdcc;
  padding: 0.125rem 0.8125rem 0.125rem 1.0625rem;
  color: #fff;
}

.p-area__item-duration.red span {
  background-color: #da245f;
}

.p-area__item-price {
  font-size: 2.9375rem;
  font-weight: bold;
  margin-left: 0.9375rem;
}

.p-area__item-price span {
  font-size: 1.625rem;
}

.p-area__menu {
  margin-top: 4.1rem;
}

.p-area__menu-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2.5rem;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .p-area__menu-text {
    grid-template-columns: 1fr;
  }
}
.p-area__menu-text div {
  margin-left: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-area__menu-text div {
    margin: 1.875rem 0 0 0;
  }
}
.p-area__menu-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.p-area__menu-text p {
  font-size: 1.125rem;
  margin-top: 1.5625rem;
  font-weight: 400;
}

.p-area__menu-voice {
  text-align: center;
  margin-top: 3.75rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.p-area__menu-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 3.125rem;
  -moz-column-gap: 3.4375rem;
  column-gap: 3.4375rem;
  margin-top: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-area__menu-gallery {
    gap: 15px;
  }
}
.p-area__menu-item p {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-top: 1.4375rem;
}

@media screen and (max-width: 767px) {
  .p-area__menu-item p {
    font-size: 1.125rem;
  }
}
.p-event {
  margin-top: 2.8125rem;
}

@media screen and (max-width: 767px) {
  .p-event__btn {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.p-event__btn a {
  margin: 3.5rem auto 0;
}

/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  max-width: 1200px;
  background-color: #141414;
}

/*タブのスタイル*/
.tab_item {
  width: 50%;
  height: 64px;
  background-color: #fff;
  font-size: 1.75rem;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  font-weight: 700;
  transition: all 0.2s ease;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .tab_item {
    font-size: 1.25rem;
  }
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding-left: 6.25rem;
  padding-right: 6.25rem;
  clear: both;
  overflow: hidden;
  border: 2px solid #fff;
  padding-bottom: 6.25rem;
}

@media screen and (max-width: 767px) {
  .tab_content {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
input.karaoke + .tab_item {
  color: #da245f;
}

input.bar + .tab_item {
  color: #5ebdcc;
}

input.karaoke:checked + .tab_item {
  background-color: #da245f;
  color: #fff;
}

input.bar:checked + .tab_item {
  background-color: #5ebdcc;
  color: #fff;
}

.p-company {
  color: #fff;
  background-image: url(../images/top/1_04.jpg);
  background-size: cover;
  padding-top: 5.1875rem;
  padding-bottom: 10.8125rem;
  position: relative;
  background-position: right center;
}

@media screen and (max-width: 767px) {
  .p-company {
    background-image: none;
    background-color: #141414;
    padding-bottom: 12.5rem;
  }
}
.p-company__inner {
  margin: 0 auto;
}

.p-company__title {
  display: flex;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-company__title {
    display: block;
  }
}
.p-company__title h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 4.1875rem;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-company__title h2 {
    font-size: 3.125rem;
  }
}
.p-company__title p {
  font-size: 1.25rem;
  font-weight: 400;
  margin-left: 1.25rem;
  margin-top: 2.0625rem;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-company__title p {
    margin-top: 0;
  }
}
.p-company__title img {
  position: absolute;
  z-index: 1;
  left: -11%;
  top: -97px;
}

@media screen and (max-width: 1199px) {
  .p-company__title img {
    left: -2%;
    top: -92px;
  }
}
@media screen and (max-width: 767px) {
  .p-company__title img {
    left: -3.5%;
    top: -77px;
    width: 300px;
  }
}
.p-company__voice {
  font-size: 3.3125rem;
  margin-top: 1.125rem;
}

@media screen and (max-width: 767px) {
  .p-company__voice {
    font-size: 1.875rem;
  }
}
.p-company__voice span {
  font-size: 2rem;
  margin-right: 0.3125rem;
  margin-bottom: 0.3125rem;
  margin-top: 0.625rem;
}

@media screen and (max-width: 767px) {
  .p-company__voice span {
    font-size: 1.5rem;
  }
}
.p-company__text {
  max-width: 35rem;
  font-weight: 400;
  margin-top: 1.375rem;
  line-height: 32px;
  letter-spacing: 0.03em;
}

.p-company__sign {
  display: flex;
  text-align: right;
  max-width: 35rem;
  justify-content: flex-end;
  margin-top: 1.6875rem;
}

.p-company__sign img {
  margin-left: 1.125rem;
  margin-top: -0.625rem;
  width: 148px;
}

.p-company__textbox {
  position: absolute;
  padding-top: 3.4375rem;
  padding-bottom: 2.875rem;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  background-color: #fff;
  color: #141414;
  width: 75vw;
  text-align: center;
  line-height: 2rem;
  top: 99%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
  .p-company__textbox {
    margin-top: 30px;
    width: 90vw;
  }
}
.p-company__img {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-company__img {
    display: block;
    margin-top: 1.875rem;
  }
}
.p-info {
  padding-top: 10.4375rem;
  background-image: url(../images/top/info_bg.jpg);
  background-size: cover;
  padding-bottom: 7.25rem;
}

@media screen and (max-width: 767px) {
  .p-info {
    padding-top: 15.625rem;
  }
}
.p-info__title img {
  top: -57px;
  left: -9%;
}

@media screen and (max-width: 767px) {
  .p-info__title img {
    width: 370px;
    top: -32px;
  }
}
@media (max-width: 1500px) {
  .p-info__title img {
    left: 0%;
  }
}
.p-info__button {
  margin-top: 4.75rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-info__button {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.p-info__button a {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: #f0238a;
  padding: 1rem 8.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  border-radius: 50px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .p-info__button a {
    padding: 1rem 0.9375rem;
    display: block;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.375rem;
  }
}
.p-info__slide {
  margin-top: 1.5625rem;
}

@media screen and (max-width: 767px) {
  .p-info__slide {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
.p-info .splide__pagination {
  display: none;
}

.p-info .splide__arrow {
  border: none;
}

.p-info .splide__arrow svg {
  fill: #141414;
}

.p-mv {
  overflow: hidden;
  position: relative;
}

.p-mv__img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100vh;
}

.p-mv__catch {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  text-align: center;
  padding-left: 2.5rem;
}
.p-mv__catch img {
	max-width: 450px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-mv__catch {
    padding-left: 0.9375rem;
  }
}
.p-mv__catch2 {
  margin: 3rem auto 0;
}

/* 高さ・位置・透過が変化して矢印が上から下に動く */
@keyframes arrowmove {
  0% {
    top: 30px;
    opacity: 0.5;
  }
  50% {
    top: 45px; /* 矢印の下移動距離を調整 */
    opacity: 1;
  }
  100% {
    top: 30px;
    opacity: 0.5;
  }
}
.p-recruit {
  padding-top: 6.25rem;
  padding-bottom: 5.3125rem;
  background-image: url(../images/top/1_05.jpg);
  background-size: cover;
  position: relative;
  background-position: bottom;
}

.p-recruit__cercle {
  position: absolute;
  top: 0;
  right: 55%;
}

.p-recruit__title {
  flex-direction: column;
  align-items: flex-start;
}

.p-recruit__title img {
  top: -103px;
  left: -16%;
}

@media (max-width: 1500px) {
  .p-recruit__title img {
    left: -3%;
    width: 400px;
  }
}
@media (max-width: 1500px) {
  .p-recruit__title img {
    width: 370px;
    top: -86px;
  }
}
.p-recruit__message {
  font-size: 1.75rem;
  line-height: 44px;
  margin-top: 1rem;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
  .p-recruit__message {
    font-size: 1.25rem;
    line-height: 1.6875rem;
  }
}
.p-recruit__text {
  margin-top: 1.6875rem;
  max-width: 26.875rem;
  letter-spacing: 0.03em;
  line-height: 32px;
}

.p-recruit__contents {
  position: relative;
  z-index: 2;
}

.p-recruit__button {
  margin-left: -0.9375rem;
}

.p-recruit {
  position: relative;
  overflow: hidden;
}

.background-half {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

@media screen and (max-width: 767px) {
  .background-half {
    width: 100%;
  }
}
.p-recruit .c-section-title2 p {
  margin: -0.5rem 0 0 0;
}

.p-service {
  background-image: url(../images/top/top_bg.jpg);
  background-size: cover;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.p-service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 3.4375rem;
}

@media screen and (max-width: 767px) {
  .p-service-item {
    grid-template-columns: 1fr;
  }
}
.p-service-item__img {
  position: relative;
  z-index: 2;
}

.p-service-item__body {
  margin-top: 2.5rem;
  padding-top: 4.125rem;
  padding-bottom: 0.75rem;
  padding-left: 4.8125rem;
  margin-left: -2.5rem;
  position: relative;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-service-item__body {
    padding-left: 3.8125rem;
  }
}
.p-service-item__body-odd {
  max-width: 35rem;
  margin-left: auto;
  margin-right: 2.5rem;
  position: relative;
  grid-row: 2;
}

@media screen and (max-width: 767px) {
  .p-service-item__body-odd {
    margin-right: 0;
  }
}
.p-service-item__button {
  display: flex;
  justify-content: space-between;
  max-width: 35rem;
}

.p-service-item__button.third {
  margin-top: 1.875rem;
}

.p-service-item__button img {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-service-item__button img {
    padding-right: 0.9375rem;
  }
}
.p-service-item__img:nth-child(odd) {
  text-align: right;
  text-align: -webkit-right;
}

.p-service-item__levelup {
  position: absolute;
  bottom: 0;
  left: 2.5rem;
  z-index: 1;
  width: 316px;
}

@media screen and (max-width: 767px) {
  .p-service-item__levelup {
    opacity: 0.3;
  }
}
.p-service-item:nth-child(2) {
  margin-top: 4rem;
}

.p-service-item:nth-child(3) {
  margin-top: 2.5rem;
}

.p-service-item__body:nth-child(3) {
  padding-top: 3.75rem;
}

@media screen and (max-width: 767px) {
  .p-service-item__img {
    grid-row: 1;
  }
}
.p-top-splide__slide {
  background-color: #fff;
  padding: 1.25rem;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 10, 0.16);
  margin-top: 10px;
  margin-bottom: 10px;
}

.pagination {
  width: 100%;
}

.nav-links ul {
  display: flex;
  justify-content: center;
}

.nav-links ul li a,
.nav-links ul li span {
  color: #141414;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .nav-links ul li a,
  .nav-links ul li span {
    font-size: 1.5rem;
  }
}
.nav-links ul li span.current {
  color: #fff;
  background: #f0238a;
  padding: 0.4375rem 0.9375rem 0.5625rem;
}

.nav-links ul li {
  position: relative;
  margin: 0 0.3125rem;
}

@media screen and (max-width: 767px) {
  .nav-links ul li {
    margin: 0 0.625rem;
  }
}
.nav-links ul li a,
.nav-links ul li span {
  display: block;
  width: 100%;
  padding: 0.3125rem;
}

@media screen and (max-width: 767px) {
  .nav-links ul li a,
  .nav-links ul li span {
    padding: 0.625rem;
  }
}
.nav-links ul li .nav-links ul .dots {
  padding-right: 0;
  padding-left: 0;
}

.feature-contents-wrap {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

.feature-recommend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  gap: 1.875rem;
  margin-top: 3.75rem;
}

.feature-recommend img {
  aspect-ratio: 380/257;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.feature-recommend h3 {
  font-size: 1.25rem;
  margin-top: 1.25rem;
  font-weight: 400;
}

.feature-wrap h2 {
  font-size: 1.5rem;
  font-weight: 400;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

.feature-wrap {
  padding-top: 3.75rem;
  padding-bottom: 6.25rem;
  background: rgba(233, 241, 249, 0.2);
}

.p-sub-company__titles.feature {
  background-image: none;
  padding: 3.75rem 0;
}

.feature .p-sub-company__titles h2 {
  text-align: center;
}

.feature .p-sub-company__titles p {
  text-align: center;
}

.feature .entry-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.feature.item .my-content__wrap {
  gap: 2.5rem;
}

.feature-recommend-archive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  max-width: 86.875rem;
  margin-left: auto;
  margin-right: auto;
  gap: 1.875rem;
  row-gap: 3.75rem;
  padding-left: 15px;
  padding-right: 15px;
}

.home .feature-recommend-archive {
  padding: 0;
}

.feature-recommend-archive h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: 2.25rem;
}

.feature-items {
  padding: 3.75rem 0 6.25rem;
}

.feature-btn {
  margin-top: 5.625rem;
  text-align: center;
}

.maker-slide {
  padding: 3.75rem 0 6.25rem;
}

.maker-slider {
  margin-top: 2.5rem;
}

.maker-slider img {
  border-radius: 4px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.0823529412);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 14px;
}

.maker-slider .slick-slide {
  padding-left: 15px;
  padding-right: 15px;
}

.maker-slide-btn {
  margin-top: 3.75rem;
}

.gallery-slider .slick-slide {
  padding-left: 7px;
  padding-right: 8px;
}

.p-service-gallery {
  margin-top: 3.75rem;
  padding-bottom: 6.25rem;
}

.gallery-slider {
  margin-top: 2.5rem;
}

@media screen and (max-width: 767px) {
  .feature-recommend-archive {
    grid-template-columns: 1fr;
  }
  .feature-recommend-archive h3 {
    margin-top: 15px;
  }
  .feature-recommend-archive {
    gap: 30px;
  }
  .maker-slider .slick-slide {
    padding-left: 7px;
    padding-right: 7px;
  }
  .p-service-gallery {
    padding-bottom: 3.25rem;
  }
  .feature.item .my-content__wrap {
    gap: 0.625rem;
  }
  .feature-recommend {
    grid-template-columns: 1fr;
  }
  .feature-wrap {
    padding: 30px 15px 60px;
    margin-bottom: 20px;
  }
}
.information-table {
  width: 100%;
  max-width: 900px;
  margin: auto;
  border-collapse: collapse;
  margin-top: 1.625rem;
}

.table-row {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #0068b7 10%, #6b6b6c 10%);
  background-size: 100% 1px; /* 全幅で高さ1px */
  background-repeat: no-repeat;
  background-position: bottom;
}

.table-label {
  width: 100px;
  font-weight: 400;
  color: #6b6b6c;
  line-height: 2;
  padding: 1.5rem 2.1875rem 1.1875rem 0.9375rem;
}

.table-content {
  flex-grow: 1;
  padding: 1.5rem 2.1875rem 1.1875rem 2.0625rem;
  line-height: 2;
}

.p-information {
  padding-bottom: 4.6875rem;
  padding-top: 3rem;
}
.p-information__map {
  margin-top: 2rem;
}

.p-information__map iframe {
  width: 100%;
  height: 359px;
}

@media screen and (max-width: 767px) {
  .table-content {
    padding: 0;
    line-height: 1.5;
  }
  .table-row {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #0068b7 30%, #6b6b6c 30%);
    background-size: 100% 1px; /* 全幅で高さ1px */
    background-repeat: no-repeat;
    background-position: bottom;
  }
}
.item .my-content__wrap a {
  display: block;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.0823529412);
  padding-top: 0;
  padding-bottom: 15px;
  border-radius: 4px;
  border-bottom: none;
}

.item .my-content__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 0;
  gap: 18px;
  row-gap: 40px;
}

.item .custom-thumbnail {
  aspect-ratio: 250/313;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.item-field.item01 {
  font-size: 16px;
  font-weight: 400;
  background: #fff3b2;
  padding: 4px 0 4px 10px;
}

.item-field.item02 {
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
  line-height: 24px;
  min-height: 4.5rem;
}

.item-field-text {
  font-size: 14px;
  line-height: 24px;
  margin-top: 10px;
}

.item-field.item03 {
  font-size: 12px;
  font-weight: 400;
  text-align: right;
}

.item-field.item03 span {
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  margin: 0 10px;
  text-decoration: line-through;
}

.item-body {
  padding: 15px;
  padding-top: 0;
  padding-left: 5px;
}

.item-field.item04 {
  font-size: 12px;
  font-weight: 400;
  text-align: right;
  line-height: 1;
}

.item-field.item04 span {
  font-size: 32px;
  font-weight: 900;
  margin: 0 10px;
  font-family: "Montserrat", sans-serif;
  color: #f23d3d;
}

.item-thumbnail {
  position: relative;
}

.post-card__date {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 4px 10px 6px;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  border-radius: 10px 0 0 0;
}

.item-badge {
  position: absolute;
  top: 10px;
  left: 10px;
}

.item-sale-banner {
  position: absolute;
  top: -5px;
  right: -5px;
}

.purchase-tag {
  color: #646464;
  font-size: 12px;
  padding: 3px 10px;
  border: 1px #333 solid;
  margin: 5px;
}

.item-tags {
  margin-top: 10px;
}

.item .my-tab-content {
  max-width: 1390px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.item .my-content__cat {
  border-bottom: 1px solid #262830;
  padding-bottom: 15px;
  padding-left: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.item .category-item a {
  display: grid;
  grid-template-columns: 32px 1fr;
  font-size: 14px;
  align-items: center;
  gap: 10px;
  position: relative;
}

.item-contents-wrap {
  display: flex;
  align-items: flex-start;
  margin-top: 3.75rem;
  gap: 2.5rem;
}

.category-list {
  min-width: 16.25rem;
}

@media screen and (max-width: 1100px) {
  .item .my-content__wrap {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .item-contents-wrap {
    display: block;
  }
  .item .my-content__wrap {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 30px;
  }
  .p-top-item .category-list {
    margin-top: 20px;
  }
  .item-field.item04 span {
    font-size: 1.875rem;
    margin: 0;
  }
  .purchase-tag {
    word-break: auto-phrase;
    gap: 5px;
  }
  .item-body {
    padding: 5px;
    padding-bottom: 15px;
  }
}
.category-title {
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 0.9375rem;
  border-bottom: 1px #262830 solid;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.item .category-item a::before {
  content: "";
  position: absolute;
  display: block;
  width: 0.4rem;
  height: 0.8rem;
  background-size: cover;
  margin-top: 3px;
  vertical-align: middle;
  background-image: url(../images/item/next.svg);
  right: 0;
  background-size: contain;
  background-repeat: no-repeat;
}

.category-item + .category-item {
  margin-top: 20px;
}

.item-title {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

.item-title h2 {
  letter-spacing: 0.08em;
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  color: #0068b7;
	font-family: "Montserrat", sans-serif;
}

.item-title h2 span {
  display: block;
  letter-spacing: 0;
  font-size: 1.25rem;
  font-weight: 400;
}

.item-recommend {
  padding: 3.75rem 0 6.25rem;
  background: rgba(233, 241, 249, 0.2);
}

.item-category-row {
  padding: 3.3125rem 0.9375rem 6.25rem;
}

.category-list-row a {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px #6b6b6c solid;
  padding: 20px 0;
  margin-top: 4px;
}

.category-list-row a img {
  width: 3.125rem;
}

.category-list-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 75rem;
  margin: 0.625rem auto 0;
  gap: 1.875rem;
  row-gap: 0.25rem;
}

.category-list-row .category-item + .category-item {
  margin-top: 0;
}

.home .category-list-row {
  margin-top: -0.625rem;
}

.category-select {
  display: none; /* PCでは非表示 */
}

.category-select-mobile {
  display: none; /* セレクトボックスを非表示に */
}

.text-inventory {
  margin-top: 2rem;
}

@media screen and (max-width: 767px) {
  .item-title h2 {
    display: block;
    font-size: 28px;
  }
  .p-service__cotent .item-title h2 span {
    margin-left: 0;
    font-size: 16px;
  }
  .p-service__cotent .item-title h2 span.ml10 {
    margin-left: 10px;
  }
  .item-title h2 span {
    margin-left: 0;
    font-size: 16px;
  }
  .item-title h2 span.ml10 {
    margin-left: 10px;
  }
  .category-list-row {
    grid-template-columns: 1fr 1fr;
  }
  .item-category-row {
    padding-bottom: 60px;
  }
  .gallery-title.item-title h2 {
    padding-left: 15px;
  }
  .category-select {
    display: block;
  }
  .category-select {
    width: 100%; /* セレクトボックスの幅をコンテナの100%に設定 */
    padding: 10px; /* 内側の余白 */
    border: 1px solid #ccc; /* 境界線を設定 */
    margin-top: 30px; /* 上マージン（px単位で指定、premではなく） */
    -moz-appearance: none;
    appearance: none; /* ブラウザデフォルトのスタイルを無効にする */
    -webkit-appearance: none; /* WebKit (Safariなど) での外見を無効にする */
    background-color: white; /* 背景色を白に設定 */
    cursor: pointer; /* マウスカーソルをポインタに設定 */
    background-image: url(../images/common/arrow1_bk.svg);
    background-repeat: no-repeat;
    background-position: right 10px center; /* アイコンの位置を右中央に設定 */
    background-size: 12px 12px;
    rotate: degree;
  }
  .category-list .category-item {
    display: none; /* 通常のカテゴリーリストを非表示に */
  }
  .category-select-mobile {
    display: block; /* セレクトボックスを表示 */
  }
  .service .category-select {
    margin-top: 0;
  }
  .service .p-top-works .works-btn {
    margin-top: 3rem;
  }
  .item-recommend.bg-blue .item-title {
    padding-left: 15px;
  }
  .p-top-works .item-title span {
    margin-left: 10px;
  }
  .p-top-service .c-title h2 {
    padding-left: 0;
  }
  .item-badge {
    width: 55px;
  }
  .item-sale-banner {
    width: 90px;
    right: -4px;
  }
  .ml10 {
    margin-left: 10px;
  }
}
.maker-title {
  font-size: 1.75rem;
  font-weight: 400;
}

.maker-wrap {
  max-width: 76.875rem;
  margin: 3.75rem auto 4.6875rem;
  padding-left: 15px;
  padding-right: 15px;
}

.maker-img {
  text-align: center;
}

.maker-img img {
  border: 1px solid #6b6b6c;
  border-radius: 4px;
}

.maker-img a {
  display: inline-block;
  width: 8.125rem;
  height: 2rem;
  margin-top: 1.25rem;
  font-size: 16px;
  line-height: 32px;
}

.maker-contents {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2.875rem;
}

@media screen and (max-width: 767px) {
  .maker-contents {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
.p-mv {
  overflow: hidden;
  position: relative;
}

.p-mv__img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100vh;
}

.p-mv__catch {
    width: 100%;
    position: absolute;
    top: auto;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -30%);
    text-align: center;
    padding-left: 2.5rem;
}

.p-mv__scroll img {
  position: absolute;
  right: 3.6875rem;
  width: 0.6875rem;
  bottom: 9%;
}

.p-mv__scroll::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 55px; /* height が重複していたので、1つに修正 */
  background: #eee;
  animation: arrowmove 1.4s ease-in-out infinite;
  right: 4rem;
  bottom: 0;
}

@keyframes arrowmove {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
.p-mv__instagram {
  position: absolute;
  right: 1.875rem;
  bottom: 30%;
  z-index: 9999;
}

.p-mv__instagram img {
  width: 2.5rem;
}

.p-mv__instagram a:hover {
  opacity: 0.6;
}

.p-mv__text-wrap {
  position: absolute;
  bottom: 25px;
  left: 0;
  overflow: hidden;
}

.p-mv__text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.1em;
  color: #262830;
  padding: 1.125rem 0.5625rem 1.375rem 2.5625rem;
  background: #fff;
  display: inline-block;
  margin-top: 0.875rem;
  letter-spacing: 0.19em;
  white-space: nowrap;
  transform: translateX(-100%);
  animation: slideIn 0.8s forwards ease-out;
  will-change: transform;
  backface-visibility: hidden; /* バックフェイスの隠蔽 */
}

.p-mv__text.second {
  padding-right: 2rem;
}

.p-mv__text.third {
  padding-right: 0;
}

.p-mv__text-small {
  font-size: 1.75rem;
}

.p-mv__text-blue,
.p-mv__text-blue2 {
  color: #0068b7;
  margin-left: -0.625rem;
}

.p-mv__text-blue2 {
  margin-left: 0;
}

.p-mv__text + .p-mv__text {
  margin-top: 0.875rem;
}

@keyframes slideIn {
  from {
    transform: translate3d(
      -100%,
      0,
      0
    ); /* ハードウェアアクセラレーションの強制 */
  }
  to {
    transform: translate3d(0, 0, 0); /* ハードウェアアクセラレーションの強制 */
  }
}
@keyframes slideIn {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

@media screen and (max-width: 767px) {
  .p-mv__catch {
    padding-left: 0.9375rem;
  }
  .p-mv__text {
    font-size: 1.5rem;
    line-height: 26px;
    padding: 0.3125rem 0.0625rem 0.3125rem 0.625rem;
  }
  .p-mv__text-small {
    font-size: 1.2rem;
  }
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
  .p-mv__instagram {
    bottom: 37%;
  }
}
.home-mv {
  position: relative;
}

.home-mv__slide img {
  height: 100vh;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.home-mv .slider-img img {
  height: auto;
  width: 100%;
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
    /* 拡大率 */
  }
}
.home-mv .add-animation {
  animation: fadezoom 5s 0s forwards;
}

.p-mv__text-wrap {
  position: absolute;
  bottom: 25px;
  left: 0;
  overflow: hidden;
}

.p-mv__text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.1em;
  color: #262830;
  padding: 1.125rem 0.5625rem 1.375rem 2.5625rem;
  background: #fff;
  display: inline-block;
  margin-top: 0.875rem;
  letter-spacing: 0.19em;
  white-space: nowrap;
  transform: translateX(-100%);
   animation: slideIn 0.8s forwards ease-out;
  will-change: transform;
  backface-visibility: hidden; /* バックフェイスの隠蔽 */
}

.p-mv__text.second {
  padding-right: 2rem;
}

.p-mv__text.third {
  padding-right: 0;
}

.p-mv__text-small {
  font-size: 1.75rem;
}

.p-mv__text-blue,
.p-mv__text-blue2 {
  color: #0068b7;
  margin-left: -0.625rem;
}

.p-mv__text-blue2 {
  margin-left: 0;
}

.p-mv__text + .p-mv__text {
  margin-top: 0.875rem;
}

@keyframes slideIn {
  from {
    transform: translate3d(
      -100%,
      0,
      0
    ); /* ハードウェアアクセラレーションの強制 */
  }
  to {
    transform: translate3d(0, 0, 0); /* ハードウェアアクセラレーションの強制 */
  }
}
@keyframes slideIn {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.full-height {
  height: calc(var(--vh, 1vh) * 100);
}

.p-pager-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.p-pager-list__btn a {
  display: inline-block;
  padding: 10px 20px;
  color: #0068b7;
}

.p-pager-list__btn.back a {
  background: #0068b7;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 14px 5rem;
}

@media screen and (max-width: 767px) {
  .p-pager-list__btn.back a {
    padding: 14px 0.625rem;
    width: 154px;
    text-align: center;
  }
}
.p-post-article__inner.l-inner {
  margin-top: 2rem;
}

.p-post-article__title {
  font-size: 3rem;
  color: #0068b7;
}

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

.p-post-article__category {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
}

.p-post-article__box {
  margin: 6.4rem auto 0;
}

.p-post-article__content {
  padding: 0;
  background-color: #fff;
  width: 100%;
  border-bottom: 1px solid #6b6b6c;
}

.p-post-article__content-wrap {
  padding-bottom: 5rem;
  width: 100%;
  margin: auto;
}

.p-post-article__contents {
  margin-top: 1.875rem;
}

.p-post-article__main-img {
  aspect-ratio: 7/4;
}

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

.p-post-article__category {
  letter-spacing: 0;
}

.p-post-article__data {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #646464;
}

.p-post-article__content h2 {
  margin: 1.875rem 0 0.9375rem;
  padding: 0.3125rem 1.25rem;
  font-size: 2rem;
}

.p-post-article__contents h3 {
  margin: 1.875rem 0 0.9375rem;
  color: #262830;
  font-size: 1.75rem;
}

.p-post-article__contents h4 {
  margin: 0.625rem 0;
  font-size: 1.5rem;
}

.p-post-article__contents a {
  color: #0068b7;
  text-decoration: underline;
}

.p-post-article__contents img {
  margin: 0.625rem 0;
}

.p-post-article__contents figure {
  margin: 0.625rem 0;
}

.p-post-article__contents figcaption {
  margin: 0.625rem 0;
  font-size: 0.75rem;
}

.p-post-card__img {
  width: 100%;
  aspect-ratio: 400/300;
}

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

.p-post-card__body {
  position: relative;
}

.p-post-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.p-post-card__category li {
  padding: 0.3125rem;
  color: #0068b7;
  border: 1px solid #0068b7;
}

.p-post-card__new {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  color: #0068b7;
  padding: 0.3125rem 0.625rem;
  border: 1px solid #0068b7;
}

.p-post-connect__title {
  font-size: 1.5rem;
  color: #0068b7;
}

.p-post-connect__items {
  display: grid;
  gap: 3.125rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-post-connect__items {
    row-gap: 2.5rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-post-list {
  position: relative;
}

.p-post-list__wrap {
  margin: 2rem 0;
}

.p-post-list__title {
  font-size: 3rem;
  color: #0068b7;
}

.p-post-list__items {
  display: grid;
  gap: 3.125rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-post-list__items {
    row-gap: 2.5rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-post-list__cards {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-post-list__cards {
    margin-top: 6.25rem;
  }
}

.p-post-list__btn {
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-post-list__btn {
    margin: 1.75rem auto 0;
    width: 100%;
    max-width: calc(61.25rem + 50px);
    padding: 0 0.625rem;
  }
}

.p-question-box {
  margin-top: 2rem;
  max-width: 56.25rem;
  margin-left: auto;
  margin-right: auto;
}

.p-question-box__qaArea ul li + li {
  margin-top: 1.5rem;
}

.p-question-box__qaArea ul li .question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 25px;
  background-color: #0068b7;
  border-radius: 14px;
}

.p-question-box__qaArea ul li .question .title {
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1.7777777778;
  font-size: 16px;
  color: #fff;
}

.p-question-box__qaArea ul li .question .title .head {
  flex-shrink: 0;
  margin-right: 30px;
  font-size: 34px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #fff;
}

.p-question-box__qaArea ul li .question .icon {
  flex-shrink: 0;
  transition: all 0.4s;
}

.p-question-box__qaArea ul li .question .icon img {
  height: 23px;
}

.p-question-box__qaArea ul li .question.is-open .icon {
  transform: rotate(90deg);
}

.p-question-box__qaArea ul li .answer {
  display: none;
  padding: 20px 16px 30px 22px;
}

.p-question-box__qaArea ul li .answer .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8888888889;
}

@media screen and (max-width: 767px) {
  .p-question-box {
    margin-top: 40px;
  }
  .p-question-box__qaArea ul li + li {
    margin-top: 20px;
  }
}
.p-reason__main-text {
  padding: 3rem 0 4rem;
  position: relative;
  background: linear-gradient(to left, #5dc1ea 0%, #0068b7 100%);
  border-top-right-radius: 200px;
  margin-top: 3rem;
}
.p-reason__main-text div {
  font-size: 1.25rem;
  font-weight: 400;
  text-align: center;
  margin-top: 1.25rem;
}

.p-reason__main-text p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
  max-width: 58.125rem;
  margin: 2.5rem auto 0;
  /* text-shadow: 0px 0px 6px rgba(255, 255, 255, 0.25); */
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  color: #fff;
}

.reason-slider .slick-slide {
  padding-right: 10px;
  padding-right: 10px;
}

.reason .maker-slide {
  padding: 3.75rem 0 5rem;
}

.reason .maker-slider {
  margin-top: 0;
}
.p-reason__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 15px;
}
.p-reason__content + .p-reason__content {
  margin-top: 3rem;
}
.p-reason__content img {
  border-radius: 0 100px 0 100px;
}

.p-reason__content-wrap {
  margin-top: 3.75rem;
}

.p-reason__content-text {
  padding-right: 2.5rem;
  margin-left: auto;
  max-width: 37.5rem;
  position: relative;
  margin-top: 1.875rem;
}

.p-reason__content-text p {
  font-family: "Montserrat", sans-serif;
  font-size: 12rem;
  color: #e3f5fc;
  font-weight: 900;
  position: absolute;
  z-index: -1;
  top: -14%;
  line-height: 1;
  right: 0;
}

.p-reason__content-text h3 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-top: 0.625rem;
  color: #0068b7;
}

.p-reason__content-text div {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 2.5rem;
  padding-bottom: 5rem;
}

.even .p-reason__content-text {
  padding-left: 3.75rem;
  margin-right: auto;
  margin-left: 0;
  padding-right: 0;
  align-self: auto;
  margin-top: 1.875rem;
  position: relative;
}

.p-reason__service {
  margin-top: 3.25rem;
  background: #f1f9ff;
  padding: 4rem 15px;
}

.p-reason__service .c-title h2 {
  text-align: center;
}

.p-reason__service .c-title h2::after {
  content: none;
}

.p-reason_flow {
  margin-top: 6.25rem;
}
.p-reason__flow-content {
  text-align: center;
  position: relative;
  padding: 1.25rem 1.625rem 1.9375rem 1.6875rem;
  border: 1px solid #0068b7;
}

.p-reason__flow-content p {
  color: #0068b7;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: -1.625rem;
  position: relative;
  z-index: 3;
  text-align: center;
}

.p-reason__flow-content p span {
  font-size: 45px;
  line-height: 0.6;
}

.p-reason__flow-content h3 {
  font-size: 20px;
  font-weight: bold;
  color: #0068b7;
  margin-top: 20px;
}

.p-reason__flow-content div div {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 10px;
  text-align: left;
}

.p-reason__flow-content img {
  margin: auto;
}

.p-reason__flow-arrow {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.p-reason__flow-content-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 75rem;
  margin: 2.5rem auto 0;
}

.p-reason__flow-content-wrap .p-reason__flow-content:first-child {
  border-radius: 10px 0 0 10px;
}

.p-reason__flow-content-wrap .p-reason__flow-content:last-child {
  border-radius: 0 10px 10px 0;
}
.p-reason__faq {
  background: #d4e0eb33;
  padding-top: 3rem;
  margin-top: 3rem;
  padding-bottom: 6.25rem;
  border-radius: 0 200px 0 200px;
}

@media screen and (max-width: 767px) {
  .p-reason__content {
    display: flex;
    flex-direction: column;
  }
  .p-reason__content.odd {
    display: flex;
    flex-direction: column-reverse;
  }
  .p-reason__content-wrap {
    margin-top: 2.5rem;
  }
  .p-reason__content-text p {
    z-index: -1;
    top: -60px;
    opacity: 0.8;
  }
  .p-reason__content-text {
    padding: 0 15px;
  }
  .even .p-reason__content-text {
    padding: 0 15px;
  }
  .p-reason__content-text div {
    margin-top: 1rem;
    padding-bottom: 1rem;
  }
  .p-reason__content-text h3 {
    font-size: 1.5rem;
    margin-top: 0;
  }
  .p-reason__service {
    margin-top: 0;
  }
  .p-reason__flow-content-wrap {
    grid-template-columns: 1fr;
    padding-left: 15px;
    padding-right: 15px;
  }
  .p-reason__flow-content {
    padding: 15px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;
  }
  .p-reason__flow-arrow {
    display: none;
  }
  .p-reason__flow-content p span {
    font-size: 35px;
  }
  .p-reason__flow-content h3 {
    font-size: 16px;
    margin-top: 0;
  }
  .p-reason__faq {
    margin-top: 2rem;
    padding-top: 2.5rem;
    padding-bottom: 4rem;
  }
  .p-reason__flow-content div div {
    line-height: 1.5;
    letter-spacing: initial;
  }
  .p-reason__flow-content-wrap .p-reason__flow-content:first-child {
    border-radius: 0;
  }
  .p-reason__flow-content-wrap .p-reason__flow-content:last-child {
    border-radius: 0;
  }
}
.p-top-service {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  background: #f1f9ff;
}

.p-top-service__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 2.5rem;
  gap: 2rem;
}

.p-top-service .c-title {
  max-width: 76.875rem;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.p-card__img-wrap p span {
  font-size: 1rem;
}

.p-card__img-wrap {
  width: 100%;
  position: relative;
  cursor: pointer;
  border-radius: 0 50px 0 50px;
  overflow: hidden;
}
.p-card__img img {
  transition: transform 0.5s ease;
  display: block;
  aspect-ratio: 3 / 2;
}

.p-card__img-wrap:hover .p-card__img img {
  /* transform: scale(1.05);  */
  opacity: 0.6;
    transition: opacity 0.3s;
  }
.p-card__img {
  width: inherit;
}

.p-card__img {
  width: inherit;
  height: auto;
  display: block;
  position: relative;
}
.p-card__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.p-card__block {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  color: white;
  background: rgba(38, 40, 48, 0.7);
  width: 100%;
  height: 100%;
  transition: opacity 0.4s;
  display: block;
  margin: 0;
  padding: 20px;
  z-index: 2;
}

.p-top-service__wrap a:hover {
  opacity: 1;
}

.p-card__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10.625rem;
}

.p-card__img-wrap:hover .p-card__block {
  opacity: 1;
}

.p-card__img-wrap p {
  position: absolute;
  bottom: 40px;
  left: 20px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  /* font-family: "Montserrat", sans-serif; */
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.08em;
  z-index: 1;
}

.p-service__cotent-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  position: relative;
}

.p-service__cotent-decotext {
  position: absolute;
  top: -6.25rem;
  right: 0;
  text-align: right;
  font-size: 3.75rem;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #0068b7;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.p-service__cotent-decotext.left {
  text-align: left;
  left: 0;
}

.p-service__cotent {
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.p-service__cotent-text h3 {
  font-size: 2.125rem;
  font-weight: 400;
  color: #262830;
}

.p-service__cotent-text p {
  font-size: 1rem;
  font-weight: 400;
  color: #262830;
  line-height: 2rem;
  margin-top: 1.875rem;
}

.p-service__bus-content-icons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2.5rem 1.5rem;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}
.p-service__bus-content-icons img {
  border-radius: 0 50px 0 50px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.p-service__bus-content-icons p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 1rem;
}

.p-service__title {
  margin-top: 3.75rem;
  padding-left: 15px;
}

.p-service__point {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
  margin-top: 2.5rem;
}

.p-service__point h4 {
  font-size: 1.625rem;
  font-weight: 700;
  margin-top: 1.25rem;
  color: #0068b7;
}

.p-service__point-deco {
  font-size: 2.5rem;
  font-weight: 500;
  margin-top: -1.875rem;
  text-transform: uppercase;
  color: #0068b7;
  font-family: "Montserrat", sans-serif;
}

.p-service__point-text {
  color: #262830;
  font-size: 1rem;
  line-height: 2rem;
  padding-right: 1.25rem;
  margin-top: 1rem;
}
.p-service-btn {
  margin-top: 3.75rem;
  text-align: center;
}

.p-service-recommended-points {
  padding-top: 5.625rem;
}

.p-service-interior {
  padding-top: 7rem;
  padding-bottom: 3.75rem;
}

.p-service-interior.bg-gradation2 {
  padding-bottom: 6.25rem;
}

p.p-service__bus-content-icon-text {
  font-weight: 400;
  text-align: left;
}

.list-container {
  text-align: center; /* コンテナ内の要素を中央寄せに */
  margin-top: 1.25rem;
}

.centered-list {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
  list-style-type: disc;
}

.centered-list li {
  margin-top: 0.625rem;
}

.p-service-works .slider {
  margin-top: 1.875rem;
}

.p-service-works .slider .post-title {
  text-decoration: underline;
}

.p-top-works.p-service-works {
  padding-bottom: 6.25rem;
}

.p-service__cotent.partition {
  padding-top: 6.75rem;
  padding-bottom: 0;
}

.partition .p-service__cotent-decotext {
  top: -2.8125rem;
}

@media screen and (max-width: 767px) {
  .p-top-service__wrap {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .p-service__cotent-wrap {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
  }
  .p-service__cotent-decotext {
    font-size: 1.5625rem;
    top: -2.8rem;
  }
  .p-service__cotent {
    padding-top: 4.375rem;
    padding-bottom: 3rem;
  }
  .p-service__cotent-text h3 {
    font-size: 1.5rem;
  }
  .p-service__cotent-text p {
    margin-top: 1rem;
  }
  .p-service__bus-content-icons {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    row-gap: 20px;
  }
  .order1 {
    order: 1;
  }
  .p-service__point {
    grid-template-columns: 1fr;
  }
  .p-service__point h4 {
    font-size: 1.3rem;
  }
  .p-service__point-text {
    margin-top: 1rem;
    padding: 0;
  }
  .p-service__point div:nth-child(2),
  .p-service__point div:nth-child(5) {
    margin-top: 2rem;
  }
  .p-service__point div:nth-child(3),
  .p-service__point div:nth-child(6) {
    margin-top: 2rem;
  }
  .p-service-btn {
    margin-top: 2.75rem;
  }
  .p-service-interior {
    padding-top: 6.25rem;
  }
  .p-service-interior.bg-gradation2 {
    padding-bottom: 3.75rem;
  }
  .p-service__bus-content-icons p {
    margin-top: 10px;
    font-size: 18px;
    text-align: left;
}
  .list-container {
    margin-top: 5px;
    text-align: left;
}
  .p-service__point .mt60 {
    margin-top: 3.75rem;
  }
  .p-service__cotent-decotext.left {
    left: 15px;
  }
}
/* .slick-initialized .slick-slide {
  margin-bottom: 4rem;
} */
.property-slider img {
  aspect-ratio: 100/100;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
  padding: 4px;
}

.thumbnail-slider img {
  aspect-ratio: 100/100;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
  padding: 4px;
}

.thumbnail-slider .splide__list {
  display: flex;
  justify-content: center; /* サムネイルを中央寄せにする */
}

.thumbnail-slider .splide__slide {
  margin: 0 5px; /* サムネイル間の余白 */
}

.thumbnail-slider .splide__slide img {
  width: auto; /* オリジナルのアスペクト比を保持する */
  height: 58px; /* サムネイルの高さを統一する */
}

.item-slider-wrap {
  width: 50%;
}

.slick-prev,
.slick-next {
  color: #262830; /* 矢印の色 */
  font-size: 24px; /* 矢印のサイズ */
  line-height: 1; /* 矢印のラインハイトを適切に設定 */
  position: absolute; /* 絶対位置指定 */
  top: 50%; /* コンテナの中央に */
  z-index: 10; /* コンテンツの上に */
  background: transparent; /* 背景を透明に */
  border: none; /* 枠線なし */
}

.slick-prev {
  left: 50px; /* 左側に配置 */
}

.slick-next {
  right: 50px; /* 右側に配置 */
}

/* Slickスライダーのデフォルト矢印アイコンを無効にする */
.slick-prev:before,
.slick-next:before {
  content: ""; /* 既存のアイコンを削除する */
  display: none; /* 疑似要素を非表示にする */
}

/* カスタム矢印のスタイルを設定する */
.slick-prev,
.slick-next {
  width: 50px; /* 矢印の幅を指定 */
  height: 50px; /* 矢印の高さを指定 */
  background: transparent; /* 背景を透明にする */
  border: none; /* 枠線を削除する */
  color: transparent; /* 矢印アイコンの色を透明にする */
  outline: none; /* アウトラインを削除する */
}

/* カスタム矢印画像のスタイルを設定する */
.slick-prev,
.slick-next {
  background-image: url(../images/common/prev2.svg);
  background-size: contain; /* 画像がコンテナにぴったり収まるようにする */
  background-repeat: no-repeat; /* 画像を繰り返し表示しない */
  background-position: center; /* 画像をコンテナの中央に配置する */
}

.slick-next {
  background-image: url(../images/common/next2.svg);
}

.slick-prev:hover,
.slick-prev:focus {
  background-image: url(../images/common/prev2.svg);
  background-size: contain; /* 画像がコンテナにぴったり収まるようにする */
  background-repeat: no-repeat; /* 画像を繰り返し表示しない */
  background-position: center; /* 画像をコンテナの中央に配置する */
  opacity: 0.7;
  transition: all 0.3s;
}

.slick-next:hover,
.slick-next:focus {
  background-image: url(../images/common/next2.svg);
  background-size: contain; /* 画像がコンテナにぴったり収まるようにする */
  background-repeat: no-repeat; /* 画像を繰り返し表示しない */
  background-position: center; /* 画像をコンテナの中央に配置する */
  opacity: 0.7;
  transition: all 0.3s;
}

.regular .slick-slide {
  margin: 0 10px;
}

.regular {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 15px;
}

/* スライダーのドットナビゲーション全体のスタイル */
#post2 .slick-dots,
#post4 .slick-dots,
#purchase .slick-dots,
.regular .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 auto; /* 中央に配置 */
  padding: 0; /* 内側の余白をリセット */
  width: 90%; /* 全体の横幅を90%に設定 */
  box-sizing: border-box;
  bottom: -2rem;
  position: relative;
}

/* 個々のドットのスタイル */
#post2 .slick-dots li,
#post4 .slick-dots li,
#purchase .slick-dots li,
.regular .slick-dots li {
  width: 100%; /* 長さを調整 */
  height: 5px; /* 高さを調整 */
  background-color: #ebebeb;
  margin: 0;
}
#post2 .slick-dots li button:before,
#post4 .slick-dots li button:before{
	display: none;
}

.bg-blue .slick-dots li {
  background-color: #fff;
}

/* ドットのスタイル（アクティブ状態） */
#post2 .slick-dots li.slick-active,
#post4 .slick-dots li.slick-active,
#purchase .slick-dots li.slick-active,
.regular .slick-dots li.slick-active {
  background-color: #262830; /* アクティブなドットの色 */
}

/* ドット内のボタン（デフォルトのスタイルを上書き） */
#post .slick-dots li button,
#purchase .slick-dots li button,
.regular .slick-dots li button {
  font-size: 0; /* テキストサイズを0に */
  line-height: 0; /* ラインハイトを0に */
  display: block;
  width: 100%;
  height: 100%;
  padding: 0; /* パディングをリセット */
  color: transparent;
  border: none;
  background: transparent;
}

/* ドット内のボタンの:before疑似要素（デフォルトのドットを非表示に） */
#post .slick-dots li button:before,
#purchase .slick-dots li button:before,
.regular .slick-dots li button:before {
  content: none;
}

.regular-nonslider {
  display: none;
}

#main-slider {
  max-width: 500px;
  margin: 0 auto; /* 中央揃え */
  overflow: hidden; /* はみ出た部分を非表示に */
}

#main-slider img {
  width: 100%; /* 画像をスライダーの幅に合わせる */
  height: auto; /* 高さは自動調整 */
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
}

.item-contents {
  display: grid;
  grid-template-columns: 50% 50%; /* ２カラムの設定 */
  padding: 0 15px;
}

.item-container {
  width: 100%; /* コンテナの幅を100%に設定 */
}

.slider {
  width: 100%; /* スライダーの幅をコンテナに合わせる */
}

#thumbnail-slider .slick-slide img {
  aspect-ratio: 1/1;
  width: 100%;
  padding: 0 4px;
}

.custom-slider-dots .slick-dots {
  position: relative;
  text-align: left;
  margin: 0 auto;
  padding-left: 10px;
}

.custom-slider-dots li {
  display: inline-block;
  margin: 0 4px; /* ドット間の余白を調整 */
  width: 18%;
  height: auto;
}

.custom-dot img {
  max-width: 100%; /* イメージがコンテナを超えないようにする */
  height: auto;
  cursor: pointer;
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .slick-prev,
  .slick-next {
    width: 40px;
    height: 40px;
  }
  .slick-next {
    right: 20px;
  }
  .slick-prev {
    left: 20px;
  }
  .regular {
    display: none;
  }
  .regular-nonslider {
    display: block;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .item-contents {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media screen and (max-width: 530px) {
  #main-slider {
    max-width: 90vw;
  }
  .custom-slider-dots li {
    width: 17%;
  }
}
.p-top-gallery__inner {
  margin: 5% 5% 0 5%;
}

.p-top-gallery .splide__slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-gallery .splide__slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-gallery .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-gallery .swiper-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-gallery .slick-track {
  display: block;
  width: 100%;
}

.p-top-gallery .slick-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
  margin: 0 5px;
}

.p-top-gallery .slick-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-mv-slick {
  background: black;
}

.p-top-mv-slick__inner {
  margin: 5% 5% 0 5%;
}

.p-top-mv-slick .slick-track {
  display: block;
  width: 100%;
}

.p-top-mv-slick .slick-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
  margin: 0 5px;
}

.p-top-mv-slick .slick-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-slick .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-mv-splide__inner {
  margin: 5% 5% 0 5%;
}

.p-top-mv-splide .splide__slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-mv-splide .splide__slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-splide .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-mv-swiper__inner {
  margin: 5% 5% 0 5%;
}

.p-top-mv-swiper .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-mv-swiper .swiper-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-mv-swiper .swiper-button-prev,
.p-top-mv-swiper .swiper-button-next {
  text-rendering: initial;
}

.p-top-post__inner {
  margin-top: 3.75rem;
}

.p-top-post .splide__slide {
  display: block;
  width: 100%;
}

.p-top-post .splide__slide a {
  display: block;
  aspect-ratio: 600/400;
}

.p-top-post .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-post .splide__pagination {
  bottom: -2em;
}

.p-top-post .splide__pagination__page.is-active {
  background-color: blue;
}

.p-top-post .swiper {
  padding-bottom: 20px;
}

.p-top-post .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-post .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-post .swiper-pagination {
  bottom: 0;
}

.p-top-post .swiper-button-prev,
.p-top-post .swiper-button-next {
  text-rendering: initial;
}

.p-top-post .slick-track {
  display: block;
  width: 100%;
}

.p-top-post .slick-slide {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.0823529412);
  background: #fff;
  border-radius: 5px;
}

.p-top-post .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.post-thumbnail img {
   -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: auto;
}

.p-top-reason__texts {
  background: linear-gradient(to left, #5dc1ea 0%, #0068b7 100%);
  padding: 6.3125rem 7.75rem 6.3125rem 0.9375rem;
  max-width: 50.4375rem;
  border-radius: 0 50px 0 50px;
  position: relative;
  margin-right: -30%;
  height: 60%;
  width: 60%;
}

.p-top-reason__text p {
  margin-top: 2.1875rem;
  letter-spacing: 0.04em;
  line-height: 32px;
  margin-left: auto;
  color: #fff;
}

.p-top-reason .c-title h2 {
  margin-left: auto;
}

.p-top-reason__text {
  max-width: 35rem;
  margin-left: auto;
}

.works-btn {
  margin-top: 4.5rem;
}

.p-top-reason__img {
  max-width: 43.5625rem;
  margin-top: -3.75rem;
  border-radius: 0 50px 0 50px;
  overflow: hidden;
}

.p-top-reason {
  /* background-image: url(../images/top/top-reason-bg.png); */
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.p-top-reason__wrap {
  display: flex;
  justify-content: space-between;
  max-width: 90.625rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .p-top-reason {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
  .p-top-reason__texts {
    width: 95%;
    padding: 1.25rem 1.25rem 1.25rem 0.9375rem;
    margin-top: -60px;
  }
  .p-top-reason__wrap {
    flex-direction: column-reverse;
  }
}
.p-top-works {
  padding-bottom: 3.125rem;
  margin-top: 3.75rem;
}

.p-top-works__inner {
  margin: 5% 5% 0 5%;
}

.p-top-works .splide__slide {
  display: block;
  width: 100%;
}

.p-top-works .splide__slide a {
  display: block;
  aspect-ratio: 600/400;
}

.p-top-works .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-works .splide__pagination {
  bottom: -2em;
}

.p-top-works .splide__pagination__page.is-active {
  background-color: blue;
}

.p-top-works .swiper {
  padding-bottom: 20px;
}

.p-top-works .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-works .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-works .swiper-pagination {
  bottom: 0;
}

.p-top-works .swiper-button-prev,
.p-top-works .swiper-button-next {
  text-rendering: initial;
}

.p-top-works .slick-track {
  display: block;
  width: 100%;
}

.p-top-works .slick-slide {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 0.9375rem;
}

.p-top-works .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 380/380;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-works .c-contents-title {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 表示する行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-top-works .post-categories {
  margin-top: 12px;
}

.p-top-works .post-categories a {
  font-size: 14px;
  color: #fff;
  padding: 4px 10px;
  /* border: 1px solid #646464; */
  display: inline-block;
  margin-top: 8px;
  background: #0068b7;
  border-radius: 7px;
}

.p-top-works .post-title {
  font-size: 16px;
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-top: 1rem;
}

.p-top-works .category-list ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 75rem;
  margin: 2.5rem auto 3.75rem;
  gap: 1.875rem;
  justify-content: center;
}

.p-top-works .category-list a {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  padding: 1.25rem 2.25rem 0.875rem;
  background: #0068b7;
  border-radius: 10px;
  display: inline-block;
}

.works-btn .btn {
  margin: 3rem auto 0;
}

@media screen and (max-width: 767px) {
  .p-top-works .category-list a {
    font-size: 14px;
    padding: 0.625rem 1.125rem 0.4375rem;
  }
  .p-top-works .category-list ul {
    gap: 15px;
  }
  .p-top-works .post-categories a {
    margin-top: 10px;
  }
  .p-top-works .works-btn {
    margin-top: 3rem;
  }
  .p-top-works.p-service-works {
    padding-bottom: 4rem;
  }
}
.p-top-info {
  display: flex;
  gap: 35px;
  max-width: 56rem;
  margin-right: auto;
  margin-left: auto;
  padding: 4rem 15px;
}

.p-top-info__btn {
  color: #0068b7;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  display: flex;
  text-transform: uppercase;
  display: inline-block;
  margin-top: auto;
  margin-bottom: 20px;
  position: relative;
}

.p-top-info__btn a::before {
  content: "";
  position: absolute;
  display: block;
  width: 0.5rem; /* 画像の幅 */
  height: 0.5rem; /* 画像の高さ */
  background-size: contain;
  margin-top: 5px;
  vertical-align: middle;
  background-image: url(../images/common/next3.svg);
  background-repeat: no-repeat;
  right: 0;
}

.p-top-info__btn a {
  padding-right: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #0068b7;
  padding-top: 10px;
  position: relative;
}

.p-top-info ul {
  display: grid;
  grid-template-columns: 1fr;
  padding-left: 5px;
  width: 100%;
}

.p-top-info ul li.day {
  color: #646464;
  font-size: 16px;
  font-weight: 400;
}

.p-top-info li {
  padding-top: 5px;
  padding-bottom: 5px;
  color: #262830;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 1px solid #ccc;
  display: flex;
}

.link-item {
  position: relative;
  display: flex; /* フレックスボックスとして設定 */
  align-items: center; /* 中央揃えで整列 */
  color: #000; /* デフォルトのリンク色 */
  text-decoration: none; /* 既存の下線を削除 */
  gap: 10px; /* 日付とタイトルの間の隙間を設定 */
}

.link-item .date {
  color: #666; /* 日付の色 */
  white-space: nowrap; /* 日付が折り返されないように */
}

.link-item .title {
  position: relative;
  color: #333; /* タイトルの色 */
  white-space: nowrap; /* 改行されずに一行で表示される */
  overflow: hidden; /* コンテナから溢れるテキストを非表示に */
  text-overflow: ellipsis; /* 溢れたテキストを省略記号で表す */
  max-width: 80%; /* タイトルの最大幅を設定（必要に応じて調整） */
}

.link-item .title::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px; /* 下線の太さ */
  bottom: 0;
  left: 0;
  background-color: #0068b7; /* 下線の色 */
  transition: width 0.3s ease-out; /* アニメーションの速さと種類 */
}

.link-item:hover .title::after {
  width: 100%; /* ホバー時に下線が全長に伸びる */
}

.link-item:hover {
  opacity: 1;
}

.p-top-info .c-title {
  padding-top: 10px;
}

.p-top-feature .btn-blue {
  margin-top: 3.75rem;
  text-align: center;
}

.p-top-item .category-list {
  margin-top: -5rem;
}

.p-top-item .btn-blue {
  text-align: center;
  margin-top: 3.75rem;
}

.p-top-maker .btn-blue {
  margin-top: 3.75rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-top-item .category-list {
    margin-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .item-contents-wrap {
    margin-top: 20px;
  }
  .p-top-info {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 2rem;
    gap: 1rem;
  }
  .p-top-info__btn {
    width: 96px;
  }
  .p-top-feature {
    margin-top: 0;
    padding-top: 2rem;
  }
  .p-top-maker .btn-blue {
    margin-top: 30px;
  }
}
.p-top-info .link-item .title {
  display: block;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.works .my-tab-content {
  max-width: 76.875rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.works-cat {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #262830;
  padding-bottom: 15px;
  justify-content: space-between;
}

.works-cat .my-content__cat {
  padding-left: 10px;
  font-weight: bold;
	font-family: "Montserrat", sans-serif;
}

.works select {
  font-size: 14px;
  padding: 11px 115px 12px 12px;
  border-radius: 5px;
  border: 1px solid #6b6b6c;
}

.sub-archive__select select {
  -webkit-appearance: none; /* Chrome, Safari, Opera 用 */
  -moz-appearance: none; /* Firefox 用 */
  appearance: none; /* 標準のプロパティ */
  background: url(../images/common/down.svg) no-repeat 95% center; /* 矢印の背景画像 */
  padding-right: 8em;
  margin-left: 1.25rem;
}

.works .archive-posts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.875rem;
  row-gap: 3.75rem;
  margin-top: 2.5rem;
}

.archive-posts img {
  aspect-ratio: 380/255;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
  border-radius: 20px;
}

.works .client-name {
  color: #646464;
  font-size: 14px;
  font-weight: 400;
  margin-top: 1.25rem;
}

.works-title a {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  margin-top: 10px;
}

.works-post-categories a {
  color: #fff;
  font-size: 14px;
  padding: 4px 10px;
  background: #0068b7;
  border-radius: 7px;
}

.works-post-categories {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.single-post .works-post-categories {
  gap: 20px;
}

.works .p-post-article__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
    margin-bottom: 6.25rem;
    align-items: start;
}

.works .p-post-article__thumbnail img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: -moz-fit-content;
  height: fit-content;
}

.works .p-post-article__info th {
  width: 4.875rem;
  font-size: 14px;
  color: #646464;
  font-weight: 400;
  text-align: left;
  line-height: 2rem;
}

.works .p-post-article__info th.remarks {
  vertical-align: top;
}

.works .p-post-article__info tr {
  padding: 1.125rem 0;
  display: block;
  border-top: 1px solid #6b6b6c;
}

.works .p-post-article__info td {
  line-height: 2rem;
  letter-spacing: 0.04em;
}

.works .p-post-article__info tr:first-child {
  border-top: none;
}

.works .p-post-article__inner.l-inner {
  margin-top: 0;
}

.works-post-categories.single {
  margin-top: 5px;
}

.works-gallery-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.875rem;
  margin-top: 1.875rem;
}

.works-gallery-item img {
  aspect-ratio: 100/100;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.works-gallery {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  margin-top: 3.75rem;
}

.works-gallery h3 {
  padding-bottom: 0.625rem;
  border-bottom: 2px solid #6b6b6c;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .sub-archive__select select {
    padding-right: 3em;
    margin-left: auto;
  }
  .works-cat .my-content__cat {
    font-size: 24px;
    margin-top: 10px;
    text-align: left;
    margin-right: auto;
    padding-left: 0;
  }
  .works .archive-posts {
    grid-template-columns: 1fr;
  }
  .works-cat {
    flex-direction: column-reverse;
  }
  .sub-archive__select {
    text-align: right;
  }
  .sub-archive__select {
    margin-left: auto;
  }
  .works .p-post-article__info {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 4rem;
  }
  .works-gallery-container {
    grid-template-columns: 1fr;
  }
}
.pagination {
  width: 100%;
}
.nav-links ul {
  display: flex;
  justify-content: center;
}

.nav-links ul li a,
.nav-links ul li span {
  color: #0068b7;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1rem;
}

.wpcf7-spinner {
  position: absolute;
}

.p-contact__description {
  font-size: 16px;
  margin-bottom: 30px;
}

.wpforms-container .wpforms-field {
  display: grid;
  grid-template-columns: 213px auto;
}

.wpforms-container .wpforms-field.wpforms-field-radio {
  display: block;
}

.wpforms-container .wpforms-field.wpforms-field-radio {
  display: block;
}

.wpforms-container .wpforms-field.wpforms-field-radio {
  display: grid;
  grid-template-columns: 213px 1fr;
  grid-column-gap: 10px;
  align-items: center;
}

#wpforms-2302-field_1-container fieldset {
  grid-column: 2;
}

.wpforms-container .wpforms-field.wpforms-field-radio::before {
  content: "お問い合わせ種別";
  position: absolute;
  left: 0;
}

.wpforms-container .wpforms-required-label {
  display: none !important;
}

.wpforms-field-label {
  text-align: left;
}
.regular .slick-slide img {
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .nav-links ul li a,
  .nav-links ul li span {
    font-size: 1.5rem;
  }
}

.nav-links ul li span.current {
  color: #262830;
}

.nav-links ul li {
  position: relative;
  margin: 0 0.3125rem;
}
@media screen and (min-width: 768px) {
  .nav-links ul li {
    margin: 0 0.625rem;
  }
}

.nav-links ul li a,
.nav-links ul li span {
  display: block;
  width: 100%;
  padding: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .nav-links ul li a,
  .nav-links ul li span {
    padding: 0.625rem;
  }
}

.nav-links ul li .nav-links ul .dots {
  padding-right: 0;
  padding-left: 0;
}
.feature_item_ttl {
  text-align: center;
  margin-top: 5rem;
  font-size: 2rem;
}
.feature_item_ttl span {
  position: relative;
  z-index: 2;
}
.feature_item_ttl span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 15px;
  width: 100%;
  background-color: #89dbff;
  z-index: -1;
}
.p-mv__text,
.p-mv__text.second,
.p-mv__text.third {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.5s ease, transform 0.5s ease; /* アニメーションの詳細を設定 */
}
.liveoffice .p-sub-company__titles {
  background-image: none;
  padding: 3.75rem 0;
}
.liveoffice .p-sub-company__title-big,
.liveoffice .p-sub-company__subtitle-big {
  text-align: center;
}
.liveoffice-movie {
  text-align: center;
}
.liveoffice-movie iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
}
.liveoffice-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}
.liveoffice-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 10rem;
  position: relative;
}
.liveoffice-top-txt h2 {
  font-size: 2.125rem;
  font-weight: 400;
  color: #262830;
}
.liveoffice-top-txt p {
  font-size: 1rem;
  font-weight: 400;
  color: #262830;
  line-height: 2rem;
  margin-top: 1.875rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.liveoffice-top-txt img,
.liveoffice-top-grid img {
  max-width: 100%;
  height: auto; /* アスペクト比を保ったまま調整 */
}
.liveoffice-slider {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  margin-top: 6rem;
}

.liveoffice-slider__wrapper {
  display: flex;
  overflow: hidden;
  margin-bottom: 0 !important;
  margin-top: 3rem;
}

.liveoffice-slider__wrapper div {
  width: 100%;
}

.liveoffice-slider__wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.liveoffice-slider__nav {
  /*   position: absolute; */
  /*   top: 50%; */
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.liveoffice-slider__prev,
.liveoffice-slider__next {
  font-size: 24px;
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
  border: none;
  cursor: pointer;
  width: 45px;
  height: 45px;
  margin-top: -10px;
}
.liveoffice-slider__prev {
  right: 55px;
  left: auto;
}
.liveoffice-slider__next {
  right: 0;
}
/* liveoffice-slider用のスライダー */
.liveoffice-slider .slick-dots {
  position: absolute;
  bottom: -4px;
  width: 100%;
  text-align: center;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  right: 120px;
}

.liveoffice-slider .slick-dots li {
  list-style: none;
  margin: 0 8px;
}

.liveoffice-slider .slick-dots li button {
  background-color: transparent;
  border: none;
  outline: none;
  width: 30px; /* 棒線の幅 */
  height: 0px; /* 棒線の高さ */
}

.liveoffice-slider .slick-dots li button:before {
  content: ""; /* 余計なコンテンツを削除 */
}

.liveoffice-slider .slick-dots li button {
  background-color: #ccc; /* 通常時の棒線の色 */
}

.liveoffice-slider .slick-dots li.slick-active button {
  background-color: #333; /* アクティブ時の棒線の色 */
}
.liveoffice-slider .slide-text {
  margin-top: 10px;
  font-weight: bold;
  font-size: 18px;
}
.liveoffice-desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 6rem;
}
.liveoffice-desc-grid h2 {
  font-weight: bold;
  margin-top: 2rem;
}
.liveoffice-desc-grid p {
  margin-top: 2rem;
  line-height: 1.5;
}
.liveoffice-desc-grid img {
  width: 100%;
  height: auto;
}
.liveoffice-contact {
  background: rgba(233, 241, 249, 0.2);
  padding: 6rem 15px;
  margin-top: 6rem;
  text-align: center;
}
.liveoffice-contact p {
  font-size: 16px;
  line-height: 2;
  margin-top: 3rem;
  text-align: center;
}
.liveoffice-contact a {
  background: #0068b7;
  color: #fff;
  width: 100%;
  max-width: 300px;
  padding: 20px 15px;
  margin: 3rem auto 0;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .feature_item_ttl {
    padding-left: 0 !important;
    font-size: 4.5vw !important;
    margin-top: 3rem;
  }
  .feature_item_ttl span::before {
    height: 8px;
  }
  .p-mv__text-small {
    font-size: 1.2rem;
  }
  .p-mv__text {
    font-size: 1.5rem;
    line-height: 26px;
    padding: 0.3125rem 0.0625rem 0.3125rem 0.625rem;
  }
  .liveoffice-top-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 4rem;
  }
  .liveoffice-top-txt p {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .liveoffice-slider {
    margin-top: 2rem;
  }
  .liveoffice-slider .slick-dots {
    bottom: 35px;
  }
  .liveoffice-desc-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
  }
  .liveoffice-desc-grid h2,
  .liveoffice-desc-grid p {
    margin-top: 1rem;
  }
  .liveoffice-contact {
    margin-top: 4rem;
    padding: 3rem 15px;
  }
  .liveoffice-contact p {
    color: #262830;
    margin-top: 2rem;
  }
}
.btn {
  background: #0068b7;
  padding: 16px;
  border-radius: 50px;
  color: #fff;
  display: block;
  text-align: center;
  width: 250px;
}
.btn.-white {
  color: #0068b7;
  background: #fff;
}
.info__btn {
  margin-top: 3rem;
}
.grid-col02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}
.grid-col02_text {
  line-height: 2;
}
.inner {
  max-width: 76.875rem;
  padding: 0 15px;
  margin: auto;
}
.-about-grid {
  margin-top: 2rem;
}
.-about-grid .grid-col02_text {
  color: #fff;
}
.-about-grid .grid-col02_text span {
  font-size: 3rem;
  display: block;
  margin-bottom: 2rem;
  line-height: 1.5;
  font-weight: bold;
}
.about {
  background: linear-gradient(to left, #5dc1ea 0%, #0068b7 100%);
  padding: 4rem 0;
  border-top-right-radius: 200px;
}
.c-title.-center {
  text-align: center;
}
.c-title.-white h2 {
  color: #fff;
}
.works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.info-banner {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}
.info-banner img {
  max-width: 300px;
  width: 100%;
}
.movie-item iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.movie {
  padding: 4rem 0 0;
}
.-movie-grid {
  margin-top: 2rem;
  gap: 1rem;
}
.contact-tel {
  padding-bottom: 4rem;
}
.greeting {
  padding: 4rem 0 0;
}
.-greeting-grid {
  grid-template-columns: 1fr 2fr;
  margin-top: 2rem;
}
.-greeting-grid img {
  width: 100%;
  margin-top: 2rem;
}
.-greeting-grid .grid-col02_text {
  max-width: 650px;
}
.philosophy {
  background: #f1f9ff;
  padding: 6rem 0;
  border-radius: 0 150px 0 150px;
}
.philosophy-ttl {
  text-align: center;
  color: #0068b7;
  font-size: 3rem;
  font-weight: bold;
}
.philosophy-list {
  max-width: 1020px;
  margin: 2rem auto;
}
.philosophy-list li {
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  font-weight: bold;
  gap: 3rem;
  background: #fff;
  position: relative;
  z-index: 2;
}
.home .philosophy-list li {
	background: #f2f9ff;
}
.philosophy-list li + li {
  margin-top: 2rem;
}
.philosophy-list img {
  max-width: 200px;
  width: 100%;
}
.philosophy-list-txt {
  position: relative;
  z-index: 2;
}
.philosophy-list span {
  display: block;
  color: #cbe6f9;
  font-size: 5rem;
  font-weight: bold;
  position: absolute;
  top: -4rem;
  left: -2rem;
  z-index: -1;
}
.philosophy-txt {
  text-align: center;
  line-height: 2;
  margin: 2rem 0;
}
.float-img img {
  border-radius: 14px;
}
.float-img {
  position: absolute;
}
.float-img.-img01 {
  top: -2%;
  right: 5%;
  width: 20vw;
}
.float-img.-img02 {
  top: 30%;
  right: 0;
  width: 17vw;
}
.float-img.-img03 {
  top: 41%;
  left: 1%;
  width: 18vw;
}
.float-img.-img04 {
  bottom: -10%;
  left: 4%;
  width: 20vw;
}
.p-reason__contants {
  padding: 5rem 0;
}
.p-reason-flow {
  padding: 4rem 0;
}
.flow_design01 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.flow_design01 ul {
  padding: 0;
}

.flow_design01 li {
  list-style-type: none;
}

.flow_design01 dd {
  margin-left: 0;
}

.flow01 > li {
  position: relative;
  list-style: none;
}

.flow01 > li:not(:last-child) {
  margin-bottom: 28px;
}

.flow01 > li dl {
  box-sizing: border-box;
  width: 100%;
  padding: 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #0068b7;
  border-radius: 10px;
  position: relative;
}

.flow01 > li:not(:last-child) dl::before,
.flow01 > li:not(:last-child) dl::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow01 > li:not(:last-child) dl::before {
  border-width: 22px;
  border-top-color: #0068b7;
}

.flow01 > li:not(:last-child) dl::after {
  border-width: 20px;
  border-top-color: #fff;
}

.flow01 > li dl dt {
  font-size: 1.2em;
  font-weight: 600;
  margin-right: 2vw;
  text-align: center;
  width: 170px;
}

.flow01 > li dl dt .icon01 {
  font-size: 0.6em;
  color: #fff;
  background: #0068b7;
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 100;
}
.p-service__cotent-text .c-title h2 {
  font-size: 3rem;
}
.p-service__cotent-text .c-title h2 span {
  text-transform: uppercase;
  margin-top: 1.5rem;
}
.p-service__cotent-wrap img {
  border-radius: 0 100px 0 100px;
}
.p-service__point img {
  border-radius: 0 20px 0 20px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.p-service__cotent.bg-gradation,
.p-service-interior.bg-gradation {
  border-radius: 0 200px 0 200px;
}
.p-service-gallery.-mt0 {
  margin-top: 0;
}
.p-service-interior .p-service__bus-content {
  margin-top: 4rem;
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.banner {
  margin-top: 4rem;
}
.banner img {
  margin: auto;
  max-width: 1000px;
  width: 100%;
}
.link img {
  width: 100%;
}
.grid-col02.-link {
  max-width: 900px;
  margin: 2rem auto 6rem;
}
.home-mv__slides {
	height: 85vh;
	border-radius: 20px;
	overflow: hidden;
}
.home-mv {
	padding-top: 90px;
	padding-left: 24px;
	padding-right: 24px;
}
.arrow {
	position: absolute;
	bottom: 20px;
	right: 20px;
	z-index: 3;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #fff;
	transition: .4s;
	width: 48px;
	height: 48px;
}
.p-card__img-wrap:hover .arrow {
	background-color: #0068b7;
	border: 1px solid #0068b7;
}
.p-card__img-wrap:hover .st0 {
	fill: #fff !important;
}
.link-btn .inner{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1rem 2rem;
	max-width: 900px;
	margin: 2rem auto 0;
}
.link-btn a {
	padding: 10px 1rem;
	border-radius: 50px;
	background: #0068b7;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	position: relative;
}
.link-btn a::before {
	content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 37%;
  right: 7%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* mq */
@media (max-width: 650px) {
  .flow01 > li:not(:last-child) {
    margin-bottom: 30px;
  }

  .flow01 > li dl {
    display: block;
    padding: 10px 15px;
  }

  .flow01 > li dl dt {
    margin-right: 0;
    width: 100%;
  }

  .flow01 > li dl dt .icon01 {
    font-size: 0.7em;
  }
}

@media screen and (max-width: 767px) {
  .grid-col02 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .full-height {
    height: 100vh;
  }
  .info-banner {
    flex-direction: column;
    gap: 1rem;
  }
  .p-mv__catch img {
    width: 80vw;
  }
  .info-banner img {
    margin: auto;
  }
  .p-top-info li {
    padding: 15px 0;
  }
  .info__btn {
    margin-top: 1rem;
  }
  .-about-grid .grid-col02_text span {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .about {
    padding-top: 3rem;
  }
  .movie {
    padding: 3rem 0 1rem;
  }
  .maker-slide {
    padding: 2rem 0;
  }
  .maker-slider {
    margin-top: 0;
  }
  .c-title h2 span {
    margin-top: 5px;
  }
  .p-top-service {
    padding: 3rem 0;
  }
  .works-grid {
    grid-template-columns: 1fr;
  }
  .banner {
    margin-top: 3rem;
  }
  .grid-col02.-link {
    margin: 2rem auto;
  }
  .p-contact {
    margin-top: 4rem;
  }
.p-service__cotent-text .c-title h2 {
    font-size: 1.7rem;
    padding: 0;
}
  .p-service__cotent-text .c-title h2 span {
    margin-top: 0.5rem;
  }
  .item-title {
    align-items: flex-start;
  }
  .p-service__bus-content-icons img {
    border-radius: 0 20px 0 20px;
  }
  .p-service__cotent-wrap img {
    border-radius: 0 60px 0 60px;
  }
  .p-service-recommended-points {
    padding-top: 2.6rem;
  }
  .float-img {
    display: none;
  }
  .p-reason__content img {
    border-radius: 0 60px 0 60px;
  }
  .p-reason__contants {
    padding: 3rem 0;
  }
  .p-reason-flow {
    padding: 2rem 0;
  }
  .flow_design01 dd {
    margin-top: 10px;
  }
  .p-question-box__qaArea {
    padding: 0 15px;
  }
  .p-question-box__qaArea ul li .question {
    padding: 8px 10px;
    line-height: 1.6;
  }
  .p-question-box__qaArea ul li .question .title .head {
    margin-right: 14px;
  }
  .-company-grid {
    display: flex;
    flex-direction: column-reverse;
  }
  .p-information__map iframe {
    height: 300px;
  }
  .greeting {
    padding: 1rem 0 0;
  }
  .philosophy {
    padding: 4rem 0;
  }
  .philosophy-ttl {
    font-size: 26px;
  }
  .philosophy-list li {
    flex-direction: column;
    gap: 0.5rem;
    padding: 15px;
  }
  .philosophy-list img {
    width: 150px;
  }
  .philosophy-list li {
    font-size: 26px;
  }
  .philosophy-list span {
    left: 50%;
    transform: translateX(-50%);
    top: -3rem;
    opacity: 0.6;
  }
  .sub-contact .p-contact__time {
    display: block;
  }
	.p-header__sp {
		display: block;
		height: fit-content;
	}
	.link-btn .inner {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.p-header {
		top: 0;
	}
.home-mv {
    padding: 50px 16px 0;
}
.p-mv__scroll img {
    right: 2rem;
    bottom: 7rem;
}
	.p-mv__scroll::after {
    right: 2.3rem;
    bottom: 3rem;
}
	.p-header {
		overflow: visible;
	}
	.home .p-header.scrolled {
		width: 100%;
		border-radius: 0;
	}
	.p-header {
		width: 100%;
	}
}
/* mq */

.wp-block-table td, .wp-block-table th {
    border-bottom: 1px solid #2589d0;
    padding: .5em;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: #e9f1f7;
}

h2.wp-block-heading {
    border-left: 8px #0068b7 solid;
    border-bottom: 1px #0068b7 solid;
    background: #c1e5ff;
}


.banner02 {
  position: fixed;
  right: 10px;
  bottom: 10px;
  /* その他のスタイル */
}

.banner-link {
  display: block;
  position: relative;
  transition: opacity 0.3s ease;
}

.banner-link img {
    display: block;
    width: 45vw;
    height: auto;
}

.banner-link:hover {
  opacity: 0.7;
}

#closeBanner {
    position: absolute;
    top: -15px;
    left: -15px;
    border: none;
    cursor: pointer;
    width: 35px;
    height: 35px;
    background: none;
}

#floatingBanner {
  display: none;
  position: fixed;
  z-index: 9999;
}

@media (max-width: 767px) {
  .banner-link img {
    display: block;
    width: 94vw;
    height: auto;
}

 #closeBanner {
    width: 30px;
    height: 30px;
    top: -15px;
    left: -15px;
}

  #floatingBanner {
    display: none;
    position: fixed;
    z-index: 19;
    bottom: 5px;
  }
}

