@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
@media only screen and (max-width: 768px) {
  .sp_none {
    display: none !important;
  }
}
@media only screen and (max-width: 1023px) {
  .tab_none {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) {
  .pc_none {
    display: none !important;
  }
}
@media only screen and (min-width: 1024px) {
  .pc2_none {
    display: none !important;
  }
}
@keyframes fadeInUpMini {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpMini {
  animation-name: fadeInUpMini;
}
@keyframes fadeInLeftMini {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftMini {
  animation-name: fadeInLeftMini;
}
@keyframes fadeInRightMini {
  from {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightMini {
  animation-name: fadeInRightMini;
}

.pyoko-y {
  display: inline-block;
  animation: pyokoY 0.48s cubic-bezier(0.2, 0.9, 0.3, 1.2) both;
}

@keyframes pyokoY {
  0% {
    transform: translateY(0);
  }
  35% {
    transform: translateY(-8px);
  } /* ひょいっと上へ */
  55% {
    transform: translateY(0) scaleY(0.98);
  } /* 着地で少しつぶれる */
  75% {
    transform: translateY(-3px);
  } /* 余韻の跳ね返り */
  100% {
    transform: translateY(0);
  }
}
body {
  color: #77644d !important;
  background-color: #fff;
  letter-spacing: 0.2em;
  line-height: 1.8;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-tsukushiB);
}

.bg_beige {
  background-color: #f7f4eb;
  padding-top: 1px;
}

.inner_1200 {
  width: min(95%, 1200px);
  margin: auto;
  container-type: inline-size;
}

a {
  text-decoration: none;
  color: #77644d;
}

#wrapper {
  width: 100%;
  overflow: clip;
}
@media screen and (max-width: 768px) {
  #wrapper {
    width: calc(100vw - (100vw - 100%));
    overflow: hidden;
  }
}

:root {
  --sub_color:#e9545d;
  --sub-color2:#8dc221;
  --font-D:"FOT-筑紫B丸ゴシック Std D";
  --font-family-tsukushiB:"FOT-筑紫B丸ゴシック Std B";
  --font_noto:"Noto Sans", sans-serif;
  --sp_width:min(100%,500px);
}

.pt_50 {
  padding-top: clamp(30px, 21.4285714286px + 2.380952381cqw, 50px);
}

.pt_80 {
  padding-top: clamp(40px, 22.8571428571px + 4.7619047619cqw, 80px);
}

.pt_100 {
  padding-top: clamp(50px, 28.5714285714px + 5.9523809524cqw, 100px);
}

.pt_150 {
  padding-top: clamp(80px, 50px + 8.3333333333cqw, 150px);
}

.pt_200 {
  padding-top: clamp(100px, 57.1428571429px + 11.9047619048cqw, 200px);
}

.pb_50 {
  padding-bottom: clamp(30px, 21.4285714286px + 2.380952381cqw, 50px);
}

.pb_80 {
  padding-bottom: clamp(40px, 22.8571428571px + 4.7619047619cqw, 80px);
}

.pb_100 {
  padding-bottom: clamp(50px, 28.5714285714px + 5.9523809524cqw, 100px);
}

.pb_150 {
  padding-bottom: clamp(80px, 50px + 8.3333333333cqw, 150px);
}

.pb_200 {
  padding-bottom: clamp(100px, 57.1428571429px + 11.9047619048cqw, 200px);
}

/*ーーーーーーーーーー
.header
ーーーーーーーーーーー*/
.header {
  position: fixed;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  padding: 0px;
  background-color: rgba(0, 0, 0, 0);
  align-items: center;
  line-height: 1;
  z-index: 100;
  transition: all 0.3s linear;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1023px) {
  .header {
    padding: 10px 10px;
  }
}
.header nav {
  color: #77644d;
  position: absolute;
  right: 20px;
  top: 1.5em;
  background-color: #fff;
  border-radius: 18px;
  padding: 1em 1em 1.5em 1em;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  transition: all 0.3s linear;
  flex: 1;
}
@media screen and (max-width: 1023px) {
  .header nav {
    background-color: transparent;
    padding: 0px;
    box-shadow: none !important;
  }
}
.header nav .h_info {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
.header nav .nav-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.header nav .nav-container .hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  margin: 5px;
  position: relative;
  z-index: 1001;
  background-color: #007bc2;
  border-radius: 100px;
  padding: 10px;
}
.header nav .nav-container .hamburger span {
  position: absolute;
  height: 3px;
  width: 24px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header nav .nav-container .hamburger span:nth-child(1) {
  top: 14px;
}
.header nav .nav-container .hamburger span:nth-child(2) {
  top: 20px;
}
.header nav .nav-container .hamburger span:nth-child(3) {
  top: 26px;
}
.header nav .nav-container .hamburger small {
  position: absolute;
  top: 30px;
  letter-spacing: 0px !important;
}
.header nav .nav-container .hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 17.5px;
}
.header nav .nav-container .hamburger.open span:nth-child(2) {
  opacity: 0;
}
.header nav .nav-container .hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 17.5px;
}
.header nav .nav-container .nav {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  align-items: center;
}
.header nav .nav-container .nav > li {
  position: relative;
  border-top: none;
  z-index: 1;
}
.header nav .nav-container .nav > li > a {
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
  font-size: min(1.2vw, 20px);
  transition: all 0.3s linear;
  position: relative;
  letter-spacing: 0.05em;
  font-family: var(--font-family-tsukushiB);
}
.header nav .nav-container .nav > li a:hover, .header nav .nav-container .nav > li.is-current > a {
  color: var(--sub_color);
}
.header nav .nav-container .nav > li a:hover:after, .header nav .nav-container .nav > li.is-current > a:after {
  content: "*";
  display: block;
  font-size: 2em;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
  text-align: center;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .header nav .nav-container .nav > li ul {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    z-index: -1;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 0;
  }
  .header nav .nav-container .nav > li ul li {
    text-align: center;
  }
  .header nav .nav-container .nav > li ul li a {
    display: block;
    background-color: #fff;
    font-size: min(1vw, 16px) !important;
    padding: 1em 0.5em !important;
    letter-spacing: 0 !important;
    text-align: center;
  }
  .header nav .nav-container .nav > li ul li a:after {
    display: none;
  }
  .header nav .nav-container .nav > li:hover > ul {
    display: block;
    animation: fadeIn 0.3s ease;
  }
  .header nav .nav-container .nav > li.open ul {
    display: block;
  }
}
.header .sp_insta {
  display: none;
}
@media screen and (max-width: 1023px) {
  .header {
    /* トグルの見た目 */
    /* 横棒（共通） */
    /* 縦棒（＝プラスの縦線） */
    /* 開いた状態は縦棒を消して「−」だけにする */
    /* PCではトグルを非表示（必要なら） */
  }
  .header .submenu-toggle {
    display: inline-block;
    width: 2em;
    height: 2em;
    margin-left: 0.5em;
    border-radius: 3px;
    vertical-align: middle;
    position: relative;
    top: -0.2em;
  }
  .header .submenu-toggle::before {
    content: "";
    position: absolute;
    left: 20%;
    right: 20%;
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
    background: currentColor;
  }
  .header .submenu-toggle::after {
    content: "";
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: currentColor;
    transition: opacity 0.2s ease; /* 開いたら消す */
  }
  .header .nav > li.open > a .submenu-toggle::after {
    opacity: 0;
  }
}
@media screen and (max-width: 1023px) and (min-width: 1024px) {
  .header .submenu-toggle {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .header nav {
    right: 0;
    top: 0;
    color: #fff;
  }
  .header nav .nav-container {
    width: calc(100vw - (100vw - 100%));
    width: 100dvw;
    padding: 0px;
    margin: 0;
    height: 50px;
  }
  .header nav .nav-container .sp_insta {
    display: block;
    width: 40px;
    position: absolute;
    right: 60px;
    top: 10px;
    z-index: 10;
  }
  .header nav .nav-container .hamburger {
    display: flex;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 2;
  }
  .header nav .nav-container .nav {
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    background: #F7F4EB;
    width: 100%;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    height: 100vh;
    padding-top: 80px;
  }
  .header nav .nav-container .nav > li ul {
    display: none;
  }
  .header nav .nav-container .nav > li.open ul {
    display: block !important;
    position: static;
    width: 100%;
  }
  .header nav .nav-container .nav > li.open ul li {
    width: 100%;
  }
  .header nav .nav-container .nav > li.open ul li a {
    padding: 1em 0.5em !important;
  }
  .header nav .nav-container .nav > li.open ul li a:after {
    display: none !important;
  }
  .header nav .nav-container .nav > li a {
    display: block;
    padding: 1em;
    text-align: center;
    font-size: 16px;
    color: #77644d;
  }
  .header nav .nav-container .nav.active {
    transform: translateY(0);
  }
}
.header .logo {
  width: min(23vw, 400px);
  transition: all 0.3s linear;
}
.header .logo img {
  width: 100%;
}
.header .logo .logo_sp {
  display: none;
}
.header .logo .logo_pc {
  display: block;
}
@media screen and (max-width: 1023px) {
  .header .logo {
    position: relative;
    z-index: 10;
  }
  .header .logo .logo_sp {
    display: block;
  }
  .header .logo .logo_pc {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .header .logo {
    width: 450px;
  }
}
@media screen and (max-width: 768px) {
  .header .logo {
    width: 380px;
  }
}
@media screen and (max-width: 500px) {
  .header .logo {
    width: 330px;
  }
}
@media screen and (max-width: 450px) {
  .header .logo {
    width: 280px;
  }
}
@media screen and (max-width: 400px) {
  .header .logo {
    width: 230px;
  }
}
@media screen and (min-width: 1023px) {
  .header.scrolled .logo {
    width: min(18vw, 300px);
  }
  .header.scrolled nav {
    padding: 0.8em 1em 1.2em;
  }
  .header.scrolled nav a {
    font-size: min(1.1vw, 18px) !important;
  }
}
.header .h_insta img {
  width: 40px;
}
.header .h_insta a:after {
  display: none !important;
}

:root {
  --enter-speed: 1000ms; /* Swiperのspeedと一致 */
  --enter-ease: cubic-bezier(0.22,1,0.36,1);
  --enter-shift: 20px; /* 入ってくる距離（お好みで） */
}

/* ここまであなたのレイアウト系はそのまま */
.mv_set {
  position: relative;
  width: min(1500px, 92vw);
  aspect-ratio: 16/9;
  border-radius: 28px;
  overflow: hidden;
  margin: 40px auto auto;
  background-color: #f7f4eb;
  container-type: inline-size;
}
@media screen and (max-width: 768px) {
  .mv_set {
    margin: 70px auto auto;
  }
}
.mv_set .catch {
  position: absolute;
  z-index: 3;
  font-size: clamp(22px, 5.7142857143px + 4.5238095238cqw, 60px);
  left: 0.6em;
  bottom: 1em;
  color: #fff;
  line-height: 1.3;
  font-weight: normal;
  font-family: var(--font-D);
}
@media screen and (max-width: 768px) {
  .mv_set .catch {
    position: static;
    font-size: clamp(32px, 20px + 3.3333333333cqw, 60px);
  }
  .mv_set .catch p {
    position: absolute;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    text-align: center;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl; /* 旧IEレガシー */
    text-orientation: mixed;
    /* ←ココが重要：横方向（左右）のセンタリング用の「幅」を作る */
    width: 1.7em; /* 1.2〜1.8em で微調整 */
    text-align: center; /* 幅の中央に寄せる */
    line-height: 1.1; /* 詰まりすぎなら 1.2 くらいに */
    letter-spacing: 0.02em; /* お好みで */
  }
  .mv_set .catch p:first-child {
    right: 1%;
    top: 3%;
  }
  .mv_set .catch p:last-child {
    left: 1%;
    bottom: 3%;
  }
}
.mv_set .catch > p > span {
  text-shadow: 0 0px 20px rgba(0, 0, 0, 0.35);
  display: inline-block;
}
.mv_set .catch strong {
  position: relative;
  display: inline-block;
}
.mv_set .catch strong .gra {
  background: linear-gradient(90deg, rgb(255, 255, 255) 11%, rgb(255, 255, 128) 87%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  z-index: 1;
  position: relative;
  font-size: 1.7em;
}
.mv_set .catch strong .gra2 {
  background: linear-gradient(90deg, rgb(255, 255, 255) 11%, rgb(218, 244, 122) 82%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  z-index: 1;
  position: relative;
  font-size: 1.7em;
}
.mv_set .catch strong .gra3 {
  background: linear-gradient(90deg, rgb(255, 255, 255) 11%, rgb(199, 248, 255) 82%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  z-index: 1;
  position: relative;
  font-size: 1.7em;
}
.mv_set .catch strong .shadow {
  z-index: 0;
  text-shadow: 0 0px 20px rgba(0, 0, 0, 0.28);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.7em;
  color: #fff;
}

.pane {
  position: absolute;
  inset: 0;
  will-change: transform, clip-path;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pane--left {
  clip-path: polygon(0% 0%, 58% 0%, 42% 100%, 0% 100%);
}

.pane--right {
  clip-path: polygon(58% 0%, 100% 0%, 100% 100%, 42% 100%);
}

#leftPane, #rightPane {
  z-index: 1;
}

.swiper, .swiper-wrapper, .swiper-slide {
  height: 100%;
}

.swiper {
  width: 100%;
  height: 100%;
}

.slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--enter-speed) var(--enter-ease);
  will-change: transform;
}

#leftPane .ph1 {
  background-image: url(../images/top/left1b.png);
}

#leftPane .ph2 {
  background-image: url(../images/top/left2b.png);
}

#leftPane .ph3 {
  background-image: url(../images/top/left3c.png);
}

#rightPane .ph1 {
  background-image: url(../images/top/right1b.png);
}

