@charset "UTF-8";
.beams-visual {
  width: 100%;
  height: 540px;
  display: grid;
  grid-template-columns: 46px 1fr 56%;
}

.beams-visual-bar {
  font-family: "Poppins", sans-serif;
  background-color: #fe5226;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: center;
  line-height: 46px;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.beams-visual-logos {
  background-color: #f3f2ec;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.beams-visual-logos-text {
  text-align: center;
  position: absolute;
  top: 120px;
  left: 75%;
  width: 100%;
  z-index: 1;
  background-color: #092a78;
  -webkit-mask-image: url(/assets/images/pc/beams/badge_bomb.svg);
          mask-image: url(/assets/images/pc/beams/badge_bomb.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 80px;
  height: 80px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
  font-size: 12px;
}

.beams-visual-logos-text.is-animate {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.beams-visual-logos-text span {
  /* font-size: 24px; */
  font-size: 1.6rem;
}

.beams-visual-logos-image {
  width: 50%;
  height: auto;
  clip-path: inset(0 100% 0 0); /* 全部隠す（右側100%カット） */
  -webkit-transition: clip-path 0.5s;
  transition: clip-path 0.5s;
}

.beams-visual-logos-image.is-animate {
  clip-path: inset(0 0% 0 0); /* 全部表示 */
}

.beams-visual-images {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.beams-visual-images-olive {
  background-image: url(/assets/images/pc/beams/mv_olive.png);
  background-color: #c1caaa;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.beams-visual-images-olive::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(193, 202, 170);
  pointer-events: none;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

.beams-visual-images-olive.is-animate::before {
  opacity: 0;
}

.beams-visual-images-beige {
  background-image: url(/assets/images/pc/beams/mv_beige.png);
  background-color: #d7d3ba;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.beams-visual-images-beige::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(215, 211, 186);
  pointer-events: none;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

.beams-visual-images-beige.is-animate::before {
  opacity: 0;
}

.beams-visual-images-image {
  width: 100%;
  height: auto;
  display: block;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 1280px) {
  .beams-visual-logos-image {
    width: 300px;
  }
  .beams-visual-logos-text {
    width: 100px;
    height: 100px;
    top: 75px;
    left: 78%;
    font-size: 11px;
  }
}
@media screen and (min-width: 1600px) {
  .beams-visual-logos-text {
    left: 76%;
  }
}
@media screen and (max-width: 768px) {
  .beams-visual {
    width: 100%;
    height: 500px;
    display: grid;
    grid-template-columns: 30px 1fr;
    grid-template-rows: 48% 52%;
  }
  .beams-visual-bar {
    font-family: "Poppins", sans-serif;
    background-color: #fe5226;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    grid-row: 1/3;
    text-align: center;
    line-height: 30px;
  }
  .beams-visual-logos {
    background-color: #f3f2ec;
    grid-column: 2/3;
    grid-row: 1/2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .beams-visual-logos-text {
    text-align: center;
    position: absolute;
    top: 16%;
    left: 68%;
    width: 100%;
    -webkit-mask-image: url(/assets/images/sp/beams/badge_bomb.svg);
            mask-image: url(/assets/images/sp/beams/badge_bomb.svg);
    background-color: #092a78;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
    font-family: "Poppins", sans-serif;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
    transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
  }
  .beams-visual-logos-text.is-animate {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .beams-visual-logos-text span {
    font-size: 24px;
  }
  .beams-visual-logos-image {
    width: 35%;
    height: auto;
    max-width: 356px;
    clip-path: inset(0 100% 0 0);
    -webkit-transition: clip-path 0.5s;
    transition: clip-path 0.5s;
  }
  .beams-visual-logos-image.is-animate {
    clip-path: inset(0 0% 0 0); /* 全部表示 */
  }
  .beams-visual-images {
    grid-column: 2/3;
    grid-row: 2/3;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-template-columns: 1fr 1fr;
    height: 100%;
  }
  .beams-visual-images-olive {
    background-image: url(/assets/images/sp/beams/mv_olive.png);
    background-color: #c1caaa;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  .beams-visual-images-olive::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(193, 202, 170);
    pointer-events: none;
    -webkit-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease;
  }
  .beams-visual-images-olive.is-animate::before {
    opacity: 0;
  }
  .beams-visual-images-beige {
    background-image: url(/assets/images/sp/beams/mv_beige.png);
    background-color: #d7d3ba;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  .beams-visual-images-beige::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(215, 211, 186);
    pointer-events: none;
    -webkit-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease;
  }
  .beams-visual-images-beige.is-animate::before {
    opacity: 0;
  }
  .beams-visual-images-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  /* cloudimage-360のスタイル */
  .beams-360-view {
    padding: 20px;
    background-color: #f5f5f5;
  }
  .beams-360-view-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .beams-360-view-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    padding: 15px;
    background-color: #f8f8f8;
  }
  .beams-360-view-controls-button {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .beams-360-view-controls-button.is-selected {
    background-color: #fe5226;
    color: #fff;
    border-color: #fe5226;
  }
  .beams-360-view-controls-button:hover {
    background-color: #fe5226;
    color: #fff;
    border-color: #fe5226;
  }
}
@media screen and (max-width: 500px) {
  .beams-visual-logos-image {
    width: 51%;
  }
  .beams-visual-logos-text {
    text-align: center;
    position: absolute;
    top: 19%;
    left: 78%;
    font-size: 10px;
    width: 100%;
    -webkit-mask-image: url(/assets/images/sp/beams/badge_bomb.svg);
            mask-image: url(/assets/images/sp/beams/badge_bomb.svg);
    background-color: #092a78;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 80px;
    height: 80px;
    font-family: "Poppins", sans-serif;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
    transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
  }
  .beams-visual-logos-text.is-animate {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .beams-visual-logos-text span {
    font-size: 16px;
  }
}
@media screen and (max-width: 459px) {
  .beams-visual-logos-text {
    width: 64px;
    height: 64px;
  }
}
.beams-concept {
  background-color: #fafaf8;
  background-image: linear-gradient(0deg, transparent 20px, #e9e9e6 21px), linear-gradient(90deg, transparent 20px, #e9e9e6 21px);
  background-size: 21px 21px;
  padding: 100px 0 120px;
  color: #333333;
}

.beams-concept-summary-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.beams-concept-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 92%;
  max-width: 960px;
  margin: 0 auto;
}

.beams-concept-summary-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 48px;
  letter-spacing: 0.06em;
  grid-column: 1;
  grid-row: 1;
  margin-left: 16px;
}

.beams-concept-summary-message {
  font-size: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
  grid-column: 1;
  grid-row: 2;
  margin-left: 16px;
}

.beams-concept-summary-message-item {
  padding: 4px 10px;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.06em;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.beams-concept-summary-text {
  font-size: 14px;
  text-align: left;
  margin-right: 64px;
  padding-right: 16px;
  line-height: 2;
  width: 88%;
  margin: 0 auto;
  max-width: 880px;
  grid-column: 2;
  grid-row: 1/span 2;
  font-weight: 200;
  align-self: center;
}

.beams-concept-movie {
  padding: 46px 18px;
  width: 1000px;
  margin: 80px auto 0;
  max-width: 1000px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #333;
  background: #fff;
}

.beams-concept-movie-videos .beams-concept-movie-gallery-main {
  position: relative;
  aspect-ratio: 16/9;
}
.beams-concept-movie-videos .beams-concept-movie-gallery-main .movie__thumbnail {
  width: 100%;
  height: 100%;
}
.beams-concept-movie-videos .beams-concept-movie-gallery-main .btn__play {
  width: 100%;
  height: 100%;
}
.beams-concept-movie-videos .beams-concept-movie-gallery-main .btn__play a {
  display: block;
  width: 100%;
  height: 100%;
}
.beams-concept-movie-videos .beams-concept-movie-gallery-main .btn__play img {
  position: absolute;
  top: calc(50% - 42px);
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 85px;
  height: 85px;
}
.beams-concept-movie-videos .movie__thumbnail--small {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
}
.beams-concept-movie-videos .movie__thumbnail--small .btn__play {
  width: 100%;
  height: 100%;
}
.beams-concept-movie-videos .movie__thumbnail--small .btn__play a {
  display: block;
  width: 100%;
  height: 100%;
}
.beams-concept-movie-videos .movie__thumbnail--small .btn__play img {
  position: absolute;
  top: calc(50% - 20px);
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 45px;
  height: 45px;
}

.beams-concept-movie-title {
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-family: "Poppins", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.beams-concept-movie-title-left {
  font-weight: 100;
  margin-right: 12px;
  font-size: 16px;
}

.beams-concept-movie-title-right {
  font-weight: 100;
  margin-left: 12px;
  font-size: 16px;
}

.beams-concept-movie-gallery-thumbnails-item-text {
  display: block;
  width: 100%;
  font-size: 13px;
  margin-top: 10px;
  line-height: 140%;
}

.beams-concept-movie-subtitle {
  font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  color: #fe5226;
  letter-spacing: 0.06em;
  margin-top: 10px;
}

.beams-concept-movie-text {
  margin: 32px auto 40px;
  line-height: 2;
  text-align: center;
  max-width: 820px;
  font-size: 14px;
  font-weight: 400;
}
.beams-concept-movie-text b {
  font-size: 18px;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.beams-concept-movie-gallery {
  max-width: 820px;
  margin: 0 auto;
}

.beams-concept-movie-gallery-main {
  width: 100%;
  aspect-ratio: 16/9;
}
.beams-concept-movie-gallery-main iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.beams-concept-movie-sound-source {
  text-align: right;
  color: #999;
  font-size: 12px;
  font-weight: 400;
  margin-top: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.beams-concept-movie-gallery-thumbnails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}
.beams-concept-movie-gallery-thumbnails .title-sp {
  font-size: 12px;
}

.beams-concept-movie-gallery-thumbnails-item {
  width: 25%;
  cursor: pointer;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}

@media (max-width: 768px) {
  .beams-concept {
    display: block;
    text-align: center;
    padding: 17% 15px;
    background-image: linear-gradient(0deg, transparent 16px, #e9e9e6 17px), linear-gradient(90deg, transparent 16px, #e9e9e6 17px);
    background-size: 17px 17px;
  }
  .beams-concept-movie-subtitle {
    font-size: 3.125vw;
    margin-top: 5px;
  }
  .beams-concept-movie-gallery-thumbnails-item-text {
    margin-top: 5px;
  }
  .beams-concept-summary-wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    overflow: hidden;
  }
  .beams-concept-summary {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    width: 100%;
  }
  .beams-concept-summary-title .text {
    width: 100%;
    padding: 0 20vw;
  }
  .beams-concept-summary-title {
    font-size: 8.4375vw;
    margin-left: 0;
  }
  .beams-concept-movie-videos .beams-concept-movie-gallery-main .btn__play img {
    top: calc(50% - 22px);
    width: 44px;
    height: 44px;
  }
  .beams-concept-movie-videos .movie__thumbnail--small {
    padding-top: 0;
    aspect-ratio: 16/9;
    height: auto;
  }
  .beams-concept-movie-videos .movie__thumbnail--small .btn__play img {
    top: calc(50% - 20px);
    width: 40px;
    height: 40px;
  }
  .beams-concept-summary-message {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 500;
    font-size: 18px;
    margin-left: 0;
  }
  .beams-concept-summary-message-item {
    font-size: 4.0625vw;
  }
  .beams-concept-summary-text {
    padding-right: 0;
    font-size: 17px;
    grid-column: 1;
    grid-row: 3;
    text-align: left;
    width: 92%;
    line-height: 1.75;
    margin: 16px auto 0;
    font-size: 3.75vw;
  }
  .beams-concept-movie {
    margin-top: 40px;
    padding: 10% 25px;
    width: 100%;
  }
  .beams-concept-movie-title {
    font-size: 6.5625vw;
  }
  .beams-concept-movie-text {
    width: 100%;
    margin: 24px auto 24px;
    text-align: left;
    font-weight: 400;
    font-size: 3.75vw;
  }
  .beams-concept-movie-text b {
    font-size: 4.0625vw;
  }
  .beams-concept-movie-gallery-thumbnails {
    gap: 8px 1%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 20px;
  }
  .beams-concept-movie-gallery-thumbnails-item {
    -ms-flex-preferred-size: 47%;
        flex-basis: 47%;
  }
}
#popupModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#popupModal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#popupModal .modal_content {
  position: relative;
  max-width: 90%;
  min-width: 902px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1100px) {
  #popupModal .modal_content {
    max-width: 70%;
    min-width: 80%;
  }
}
#popupModal .modal_content .modal_img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

#popupModal .modal_close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 1001;
}

#popupModal .modal_close:hover {
  color: #ddd;
}

#popupModal .popup-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: white;
  font-size: 12px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
}

#popupModal .modal_arrow {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
}

#popupModal .modal_arrow:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fe5226;
  border-right: 2px solid #fe5226;
}

#popupModal .modal_arrow:hover {
  background: #fe5226;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#popupModal .modal_arrow:hover::before {
  border-color: #fff;
}

#popupModal .modal_arrow--prev {
  left: -4rem;
}

#popupModal .modal_arrow--prev::before {
  left: calc(50% + 2px);
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
}

#popupModal .modal_arrow--next {
  right: -4rem;
}

