/* =========================
  ルート
========================= */
:root {
  --font-kaku: "Zen Kaku Gothic New";
  --font-serif: "Noto Serif JP";
  --color-black: #2b2b2b;
  --color-blue: #6fbdde;
  --color-deep-blue: #289fc9;
  --color-yellow: #fffcd2;
  --color-orange: #ed7e11;
  --color-light-gray: #f5f5f5;
  --color-gray: #b9b9b9;
  --color-header-bg: #edf8fc;
  --color-event-bg: #f2f6fb;
}

/*  スクロールバー非表示  */
/*
* {
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: 0.3s;
}
*::-webkit-scrollbar {
  display: none;
}
*/

/* =========================
  フォント指定
========================= */
html {
  font-size: 10px;
}
body {
  color: var(--color-black);
  font-family:
    var(--font-kaku), "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.8rem;
  overflow-x: hidden;
  width: 100vw;
}

/* =========================

  共通パーツ

========================= */
/*Slickの設定*/
/* スライドのトラックの動きを安定させる */
.js-top__slider .slick-track {
  display: flex !important;
  align-items: center;
}
/* 巻き戻り現象（リフロー）を防ぐためのハードウェア加速 */
.js-top__slider .slick-slide {
  /* transform: translateZ(0);*/
}
.slick-slider div {
  transition: none;
}

a {
  color: inherit;
  text-decoration: none;
}

p a {
  color: var(--color-blue);
  text-decoration: underline;
}
p a:hover {
  text-decoration: none;
}
p.m-right {
  text-align: right;
}

main.lower {
  background-image: url(img/img_head.png);
  background-position: center top;
  background-size: contain;
  padding-top: 140px;
}
@media screen and (max-width: 1023px) {
  main.lower {
    background-image: url(img/img_head_sp.jpg);
    background-position: right top;
    padding-top: 100px;
  }
}

.-inner {
  margin: 0 auto;
  max-width: 1105px;
  width: calc(100vw - 20px);
}

.e-head {
  color: var(--color-blue);
  font-size: 5rem;
  font-weight: 600;
}
.index .e-head {
  color: var(--color-black);
}
.lower .e-head {
  color: var(--color-deep-blue);
  margin-bottom: 75px;
  margin-top: 80px;
}
.e-head span {
  align-items: center;
  color: var(--color-blue);
  display: flex;
  font-size: 1.5rem;
  font-weight: 500;
  gap: 5px;
}
.e-head span img {
  display: block;
  height: 23px;
}
.lower .e-head.m-sub {
  color: var(--color-blue);
  font-size: 3rem;
  margin-bottom: 20px;
  margin-top: 0;
}
.lower .e-copy {
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 1023px) {
  .index .e-head {
    font-size: 3rem;
    text-align: center;
  }
  .index .e-head span {
    justify-content: center;
  }
  .lower .e-head {
    font-size: 3.5rem;
    margin-bottom: 50px;
    margin-top: 50px;
  }
  .lower .e-head.m-sub {
    font-size: 2rem;
  }
  .lower .e-copy {
    font-size: 1.5rem;
  }
}

.e-arrow {
  align-items: center;
  background-color: var(--color-blue);
  border-radius: 20px;
  display: flex;
  height: 40px;
  justify-content: center;
  width: 100px;
}
.e-arrow i,
.e-arrow i::before,
.e-arrow i::after {
  background-color: #fff;
  border-radius: 1.5px;
  display: block;
  height: 1.5px;
  position: relative;
  transition: all 0.4s;
  width: 10.6px;
}
.e-arrow i::before,
.e-arrow i::after {
  content: "";
  position: absolute;
  width: 8px;
}
.e-arrow i::before {
  right: -4.5px;
  top: -2.7px;
  transform: rotate(45deg);
}
.e-arrow i::after {
  right: -4.5px;
  top: 2.7px;
  transform: rotate(-45deg);
}
a:hover .e-arrow i,
.e-arrow:hover i {
  transform: translateX(5px);
}

/* dashed borderつきリスト */
.b-lineed-list {
  list-style: none;
  margin-bottom: 230px;
  margin-top: 60px;
}
.b-lineed-list > li {
  border-top: 1px dashed var(--color-gray);
  padding: 30px 0;
}
.b-lineed-list > li h3 {
  font-size: 1.8rem;
  margin-bottom: 1em;
}
.b-lineed-list > li p {
  font-size: 1.5rem;
  font-weight: 400;
}
/* 番号つき */
.b-lineed-list.m-numbered {
  list-style: none;
  counter-reset: num;
  padding-left: 0;
}
.b-lineed-list.m-numbered > li {
  counter-increment: num;
  padding-left: 1.2em;
  position: relative;
}
.b-lineed-list.m-numbered > li::before {
  content: counter(num) ". ";
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 600;
  left: 0;
  position: absolute;
  width: 1em;
}

/* メニコンDNAバナー */
.e-menicon-dna__banner {
  aspect-ratio: 58 / 19;
  border-radius: 30px;
  display: flex;
  margin: 80px auto;
  max-width: 580px;
  opacity: 1;
  overflow: hidden;
  transition: 0.4s;
}
.e-menicon-dna__banner:hover {
  opacity: 0.6;
}
.e-menicon-dna__banner .-info {
  background-color: var(--color-orange);
  color: #fff;
  max-width: 324px;
  padding: 15px 20px 30px;
  width: 100%;
}
.e-menicon-dna__banner .-info span {
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 0 10px #0000004d;
  color: var(--color-orange);
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 3px 1em 5px;
  text-align: center;
}
.e-menicon-dna__banner .-info h3 {
  font-size: 3.5rem;
  font-weight: 500;
}
.e-menicon-dna__banner .-info p {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -1px;
}
.e-menicon-dna__banner .-visual {
  object-fit: cover;
  position: relative;
}
.e-menicon-dna__banner .-visual img {
  width: 100%;
}
.e-menicon-dna__banner .-visual .e-arrow {
  background-color: var(--color-orange);
  bottom: 10px;
  position: absolute;
  right: 10px;
}

@media screen and (max-width: 1023px) {
  .e-menicon-dna__banner {
    aspect-ratio: unset;
    flex-direction: column;
    max-width: 350px;
    width: calc(100% - 40px);
  }
  .e-menicon-dna__banner .-info {
    max-width: unset;
  }
}

/* =========================

  メニュー関連

========================= */
.e-menu__button {
  background-color: var(--color-blue);
  bottom: 5px;
  border-radius: 10px;
  color: #fff;
  display: none;
  padding: 30px 0.75em 7px;
  position: fixed;
  right: 5px;
  z-index: 99;
}
.e-menu__button i {
  background-color: #fff;
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  top: calc(50% - 5px);
  transform: translate(-50%, -50%);
  width: 2em;
}
.e-menu__button i:nth-child(2) {
  top: calc(50% - 15px);
}
.e-menu__button.m-open i,
.e-menu__button.m-open i:nth-child(2) {
  top: calc(50% - 10px);
}
.e-menu__button.m-open i {
  transform: translate(-50%, -50%) rotate(-30deg);
}
.e-menu__button.m-open i:nth-child(2) {
  transform: translate(-50%, -50%) rotate(30deg);
}