#rightPane .ph2 {
  background-image: url(../images/top/right2b.png);
}

#rightPane .ph3 {
  background-image: url(../images/top/right3c.png);
}

/* ---------- sp縦積みズレフェイドなし ---------- */
@media screen and (max-width: 768px) {
  .mv_set {
    aspect-ratio: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 0;
    overflow: visible;
  }
  .pane {
    position: relative;
    inset: auto;
    clip-path: none;
    border-radius: 28px;
    transform: none;
    transition: none;
    height: 40vh;
  }
  .swiper {
    height: 100%;
    border-radius: inherit;
  }
  /* 念のためSPでは transform を固定 */
  .left-swiper .swiper-slide .media,
  .right-swiper .swiper-slide .media {
    transform: none !important;
  }
  #leftPane {
    position: relative;
    left: -30px;
  }
  #rightPane {
    position: relative;
    right: -30px;
  }
}
/* PC：フェード時“入ってくる側”だけ軽く上下から入場 */
@media (min-width: 769px) {
  /* 左：常に「入ってくる候補（next/prev）」は上から。activeで0に戻る */
  .left-swiper .swiper-slide-next .media,
  .left-swiper .swiper-slide-prev .media {
    transform: translateY(calc(-1 * var(--enter-shift)));
  }
  .left-swiper .swiper-slide-active .media {
    transform: translateY(0);
  }
  /* 右：入ってくる候補は下から。activeで0に */
  .right-swiper .swiper-slide-next .media,
  .right-swiper .swiper-slide-prev .media {
    transform: translateY(var(--enter-shift));
  }
  .right-swiper .swiper-slide-active .media {
    transform: translateY(0);
  }
}
/* モーション配慮 */
@media (prefers-reduced-motion: reduce) {
  .media {
    transition: none !important;
    transform: none !important;
  }
}
@media screen and (min-width: 1281px) {
  .l-side__text {
    writing-mode: vertical-rl;
    text-wrap: nowrap;
    text-orientation: upright;
  }
  .l-side__button {
    width: 70px !important;
    height: 170px !important;
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
  }
  .l-side__item {
    width: 70px !important;
    height: 170px !important;
  }
  .l-side__item {
    font-size: 2rem !important;
  }
}
.l-side {
  z-index: 11 !important;
}