#popupModal .modal_arrow--next::before {
  right: calc(50% + 2px);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-open {
  overflow: hidden;
}

.beams-marquee-gallery {
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.beams-marquee-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.beams-marquee-track-list {
  padding: 5px 5px 5px 0;
  display: grid;
  gap: 6px;
  grid-template-columns: 50% 53% 96% 51% 50% 100% 51% 98%;
  grid-template-rows: repeat(2, 1fr);
  height: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

@media screen and (min-width: 769px) {
  .beams-marquee-track-list {
    grid-template-columns: 364px 395px 696px 364px 364px 720px 378px 696px;
  }
}
.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.gallery-item img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.gallery-item:hover img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* 右下に小さな画像を表示する擬似要素 */
.gallery-item::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: url(https://fujievery2.pkt.jp/assets/images/pc/lite_top/pop-plus.png) no-repeat center/contain;
  width: 20px;
  height: 20px;
  z-index: 2;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* グリッドレイアウトを .gallery-item に適用 */
.gallery-item:nth-of-type(1) {
  grid-row: span 2/span 2;
  /* aspect-ratio: 311/526; */
}

.gallery-item:nth-of-type(2) {
  grid-column-start: 2;
  grid-row-start: 1;
}

.gallery-item:nth-of-type(3) {
  grid-column-start: 2;
  grid-row-start: 2;
}

.gallery-item:nth-of-type(4) {
  grid-row: span 2/span 2;
  grid-column-start: 3;
  grid-row-start: 1;
  /* aspect-ratio: 595/526; */
}

.gallery-item:nth-of-type(5) {
  grid-row: span 2/span 2;
  grid-column-start: 4;
  grid-row-start: 1;
}

.gallery-item:nth-of-type(6) {
  grid-column-start: 5;
  grid-row-start: 1;
}

.gallery-item:nth-of-type(7) {
  grid-column-start: 5;
  grid-row-start: 2;
}

.gallery-item:nth-of-type(8) {
  grid-row: span 2/span 2;
  grid-column-start: 6;
  grid-row-start: 1;
}

.gallery-item:nth-of-type(9) {
  grid-column-start: 7;
  grid-row-start: 1;
}

.gallery-item:nth-of-type(10) {
  grid-column-start: 7;
  grid-row-start: 2;
}

.gallery-item:nth-of-type(11) {
  grid-row: span 2/span 2;
  grid-column-start: 8;
  grid-row-start: 1;
}

/* 画像のスタイル調整 */
.beams-marquee-gallery-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* モーダル画像の右下に小さな画像を表示 */
.popup-image {
  position: relative;
}

.popup-image::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background-image: var(--thumbnail-url);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 10001;
}

@media screen and (max-width: 768px) {
  #popupModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #popupModal.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #popupModal .modal_content {
    position: relative;
    max-width: 100%;
    max-height: 90%;
    min-width: 100%;
    padding: 0 15px;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #popupModal .modal_content .modal_img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #popupModal .modal_close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    font-weight: 400;
    cursor: pointer;
    z-index: 1001;
  }
  #popupModal .modal_close:hover {
    color: #ddd;
  }
  #popupModal .popup-counter {
    position: absolute;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    color: white;
    font-size: 12px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
  }
  #popupModal .modal_arrow {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
  }
  #popupModal .modal_arrow:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fe5226;
    border-right: 2px solid #fe5226;
  }
  #popupModal .modal_arrow:active {
    background: #fe5226;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #popupModal .modal_arrow:active::before {
    border-color: #fff;
  }
  #popupModal .modal_arrow .modal_arrows {
    position: absolute;
    bottom: 0;
  }
  #popupModal .modal_arrow--prev {
    left: 5px;
  }
  #popupModal .modal_arrow--prev::before {
    left: calc(50% + 2px);
    -webkit-transform: translate(-50%, -50%) rotate(-135deg);
            transform: translate(-50%, -50%) rotate(-135deg);
  }
  #popupModal .modal_arrow--next {
    right: 5px;
  }
  #popupModal .modal_arrow--next::before {
    right: calc(50% + 2px);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
}
.foot__area {
  max-width: 100vw;
  min-width: auto;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .beams-marquee-track-list {
    grid-template-columns: 156px 169px 260px 156px 156px 260px;
    grid-template-rows: repeat(2, 1fr);
    gap: 3px;
    padding: 0 0 3px 0;
    height: 260px;
    width: 100%;
    aspect-ratio: 16/9;
  }
  .gallery-item::after {
    width: 15px;
    height: 15px;
    right: 5px;
    bottom: 5px;
  }
}
.beams-design {
  padding: 80px 0 120px;
  background: #c1caaa;
  color: #000;
}
.beams-design .splide__track--nav > .splide__list > .splide__slide.is-active {
  border: none;
  border-width: 0;
}
.beams-design .splide__track--nav > .splide__list > .splide__slide {
  border: none;
  margin: 0;
  outline: none;
  border-width: 0;
}
.beams-design .cloudimage-360-view-360-icon {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: initial;
  background: url(/assets/images/pc/beams/360_view.png) 50% 50%/contain no-repeat !important;
  width: 470px !important;
  height: 340px !important;
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
  top: calc(50% - 40px) !important;
  bottom: initial !important;
  color: transparent;
  font-size: 0;
}

