@charset "UTF-8";
.pink {
  color: #C63283;
}

header {
  width: 100%;
  z-index: 8888;
  /* iOS用に -webkit- も併記（短く） */
}
@media (orientation: portrait) and (max-width: 576px), (max-height: 450px) {
  header {
    position: fixed;
    background: white;
    top: 0px;
    max-width: 576px;
  }
}
@media (orientation: landscape) and (max-height: 450px) {
  header {
    max-width: 100lvw;
    left: 0px;
  }
}
header #div_newsticker {
  background: #C63283;
  color: #fff;
  overflow: hidden;
  font-size: 14px;
  line-height: 1;
}
header #div_ticker_mover {
  white-space: nowrap;
  display: block;
  will-change: transform;
}
header #div_ticker_row {
  display: inline-block;
  padding: 10px 0;
}
header #div_ticker_row .item {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 0 16px;
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--w)));
  }
}
header #div_headbar {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
}
header #div_headbar .left {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  font-weight: 500;
  color: #212121;
}
header #div_headbar .right #img_nav {
  padding: 23px 10px;
  transform: translateX(11.5px);
  display: none;
}
@media (orientation: portrait) and (max-width: 576px), (max-height: 450px) {
  header #div_headbar .right #img_nav {
    display: block;
  }
}
@media screen and (max-width: 576px), (max-height: 450px) {
  header #div_headbar .left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }
  header #div_headbar .left img {
    max-width: 35vw;
  }
}
@media (orientation: landscape) and (max-height: 450px) {
  header #div_headbar {
    padding: 0px 80px;
  }
}

#div_carpet #div_handybutton {
  display: none;
  width: 100%;
  max-width: 576px;
  overflow: hidden;
  position: fixed;
  bottom: 0px;
  z-index: 1;
}
@media (orientation: portrait) and (max-width: 576px), (max-height: 450px) {
  #div_carpet #div_handybutton {
    display: block;
  }
}
@media (orientation: landscape) and (max-height: 450px) {
  #div_carpet #div_handybutton {
    display: none;
  }
}
#div_carpet #div_handybutton #div_handybutton_gridder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 48px;
}
#div_carpet #div_handybutton #div_handybutton_gridder .a_button_large {
  width: auto;
  height: 100%;
  margin: 0px;
  padding: 0px 20px 0px 0px;
  border-radius: 0px;
  border: none;
  display: grid;
  grid-template-columns: calc(100% - 28px) 28px;
  justify-content: end;
  gap: 0px;
  text-align: center;
}

footer {
  background-color: #212121;
  color: white;
  text-align: center;
  font-size: 12px;
  padding: 4px 0px;
}

#div_modal {
  position: fixed;
  inset: 0;
  display: none;
  /* ← 初期は隠す */
  z-index: 9999;
}

#div_modal.is-open {
  display: flex;
  /* ← 開いたときにだけ flex で中央寄せ */
  align-items: center;
  justify-content: center;
}

#div_modal_backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

#div_modal_content {
  position: relative;
  width: min(90vw, 960px);
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

#div_modal_close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
}

#div_video_wrap,
#div_video_wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

#div_front_desk {
  padding-bottom: 100px;
}
#div_front_desk #section_hero {
  margin-bottom: 100px;
}
@media screen and (max-width: 576px), (max-height: 450px) {
  #div_front_desk #section_hero {
    margin-bottom: 40px;
  }
}
#div_front_desk #section_hero #div_hero_heart {
  aspect-ratio: 264/80;
  background-image: url("../image/asset/asset_heart.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  margin: 0px auto;
}
#div_front_desk #section_hero #div_hero_slider {
  width: calc(100% - 40px);
  max-width: 100%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 577/497;
}
#div_front_desk #section_hero #div_hero_slider .swiper-wrapper,
#div_front_desk #section_hero #div_hero_slider .swiper-slide {
  height: 100%;
}
#div_front_desk #section_hero #div_hero_slider .swiper-slide {
  position: relative;
  overflow: hidden;
}
#div_front_desk #section_hero #div_hero_slider .slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#div_front_desk #section_hero #hero-pagination {
  position: static !important;
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
#div_front_desk #section_hero .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 2px solid #C63283;
  opacity: 1;
  margin: 0 6px !important;
}
#div_front_desk #section_hero .swiper-pagination-bullet-active {
  background: #C63283;
}
#div_front_desk #section_hero .swiper-lazy-preloader {
  --swiper-preloader-color: #C63283;
}
@media (prefers-reduced-motion: reduce) {
  #div_front_desk #section_hero .swiper,
  #div_front_desk #section_hero .swiper-wrapper,
  #div_front_desk #section_hero .swiper-slide {
    scroll-behavior: auto;
  }
}
#div_front_desk #section_hero h1 {
  font-size: 34px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0px auto;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.368627451);
}
@media screen and (max-width: 576px), (max-height: 450px) {
  #div_front_desk #section_hero h1 {
    font-size: 24px;
    text-align: center;
  }
}
#div_front_desk #section_movie #div_movie {
  height: 324px;
  background-image: url("../image/front/movie.png?3");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#div_front_desk #section_movie #div_movie .layer {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3215686275);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 60%, rgb(0, 0, 0) 100%);
  display: flex;
  cursor: pointer;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
