/*
Theme Name:paftmv1
Version: 14.2
*/
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.floating {
  animation: float 3.2s ease-in-out infinite;
}

body.loading #loader {
  opacity: 1;
}

body.loaded #loader {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

#loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circleText_block {
  width: 21rem;
  height: 21rem;
  position: relative;
}

.circleText {
  overflow: visible;
  animation: rotation 18s linear infinite;
}
/* 赤い円の枠 */
.red-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%; /* 丸く */
  overflow: hidden; /* 内部画像を丸くマスク */
  transform: translate(-50%, -50%);
  z-index: 1;
  background-color: #fff; /* 必要に応じて背景色 */
}

/* 画像を赤い円の中に収める */
.masked-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  animation: tokimefadeUp 0.2s ease-out forwards;
  animation-delay: 0.2s; /* 必要なら調整 */
}
@keyframes tokimefadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.circleText__text {
  fill: var(--color-2);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-mincho);
  letter-spacing: 0.24em;
}

.circleText__circle {
  fill: none !important; /* ← これで強制 */
  stroke: none;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

:root {
  --color-1: #000000;
  --color-2: #ef0043;
  --color-3: #cef4ec;
  --color-white: #fff;
  --color-2-half: #ffb7be;
  --color-4: #e77db5;
  --color-4-half: #f4f0f2;
  --color-5: #8f96d4;
  --color-5-half: #eeeef6;
  --color-6: #f6a619;
  --color-6-half: #f8f2e8;
  --color-furiren: #f3ebeb;
  --color-hakama: #f2f0f4;
  --color-mamafuri: #f1f0e9;
  --color-light: #f5f5f5;
}
.bc-light {
  background: var(--color-light);
}
.bc-furiren {
  background: var(--color-furiren);
}
.bc-hakama {
  background: var(--color-hakama);
}
.bc-mamafuri {
  background: var(--color-mamafuri);
}
.fc-01 {
  color: var(--color-1);
}
.fc-02 {
  color: var(--color-2);
}
.fc-03 {
  color: var(--color-3);
}
.fc-02h {
  color: var(--color-2-half);
}
.fc-04 {
  color: var(--color-4);
}
.fc-05 {
  color: var(--color-5);
}
.fc-06 {
  color: var(--color-6);
}
.bc-01 {
  background: var(--color-1);
}
.bc-02 {
  background: var(--color-2);
}
.bc-04 {
  background: var(--color-4);
}
.bc-05 {
  background: var(--color-5);
}
.bc-06 {
  background: var(--color-6);
}
.bc-04h {
  background: var(--color-4-half);
}
.bc-05h {
  background: var(--color-5-half);
}
.bc-06h {
  background: var(--color-6-half);
}
.bc-03 {
  background: var(--color-3);
}
.bc-white {
  background: var(--color-white);
}
html {
  font-size: 62.5%;
}

body {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Verdana,
    "メイリオ", Meiryo, sans-serif;
  color: var(--color-1);
  font-size: 1.6rem;
  line-height: 2em;
  font-weight: 400;
  letter-spacing: 0.1rem;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 1380px) {
  html {
    font-size: 0.73vw;
  }
}
/*少し大きめ維持バーション
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.85vw;
  }
}
*/

@media screen and (max-width: 767px) {
  html {
    font-size: 2.1vw;
  }
}

.gothic {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Verdana,
    "メイリオ", Meiryo, sans-serif;
}
.mincho {
  font-family: "Noto Serif JP", serif;
}
:root {
  --font-gothic: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Verdana,
    "メイリオ", Meiryo, sans-serif;
  --font-mincho: "Noto Serif JP", serif;
}
::selection {
  background: #666;
  color: #fff;
}

h1 {
  font-size: 1.6rem;
  font-weight: 400;
}

h2 {
  font-size: 1.6rem;

  font-weight: 400;
}
h3 {
  font-size: 1.6rem;

  font-weight: 400;
}

.contents {
  position: relative;
  display: flex;
  width: 100%;
  flex: 1;
  flex-direction: column;
}
.contents.open {
  overflow: hidden;
}
section {
  position: relative;
}

.widthbox {
  position: relative;
  box-sizing: content-box;
  padding-right: 12rem;
  padding-left: 12rem;
  max-width: 1200px;

  margin-left: auto;
  margin-right: auto;
}
.widthbox_1920 {
  position: relative;
  box-sizing: content-box;
  padding-right: 12rem;
  padding-left: 12rem;
  max-width: 1920px;

  margin-left: auto;
  margin-right: auto;
}

.widthfull {
  width: 100%;
}
.pd_pc100_sp80 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.pd_top_pc100_sp80 {
  padding-top: 10rem;
}
.pd_top_pc100_sp160_bottom_pc100_sp80 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.contents_top_margin {
  margin-top: 16rem;
}
.fullscreen {
  height: calc(var(--vh) * 100);
}

@media screen and (max-width: 767px) {
  .contents_top_margin {
    margin-top: 8rem;
  }
  .widthbox {
    box-sizing: border-box;
    width: 100%;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .widthbox_1920 {
    box-sizing: border-box;
    width: 100%;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .widthbox-l {
    box-sizing: border-box;
    width: 100%;
  }

  .pd_pc100_sp80 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .pd_top_pc100_sp80 {
    padding-top: 8rem;
  }
  .pd_top_pc100_sp160_bottom_pc100_sp80 {
    padding-top: 16rem;
    padding-bottom: 8rem;
  }
}

.divlink {
  position: relative;
  cursor: pointer;
}
.divlink:hover {
  opacity: 0.5;
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  .divlink:hover {
    opacity: 1 !important;
    transition: none !important;
  }
}
.divlink a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.divlink_nohover {
  position: relative;
  cursor: pointer;
}
.divlink_nohover a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pd_t16 {
  padding-top: 16rem;
}
.pd_t8 {
  padding-top: 8rem;
}
.pd_t16b16 {
  padding-top: 16rem;
  padding-bottom: 16rem;
}
.pd_t8b8 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.pd_b8 {
  padding-bottom: 8rem;
}
.imgbox {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.imgbox img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.imgbox_62_r30 {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 3rem;
}
.imgbox_62_r30 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.imgbox_62_r30:after {
  content: "";
  padding-top: 62%;
  display: block;
}
/*==================================================
メニュー
==================================================*/
.main_menu {
  background: #fff;
  z-index: 1;

  display: flex;
  justify-content: center;
}
.main_menu_home {
  width: 100%;
  padding-top: 4rem;
}
.main_menu_hoka {
  width: 100%;
  align-items: center;
  border-bottom-right-radius: 5.21vw;
  border-bottom-left-radius: 5.21vw;
  height: 14rem;
  padding: 0 10rem;
}
.main_menu .nav_main {
  display: flex;
  justify-content: center;
  gap: 10%;
  width: 100%;
}
.main_menu .nav_main ul a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-feature-settings: "palt";
  text-align: center;
  line-height: 1.7em;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
.main_menu .nav_main a:hover {
  opacity: 0.5;
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  .main_menu .nav_main a:hover {
    opacity: 1 !important;
    transition: none !important;
  }
}
.main_menu .nav_main ul {
  display: flex;
  justify-content: space-between;

  flex: 1;
}

.main_menu .nav_main ul li {
  display: flex;
}
.main_menu .nav_main .logo {
  width: 16rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.right_menu {
  display: flex;
  position: fixed;
  top: 4rem;
  right: max(4rem, calc((100vw - 1920px) / 2 + 4rem));
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  flex-direction: column;
  gap: 1rem;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none; /* 表示前はクリックできないように */
}

.right_menu.scr100 {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto; /* 表示時は操作可能に */
}
.right_menu_mf {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.right_menu.open {
  opacity: 1;
  pointer-events: auto;
}
.right_menu_mf.open {
  display: none;
}
.right_menu_mf a {
  letter-spacing: 0.4em;
  writing-mode: vertical-rl;
  line-height: 1.6em;
  font-weight: 600;
  width: 6rem;
  color: #fff;
  background: var(--color-2);
  border-radius: 9999px;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.right_menu_mf a span {
  padding-top: 3.5rem;
  position: relative;
}
.right_menu_mf a span img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
}
.right_menu_mf a:hover {
  opacity: 0.5;
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  .right_menu_mf a:hover {
    opacity: 1 !important;
    transition: none !important;
  }
}
.right_menu_mf li {
  display: flex;
}
.right_menu_mg.open {
  opacity: 1;
  visibility: visible;
}
/* 画面全体を固定して裏側を一切スクロールさせない */
body.no-scroll {
  position: fixed; /* 位置を固定 */
  inset: 0; /* top/right/bottom/left: 0 と同義 */
  overflow: hidden; /* スクロールバーを消す */
  width: 100%; /* iOS サイドバー幅縮み対策 */
}
.right_menu_mg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background: #fff;
  z-index: 99;
  overflow-y: scroll;
  overflow-y: auto; /* scroll → auto の方が自然 */
  overscroll-behavior: contain; /* “バウンス”が親へ伝播しない */
}
.right_menu_mg_wrap {
  display: flex;

  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
}

.right_menu_mg_left {
  width: 27%;
  position: relative;
}
.right_menu_mg_img {
  background: var(--color-2-half);
  position: fixed;
  top: 0;
  left: 0;
  width: 27%;
  height: 100vh;

  overflow: hidden;
  min-height: 100rem;
}
.right_menu_mg_img img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100rem;
  width: auto;
}
.right_menu_mg_right {
  width: 73%;
  padding-right: 12rem;
  padding-left: 6rem;
}

.hamburger:hover {
  opacity: 0.5;
  transition: all 0.2s;
}

.hamburger {
  background: var(--color-2);
  border-radius: 3rem;
  height: 6rem;
  width: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.hamburger_line {
  display: block;
  width: 3rem;
  height: 20px;
  position: relative;
}
.hamburger_line span {
  display: block;
  position: absolute;
  height: 2px;
  width: 3rem;
  background: #fff;

  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.hamburger_line span:nth-child(1) {
  top: 0px;
}
.hamburger_line span:nth-child(2),
.hamburger_line span:nth-child(3) {
  top: 9px;
}
.hamburger_line span:nth-child(4) {
  top: 18px;
}
.hamburger.open span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}
.hamburger.open span:nth-child(2) {
  transform: rotate(45deg);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.hamburger.open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.menu-item-h {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.menu-item {
  font-feature-settings: "palt";
  display: block;
}
.sp_logo {
  display: none;
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 3;
}
.sp_logo img {
  width: auto;
  height: 6rem;
}
.sp_bottom_menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  background: #fff;
  padding-top: 1px;
  opacity: 0;
}
.sp_bottom_menu.scr100 {
  opacity: 1;
  transition: all 0.5s;
  cursor: pointer;
  pointer-events: auto;
}
.right_menu_mf_sp {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
  width: 100%;
}
.right_menu_mf_sp li {
  display: flex;
  width: calc((100% - 1px) / 2);
}
.right_menu_mf_sp a {
  letter-spacing: 0.4em;
  line-height: 1;
  font-weight: 600;
  width: 100%;
  color: #fff;
  background: var(--color-2);
  padding: 2.5rem 0;
  display: flex;
  gap: 1.5rem;

  justify-content: center;
  align-items: center;
}
.right_menu_mf_sp a span {
  font-size: 2rem;
}

.right_menu_mf_sp a img {
  width: 2rem;
}

@media screen and (max-width: 767px) {
  .sp_bottom_menu {
    display: block;
  }
  .hamburger:hover {
    opacity: 1;
    transition: none;
  }
  .sp_logo {
    display: block;
  }
  .main_menu_home {
    display: none;
  }
  .right_menu_mf {
    display: none;
  }
  .main_menu_hoka {
    display: none;
  }
  .right_menu {
    top: 2rem;
    right: 2rem;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto; /* 表示時は操作可能に */
  }

  .right_menu_mg_left {
    display: none;
  }

  .right_menu_mg_wrap {
    height: auto;
  }
  .right_menu_mg_img {
    display: none;
  }
  .right_menu_mg_right {
    width: 100%;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
/*==================================================
サービス固定ページパーツ
==================================================*/
.srvice_title .box_wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  border-radius: 3rem;
  background: #fff;
}
.srvice_title .box_wrap img {
  position: absolute;
  top: 50%;
  left: 50%;

  object-fit: cover;
  width: 100%;
}
.srvice_title .box_wrap::after {
  content: "";
  padding-top: 38%;
  display: block;
}
.srvice_title .box_wrap .overgrade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
.srvice_title .box_wrap .box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.srvice_title .box_wrap .box .h1_1 {
  text-align: center;
  font-size: 6.5rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 1;
  font-family: var(--font-mincho);
}
.srvice_title .box_wrap .box .h1_1::after {
  position: absolute;
  bottom: -0.5rem;
  left: -2rem;
  right: -2rem;
  border-bottom: 2rem #fff solid;
  content: "";
  z-index: -1;
  transform: skewY(-2deg);
}
.srvice_title .box_wrap .box .h1_2 {
  text-align: center;
  line-height: 1;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-2);
}
.srvice_title .box_wrap .box p {
  text-align: center;
  font-feature-settings: "palt";
}
.srvice_content .h2_1 {
  background: var(--color-2);
  padding: 0.5em 0;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  border-radius: 999px;
  font-family: var(--font-mincho);
}
.srvice_content .h2_2 {
  text-align: center;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.4;
  font-family: var(--font-mincho);
}
.srvice_content .h2_2 .h2fcolor {
  color: var(--color-2);
}
.srvice_content .h2_3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5em;
  font-family: var(--font-mincho);
}
@media screen and (max-width: 767px) {
  .srvice_title .box_wrap {
    position: relative;
    overflow: unset;
    width: 100%;
    height: auto;
    border-radius: unset;
  }
  .srvice_title .box_wrap::after {
    content: none;
  }
  .srvice_title .box_wrap .imgspan {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    border-radius: 10rem;
    display: block;
  }
  .srvice_title .box_wrap .imgspan img {
    position: absolute;
    top: 50%;
    left: 50%;

    object-fit: cover;
    width: 100%;
    height: auto;
  }
  .srvice_title .box_wrap .imgspan::after {
    content: "";
    padding-top: 100%;
    display: block;
  }
  .srvice_title .box_wrap .box {
    position: unset;
    top: unset;
    transform: unset;
    left: unset;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }
  .srvice_title .box_wrap .box .h1_1::after {
    border-bottom: 2rem #fff solid;
  }
  .srvice_title .box_wrap .overgrade {
    display: none;
  }
}
.layout_4row_photo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.layout_4row_photo li {
  position: relative;
  overflow: hidden;
  width: calc((100% - 6rem) / 4);
  height: auto;
  border-radius: 1rem;
}
.layout_4row_photo li::after {
  content: "";
  padding-top: 62%;
  display: block;
}

.layout_4row_photo li img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.layout_4row_100photo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.layout_4row_100photo li {
  position: relative;
  overflow: hidden;
  width: calc((100% - 6rem) / 4);
  height: auto;
  border-radius: 1rem;
}
.layout_4row_100photo li::after {
  content: "";
  padding-top: 100%;
  display: block;
}

.layout_4row_100photo li img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.layout_3row_photo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.layout_3row_photo li {
  position: relative;
  overflow: hidden;
  width: calc((100% - 4rem) / 3);
  height: auto;
  border-radius: 1rem;
}
.layout_3row_photo li::after {
  content: "";
  padding-top: 62%;
  display: block;
}

.layout_3row_photo li img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.layout_3row_photo2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.layout_3row_photo2 li {
  position: relative;
  overflow: hidden;
  width: calc((100% - 4rem) / 3);
  height: auto;
  border-radius: 1rem;
}
.layout_3row_photo2 li::after {
  content: "";
  padding-top: 62%;
  display: block;
}

.layout_3row_photo2 li img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.layout_4row_130photo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.layout_4row_130photo li {
  position: relative;
  overflow: hidden;
  width: calc((100% - 6rem) / 4);
  height: auto;
  border-radius: 1rem;
}
.layout_4row_130photo li::after {
  content: "";
  padding-top: 130%;
  display: block;
}

.layout_4row_130photo li img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.layout_4row_160photo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.layout_4row_160photo li {
  position: relative;
  overflow: hidden;
  width: calc((100% - 6rem) / 4);
  height: auto;
  border-radius: 1rem;
}

.renmuryo1 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  color: #fff;
  font-weight: 600;
  flex-direction: column;
  width: 100%;
  padding: 0 2rem 2rem 2rem;
  line-height: 1.5;
  font-size: 1.5rem;
  font-feature-settings: "palt";
  gap: 0.8rem;
}
.renmuryo1_tx {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-shadow: 3px 3px 2px var(--color-2), -3px 3px 2px var(--color-2),
    -3px -3px 0 var(--color-2), 3px -3px 0 var(--color-2);
}
.renmuryo1_l {
  font-size: 2.5rem;
}
.renmuryo1_l2 {
  font-size: 2rem;
  line-height: 1.3;
}
.renmuryo_maru {
  background: var(--color-2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 11rem;
  height: 11rem;
  text-align: center;
  margin-left: -1rem;
  flex-direction: column;
  border: 2px solid #fff;
}
.renmuryo_maru_2 {
  background: var(--color-2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 8rem;
  text-align: center;
  margin-left: -1rem;
  flex-direction: column;
  border: 2px solid #fff;
}
.layout_4row_160photo li::after {
  content: "";
  padding-top: 160%;
  display: block;
}

.layout_4row_160photo li img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.box_wrap_rentalmuryou li img {
  border-radius: 2rem;
}
.layout_2row_photo_sp2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.layout_2row_photo_sp2 li {
  position: relative;
  overflow: hidden;
  width: calc((100% - 1rem) / 2);
  height: auto;
  border-radius: 1rem;
}
.layout_2row_photo_sp2 li::after {
  content: "";
  padding-top: 90%;
  display: block;
}
.layout_2row_photo_sp2 li img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.layout_3row_photo_sp1b {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.layout_3row_photo_sp1b li {
  position: relative;
  overflow: hidden;
  width: calc((100% - 1rem) / 2);
  height: auto;
  border-radius: 1rem;
}

.layout_3row_photo_sp1b li:first-child {
  width: 100%;
}

.layout_3row_photo_sp1b li::after {
  content: "";
  padding-top: 62%;
  display: block;
}

.layout_3row_photo_sp1b li img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .layout_4row_photo li {
    width: calc((100% - 2rem) / 2);
  }
  .layout_4row_100photo li {
    width: calc((100% - 2rem) / 2);
  }
  .layout_4row_130photo li {
    width: calc((100% - 2rem) / 2);
  }
  .layout_4row_160photo li {
    width: calc((100% - 2rem) / 2);
  }
  .layout_3row_photo {
    width: 100%;
  }
  .layout_3row_photo2 li {
    width: calc((100% - 2rem) / 2);
  }
}
.box_wrap_furitoku {
  display: flex;
  justify-content: center;

  gap: 2rem;
  flex-wrap: wrap;
}
.box_wrap_furitoku li {
  position: relative;

  height: auto;
  background: #fff;
  padding: 2rem;
  border-radius: 2rem;
}

.box_wrap_furitoku li.furitoku2rt {
  width: calc((100% - 2rem) / 2);
}
.box_wrap_furitoku li.furitoku4rt {
  width: calc((100% - 6rem) / 4);
}

.box_wrap_furitoku li.furitoku2rt .box_2 {
  width: 50%;
}

.box_wrap_furitoku .box_wrap {
  display: flex;

  gap: 2rem;
}
.box_wrap_furitoku .box_1 {
  flex: 1;
  position: relative;
  display: flex;

  flex-direction: column;
  font-feature-settings: "palt";
}
.box_wrap_furitoku .box_2 {
  position: relative;
  overflow: hidden;

  height: auto;
}
.box_wrap_furitoku .box_2::after {
  content: "";
  padding-top: 80%;
  display: block;
}
.box_wrap_furitoku .box_2 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.box_wrap_furitoku h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-top: 0.5rem;
  line-height: 1.5em;
  font-feature-settings: "palt";
  font-family: var(--font-mincho);
}
.box_wrap_furitoku h3 {
  font-size: 1.5rem;
  line-height: 1.5em;
  color: var(--color-2);
  font-weight: 700;
  margin-top: 1rem;
}
.box_wrap_furitoku p.kometx {
  font-size: 1.2rem;
  line-height: 1.5em;
  margin-top: 1rem;
}
.furitoku_m {
  font-size: 1.1rem;
  background: var(--color-2);
  color: #fff;
  font-weight: 600;
  display: flex;
  margin-right: 0.5em;
  line-height: 1.1;
  width: 4rem;
  height: 4rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 100%;
}
.toku12 {
  display: flex;

  align-items: center;
}
.toku12_tx {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  color: var(--color-2);
  padding-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  .box_wrap_furitoku li.furitoku2rt {
    width: 100%;
  }
  .box_wrap_furitoku li.furitoku4rt {
    width: calc((100% - 2rem) / 2);
  }
  .box_wrap_furitoku h2 {
    font-size: 2.3rem;
  }

  .box_wrap_furitoku h3 br {
    display: none;
  }
  .box_wrap_furitoku .box_wrap {
    display: flex;
    gap: 2rem;
    flex-direction: column-reverse;
    justify-content: center;
  }
  .box_wrap_furitoku li.furitoku2rt .box_2 {
    width: 100%;
  }
  .box_wrap_furitoku .box_2::after {
    content: "";
    padding-top: 80%;
    display: block;
  }
  .box_wrap_furitoku .ftmrow h3 {
    margin-top: 0;
  }
  .box_wrap_furitoku .ftmrow .box_1 {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
  }
  .box_wrap_furitoku .ftmrow .box_1_1 {
    flex: 1;
  }
}
.box_wrap_rentalplan {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.box_wrap_rentalplan h2 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.box_wrap_rentalplan .planname {
  display: inline-block;
  color: #fff;
  padding: 0.5em 1em;
  font-size: 0.8em;
  font-weight: 600;
}

.box_wrap_rentalplan .valuecourse,
.box_wrap_rentalplan .fullsetcourse {
  width: calc((100% - 2rem) / 2);
}
.box_wrap_rentalplan .simplecourse {
  width: 100%;
}
.box_wrap_rentalplan .box_1 {
  position: relative;
  height: auto;
  background: #fff;
  padding: 3rem;

  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.box_wrap_rentalplan .box_1 .box_1_1 {
  display: flex;
  gap: 2rem;
  position: relative;
}
.box_wrap_rentalplan .box_1 .box_1_1 .maruplus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 3rem));
  width: 4rem;
  height: 4rem;

  color: #fff;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  font-size: 3rem;
  border: 3px solid #fff;

  line-height: 1;
}

.box_wrap_rentalplan .box_1 .box_1_1 .box_1_1_1 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.box_wrap_rentalplan .box_1 .box_1_1 .box_1_1_1 .box_1_1_1_img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.box_wrap_rentalplan .box_1 .box_1_1 .box_1_1_1 .box_1_1_1_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.box_wrap_rentalplan .box_1 .box_1_1 .box_1_1_1 .box_1_1_1_img::after {
  content: "";
  padding-top: 100%;
  display: block;
}
.box_wrap_rentalplan .box_1 .box_1_1 .box_1_1_1 h3 {
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
}
.box_wrap_rentalplan .box_1 .box_1_2 {
  display: flex;

  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}
.box_wrap_rentalplan .box_1 .box_1_2 li {
  padding: 0.5em 0.5em;
  display: inline-block;
  text-align: center;
  font-feature-settings: "palt";
  line-height: 1;
  background: #fff;
  border-radius: 0.5rem;
}

.valuecourse .coursename {
  color: var(--color-4);
}
.fullsetcourse .coursename {
  color: var(--color-5);
}
.simplecourse .coursename {
  color: var(--color-6);
}
.box_wrap_rentalplan .valuecourse h3 {
  color: var(--color-4);
}
.box_wrap_rentalplan .fullsetcourse h3 {
  color: var(--color-5);
}
.box_wrap_rentalplan .simplecourse h3 {
  color: var(--color-6);
}
.valuecourse .planname {
  background: var(--color-4);
}
.fullsetcourse .planname {
  background: var(--color-5);
}
.simplecourse .planname {
  background: var(--color-6);
}
.box_wrap_rentalplan .valuecourse .maruplus {
  background: var(--color-4);
}
.box_wrap_rentalplan .fullsetcourse .maruplus {
  background: var(--color-5);
}
.box_wrap_rentalplan .simplecourse .maruplus {
  background: var(--color-6);
}
.box_wrap_rentalplan .valuecourse .box_1_2 li {
  color: var(--color-4);
  border: 1px solid var(--color-4);
}
.box_wrap_rentalplan .fullsetcourse .box_1_2 li {
  color: var(--color-5);
  border: 1px solid var(--color-5);
}
.box_wrap_rentalplan .simplecourse .box_1_2 li {
  color: var(--color-6);
  border: 1px solid var(--color-6);
}

.box_wrap_orderrental .box {
  display: flex;
  justify-content: center;
  align-items: center;

  flex-wrap: wrap;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.box_wrap_orderrental .coursename {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
  display: inline-block;
}

.box_wrap_orderrental h5 {
  background: #fff;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  text-align: center;
  font-weight: 600;
  padding: 1rem 0;
  line-height: 1;
  font-size: 1.8rem;
}
.box_wrap_orderrental .box li {
  background: #fff;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.pricetx {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-2);
  text-align: center;
  display: inline-block;
  font-family: var(--font-mincho);
}
.pricetx span {
  font-size: 3.5rem;
  font-weight: 700;

  line-height: 1;
  margin-left: 0.5rem;
}
.tokimemo {
  text-align: center;
}
.tokimemo div {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid #ccc;
  font-size: 1.4rem;
  line-height: 1.5em;
  text-align: center;
  padding: 3rem 10rem;
  display: inline-block;
  border-radius: 9999px;
}
.priceandnaiyo {
  border: 1px solid #ccc;
  display: flex;

  flex-direction: column;
  font-feature-settings: "palt";
  background: #fff;
}
.price_wrap {
  padding: 1.5rem 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.pricename {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5em;
  display: inline-block;
}
.pricekakaku {
  font-family: var(--font-mincho);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-2);
  text-align: center;
  display: inline-block;
}
.pricekakaku span {
  font-size: 3.5rem;
  font-weight: 700;
  margin-left: 0.5rem;
  line-height: 1;
}
.pricenai {
  padding: 2rem;
}
.pricenai h5 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
}
.pricenai ul {
  display: flex;
  gap: 1.5rem;
}

.pricenai li {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 8rem;
}
.pricenai .pricenai_p {
  width: 12.4rem !important;
}
.pricenai_aki {
  position: relative;
  width: 25.5rem !important;
}
.pricenai_aki .pricenai_kome {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  line-height: 1.5;
  font-size: 1.4rem;

  text-indent: -1em;

  padding: 0 1rem 0 4rem;
}
.price_copy {
  padding: 0.5rem 1rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
}

.pricenai li span {
  line-height: 1.5;
  display: block;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}
.price_sub {
  background: #fff;
  padding: 3rem;
  border-radius: 3rem;
}
.price_sub .box_1_1_1 {
}
.price_sub .box_1_1_2 {
}

.furinaibrand {
  padding: 4rem;
  border: 1px solid #969696;
}

@media screen and (max-width: 767px) {
  .furinaibrand {
    padding: 4rem 2rem;
    border: 1px solid #ccc;
  }
  .box_wrap_rentalplan {
    flex-direction: column;
  }
  .box_wrap_rentalplan .valuecourse,
  .box_wrap_rentalplan .fullsetcourse {
    width: 100%;
  }
  .box_wrap_orderrental .box li {
    width: 100%;
    flex: auto;
  }
  .tokimemo div {
    font-size: 1.4rem;
    line-height: 1.5em;
    text-align: center;
    padding: 3rem 3rem;
    display: inline-block;
    border-radius: 3rem;
  }
  .price_wrap {
    padding: 1.5rem 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-direction: column;
  }

  .pricenai h5 {
    text-align: center;
  }
}

.layout_2row_txphoto {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;

  background: #fff;
  padding: 4rem;
  border-radius: 2rem;
  flex-wrap: wrap;
}

.layout_2row_txphoto_1 {
  width: calc((100% - 4rem) / 2);
}

.layout_2row_kakominone {
  display: flex;
  gap: 4rem;
  justify-content: center;

  border-radius: 2rem;
  flex-wrap: wrap;
}

.layout_2row_kakominone_1 {
  width: calc((100% - 4rem) / 2);
}
.layout_row_maruphoto {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;

  padding: 0 10rem;
}
.layout_row_maruphoto li {
  position: relative;
  overflow: hidden;
  width: calc((100% - 10rem) / 6);
  height: auto;
  border-radius: 999px;
}
.layout_row_maruphoto li::after {
  content: "";
  padding-top: 100%;
  display: block;
}

.layout_row_maruphoto li img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.conlist {
  list-style-type: disc; /* 丸を付ける */
  padding-left: 1.5em; /* インデント（内側余白） */
  margin-left: 0; /* 必要なら外側余白をリセット */
}
.conlist li {
  margin-bottom: 0.5em; /* 各項目に少し余白を */
}
@media screen and (max-width: 767px) {
  .layout_row_maruphoto {
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0;
  }
  .layout_row_maruphoto li {
    width: calc((100% - 2rem) / 3);
  }
  .layout_2row_txphoto {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 3rem;
    border-radius: 2rem;
  }
  .layout_2row_txphoto_1 {
    width: 100%;
  }
  .layout_2row_kakominone {
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    flex-wrap: wrap;
  }

  .layout_2row_kakominone_1 {
    width: 100%;
  }
  .layout_2row_txphoto .h2_3 {
    text-align: center;
  }
}
.price-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 1.8rem;
  background: #fff;
}

.price-table th,
.price-table td {
  border: 1px solid #ccc;
  padding: 1rem;
  text-align: center;
  vertical-align: middle;
}
.header-name,
.header-member,
.header-general {
  font-weight: 400;
}
.price-table th {
  background: var(--color-4-half);
}
.price-table th[scope="row"] {
  font-weight: 400;
}
.header-name {
  width: 20%;
}
.header-member {
  width: 30%;
}
.header-general {
  width: 50%;
}
.free {
  color: var(--color-2);
  font-weight: 600;
  vertical-align: middle;
}
.fcorse span {
  display: inline-block;
  line-height: 1.5em;
  font-feature-settings: "palt";
}
.fcorse ul {
  display: flex;
  justify-content: center;
  gap: 0.5em;
}
.fcorse li {
  line-height: 1;
}
.miniwaku {
  padding: 2.5rem 3rem;
  font-feature-settings: "palt";
  background: #fff;
  border-radius: 2rem;
}

@media screen and (max-width: 767px) {
  .fcorse ul {
    display: flex;
    justify-content: center;
    gap: 0.5em;
    flex-direction: column;
  }
}
.kimono-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 1.8rem;
  background: #fff;
  font-feature-settings: "palt";
}

.kimono-table th {
  border: 1px solid #ccc;
  padding: 1rem;
  text-align: center;
  vertical-align: middle;
}

.kimono-type {
  background: var(--color-4-half);
  width: 30%;
}

.kimono-table th:nth-child(2) {
  width: 70%;
}

.kimono-price {
  color: var(--color-2);
  font-weight: 600;
}

.kimono-tax {
  font-size: 1.2rem;
}

.kimono-free {
  color: var(--color-2);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .kimono-table {
    border-collapse: collapse;
    width: 100%;
    font-size: 1.8rem;
    background: #fff;
    font-feature-settings: "palt";
    max-width: 100%;
    margin: 0 auto;
  }
}

.box_pay ul {
  list-style-type: disc;
  padding-left: 1.5em;
  margin-left: 0;
  line-height: 1.6;
}
.box_pay ul li {
  margin-top: 1rem;
}
.box_pay ul span {
  display: inline-block;
}

.tome_wrap {
  display: flex;
}
.tome_wrap .box_1 {
  flex: 1;
}

.tome_wrap .box_2 {
  width: 20rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}
.tome_wrap .box_2 img {
  height: 40rem;
  width: auto;
}
@media screen and (max-width: 767px) {
  .tome_wrap .box_2 img {
    height: 45rem;
    width: auto;
  }
}

/*==================================================
選ばれる理由
==================================================*/
.box_wrap_reason .box {
  padding: 6rem 6rem 6rem 6rem;
  background: #fff;
  border-radius: 3rem;
  position: relative;
}
.box_wrap_reason .box_1 {
  display: flex;
  gap: 4rem;
  justify-content: center;

  flex-wrap: wrap;
  margin-top: 5rem;
}

.box_wrap_reason .box_1 .box_1_1 {
  width: calc((100% - 4rem) / 2);
}
.box_wrap_reason h2 {
  position: relative;
  line-height: 1.5;
}
.redbold {
  font-weight: 700;
  color: var(--color-2);
}
.box_wrap_reason h2 .sttx {
  position: relative;
  z-index: 1;
}

.box_wrap_reason .box .stno {
  position: absolute;
  background: #deeac2;
  width: 14rem;
  height: 14rem;
  top: -4rem;
  left: 6rem;
  line-height: 1;
  border-radius: 3rem;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  font-size: 5rem;
  font-family: var(--font-mincho);
  color: var(--color-2);
  font-weight: 700;
}
.box_wrap_reason .box .stno span {
  font-size: 1.6rem;
  display: block;
  font-family: var(--font-gothic);
}
.layout_2row_photo_sp2_cap {
  display: flex;
  justify-content: center;

  gap: 1rem;
  flex-wrap: wrap;
}
.layout_2row_photo_sp2_cap li {
  position: relative;
  overflow: hidden;
  width: calc((100% - 2rem) / 2);
  height: auto;
  border-radius: 1rem;
}
.layout_2row_photo_sp2_cap li .img_wrap_cap {
  position: relative;
  overflow: hidden;

  border-radius: 1rem;
}
.layout_2row_photo_sp2_cap li .img_wrap_cap::after {
  content: "";
  padding-top: 62%;
  display: block;
}
.layout_2row_photo_sp2_cap li .img_wrap_cap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.layout_2row_photo_sp2_cap .captionari_tx {
  font-size: 1.3rem;
  display: block;
  text-align: center;
  font-feature-settings: "palt";
  line-height: 1.5;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .box_wrap_reason .box_1 .box_1_1 {
    width: 100%;
  }
  .box_wrap_reason .box .stno {
    width: 10rem;
    height: 10rem;
    left: 50%;
    top: -4rem;
    transform: translateX(-50%);
    font-size: 3rem;
  }
  .box_wrap_reason .box .stno span {
    font-size: 1.3rem;
  }
  .box_wrap_reason .box_1 {
    margin-top: 4rem;
  }
  .box_wrap_reason .box {
    padding: 8rem 3rem 3rem 3rem;
  }
}

/*==================================================
流れ
==================================================*/

.nagarebox h2 {
  font-size: 2rem;
  font-weight: 700;
}
.nagarebox ul {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  background: #fff;
  padding: 3rem;
  border-radius: 2rem;
  justify-content: center;
}

.nagarebox li {
  position: relative;

  display: flex;
  gap: 2rem;
  flex-direction: column;
}
.nagarebun6 li {
  width: calc((100% - 10rem) / 6);
}
.nagarebun3 li {
  width: calc((100% - 4rem) / 3);
}
.nagarebox .box {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}
.nagarebox .box_1 {
  position: relative;
}
.nagarebox .box_1 .box_1_1 {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  display: block;
}
.nagarebox .box_1 .box_1_1 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.nagarebox .box_1 .box_1_1::after {
  content: "";
  padding-top: 62%;
  display: block;
}
.nagarebox li:not(:first-child) h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.5rem;
  transform: translateY(-50%);

  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1rem solid var(--color-2);
}

.nagarebox li h3 {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;

  text-align: center;
  padding: 0.5rem 0;

  font-feature-settings: "palt";
  border-radius: 999px;
}
.nagare1 h3 {
  background: var(--color-4-half);
}
.nagare2 h3 {
  background: var(--color-5-half);
}
.nagare3 h3 {
  background: var(--color-6-half);
}
.nagarebox .box_2 p {
  font-size: 1.4rem;
  line-height: 1.7em;
  font-feature-settings: "palt";
}
.nagarebox .box_2 a {
  font-weight: 600;
  color: var(--color-2);
}
@media screen and (max-width: 767px) {
  .nagarebox ul {
    gap: 4rem;
  }
  .nagarebox li {
    width: 100%;
  }

  .nagarebox .box {
    flex-direction: row;
    align-items: center;
  }
  .nagarebox .box_1 {
    width: 40%;
  }
  .nagareimgnashi .box_2 {
    width: 100%;
  }
  .nagareimgari .box_2 {
    width: 60%;
  }
  .nagarebox .box_1 .box_1_1 {
    border-radius: 3rem;
  }
  .nagarebox .box_2 p {
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0;
  }
  .nagarebox .box_1 .box_1_1::after {
    content: "";
    padding-top: 100%;
    display: block;
  }
  .nagarebox li:not(:last-child)::before {
    content: "";
    position: absolute;
    bottom: -2.8rem;
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;

    border-top: 1.6rem solid var(--color-2);
    border-right: 1.2rem solid transparent;
    border-left: 1.2rem solid transparent;
    border-bottom: 0;
  }
  .nagarebox li:not(:first-child) h3::before {
    display: none;
  }
}

/*==================================================
セクションパーツ
==================================================*/
.section_1 h2.heading {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
  z-index: 1;
  position: relative;
  font-family: var(--font-mincho);
}
.section_1 h2.heading span {
  padding: 1.5em 2em 0 2em;
  border-top-right-radius: 10rem;
  border-top-left-radius: 10rem;
  display: inline-block;
}
.button_1 {
  text-align: center;
}
.button_1 a {
  line-height: 1;
  font-weight: 600;
  color: #fff;
  background: var(--color-2);
  border-radius: 9999px;
  padding: 1.5em 2.5em;
  display: inline-block;
}
.button_1 a:hover {
  opacity: 0.5;
  transition: all 0.2s;
}

@media screen and (max-width: 767px) {
  .section_1 h2.heading span {
    width: 100%;
    padding: 3em 2em 0 2em;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    display: inline-block;
  }
  .button_1 a:hover {
    opacity: 1 !important;
    transition: none !important;
  }
}

/*==================================================
予約・お問い合わせ
==================================================*/
.mfchui {
  font-feature-settings: "palt";
}
.cochira {
  color: #ff0000;
  border-bottom: 1px solid #ff0000;
}
.reserves_btn {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.reserves_btn .button_ct {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  border: 1px solid var(--color-2-half);
  padding: 2.5rem 1rem;
  border-radius: 1rem;
}

.reserves_tel .button_ct {
  background: #fff0ea;
  width: calc((100% - 4rem) / 3);
}

.reserves_line .button_ct {
  background: #ddf6e7;
  width: calc((100% - 2rem) / 2);
}
.reserves_btn .button_ct .retenpomei {
  text-align: center;
  line-height: 1;
  font-weight: 600;
}
.reserves_btn .button_ct .tel span {
  padding-left: 2.5rem;
  position: relative;
  display: inline-block;
  text-align: center;
}
.reserves_btn .button_ct .tel span img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2rem;
}

.reserves_btn .button_ct .tel {
  font-weight: 600;
  text-align: center;
  line-height: 1;
}
.reserves_btn .button_ct a {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.reserves_btn .button_ct:hover {
  opacity: 0.5;
  transition: all 0.2s;
}
.pagelinklist li {
  padding: 2rem 1.5rem 2rem 4rem;
  border: 1px solid #ccc;
  font-size: 1.4rem;
  line-height: 1;
  display: block;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}
.triangle {
  position: relative;
}
.triangle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--color-1);
  width: 1rem;
  height: 1rem;
}
.pagelinklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .reserves_btn .button_ct {
    width: 100%;
  }
  .reserves_btn .button_ct:hover {
    opacity: 1 !important;
    transition: none !important;
  }
}
/*==================================================
フッターコンタクト
==================================================*/

