@charset "UTF-8";
/* CSS Document */

html {
  font-size: 62.5%;
}

p {
  font-size: 1.6rem;
  line-height: 2;
}

a {
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

body {
  background-color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #333;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.pc {
  display: none;
}

@media (min-width: 768px) {
  .pc {
    display: block;
  }
  
  .sp {
    display: none;
  }

}

.mincho {
  font-family: shippori-mincho, sans-serif, 'Hiragino Mincho Pro',serif;
  line-height: 1.8;
  letter-spacing: 0.3em;
  font-weight: 400;
}

.red {
  color: #D3381C;
}

.bg-red {
  background-color: #D3381C;
}

.f-18b {
  font-size: 1.8rem;
  font-weight: 600;
}

.f-14 {
  font-size: 1.4rem;
}

.text-r {
  text-align: right;
}

/* 見出し */
.title-wrapper {
  margin-inline: auto;
}

.title-wrapper__en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 4rem;
  text-align: center;
  line-height: 1;
  color: #D3381C;
}

.title-wrapper__jp {
  font-size: 1.4rem;
  text-align: center;
  padding-top: 4px;
}

@media (min-width: 768px) {

  .title-wrapper__en {
    font-size: 7rem;
  }
  .title-wrapper__jp  {
    padding-top: 10px;
    font-size: 1.6rem;
  }
}

/* ボタン */

/* 白ボタン */

.present-regenerativemedicine-content__btn {
  display: flex; /* フレックスボックスでボタンを配置 */
  justify-content: flex-end; /* 右寄せ */
  width: 100%; /* 必要に応じて幅を指定 */
}

.button-container {
  display: flex;
  align-items: center;
}