#div_front_desk #section_movie #div_movie .layer .title {
  font-size: 20px;
  color: white;
  text-shadow: 1px 1px 5px #000000;
  font-weight: 600;
  margin: 15px 0px 0px 15px;
  position: absolute;
}
#div_front_desk #section_movie #div_movie .layer .title span {
  font-size: 14px;
}
#div_front_desk #section_movie #div_movie .layer .playbutton {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../image/common/side_right/asset_play.svg");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  transition: all 0.2s;
}
#div_front_desk #section_movie #div_movie .layer:hover .playbutton {
  transform: scale(0.8);
}
#div_front_desk #section_movie #div_movie #div_band {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 28px;
  color: #C63283;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.7607843137);
  transition: all 0.2s;
}
#div_front_desk #section_movie #div_movie #div_band .title {
  padding-left: 20px;
  transition: all 0.2s;
}
#div_front_desk #section_movie #div_movie #div_band::after {
  content: "";
  display: block;
  background-image: url("../image/asset/asset_play.svg");
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: center;
  background-color: #C63283;
  height: 100%;
  width: 84px;
  transition: all 0.2s;
}
#div_front_desk #section_movie #div_movie:hover #div_band {
  background-color: rgba(198, 50, 131, 0.6);
  color: white;
}
#div_front_desk #section_movie #div_movie:hover #div_band::after {
  background-size: 20%;
}
@media screen and (max-width: 576px), (max-height: 450px) {
  #div_front_desk #section_movie #div_movie {
    height: unset;
    aspect-ratio: 16/10;
  }
}
#div_front_desk #section_movie p.caption {
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
}
#div_front_desk #section_movie p.caption img {
  display: inline-block;
  max-height: 18px;
  margin-right: 2px;
  vertical-align: sub;
}
#div_front_desk #section_message {
  --size: 192px;
  --gap: 10px;
  --count: 6;
  --speed: 16s;
  --loop: calc((var(--size) + var(--gap)) * var(--count));
  overflow-x: hidden;
}
#div_front_desk #section_message p {
  margin-block-start: 2em;
  margin-block-end: 2em;
}
@media screen and (max-width: 576px), (max-height: 450px) {
  #div_front_desk #section_message p br.wide_only {
    display: none;
  }
}
#div_front_desk #section_message #div_message_gallery {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}
#div_front_desk #section_message #div_track {
  display: flex;
  align-items: center;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  animation: message-marquee var(--speed) linear infinite;
}
#div_front_desk #section_message #div_track > img {
  width: var(--size);
  height: var(--size);
  flex: 0 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  margin-right: var(--gap);
}
@keyframes message-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(var(--loop) * -1), 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  #div_front_desk #section_message #div_track {
    animation: none;
    transform: none;
  }
}
#div_front_desk .img_section_image {
  margin-top: 40px;
}
#div_front_desk #section_features .div_title {
  margin-bottom: 20px;
}
#div_front_desk #section_features .div_numbering {
  font-weight: 600;
}
#div_front_desk #section_features .div_numbering span {
  color: #C63283;
  font-size: 24px;
  margin: 0px 3px;
}

#div_about_desk {
  padding-bottom: 100px;
}
#div_about_desk #section_information img {
  margin-bottom: 40px;
}
#div_about_desk #section_information #div_information_rower {
  display: grid;
  gap: 20px;
}
#div_about_desk #section_information #div_information_rower .div_information {
  display: grid;
  grid-template-columns: 30% auto;
  gap: 20px;
}
#div_about_desk #section_news {
  margin-top: -40px;
}
@media screen and (max-width: 576px), (max-height: 450px) {
  #div_about_desk #section_news {
    margin-top: 0px;
  }
}