.contact_nav {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.contact_nav .box_3 {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 1.5rem 0;
}
.contact_nav .box_3_1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.contact_nav .box_3_2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.contact_nav .box_3 a {
  line-height: 1;
  text-align: center;
  display: inline-block;
  padding: 2rem 0 2rem 0;
  font-feature-settings: "palt";
}
.contact_nav .box_3 a:hover {
  opacity: 0.5;
  transition: all 0.2s;
}
.contact_nav .box_2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.contact_nav .box_2 a {
  font-weight: 600;
  color: #fff;
  background: var(--color-2);
  border-radius: 9999px;
  padding: 1.5em 3em;
  line-height: 1;
  width: 27rem;
  text-align: center;
  letter-spacing: 0.1em;
  display: inline-block;
}

.contact_nav .box_2 a span {
  padding-left: 3rem;
  position: relative;
}
.contact_nav .box_2 a span img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2rem;
}
.contact_nav .box_2 a:hover {
  opacity: 0.5;
  transition: all 0.2s;
}
.contact_nav h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.contact_nav h1 .tx_1 {
  display: inline-block;
  margin-top: 2rem;
  line-height: 1.5em;
  font-size: 1.5rem;
}
.contact_nav h1 .tx_2 {
  display: inline-block;
  margin-top: 0.5rem;
  line-height: 1;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-mincho);
}
.contact_nav h1 img {
  width: 20rem;
}
.contact_nav .box_1 {
  display: flex;
  gap: 3rem;
  flex-direction: row;
}
.contact_nav .box_1 .box_1_1 {
  flex: 1;
}
.contact_nav .box_1 .box_1_1 .box_ih {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}
.contact_nav .box_1 .box_1_1 h2 {
  text-align: center;
  line-height: 1;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-mincho);
}
.contact_nav .box_1 .box_1_1 h2 span {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-2);
  display: block;
  margin-bottom: 0.4em;
  letter-spacing: 0.1em;
}
.contact_nav .box_1 .box_1_1 .button_ct a span {
  padding-left: 2.5rem;
  position: relative;
}
.contact_nav .box_1 .box_1_1 .button_ct a span img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2rem;
}
.contact_nav .box_1 .box_1_1 .button_ct {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact_nav .box_1 .box_1_1 .button_ct a {
  font-weight: 600;
  color: var(--color-2);
  border: 1px solid var(--color-2-half);

  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
  padding: 1.5em 1em;
  line-height: 1;
  text-align: center;
}
.contact_nav .box_1 .box_1_1 .button_ct a:hover {
  opacity: 0.5;
  transition: all 0.2s;
}
.contact_nav .box_1 .box_1_1 .address {
  text-align: center;
  line-height: 1.5em;
  font-size: 1.5rem;
  margin-top: 2rem;
}

.contact_nav .box_1 .box_1_1 .storeimg {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.contact_nav .box_1 .box_1_1 .storeimg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.contact_nav .box_1 .box_1_1 .storeimg::after {
  content: "";
  padding-top: 62%;
  display: block;
}

@media screen and (max-width: 767px) {
  .contact_nav .box_3 a:hover {
    opacity: 1 !important;
    transition: none !important;
  }
  .contact_nav .box_1 .box_1_1 .button_ct a:hover {
    opacity: 1 !important;
    transition: none !important;
  }
  .contact_nav .box_2 a:hover {
    opacity: 1 !important;
    transition: none !important;
  }
  .contact_nav .box_3 {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #ccc;
    border-bottom: none;
    padding: 0;
  }
  .contact_nav .box_3_1 {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .contact_nav .box_3_2 {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .contact_nav .box_3 a {
    display: block;
    width: 100%;
    border-bottom: 1px solid #ccc;
    font-size: 2rem;
    font-weight: 400;
    padding: 3rem 0;
  }
  .contact_nav {
    gap: 4rem;
  }

  .contact_nav .box_2 {
    flex-direction: column;
  }
  .contact_nav .box_2 a {
    width: 100%;
  }
  .contact_nav .box_1 {
    display: flex;
    gap: 4rem;
    flex-direction: column;
  }
  .contact_nav .box_1 .box_1_1 .box_ih {
    flex-direction: column-reverse;
  }
}
.footerimg {
  position: relative;
  z-index: -1;
}
.footerimg .box_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footerimg .box_wrap .box {
  position: relative;
  overflow: hidden;
  height: auto;
  flex: 1;
}
.footerimg .box_wrap .box::after {
  content: "";
  padding-top: 60%;
  display: block;
}
.footerimg .box_wrap .box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.footerslider {
  position: relative;
  z-index: -1;
}
.swiper-footerslider .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.swiper-footerslider .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.swiper-footerslider .swiper-slide::after {
  content: "";
  padding-top: 60%;
  display: block;
}
.footerslider::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: auto;
  display: block;
  background: var(--color-2);
}

/*==================================================
トップページ　お知らせ
==================================================*/

.info_list_noimage {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8rem;
}
.info_list_noimage li {
  padding: 2rem 6rem 2rem 3rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  border-bottom: 1px solid #ccc;

  width: 100%;
  font-feature-settings: "palt";
}

.labelandday_wrap {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.listarrow::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 3rem;

  width: 1rem;
  height: 1rem;
  border-top: 1px solid #504f4f;
  border-right: 1px solid #504f4f;
  -webkit-transform: rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .info_list_noimage li {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 6rem 2rem 0;
  }
  .info_list_noimage {
    padding: 0 0;
  }
  .labelandday_wrap {
    gap: 2rem;
  }
}
/*==================================================
トップページ　SNS・CM
==================================================*/

.top_snsandcm .box_wrap .box_1 {
  display: flex;
  gap: 4rem;
}
.top_snsandcm .box_wrap .box_1 .box_1_1 {
  flex: 1;
}
.top_snsandcm .box_wrap h2 {
  padding-left: 3rem;
  position: relative;
  line-height: 1;
  font-size: 1.8rem;
}
.top_snsandcm .box_wrap h2 img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.8rem;
  height: auto;
}
.top_snsandcm .box_wrap .box_2 {
  max-width: 800px;
  margin: 0 auto;
  box-sizing: content-box;
  padding-right: 12rem;
  padding-left: 12rem;
}
.top_snsandcm .box_wrap .box_2 .box_2_1 .box_yutube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-top: 1rem;
}
.top_snsandcm .box_wrap .box_2 .box_2_1 .box_yutube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
@media screen and (max-width: 767px) {
  .top_snsandcm .box_wrap .box_2 {
    width: 100%;
    margin: 0 0;
    box-sizing: content-box;
    padding-right: 0;
    padding-left: 0;
  }
  .top_snsandcm .box_wrap .box_1 {
    display: flex;
    gap: 4rem;
    flex-direction: column;
  }
}
/*==================================================
トップページ　サービス
==================================================*/
.top_service .box_wrap .box {
  display: flex;
  gap: 4rem;
}
.top_service .box_wrap .box:nth-child(even) {
  flex-direction: row-reverse;
}
.top_service .box_wrap .box .box_2 {
  position: relative;
  overflow: hidden;
  width: 50%;
  border-radius: 10rem;
}
.top_service .box_wrap .box .box_2::after {
  content: "";
  padding-top: 100%;
  display: block;
}
.top_service .box_wrap .box .box_2 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top_service .box_wrap .box .box_1 {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.top_service .box_wrap .box .box_1 .box_1_1 {
  text-align: center;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 1;
  font-family: var(--font-mincho);
}
.top_service .box_wrap .box .box_1 .box_1_1::after {
  position: absolute;
  bottom: -0.5rem;
  left: -2rem;
  right: -2rem;
  border-bottom: 2rem var(--color-3) solid;
  content: "";
  z-index: -1;
  transform: skewY(-2deg);
}
.top_service .box_wrap .box .box_1 .box_1_2 {
  text-align: center;
  line-height: 1;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-2);
}
.top_service .box_wrap .box .box_1 .box_1_3 {
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .top_service .box_wrap {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  .top_service .box_wrap .box {
    display: flex;
    gap: 4rem;
    flex-direction: column;
  }
  .top_service .box_wrap .box .box_2 {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 6rem;
  }
  .top_service .box_wrap .box:nth-child(even) {
    flex-direction: column;
  }
}
/*==================================================
トップページ　選ばれる理由
==================================================*/
.top_reason {
}
.top_reason .box_wrap {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}
.top_reason .box_wrap .box {
  display: flex;
  width: calc((100% - 8rem) / 3);
}
.top_reason .box_wrap .box .box_1 {
  position: relative;
  overflow: hidden;
  width: 45%;
  border-top-left-radius: 3rem;
  border-bottom-left-radius: 3rem;
}
.top_reason .box_wrap .box .box_1::after {
  content: "";
  padding-top: 110%;
  display: block;
}
.top_reason .box_wrap .box .box_1 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top_reason .box_wrap .box .box_2 {
  width: 70%;
  background: #fff;
  border-top-right-radius: 3rem;
  border-bottom-right-radius: 3rem;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--font-mincho);
}
.top_reason .box_wrap .box .box_2 .box_2_1 {
  display: block;
  text-align: center;
  line-height: 1;
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-2);
}
.top_reason .box_wrap .box .box_2 .box_2_2 {
  display: block;
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
}
.top_reason_md1 {
  margin-top: 3rem;
  margin-bottom: -3rem;
}
.top_reason_md2 {
  margin-top: 1.5rem;
  margin-bottom: -1.5rem;
}
@media screen and (max-width: 767px) {
  .top_reason {
    background: #fff;
  }
  .top_reason .box_wrap {
    gap: 1rem;
  }
  .top_reason_md1 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .top_reason_md2 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .top_reason .box_wrap .box {
    width: 100%;
  }
  .top_reason .box_wrap .box .box_2 {
    width: 53%;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
  }

  .top_reason .box_wrap .box .box_1 {
    width: 47%;
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
  }
  .top_reason .box_wrap .box .box_1::after {
    content: "";
    padding-top: 85%;
    display: block;
  }
}
/*==================================================
投稿コンテンツ
==================================================*/
.post_content p {
  margin-top: 4rem;
}
.post_content a {
  padding-bottom: 0.4rem;
  border-bottom: 1px dotted var(--color-3);
}
.post_content a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .post_content a:hover {
    opacity: 1 !important;
  }
}
.post_content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 4rem;
  line-height: 1.5em;
}