.beams-design-title,
.beams-design-title-left,
.beams-design-title-right {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 52px;
  letter-spacing: 0.06em;
  text-align: center;
  color: #fff;
}

.beams-design-title-left,
.beams-design-title-right {
  font-weight: 100;
}

.beams-design-title-left {
  margin-right: 16px;
}

.beams-design-title-right {
  margin-left: 16px;
}

.beams-design-subtitle {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #fe5226;
  letter-spacing: 0.06em;
  margin-top: 10px;
  text-align: center;
}

.beams-design-container {
  position: relative;
  max-width: 480px;
  text-align: center;
  margin: 0 auto;
}

.beams-design-container-text {
  width: 92%;
  max-width: 1000px;
  margin: 16px auto;
  font-weight: 400;
  text-align: left;
  line-height: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.beams-design-container-text#text2 {
  display: none;
}
.beams-design-container-text.is-expanded {
  -webkit-line-clamp: unset;
  display: block;
  overflow: visible;
}

.beams-design-container-text-readmore {
  position: absolute;
  line-height: 2;
  bottom: 3px;
  right: 45px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(193, 202, 170, 0)), color-stop(20%, #c1caaa));
  background: linear-gradient(to right, rgba(193, 202, 170, 0), #c1caaa 20%);
  padding-left: 0.5em;
  cursor: pointer;
  color: #fe5226;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 5px;
  font-size: 0.9em;
  white-space: nowrap;
}
.beams-design-container-text-readmore > span {
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.beams-design-gallery-wrap {
  padding: 40px 0 0;
  background: #c1caaa;
  color: #000;
}

.beams-design-gallery {
  width: 1000px;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  background-color: #fff;
}

.beams-design-gallery-controller-controls {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.beams-design-gallery-controller-controls-switch-text {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  display: none;
}
.beams-design-gallery-controller-controls-switch-text.is-active {
  display: inline;
}

.beams-design-gallery-controller-controls-button {
  width: 54px;
  height: 40px;
  border-radius: 4px;
  position: relative;
}
.beams-design-gallery-controller-controls-button.olive {
  background-image: -webkit-gradient(linear, left top, right bottom, from(#899476), color-stop(50%, #899476), color-stop(51%, #476182), to(#476182));
  background-image: linear-gradient(to right bottom, #899476, #899476 50%, #476182 51%, #476182);
}
.beams-design-gallery-controller-controls-button.beige {
  background-image: -webkit-gradient(linear, left top, right bottom, from(#b5a580), color-stop(50%, #b5a580), color-stop(51%, #786534), to(#786534));
  background-image: linear-gradient(to right bottom, #b5a580, #b5a580 50%, #786534 51%, #786534);
}
.beams-design-gallery-controller-controls-button.is-active {
  outline: 2px solid #fe5226;
  border: 1px solid #fff;
}
.beams-design-gallery-controller-controls-button.is-active::before {
  content: "";
  position: absolute;
  background-image: url(../../images/pc/beams/icon_check.png);
  background-size: 42%;
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}

.beams-design-gallery-controller-description-text {
  display: none;
  line-height: 1.5;
}
.beams-design-gallery-controller-description-text.is-active {
  display: inline;
}

#olive-main-carousel .splide__slide > *,
#beige-main-carousel .splide__slide > * {
  width: 100%;
  min-height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.olive-main-carousel,
.beige-main-carousel {
  background-color: #f3f2ec;
  border-radius: 10px 0 0 0;
}
.olive-main-carousel .cloudimage-360-inner-box,
.beige-main-carousel .cloudimage-360-inner-box {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.olive-thumbnail-carousel .splide__slide,
.beige-thumbnail-carousel .splide__slide {
  width: 25% !important;
  aspect-ratio: 834/542;
  padding: 0;
  border: none;
  position: relative;
  display: inline-block;
}
.olive-thumbnail-carousel .splide__slide::before,
.beige-thumbnail-carousel .splide__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
  z-index: 1;
  -webkit-transition: none;
  transition: none;
}
.olive-thumbnail-carousel .splide__slide.is-active::before,
.beige-thumbnail-carousel .splide__slide.is-active::before {
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 103%;
  -webkit-transition: none;
  transition: none;
}
.olive-thumbnail-carousel .splide__slide.is-active,
.beige-thumbnail-carousel .splide__slide.is-active {
  border: none;
}
.olive-thumbnail-carousel .splide__slide img,
.beige-thumbnail-carousel .splide__slide img {
  width: 100%;
  height: 103%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-bottom: 1px solid #8d8d8d;
}

@media screen and (min-width: 769px) {
  #olive-thumbnail-carousel .splide__slide,
#beige-thumbnail-carousel .splide__slide {
    width: 100% !important;
    height: 20% !important;
    aspect-ratio: auto;
    border-bottom: 1px solid #8d8d8d;
  }
  .olive-main-carousel,
.beige-main-carousel {
    border-radius: 20px 0 0 0;
  }
  .olive-main-carousel .splide__track,
.beige-main-carousel .splide__track {
    border-radius: 20px 0 0 0;
    overflow: hidden;
  }
  #olive-thumbnail-carousel .splide__slide[aria-controls=olive-main-carousel-slide01],
#beige-thumbnail-carousel .splide__slide[aria-controls=beige-main-carousel-slide01] {
    border-radius: 0 21px 0 0;
  }
  #olive-thumbnail-carousel .splide__slide[aria-controls=olive-main-carousel-slide01] img,
#beige-thumbnail-carousel .splide__slide[aria-controls=beige-main-carousel-slide01] img {
    border-radius: 0 21px 0 0;
  }
  .splide__track--draggable {
    border-radius: 0 20px 0 0;
    border-left: 1px solid #8d8d8d;
  }
  .beams-design-gallery-view {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    border-radius: 20px 20px 0 0;
    background: #f3f3ee;
    border: 1px solid #8d8d8d;
    border-bottom: 0;
  }
  .beams-design-gallery-controller {
    padding: 20px 30px 32px;
    border-top: 1px solid #8d8d8d;
  }
  .beams-design-gallery-controller-controls {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .beams-design {
    padding: 17% 0;
  }
  .beams-design .splide__slide {
    position: relative;
    overflow: hidden;
    height: 375px;
  }
  .beams-design .cloudimage-360 {
    height: 100%;
    max-height: 375px;
    overflow: hidden;
  }
  .beams-design .cloudimage-360-view-360-icon {
    background: url(/assets/images/sp/beams/360_view.png) 50% 50%/contain no-repeat !important;
    width: 86.71875vw !important;
    height: 60.9375vw !important;
    top: calc(50% - 17px) !important;
  }
  .beams-design-container-text-readmore {
    bottom: 0;
    right: 1.5rem;
    font-size: 3.75vw;
  }
  .olive-thumbnail-carousel .splide__track,
.beige-thumbnail-carousel .splide__track {
    border-radius: 0 10px 0 0;
    aspect-ratio: 6/1;
    overflow: hidden;
    border-top: 1px solid #8d8d8d;
  }
  .olive-thumbnail-carousel .splide__slide img,
.beige-thumbnail-carousel .splide__slide img {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .olive-thumbnail-carousel .splide__slide img.olive-thumbnail-carousel-image,
.beige-thumbnail-carousel .splide__slide img.beige-thumbnail-carousel-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 67%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    border: 1px solid #8d8d8d;
    border-top: none;
    border-bottom: none;
    border-left: none;
    -webkit-transform: initial;
            transform: initial;
  }
  .beams-design-title,
.beams-design-title-left,
.beams-design-title-right {
    font-size: 8.125vw;
  }
  .beams-design-subtitle {
    font-size: 3.125vw;
  }
  .beams-design-container-text {
    font-size: 3.75vw;
    margin-bottom: 40px;
  }
  .beams-design-gallery-wrap {
    padding: 0;
  }
  .beams-design-gallery {
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
    border: none;
  }
  .beams-design-gallery-controller {
    padding: 20px 15px;
    border-top: 1px solid #8d8d8d;
  }
  .beams-design-gallery-controller-controls {
    grid-template-columns: auto 1fr;
    gap: 16px;
  }
  .beams-design-gallery-controller-controls-switch {
    grid-column: 1/3;
    margin: 8px auto 16px;
    width: 100%;
  }
  .beams-design-gallery-controller-controls-button {
    width: 50px;
    height: 40px;
  }
  .beams-design-gallery-controller-controls-button.is-active::before {
    width: 47px;
    height: 38px;
  }
  .olive-thumbnail-carousel .splide__track,
.beige-thumbnail-carousel .splide__track {
    border-radius: 0;
  }
  .olive-main-carousel .cloudimage-360-inner-box,
.beige-main-carousel .cloudimage-360-inner-box {
    position: absolute;
    height: auto;
    top: initial;
    bottom: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  #olive-main-carousel .splide__slide > *,
#beige-main-carousel .splide__slide > * {
    width: 101%;
    min-height: initial;
    -o-object-fit: initial;
       object-fit: initial;
    display: block;
    position: absolute;
    top: initial;
    bottom: 0;
    left: 0;
  }
  .olive-main-carousel .splide__list {
    width: 100vw;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
  .olive-thumbnail-carousel .splide__list,
.beige-thumbnail-carousel .splide__list {
    height: 25vw;
  }
  .beams-design-gallery-controller-description-text {
    font-size: 3.75vw;
    line-height: 1.75;
  }
  .beams-design-gallery-controller-controls-button.is-active {
    outline: none;
    border: 2px solid #fe5226;
  }
}
.olive-thumbnail-carousel .splide__arrows--ttb .splide__arrow--prev,
.beige-thumbnail-carousel .splide__arrows--ttb .splide__arrow--prev {
  top: -12px;
}
.olive-thumbnail-carousel .splide__arrows--ttb .splide__arrow--next,
.beige-thumbnail-carousel .splide__arrows--ttb .splide__arrow--next {
  bottom: -12px;
}
.olive-thumbnail-carousel .splide__arrows .splide__arrow,
.beige-thumbnail-carousel .splide__arrows .splide__arrow {
  opacity: 1;
  background-color: #fe5226;
  width: 33px;
  height: 33px;
}
.olive-thumbnail-carousel .splide__arrows .splide__arrow > svg,
.beige-thumbnail-carousel .splide__arrows .splide__arrow > svg {
  fill: #fff;
}
.olive-thumbnail-carousel .splide__arrows .splide__arrow:disabled,
.beige-thumbnail-carousel .splide__arrows .splide__arrow:disabled {
  opacity: 0.7;
}

.splide__arrow svg {
  width: 12px !important;
  height: 12px !important;
}

.carousel-active {
  display: block;
}

.carousel-hidden {
  display: none;
}

.carousel-hidden .cloudimage-360 {
  visibility: hidden;
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.olive-main-carousel-image,
.olive-thumbnail-carousel-image,
.beige-main-carousel-image,
.beige-thumbnail-carousel-image {
  width: 100%;
}

.text-reveal {
  display: inline-block;
}
.text-reveal .text-reveal-outer {
  display: inline-block;
  overflow: hidden;
}
.text-reveal .text-reveal-inner {
  display: inline-block;
  white-space: nowrap;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 1s ease-out;
  transition: transform 1s ease-out, opacity 0.6s ease-out;
  transition: transform 1s ease-out, opacity 0.6s ease-out, -webkit-transform 1s ease-out;
}
.text-reveal.is-visible .text-reveal-inner {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.beams-scene {
  background-color: #f8f8f5;
  background-image: linear-gradient(0deg, transparent 20px, #e9e9e6 21px), linear-gradient(90deg, transparent 20px, #e9e9e6 21px);
  background-size: 21px 21px;
  padding: 0 0 120px;
  color: #333;
  overflow: hidden;
}

.beams-scene-message {
  background-image: url(../../../../assets/images/pc/beams/livethelife.svg);
  width: 100vw;
  height: 160px;
  background-size: auto 100%;
  -webkit-animation: bg-scroll 30s linear infinite;
          animation: bg-scroll 30s linear infinite;
  margin-bottom: 0;
}

@-webkit-keyframes bg-scroll {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}

@keyframes bg-scroll {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
.beams-scene-title {
  font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 600;
  font-size: 52px;
  letter-spacing: 0.06em;
  text-align: center;
}

.beams-scene-title-left {
  font-weight: 100;
  margin-right: 16px;
}

.beams-scene-title-right {
  font-weight: 100;
  margin-left: 16px;
}

.beams-scene-subtitle {
  font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  color: #fe5226;
  letter-spacing: 0.06em;
  margin-top: 10px;
  text-align: center;
}

.beams-scene-photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1333px;
  width: 940px;
  margin: 120px auto 0;
  row-gap: 60px;
}

.beams-scene-photos-room {
  position: relative;
  width: 82%;
  aspect-ratio: 385/504;
  max-width: 402px;
  height: auto;
  margin: auto;
}
.beams-scene-photos-room .beams-scene-photos-room-phrase {
  position: absolute;
  top: -90px;
  right: -237px;
}

.beams-scene-photos-room-phrase {
  position: absolute;
  z-index: 3;
  right: -4vw;
  top: 1vw;
}

.beams-scene-photos-room-text {
  position: absolute;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  z-index: 2;
  top: -44px;
  left: 40px;
}
.beams-scene-photos-room-text-style {
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 10px 2px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.beams-scene-photos-room-text-style:nth-of-type(2) {
  margin-top: 38px;
}

.beams-scene-photos-room-photo {
  position: absolute;
  -webkit-transform: rotate(-4.5deg);
          transform: rotate(-4.5deg);
  -webkit-transform-origin: 40% 50%;
          transform-origin: 40% 50%;
  border-radius: 20px;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center; /* 必要に応じて top / left なども可 */
  border: 1px solid #333;
  width: 100%;
}

.beams-scene-photos-room-shadow {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  border-radius: 20px;
  background: #e8e7de;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.beams-scene-photos-kids {
  position: relative;
  width: 82%;
  aspect-ratio: 428/468;
  max-width: 416px;
  height: auto;
  margin: 80px auto 0;
}

.beams-scene-photos-kids-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: -60px;
  top: -50px;
  z-index: 2;
  letter-spacing: 0.1em;
  font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}

.beams-scene-photos-kids-badge-background {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 105px;
  height: 105px;
  background-image: url("../../../../assets/images/pc/beams/badge_bomb.svg");
  background-position: center;
  background-repeat: no-repeat;
  -webkit-animation: bombspin 10s linear infinite;
          animation: bombspin 10s linear infinite;
  z-index: 0;
}

.beams-scene-photos-kids-badge-text {
  position: absolute;
  z-index: 1;
  text-align: center;
  font-weight: bold;
  color: white;
}
.beams-scene-photos-kids-badge-text-number {
  font-size: 18px;
}

.beams-scene-photos-kids-badge-text-number {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.2;
}

@-webkit-keyframes bombspin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes bombspin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.beams-scene-photos-kids-photo {
  position: absolute;
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
  -webkit-transform-origin: 50% 70%;
          transform-origin: 50% 70%;
  border-radius: 20px;
  z-index: 1;
  border: 1px solid #333;
  width: 100%;
}

.beams-scene-photos-kids-shadow {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  border-radius: 20px;
  background: #e8e7de;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
}

.beams-scene-photos-good {
  position: relative;
  width: 580px;
  aspect-ratio: 520/414;
  max-width: 580px;
  margin-left: 0;
  height: auto;
}

.beams-scene-photos-good-phrase {
  position: absolute;
  left: -130px;
  top: 60px;
  z-index: 2;
}

.beams-scene-photos-good-photo {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center; /* 必要に応じて top / left なども可 */
  display: block;
  z-index: 1;
  border-radius: 20px;
  border: 1px solid #333;
}

.beams-scene-photos-good-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e8e7de;
  -webkit-transform: rotate(-2.6deg);
          transform: rotate(-2.6deg);
  -webkit-transform-origin: 70% 100%;
          transform-origin: 70% 100%;
  border-radius: 20px;
}

.beams-scene-photos-message {
  margin: 0 0 0 54px;
  -ms-flex-item-align: center;
      align-self: center;
}

.beams-scene-photos-message-title {
  display: grid;
  grid-template-rows: 1fr 1fr;
  row-gap: 5px;
}

.beams-scene-photos-message-title-text {
  padding: 0 5px;
  background-color: #333;
  color: #fff;
  font-size: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.65;
}

.beams-scene-photos-message-text {
  line-height: 2;
  margin-top: 32px;
  max-width: 280px;
}

.beams-scene-articles {
  padding: 80px 60px 50px;
  width: 1000px;
  margin: 90px auto 0;
  max-width: 1333px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #333;
  background: #fff;
  text-align: left;
}

.beams-scene-articles-title {
  text-align: center;
  font-size: 28px;
  margin: 20px 0 10px;
  font-weight: 600;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1.5;
}
.beams-scene-articles-title br {
  display: none;
}

.beams-scene-articles-subtitle {
  text-align: center;
  font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 400;
  color: #fe5226;
  letter-spacing: 0.06em;
}

.beams-scene-articles-text {
  text-align: center;
  margin: 28px auto 56px;
  line-height: 2;
  font-size: 14px;
}

.beams-scene-articles-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 32px;
}
.beams-scene-articles-list a {
  opacity: 1;
  max-width: 400px;
}
.beams-scene-articles-list a:nth-child(1), .beams-scene-articles-list a:nth-child(3) {
  position: relative;
}
.beams-scene-articles-list a:nth-child(1) .beams-scene-articles-list-item::after, .beams-scene-articles-list a:nth-child(3) .beams-scene-articles-list-item::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background: #e1e1e1;
  position: absolute;
  right: -37px;
  top: 0;
}
.beams-scene-articles-list a .beams-scene-articles-list-item-photo img {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.beams-scene-articles-list a .beams-scene-articles-list-item-link::after {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.beams-scene-articles-list a:hover .beams-scene-articles-list-item-link::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.beams-scene-articles-list a:hover .beams-scene-articles-list-item-photo img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.beams-scene-articles-list-item:not(:last-of-type), .beams-scene-articles-list-item:not(:nth-last-of-type(2)) {
  margin-bottom: 20px;
}

.beams-scene-articles-list-item-photo {
  width: 100%;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.beams-scene-articles-list-item-photo::before {
  content: "";
  display: inline-block;
  background: url(/assets/images/pc/beams/corner.svg) no-repeat center/contain;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 39px;
  height: 39px;
  z-index: 1;
}

.beams-scene-articles-list-item-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #8b8b8b;
  font-size: 13px;
  line-height: 140%;
  margin-bottom: 10px;
}

.beams-scene-articles-list-item-author-case {
  letter-spacing: 0.1em;
  font-family: "Poppins", sans-serif;
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  white-space: nowrap;
  -ms-flex-item-align: baseline;
      align-self: baseline;
}
.beams-scene-articles-list-item-author-case + span {
  margin: 0 10px;
  font-size: 11px;
  -ms-flex-item-align: baseline;
      align-self: baseline;
}

.beams-scene-articles-list-item-title {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 20px;
}

.beams-scene-articles-list-item-link-outer {
  text-align: right;
  margin-top: 10px;
}

.beams-scene-articles-list-item-link {
  display: inline-block;
  color: #fe5226;
  padding: 2px;
  text-decoration: underline;
  text-underline-offset: 8px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
}
.beams-scene-articles-list-item-link::after {
  content: "";
  display: inline-block;
  background: url(/assets/images/pc/beams/more-arrow.svg) no-repeat center/contain;
  width: 22px;
  height: 22px;
}

.beams-scene-photos-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
  grid-column: 1;
  grid-row: 2;
}

.beams-scene-summary-message-item {
  padding: 5px 10px;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.06em;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.beams-scene-summary-text {
  font-size: 14px;
  text-align: left;
  margin-right: 64px;
  padding-right: 16px;
  line-height: 2;
  width: 88%;
  margin: 0 auto;
  max-width: 880px;
  grid-column: 2;
  grid-row: 1/span 2;
  font-weight: 200;
  align-self: center;
}

@media (max-width: 768px) {
  .sp-hidden {
    display: none;
  }
  .beams-scene {
    padding: 0 0 17%;
    background-image: linear-gradient(0deg, transparent 16px, #e9e9e6 17px), linear-gradient(90deg, transparent 16px, #e9e9e6 17px);
    background-size: 17px 17px;
  }
  .beams-scene-message {
    height: 80px;
  }
  .beams-scene-title {
    font-size: 8.125vw;
  }
  .beams-scene-subtitle {
    font-size: 3.125vw;
  }
  .beams-scene-photos {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr auto;
    row-gap: 50px;
    margin: 20% auto 0;
    padding: 0 15px;
  }
  .beams-scene-photos-room .beams-scene-photos-room-phrase {
    position: absolute;
    top: -40px;
    right: -57px;
  }
  .beams-scene-articles-list-item-photo::before {
    width: 29px;
    height: 29px;
  }
  .beams-scene-photos {
    gap: 30px;
  }
  .beams-scene-photos-kids-photo {
    border-radius: 10px;
  }
  .beams-scene-photos-room {
    width: 75%;
    margin: auto auto auto 8%;
  }
  .beams-scene-photos-room-phrase {
    right: -16vw;
    top: -12vw;
    width: 64%;
  }
  .beams-scene-photos-room-text {
    left: 2%;
    font-size: 0;
    line-height: 1;
  }
  .beams-scene-photos-room-text-style {
    font-size: 18px;
  }
  .beams-scene-photos-kids {
    width: 70%;
    margin: auto 10% auto auto;
  }
  .beams-scene-photos-kids-badge {
    right: -60px;
    top: -50px;
  }
  .beams-scene-photos-good {
    width: 90%;
    margin: auto 0 auto auto;
  }
  .beams-scene-photos-good {
    margin-top: 8px;
  }
  .beams-scene-photos-good-phrase {
    width: 42%;
    top: 6vw;
    left: -10vw;
  }
  .beams-scene-photos-message {
    margin-left: 0;
    padding: 0 10px;
  }
  .beams-scene-photos-message-title-text {
    font-weight: 500;
    font-size: 4.375vw;
    line-height: 1.4;
  }
  .beams-scene-photos-message-text {
    margin-top: 16px;
    font-size: 3.75vw;
    line-height: 1.75;
    max-width: initial;
  }
  .beams-scene-articles-wrapper {
    padding: 0 15px;
  }
  .beams-scene-articles {
    width: 100%;
    padding: 10% 20px;
    margin: 15% auto 0;
  }
  .beams-scene-articles-title {
    margin: 12px auto 6px;
    width: 230px;
    font-size: 4.375vw;
  }
  .beams-scene-articles-subtitle {
    font-size: 3.125vw;
  }
  .beams-scene-articles-text {
    text-align: left;
    font-size: 3.75vw;
    line-height: 1.75;
    margin-bottom: 32px;
    margin-top: 16px;
  }
  .beams-scene-articles-text br {
    display: none;
  }
  .beams-scene-articles-title br {
    display: block;
  }
  .beams-scene-articles-list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
  .beams-scene-articles-list a {
    opacity: 1;
  }
  .beams-scene-articles-list a:nth-child(1), .beams-scene-articles-list a:nth-child(2), .beams-scene-articles-list a:nth-child(3) {
    position: relative;
  }
  .beams-scene-articles-list a:nth-child(1) .beams-scene-articles-list-item::after, .beams-scene-articles-list a:nth-child(2) .beams-scene-articles-list-item::after, .beams-scene-articles-list a:nth-child(3) .beams-scene-articles-list-item::after {
    content: "";
    display: inline-block;
    width: 100px;
    height: 1px;
    background: #e1e1e1;
    position: absolute;
    right: initial;
    left: 0;
    top: initial;
    bottom: 0;
  }
  .beams-scene-articles-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 15px;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .beams-scene-articles-list-item:not(:last-child) {
    border-bottom: 1px solid #ccc;
  }
  .beams-scene-articles-list-item-text {
    padding: 10px 0;
  }
  .beams-scene-articles-list-item-photo {
    grid-column: 1;
    grid-row: 1/span 3;
    width: 45%;
    height: auto;
    aspect-ratio: 1/1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 5px;
    margin-bottom: 0;
  }
  .beams-scene-articles-list-item-photo-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    display: block;
    border-radius: 0;
    margin-bottom: 0;
  }
  .beams-scene-articles-list-item-author {
    font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
    line-height: 1.6;
    font-size: 2.5vw;
    grid-column: 2;
    grid-row: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .beams-scene-articles-list-item-title {
    line-height: 1.5;
    grid-column: 2;
    grid-row: 2;
    font-weight: 700;
    font-size: 3.75vw;
  }
  .beams-scene-articles-list-item-link {
    grid-column: 2;
    grid-row: 3;
    font-size: 3.4375vw;
  }
  .beams-scene-articles .beams-scene-articles-list a .beams-scene-articles-list-item::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    bottom: 0px;
    left: 0;
    top: initial;
  }
  .beams-scene-articles-list-item:not(:last-of-type), .beams-scene-articles-list-item:not(:nth-last-of-type(2)) {
    margin-bottom: 0;
  }
  .beams-scene-articles-list a:last-of-type .beams-scene-articles-list-item {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 459px) {
  .beams-scene-photos-room-text-style {
    font-size: 15px;
  }
  .beams-scene-photos-kids-badge {
    right: -40px;
    top: -36px;
  }
  .beams-scene-photos-kids-badge-text {
    font-size: 10px;
  }
  .beams-scene-photos-kids-badge-text-number {
    font-size: 1.5rem;
  }
  .beams-scene-photos-kids-badge-background {
    width: 80px;
    height: 80px;
  }
}
@media screen and (min-width: 769px) {
  .pc-hidden {
    display: none;
  }
}
.beams-function {
  color: #333;
  background-color: #e6e2cb;
  padding: 98px 24px;
}

.beams-function-title {
  font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 600;
  font-size: 52px;
  letter-spacing: 0.06em;
  text-align: center;
}

.beams-function-title-left {
  font-weight: 100;
  margin-right: 16px;
}

.beams-function-title-right {
  font-weight: 100;
  margin-left: 16px;
}

.beams-function-subtitle {
  font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  color: #fe5226;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 60px;
}

.beams-function-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1333px;
  margin: 0 auto 64px;
}
.beams-function-list a {
  opacity: 1;
}
.beams-function-list a .swiper-slide-img {
  overflow: hidden;
}
.beams-function-list a .swiper-slide-img img {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.beams-function-list a .beams-function-list-item-link::after {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.beams-function-list a:hover .beams-function-list-item-link::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.beams-function-list a:hover .swiper-slide-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.beams-function-list-item {
  border: 1px solid #333;
  border-radius: 20px;
  max-width: 320px;
  background-color: #fff;
  overflow: hidden;
}
.beams-function-list-item .swiper-slide-txt {
  padding: 30px 28px;
}

.beams-function-list-item-title {
  letter-spacing: 0.06em;
  font-size: 18px;
  margin-bottom: 10px;
}

.beams-function-list-item-title-text {
  color: #fff;
  background: #333;
  padding: 5px;
  margin-bottom: 8px;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.beams-function-list-item-text {
  line-height: 1.7;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.beams-function-list-item-image {
  width: 100%;
  aspect-ratio: 314/235;
  height: auto;
  display: block; /* 不要な隙間防止 */
  -o-object-fit: cover;
     object-fit: cover; /* or contain, depending on your use case */
}

.beams-function-list-item-link {
  display: inline-block;
  color: #fe5226;
  padding: 2px;
  text-decoration: underline;
  text-underline-offset: 8px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
}
.beams-function-list-item-link::after {
  content: "";
  display: inline-block;
  background: url(/assets/images/pc/beams/more-arrow.svg) no-repeat center/contain;
  width: 22px;
  height: 22px;
}

.beams-function-button {
  position: relative;
  width: 370px;
  height: 70px;
  border-radius: 10px;
  background-color: #fe5226;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.beams-function-button::after {
  content: "";
  display: inline-block;
  background: url(/assets/images/pc/beams/more-arrow.svg) no-repeat center/contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
}

@media screen and (min-width: 769px) {
  .swiper-controller {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .beams-function {
    padding: 64px 0;
  }
  .beams-function-list {
    width: 100%;
    padding-right: 15px;
  }
  .beams-function-list-item-title-text {
    font-size: 4.0625vw;
  }
  .beams-function-list-item-text {
    font-size: 3.75vw;
  }
  .beams-function-button {
    width: calc(100% - 90px);
    height: 54px;
    font-size: 3.90625vw;
    border-radius: 8px;
  }
  .beams-function-list-item .swiper-slide-txt {
    padding: 24px 20px;
  }
  .beams-function-title {
    font-size: 8.125vw;
  }
  .beams-function-subtitle {
    font-size: 3.125vw;
    margin-bottom: 28px;
  }
}
@media screen and (min-width: 769px) {
  .beams-function-list .swiper-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
}
.beams-purification {
  color: #000;
  padding-top: 100px;
}

.beams-purification-title {
  font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 600;
  font-size: 48px;
  letter-spacing: 0.06em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.beams-purification-title-left {
  font-weight: 100;
  margin-right: 16px;
}

.beams-purification-title-right {
  font-weight: 100;
  margin-left: 16px;
}

.beams-purification-subtitle {
  font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  color: #fe5226;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 16px;
}

.beams-purification-list {
  width: 1000px;
  margin: 62px auto 0;
  border-radius: 20px;
  border: 1px solid #000;
  overflow: hidden;
}

.beams-purification-body {
  max-height: 0;
  padding: 0 36px 0 80px;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  opacity: 0;
  background-color: #f3f2ec;
  display: grid;
  grid-template-columns: 1fr 172px;
  grid-template-rows: minmax(76px, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.beams-purification-item.is-open .beams-purification-body {
  max-height: 500px; /* 開いた時に十分大きな高さにする */
  opacity: 1;
  padding: 8px 36px 8px 80px;
}
.beams-purification-item a.more-btn {
  width: 160px;
  font-size: 14px;
  border-color: #fe5226;
  color: #fe5226;
}
.beams-purification-item a.more-btn::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 19px;
  width: 6px;
  height: 6px;
  display: inline-block;
  border-top: 1px solid #fe5226;
  border-right: 1px solid #fe5226;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.beams-purification-item a.more-btn:hover {
  background: #fe5226;
  color: #fff;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
}
.beams-purification-item a.more-btn:hover::before {
  border-color: #fff;
}

.beams-purification-header {
  display: grid;
  grid-template-columns: 72px 1fr 64px;
  grid-template-rows: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 16px;
  cursor: pointer;
  padding: 8px;
  border-bottom: 1px solid #ccc;
  background: #fff;
}

.beams-purification-index {
  text-align: right;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fe5226;
  font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
.beams-purification-index.index01 {
  letter-spacing: 0.131em;
}

.beams-purification-header-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.beams-purification-header-title br {
  display: none;
}

.beams-purification-text {
  line-height: 1.5;
  padding: 8px;
  font-weight: 400;
}

.beams-purification-link {
  width: 140px;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 21px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  border: 1px solid #fe5226;
  color: #fe5226;
}

.beams-purification-link-icon {
  width: 8px;
  height: auto;
  margin-left: 8px;
  margin-top: 1px;
}

.beams-purification-toggle-icon {
  position: relative;
  background: #fe5226;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.beams-purification-toggle-icon::before, .beams-purification-toggle-icon::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 16px;
  height: 2px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.beams-purification-toggle-icon::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.beams-purification-toggle-icon::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 1;
}
.beams-purification-toggle-icon.is-open::after {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .beams-function .swiper-controller {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 20px 15px;
    margin-bottom: 40px;
    width: 100%;
    gap: 20px;
  }
  .beams-function .swiper-horizontal > .swiper-pagination-progressbar, .beams-function .swiper-pagination-progressbar.swiper-pagination-horizontal, .beams-function .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .beams-function .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite　 {
    margin-top: 0;
  }
  .beams-function .swiper-pagination-wrapper {
    width: 70%;
  }
  .beams-function .swiper-button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
  }
  .beams-scene-summary-message-item {
    font-size: 4.375vw;
  }
  .beams-function-list {
    margin-bottom: 32px;
  }
  .beams-function .swiper-button-next, .beams-function .swiper-button-prev {
    position: initial;
    width: 38px;
    height: 38px;
    border: 1px solid #fe5226;
    border-radius: 999px;
    background: #fff;
  }
  .beams-function .swiper-button-next:active, .beams-function .swiper-button-prev:active {
    background: #fe5226;
  }
  .beams-function .swiper-button-next:active:after, .beams-function .swiper-button-prev:active:after {
    color: #fff;
  }
  .beams-function .swiper-button-next:after, .beams-function .swiper-button-prev:after {
    font-weight: 700;
    color: #fe5226;
    font-size: 13px;
  }
  .beams-function-pagination {
    position: relative;
    height: 4px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 16px;
  }
  .beams-function-pagination .swiper-pagination-progressbar-fill {
    background-color: #333;
    height: 100%;
    width: 100%;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
  }
  .beams-function-prev, .beams-function-next {
    background-color: rgba(0, 0, 0, 0.2);
  }
  .beams-purification {
    padding: 15% 15px 0;
  }
  .beams-purification-body {
    padding: 0;
  }
  .beams-purification-item.is-open .beams-purification-body {
    padding: 10px 0px 30px 0px;
  }
  .beams-purification-title {
    font-size: 6.25vw;
  }
  .beams-purification-subtitle {
    margin-top: 8px;
    font-size: 3.125vw;
  }
  .beams-purification-list {
    border-radius: 10px;
    width: 100%;
    margin-top: 28px;
  }
  .beams-purification-header {
    grid-template-columns: 64px 1fr 64px;
    padding: 8px 20px;
  }
  .beams-purification-header-title {
    font-size: 20px;
    line-height: 1.5;
  }
  .beams-purification-header-title br {
    display: block;
  }
  .beams-purification-index {
    font-size: 24px;
  }
  .beams-purification-body {
    grid-template-columns: 1fr;
  }
  .beams-purification-text {
    margin-left: 16px;
    margin-right: 16px;
    padding: 0 15px;
  }
  .beams-purification-link {
    width: 160px;
    margin: 8px auto;
  }
  .beams-purification-toggle-icon {
    width: 32px;
    height: 32px;
  }
  .beams-purification-toggle-icon-image {
    margin: 8px;
  }
}
@media screen and (max-width: 459px) {
  .beams-purification-header {
    grid-template-columns: 32px 1fr 32px;
  }
  .beams-purification-header-title {
    font-size: 16px;
  }
  .beams-purification-text {
    font-size: 14px;
    margin-left: 8px;
    margin-right: 8px;
  }
}
.beams-apply {
  width: 100%;
  background: #fff;
}

.beams-apply-button {
  margin: 40px auto 30px;
  background-color: #fff600;
  display: block;
  width: 360px;
  height: 75px;
  padding: 25px 65px;
  font-size: 22px;
  text-align: center;
  font-weight: 400;
  color: #092a78;
  border-radius: 38px;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.beams-apply-button-text {
  position: relative;
}
.beams-apply-button-text::before {
  content: "";
  display: inline-block;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMi45MzciIGhlaWdodD0iMTUuNzE5IiB2aWV3Qm94PSIwIDAgMTIuOTM3IDE1LjcxOSI+CiAgPGRlZnM+CiAgICA8c3R5bGU+CiAgICAgIC5jbHMtMSB7CiAgICAgICAgZmlsbDogIzA5MmE3ODsKICAgICAgICBmaWxsLXJ1bGU6IGV2ZW5vZGQ7CiAgICAgIH0KICAgIDwvc3R5bGU+CiAgPC9kZWZzPgogIDxwYXRoIGlkPSLjgrfjgqfjgqTjg5dfMjIiIGRhdGEtbmFtZT0i44K344Kn44Kk44OXIDIyIiBjbGFzcz0iY2xzLTEiIGQ9Ik05MDkuMTMsMTYwLjk3di0xMy4xaDEwLjM0M3Y3LjU2MmMwLDIuNjktMy44NzgsMS42MTEtMy44NzgsMS42MTFzMC45ODEsMy45My0xLjcwNiwzLjkzSDkwOS4xM1ptMTEuNjM2LTQuOTg4di05LjQyNkg5MDcuODM3VjE2Mi4yOGg2LjU4N0M5MTYuNDY5LDE2Mi4yOCw5MjAuNzY2LDE1Ny41NDgsOTIwLjc2NiwxNTUuOTgyWm0tMy4yMzItLjkwOGgtNi40NjV2LTAuNjU2aDYuNDY1djAuNjU2Wm0wLTIuNjJoLTYuNDY1djAuNjU0aDYuNDY1di0wLjY1NFptMC0xLjk2N2gtNi40NjV2MC42NTVoNi40NjV2LTAuNjU1WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTkwNy44NDQgLTE0Ni41NjIpIi8+Cjwvc3ZnPgo=) no-repeat center/contain;
  width: 35px;
  height: 71px;
  position: absolute;
  left: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 769px) {
  .beams-apply-button {
    margin: 80px auto 60px;
  }
}
.fadein {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.fadein[data-vector=right] {
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
}
.fadein[data-vector=left] {
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}
.fadein[data-speed="1"] {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.fadein[data-speed="2"] {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.fadein[data-speed="3"] {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.fadein[data-speed="4"] {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.fadein[data-speed="5"] {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.fadein[data-speed="6"] {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.fadein[data-speed="7"] {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.fadein[data-speed="8"] {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}

.fadein.is-visible {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.fadein.is-visible.beams-scene-photos-room-photo {
  -webkit-transform: rotate(-4.5deg) translateY(0);
          transform: rotate(-4.5deg) translateY(0);
}
.fadein.is-visible.beams-scene-photos-good-shadow {
  -webkit-transform: rotate(-2.6deg) translateY(0);
          transform: rotate(-2.6deg) translateY(0);
}
.fadein.is-visible.beams-scene-photos-kids-photo {
  -webkit-transform: rotate(2deg) translateY(0);
          transform: rotate(2deg) translateY(0);
}
.fadein.is-visible.beams-scene-photos-kids-shadow {
  -webkit-transform: rotate(-3deg) translateY(0);
          transform: rotate(-3deg) translateY(0);
}
.fadein.is-visible.beams-scene-photos-good-shadow {
  -webkit-transform: rotate(-2.6deg), translateY(0);
          transform: rotate(-2.6deg), translateY(0);
}

.beams-concept-movie-subtitle.fadein.is-visible,
.beams-design-subtitle.fadein.is-visible,
.beams-scene-subtitle.fadein.is-visible,
.beams-scene-articles-subtitle.fadein.is-visible,
.beams-purification-subtitle.fadein.is-visible,
.beams-function-subtitle.fadein.is-visible {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.beams-concept-summary-title {
  overflow: hidden;
  width: 0;
}

.beams-concept-summary-title .text {
  display: inline-block;
}

.beams-concept-summary-title.is-visible {
  width: 100%;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}

/* メッセージ：帯＋文字アニメ */
.beams-concept-summary-message-item {
  display: block;
  position: relative;
  overflow: hidden;
}

.beams-concept-summary-message-item .bg {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fe5226;
  z-index: 1;
  -webkit-transition: left 0.6s ease;
  transition: left 0.6s ease;
}

.beams-concept-summary-message-item .text {
  position: relative;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease 0.3s;
  transition: opacity 0.5s ease 0.3s;
}

.beams-concept-summary-message-item.is-visible .bg {
  left: 0;
}

.beams-concept-summary-message-item.is-visible .text {
  opacity: 1;
}

.beams-scene-summary-message-item {
  display: block;
  position: relative;
  overflow: hidden;
}

.beams-scene-summary-message-item .bg {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #333;
  z-index: 1;
  -webkit-transition: left 0.6s ease;
  transition: left 0.6s ease;
}

.beams-scene-summary-message-item .text {
  position: relative;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease 0.3s;
  transition: opacity 0.5s ease 0.3s;
}

.beams-scene-summary-message-item.is-visible .bg {
  left: 0;
}

.beams-scene-summary-message-item.is-visible .text {
  opacity: 1;
}

.beams-scene-photos-room-text .text {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

.beams-scene-photos-room-text-style {
  display: inline-block;
  position: relative;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  overflow: hidden;
}
.beams-scene-photos-room-text-style .bg {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  z-index: 1;
  -webkit-transition: top 0.6s ease;
  transition: top 0.6s ease;
}
.beams-scene-photos-room-text-style .text {
  position: relative;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease 0.3s;
  transition: opacity 0.5s ease 0.3s;
}

.beams-scene-photos-room-photo.is-visible + .beams-scene-photos-room-text .beams-scene-photos-room-text-style .bg {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
  top: 0;
}
.beams-scene-photos-room-photo.is-visible + .beams-scene-photos-room-text .beams-scene-photos-room-text-style .text {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
  opacity: 1;
}

.beams-concept-summary-title {
  overflow: hidden;
  width: 0;
}
.beams-concept-summary-title.is-visible {
  width: 100%;
}

.animation-reveal {
  position: relative;
  display: inline-block;
  color: inherit;
  overflow: hidden;
}
.animation-reveal-wrap {
  text-align: center;
}
.animation-reveal::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 110%;
  background-color: #fff;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  z-index: 2;
}
.animation-reveal.is-visible::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.animation-reveal[data-speed="1"]::before {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.animation-reveal[data-speed="2"]::before {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.animation-reveal[data-speed="3"]::before {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.beams-design .animation-reveal::before {
  background: #c1caaa;
}

.beams-function .animation-reveal::before {
  background: #e6e2cb;
}

@media screen and (max-width: 768px) {
  .fadein[data-speed="1"] {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .fadein[data-speed="2"] {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .fadein[data-speed="3"] {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .fadein[data-speed="4"] {
    -webkit-transition-delay: 0.8s;
            transition-delay: 0.8s;
  }
  .fadein[data-speed="5"] {
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
  }
  .fadein[data-speed="6"] {
    -webkit-transition-delay: 1.2s;
            transition-delay: 1.2s;
  }
  .fadein[data-speed="7"] {
    -webkit-transition-delay: 1.4s;
            transition-delay: 1.4s;
  }
  .fadein[data-speed="8"] {
    -webkit-transition-delay: 1.6s;
            transition-delay: 1.6s;
  }
}
/*# sourceMappingURL=../maps/beams/common.css.map */