#div_environment_desk {
  padding-bottom: 40px;
}
#div_environment_desk .div_page_head {
  margin-bottom: 40px;
}
#div_environment_desk #section_bydata {
  background-color: #FDF2F7;
  padding-bottom: 100px;
}
#div_environment_desk .img_sep {
  margin-bottom: 100px;
}
#div_environment_desk #section_lift {
  margin-bottom: 100px;
}
#div_environment_desk #section_lift #ol_lift_features {
  list-style: none;
  counter-reset: num;
  padding: 0;
  margin: 0;
}
#div_environment_desk #section_lift #ol_lift_features li {
  counter-increment: num;
  position: relative;
  padding-left: 30px;
}
#div_environment_desk #section_lift #ol_lift_features li:not(:last-child) {
  margin-bottom: 10px;
}
#div_environment_desk #section_lift #ol_lift_features li:before {
  content: counter(num) ".";
  position: absolute;
  left: 0;
  text-align: left;
  font-size: 20px;
  font-weight: 800;
  color: #C63283;
}
#div_environment_desk #section_lift #ul_liftlist {
  max-width: 300px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#div_environment_desk #section_lift #ul_liftlist li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 30px;
  font-size: 16px;
}
#div_environment_desk #section_lift #ul_liftlist li .label {
  white-space: nowrap;
}
#div_environment_desk #section_lift #ul_liftlist li .dots {
  flex: 1 1 auto;
  height: 0;
  border-bottom: 2px dotted #C63283;
  transform: translateY(-2px);
}
#div_environment_desk #section_lift #ul_liftlist li .value {
  font-weight: 700;
  color: #C63283;
  font-size: 20px;
  line-height: 1;
  margin-left: 4px;
}
#div_environment_desk #section_lift #ul_liftlist li .unit {
  margin-left: 2px;
  color: #212121;
}
#div_environment_desk #section_lift #div_instructor_rower {
  display: grid;
  gap: 10px;
}
#div_environment_desk #section_lift #div_instructor_rower .div_instructor {
  display: flex;
  gap: 10px;
  align-items: center;
}
#div_environment_desk #section_lift #div_instructor_rower .div_instructor .grade {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 30px 7px 30px;
  background-color: #013D6C;
  color: white;
  border-radius: 30px;
}
#div_environment_desk #section_lift #div_instructor_rower .div_instructor .num .value {
  font-weight: 700;
  color: #013D6C;
  font-size: 20px;
  line-height: 1;
  margin-left: 4px;
}
#div_environment_desk #section_lift #div_instructor_rower .div_instructor .num .unit {
  margin-left: 2px;
  color: #212121;
}
#div_environment_desk #div_footbox {
  margin-top: 40px;
}
#div_environment_desk #section_news {
  padding: 40px 0px;
}

#div_work_desk {
  padding-bottom: 40px;
}
#div_work_desk #img_head {
  margin-bottom: 20px;
}
#div_work_desk #section_news {
  margin-top: -40px;
}
@media screen and (max-width: 576px), (max-height: 450px) {
  #div_work_desk #section_news {
    margin-top: 0px;
  }
}