.b-menu .e-head {
  display: none;
}
.b-menu__list {
  display: flex;
  font-size: 1.5rem;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.b-menu__list li {
  align-items: center;
  display: flex;
  gap: 5px;
  white-space: nowrap;
}
.b-menu__list li.e-faq {
  display: none;
}
.b-menu__list li img {
  max-height: 24px;
  max-width: 20px;
}
.b-menu__list a {
  align-items: center;
  color: var(--color-black);
  display: inline-flex;
  gap: 6px;
  text-decoration: none;
  text-underline-offset: 3px;
}
.b-menu__list a:hover {
  text-decoration: underline;
}
.b-menu__list .e-arrow {
  display: none;
}
.b-footer__links {
  display: none;
}

@media screen and (max-width: 1023px) {
  .e-menu__button {
    display: block;
  }
  .b-menu {
    background-color: #fff;
    flex-direction: column;
    height: 100vh;
    position: fixed;
    width: 100vw;
  }
  .b-menu__list {
    flex-direction: column;
    gap: 1em;
  }
  .b-menu__list li {
    justify-content: center;
  }
  .b-menu__list li img {
    display: none;
  }
}

/* ヘッダーメニュー */
header .b-menu {
  align-items: center;
  display: flex;
  transition: 0.4s;
}
header .b-menu__list {
  background-color: #fff;
  box-shadow: 0px 0px 10px #6fbdde66;
  border-radius: 100px;
  gap: 46px;
  max-height: 80px;
  padding: 1.5em 4em 1.5em 3em;
}
@media screen and (max-width: 1023px) {
  header .b-menu {
    transform: translateX(100%);
  }
  header .b-menu.m-open {
    transform: translateX(0);
  }
  header .b-menu .e-head {
    color: var(--color-black);
    display: block;
    font-size: 2.5rem;
    margin: 50px auto 45px;
    text-align: center;
  }
  header .b-menu__list {
    border-top: 1px solid var(--color-black);
    border-radius: 0;
    box-shadow: unset;
    gap: 0;
    margin: 0 auto;
    max-height: unset;
    max-width: 311px;
    padding: 0;
    width: 100%;
  }
  header .b-menu__list li {
    border-bottom: 1px solid var(--color-black);
    font-size: 1.8rem;
  }
  header .b-menu__list li.e-faq {
    display: flex;
  }
  header .b-menu__list a {
    justify-content: space-between;
    padding: 15px 10px;
    width: 100%;
  }
  header .b-menu__list .e-arrow i {
    width: 8px;
  }
  header .b-menu__list .e-arrow i::before,
  header .b-menu__list .e-arrow i::after {
    width: 6px;
  }
  header .b-menu__list .e-arrow i::before {
    right: -1.5px;
    top: -2px;
  }
  header .b-menu__list .e-arrow i::after {
    right: -1.5px;
    top: 2px;
  }
  header .b-menu__list .e-arrow {
    display: flex;
    height: 25px;
    width: 25px;
  }
  header .b-menu .b-footer__links {
    display: block;
    margin-top: 40px;
  }
}

/* フッターメニュー */
footer .b-footer__info-bottom .b-footer__links {
  display: block;
}
footer .b-footer__menu .e-head {
  display: none;
}
footer .b-menu__list li img {
  display: none;
}
footer .b-menu__list a {
  font-size: 1.8rem;
  font-weight: 500;
}
footer .b-menu__list.m-sub {
  margin-top: 1em;
}
footer .b-menu__list.m-sub a {
  font-size: 1.5rem;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  footer .b-menu__list.m-sub {
    margin: 2em 0;
  }
}

/* =========================

  ニュース関連

========================= */

.index .b-news {
  padding: 90px 0 120px;
}

.b-news ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  margin: 30px 0 80px;
  padding: 0;
}
.b-news ul a {
  align-items: center;
  background-color: #fff;
  box-shadow: 0px 0px 10px #0000004d;
  border-radius: 20px;
  display: flex;
  gap: 40px;
  padding: 20px 30px;
}
.b-news .e-info {
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  gap: 10px;
  min-width: 135px;
}
.b-news .e-category {
  background-color: var(--color-blue);
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  font-weight: 500;
  padding: 2px 1em 3px;
  text-align: center;
}
.b-news .e-text {
  font-weight: 500;
  line-height: 1.76;
}
.b-news ul a:hover .e-text {
  text-decoration: underline;
  text-underline-offset: 5px;
}
@media screen and (max-width: 1023px) {
  .b-news ul {
    margin-bottom: 60px;
  }
  .b-news ul a {
    align-items: flex-start;
    flex-direction: column;
    font-size: 1.5rem;
    gap: 15px;
    padding: 20px;
  }
  .b-news .e-info {
    flex-direction: row;
  }
}

.b-news__content {
  background-color: #fff;
  box-shadow: 0px 0px 10px #0000004d;
  border-radius: 20px;
  padding: 45px 75px;
}
.b-news__content .e-news__info {
  border-bottom: 1px dashed var(--color-gray);
  margin-bottom: 50px;
  padding-bottom: 30px;
}
.b-news__content .e-news__info .e-info {
  flex-direction: row;
}
.b-news__content .e-news__info .e-text {
  -webkit-line-clamp: unset;
  margin-top: 1em;
  overflow: visible;
}

@media screen and (max-width: 1023px) {
  .b-news__content {
    padding: 25px 20px;
  }
  .b-news__content .e-news__info .e-text {
    font-size: 1.5rem;
  }
}

.news.single .e-link {
  align-items: center;
  background-color: var(--color-blue);
  border-radius: 30px;
  clear: both;
  color: #fff;
  display: flex;
  font-size: 1.5rem;
  justify-content: center;
  margin: 70px auto 230px;
  max-width: 350px;
  padding: 0.5em 0 0.6em;
  position: relative;
}
.news.single .e-link .e-arrow {
  background-color: unset;
  min-width: 40px;
  position: absolute;
  right: 15px;
  width: 40px;
}

