@charset "UTF-8";
/* ==============================
Article header
============================== */
.vid_contents {
    display: none;
}

.article__header {
    padding: 35px 0 30px;
}

/* Studio & Location
   Standard
   Bridal */

.plan__item {
    position: relative;
    margin-top: 60px;
}

.plan__item:first-child {
    margin-top: 0;
}

.plan__item::after {
    content: "";
    display: block;
    width: 100%;
    height: 190px;
    background: #E1D8C7;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
}

/* スライドショー */
@keyframes horizontal-animation {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.slider-container {
  display: flex;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  animation: horizontal-animation 30s linear infinite;
}

.slide {
  width: 400px;
  margin-right: -223px;
}

.slide img {
  width: 40%;
  height: 240px;
  vertical-align: bottom;
}

@media (hover: hover) {
  .slider-container:hover .slider-wrapper {
    animation-play-state: paused;
  }
}

.plan__name {
    padding:0 5.3%;
}

.plan__title {
    margin-top: 25px;
    color: #805E4D;
    font-size: 2.2rem;
    font-weight: 700;
}

.plan__txt {
    margin-top: 7px;
    font-size: 1.7rem;
}

.plan__txt::after {
    content: '';
    display: block;
    width: 100%;
    height: 0.5px;
    background: #696969;
    margin-top: 7px;
}

.plan__price {
    text-align: right;
    font-size: 2.2rem;
    margin-top: 3px;
}

/* Scene */
.scene__item {
    margin-top: 30px;
}

.scene__title {
    color: #805E4D;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
}

.scene__txt {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 5px;
}

.scene__container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding: 0 2.6%;
    margin: 15px 0 0 10px;
}

.scene__container::-webkit-scrollbar{
  display:none;
}

.scene__frame {
  flex: 0 0 auto;
  width: 40%;
  height: auto;
  padding: 10px 0% 15px;
  scroll-snap-align: start;
  border-radius: 20px;
  border: 0.6px solid #805E4D;
  background: #FFF;
  text-align: center;
}

.scene__name {
    color: #A18A7E;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 900;
}

.scene__frame img {
    width: 84%;
    height: 84%;
    border-radius: 10px;
    margin: 5px auto 0;
}

/* その他写真・動画撮影 */
.another__item {
    margin-top: 60px;
}
.another__vid {
    text-align: center;
    position: relative;
}

.another__vid::after {
    content: "";
    display: block;
    width: 100%;
    height: 70%;
    background: #E1D8C7;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
}

.another__vid video {
    width: 80%;
    height: auto;
}

.another__name {
    padding:0 5.3%;
}

.another__title {
    margin-top: 25px;
    color: #805E4D;
    font-size: 2.2rem;
    font-weight: 700;
}

.another__txt {
    margin-top: 7px;
    font-size: 1.7rem;
}

/* ==========================
Option
========================== */
.topic__option{
    margin: 35px auto 30px;
}

/* アコーディオン */
.accordion {
    width: 84%;
    margin: 0 auto 10px;
    border: 1.5px solid #805e4d;
    background-color: #FFFFFF;
    border-radius: 20px;
}

.accordion img {
    display: block;
    width: 77%;
    height: auto;
    margin: 5px 11% 10px;
}

.accordion:last-child {
    margin-bottom: 35px;
}

.price-table {
    color: #805E4D;
    width: 77%;
    text-align: center;
    font-family: "Zen Antique Soft";
    font-size: 1.5rem;
    margin: 0 11% 25px;
    }

.price-table th,
.price-table td {
      border: 1px solid #805E4D;
      padding: 12px;
      text-align: center;
      align-items: normal;
      vertical-align: middle;
    }

    .price-table thead th {
      background-color: #E1D8C7;
      color: #805E4D;
    }

    .price-table thead td {
        background-color: #FFFFFF;
    }

.accordion summary {
    display: flex;
    align-items: center;
    position: relative;
    padding: 15px 11%;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028%2028%22%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2214%22%20cy%3D%2214%22%20r%3D%2214%22%20style%3D%22fill%3A%23805e4d%3B%22%2F%3E%0A%3C%2Fsvg%3E');
    background-position: right calc(2em - 7px) center;
    background-size: 22px;
    background-repeat: no-repeat;
    color: #805e4d;
    font-size: 2rem;
    font-weight: 900;
    cursor: pointer;
}

.accordion span  {
    color: rgba(128, 94, 77, 0.80);
    text-align: center;
    align-items: center;
    font-size: 1.3rem;
    margin-left: 4px;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::before,
.accordion summary::after {
    position: absolute;
    right: calc(2em + 2.5px);
    width: 3px;
    height: 10px;
    border-radius: 5px;
    background-color: #fff;
    content: '';
}

.accordion summary::before {
    rotate: 90deg;
}

.accordion summary::after {
    transition: rotate .3s;
}

.accordion[open] summary::after {
    rotate: 90deg;
}

/* First view */
@media screen and (min-width: 1120px) {
    .container {
        display: grid;
        grid-template-columns: 46.1% 375px 27.7%;
        grid-template-rows: 100vh;
    }
    
    .vid_contents {
        grid-column: 1/2;
        grid-row: 1/2;
        height:100%;
        position: relative;
        display: block;
    }

    .video__pc {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .main {
        grid-column: 2/3;
        grid-row: 1/2;
        display: flex;
        height: 100vh;
        overflow-y: auto;
        flex-direction: column;
    }

    .header {
        grid-column: 3/4;
        grid-row: 1/2;
        height: 100%;
    }
}

/* ======================================
Loding
====================================== */
.loading-5 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: #FEFBF2;
}

.loading-5 span {
    display: inline-block;
    color: #89604c;
    font-weight: 600;
    font-size: 4rem;
    animation: animation-loading-5 1s infinite;
}

.loading-5 span:nth-of-type(2) {
    animation-delay: .1s;
}

.loading-5 span:nth-of-type(3) {
    animation-delay: .2s;
}

.loading-5 span:nth-of-type(4) {
    animation-delay: .3s;
}

.loading-5 span:nth-of-type(5) {
    animation-delay: .4s;
}

.loading-5 span:nth-of-type(6) {
    animation-delay: .5s;
}

.loading-5 span:nth-of-type(7) {
    animation-delay: .6s;
}

.loading-5 span:nth-of-type(8) {
    animation-delay: .7s;
}

.loading-5 span:nth-of-type(9) {
    animation-delay: .8s;
}

.loading-5 span:nth-of-type(10) {
    animation-delay: .9s;
}

/* animation */
@keyframes animation-loading-5 {
    50% {
        transform: translateY(10px);
    }
}

/* end of loding */
.loaded {
    display: none;
}

/* fade in container */
.container {
    display: none;
}

.container.open {
    display: block;
}

@media screen and (min-width: 1120px) {
    .container.open {
        display: grid;
    }
}

/* ======================================
 fadeIn
====================================== */
.fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}