#div_blog_desk {
  padding-bottom: 40px;
}
#div_blog_desk .div_section_rower {
  gap: 40px !important;
}
#div_blog_desk #section_interview {
  background-color: #FDF2F7;
  padding: 40px 0px;
}
#div_blog_desk #section_interview #div_interview_gridder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
#div_blog_desk #section_interview #div_interview_gridder .a_interview {
  background-color: white;
  color: #212121;
  padding: 30px 0px 20px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid white;
  transition: all 0.2s;
}
#div_blog_desk #section_interview #div_interview_gridder .a_interview img {
  border-radius: 50%;
  margin-bottom: 10px;
  max-width: min(50%, 100px);
  aspect-ratio: 1/1;
  transition: all 0.2s;
}
#div_blog_desk #section_interview #div_interview_gridder .a_interview .name span {
  font-size: 20px;
  font-weight: 600;
  margin-right: 5px;
  color: #C63283;
}
#div_blog_desk #section_interview #div_interview_gridder .a_interview .date {
  font-size: 12px;
  margin-top: 30px;
}
#div_blog_desk #section_interview #div_interview_gridder .a_interview:hover {
  color: #C63283;
  border-radius: 10px;
  border: 1px solid #C63283;
}
@media (orientation: portrait) and (max-width: 576px), (max-height: 450px) {
  #div_blog_desk #section_interview #div_interview_gridder {
    gap: 20px;
  }
}
#div_blog_desk #section_interview p.small {
  margin-top: 40px;
}
#div_blog_desk #div_footbox {
  margin-top: -40px;
}
#div_blog_desk #div_footbox #section_blog {
  display: none;
}
#div_blog_desk #section_profile #div_profile {
  display: grid;
  grid-template-columns: 180px auto;
  align-items: end;
  gap: 20px;
  background-color: #FDF2F7;
  padding: 40px 40px 0px 40px;
  margin-top: 40px;
}
#div_blog_desk #section_profile #div_profile .img_profile {
  border-radius: 50%;
  margin-top: -80px;
}
#div_blog_desk #section_profile #div_profile #div_info {
  display: flex;
  justify-content: space-around;
  align-items: baseline;
}
#div_blog_desk #section_profile #div_profile #div_info .left {
  font-weight: 500;
}
#div_blog_desk #section_profile #div_profile #div_info .left .name {
  font-size: 20px;
  font-weight: 600;
}
#div_blog_desk #section_profile #div_profile #div_info .left .name span {
  color: #C63283;
  margin-right: 5px;
  font-size: 26px;
}
#div_blog_desk #section_profile #div_profile #div_info .left .year_of_joining span {
  margin: 0px 0px 0px 2px;
  letter-spacing: 2px;
}
#div_blog_desk #section_profile #div_profile #div_info .right .date {
  font-size: 14px;
  color: #606060;
}
@media (orientation: portrait) and (max-width: 576px), (max-height: 450px) {
  #div_blog_desk #section_profile #div_profile #div_info {
    flex-direction: column-reverse;
  }
}
#div_blog_desk #section_profile #div_quote {
  background-color: #FDF2F7;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
}
#div_blog_desk #section_profile #div_quote p {
  margin: 0px;
  text-align: center;
}
#div_blog_desk #section_profile #div_quote .back {
  display: flex;
  justify-content: flex-end;
}
@media (orientation: portrait) and (max-width: 576px), (max-height: 450px) {
  #div_blog_desk #section_profile #div_quote {
    font-size: 18px;
  }
}

#div_description_desk {
  padding-bottom: 40px;
}

#div_carpet #div_visit_desk {
  padding-bottom: 40px;
}
#div_carpet #div_visit_desk .div_page_head {
  margin-bottom: 40px;
}
#div_carpet #div_visit_desk #section_visit {
  display: none;
}
#div_carpet #div_visit_desk #section_form #div_visit_form {
  display: grid;
  gap: 40px;
}
#div_carpet #div_visit_desk #section_form #div_visit_form .form-section {
  display: grid;
  gap: 20px;
}
#div_carpet #div_visit_desk #section_form #div_visit_form .form-section p.form-row {
  line-height: 2;
  margin: 0px;
  display: grid;
  gap: 0px;
}
#div_carpet #div_visit_desk #section_form #div_visit_form .form-section p.form-row .head {
  font-weight: 500;
}
#div_carpet #div_visit_desk #section_form #div_visit_form .form-section p.form-row input:not([type=checkbox]) {
  width: calc(100% - 40px);
  padding: 10px;
  font-size: 16px;
  border: 1px solid #013D6C;
  border-radius: 5px;
  color: #212121;
}
#div_carpet #div_visit_desk #section_form #div_visit_form .form-section p.form-row select {
  width: calc(100% - 40px);
  font-size: 16px;
  padding: 10px;
  color: black;
}
#div_carpet #div_visit_desk #section_form #div_visit_form .form-section p.form-row textarea {
  width: calc(100% - 40px);
  font-size: 16px;
  line-height: 1.4;
  padding: 10px;
  color: #212121;
}
#div_carpet #div_visit_desk #section_form #div_visit_form .form-section#sec-privacy p {
  margin: 0px;
}
#div_carpet #div_visit_desk #section_form #div_visit_form .form-section br {
  display: none;
}
#div_carpet #div_visit_desk #section_form #div_visit_form input.wpcf7-submit {
  font-size: 16px;
  display: flex;
  align-items: center;
  height: 62px;
  justify-content: space-between;
  color: white;
  font-weight: 600;
  transition: all 0.2s;
  width: -moz-fit-content;
  width: fit-content;
  gap: 20px;
  padding: 5px 50px 7px 50px;
  background-color: #C63283;
  border-radius: 50px;
  margin: 20px auto 0px auto;
  border: 1px solid #C63283;
  transition: all 0.2s;
}
#div_carpet #div_visit_desk #section_form #div_visit_form input.wpcf7-submit:hover {
  background-color: white;
  color: #C63283;
}

.wpcf7-not-valid-tip {
  color: #C63283;
}