.button-container {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a.btn_1 {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  padding: 1rem 2rem 1rem 2.5rem;
  height: 45px;
  min-width: 120px;
  max-width: 200px;
  display: flex;
  flex-basis: 100%;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  color: #D3381C;
  border: solid #D3381C 1px;
  position: relative;
  transition: 0.5s;
}
a.btn_1::after {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid #D3381C;
  border-right: 2px solid #D3381C;
  transform: rotate(45deg);
}

a.btn_1:hover {
  background: #D3381C;
  color: #fff;
}

a.btn_1:hover::after {
  border-top-color: #fff;
  border-right-color: #fff;
}

button.menu-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* 赤ボタン */

a.btn_1-lage {
  min-width: 160px;
  max-width: 300px;
  margin: 20px auto;
}

a.btn_1-red {
  background-color: #D3381C;
  color: #fff;
  border: none;
}

a.btn_1-red:hover {
  opacity: 0.7;
}

a.btn_1-red::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

a.btn_1-mail::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url('../img/img-mail.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

a.btn_1-calendar::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url('../img/img-calendar.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

@media (min-width: 400px) {
  a.btn_1-lage {
    min-width: 280px;
  }
}

@media (min-width: 768px) {
  .present-cv-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 24px auto 40px;
  }

  a.btn_1-lage {
    margin: 0 auto;;
  }
}

/* 丸ボタン */

.btn2 {
  flex: 0 1 40%;
}

.btn2-flex {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin: 20px 16px 20px 0;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

.btn2-arrow-wrapper {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border: 1px solid #D3381C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn2-arrow {
  position: relative;
  width: 20px;
  height: 2px;
  background-color: #D3381C;
  border-radius: 2px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn2-arrow::before,
.btn2-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1px;
  width: 8px;
  height: 2px;
  background-color: #D3381C;
  border-radius: 2px;
  transform-origin: right center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn2-arrow::before {
  transform: translateY(-50%) rotate(45deg);
}

.btn2-arrow::after {
  transform: translateY(-50%) rotate(-45deg);
}

.btn2-flex:hover {
  color: #D3381C;
}

.btn2-flex:hover .btn2-arrow-wrapper {
  background-color: #D3381C;
  border-color: #D3381C;
}

.btn2-flex:hover .btn2-arrow,
.btn2-flex:hover .btn2-arrow::before,
.btn2-flex:hover .btn2-arrow::after {
  background-color: #ffffff;
}



/* ヘッダー */

header {
  position: fixed;
  height: 100px;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.scrolled {
  background-color: #fff;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  background-color: transparent;
}

.header-logo {
  width: 60px;
  margin: 25px 40px 20px 40px;
}

.header-logo a {
  display: block;
  width: 100%;
}

.menu_list {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  margin: 45px 40px 0 0;
}

.menu_list li {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.menu-label {
  display: none;
}

@media screen and (max-width: 938px) {
  header{
    height: 64px;
  }
  .header-logo {
      width: 40px;
      margin: 10px 20px 10px 16px; 
  }
  .navigation {
      height: 100vh;
      background-color:#F5F6F9;
  }
  .menu-btn {
      position: absolute;
      top: 5px;
      right: 10px;
      display: flex;
      height: 33px;
      width: 50px;
      justify-content: center;
      align-items: center;
      z-index: 90;
  }
  .menu-btn::before {
      color: #fff;
      bottom: -16px;
      position: absolute;
      font-size: 14px;
  }
  .menu-btn.active::before {
      color: #fff;
  }
  .menu-btn span,
  .menu-btn span::before,
  .menu-btn span::after {
      content: '';
      display: block;
      height: 1px;
      width: 38px;
      background-color: #333;
      position: absolute;
      transition: .3s;
  }
  .menu-btn span::before {
      bottom: 8px;
  }
  .menu-btn span::after {
      top: 8px;
  }
  .menu-btn.active span {
      background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
  }
  .menu-btn.active span::before {
      bottom: 0;
      transform: rotate(45deg);
  }
  .menu-btn.active span::after {
      top: 0;
      transform: rotate(-45deg);
  }

  .menu-btn.active span {
      background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
  }
  .menu-btn.active span::before {
      bottom: 0;
      transform: rotate(45deg);
  }
  .menu-btn.active span::after {
      top: 0;
      transform: rotate(-45deg);
  }
  .navigation{
      display: none;
      height: 100vh;
      background: #F5F6F9;
      width: 100%;
      position: fixed;
      padding: 16px;
      right: 0;
  }

  .navigation.active{
      display: block;
  }

  .menu_list-item{
      margin-top: 10px;
  }

  .menu_list-item a{
      color:#fff;
  }

  .header-wrap {
      justify-content: start;
  }

  .menu_list {
      display: block;
      padding-left: 20px;
  }
  .menu_list li {
      font-size: 1.6rem;
      padding: 0 0 30px 20px;
  }

  /*　もくじ文言 */
  .menu-label {
    display: block;
    position: absolute;
    top: 33px; /* アイコンの下に配置 */
    right: 19px;
    color: #333;
    font-size: 10px;
    transition: color 0.3s;
    z-index: 100;
  }
  .menu-btn.active + .menu-label {
    color: #333; /* メニューが開いたときの色 */
  }
}

/* FV */
.fv-section {
  width: 100%;
  height: 100vh;
  min-height: 500px;
}

.fv-inner {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.vid-contents video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 9 / 16; /* 縦横比を指定 */
  transform: translate(-50%, -50%);
  z-index: -100;
}

.desktop-video {
  display: none;
}

@media screen and (min-width:1100px)  {

  .mobile-video {
    display: none;
  }

  .desktop-video {
    display: block;
  }

  .vid-contents video {
    aspect-ratio: 16 / 9; /* 縦横比を指定 */
  }
  
}

/* FV直下 メッセージ1 */
.message-1__inner {
  /* background-color: #D3381C; */
  background-image: radial-gradient(circle, rgba(211, 56, 28, 1), rgba(186, 60, 37, 1) 80%);
  padding: 45px 20px 56px;
  margin-bottom: 48px;
}

.message-1__logo {
  width: 80px;
  height: 76px;
  margin:0 auto 32px;
}
.message-1__logo_white img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(308deg) brightness(105%) contrast(101%);
}

.message-1_heading {
  margin-inline: auto;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.message-1_heading_lage {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.message-1__text-wrapper {
  margin: 32px 0 56px;
}

.message-1__text {
  font-size: 1.6rem;
  margin-bottom: 24px;
  line-height: 2;
  text-align: center;
  color: #fff;
}

@media screen and (min-width:768px)  {

  .message-1__inner  {
    padding: 100px 20px 120px;
  }

  .message-1__logo {
    width: 160px;
    height: auto;
  }

  .message-1_heading {
    font-size: 2.4rem;
  }

  .message-1_heading_lage {
    font-size: 4rem;
  }
}

/* メッセージ2 */
.message-2__inner {
  margin-bottom: 48px;
}

.message-2-content {
  padding: 0 20px;
  margin: 40px 0 48px;
}

.message-2_heading {
  font-size: 18px;
  font-weight: 600;
  color: #D3381C;
}

.message-2-wrapper__title {
  padding: 0 20px;
}

.message-2-img {
  margin: 40px auto 48px;
  width: 80%;
  max-width: 320px;
}

.message-2__text-wrapper {
  margin-top: 32px;
}

.message-2__text {
  padding-bottom: 16px;
} 

.sign-wrapper {
  width: 100%;
  height: 100px;
  position: relative;
}

.sign-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: auto;
}

.message-img {
  max-width: 769px;
  margin: 0 auto ;
  }

.message-img img{
  width: 100%;
  height: 720px;
  object-fit: cover;
}

@media (min-width: 440px) {

  .message-img img {
    aspect-ratio: 390 / 720;
    height: auto;
  }
}

@media (min-width: 768px) {

  .message-1__inner,.message-2__inner {
    margin-bottom: 0;
  }

  .message-2__flex {
    padding: 0 40px;
    margin: 120px 0;
    max-width: 1200px;
    gap: 120px;
    margin-inline:auto ;
    display: flex;
    justify-content: center;
  }

  .message-2-wrapper__title {
    flex-basis: 30%;
  }

  .title-wrapper__right h2,.title-wrapper__right p {
    text-align: right;
  }
  
  .message-2-content {
    padding: 0;
    margin: 0;
    flex-basis: 70%;
  }

  .message-2_heading {
    font-size: 2.4rem;
  }

  .message-2__inner {
    margin-bottom: 120px;
  }

  .message-img {
    max-width: 100%;
  }

  .message-img img {
    aspect-ratio: 1920 / 640;
    height: auto;
    width: 100%;
  }
}

/* 動画 */
.video__inner {
  margin: 40px 0 48px;
}

.video-wrapper {
  margin-top: 40px;
}

iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  }

@media (min-width: 768px) {
  .video-wrapper {
    margin-top: 56px;
  }
}

/* ヒストリー */
.history__inner {
  padding: 0 20px;
  margin-bottom: 48px;
}

.history-lead__text {
  text-align: center;
  margin: 40px 0 32px;
}

.history-wrapper {
  position: relative;
  border-left: solid #D3381C 2px;
  padding:40px 0 1px 30px;
}

.history-wrapper::after {
  position: absolute;
  content: "";
  height: 15px;
  background: #D3381C;
  width: 2px;
  position: absolute;
  bottom: -15px;
  left: -2px;
}

.history-content {
  margin-bottom: 40px;
}

.history-content__date {
  font-size: 3rem;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #D3381C;
  margin-bottom: 10px;
}

.history-content__lead {
  font-size: 1.4rem;
}

.history-content__title {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.history-img__caption {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.history-content__date {
  position: relative;
  width: 100%;
}

.history-content__date::after {
  content: "";
  height: 2px;
  background: #D3381C;
  width: 20px;
  position: absolute;
  top:15px;
  left: -30px;
  margin: auto;
}

.history-content__unit {
  margin-top: 32px;
}

.history-last-wrapper {
  padding-left: 30px;
}

.history-last-content__date::after {
  top:15px;
  left: -30px;
}

.history-img-last__caption {
  margin-top: 16px;
}

.history-last-content__logo {
  width: 80px;
  height: auto;
  margin:16px auto;
}

/* ふわっと出てくる動き */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-in-out, transform 1s ease-in-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}


@media (min-width: 768px) {
  .history__inner {
    padding: 0 40px;
    margin: 160px 0 0 ;
  }

  .history-wrapper {
    padding: 120px 0 0 0 ;
    border: none;
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    position: relative;
  }

  .history-content {
    flex-basis: 50%;
  }

  .history-wrapper::before {
    content: "";
    height: 100%;
    background: #D3381C;
    width: 2px;
    position: absolute;
    left: 0;
    right: 0;
    top: 15px;
    margin: 0 auto;
  }

  .history-right {
    text-align: left;
  }

  .history-left {
    text-align: right;
  }

  .history-left__inner {
    padding-right: 120px;
  }
  
  .history-right__inner {
    padding-left: 120px;
  }

  .history-right {
    margin-top: 200px;
  }

  .history-content_2022 {
    margin-top: 700px;
  }

  .history-content_2024 {
    margin-top: 1400px;
  }

  .history-content__date {
    font-size: 4rem;
  }

  .history-content__title {
    font-size: 2.4rem;
  }

  /* 西暦横飾り*/
  .history-content__date::after {
    content: none;
  }
  
  .history-content__date_right {
    position: relative;
    width: 100%;
  }
  .history-content__date_right::after {
    content: "";
    height: 2px;
    background: #D3381C;
    width: 100px;
    position: absolute;
    left: -120px;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .history-content__date_left {
    position: relative;
    width: 100%;
  }

  .history-content__date_left::after {
    content: "";
    height: 2px;
    background: #D3381C;
    width: 100px;
    position: absolute;
    right: -120px;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .history-last-content__date,.history-last-content__lead,.history-content-last__title  {
    text-align: center;
  }

  .history-last-content {
    margin-top: 48px;
  }

  .history-last-wrapper {
    padding-left: 0;
  }

  .history-wrapper::after {
    content: none;
  }

  .history-content__unit {
    margin-top: 50px;
  }

  /*2005コンテンツ*/
  .history-last-content-inner-flex {
    margin: 48px auto 0;
    max-width: 1200px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
  }

  .history-last-content__logo {
    margin-top: 40px;
  }

  .history-img-last__caption p {
    padding-bottom: 16px;
  }

}

/* プレゼント */
.present__inner {
  border: solid 10px #D3381C;
}

.present__white-bg {
  padding: 50px 10px;
}

.present__heading {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 40px;
}

.subject-wrapper {
  margin: 32px auto;
}

.subject-wrapper__date {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 20px;
}

.subject-wrapper__border {
  color: #fff;
  display: inline-block;
  min-width: 110px;
  padding: 5px;
}

.subject-wrapper__text {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 4px;
  color: #D3381C;
}

.subject-wrapper__text_strikethrough {
  text-decoration: line-through;
}

.present-title-wrapper {
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: solid #D3381C 1px;
}

.present-title-wrapper {
  color: #D3381C;
}
.present-title-wrapper__number {
  font-size: 3.2rem;
}

.present-title-wrapper__title {
  font-size: 2.2rem;
}

.present-alert {
  font-size: 1.4rem;
  margin-top: 24px;
}

.present-alert li::before {
  content: "※";
  color: #D3381C
}

@media (min-width: 500px) {
  .present__white-bg {
    padding: 50px 20px;
  }
}

@media (min-width: 768px)  {
  .present__inner {
    margin-top: 160px;
    background-color: #D3381C;
    border: none;
  }

  .present__white-bg {
    padding: 80px 50px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-top: solid #D3381C 100px;
    border-bottom: solid #D3381C 140px;
    border-right: 20px #D3381C solid;
    border-left: 20px #D3381C solid ;
  }

  .subject-wrapper__date {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .present__heading {
    font-size: 2.4rem;
  }

  .present-title-wrapper__number {
    font-size: 4rem;
  }

  .present-title-wrapper__title {
    font-size: 2.4rem;
    margin-right: 24px;
  }

  .present-title-wrapper {
    display: flex;
    align-items: center;
  }
}

/* アニバーサリーカード */
.present-anniversarycard-content__top {
  font-weight: 600;
  margin-bottom: 16px;
}

.present-anniversarycard__inner {
  margin-bottom: 40px;
}

.present-img {
  max-width: 1000px;
  margin:  30px auto;
}

@media (min-width: 768px)  { 
  .present-anniversarycard__inner {
    max-width: 1080px;
    margin: 56px auto 48px;
  }
}

/* プリペイドカード */

.present-presentcard__inner {
  margin-bottom: 40px;
}

.subject-wrapper__date_left {
  text-align: left;
}

.subject-wrapper__red-border {
  text-align: center;
  color: #D3381C;
  background-color: #fff;
  border: solid #D3381C 1px;
}

.subject-wrapper__text_16 {
  font-size: 1.6rem;
}

.presentcard-img-wrapper {
  width: 100%;
  height: 100px;
  position: relative;
}

.presentcard-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: auto;
}

@media (min-width: 768px) {
  .subject-wrapper__date_left {
    justify-content: flex-start;
  }

  .present-presentcard__inner {
    max-width: 1080px;
    margin: 56px auto 48px;
  }
}

/* 再生医療 */

.present-regenerativemedicine__inner {
  margin-bottom: 40px;
}

.present-regenerativemedicine-content {
  padding-bottom: 24px;
  margin-bottom: 24px;
  background-image: repeating-linear-gradient(90deg, #A5A5A5, #A5A5A5 6px, transparent 6px, transparent 12px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  }

.present-regenerativemedicine-content__lead {
  font-size: 1.4rem;
  color: #606060;
  margin-bottom: 4px;
}

.present-regenerativemedicine-content__heading {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.present-regenerativemedicine-content__price {
  font-size: 1.4rem;
  font-weight: 500;
}

.present-regenerativemedicine-content__price_large {
  font-size: 1.8rem;
  color: #D3381C;
}

.present-regenerativemedicine-content__price_space {
  padding-left: 20px;
}

.present-regenerativemedicine-content__price_space-bottom {
  margin-bottom: 16px;
}

@media (min-width: 768px) {

  .present-regenerativemedicine-content__price_space-bottom {
    margin-bottom: 0;
  }

  .present-regenerativemedicine__inner {
    max-width: 1080px;
    margin: 56px auto 48px;
  }

  .subject-wrapper__date_left {
    justify-content: flex-start;
  }

  .present-regenerativemedicine-content__flex {
    display: flex;
  }
  
  .present-regenerativemedicine-content__heading {
    flex-basis: 30%;
  }

  .present-regenerativemedicine-content__price {
    flex-basis: 40%;
  }

  .present-regenerativemedicine-content__btn {
    flex: 0 1 50%;
  }

  .present-regenerativemedicine-content__price {
    font-size: 1.6rem;
  }

  .present-regenerativemedicine-content__price_large {
    font-size: 2rem;
  }
  
}

/* 紹介プレゼント */

.present-refer__inner {
  margin-bottom: 40px;
}

.present-refer-wrapper {
  margin-top: 16px;
}

.present-refer-wrapper__text {
  text-align: center;
  padding: 16px 0;
  margin-bottom: 10px;
  border: solid 1px #D3381C;
}

.img-cross {
  width: 15px;
  height: auto;
  margin: 0 auto 10px;
}

/* セットメニュー */

.present-setmenu-a {
  margin-top: 40px;
}

.present-setmenu-wrapper {
  padding: 20px 10px;
  margin-top: 32px;
  border: solid 1px #D3381C;
}

.present-setmenu-text-title {
  margin-bottom: 24px;
}

.present-setmenu-wrapper__lead {
  font-size: 1.4rem;
  color: #606060;
  margin-bottom: 4px;
}

.present-setmenu-text__heading {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.present-setmenu-content__btn {
  margin: 16px 0;
}

.present-setmenu-group {
  padding-bottom: 24px;
  margin-bottom: 24px;
  background-image: repeating-linear-gradient(90deg, #A5A5A5, #A5A5A5 6px, transparent 6px, transparent 12px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}

@media (min-width: 768px) {

  .present-regenerativemedicine-content__price_space-bottom {
    margin-bottom: 0;
  }

  .present-setmenu__inner {
    max-width: 1080px;
    margin: 56px auto 48px;
  }

  .present-setmenu-wrapper {
    padding: 40px;
    margin-top: 32px;
    border: solid 1px #D3381C;
  }

  .present-setmenubtn-wrapper {
    display: flex;
    justify-content: space-between;
  }

  .present-setmenu-title__top {
    margin-bottom: 20px;
  }

  .present-setmenu-group__flex {
    display: flex;
    justify-content: space-between;
  }

  .present-setmenu-group__lage {
    font-size: 2rem;
  }

}

/* 30周年初診料無料 */

.present-free {
  max-width: 800px;
  margin-inline: auto;

}

/* クラブ動線 */

.club-img {
  margin-top: 32px;
}

@media (min-width: 768px) {
  .present-refer__inner {
    max-width: 1080px;
    margin: 56px auto 48px;
  }
 
  .present-refer-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .present-refer-wrapper__text {
    flex-basis: 40%;
    min-height: 132px;
    position: relative;
    width: 100%;
  }

  .present-refer-wrapper__text p {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }

  .club-img {
    max-width: 830px;
    margin: 56px auto 16px;
  }

  .present-alert_club {
    text-align: center;
  }

}

/* プレゼントcv（アイコンあり） */

.present-cv__inner {
  margin: 40px auto;
}

.present-cv__title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 16px;
}

.present-cv__lead {
  font-weight: 600;
  text-align: center;
}

.present-cv__btn {
  flex-basis: 20%;
}

@media (min-width: 768px) {
  .present-cv__inner{
    margin: 60px auto 0;
  }
}

/* プレゼントcv（アイコンなし） */

a.btn_1-simple-cv {
  min-width: 240px;
  margin: 30px 0 30px auto;
}

/* おすすめ */
.recommend-inner {
  margin: 40px 0 48px;
  padding: 0 20px;
}

.home-recommend-main {
  margin: 40px auto 0;
}

@media (min-width: 768px) {
  .recommend-inner {
    margin: 160px 0 ;
  }

  .home-recommend-main {
    max-width: 1200px;
    margin: 56px auto 0;
  }
}

/* footer */
.footer {
  border-top: solid #D3381C 1px;
}

.footer__inner {
  padding: 30px 20px 20px;
}

.footer-logo-wrapper {
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.footer-30th {
  width: 50px;
}

.footer-jc {
  width: 150px;
}

.footer-logo-wrapper__text {
  font-size: 1.2rem;
  padding-top: 10px;
}

.footer-sns-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap:24px
}

.footer-sns-list__instagram,.footer-sns-list__facebook,.footer-sns-list__line {
  width: 40px;
  height: 40px;
}

.footer-sns-list__x {
  width: 25px;
  height: 25px;
}

.footer-sns-list__yu {
  width: 40px;
  height: 27px;
}

.footer-menu-list {
  font-size: 1.4rem;
}

.footer-menu-list li {
  margin-bottom: 10px;
  cursor: pointer;
}

.footer-navigation {
  margin: 40px 0;
}

.footer-copyright {
  font-size: 1rem;
  text-align: center;
}

@media (min-width: 768px)  {
  .footer__inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-menu-list {
    margin: 0 auto;
    display: flex;
    gap: 32px;
    justify-content: end;
  }
}

.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
  width:94%;
   margin:0 auto;
}

.slider img {
   width:100%;/*スライダー内の画像を横幅100%に*/
   height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
   margin:0 10px;
}

/*ドットナビゲーションの設定*/

.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 5px;
  height: 5px;
  display: inline-block;
  border-radius: 50%;
  background: #ccc;
  padding: 0;
  border: none;
}

.slick-dots .slick-active button {
  background: #333;
}

/* 文字用 */
.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}

/* フローティングバナー */

/* バナー全体 */
#banner {
  position: fixed;
  display: none;
  width: 80%;
  max-width: 240px;
  bottom: 10px;
  right: 10px;
  z-index: 99998;
}

@media (min-width: 768px) {
  #banner {
    width: 30%;
    max-width: 420px;
    bottom: 20px;
    right: 20px;
  }
}

#banner-close {
  position: absolute;
  top: -12px;
  right: 5px;
  width: 24px;
  height: auto;
  aspect-ratio: 1 / 1;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
  padding: 0;
}

@media (min-width: 768px) {
  #banner-close {
    width: 32px;
  }
}

#banner-close:hover {
  background-color: rgba(0, 0, 0, 0.8);
}


.present__white-cover {
  position: relative;
}

.present__white-cover::before {
  content: "キャンペーンは終了しました";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.9);
  width: 80%;
  padding: 10px 20px;
  text-align: center;
  font-size: 3.0rem;
  font-weight: bold;
  color: #D3381C;
  border-radius: 6px;
  z-index: 20;
}

.present__white-cover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.6); /* 半透明の白 */
  backdrop-filter: blur(2px); /* お好み。ぼかしを入れたい時 */
  z-index: 10;
  pointer-events: auto; /* クリック不可 */
}