.post_content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 4rem;
  line-height: 1.5em;
}
.post_content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 4rem;
  line-height: 1.5em;
}
.post_content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 4rem;
  line-height: 1.5em;
}
.post_content h5 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 4rem;
  line-height: 1.5em;
}
.post_content h6 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 4rem;
  line-height: 1.5em;
}
/*==================================================
カテゴリーやタグのラベル
==================================================*/
.cattaglabel_wrap {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.cattaglabel {
  font-weight: 600;
  padding: 0.3em 0.3em;
  display: block;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--color-2);
  color: var(--color-2);
  font-size: 1.2rem;
  line-height: 1;
  background: #fff;
  white-space: nowrap;
}

.fair_wrap .cattaglabel {
  margin-right: 0.5rem;
  display: block;
  padding: 0.5rem 1rem;
  background: var(--color-5);
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: 9999px;
  line-height: 1;
}
.postday_wrap {
  white-space: nowrap;
}
/*==================================================
swiper
==================================================*/
.widthmax1920 {
  max-width: 1920px;
  margin: 0 auto;
}
.topslider-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 10rem;
  border-bottom-left-radius: 10rem;
}

.topslider-wrap .swiper-slide {
  position: relative;
  height: auto;
}
.swiper-topslider {
  position: relative;
}