#div_carpet #div_news_desk .div_page_head {
  margin-bottom: 40px;
}
#div_carpet #div_news_desk .a_button_large {
  margin-top: 100px;
}
#div_carpet #div_news_desk #section_news_all .div_desk_rower {
  gap: 30px;
}
#div_carpet #div_news_desk #section_news_all .div_desk_rower .a_news {
  color: #212121;
  transition: all 0.2s;
}
#div_carpet #div_news_desk #section_news_all .div_desk_rower .a_news:hover {
  color: #C63283;
}
#div_carpet #div_news_desk #section_news_all .div_desk_rower .a_news .date {
  margin-bottom: 2px;
}
#div_carpet #div_news_desk #section_news_all .div_desk_rower .a_news .date span {
  color: #C63283;
  font-weight: 600;
  margin-left: 5px;
}
#div_carpet #div_news_desk #section_news_all .div_desk_rower .a_news .title {
  font-weight: 500;
}
#div_carpet #div_news_desk #section_news {
  display: none;
}

#div_privacy_desk {
  padding-bottom: 40px;
}

#div_carpet .section_footbox {
  color: white;
}
#div_carpet .section_footbox.pink {
  background-color: #C63283;
}
#div_carpet .section_footbox.blue {
  background-color: #013D6C;
}
#div_carpet .section_footbox h1,
#div_carpet .section_footbox h2,
#div_carpet .section_footbox h3,
#div_carpet .section_footbox h4 {
  color: white;
}
#div_carpet .section_footbox h1 {
  font-size: 28px;
  text-align: center;
  margin: 40px 0px;
}
#div_carpet .section_footbox .div_paddesk {
  padding: 40px;
}
@media screen and (max-width: 576px), (max-height: 450px) {
  #div_carpet .section_footbox .div_paddesk {
    padding: 40px 20px;
  }
}
#div_carpet .section_footbox .div_title {
  color: white;
}
#div_carpet .section_footbox .div_title .eng {
  color: white;
}
#div_carpet .section_footbox .div_title .eng::before {
  background-image: url("../image/asset/asset_heart_white.svg");
}
#div_carpet #section_blog #div_face_gridder {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
#div_carpet #section_blog #div_face_gridder a {
  display: block;
  max-width: calc(25% - 30px);
}
#div_carpet #section_blog #div_face_gridder a img {
  display: block;
  border-radius: 50%;
  width: 100px;
  aspect-ratio: 1/1;
}
#div_carpet #section_blog .a_button_large {
  margin-top: 40px;
}
#div_carpet #section_news .div_title {
  margin-bottom: 40px;
}
#div_carpet #section_news .div_desk_rower {
  gap: 30px;
}
#div_carpet #section_news .div_desk_rower .a_news {
  color: #212121;
  transition: all 0.2s;
}
#div_carpet #section_news .div_desk_rower .a_news:hover {
  color: #C63283;
}
#div_carpet #section_news .div_desk_rower .a_news .date {
  margin-bottom: 2px;
}
#div_carpet #section_news .div_desk_rower .a_news .date span {
  color: #C63283;
  font-weight: 600;
  margin-left: 5px;
}
#div_carpet #section_news .div_desk_rower .a_news .title {
  font-weight: 500;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #212121;
}
body.external_naving {
  overflow: hidden;
}
body.external_naving #div_external_nav {
  top: 0% !important;
}
@media (orientation: landscape) and (max-height: 450px) {
  body {
    max-width: 576px;
    margin: 0px auto;
  }
}

a {
  color: #C63283;
  text-decoration: none;
  font-weight: 500;
}

.center {
  text-align: center;
}

p.small {
  font-size: 14px;
}

.img_center {
  display: block;
  margin: 0px auto;
}