.l-side__button--table {
  background-color: var(--sub-color2) !important;
  color: #fff !important;
  letter-spacing: 0.2em !important;
  line-height: 1;
}

.l-side__icon:before {
  width: 20px !important;
}

.l-side__button--table i,
.l-side__button--secondary img {
  font-size: 22px !important;
  font-weight: bold;
  width: 22px;
}

.l-side__text {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Source Han Sans JP", "Noto Sans CJK JP", "Meiryo", sans-serif !important;
  letter-spacing: 0.1em !important;
  font-weight: bold;
  color: #fff !important;
}

.l-side__button--secondary {
  --bg-color: #e9545d !important;
}

.timeT {
  border-collapse: collapse;
  --radius:10px;
  font-family: var(--font_noto);
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .timeT {
    width: 100%;
  }
}
.timeT th, .timeT td {
  padding: 0.5em;
  background-color: #fff;
  text-align: center;
  font-weight: normal;
  letter-spacing: 0.1em;
  font-size: 20px;
}
@media screen and (max-width: 1280px) {
  .timeT th, .timeT td {
    font-size: 16px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 768px) {
  .timeT th, .timeT td {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .timeT th, .timeT td {
    font-size: 16px;
    padding: 0.3em;
  }
}
.timeT thead th {
  background-color: var(--sub-color2);
  color: #fff;
}
.timeT td {
  color: #00a8e3;
}
.timeT tr td:first-child {
  color: #77644d;
}
.timeT thead th:first-child {
  border-radius: var(--radius) 0 0 0;
}
.timeT thead th:last-child {
  border-radius: 0 var(--radius) 0 0;
}
.timeT tbody tr:last-child th:first-child {
  border-radius: 0 0 0 var(--radius);
}
.timeT tbody tr:last-child td:last-child {
  border-radius: 0 0 var(--radius) 0;
}
.timeT .c-table__bottom {
  display: flex;
  justify-content: space-between;
  color: #00a8e3;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 0.8em !important;
  letter-spacing: 0 !important;
}
.timeT .c-table__bottom p {
  letter-spacing: 0 !important;
}
@media screen and (max-width: 768px) {
  .timeT .c-table__bottom {
    display: block;
  }
}

.l-table {
  background-color: #F4F8F0 !important;
}

.open_info ul {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 4%;
}
@media screen and (max-width: 768px) {
  .open_info ul {
    margin: auto;
    width: var(--sp_width);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.open_info ul li {
  width: 48%;
  container-type: inline-size;
  border: 3px solid #ffe267;
  border-radius: 20px;
  text-align: center;
  background-color: #fff;
  font-size: 16px;
  padding: 0px 20px 20px;
}
@media screen and (max-width: 768px) {
  .open_info ul li {
    width: 100%;
  }
  .open_info ul li:not(:first-child) {
    margin-bottom: 50px;
  }
}
.open_info ul li h3 {
  position: relative;
  transform: translateY(-50%);
}
.open_info ul li h3 img {
  position: relative;
  display: block;
  margin: auto;
  width: 70cqw;
  height: auto;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .open_info ul li h3 img {
    width: 85cqw;
  }
}
.open_info ul li h3 span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 5.7cqw;
}
@media screen and (max-width: 768px) {
  .open_info ul li h3 span {
    font-size: 8cqw;
  }
}
.open_info ul li h4 {
  font-size: 5cqw;
  margin-top: -0.5em;
  border-bottom: 6px dotted #c89650;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto auto 20px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .open_info ul li h4 {
    font-size: 5.7cqw;
  }
}
.open_info ul li h4.kaiin {
  font-size: 6.5cqw;
}
@media screen and (max-width: 768px) {
  .open_info ul li h4.kaiin {
    font-size: 6.6cqw;
  }
}
.open_info ul li p {
  font-size: 3.5cqw;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .open_info ul li p {
    font-size: 14px;
  }
}
.open_info ul li {
  background-image: url(../images/top/deco2.png), url(../images/top/deco1.png);
  background-size: 20% auto, 35% auto;
  background-position: -3% 106%, 108% -30%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .open_info ul li {
    background-size: 25% auto, 40% auto;
  }
}
.open_info ul li:last-child {
  border: 3px solid #f2b9a5;
  background-image: url(../images/top/deco4.png), url(../images/top/deco3.png);
}

.top_news {
  position: relative;
}
.top_news .inner {
  width: min(95%, 1300px);
  margin: auto;
  padding: 3% 3%;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.top_news .inner h2 {
  font-size: clamp(23px, 14.8571428571px + 2.2619047619cqw, 42px);
  text-align: center;
  color: #4e4e4e !important;
  margin-bottom: 0.5em;
}
.top_news .inner .tab_set {
  margin-top: 50px;
  background-color: #fff;
  width: 100%;
  margin: 0 auto;
}
.top_news .inner .tab_item {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 1.5em;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #77644d;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
@media screen and (max-width: 768px) {
  .top_news .inner .tab_item {
    padding: 0px 1em;
  }
}
.top_news .inner .tab_item:hover {
  opacity: 0.75;
}
.top_news .inner input[name=tab_item] {
  display: none;
}
.top_news .inner .tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top_news .inner .tab_content {
    padding: 20px 20px 0;
  }
}
.top_news .inner #all:checked ~ #all_content,
.top_news .inner #programming:checked ~ #programming_content,
.top_news .inner #design:checked ~ #design_content {
  display: block;
}
.top_news .inner .tab_set input:checked + .tab_item {
  color: var(--sub_color);
  position: relative;
}
.top_news .inner .tab_set input:checked + .tab_item:after {
  content: "*";
  display: block;
  font-size: 2em;
  height: 1em;
  position: absolute;
  top: 1em;
  left: 0;
  right: 0;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.top_news .dl_wrap {
  height: 200px;
  overflow-y: scroll;
}
.top_news dl {
  padding-right: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #d6c1b2;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .top_news dl {
    display: block;
  }
}
.top_news dl dt {
  width: 28%;
  font-size: 1.1em;
  font-family: var(--font-family-tsukushi) !important;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .top_news dl dt {
    width: 100%;
  }
}
.top_news dl dt strong {
  font-size: 1.1em;
  display: block;
  margin: 0.5em 0;
  font-family: var(--font-family-tsukushi);
}
.top_news dl dd {
  width: 72%;
}
@media screen and (max-width: 768px) {
  .top_news dl dd {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .top_news dl dd {
    font-size: 14px;
  }
}

.info_time .inner_1200 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .info_time .inner_1200 {
    display: block;
    margin: auto;
  }
}
.info_time .inner_1200 .left {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .info_time .inner_1200 .left {
    width: 100%;
  }
}
.info_time .inner_1200 .left .logo {
  width: 100%;
}
.info_time .inner_1200 .left .add {
  font-size: clamp(13px, 10px + 0.8333333333cqw, 20px);
  margin: 1.5em 0;
}
.info_time .inner_1200 .right {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .info_time .inner_1200 .right {
    width: 100%;
    margin-top: 30px;
  }
}
.info_time .inner_1200 .right table {
  width: 100% !important;
}

.tel_wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .tel_wrapper {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}

.bl_tel {
  font-size: clamp(20px, 2.7vw, 35px);
  color: var(--sub-color2);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.bl_tel img {
  width: 1.4em;
  margin-right: 0.2em;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .bl_tel {
    font-size: 33px;
  }
}
.bl_tel a {
  position: relative;
  display: block;
  background-color: rgba(141, 194, 33, 0.8);
  line-height: 1.5;
  letter-spacing: 0;
  padding: 0px 0.5em;
  font-weight: var(--font-family-tsukushiB);
  font-weight: bold;
  color: #fff;
  border-radius: 10px;
}
.bl_tel a span {
  position: absolute;
  color: #63452d;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
}

.bl_web {
  background-color: var(--sub_color);
  color: #fff;
  font-size: clamp(19px, 1.8vw, 23px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.6em;
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: var(--font-family-tsukushiB);
  font-weight: bold;
}
@media screen and (max-width: 1023px) {
  .bl_web {
    font-size: clamp(19px, 1.8vw, 23px);
    margin: 10px auto;
    padding: 0.3em 0.6em;
  }
}
.bl_web img:first-child {
  width: 1.2em;
  display: block;
  margin-right: 0.4em;
}
.bl_web img:last-child {
  width: 0.9em;
  margin-left: 0.5em;
}

.bl_insta {
  width: 50px;
}
@media screen and (max-width: 768px) {
  .bl_insta {
    width: 50px;
    margin: 0;
  }
}

footer .tel_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}
@media screen and (max-width: 768px) {
  footer .tel_wrapper .bl_web {
    margin: 0;
  }
}

.rinen {
  display: flex;
  justify-content: space-between;
  background-image: url(../images/top/bg1a.png);
  background-size: cover;
  background-position: center bottom;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1023px) {
  .rinen {
    display: block;
    background-image: url(../images/top/bg1_sp.jpg);
  }
}
.rinen .decoBox1 {
  position: relative;
  flex: 1;
  container-type: inline-size;
  max-width: 500px;
}
@media screen and (max-width: 1023px) {
  .rinen .decoBox1 {
    aspect-ratio: 1/1.3;
  }
}
.rinen .decoBox1 .rinen1 {
  width: 60%;
  margin: auto;
  display: block;
  position: absolute;
  right: 10%;
}
@media screen and (max-width: 1023px) {
  .rinen .decoBox1 .rinen1 {
    aspect-ratio: 1/1;
    right: -5%;
  }
}
.rinen .decoBox1 .rinen1 img:last-child {
  position: absolute;
  width: 10%;
  left: -20%;
  top: 20cqw;
}
@media screen and (max-width: 1023px) {
  .rinen .decoBox1 .rinen1 img:last-child {
    display: none;
  }
}
.rinen .decoBox1 .rinen2 {
  width: 50%;
  display: block;
  position: absolute;
  left: 3%;
  top: 40cqw;
}
@media screen and (max-width: 1023px) {
  .rinen .decoBox1 .rinen2 {
    top: 50%;
    left: auto;
    right: 15%;
  }
  .rinen .decoBox1 .rinen2 img:last-child {
    position: absolute;
    left: 101%;
    width: 30%;
    top: 15%;
  }
}
.rinen .decoBox1 .rinen3 {
  width: 55%;
  margin: auto;
  display: block;
  position: absolute;
  top: 75cqw;
  right: 1%;
}
@media screen and (max-width: 1023px) {
  .rinen .decoBox1 .rinen3 {
    top: 25%;
    left: -10%;
    right: auto;
  }
}
.rinen .decoBox1 .rinen3 img {
  width: 100%;
  height: auto;
  z-index: 0;
  display: block;
}
.rinen .decoBox1 .rinen3 img:nth-child(2) {
  position: absolute;
  width: 15%;
  left: -20%;
  top: 50%;
}
@media screen and (max-width: 1023px) {
  .rinen .decoBox1 .rinen3 img:nth-child(2) {
    display: none;
  }
}
.rinen .decoBox1 .rinen3 img:last-child {
  position: absolute;
  width: 60%;
  right: 0%;
  bottom: 70%;
  z-index: -1;
}
.rinen .main {
  width: min(95%, 550px);
  margin: 0px auto;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .rinen .main {
    width: var(--sp_width);
    padding: 10px;
    box-sizing: border-box;
  }
}
.rinen .main h2 {
  background-image: url(../images/top/rinen_tit.png);
  background-size: 100% 100%;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-size: clamp(30px, 5vw, 60px);
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  padding: 0.5em 1.5em;
  line-height: 1;
  margin-bottom: 0.5em;
}
.rinen .main h2 strong {
  font-size: 1.5em;
  color: #fff57d;
}
.rinen .main h3 {
  font-size: clamp(20px, 2.7vw, 30px);
  color: #fff;
  border-bottom: 6px dotted #fffdb8;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding-bottom: 0.3em;
  margin-bottom: 0.8em;
  letter-spacing: 0.1em !important;
}
@media screen and (max-width: 768px) {
  .rinen .main h3 {
    font-size: min(7cqw, 30px);
    display: inline;
  }
}
.rinen .main p {
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  font-size: clamp(16px, 2vw, 20px);
}
.rinen .main p strong {
  background-color: #fff;
  color: #ef8200;
}
.rinen .decoBox2 {
  position: relative;
  flex: 1;
  container-type: inline-size;
  max-width: 500px;
}
@media screen and (max-width: 1023px) {
  .rinen .decoBox2 {
    aspect-ratio: 1/1.3;
    margin: auto;
  }
}
@media screen and (max-width: 1023px) {
  .rinen .decoBox2 {
    display: block;
  }
}
@media screen and (max-width: 1023px) and (max-width: 768px) {
  .rinen .decoBox2 {
    width: var(--sp_width);
    margin: auto;
  }
}
.rinen .decoBox2 .rinen1 {
  width: 70%;
  margin: auto;
  display: block;
  position: absolute;
  right: 0;
  left: 0;
}
@media screen and (max-width: 1023px) {
  .rinen .decoBox2 .rinen1 img:nth-child(2) {
    width: 25%;
    right: 101%;
    top: 20%;
    position: absolute;
  }
  .rinen .decoBox2 .rinen1 img:nth-child(3) {
    width: 13%;
    right: 0%;
    bottom: 0%;
    position: absolute;
  }
}
.rinen .decoBox2 .rinen2 {
  width: 50%;
  display: block;
  position: absolute;
  left: 0%;
  top: 45cqw;
}
@media screen and (max-width: 768px) {
  .rinen .decoBox2 .rinen2 {
    top: 42%;
  }
}
.rinen .decoBox2 .rinen3 {
  width: 55%;
  margin: auto;
  display: block;
  position: absolute;
  top: 75cqw;
  right: 3%;
}
@media screen and (max-width: 1023px) {
  .rinen .decoBox2 .rinen3 {
    top: 60%;
  }
}
.rinen .decoBox2 .rinen3 img:nth-child(2) {
  position: absolute;
  width: 25%;
  right: 1%;
  bottom: 95%;
}
@media screen and (max-width: 1023px) {
  .rinen .decoBox2 .rinen3 img:nth-child(2) {
    display: none;
  }
}
.rinen .decoBox2 .rinen3 img:nth-child(3) {
  position: absolute;
  width: 15%;
  left: -20%;
  top: 50%;
}

.bl_dot_tit {
  font-size: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  position: relative;
}
.bl_dot_tit span {
  display: block;
  width: 100%;
  border-bottom: 6px dotted #000;
  height: 1px;
}
@keyframes masking {
  from {
    -webkit-mask: linear-gradient(to right, #000 0 0) left/0% 100% no-repeat;
    mask: linear-gradient(to right, #000 0 0) left/0% 100% no-repeat;
  }
  to {
    -webkit-mask: linear-gradient(to right, #000 0 0) left/100% 100% no-repeat;
    mask: linear-gradient(to right, #000 0 0) left/100% 100% no-repeat;
  }
}
.masking {
  animation-name: masking;
}

.top_feature {
  background-image: url(../images/top/bg2.jpg);
  background-size: cover;
  background-position: center top;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top_feature {
    background-image: url(../images/top/bg2_sp.png);
    background-position: center top;
    padding-top: 0px !important;
  }
}
.top_feature .top_feature_wrap {
  position: relative;
  top: -100px;
  background-image: url(../images/top/bg3.png);
  background-size: 110% auto;
  background-position: center 25%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .top_feature .top_feature_wrap {
    background-position: 80% 60%;
    background-size: 170% auto;
    top: 0;
    padding-top: 40px;
  }
}
.top_feature h2 {
  font-size: clamp(60px, 11vw, 130px);
  line-height: 1;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .top_feature h2 {
    font-size: clamp(50px, 10vw, 100px);
    margin: auto auto 50px;
    margin-top: -100px !important;
  }
}
.top_feature h2:before {
  content: "";
  display: block;
  position: absolute;
  width: 30%;
  aspect-ratio: 1/1;
  background-image: url(../images/top/fea_deco1.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  bottom: 60%;
  left: -10%;
}
.top_feature h2 > .small1 {
  font-size: 0.28em;
  display: block;
}
.top_feature h2:after {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  aspect-ratio: 3/1.4;
  background-image: url(../images/top/fea_deco2.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  bottom: -40%;
  right: -25%;
}
@media screen and (max-width: 768px) {
  .top_feature h2:after {
    right: -20%;
  }
}
.top_feature h2 strong {
  font-size: 1.4em;
  color: #ef8200;
}
.top_feature h2 .small2 {
  font-size: 0.75em;
  color: var(--sub-color2);
}
.top_feature h2 > span {
  color: #ef8200;
}
.top_feature h2 span.f_green {
  color: var(--sub-color2) !important;
}
.top_feature .in_feature {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: clamp(100px, 57.1428571429px + 11.9047619048cqw, 200px);
}
.top_feature .in_feature .body {
  width: 46%;
}
.top_feature .in_feature .body h3 {
  width: 100%;
  font-size: clamp(20px, 14.8571428571px + 1.4285714286cqw, 32px);
  line-height: 1.7;
  margin-bottom: 0.8em;
}
.top_feature .in_feature .body h3 img {
  display: block;
  width: 30%;
  margin-bottom: 1em;
}
.top_feature .in_feature .body h3 .mask-box1 {
  border-bottom: 6px dotted #000;
  display: block;
  width: 100%;
  height: 0.5em;
}
.top_feature .in_feature .body p {
  font-weight: bold;
}
.top_feature .in_feature .ph {
  width: 70%;
  margin-left: -20%;
  position: relative;
}
.top_feature .in_feature .ph .ph1 {
  width: 100%;
}
.top_feature .in_feature .ph .ph2 {
  position: absolute;
  top: 90%;
  left: 18%;
  width: 30%;
  z-index: 1;
}
@media screen and (max-width: 1600px) {
  .top_feature .in_feature .ph .ph2 {
    left: auto;
    right: 25vw;
  }
}
.top_feature .in_feature .ph .ph3 {
  position: absolute;
  top: 75%;
  left: -5%;
  width: 27%;
  z-index: 0;
}
@media screen and (max-width: 1600px) {
  .top_feature .in_feature .ph .ph3 {
    left: auto;
    right: 35vw;
  }
}
.top_feature .in_feature.re {
  flex-direction: row-reverse;
}
.top_feature .in_feature.re .ph {
  margin-right: -20%;
  margin-left: auto;
}
.top_feature .in_feature.re .ph .ph2 {
  right: 18%;
  left: auto;
}
@media screen and (max-width: 1600px) {
  .top_feature .in_feature.re .ph .ph2 {
    left: 25vw;
  }
}
.top_feature .in_feature.re .ph .ph3 {
  position: absolute;
  top: 75%;
  right: -5%;
  left: auto;
}
@media screen and (max-width: 1600px) {
  .top_feature .in_feature.re .ph .ph3 {
    right: auto;
    left: 35vw;
  }
}
@media screen and (max-width: 768px) {
  .top_feature .in_feature {
    display: block;
    width: 100%;
    margin: auto;
  }
  .top_feature .in_feature .body {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 80px;
  }
  .top_feature .in_feature .body h3 {
    width: 100%;
    font-size: min(6.4vw, 24px);
    line-height: 1.7;
    margin-bottom: 0.8em;
  }
  .top_feature .in_feature .body h3 img {
    display: block;
    width: 30%;
    margin-bottom: 1em;
    margin: 0 0 0 auto !important;
  }
  .top_feature .in_feature .body h3 .mask-box1 {
    border-bottom: 6px dotted #000;
    display: block;
    width: 100%;
    height: 0.5em;
  }
  .top_feature .in_feature .ph {
    width: 100%;
    margin: auto !important;
  }
  .top_feature .in_feature .ph .ph1 {
    width: 140%;
    margin: auto -20%;
  }
  .top_feature .in_feature .ph .ph3 {
    right: auto !important;
    left: -5% !important;
    width: 35% !important;
  }
  .top_feature .in_feature .ph .ph2 {
    right: auto !important;
    left: 19% !important;
  }
  .top_feature .in_feature.re .body h3 img {
    margin: 0 auto 0 0 !important;
  }
  .top_feature .in_feature.re .ph .ph3 {
    left: auto !important;
    right: -5% !important;
    width: 35% !important;
  }
  .top_feature .in_feature.re .ph .ph2 {
    left: auto !important;
    right: 19% !important;
    width: 40% !important;
    top: 90% !important;
  }
}
.top_feature .yel {
  border-bottom: 6px dotted #fbc600 !important;
}
.top_feature .orange {
  border-bottom: 6px dotted #ef8200 !important;
}
.top_feature .pink {
  border-bottom: 6px dotted #e9545d !important;
}
.top_feature .green {
  border-bottom: 6px dotted var(--sub-color2) !important;
}
.top_feature .bg_in1,
.top_feature .bg_in2,
.top_feature .bg_in3,
.top_feature .bg_in4 {
  width: 100%;
  overflow: hidden;
}

.bg {
  background-image: url(../images/top/bg4.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding-top: 22vw;
  position: relative;
  z-index: 2;
  margin-top: -10vw;
}
@media screen and (max-width: 768px) {
  .bg {
    background-image: url(../images/top/bg4_sp.png);
  }
}

.top_greeting .bg5 {
  position: absolute;
  width: 30%;
  height: auto;
  top: 3%;
}
@media screen and (max-width: 768px) {
  .top_greeting .bg5 {
    width: 50%;
    left: -8%;
  }
}
.top_greeting .inner_1200 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .top_greeting .inner_1200 {
    display: block;
  }
}
.top_greeting .inner_1200 .body {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .top_greeting .inner_1200 .body {
    width: var(--sp_width);
    margin: auto;
  }
}
.top_greeting .inner_1200 .body h2 {
  font-size: clamp(26px, 14.8571428571px + 3.0952380952cqw, 52px);
}
.top_greeting .inner_1200 .body h3 {
  color: #ef8200;
  font-size: clamp(20px, 14.8571428571px + 1.4285714286cqw, 32px);
  margin: 1em 0px;
}
.top_greeting .inner_1200 .body p {
  padding-bottom: 1em;
}
.top_greeting .inner_1200 .ph {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top_greeting .inner_1200 .ph {
    width: var(--sp_width);
    margin: auto auto 30px;
  }
}
.top_greeting .inner_1200 .ph img {
  position: relative;
  z-index: 0;
}
.top_greeting .inner_1200 .ph .sign {
  background-color: rgba(141, 194, 33, 0.9);
  color: #fff;
  padding: 0.5em 1em 1.5em;
  position: absolute;
  z-index: 1;
  bottom: 12%;
  left: -5%;
  font-size: clamp(20px, 16.5714285714px + 0.9523809524cqw, 28px);
  line-height: 1;
}
.top_greeting .inner_1200 .ph .sign ruby {
  ruby-position: under; /* 下に表示 */
  position: relative;
}
.top_greeting .inner_1200 .ph .sign ruby rt {
  position: relative;
  bottom: -0.5em;
}
.top_greeting .inner_1200 .note {
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: 10px;
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .top_greeting .inner_1200 .note {
    display: block;
    margin-top: 70px;
  }
}
.top_greeting .inner_1200 .note .in_note {
  border-radius: 15px;
  border: 5px dotted var(--sub-color2);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .top_greeting .inner_1200 .note .in_note {
    display: block;
    padding-bottom: 0;
  }
}
.top_greeting .inner_1200 .note .in_note .body {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .top_greeting .inner_1200 .note .in_note .body {
    width: 100%;
  }
}
.top_greeting .inner_1200 .note .in_note .body h4 {
  margin-top: -11%;
  background-color: var(--sub-color2);
  color: #fff;
  padding: 0.5em 0.5em 0.5em 15%;
  line-height: 1;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(20px, 16.5714285714px + 0.9523809524cqw, 28px);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .top_greeting .inner_1200 .note .in_note .body h4 {
    margin-left: -15%;
    padding-left: 30%;
    margin-top: -8vw;
  }
}
@media screen and (max-width: 500px) {
  .top_greeting .inner_1200 .note .in_note .body h4 {
    margin-left: -20%;
  }
}
.top_greeting .inner_1200 .note .in_note .body h4 img {
  width: 25%;
  position: absolute;
  left: -10px;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .top_greeting .inner_1200 .note .in_note .body h4 img {
    width: 35%;
  }
}
.top_greeting .inner_1200 .note .in_note .body p {
  margin-top: 1em;
}
.top_greeting .inner_1200 .note .in_note .ph {
  width: 55%;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .top_greeting .inner_1200 .note .in_note .ph {
    width: 130%;
    margin: auto -15% -30px;
  }
}
.top_greeting .inner_1200 .note .in_note .ph img {
  position: absolute;
  top: 0;
  bottom: -100px;
  left: 0;
  right: -130px;
  margin: auto;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .top_greeting .inner_1200 .note .in_note .ph img {
    width: 110%;
    bottom: -190px;
  }
}
@media screen and (max-width: 768px) {
  .top_greeting .inner_1200 .note .in_note .ph img {
    position: static;
  }
}
.top_greeting .inner_1200 .note .in_note .ph .pop {
  width: 20%;
  top: -150px;
  left: 30px;
  right: auto;
  position: absolute;
  animation: heartbeat 1s infinite;
}
@media screen and (max-width: 1023px) {
  .top_greeting .inner_1200 .note .in_note .ph .pop {
    top: 0px;
    width: 30%;
    position: absolute;
    margin: 0;
    left: -15px;
  }
}
@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.top_service h2 {
  width: 340px;
  margin: auto;
}
@media screen and (max-width: 500px) {
  .top_service h2 {
    width: 250px;
  }
}
.top_service ul.ser1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .top_service ul.ser1 {
    width: var(--sp_width);
    margin: auto;
  }
}
.top_service ul.ser1 li {
  width: 48%;
  container-type: inline-size;
  margin-bottom: 2%;
}
@media screen and (max-width: 768px) {
  .top_service ul.ser1 li {
    width: 100%;
    margin-bottom: 5%;
  }
}
.top_service ul.ser1 li a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  background-image: url(../images/top/ser2_1.png);
  background-size: 27%;
  background-repeat: no-repeat;
  background-position: 35% 160%;
}
.top_service ul.ser1 li a span {
  text-align: left;
  width: 35%;
  font-size: 4.5cqw;
  padding-left: 1.2em;
}
.top_service ul.ser1 li a span img {
  display: block;
  margin: 0;
  width: 100%;
}
.top_service ul.ser1 li a img {
  width: 60%;
}
.top_service ul.ser1 li:nth-child(2) a {
  background-image: url(../images/top/ser2_2.png);
}
.top_service ul.ser1 li:nth-child(3) a {
  background-image: url(../images/top/ser2_3.png);
}
.top_service ul.ser1 li:nth-child(4) a {
  background-image: url(../images/top/ser2_4.png);
}
.top_service ul.ser1 li:nth-child(5) a {
  background-image: url(../images/top/ser2_5.png);
}
.top_service ul.ser1 li:nth-child(6) a {
  background-image: url(../images/top/ser2_6.png);
}
.top_service .ser2 {
  display: flex;
  padding-top: 40px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .top_service .ser2 {
    width: min(100%, 500px);
    margin: auto;
    flex-wrap: wrap;
  }
}
.top_service .ser2 li {
  width: 20%;
}
.top_service .ser2 li:nth-child(even) {
  margin-top: 3%;
}
@media screen and (max-width: 768px) {
  .top_service .ser2 li {
    width: 48%;
    margin: auto;
  }
}

.el_btn {
  background-color: #a07850;
  color: #fff;
  font-size: clamp(18px, 15.4285714286px + 0.7142857143cqw, 24px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border-radius: 5px;
  padding: 0.1em 1em;
  opacity: 1;
  transition: all 0.3s linear;
  transform: translate(0px, 0px);
}
.el_btn img {
  width: 1em;
}
.el_btn:hover {
  opacity: 0.8;
  transform: translate(0px, 5px);
}

.el_btn2 {
  background-color: #8dc221;
}

.kutsurogi {
  background-image: url(../images/top/kutsu_bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.kutsurogi .h2_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .kutsurogi .h2_wrap {
    display: block;
  }
}
.kutsurogi .h2_wrap h2 small {
  font-size: clamp(20px, 12.2857142857px + 2.1428571429cqw, 38px);
  display: block;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .kutsurogi .h2_wrap h2 small {
    font-size: clamp(16px, 6.5714285714px + 2.619047619cqw, 38px);
  }
}
.kutsurogi .h2_wrap h2 span {
  font-size: clamp(20px, 3.7142857143px + 4.5238095238cqw, 58px);
  display: block;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .kutsurogi .h2_wrap h2 span {
    font-size: clamp(26px, 12.2857142857px + 3.8095238095cqw, 58px);
  }
}
@media screen and (max-width: 768px) {
  .kutsurogi .h2_wrap h2 {
    margin-bottom: 30px;
  }
}
.kutsurogi .h2_wrap .el_btn_wrap {
  display: flex;
  gap: 20px;
  text-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .kutsurogi .h2_wrap .el_btn_wrap {
    justify-content: center;
  }
  .kutsurogi .h2_wrap .el_btn_wrap .el_btn {
    margin: 0;
    width: 48%;
    text-align: center;
    justify-content: center;
    text-wrap: nowrap;
  }
}

.kutsurogi {
  background-color: #fff;
  background-image: url(../images/top/kutsu_bg.png);
  background-size: cover;
  background-position: center top;
}
@media screen and (max-width: 768px) {
  .kutsurogi {
    background-image: url(../images/top/kutsu_bg_sp.png);
    background-size: 150% auto;
  }
}
.kutsurogi ul {
  display: flex;
  gap: 30px;
}
.kutsurogi ul li:nth-child(even) {
  margin-top: 80px;
}
.kutsurogi .nap_wrap {
  display: flex;
  justify-content: space-between;
  width: min(95%, 1200px);
  margin: auto;
}
@media screen and (max-width: 768px) {
  .kutsurogi .nap_wrap {
    display: block;
    width: min(95%, 500px);
  }
}
.kutsurogi .nap_wrap dl {
  width: 48%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .kutsurogi .nap_wrap dl {
    width: 100%;
    margin-bottom: 30px;
  }
}
.kutsurogi .nap_wrap dl dt {
  border-bottom: dashed 1px #8dc221;
  width: 30%;
  padding: 0.8em 0.5em 0.6em;
}
.kutsurogi .nap_wrap dl dd {
  border-bottom: dashed 1px #8dc221;
  width: 70%;
  padding: 0.8em 0.5em 0.6em;
}
.kutsurogi .nap_wrap .cal {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .kutsurogi .nap_wrap .cal {
    width: 100%;
  }
  .kutsurogi .nap_wrap .cal iframe {
    height: 300px;
  }
}

.card {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .card {
    display: block;
  }
}
.card dl {
  width: 31%;
  background-color: #f2ece5;
  border-radius: 18px;
  padding: 1.3em;
}
@media screen and (max-width: 768px) {
  .card dl {
    width: 100%;
    margin-bottom: 20px;
  }
}
.card dl dt {
  color: #8dc221;
  border-top: 1px solid #8dc221;
  border-bottom: 1px solid #8dc221;
  text-align: center;
  background-color: #fff;
  margin-bottom: 0.5em;
}

footer {
  text-align: center;
  margin-top: 200px;
  background-image: url(../images/common/footer_bg.png);
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
}
footer .f_logo {
  background-color: #edf8f8;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  aspect-ratio: 1/1;
  border-radius: 500px;
  width: max(19.2708333333%, 300px);
  transform: translateY(-30%);
  padding: 40px;
  margin-bottom: -10%;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  footer .f_logo {
    width: max(19.2708333333%, 250px);
    padding: 20px;
    margin-bottom: -100px;
  }
}
footer address {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 500px) {
  footer address {
    font-size: 13px;
  }
}
footer .tel_wrapper {
  margin-bottom: 50px;
  justify-content: center;
  gap: 10px;
}
footer .inner_1200 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  footer .inner_1200 {
    display: block;
  }
}
footer .inner_1200 .f_left {
  width: 47%;
}
@media screen and (max-width: 768px) {
  footer .inner_1200 .f_left {
    width: 100%;
  }
}
footer .inner_1200 .f_left .timeT {
  width: 100%;
}
footer .inner_1200 .f_left .timeT table {
  width: 100%;
}
@media screen and (max-width: 768px) {
  footer .inner_1200 .f_left .timeT .c-table__bottom {
    text-align: left;
  }
}
footer .inner_1200 .f_left .f_navi {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  padding: 1.5em;
  margin-top: 30px;
  justify-content: space-between;
}
@media screen and (max-width: 500px) {
  footer .inner_1200 .f_left .f_navi {
    display: block;
    padding: 1.5em 2em;
    margin-bottom: 30px;
  }
}
footer .inner_1200 .f_left .f_navi > ul {
  width: 50%;
}
footer .inner_1200 .f_left .f_navi > ul > li {
  width: 100%;
}
footer .inner_1200 .f_left .f_navi > ul > li > a {
  display: block;
  text-align: left;
  width: 100%;
}
footer .inner_1200 .f_left .f_navi > ul > li > a:before {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  background-image: url(../images/common/ic_arr_footer.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: left;
  width: 0.5em;
  margin-right: 0.8em;
}
footer .inner_1200 .f_left .f_navi > ul > li ul li {
  width: 100%;
  text-align: left;
}
footer .inner_1200 .f_left .f_navi > ul > li ul li a {
  display: block;
  width: 100%;
  text-align: left;
  margin-left: 1em;
}
footer .inner_1200 .f_left .f_navi > ul > li ul li a:before {
  content: "-";
  display: inline-block;
  aspect-ratio: 1/1;
  text-align: left;
  width: 0.5em;
  color: #3FA8E3;
  margin-right: 0.5em;
}
footer .inner_1200 .f_right {
  width: 48%;
}
@media screen and (max-width: 768px) {
  footer .inner_1200 .f_right {
    width: 100%;
  }
}
footer .inner_1200 .f_right iframe {
  width: 100%;
}
footer .copy {
  background-color: #00a8e3;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  padding: 2em 1em;
}
@media screen and (max-width: 768px) {
  footer .copy {
    padding-bottom: 5em;
  }
}

.l-pageTop.is-active {
  z-index: 10;
}

@media screen and (max-width: 1023px) {
  .h_insta {
    display: none;
  }
}

nav .nav_last {
  display: none;
}

@media screen and (max-width: 1023px) {
  nav .nav_last {
    display: block;
    padding-top: 50px !important;
  }
  nav .nav_last *:after {
    display: none !important;
  }
  nav .nav_last address {
    color: #4d4d4d;
    text-align: center;
    font-size: 14px;
    padding: 2em 0;
  }
  nav .nav_last .bl_tel img {
    width: 1.4em !important;
    margin-right: 0.2em !important;
    display: inline-block !important;
  }
}
@media screen and (max-width: 1023px) and (max-width: 768px) {
  nav .nav_last .bl_tel {
    font-size: 33px !important;
  }
}
@media screen and (max-width: 1023px) {
  nav .nav_last .bl_tel a {
    font-size: clamp(30px, 2.7vw, 35px) !important;
    color: #fff !important;
    padding: 0.1em 0.6em !important;
  }
  nav .nav_last .bl_tel a span {
    position: absolute !important;
    color: #63452d !important;
  }
  nav .nav_last .bl_web {
    color: #fff !important;
    font-size: clamp(28px, 2.7vw, 35px) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0.5em 1em !important;
    border-radius: 10px !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  nav .nav_last .bl_web img:first-child {
    width: 1.2em !important;
    display: block !important;
    margin-right: 0.4em !important;
  }
  nav .nav_last .bl_web img:last-child {
    width: 0.9em !important;
    margin-left: 0.5em !important;
  }
}
footer .bl_web {
  padding: 0.3em 0.6em !important;
}

.h1 {
  font-size: 10px;
  text-align: right;
  position: absolute;
  z-index: 2;
  right: 4px;
  top: 2px;
}
@media screen and (max-width: 1023px) {
  .h1 {
    opacity: 0;
  }
}

.flower_title {
  line-height: 1.4;
  font-weight: bold;
}
.flower_title span::before {
  background-image: url(../images/flower_left.png) !important;
}
.flower_title span::after {
  background-image: url(../images/flower_right.png) !important;
}

.ser_ul {
  margin-top: 1em;
}
.ser_ul li {
  text-indent: -1em;
  padding-left: 1em;
}

.s_tit {
  margin-top: 1em;
}

.pattern__table.col2 td {
  width: 40%;
}
.pattern__table.col2 th {
  font-size: clamp(14px, 1.8vw, 22px) !important;
}

.s_tit2 {
  font-size: clamp(20px, 2.5vw, 30px);
  border-bottom: 6px dotted #e9545d !important;
  margin: 2em auto 0.5em;
  width: -moz-fit-content;
  width: fit-content;
}

.col_2box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.col_2box li {
  width: 48%;
  background-image: url(../images/top/deco2.png), url(../images/top/deco1.png);
  background-size: 20% auto, 35% auto;
  background-position: -3% 106%, 108% -30%;
  background-repeat: no-repeat;
  border: 3px solid #ffe267;
  border-radius: 20px;
  padding: 2%;
  margin-top: 30px;
}
.col_2box li .s_tit2 {
  margin-top: 0 !important;
}
@media screen and (max-width: 768px) {
  .col_2box li {
    width: 100%;
    padding: 5%;
  }
}
.col_2box li img {
  width: 80%;
  display: block;
  margin: auto auto 20px;
}
.col_2box li:nth-child(even) {
  background-image: url(../images/top/deco4.png), url(../images/top/deco3.png) !important;
}

.pattern__list__check {
  display: flex !important;
  flex-wrap: wrap;
  width: 100%;
}
.pattern__list__check li {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .pattern__list__check li {
    width: 100%;
  }
}

.pattern02 .pattern__list__check {
  display: block;
}
.pattern02 .pattern__list__check li {
  width: 100% !important;
}

.flower_title span {
  font-family: var(--font-family-tsukushiB) !important;
  letter-spacing: 2px !important;
}

.history th {
  width: 140px;
  font-weight: bold;
  font-size: 15px;
}
@media screen and (max-width: 500px) {
  .history th {
    width: 110px;
    font-size: 14px;
  }
}
.history td {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .history td {
    font-size: 14px;
  }
}

.rt {
  width: 60%;
  display: block;
  margin: auto 0 0 auto;
  font-size: 0.4em;
  letter-spacing: 0.51em;
  margin-bottom: -0.5em;
  margin-right: -0.7em;
}

.nap_tel {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.nap_tel .rt {
  width: 100%;
  display: block;
  position: absolute;
  right: 0;
  bottom: 100%;
  margin-right: 0;
  text-align: right;
  font-size: 0.55em;
}

footer .rt {
  width: 65%;
  letter-spacing: 0.6em;
}

.u_line {
  text-decoration: underline;
}

/*準備外す時はここ以下削除*/
.junbi {
  letter-spacing: 0 !important;
  font-size: 0.7em;
}

.bl_web {
  position: relative;
  padding-bottom: 0.5em !important;
}
.bl_web .junbi {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  font-size: 0.6em;
}

.l-side__text {
  position: relative;
  padding-bottom: 0.5em;
}
.l-side__text .junbi {
  position: absolute;
  bottom: 0;
  left: -30%;
  top: 0;
  margin: auto;
  text-align: center;
  font-size: 0.6em;
}
@media screen and (max-width: 1280px) {
  .l-side__text .junbi {
    position: absolute;
    bottom: -10%;
    right: 0;
    left: 0;
    top: auto;
    margin: auto;
    text-align: center;
    font-size: 0.6em;
  }
}

footer .bl_web {
  padding-bottom: 0.7em !important;
}

nav .nav_last .bl_web {
  padding-bottom: 0.8em !important;
}
nav .nav_last .bl_web .junbi {
  bottom: 0.2em !important;
}/*# sourceMappingURL=custom.css.map */


/* スマートフォン */
@media only screen and (max-width: 750px) {
nav .nav_last {
        display: block;
        padding-top: 10px !important;
    }

nav .nav_last address {
        padding: 1.5em 0 !important;
    }
.header nav .nav-container .nav{
        padding-top: 60px !important;
    }

}

.top_bnr {
  text-align: center;
  margin: 30px auto 100px;
}
@media only screen and (max-width: 750px) {
  .top_bnr {
    text-align: center;
    margin: 30px auto 50px;
  }
}

.top_bnr img {
  max-width: 650px;
  width: 95%;
}