.topslider-wrap .slide-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.topslider-wrap .slide-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.topslider-wrap .swiper-slide::after {
  content: "";
  padding-top: 50%;
  display: block;
}

.img-pc {
  display: block;
}
.img-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .img-pc {
    display: none;
  }
  .img-sp {
    display: block;
  }
}
.swiper-3slider {
  position: relative;
  padding: 0 8rem;
}

.swiper-3slider .swiper {
  width: 100%;
}
.swiper-3slider .slide-img {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.swiper-3slider .slide-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.swiper-3slider .slide-img::after {
  content: "";
  padding-top: 100%;
  display: block;
}

.swiper-3slider .swiper-prev,
.swiper-3slider .swiper-next {
  z-index: 1;
  cursor: pointer;
  background-color: var(--color-gold);
  width: 6rem;
  height: 100%;
  transition: 0.2s;
  position: absolute;
}
.swiper-3slider .swiper-prev {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.swiper-3slider .swiper-next {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.swiper-3slider .swiper-prev:hover,
.swiper-3slider .swiper-next:hover {
  opacity: 0.5;
}
.swiper-3slider .swiper-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(50% - 0.8rem);
  margin: auto;
  transform: translate(50%, -50%) rotate(-45deg);
  border-top: 1px solid var(--color-2);
  border-left: 1px solid var(--color-2);
  box-sizing: border-box;
  width: 3rem;
  height: 3rem;
}
.swiper-3slider .swiper-prev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--color-2);
  width: 6rem;
  height: 6rem;
}
.swiper-3slider .swiper-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 0.8rem);
  margin: auto;
  transform: translate(-50%, -50%) rotate(45deg);
  border-top: 1px solid var(--color-2);
  border-right: 1px solid var(--color-2);
  box-sizing: border-box;
  width: 3rem;
  height: 3rem;
}
.swiper-3slider .swiper-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--color-2);
  width: 6rem;
  height: 6rem;
}
.info_wrap_pd {
  padding-top: 10rem;
}
.info_large_wrap {
  padding: 2rem;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .swiper-3slider .swiper-prev:hover,
  .swiper-3slider .swiper-next:hover {
    opacity: 1 !important;
  }
  .info_wrap_pd {
    padding-top: 2rem;
    background: #fff;
  }
  .topslider-wrap {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    margin-top: 10rem;
  }

  .topslider-wrap .swiper-slide::after {
    content: "";
    padding-top: 100%;
    display: block;
  }
  .swiper-3slider {
    position: relative;
    padding: 0 0rem 6rem 0;
  }

  .swiper-3slider .swiper-prev,
  .swiper-3slider .swiper-next {
    height: 6rem;
    width: 6rem;
  }
  .swiper-3slider .swiper-prev {
    top: unset;
    left: calc(50% - 4.5em);
    transform: unset;
    bottom: -2rem;
  }
  .swiper-3slider .swiper-next {
    top: unset;
    right: calc(50% - 4.5em);
    transform: unset;
    bottom: -2rem;
  }
  .swiper-3slider h2 {
    display: -webkit-inline-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
/*==================================================
  切り替えタブswiper
  ==================================================*/
.swiper-mugenslider {
  position: relative;
}
.swiper-mugenslider .swiper-wrapper {
  transition-timing-function: linear;
}
.swiper-mugenslider .swiper {
  width: 100%;
}
.swiper-mugenslider .slide-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 9999px;
  cursor: pointer;
}

.swiper-mugenslider .slide-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.swiper-mugenslider .slide-img::after {
  content: "";
  padding-top: 160%;
  display: block;
}
.tab_box .btn_area {
  display: flex;
  gap: 2rem;
}

.tab_box .tab_btn {
  flex: 1;
  padding: 2rem;
  color: var(--color-2);

  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.tab_box .tab_btn:hover {
  opacity: 0.5;
  transition: all 0.2s;
}
.tab_box .tab_btn.active {
  pointer-events: none;
}
.tab_btn_furi {
  background: var(--color-furiren);
}
.tab_btn_haka {
  background: var(--color-hakama);
}
.tab_box .tab_panel {
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.tab_box .tab_panel.active {
  visibility: visible;
  opacity: 1;
  height: auto;
}
.hassyutaglist_wrap .hassyutaglist {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 1.5rem;
  column-gap: 2rem;
}
.hassyutaglist li a {
  line-height: 1;
  display: inline-block;
  background: #fff;
  padding: 1em 1.5em;
  border-radius: 9999px;
}
.hassyutaglist li a:hover {
  opacity: 0.5;
  transition: all 0.2s;
}

.hassyutaglist2 {
  font-size: 1.2rem;
  line-height: 1;
  row-gap: 0.5em;
  column-gap: 1em;
  display: flex;
  font-weight: 600;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 1rem;
}
.brandlist_wrap .brandlist {
  display: flex;
  justify-content: center;

  flex-wrap: wrap;
  gap: 2rem;
}
.collection_wrap {
}
.collection_wrap .box {
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding: 0 10rem;
  position: relative;
}
.collection_wrap .box .box_1 {
  position: relative;
  background: #fff;
  border-radius: 999px 999px 0 0;
  flex: 1;
}
.colletoimg_mask {
  bottom: 0;
  position: absolute;
  width: 120%;
  height: 120%;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
.collection_wrap .box .box_1 img {
  position: absolute;

  width: auto;
  transform: translateX(-50%);
}
.colleto_l {
  left: 50%;
  bottom: 0;
  height: 90%;
}
.colleto_c {
  left: 50%;
  bottom: -20%;
  height: 110%;
}
.colleto_r {
  left: 60%;
  bottom: -20%;
  height: 110%;
}
.collection_wrap .box .box_1::after {
  content: "";
  padding-top: 160%;
  display: block;
}
.collection_wrap .box_2 {
  font-size: 4rem;
  text-align: center;
  line-height: 1.1;
  width: 100%;
  font-weight: 100;
}
.collection_wrap .box_2 span {
}
.collection_wrap .button_1 {
  position: relative;
  z-index: 1;
}
.button_b {
  text-align: center;
}
.button_b a {
  position: relative;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  background: var(--color-1);
  padding: 1.5em 7em 1.5em 5rem;
  display: inline-block;
}
.button_b a:hover {
  opacity: 0.5;
  transition: all 0.2s;
}

.button_b .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3rem;
  display: inline-block;
  width: 5rem;
  height: 0.2rem;
  border-radius: 9999px;
  background-color: #ffffff;
}

.button_b .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 2rem;
  height: 0.2rem;
  border-radius: 9999px;
  background-color: #ffffff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}

.brandlist li {
  width: calc((100% - 10rem) / 6);
}
.andmore {
  text-align: center;
}
.andmore a {
  padding: 1rem 2rem;
  border: 1px solid #ccc;
  border-radius: 999px;
}

.brand-name {
  display: block;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .button_b a:hover {
    opacity: 1 !important;
    transition: none !important;
  }

  .hassyutaglist li a:hover {
    opacity: 1 !important;
    transition: none !important;
  }
  .tab_box .tab_btn:hover {
    opacity: 1 !important;
    transition: none !important;
  }
  .brand-name {
    font-size: 1.2rem;
  }
  .brandlist li {
    width: calc((100% - 2rem) / 3);
  }
  .collection_wrap .box {
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding: 0;
  }
  .brandlist_wrap .brandlist {
    gap: 1rem;
  }
}
/* =====================================================
コース画像拡大モーダル （ここから本PEN のコア）
===================================================== */
#grayDisplay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  max-width: 100% !important;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 999;
}
.modalimg img {
  cursor: pointer;
}
.modalimg img:hover {
  opacity: 0.5;
  transition: all 0.1s;
}
#grayDisplay img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  height: 90%;
  object-fit: contain;
}
.caption {
  display: none;
}
@media screen and (max-width: 767px) {
  .modalimg img:hover {
    opacity: 1 !important;
    transition: none !important;
  }
}
/*==================================================
フェアシングル
==================================================*/

.fairpost_wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.fairpost_wrap .box {
  display: flex;
  gap: 4rem;

  font-feature-settings: "palt";
}

.fairpost_wrap .box_d {
  width: 14rem;

  font-feature-settings: "palt";
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Verdana,
    "メイリオ", Meiryo, sans-serif;
}
.fairpost_wrap .box_1 {
  width: 25rem;
}
.fairpost_wrap .box_2 {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Verdana,
    "メイリオ", Meiryo, sans-serif;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fairpost_wrap .imgbox {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fairpost_wrap h2 {
  font-size: 2.2rem;
  font-weight: 700;
}

.fairpost_wrap .fairbtn_wrap {
  margin-top: 2rem;
  display: flex;
  width: 100%;
  gap: 2rem;
}

.fairpost_wrap .date-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 1rem;
  flex-direction: column;

  align-items: center;

  color: #4d91e0;
}
.fairpost_wrap .date-wrapper span {
  text-align: center;
  display: block;
  width: 100%;
}
.fairpost_wrap .date-wrapper .year {
  font-weight: 700;
  line-height: 1;
  font-size: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #4d91e0;
}

.fairpost_wrap .date-wrapper .month-day {
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
}

.fairpost_wrap .date-wrapper .weekday {
  align-items: center;
  font-weight: 700;
  line-height: 1;
  color: #4d91e0;
  padding: unset;
  display: flex;
  justify-content: center;
  font-size: 2rem;
  background: #fff;
  width: 3.8rem;
  height: 3.8rem;
  border: 1px solid #4d91e0;
  border-radius: 50%;
}

.fairpost_wrap .fairlength {
  font-size: 1.4rem;

  line-height: 1;
}
.fairpost_wrap .fairkuwasiku {
  border: 1px solid #c3c3c3;
  border-radius: 0.5rem;
  line-height: 1;
  padding: 1.8rem 4rem;
  background: #fff;
  text-align: center;
}

.fairpost_yaku {
  line-height: 1;

  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .fairpost_wrap .box_1 {
    width: 14rem;
  }

  .fairpost_wrap .fairsyosai {
    margin-top: 1rem;
    display: flex;
    gap: 2rem;
  }
  .fairpost_wrap .date-wrapper .month-day {
    font-size: 3.8rem;
  }
  .fairpost_wrap .date-wrapper .weekday {
    align-items: center;
    font-weight: 700;
    line-height: 1;
    color: #4d91e0;
    padding: unset;
    display: flex;
    justify-content: center;
    font-size: 2rem;
    background: #fff;
    width: 3.8rem;
    height: 3.8rem;
    border: 1px solid #4d91e0;
    border-radius: 50%;
  }
  .fairpost_wrap .box_d {
    width: 100%;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ccc;
  }
  .fairpost_wrap .date-wrapper span {
    width: auto;
  }
  .fairpost_wrap .date-wrapper {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
  }
  .fairpost_wrap .date-wrapper .year {
    font-weight: 700;
    line-height: 1;
    font-size: 1.4rem;
    padding-bottom: 0;
    border-bottom: none;
  }

  .fairpost_wrap .box {
    gap: 4rem;

    flex-direction: column;
  }
  .fairkuwasiku {
    flex: 1;

    padding: 1.8rem 1rem;
  }
  .fairpost_wrap .fairyoyaku {
    flex: 2;
    padding: 1.8rem 1rem;
  }
  .fairpost_wrap .box_2 {
    width: 100%;
  }
}
.row_2_wrap {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
.row_2_wrap_re {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
.row_2_left {
  width: 75%;
}
.row_2_right {
  position: sticky;
  top: 4rem;
  width: 25%;
}
.fairpostside .date-wrapper {
  font-weight: 700;
  color: #4d91e0;
  display: flex;
  font-feature-settings: "palt";
}
.fairpostside li {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid #ccc;
}
.fairpostside ul {
  margin-top: 2rem;

  border-bottom: 1px solid #ccc;
}
.fairpostside select {
  margin-right: 0 !important;
  padding-left: 1.8rem !important;
  padding-top: 1.8rem !important;
  padding-bottom: 1.8rem !important;
  background-color: #fff !important;
  width: 100% !important;
  line-height: 1 !important;

  border: 2px solid #f4d3d9 !important;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Verdana,
    "メイリオ", Meiryo, sans-serif !important;
  border-radius: 1rem;
}

@media screen and (max-width: 767px) {
  .row_2_wrap {
    flex-direction: column;
  }
  .row_2_wrap_re {
    flex-direction: column-reverse;
  }
  .row_2_left {
    width: 100%;
  }
  .row_2_right {
    width: 100%;
    position: relative;
    top: unset;
  }
}

/*==================================================
インフォ
==================================================*/
.infopostmain {
  background: #fff;
  border-radius: 3rem;
  padding: 5rem;
}
.infopostmain:nth-child(n + 2) {
  margin-top: 4rem;
}

.infopostside .date-wrapper {
  font-weight: 700;
  color: #4d91e0;
  display: flex;
  font-feature-settings: "palt";
}
.infopostside li {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid #ccc;
  font-size: 1.4rem;
  line-height: 1.5em;
  display: block;
}
.infopostside ul {
  margin-top: 2rem;

  border-bottom: 1px solid #ccc;
}
.infopostside select {
  margin-right: 0 !important;
  padding-left: 1.8rem !important;
  padding-top: 1.8rem !important;
  padding-bottom: 1.8rem !important;
  background-color: #fff !important;
  width: 100% !important;
  line-height: 1 !important;

  border: 2px solid #f4d3d9 !important;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Verdana,
    "メイリオ", Meiryo, sans-serif !important;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .infopostmain {
    padding: 4rem 2rem 4rem 2rem;
  }
  .infopostmain_splr0 {
    padding: 4rem 0 4rem 0 !important;
  }
}
/*==================================================
  アーカイブページ　ページネーション
  ==================================================*/
.pagination {
  white-space: nowrap;
  line-height: 0;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Verdana,
    "メイリオ", Meiryo, sans-serif;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.pagination a.page-numbers {
  color: #504f4f; /* 今のページの元々の色を他のページに適用 */
  background: #fff;
  border: 1px solid #504f4f;
  display: inline-block;
  text-align: center;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination a.page-numbers:hover {
  color: #fff;
  background: #777;
  border: 1px solid #777;
}

.pagination span.current {
  color: #fff; /* 他のページの元々の色を今のページに適用 */
  background: #504f4f;
  border: 1px solid #504f4f;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .dots {
  text-align: center;
  line-height: 1rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #date {
    width: 100%;
  }
}

/*==================================================
  お問い合せ・よくある質問
  ==================================================*/

a.contelwrap {
  background: #fff;
  display: block;
  padding: 1.5rem;
  margin-top: 2rem;
}
.contact_menu {
  position: sticky;
  top: 20rem;
  left: 0;
}
.contact_menu a {
  display: block;
  border-bottom: 1px solid #ccc;
  padding: 1.5rem 0 1.5rem 2.5rem;
  font-weight: 600;
  position: relative;
}
.contact_menu a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;

  width: 1rem;
  height: 1rem;
  border-top: 1px solid #504f4f;
  border-right: 1px solid #504f4f;
  -webkit-transform: rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .contact_menu a {
    margin-top: 0.5rem;
    display: block;
    border: 1px solid #ccc;
    padding: 1.5rem 0 1.5rem 0;
    font-weight: 600;
    position: relative;
    text-align: center;
  }
  .contact_menu a::before {
    display: none;
  }
  .contact_menu {
    position: relative;
    top: unset;
    left: unset;
  }
  .re_row_2_wrap {
    flex-direction: column-reverse;
  }
}
.cth {
  font-weight: 700;
  font-size: 2rem;
}

.accordion-area li {
  border-bottom: #ccc 1px solid;
  background: #fff;
  line-height: 1.7em;
}

.atitle {
  background: #fff;

  position: relative;
  cursor: pointer;
}
.qmk {
  padding: 1.5rem 6rem 1.5rem 7rem;
  position: relative;
  text-align: left !important;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
.qmk::before {
  content: "Q";
  position: absolute;
  font-size: 2.4rem;
  top: 50%;
  color: #969595;
  left: 2.5rem;
  transform: translate(0, calc(-50% - 0.2rem));
}
.atitle:hover .qmk::before,
.atitle:hover .qmk {
  color: #fff;
}
.atitle.close .qmk::before,
.atitle.close .qmk {
  color: #fff;
}

.atitle:hover,
.atitle.close {
  background: #969595;
  color: #fff;
}

.atitle:hover::before,
.atitle:hover::after,
.atitle.close::before,
.atitle.close::after {
  background-color: #fff;
}
.abox {
  display: none;
}
.amk {
  padding: 1.5rem 2rem 1.5rem 7rem;
  position: relative;
}
.amk::before {
  content: "A";
  position: absolute;
  font-size: 2.4rem;

  top: 1.5rem;
  color: #969595;
  left: 2.5rem;
}

.amk a {
  padding-bottom: 0.1rem;
  border-bottom: 1px dotted #504f4f;
}
.amk a:hover {
  opacity: 0.8;
}
.amk p {
  margin-bottom: 2rem;
  text-align: left !important;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

/*アイコンの＋と×*/
.atitle::before,
.atitle::after {
  position: absolute;
  content: "";
  width: 1.5rem;
  height: 1px;
  background-color: #504f4f;
}
.atitle::before {
  top: 48%;
  right: 3rem;
  transform: rotate(0deg);
}
.atitle::after {
  top: 48%;
  right: 3rem;
  transform: rotate(90deg);
}

.atitle.close::after {
  display: none;
}
/*==================================================
  会社概要・沿革
  ==================================================*/
table.gaiyou tr:nth-child(even) th,
table.gaiyou tr:nth-child(even) td {
  background-color: #f9f9f9;
}
table.gaiyou th,
table.gaiyou td {
  padding: 1.5rem;
  border-bottom: 1px solid #e2e2e2;
  font-feature-settings: "palt";
  line-height: 1.5em;
}
table.gaiyou {
  border-top: 1px solid #e2e2e2;
}
table.gaiyou th {
  font-size: 1.4rem;
  width: 25%;
}

table.storeinfo th,
table.storeinfo td {
  padding: 1.5rem;
  border-bottom: 1px solid #e2e2e2;
  font-feature-settings: "palt";
  line-height: 1.5em;
}
table.storeinfo {
  border-top: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
}
table.storeinfo th {
  font-size: 1.4rem;
  width: 25%;
  text-align: center;
  border-right: 1px solid #e2e2e2;
  background-color: #f9f9f9;
}
.storemap {
  padding: 1rem;
  border-right: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
}
.storemap iframe {
  width: 100%;
  height: 30rem;
}
@media screen and (max-width: 767px) {
  table.gaiyou th {
    width: 30%;
    text-align: center;
  }
  table.storeinfo th {
    width: 30%;
  }
}
/*==================================================
  プライバシー
  ==================================================*/
.privacy_wrap h2 {
  font-size: 2rem;
  font-weight: 600;
  padding: 2rem 0;
}
.privacy_wrap ul {
  list-style-type: disc;
}
.privacy_wrap p {
  text-align: justify;
}
.privacy_wrap ul li {
  margin-left: 1.5em;
}
.privacy_wrap {
  width: 80rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .privacy_wrap {
    width: 100%;
  }
}

/*==================================================
  ご来館カレンダー
  ==================================================*/

@media screen and (max-width: 767px) {
  #ui-datepicker-div.ui-datepicker {
    width: calc(100% - 4rem) !important; /* 横幅を画面いっぱいに設定 */
    max-width: calc(100% - 4rem) !important; /* 必要に応じて制限 */
    box-sizing: border-box !important; /* パディングを含める */
  }
  #ui-datepicker-div.ui-datepicker table {
    width: 100% !important; /* カレンダー表の幅を調整 */
  }
}

/*==================================================
  kimono
  ==================================================*/
.kimonolist h2 {
  text-align: center;
  font-weight: 700;
}
.kimonolist .listbox {
  display: flex;
  gap: 4rem;
  justify-content: center;
  flex-wrap: wrap;
}
.kimonolist .listbox li {
  width: calc((100% - 12rem) / 4);
}
.kimonolist .listbox .imgbox {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 999px;
  cursor: pointer;
}
.kimonolist .listbox .imgbox:hover {
  opacity: 0.5;
  transition: all 0.2s;
}
.kimonolist .listbox .imgbox img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.kimonolist .listbox .imgbox::after {
  content: "";
  padding-top: 160%;
  display: block;
}
@media screen and (max-width: 767px) {
  .kimonolist .listbox {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .kimonolist .listbox li {
    width: calc((100% - 2rem) / 2);
  }

  @media screen and (max-width: 767px) {
    .kimonolist .listbox .imgbox:hover:hover {
      opacity: 1 !important;
      transition: none !important;
    }
  }
}

.postcodeip p {
  display: flex !important;
  gap: 1rem !important;

  align-items: center !important;
}
.postcode {
  width: 50%;
}
#other-service {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .postcode {
    width: 100%;
  }
  .adress_wrap {
    display: flex !important;
    gap: 1rem !important;
    flex-direction: column !important;
  }
}