#div_carpet {
  display: grid;
  grid-template-columns: 288px auto;
  margin: 0px auto;
}
#div_carpet #div_nav {
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  position: sticky;
  top: 0px;
}
#div_carpet #div_nav #div_nav_desk {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 40px);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto;
  padding: 40px 0px 0px 0px;
}
#div_carpet #div_nav #div_nav_desk #a_logo {
  display: block;
  color: #212121;
  margin-bottom: 40px;
}
#div_carpet #div_nav #div_nav_desk #a_logo img {
  width: 100%;
}
#div_carpet #div_nav #div_nav_desk #a_logo #div_sitename {
  margin-top: 5px;
  padding-left: 42px;
  font-size: 14px;
}
#div_carpet #div_nav #div_nav_desk nav {
  display: flex;
  flex-direction: column;
}
#div_carpet #div_nav #div_nav_desk nav a {
  display: flex;
  align-items: center;
  height: 48px;
  justify-content: space-between;
  color: #212121;
  font-weight: 600;
  transition: all 0.2s;
}
#div_carpet #div_nav #div_nav_desk nav a::after {
  content: "";
  width: 26px;
  height: 26px;
  border: 1px solid #C63283;
  background-image: url("../image/asset/asset_arrow.svg");
  background-repeat: no-repeat;
  background-size: 5px;
  background-position: center;
  border-radius: 50%;
  transition: all 0.2s;
}
#div_carpet #div_nav #div_nav_desk nav a:hover {
  color: #C63283;
}
#div_carpet #div_nav #div_nav_desk nav a:hover::after {
  width: 26px;
  height: 26px;
  background-color: #C63283;
  transform: scale(0.3);
  transform-origin: center;
}
#div_carpet #div_nav #div_nav_desk .bottom {
  width: 100%;
}
#div_carpet #div_nav #div_nav_desk .bottom #div_handybutton_rower {
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
#div_carpet #div_nav #div_nav_desk .bottom #div_handybutton_rower .a_button_large {
  width: calc(100% - 20px);
  height: clamp(48px, 5vh, 60px);
  margin: 0px;
  padding: 0px 20px 0px 0px;
  border-radius: 0px;
  border: none;
  display: grid;
  grid-template-columns: calc(100% - 28px) 28px;
  justify-content: end;
  gap: 0px;
  text-align: center;
}
#div_carpet .div_side {
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: sticky;
  top: 0px;
  overflow: hidden;
}
#div_carpet #div_main {
  display: grid;
  grid-template-columns: 1fr min(100%, 576px) 1fr;
}
#div_carpet #div_main #div_middle {
  overflow-x: hidden;
}
@media (orientation: portrait) and (max-width: 576px), (max-height: 450px) {
  #div_carpet #div_main #div_middle {
    padding-top: 114px;
  }
}
#div_carpet #div_main #div_middle main {
  position: relative;
  transition: all 0.2s;
  overflow-x: hidden;
}
@media (orientation: portrait) and (max-width: 576px), (max-height: 450px) {
  #div_carpet #div_main #div_middle main {
    padding-bottom: 48px;
  }
}
#div_carpet #div_main #div_right #div_playmovie_anywhere_desk {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#div_carpet #div_main #div_right #div_playmovie_anywhere_desk .card {
  width: 400px;
  background-color: white;
  cursor: pointer;
}
#div_carpet #div_main #div_right #div_playmovie_anywhere_desk .card .head {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  padding: 8px 16px;
}
#div_carpet #div_main #div_right #div_playmovie_anywhere_desk .card .head .pink {
  font-size: 28px;
}
#div_carpet #div_main #div_right #div_playmovie_anywhere_desk .card .thumbnail {
  height: 255px;
  background-image: url("../image/front/movie.png?3");
  background-size: cover;
  background-position: center;
}
#div_carpet #div_main #div_right #div_playmovie_anywhere_desk .card .thumbnail .playbutton {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../image/common/side_right/asset_play.svg");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  transition: all 0.2s;
}
#div_carpet #div_main #div_right #div_playmovie_anywhere_desk .card:hover .thumbnail .playbutton {
  transform: scale(0.8);
}
@media screen and (max-width: 1749px) {
  #div_carpet #div_main #div_right #div_playmovie_anywhere_desk .card {
    width: 200px;
  }
  #div_carpet #div_main #div_right #div_playmovie_anywhere_desk .card .head {
    font-size: 16px;
  }
  #div_carpet #div_main #div_right #div_playmovie_anywhere_desk .card .head .pink {
    font-size: 18px;
  }
  #div_carpet #div_main #div_right #div_playmovie_anywhere_desk .card .thumbnail {
    height: auto;
    aspect-ratio: 400/225;
  }
  #div_carpet #div_main #div_right #div_playmovie_anywhere_desk .card .thumbnail .playbutton {
    background-size: 20%;
  }
}
@media screen and (max-width: 1339px) {
  #div_carpet #div_main #div_right #div_playmovie_anywhere_desk {
    display: none;
  }
}
#div_carpet #div_main #div_external_nav {
  width: 100%;
  height: 100%;
  position: fixed;
  top: -100%;
  left: 0px;
  background-color: white;
  transition: all 0.2s;
  z-index: 9999;
}
#div_carpet #div_main #div_external_nav #div_external_nav_desk {
  padding: 114px 40px 40px 40px;
}
#div_carpet #div_main #div_external_nav #div_external_nav_desk nav {
  display: flex;
  flex-direction: column;
}
#div_carpet #div_main #div_external_nav #div_external_nav_desk nav a {
  display: flex;
  align-items: center;
  height: 48px;
  justify-content: space-between;
  color: #212121;
  font-weight: 600;
  transition: all 0.2s;
}
#div_carpet #div_main #div_external_nav #div_external_nav_desk nav a::after {
  content: "";
  width: 26px;
  height: 26px;
  border: 1px solid #C63283;
  background-image: url("../image/asset/asset_arrow.svg");
  background-repeat: no-repeat;
  background-size: 5px;
  background-position: center;
  border-radius: 50%;
  transition: all 0.2s;
}
#div_carpet #div_main #div_external_nav #div_external_nav_desk nav a:hover {
  color: #C63283;
}
#div_carpet #div_main #div_external_nav #div_external_nav_desk nav a:hover::after {
  width: 26px;
  height: 26px;
  background-color: #C63283;
  transform: scale(0.3);
  transform-origin: center;
}
#div_carpet #div_main #div_external_nav #div_external_nav_desk #div_close_nav {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 34px;
  right: 24px;
  padding: 6px 16px 6px 16px;
}
@media (orientation: landscape) and (max-height: 450px) {
  #div_carpet #div_main #div_external_nav {
    overflow-y: scroll;
  }
}
@media (orientation: portrait) and (max-width: 576px), (max-height: 450px) {
  #div_carpet {
    grid-template-columns: 100%;
  }
  #div_carpet #div_nav {
    display: none;
  }
  #div_carpet #div_main .div_side {
    opacity: 0.5;
  }
}
@media screen and (orientation: portrait) and (max-width: 576px) and (max-width: 576px), (orientation: portrait) and (max-width: 576px) and (max-height: 450px), screen and (max-height: 450px) and (max-width: 576px), (max-height: 450px) and (max-height: 450px) {
  #div_carpet #div_main {
    grid-template-columns: 100%;
  }
  #div_carpet #div_main .div_side {
    display: none;
  }
  #div_carpet #div_main #div_middle {
    padding-top: 114px;
  }
}
#div_carpet .div_section_rower {
  display: grid;
  gap: 100px;
}
@media screen and (max-width: 576px), (max-height: 450px) {
  #div_carpet .div_section_rower {
    gap: 40px;
  }
}
#div_carpet .div_page_head {
  display: grid;
  gap: 50px;
}
#div_carpet .div_paddesk {
  padding: 0px 40px;
}
@media screen and (max-width: 576px), (max-height: 450px) {
  #div_carpet .div_paddesk {
    padding: 0px 20px;
  }
}
#div_carpet .div_desk_rower {
  display: grid;
  gap: 40px;
}
#div_carpet .div_desk_rower h1 {
  margin: 0px;
}
#div_carpet .div_img_rower {
  display: grid;
  gap: 10px;
}
#div_carpet .div_img_rower img {
  display: block;
}
#div_carpet .div_h2np_rower {
  display: grid;
  gap: 20px;
}
#div_carpet .div_h2np_rower h2 {
  margin: 0px 0px 5px 0px;
}
#div_carpet .div_h2np_rower p {
  margin: 0px 0px 10px 0px;
}
#div_carpet .div_title {
  font-weight: 600;
}
#div_carpet .div_title .eng {
  font-size: 14px;
  color: #C63283;
  margin-bottom: 5px;
}
#div_carpet .div_title .eng::before {
  content: "";
  display: block;
  width: 30px;
  height: 8px;
  background-image: url(../image/asset/asset_heart.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}