/* =========================

  一覧はこちら

========================= */
.e-more {
  display: block;
  text-align: right;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.e-more:hover {
  text-decoration: none;
}

@media screen and (max-width: 1023px) {
  .e-more {
    text-align: center;
  }
}

/* =========================

  ページネーション

========================= */
.b-pagenation {
  margin-top: 50px;
  padding-bottom: 220px;
}
.b-pagenation > div {
  align-items: center;
  display: flex;
  gap: 25px;
  justify-content: center;
}
.b-pagenation .e-prev,
.b-pagenation .e-next {
  display: block;
  height: 1px;
  margin-bottom: 10px;
  padding-top: 20px;
  position: relative;
  transition: 0.4s;
  width: 30px;
}
.b-pagenation .e-prev:hover {
  transform: translateX(-10px);
}
.b-pagenation .e-next:hover {
  transform: translateX(10px);
}
.b-pagenation .e-prev::before,
.b-pagenation .e-next::before,
.b-pagenation .e-prev::after,
.b-pagenation .e-next::after {
  background-color: #767676;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
}
.b-pagenation .e-prev::before,
.b-pagenation .e-next::before {
  bottom: 5px;
  transform: rotate(-40deg);
  width: 15px;
}
.b-pagenation .e-next::before {
  transform: rotate(40deg);
  right: 0;
}
.b-pagenation .e-prev::after,
.b-pagenation .e-next::after {
  bottom: 0;
  width: 30px;
}
.b-pagenation .e-num {
  padding: 0 5px;
  transition: 0.4s;
}
.b-pagenation .e-num.m-current,
.b-pagenation .e-num:hover {
  color: var(--color-orange);
}

/* =========================

  ヘッダー

========================= */
header {
  background: linear-gradient(
    #ffffffff 0%,
    #ffffffaa 45%,
    #ffffff00 50%,
    #ffffff00 51%,
    #ffffff00 100%
  );
  background-size: 100% 200%;
  background-position: bottom;
  padding-bottom: 30px;
  position: fixed;
  transition: 0.4s;
  width: 100vw;
  z-index: 99;
}
header.m-active {
  background-position: top;
}

.b-header__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.b-page-title {
  color: var(--color-black);
  padding-left: 20px;
  padding-top: 14px;
  text-decoration: none;
  transition: 0.4s;
}

.e-page-title__logos {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.e-page-title__logos .-annex-logo {
  max-width: 94px;
}
.e-page-title__logos .-menio-logo {
  max-width: 158px;
}

header .e-page-title__logos {
  padding: 10px 20px;
}

.e-page-title__text {
  border-bottom: 1px solid var(--color-black);
  border-top: 1px solid var(--color-black);
  display: none;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.76;
  margin-top: 5px;
  text-align: center;
}
.e-page-title__text.m-lower,
.e-page-title__text.m-footer {
  display: block;
}

.b-page-title.m-dark .e-page-title__logos {
  background-color: #fff;
}
.b-page-title.m-dark .e-page-title__text {
  border-color: #fff;
  color: #fff;
}

@media screen and (max-width: 1023px) {
  header {
    background: unset;
  }
  header .b-page-title {
    max-width: 190px;
    opacity: 1;
    padding-left: 5px;
    padding-top: 5px;
    transition: 0.4s;
  }
  header.m-active .b-page-title {
    opacity: 0;
  }
  header .e-page-title__logos {
    padding: 5px;
  }
  header .e-page-title__logos .-annex-logo {
    max-width: 63px;
  }
  header .e-page-title__logos .-menio-logo {
    max-width: 108px;
  }
  .e-page-title__text {
    font-size: 1.25rem;
  }
}

main.m-index + header .e-page-title__text.m-index {
  display: block;
}
main.m-index + header .e-page-title__text.m-lower {
  display: none;
}

.b-opening-info {
  align-items: center;
  background-color: var(--color-blue);
  border-radius: 0 0 0 26px;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-weight: 600;
  gap: 10px;
  justify-content: center;
  margin-bottom: 1.5em;
  padding: 1.25em 2em 1em;
}
.b-opening-info.m-close {
  background-color: var(--color-gray);
  padding: 1.25em 2em 1.5em;
}
.b-opening-info * {
  line-height: 1;
}
.b-opening-info img {
  max-height: 24px;
}
.b-opening-info span {
  align-items: center;
  display: flex;
  font-size: 2rem;
  gap: 10px;
  min-width: 6em;
  width: 100%;
}
.b-opening-info time {
  font-size: 2.5rem;
}
.b-opening-info.m-close time {
  display: none;
}
@media screen and (max-width: 1023px) {
  .b-opening-info {
    padding: 0.75em 1em 0.75em 1.25em;
  }
  .b-opening-info span {
    font-size: 1.5rem;
    min-width: 6.5em;
  }
  .b-opening-info time {
    font-size: 1.8rem;
  }
}

/* =========================

  フッター

========================= */
footer {
  background-color: var(--color-light-gray);
  padding: 90px 0 60px;
  position: relative;
  text-align: center;
}

.e-page-top__button {
  position: absolute;
  right: 40px;
  top: -40px;
  transform: rotate(-90deg);
}
.e-page-top__button .e-arrow {
  border-radius: 50px;
  height: 100px;
}
.e-page-top__button .e-arrow i,
.e-page-top__button .e-arrow i::before,
.e-page-top__button .e-arrow i::after {
  width: 20px;
}
.e-page-top__button .e-arrow i::before {
  right: -8.5px;
  top: -6.7px;
}
.e-page-top__button .e-arrow i::after {
  right: -8.5px;
  top: 6.7px;
}
@media screen and (max-width: 1023px) {
  .e-page-top__button {
    right: 20px;
    top: -20px;
  }
  .e-page-top__button .e-arrow {
    height: 50px;
    width: 50px;
  }
  .e-page-top__button .e-arrow i::before,
  .e-page-top__button .e-arrow i::after {
    width: 10px;
  }
  .e-page-top__button .e-arrow i {
    width: 12px;
  }
  .e-page-top__button .e-arrow i::before {
    right: -4.5px;
    top: -3.7px;
  }
  .e-page-top__button .e-arrow i::after {
    right: -4.5px;
    top: 3.7px;
  }
}

footer .-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

footer .b-page-title {
  margin: 0 auto 0 0;
  max-width: 265px;
  padding: 0;
}
footer .e-page-title__text {
  font-size: 1.8rem;
}
.b-footer__info-address p {
  font-size: 1.5rem;
  margin-top: 1em;
}

@media screen and (min-width: 1024px) {
  .b-footer__info-address p {
    text-align: left;
  }
}

.b-footer__info-bottom {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.b-footer__links a {
  display: flex;
  justify-content: center;
  opacity: 1;
  transition: 0.3s;
}
.b-footer__links a:hover {
  opacity: 0.4;
}

.b-footer__sns-list {
  align-items: center;
  display: flex;
  gap: 15px;
  justify-content: center;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.b-footer__sns-list img {
  display: block;
  max-width: 30px;
  width: 100%;
}
.b-footer__sns-list a:nth-child(1) img {
  max-width: 26px;
}
.e-footer__menicon-logo img {
  display: block;
  width: 123px;
}

.b-footer__info-smoking {
  align-items: center;
  background-color: #fff;
  border-radius: 15px;
  display: flex;
  gap: 15px;
  letter-spacing: -1px;
  max-width: 550px;
  padding: 15px;
}
.b-footer__info-smoking img {
  width: 77px;
}
.b-footer__info-smoking p {
  font-size: 1.5rem;
  text-align: left;
}

footer small {
  display: block;
  font-size: 1.2rem;
  margin-top: 50px;
}

@media screen and (max-width: 1023px) {
  footer .-inner,
  .b-footer__info-bottom {
    flex-direction: column;
  }
  footer .-inner {
    gap: 40px;
  }
  footer .b-page-title {
    margin: 0 auto;
  }
}

/* =========================

  トップページ

========================= */
.b-carousel {
  background-image: linear-gradient(0deg, transparent, #edf8fc);
  overflow-x: hidden;
  padding: 170px 0 10px;
  position: relative;
  text-align: center;
  z-index: 2;
}
.b-carousel__list .slick-list {
  overflow: visible;
}
.b-carousel__list li {
  position: relative;
}
.b-carousel__list .e-cap {
  left: 10%;
  opacity: 0;
  max-width: 270px;
  top: 15%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.b-carousel__list .is-active-next .e-cap,
.b-carousel__list .slick-center .e-cap {
  opacity: 1;
}
.b-carousel__list .slick-center.slick-cloned .e-cap {
  opacity: 0;
}
.b-carousel__list .e-cap,
.b-carousel__list .e-cap > * {
  position: absolute;
  transition: 0.4s;
  z-index: 2;
}
.b-carousel__list .e-cap * {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.b-carousel__list .e-cap p {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  width: 100%;
}
.b-carousel__list .e-cap p span {
  font-size: 1.5rem;
  display: block;
  position: unset;
  transform: unset;
}
.b-carousel__list .e-cap .e-bubble {
  animation: floatBubble linear 8s infinite;
  width: 100%;
  z-index: -1;
}
@keyframes floatBubble {
  0% {
    transform: translate(-50%, -50%) scaleX(1.02) scaleY(0.95);
  }
  50% {
    transform: translate(-50%, -50%) scaleY(1.02) scaleX(0.95);
  }
  100% {
    transform: translate(-50%, -50%) scaleX(1.02) scaleY(0.95);
  }
}

.b-carousel__list .e-img {
  border-radius: 40px;
  object-fit: cover;
  margin: 0 auto;
  transform: scale(0.8);
  transition: 0.8s;
  width: 100%;
}
.b-carousel__list .is-active-next .e-img,
.b-carousel__list .slick-center .e-img {
  transform: scale(1);
}
.b-carousel__list .slick-center.slick-cloned {
  transform: scale(0.8);
}

@media screen and (max-width: 1023px) {
  .b-carousel {
    padding-top: 120px;
  }
  .b-carousel__list .e-cap {
    max-width: 148px;
    top: 20%;
  }
  .b-carousel__list .e-cap p {
    font-size: 1.5rem;
  }
  .b-carousel__list .e-cap p span {
    font-size: 1.2rem;
  }
  .b-carousel__list .e-img {
    border-radius: 20px;
    padding: 10px;
    transform: scale(1);
  }
}

/* 波のアニメーション */
.wave-container {
  position: relative;
  width: 100%;
  height: 15vh; /* 波の高さ */
  min-height: 100px;
  max-height: 150px;
  overflow: hidden;
  background: #fff; /* 背景色 */
}
.waves {
  position: relative;
  width: 100%;
  height: 100%;
}
/* アニメーションの定義 */
.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
/* 1つ目の波：速度を少し変えて奥行きを出す */
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 15s;
}
/* 2つ目の波：標準の速度 */
.parallax > use:nth-child(2) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/* スマホ対応：波の高さを抑える */
@media (max-width: 768px) {
  .wave-container {
    height: 40px;
    min-height: 40px;
  }
}

/* 常設展リンク */
.b-menicon-dna__link {
  align-items: center;
  background-color: var(--color-yellow);
  border-radius: 40px;
  box-shadow: 0px 0px 10px #ed7e1166;
  color: var(--color-orange);
  display: flex;
  font-weight: 600;
  justify-content: space-between;
  opacity: 1;
  margin: 20px auto 0;
  max-width: 780px;
  padding: 15px;
  text-decoration: none;
  transition: 0.3s;
}
.b-menicon-dna__link * {
  line-height: 1;
}
.b-menicon-dna__link:hover {
  opacity: 0.6;
}
.b-menicon-dna__link .e-arrow {
  background-color: var(--color-orange);
}
.e-menicon-dna__text {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 10px #ed7e1166;
  font-size: 2.5rem;
  padding: 5px 20px 8px;
}
.e-menicon-dna__description {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  font-size: 2rem;
  gap: 5px;
  margin-bottom: 3px;
}
.e-menicon-dna__description span {
  font-size: 1.5rem;
  font-weight: 400;
}
.b-menicon-dna__link h2 {
  font-size: 3.5rem;
}
.b-menicon-dna__link .-flex {
  align-items: center;
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 1023px) {
  .b-menicon-dna__link {
    flex-direction: column;
    gap: 20px;
    margin: 20px auto 0;
    max-width: 315px;
    padding: 30px 0;
    text-align: center;
  }
  .e-menicon-dna__description {
    align-items: center;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .e-menicon-dna__text {
    font-size: 2rem;
  }
  .b-menicon-dna__link h2 {
    font-size: 3rem;
  }
  .b-menicon-dna__link .e-arrow {
    height: 25px;
    width: 60px;
  }
}

/* メニコンDNA常設展 */
.b-menicon-dna__exhibition {
  background-color: #e4f2f6;
  margin-bottom: 120px;
  overflow: hidden;
  padding: 270px 0 120px;
  position: relative;
}
.b-menicon-dna__exhibition::before {
  aspect-ratio: 26 / 23;
  background-image: url(../top/img/img_dna.jpg);
  background-position: center center;
  background-size: cover;
  content: "";
  left: 50%;
  mix-blend-mode: multiply;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
}
.b-menicon-dna__exhibition .b-menicon__img-wrap {
  display: flex;
  gap: 80px;
  left: 50%;
  position: absolute;
  top: 10px;
  transform: translateX(-50%);
  width: 100%;
}
.b-menicon-dna__exhibition .e-dna__image {
  animation: scrollAnime 40s linear infinite;
  width: 100%;
}
@keyframes scrollAnime {
  0% {
    transform: translateX(80px);
  }
  100% {
    transform: translateX(-100%);
  }
}

.b-menicon-dna__exhibition .-inner {
  padding-bottom: 1px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .b-menicon-dna__exhibition {
    padding-top: 120px;
  }
}

.b-menicon-dna__intro {
  background-color: #fff;
  border-radius: 25px;
  color: var(--color-blue);
  margin-bottom: 72px;
  padding: 60px 1em 40px;
  position: relative;
  text-align: center;
}
.b-menicon-dna__intro img {
  left: 50%;
  max-width: 188px;
  position: absolute;
  top: calc(-100% + 60px);
  transform: translateX(-50%);
}
.b-menicon-dna__intro p {
  line-height: 2;
}

@media screen and (max-width: 1023px) {
  .b-menicon-dna__intro img {
    max-width: 90px;
    top: -50px;
  }
}

.b-menicon-dna__sections {
  align-items: flex-start;
  display: flex;
  gap: 70px;
  justify-content: space-between;
  padding: 1px 0;
}
.b-menicon-dna__section {
  display: flex;
  gap: 60px;
}
.b-menicon-dna__section .__content {
  display: flex;
  font-size: 1.5rem;
  gap: 20px;
  line-height: 1.76;
  margin-top: 30px;
}
.b-menicon-dna__section.m-right {
  flex-direction: column-reverse;
}
.b-menicon-dna__section h2 {
  color: var(--color-blue);
  font-size: 2.5rem;
}
.b-menicon-dna__section h2 span {
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0px 0px 10px #6fbdde66;
  margin-right: 20px;
  padding: 3px 1em 5px;
}
.b-menicon-dna__section h3 {
  font-size: 3.8rem;
  font-weight: 500;
  margin-top: 30px;
}
.b-menicon-dna__section .e-img img {
  aspect-ratio: 1 / 1;
  border-radius: 35px;
  display: block;
  object-fit: cover;
  opacity: 1;
  overflow: hidden;
  max-width: 520px;
  transition: 0.4s;
}
.b-menicon-dna__section .e-img img:hover {
  opacity: 0.6;
}
.b-menicon-dna__section .e-arrow {
  min-width: 100px;
}

@media screen and (max-width: 1023px) {
  .b-menicon-dna__sections {
    flex-direction: column;
    gap: 24px;
  }
  .b-menicon-dna__sections a {
    flex-direction: column;
    width: 100%;
  }
  .b-menicon-dna__section {
    gap: 30px;
  }
  .b-menicon-dna__section h2 {
    align-items: center;
    display: flex;
    justify-content: center;
  }
  .b-menicon-dna__section h3 {
    font-size: 2.5rem;
    text-align: center;
  }
  .b-menicon-dna__section .e-img img {
    margin: 0 auto;
    max-width: 80vw;
    width: 100%;
  }
  .b-menicon-dna__section .__content {
    align-items: center;
    flex-direction: column;
    line-height: 1.76;
    justify-content: center;
    text-align: center;
  }
}

/* アクセス */
.e-access__address {
  font-size: 3rem;
  font-weight: 600;
  margin: 80px 0 20px;
}
.e-access__address span {
  font-size: 2rem;
  font-weight: 500;
  margin-left: 1em;
}
@media screen and (max-width: 1023px) {
  .e-access__address {
    font-size: 2rem;
    text-align: center;
  }
  .e-access__address span {
    display: block;
    font-size: 1.5rem;
    margin: 0;
  }
}

.b-access__info {
  background-color: var(--color-light-gray);
  border-radius: 30px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 15px 15px 15px 40px;
}
.b-access__info-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  margin-top: 5px;
  padding-bottom: 10px;
}
.b-access__info h3 {
  font-size: 2rem;
}
.b-access__info p {
  font-size: 1.5rem;
  margin-top: 12px;
}
.b-access__info p span {
  background-color: var(--color-blue);
  border-radius: 20px;
  color: #fff;
  font-weight: 600;
  margin-right: 7px;
  padding: 2px 1em 3px;
}
.b-access__notes {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 30px;
}
.b-access__notes h3 {
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-decoration: underline #6fbdde33 10px;
  text-underline-offset: -5px;
}
.b-access__notes ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
}
.b-access__notes li {
  align-items: center;
  display: flex;
  font-size: 1.5rem;
}
.b-access__notes li img {
  height: 33px;
}
.b-access__notes li p {
  margin: 0 0 0 15px;
}
.b-access .e-map {
  width: 100%;
}
.b-access .e-link {
  color: var(--color-blue);
  display: block;
  text-decoration: underline;
}
.b-access .e-link:hover {
  text-decoration: none;
}

@media screen and (max-width: 1023px) {
  .b-access__info {
    border-radius: 15px;
    flex-direction: column;
    padding: 30px 15px 15px;
  }
  .b-access__notes {
    border-radius: 10px;
  }
  .b-access__notes h3 {
    display: block;
    margin: 0 auto 15px;
    text-align: center;
  }
  .b-access__info p {
    align-items: center;
    display: flex;
    text-align: justify;
  }
  .b-access .e-link {
    text-align: center;
  }
}

/* よくあるご質問 */
.b-faq {
  margin-bottom: 100px;
  margin-top: 150px;
}
.b-faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}
.b-faq__list details {
  border: 1px solid var(--color-black);
  background-color: #fff;
  &::details-content {
    transition:
      height 0.4s,
      opacity 0.4s,
      content-visibility 0.4s allow-discrete;
    height: 0;
    opacity: 0;
    overflow: clip;
    background-color: var(--color-light-gray);
  }

  &[open]::details-content {
    opacity: 1;
  }

  &[open] summary i::before {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
  }
  .b-faq__list details[open]::details-content {
    height: auto;
  }
}
@supports not (interpolate-size: allow-keywords) {
  .b-faq__list details[open]::details-content {
    height: 150px;
    overflow-y: scroll;
  }
}
.b-faq__list summary,
.b-faq__list details p {
  cursor: pointer;
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  padding: 20px 20px 20px 5.4rem;
  position: relative;
}
.b-faq__list summary::-webkit-details-marker {
  display: none;
}
.b-faq__list summary::before,
.b-faq__list details p::before {
  color: var(--color-blue);
  content: "Q";
  left: 20px;
  line-height: 1.4;
  position: absolute;
  top: 20px;
}
.b-faq__list summary i,
.b-faq__list summary i::before {
  background-color: var(--color-black);
  display: block;
  height: 1px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
}
.b-faq__list summary i::before {
  content: "";
  left: 50%;
  right: unset;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: 0.4s;
}
.b-faq__list details p {
  background-color: var(--color-light-gray);
  cursor: text;
  font-size: 1.8rem;
  font-weight: 500;
}
.b-faq__list details p::before {
  content: "A";
  font-size: 2.2rem;
  font-weight: 600;
}

.b-faq__buttons {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 40px;
}
.b-faq__buttons a {
  border: 1px solid var(--color-black);
  border-radius: 40px;
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 15px;
  text-align: center;
  transition: 0.3s;
  width: calc(100% / 3);
}
.b-faq__buttons a:hover {
  border-color: var(--color-gray);
  color: var(--color-gray);
}

@media screen and (max-width: 1023px) {
  .b-faq__list summary {
    font-size: 1.8rem;
  }
  .b-faq__list details p {
    font-size: 1.5rem;
  }
  .b-faq__buttons {
    flex-direction: column;
  }
  .b-faq__buttons a {
    width: 100%;
  }
  .b-faq__list summary::before,
  .b-faq__list details p::before {
    font-size: 2.2rem;
  }
}

/* =========================

  イベント関連

========================= */
/* トップ */
.index .b-event {
  background-color: var(--color-event-bg);
  padding-bottom: 140px;
  position: relative;
}
.b-event .-inner {
  padding: 1px 0;
  position: relative;
  z-index: 2;
}
.lower .b-event__list-wrap {
  background-color: var(--color-event-bg);
  padding-bottom: 60px;
}
.index .b-event .e-head {
  margin: 80px 0 40px;
}
.event .b-event .e-copy {
  margin-top: 30px;
  line-height: 2;
}
.b-event .e-gallery {
  max-width: 575px;
  position: absolute;
  right: 30px;
  top: 60px;
  width: 45vw;
  z-index: 1;
}
.b-event .e-bubble {
  position: absolute;
  z-index: 1;
}
.b-event .e-bubble.m-01 {
  left: -5%;
  max-width: 310px;
  top: -8%;
}
.b-event .e-bubble.m-02 {
  left: 50%;
  max-width: 263px;
  top: -10%;
  transform: translateX(-50%);
}
.b-event .e-bubble.m-03 {
  max-width: 330px;
  right: 10%;
  top: -12%;
}
.b-event .e-bubble.m-04 {
  max-width: 208px;
  right: 4%;
  top: -6%;
}
@media screen and (max-width: 1023px) {
  .b-event .e-gallery {
    display: none;
  }
}

/* イベント */
.b-current__event {
  display: flex;
  gap: 54px;
}

.b-current__event .e-title {
  background-color: var(--color-blue);
  border-radius: 40px;
  color: #fff;
  font-size: 3.6rem;
  font-weight: 600;
  gap: 0;
  line-height: 1;
  padding: 30px 35px;
}
.b-current__event .e-title h2 {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 5.4rem;
}
.b-current__event.m-permanent .e-title {
  display: block;
}
.b-current__event.m-permanent .e-title h2 {
  font-size: 4.2rem;
}
.b-current__event .e-title h2 span {
  color: var(--color-blue);
  font-size: 2rem;
  margin-top: 0;
}
.b-current__event .e-title span {
  font-size: 2rem;
  font-weight: 600;
}
.b-current__event .e-thumb {
  aspect-ratio: 35 / 38;
  border-radius: 50px;
  object-fit: cover;
  overflow: hidden;
  width: 50%;
}
.b-current__event .e-copy {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  line-height: 1.76;
  margin-top: 0;
  max-width: 25em;
}
.index .b-current__event .e-copy {
  -webkit-line-clamp: 3;
}
.b-current__event.m-permanent .e-copy {
  display: block;
  -webkit-box-orient: unset;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.b-current__event a {
  background-color: #fff;
  border-radius: 50px;
  filter: drop-shadow(0 0 10px var(--color-blue));
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  max-width: 600px;
  padding: 25px;
  position: relative;
  width: 50%;
}
.b-current__event a::before {
  background-color: #fff;
  content: "";
  clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
  display: block;
  height: 80px;
  left: -72px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
}

@media screen and (max-width: 1023px) {
  .b-current__event {
    flex-direction: column;
    gap: 25px;
  }
  .b-current__event .e-thumb,
  .b-current__event a {
    width: 100%;
  }
  .b-current__event a::before {
    clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
    height: 45px;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    width: 55px;
  }
  .b-current__event.m-permanent .e-title h2 {
    flex-direction: column;
  }
  .b-current__event.m-permanent .e-title span {
    margin: 0;
  }
  .index .b-current__event.m-permanent .e-copy {
    text-align: left;
  }
}

.lower .b-current__event a {
  filter: drop-shadow(0 0 10px #2b2b2b66);
  gap: 40px;
  max-width: unset;
  padding: 50px 45px;
  width: 100%;
}
.lower .b-current__event a::before {
  display: none;
}
.lower .b-current__event .-wrap {
  display: flex;
  gap: 40px;
}
.lower .b-current__event .-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.lower .b-current__event .e-artist {
  margin-top: 2em;
}
.lower .b-current__event .e-artist .e-head {
  color: var(--color-black);
  font-size: 2rem;
  margin: 0 0 10px;
}
.lower .b-event__list-wrap .e-head.m-sub {
  color: var(--color-black);
  margin-bottom: 70px;
}
.lower .b-event__content .e-head.m-sub {
  margin-bottom: 0;
  margin-top: 20px;
}

@media screen and (max-width: 1023px) {
  .lower .b-current__event a {
    border-radius: 20px;
    margin-left: -10px;
    padding: 30px 20px 100px;
    width: 100vw;
  }
  .lower .b-current__event .e-thumb {
    border-radius: 35px;
  }
  .lower .b-current__event .-wrap {
    flex-direction: column-reverse;
  }
  .lower .b-current__event .e-arrow {
    bottom: 30px;
    position: absolute;
    right: 20px;
  }
}

.b-event .e-title {
  background-color: var(--color-blue);
  border-radius: 40px;
  color: #fff;
  font-size: 4.5rem;
  letter-spacing: -2px;
  line-height: 1.2;
  padding: 25px;
}
.b-event .e-title span {
  font-size: 2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  letter-spacing: 0;
  line-height: 1.5;
  margin-top: 20px;
}
.b-event .e-time {
  align-items: flex-end;
  font-weight: 600;
  display: flex;
  font-size: 3.5rem;
  gap: 15px;
}
.b-event .e-time time {
  display: flex;
  flex-direction: column;
}
.b-event .e-year,
.b-event .e-day {
  font-size: 2.5rem;
}
.b-event .e-time i {
  background-color: var(--color-black);
  display: block;
  height: 2.5px;
  margin: 0 5px 5% 0;
  width: 34px;
}
.b-event .e-arrow {
  margin: 0 0 0 auto;
}
.b-event .e-more {
  margin-top: 60px;
}

@media screen and (max-width: 1023px) {
  .b-event .e-title {
    font-size: 3rem;
  }
}

.b-event__list {
  display: flex;
  gap: 45px;
  list-style: none;
}
.b-event__list li {
  width: calc(100% / 3);
}
.b-event__list a {
  box-shadow: 0 0 15px #6fbdde80;
  border-radius: 0 50px 0 50px;
  display: block;
  line-height: 1;
  overflow: hidden;
  transition: 0.4s;
}
.b-event__list a:hover {
  box-shadow: 0 0 15px #6fbdde00;
}
.b-event__list img {
  aspect-ratio: 9 / 7;
  object-fit: cover;
  width: 100%;
}
.b-event__list a div {
  background-color: #fff;
  padding: 20px 30px 30px;
}
.b-event__list h3 {
  font-weight: 500;
  line-height: 1.5;
}
.b-event__list span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 1em;
}

@media screen and (max-width: 1023px) {
  /* 共通 */
  .b-event .e-time time {
    font-size: 2.5rem;
  }
  .b-event .e-year,
  .b-event .e-day {
    font-size: 1.8rem;
  }
  .b-event .e-copy {
    margin-top: 0;
  }
  .b-event__list h3 {
    font-size: 1.5rem;
  }
  .b-event__list span {
    font-size: 1.2rem;
  }

  /* トップページのみ */
  .index .b-event__list {
    margin-left: -10px;
    overflow-x: hidden;
    padding-bottom: 40px;
    width: 100vw;
  }
  .index .b-event .e-title {
    text-align: center;
  }
  .index .b-event .e-title span {
    text-align: center;
  }
  .index .b-event__list li {
    padding: 10px;
  }
  .index .b-event .e-copy {
    font-size: 1.5rem;
    text-align: center;
  }
  .index .b-event .slick-dots {
    bottom: 10px;
  }
  .index .b-event .slick-dots li {
    width: auto;
  }
  .index .b-event__list .e-arrow {
    border: 1px solid #fff;
    border-radius: 25px;
    height: 50px;
    position: absolute;
    right: 5px;
    top: calc(50% - 40px);
    transform: translateY(-50%);
    width: 50px;
    z-index: 2;
  }
  .index .b-event__list .e-arrow.m-prev {
    left: 5px;
    right: unset;
    transform: translateY(-50%) rotate(180deg);
  }
  .index .b-event__list .e-arrow i {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .index .b-event .slick-dots li button:before {
    background-color: var(--color-blue);
    border-radius: 8px;
    content: "";
    display: block;
    height: 13px;
    opacity: 0.3;
    width: 13px;
  }
  .index .b-event .slick-dots li.slick-active button:before {
    opacity: 1;
  }
  .index .b-event .slick-dots li {
    padding: 0;
  }

  /* 子ページのみ */
  .lower .b-event__list {
    flex-direction: column;
  }
  .lower .b-event__list li {
    width: 100%;
  }
}

/* イベント詳細ページ */

.b-event__info .e-title span {
  margin-top: 10px;
}
.b-event__info .e-time {
  margin: 30px 0 45px;
}
.b-event__info .e-time i {
  margin-top: 4%;
}

.b-event__visual img {
  width: 100%;
}
.b-event__visual figcaption {
  font-size: 1.6rem;
  margin-top: 5px;
}
.b-event__visual .-sub__visual {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.b-event__content {
  display: flex;
  gap: 120px;
  margin-top: 60px;
}
.b-event__content .e-head.m-sub {
  font-size: 1.9rem;
}
.b-event__content .e-head.m-sub::before {
  content: "■";
}
.b-event__content p {
  line-height: 1.76;
  margin: 1em 0 2.5em 0.5em;
}
.b-event__content p.m-brnone {
  margin-bottom: 0;
}
.b-event__content .-main {
  max-width: 50%;
}
.b-side__visual {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  max-width: 433px;
  width: 100%;
}
.b-side__visual img {
  max-width: 100%;
}

@media screen and (max-width: 1023px) {
  .b-event__visual figcaption {
    font-size: 1.4rem;
  }
  .b-event__visual .-sub__visual {
    flex-direction: column;
  }
  .b-event__content {
    flex-direction: column;
    gap: 0;
  }
  .b-event__content .-main {
    max-width: 100%;
  }
}

/* =========================

  ギャラリーページ

========================= */
.b-gallery__info {
  aspect-ratio: 7 / 6;
  background-image: url(../gallery/img/img_space_bg.png);
  background-position: center center;
  background-size: contain;
  margin: 95px auto 0;
  max-width: 707px;
  position: relative;
  width: 100%;
}
.b-gallery__info .e-node {
  position: absolute;
  transform: translate(-50%, -50%);
}
.b-gallery__info .e-node .m-hover {
  opacity: 0;
  position: absolute;
  transition: 0.4s;
}
.b-gallery__info .e-node a:hover .m-hover {
  opacity: 1;
}
.b-gallery__info .e-node .m-img {
  transition: 0.6s;
}
.b-gallery__info .e-node a:hover .m-img {
  opacity: 0;
}
.b-gallery__info .e-node * {
  display: block;
}
.b-gallery__info .e-node.m-menicon {
  left: 40%;
  top: 10.5%;
}
.b-gallery__info .e-node.m-menicon img {
  width: 290px;
}
.b-gallery__info .e-node.m-corporate {
  top: 8.3%;
  transform: translate(0);
  right: 7%;
}
.b-gallery__info .e-node.m-corporate img {
  width: 225px;
}
.b-gallery__info .e-node.m-rental {
  left: 16.5%;
  top: 44%;
}
.b-gallery__info .e-node.m-rental img {
  width: 60px;
}
.b-gallery__info .e-node.m-product {
  left: 52%;
  top: 52%;
}
.b-gallery__info .e-node.m-product img {
  width: 225px;
}
.b-gallery__info .e-node.m-tech {
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
}
.b-gallery__info .e-node.m-tech img {
  width: 400px;
}
.b-gallery__info .e-node.m-history {
  bottom: 12%;
  left: 52%;
  transform: translateX(-50%);
}
.b-gallery__info .e-node.m-history img {
  width: 215px;
}

@media screen and (max-width: 1023px) {
  .b-gallery__info {
    background-image: url(../gallery/img/img_space_bg_sp.png);
  }
  .b-gallery__info .e-node a {
    align-items: center;
    background: linear-gradient(90deg, #3399cc 0%, #66cccc 100%);
    border: 1px solid #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px var(--color-black);
    color: #fff;
    display: flex;
    font-weight: 600;
    height: 40px;
    justify-content: center;
    width: 40px;
  }
  .b-gallery__info-list {
    list-style: none;
    margin: 40px auto 0;
  }
  .b-gallery__info-list a {
    color: var(--color-blue);
    display: flex;
    font-size: 2rem;
    font-weight: 600;
    gap: 10px;
    margin-top: 10px;
  }
  .b-gallery__info-list span {
    align-items: center;
    aspect-ratio: 1/1;
    background-color: var(--color-deep-blue);
    border-radius: 15px;
    color: #fff;
    display: flex;
    height: 30px;
    justify-content: center;
    width: 30px;
  }
}

.b-gallery__sections {
  display: flex;
  flex-direction: column;
  gap: 100px;
  justify-content: space-between;
  list-style: none;
  margin-bottom: 230px;
}
.b-gallery__sections > li {
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 0 0 20px #55609333;
  padding: 60px 70px;
}
.b-gallery__section {
  align-items: center;
  display: flex;
  gap: 55px;
  justify-content: space-between;
}
.b-gallery__section.m-reverse {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.b-gallery__section > img {
  aspect-ratio: 500 / 330;
  border-radius: 30px;
  max-width: 500px;
  object-fit: cover;
}
.b-gallery__section .e-head {
  font-size: 3rem;
  margin: 0 0 50px;
}
.b-gallery__section p {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  line-height: 2;
}
@media screen and (max-width: 1023px) {
  .b-gallery__section,
  .b-gallery__section.m-reverse {
    flex-direction: column;
    gap: 30px;
  }
  .b-gallery__sections > li {
    padding: 30px 20px;
  }
  .b-gallery__section .e-head {
    margin-bottom: 30px;
  }
  .b-gallery__section > img {
    border-radius: 20px;
    width: 100%;
  }
}

.b-gallery__rental-table {
  border-collapse: collapse;
  margin-top: 40px;
  width: 100%;
}
.b-gallery__rental-table th,
.b-gallery__rental-table td {
  border-bottom: 1px solid var(--color-black);
  padding: 0.75em 1em;
  text-align: center;
}
.b-gallery__rental-table td {
  font-size: 1.5rem;
}
.b-gallery__rental-table th:nth-child(1),
.b-gallery__rental-table td:nth-child(1) {
  padding: 0.75em 3em;
}
@media screen and (max-width: 1023px) {
  .b-gallery__rental-table tr:nth-child(1) th,
  .b-gallery__rental-table tr:nth-child(1) td,
  .b-gallery__rental-table th:nth-child(1) {
    border-top: 1px solid var(--color-black);
    padding: 0.75em 0 0.75em 0.5em;
  }
  .b-gallery__rental-table th,
  .b-gallery__rental-table td {
    padding: 0.75em 0 0.75em 0.5em;
    text-align: left;
  }
}

.b-gallery__rental-section {
  font-size: 1.5rem;
}

.e-gallery__rental__info {
  line-height: 2;
  margin-top: 15px;
}
.e-gallery__rental__info a {
  color: var(--color-black);
  text-underline-offset: 3px;
}

.b-gallery__rental-section h3 {
  color: var(--color-blue);
  font-size: 2.5rem;
  margin-top: 90px;
  padding-left: 1em;
  position: relative;
}
.b-gallery__rental-section h3::before {
  background-color: #fff;
  border: 5px solid var(--color-blue);
  border-radius: 20px;
  content: "";
  display: block;
  height: 13px;
  left: 0;
  margin-bottom: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
}

.b-gallery__rental-section .b-lineed-list {
  margin: 0;
}

.b-gallery__rental-section .b-lineed-list li > div {
  display: flex;
}
.b-gallery__rental-section .b-lineed-list > li {
  border-bottom: 1px dashed var(--color-gray);
  border-top: none;
}

.b-gallery__rental-section h4 {
  font-size: 1.8rem;
  min-width: 10.5em;
}
.b-gallery__rental-section p {
  line-height: 1.76;
}

.b-gallery__rental-section ul {
  list-style-type: "・";
  margin-left: 0.5em;
}
.b-gallery__rental-section ul li {
  line-height: 1.76;
  margin-bottom: 0.5em;
  padding-left: 5px;
}
.b-gallery__rental-section ul li:last-child {
  margin-bottom: 0;
}

.b-gallery__rental-note {
  background-color: var(--color-light-gray);
  border-radius: 30px;
  margin: 20px 0 0;
  padding: 20px;
}
.b-gallery__rental-note p {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}
.b-gallery__rental-note a {
  color: #fff;
  font-size: 1.5rem;
  gap: 30px;
  padding: 0 2em 0 3em;
  width: auto;
}

.b-gallery__rental-note div {
  display: flex;
  gap: 20px;
  justify-content: center;
}

@media screen and (max-width: 1023px) {
  .b-gallery__rental-section .b-lineed-list > li {
    padding-left: 0;
  }
  .b-gallery__rental-section h4 {
    margin-bottom: 1em;
    padding-left: 1em;
  }
  .b-gallery__rental-section .b-lineed-list li > div {
    flex-direction: column;
  }
  .b-gallery__rental-note div {
    flex-direction: column;
  }
  .b-gallery__rental-note a {
    height: auto;
    gap: 0;
    justify-content: space-between;
    padding: 20px 15px;
  }
  .b-gallery__rental-note p {
    font-size: 1.8rem;
  }
}

/* =========================

  メニコンDNA

========================= */
.dna h1.e-head {
  align-items: center;
  display: flex;
}
.dna h1.e-head span {
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 0 0 10px #289fc94d;
  color: var(--color-deep-blue);
  display: inline-block;
  font-size: 2.5rem;
  margin-right: 10px;
  padding: 3px 1em 5px;
}

@media screen and (max-width: 1023px) {
  .dna h1.e-head {
  }
  .dna h1.e-head span {
    font-size: 2rem;
  }
}

.b-menicon__index {
  margin-top: 30px;
  position: relative;
}
.b-menicon__index .e-title {
  background-color: #000;
  color: #fff;
  display: block;
  max-width: 250px;
  padding: 5px 0;
  position: relative;
  text-align: center;
}
.b-menicon__index .e-title::after {
  background-color: #000;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  content: "";
  height: 100%;
  display: block;
  position: absolute;
  right: -25px;
  top: 0;
  width: 25px;
}
.b-menicon__index-list {
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  display: flex;
  font-size: 1.5rem;
  list-style: none;
}
.b-menicon__index-list span {
  font-size: 1.2rem;
  letter-spacing: -1px;
}
.b-menicon__index-list li {
  align-items: center;
  border-right: 1px solid #000;
  display: flex;
  width: calc(100% / 5);
}
.b-menicon__index-list li:last-child {
  border: none;
}
.b-menicon__index-list a {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  width: 100%;
}
.b-menicon__index-list h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.b-menicon__index-list .e-arrow {
  background-color: transparent;
  transform: rotate(90deg);
  width: 25px;
}
.b-menicon__index-list .e-arrow i,
.b-menicon__index-list .e-arrow i::before,
.b-menicon__index-list .e-arrow i::after {
  background-color: var(--color-blue);
}
.e-menicon__index_btn {
  display: none;
}

@media screen and (max-width: 1023px) {
  .b-menicon__index {
    height: 230px;
    overflow-y: hidden;
  }
  .b-menicon__index.m-open {
    height: auto;
    padding-bottom: 80px;
  }
  .b-menicon__index-list {
    flex-direction: column;
  }
  .b-menicon__index-list li {
    border-bottom: 1px solid #000;
    border-right: none;
    width: 100%;
  }
  .b-menicon__index-list h3 {
    align-items: center;
    flex-direction: row;
    font-size: 1.5rem;
    gap: 20px;
  }
  .b-menicon__index-list a {
    padding: 7px 15px;
  }
  .e-menicon__index_btn {
    background: linear-gradient(#ffffff00 0%, #ffffff 70%);
    bottom: 0;
    display: block;
    padding: 60px 0 5px;
    position: absolute;
    width: 100%;
  }
  .e-menicon__index_btn button {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 30px;
    display: block;
    margin: 0 auto;
    padding: 5px 1.5em 7px;
    transition: 0.3s;
  }
  .e-menicon__index_btn button::before {
    content: "すべて表示";
  }
  .b-menicon__index.m-open .e-menicon__index_btn {
    padding-top: 0;
  }
  .b-menicon__index.m-open .e-menicon__index_btn button::before {
    content: "閉じる";
  }
}

.b-menicon__article {
  background-color: #05114c;
  color: #fff;
  margin-top: 60px;
}

.b-menicon__article > section {
  overflow-x: hidden;
  position: relative;
}
.b-menicon__article .e-sec__bg {
  left: 50%;
  opacity: 0.25;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
}
.b-menicon__article .e-sec__bg.m-photo {
  opacity: 0.5;
}
.b-menicon__article .e-sec__corner {
  left: 0;
  max-width: 440px;
  position: absolute;
  top: 0;
}

@media screen and (max-width: 1023px) {
  .b-menicon__article .e-sec__bg {
    width: 120%;
  }
  .b-menicon__article .e-sec__corner {
    max-width: 300px;
    width: 75%;
  }
}

.b-menicon__article .-inner {
  position: relative;
  z-index: 1;
}
.b-menicon__article .-slider {
  display: flex;
  margin: 80px 0 70px;
  overflow: hidden;
  visibility: hidden; /* 読み込み完了まで隠す */
}
.b-menicon__article .-slider.slick-initialized {
  visibility: visible; /* slick起動後に表示 */
}
.b-menicon__article .-slider img {
  width: 200px;
}

.b-menicon__article .-intro {
  margin-bottom: -270px;
  padding-bottom: 270px;
  padding-top: 300px;
}
.b-menicon__article .-intro .-wrap {
  display: flex;
  gap: 120px;
}
@media screen and (max-width: 1023px) {
  .b-menicon__article .-intro {
    margin-bottom: 0;
    padding-bottom: 20px;
    padding-top: 60px;
  }
}

.b-menicon__article .-genealogy {
  margin-top: 315px;
}
.b-menicon__article .-genealogy img {
  max-width: 250px;
}
.b-menicon__article .-genealogy .e-child {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .b-menicon__article .-genealogy {
    margin-top: 90px;
  }
  .b-menicon__article .-genealogy.m-second > div:nth-child(1) .e-child {
    align-items: flex-start;
  }
  .b-menicon__article .-genealogy.m-second > div:nth-child(2) .e-child {
    align-items: flex-end;
  }
}

.b-menicon__article .-name {
  align-items: center;
  display: flex;
  font-family: var(--font-serif);
  font-weight: 600;
  gap: 10px;
  max-width: 250px;
  position: absolute;
  top: -54px;
  width: 100%;
}
.b-menicon__article .-name span {
  align-items: center;
  background-color: #ffffff80;
  border-radius: 30px;
  color: #000;
  display: flex;
  font-size: 2.5rem;
  height: 62px;
  justify-content: center;
  width: 62px;
}
.b-menicon__article .e-line {
  background-color: #fff;
  display: block;
  height: 110px;
  margin-bottom: 60px;
  width: 1px;
}

.b-menicon__article .-caption div {
  margin-top: 4em;
}
.b-menicon__article .-caption p {
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 2;
  margin-bottom: 1em;
}
.b-menicon__article .-caption .e-head {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 2;
}
.b-menicon__article .-caption .e-head span {
  color: #fff;
  font-size: 3.5rem;
}

@media screen and (max-width: 1023px) {
  .b-menicon__article .-caption .e-head {
    font-size: 3.5rem;
    line-height: 1.5;
  }
  .b-menicon__article .-caption .e-head span {
    font-size: 2.5rem;
    margin-top: 15px;
  }
}

.b-menicon__article .b-panel__list {
  display: flex;
  gap: 50px;
  list-style: none;
  margin: 180px auto 0;
  max-width: 1000px;
}
.b-menicon__article .b-panel__list .-name {
  justify-content: center;
  top: -50px;
}
.b-menicon__article .b-panel__list li {
  position: relative;
  width: calc(100% / 3);
}
.b-menicon__article .b-panel__list a {
  display: block;
  box-shadow: 0 0 20px #ffffff80;
}
.b-menicon__article .b-panel__list img {
  display: block;
  width: 100%;
}
.b-menicon__article .b-panel__list i {
  background-color: #fff;
  bottom: -30px;
  display: block;
  display: block;
  height: 100px;
  left: 30px;
  position: absolute;
  transition: 0.4s;
  width: 1px;
}
.b-menicon__article .b-panel__list a:hover i {
  transform: translateY(10px);
}
.b-menicon__article .b-panel__list i::before {
  background-color: #fff;
  bottom: 0;
  content: "";
  display: block;
  height: 26px;
  position: absolute;
  transform: rotate(20deg);
  transform-origin: center bottom;
  width: 1px;
}

@media screen and (max-width: 1023px) {
  .b-menicon__article .b-panel__list {
    flex-direction: column;
    margin-top: 40px;
  }
  .b-menicon__article .b-panel__list li {
    width: 100%;
  }
  .b-menicon__article .b-panel__list .-name {
    justify-content: flex-end;
    left: -10px;
    max-width: unset;
    top: -20px;
  }
  .b-menicon__article .b-panel__list .-name span {
    background-color: unset;
    height: 40px;
    width: auto;
  }
  .b-menicon__article .b-panel__list .-name span img {
    height: 100%;
    width: auto;
  }
}

.b-hitory__section {
  margin-top: 270px;
}

.b-article__hisory {
  position: relative;
}

.b-article__hisory .-notes {
  padding-top: 70px;
  max-width: 550px;
}
.b-article__hisory .-notes img {
  max-width: 100%;
}
.b-article__hisory .e-title {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif);
  font-size: 5rem;
}
.b-article__hisory .e-title .-category {
  background-color: #fff;
  color: var(--color-black);
  display: inline-block;
  font-size: 2.5rem;
  letter-spacing: -1px;
  margin-bottom: 25px;
  padding: 10px 20px;
}
.b-article__hisory .e-title .-copy {
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  display: inline-block;
  font-family: var(--font-kaku);
  font-size: 1.5rem;
  margin-top: 20px;
  padding: 1em 0;
  text-align: center;
  width: 210px;
}

.b-article__hisory .-caption {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.76;
  margin: 35px 0 50px;
}
.b-article__hisory .-caption span {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.b-article__hisory .-explain {
  font-size: 1.8rem;
  line-height: 2;
}
.b-article__hisory .-explain p {
  margin-top: 2em;
}

.b-hitory__section .-figures {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 10%;
  height: 65%;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
}
.b-hitory__section .-figures img {
  border-radius: 60px 0 0 60px;
  max-width: 50%;
}

@media screen and (max-width: 1023px) {
  .b-article__hisory .-explain p {
    font-size: 1.5rem;
  }
  .b-article__hisory .-figures {
    display: block;
    height: auto;
    margin-top: 2em;
    position: unset;
  }
  .b-article__hisory .-figures img {
    border-radius: 10px;
    max-width: 100%;
  }
}

.b-hitory__pickup {
  background-color: #ffffff80;
  margin: 0 auto;
  max-width: 1105px;
  padding: 40px 45px;
}
.b-hitory__pickup .-flex {
  display: flex;
  gap: 36px;
}
.b-hitory__pickup .e-head {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  margin: 0;
}
.b-hitory__pickup .e-head span {
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
}
.b-hitory__pickup .e-work-title {
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  font-size: 2.5rem;
  margin-top: 30px;
  padding: 10px 0;
}
.b-hitory__pickup .e-work-title span {
  display: block;
  font-size: 1.5rem;
}
.b-hitory__pickup .e-caption {
  font-size: 1.5rem;
  line-height: 2;
  margin-top: 20px;
}
.b-hitory__pickup .e-caption .-soukon {
  background-color: #fff;
  color: var(--color-black);
  display: inline-block;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 1em;
  max-width: 450px;
  padding: 0.5em 1em;
}
.b-hitory__pickup .-flex img {
  margin: auto;
  max-width: 350px;
}
.b-hitory__pickup .-sub {
  display: flex;
  gap: 35px;
  margin-top: 70px;
}
.b-hitory__pickup .-sub .-flex {
  gap: 20px;
  width: 50%;
}
.b-hitory__pickup .-sub .-flex img {
  max-width: 200px;
}
.b-hitory__pickup .-sub .e-work-title {
  font-size: 1.8rem;
  margin: 0;
}

.e-family__intro {
  border: 1px solid #fff;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 45px;
  padding: 5px 2.5em 7px;
  position: relative;
}
.e-family__intro .e-arrow {
  background-color: transparent;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
}

@media screen and (max-width: 1023px) {
  .b-hitory__section {
    margin-top: 60px;
  }
  .b-hitory__pickup {
    padding: 30px 20px;
    width: calc(100% - 40px);
  }
  .b-hitory__pickup .e-head {
    text-align: center;
  }
  .b-hitory__pickup .e-head span {
    justify-content: center;
  }
  .b-hitory__pickup .e-work-title {
    font-size: 2rem;
    text-align: center;
  }
  .b-hitory__pickup .e-caption .-soukon {
    word-break: break-word;
    width: 100%;
  }
  .b-hitory__pickup .-flex,
  .b-hitory__pickup .-sub {
    flex-direction: column;
  }
  .b-hitory__pickup .-sub .-flex {
    width: 100%;
  }
  .b-hitory__pickup .-flex img {
    width: 100%;
  }
  .b-hitory__pickup .-sub .-flex img {
    max-width: 100%;
  }
}

.b-hometown__section {
  margin-top: 250px;
}
.b-hometown__section .-inner {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 260px;
  max-width: unset;
  padding-bottom: 100px;
}
.b-hometown__section .e-map {
  height: 100%;
  position: relative;
}
.b-hometown__section .e-map img {
  max-width: 425px;
}

.ripple-container {
  align-items: center;
  bottom: 130px;
  display: flex;
  height: 100px;
  justify-content: center;
  position: absolute;
  right: 145px;
  width: 100px;
  z-index: 2;
}
.ripple-container .dot {
  background-color: #000;
  border-radius: 1.5px;
  height: 3px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
}
.ripple-container .circle {
  animation: ripple-animation 6s infinite linear; /* 3秒かけてループ */
  background-color: rgba(255, 0, 0, 0.3); /* 赤色、不透明度30% */
  border-radius: 50%;
  height: 100%;
  opacity: 0; /* 最初は隠しておく */
  position: absolute;
  width: 100%;
}
.ripple-container .circle:nth-child(2) {
  animation-delay: 2s;
}
.ripple-container .circle:nth-child(3) {
  animation-delay: 4s;
}
@keyframes ripple-animation {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: scale(3); /* 3倍まで拡大 */
    opacity: 0; /* 消える */
  }
}
@media screen and (max-width: 1023px) {
  .ripple-container {
    bottom: 61px;
    right: 68px;
  }
}

.b-hometown__section .-notes {
  max-width: 730px;
}
.b-hometown__section .e-head {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  letter-spacing: -1px;
  margin: 0;
}
.b-hometown__section .e-caption {
  border-bottom: 1px dashed #fff;
  border-top: 1px dashed #fff;
  font-size: 1.6rem;
  margin: 2em 0;
  padding: 1.5em;
}
.b-hometown__section .-notes p {
  line-height: 2;
}
.b-hometown__section .-notes p,
.b-hometown__section .-notes .e-img {
  display: block;
  margin-top: 30px;
  max-width: 100%;
}
.b-hometown__section .-notes .e-img.m-01 {
  max-width: 450px;
}
.b-hometown__section .-notes .e-img.m-02 img {
  max-width: 650px;
  width: 100%;
}
.b-hometown__section .-notes .-flex {
  display: flex;
  gap: 20px;
}
.b-hometown__section .-notes .e-img.m-03 {
  max-width: 650px;
}
.b-hometown__section .-notes .e-img.m-04,
.b-hometown__section .-notes .e-img.m-05 {
  max-height: 173.5px;
}
.b-hometown__section .-notes .e-img.m-06,
.b-hometown__section .-notes .e-img.m-07 {
  margin-bottom: auto;
  max-width: 50%;
}

@media screen and (max-width: 1023px) {
  .b-hometown__section .e-map {
    display: flex;
    justify-content: flex-end;
  }
  .b-hometown__section .e-map .e-head {
    font-size: 3.5rem;
    left: 0;
    position: absolute;
  }
  .b-hometown__section .e-map img {
    max-width: 325px;
    width: 100%;
  }
  .b-hometown__section .-inner {
    flex-direction: column;
    margin-top: 90px;
  }
  .b-hometown__section .-notes .e-img {
    margin-top: 12px;
    width: 100%;
  }
  .b-hometown__section .-notes .e-img.m-05 {
    margin-top: 20px;
    max-height: unset;
    width: 50%;
  }
  .b-hometown__section .-notes .-flex {
    flex-direction: column;
    gap: 0;
  }
  .b-hometown__section .-notes .e-img.m-06,
  .b-hometown__section .-notes .e-img.m-07 {
    max-width: 100%;
  }
}

.b-bottom__info .-gradation {
  background: linear-gradient(#05114c, #e4f2f6);
  height: 150px;
  width: 100%;
}
.b-bottom__info .b-menicon-dna__intro {
  background-color: #ffffff80;
  color: var(--color-black);
}
.b-bottom__info .b-menicon-dna__intro img {
  top: calc(-50% + -10px);
}
.b-bottom__info .b-menicon-dna__intro p {
  font-size: 2.2rem;
}
.b-bottom__info .b-menicon-dna__intro .e-link {
  align-items: center;
  background-color: var(--color-blue);
  border-radius: 30px;
  color: #fff;
  display: flex;
  font-size: 2rem;
  font-weight: 500;
  gap: 10px;
  justify-content: center;
  margin: 20px auto 0;
  max-width: 295px;
  padding: 3px 0 4px;
}
.b-bottom__info .b-menicon-dna__intro .e-arrow {
  background-color: unset;
  padding: 0;
  width: 20px;
}
.b-bottom__info .b-menicon-dna__exhibition {
  margin-bottom: 0;
  padding-top: 80px;
}
@media screen and (max-width: 1023px) {
  .b-bottom__info .b-menicon-dna__intro img {
    top: -50px;
  }
  .b-bottom__info .b-menicon-dna__intro p {
    font-size: 1.5rem;
  }
}

/* =========================

  お問い合わせページ

========================= */

.b-contact__wrap {
  background-color: #ffffff;
  border-radius: 40px;
  box-shadow: 0 0 10px #55609333;
  margin-bottom: 230px;
  padding: 55px 75px;
}
.b-contact__wrap .e-caption {
  font-size: 1.5rem;
  line-height: 1.76;
}
.b-contact__wrap .e-caption span {
  display: block;
  font-size: 1.2rem;
  margin-top: 2em;
}

@media screen and (max-width: 1023px) {
  .b-contact__wrap {
    margin-bottom: 130px;
    padding: 45px 25px;
  }
}

/* ---- Snow Monkey Forms調整 ----------------- */
.smf-form {
  margin-top: 20px;
}
.smf-item__label__text {
  font-weight: 600;
}
.smf-item__label__text::before {
  background-color: var(--color-orange);
  content: "必須";
  color: #fff;
  display: inline-block;
  font-size: 1.3rem;
  margin-right: 5px;
  padding: 2px 5px;
}
.contact .smf-item:last-child {
  border: none !important;
}
.contact .smf-item:last-child .smf-item__col--label {
  display: none;
}
.contact .smf-item:last-child .smf-item__col--controls,
.contact .smf-complete-content {
  align-items: center;
  background-color: var(--color-light-gray);
  border-radius: 30px 30px 0 0;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 0;
  max-width: 100%;
  padding: 25px;
  width: 100%;
}
.contact .smf-complete-content {
  flex-direction: column;
  padding-bottom: 0;
}
.contact .smf-complete-content .contact-text {
  color: #aa0000;
  font-size: 1.4rem;
}
.smf-item.m-agree .smf-item__label__text::before,
.smf-item:last-child .smf-item__label__text::before {
  display: none;
}
.smf-form--business .smf-item__col--label {
  background-color: transparent !important;
  border: unset !important;
}
.smf-item__col--label,
.smf-item__col--controls {
  padding: 20px 0 !important;
}
.contact .smf-select-control,
.contact .smf-text-control__control,
.contact .smf-textarea-control__control {
  background-color: transparent;
  border: 1px solid #999;
  border-radius: 10px;
  display: inline-block;
  margin: 0 auto 0 0;
  padding: 10px;
  position: relative;
}
.contact .smf-select-control__control {
  background-color: transparent;
  padding-right: 30px;
  position: relative;
}
.contact .smf-select-control .smf-select-control__toggle {
  border-bottom: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
  display: block;
  height: 10px;
  right: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
}

@media screen and (max-width: 1023px) {
  .contact .smf-textarea-control__control {
    width: 100%;
  }
}

.smf-item {
  border: none !important;
  border-top: 1px dashed #999 !important;
}
.smf-item.name-line .smf-item__controls {
  display: flex;
  gap: 10px;
  max-width: 100%;
}
.smf-item.name-line .smf-text-control__control {
  width: 100%;
}
.smf-item .smf-placeholder {
  display: flex;
  flex-direction: column-reverse;
}
.smf-item .smf-placeholder:has(.pref) {
  margin-top: 0.75em;
}
.smf-item.flex-cap .smf-placeholder {
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
.smf-control-description {
  font-size: 1.5rem !important;
  margin: 1em 0 0.5em;
}
.smf-textarea-control__control .long-area {
  max-width: 100%;
  width: 30em;
}
.contact .smf-action {
  background-color: var(--color-light-gray);
  border-radius: 0 0 30px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 0 !important;
  padding: 0 0 40px;
  width: 100%;
}
.contact .smf-button-control {
  display: flex;
  justify-content: center;
  margin: 0 !important;
  max-width: 350px;
  width: 100%;
}
.contact .smf-action .smf-button-control__control {
  background-color: var(--color-blue);
  background-image: unset;
  border: none;
  border-radius: 30px;
  color: #fff;
  font-size: 1.5rem;
  max-width: 350px;
  padding: 10px 0;
  width: calc(100% - 40px);
}
.contact .smf-action .smf-button-control__control::before,
.contact .smf-action .smf-button-control__control::after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  transition: 0.4s;
}
.contact .smf-action .smf-button-control__control::before {
  border-bottom: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  height: 10px;
  transform: translateY(-50%) rotate(-45deg);
  width: 10px;
}
.contact .smf-action .smf-button-control__control::after {
  background-color: #fff;
  height: 1.5px;
  transform: translateY(-50%);
  width: 12px;
}
.contact .smf-action .smf-button-control__control:hover::before,
.contact .smf-action .smf-button-control__control:hover::after {
  right: 15px;
}

/* ---- Snow Monkey Forms調整 ここまで ----------------- */

/* =========================

  プライバシーポリシー／サイトポリシー

========================= */
.policy h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.policy p {
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 2;
}

/* =========================
  メディアクエリ
========================= */
@media screen and (min-width: 1024px) {
  /* PC */
  .m-pc {
    display: block;
  }
  .m-sp {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  /* Tablet */
  .m-pc {
    display: none;
  }
  .m-sp {
    display: block;
  }
}
@media screen and (max-width: 540px) {
  /* SP */
}