#div_carpet .div_title.div_page_heading {
  margin: 50px 0px 0px 0px;
  text-align: center;
}
#div_carpet .div_title.div_page_heading .eng::before {
  margin: 0px auto;
}
#div_carpet .div_title.div_page_heading .jpn {
  font-size: 20px;
}
#div_carpet .h1_pink {
  color: #C63283;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 576px), (max-height: 450px) {
  #div_carpet .h1_pink {
    font-size: 24px;
  }
  #div_carpet .h1_pink.long br {
    display: none;
  }
}
#div_carpet .h2_pink {
  color: #C63283;
  font-size: 16px;
  font-weight: 600;
}
#div_carpet .a_button_large {
  display: flex;
  align-items: center;
  height: 48px;
  justify-content: space-between;
  color: white;
  font-weight: 600;
  transition: all 0.2s;
  width: -moz-fit-content;
  width: fit-content;
  gap: 20px;
  padding: 5px 30px 7px 40px;
  background-color: #C63283;
  border-radius: 50px;
  margin: 20px auto 0px auto;
  border: 1px solid #C63283;
  transition: all 0.2s;
}
#div_carpet .a_button_large::after {
  content: "";
  width: 26px;
  height: 26px;
  border: 1px solid white;
  background-image: url("../image/asset/asset_arrow_white.svg");
  background-repeat: no-repeat;
  background-size: 5px;
  background-position: center;
  border-radius: 50%;
  transition: all 0.2s;
}
#div_carpet .a_button_large:hover {
  background-color: white;
  color: #C63283;
}
#div_carpet .a_button_large:hover::after {
  width: 26px;
  height: 26px;
  background-color: #C63283;
  transform: scale(0.3);
  background-image: none;
  transform-origin: center;
}
#div_carpet .a_button_large.white {
  background-color: white;
  color: #C63283;
}
#div_carpet .a_button_large.white::after {
  border: 1px solid #C63283;
  background-image: url("../image/asset/asset_arrow.svg");
}
#div_carpet .a_button_large.blue {
  background-color: #013D6C;
  border: 1px solid #013D6C;
}
#div_carpet .a_button_large.blue::after {
  border: 1px solid white;
}
#div_carpet .a_button_large.blue:hover {
  background-color: white;
  color: #013D6C;
}
#div_carpet .a_button_large.blue:hover::after {
  background-color: #013D6C;
}
#div_carpet .a_button_large.blue.white {
  background-color: white;
  color: #013D6C;
}
#div_carpet .a_button_large.blue.white::after {
  border: 1px solid #013D6C;
  background-image: url("../image/asset/asset_arrow_blue.svg");
}
#div_carpet .a_button_small {
  display: flex;
  align-items: center;
  height: 48px;
  justify-content: space-between;
  color: #C63283;
  font-weight: 600;
  transition: all 0.2s;
  width: -moz-fit-content;
  width: fit-content;
  gap: 20px;
  margin-top: 20px;
  transition: all 0.2s;
}
#div_carpet .a_button_small::after {
  content: "";
  width: 26px;
  height: 26px;
  border: 1px solid #C63283;
  background-image: url("../image/asset/asset_arrow.svg");
  background-repeat: no-repeat;
  background-size: 5px;
  background-position: center;
  border-radius: 50%;
  transition: all 0.2s;
}
#div_carpet .a_button_small:hover {
  background-color: white;
  color: #C63283;
}
#div_carpet .a_button_small:hover::after {
  width: 26px;
  height: 26px;
  background-color: #C63283;
  transform: scale(0.3);
  background-image: none;
  transform-origin: center;
}
#div_carpet .div_gallery {
  position: relative;
}
#div_carpet .div_gallery .div_frame {
  aspect-ratio: 495/320;
  position: relative;
}
#div_carpet .div_gallery .div_frame .div_frame_layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: all 0.4s;
}
#div_carpet .div_gallery .div_frame .div_frame_layer.shown {
  opacity: 1;
}
#div_carpet .div_gallery .div_option_grider {
  margin-top: 5px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
#div_carpet .div_gallery .div_option_grider .div_option_gridy {
  background-size: cover;
  background-position: center;
  aspect-ratio: 495/320;
  border: 2px solid white;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.4s;
}
#div_carpet .div_gallery .div_option_grider .div_option_gridy.chosen {
  border: 2px solid #C63283;
  opacity: 1;
}
#div_carpet .div_gallery .div_option_grider .div_option_gridy:hover {
  opacity: 1;
}
#div_carpet .div_gallery .svg_pie_progress_loop {
  width: 20px;
  height: auto;
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 10px;
}
#div_carpet .div_gallery .svg_pie_progress_loop .svg_pie_bg {
  fill: white;
  stroke: none;
}
#div_carpet .div_gallery .svg_pie_progress_loop .svg_pie_fill {
  fill: none;
  stroke: #C63283;
  stroke-width: 90;
  stroke-linecap: butt;
  stroke-dasharray: 0 282.743;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
#div_carpet .div_gallery .svg_pie_progress_loop .svg_pie_fill.animate {
  animation: pie_sweep 6s linear forwards;
}
@keyframes pie_sweep {
  from {
    stroke-dasharray: 0 282.743;
  }
  to {
    stroke-dasharray: 282.743 282.743;
  }
}

.grecaptcha-badge {
  display: none;
}/*# sourceMappingURL=master.css.map */