body {
  overflow: visible;
}

/* ==================================================================================================== */
/* mv */
/* ==================================================================================================== */
.mv.mv1 {
  position: relative;
}

.mv.mv1::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
}

.mv.mv1 .title__box {
  z-index: 2;
  width: 80%;
}

/* ==================================================================================================== */
/* メインセクション */
/* ==================================================================================================== */
section.main {
  margin-top: 90px;
  padding-bottom: 120px;
}

section.main .wrapper {
  width: 92%;
  margin-right: auto;
}

section.main .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  height: fit-content;
}

section.main .container .img__box {
  width: 54%;
}

section.main .container .img__box .post__img {
  width: 100%;
  height: auto;
}

section.main .container .img__box .post__img:not(:first-child) {
  margin-top: 30px;
}

section.main .container .img__box .post__img img {
  width: 100%;
  height: auto;
}

section.main .container .img__box.sp {
  display: none;
}

section.main .container .img__box.sp .prevArrow {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #e95544;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
  left: 7%;
}

section.main .container .img__box.sp .nextArrow {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #e95544;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
  right: 7%;
}

section.main .container .img__box.sp .prevArrow::after,
section.main .container .img__box.sp .nextArrow::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #ffffff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

section.main .container .img__box.sp .prevArrow::after {
  border-left: 2px solid #ffffff;
  transform: rotate(45deg);
  left: 3px;
}

section.main .container .img__box.sp .nextArrow::after {
  border-right: 2px solid #ffffff;
  transform: rotate(-45deg);
  right: 3px;
}

section.main .container .thumbnail {
  margin-top: 30px;
  width: 100%;
  display: none;
}

section.main .container .thumbnail .post__img {
  width: auto;
  margin: 0 auto;
  height: 20vw;
  position: relative;
}

section.main .container .thumbnail .post__img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0%;
}

section.main .container .thumbnail .post__img img {
  width: auto;
  height: 100%;
}

section.main .container .thumbnail .slick-current::after {
  display: none;
}

/* info__box */
section.main .container .info__box {
  position: -webkit-sticky; /*Safari用*/
  position: sticky;
  top: 0;
  right: 0;
  width: 40%;
  height: fit-content;
}

section.main .container .info__box .title__box {
  position: relative;
  padding-left: 30px;
}

section.main .container .info__box .title__box::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 100%;
  background-color: #e95544;
  left: 0;
  top: 0;
}

section.main .container .info__box .title__box h2.title {
  line-height: 1.4;
  letter-spacing: 0;
}

section.main .container .info__box .info__list {
  margin-top: 30px;
}

section.main .container .info__box .info__list h4.list__title {
  line-height: 1.3;
  letter-spacing: 0;
}

section.main .container .info__box .info__list .list__wrap {
  border: 1px solid #b5b5b5;
  border-bottom: unset;
  margin-top: 20px;
}

section.main .container .info__box .info__list .list__item {
  display: flex;
  border-bottom: 1px solid #b5b5b5;
}

section.main .container .info__box .info__list .list__item .key {
  width: 36%;
  background-color: #f7f6f6;
  padding: 20px 0;
}

section.main .container .info__box .info__list .list__item .value {
  width: calc(100% - 36%);
  padding: 20px 2.1vw;
}

section.main .container .info__box .info__list .key p.key__text {
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
}

section.main .container .info__box .info__list .value p.value__text {
  line-height: 1.3;
  letter-spacing: 0;
}

section.main .container .bottom {
  margin-top: 35px;
}

section.main .container .bottom p.bottom__text {
  line-height: 1.7;
  letter-spacing: 0;
}

section.main .container .bottom a.contactBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e95544;
  width: 60%;
  padding: 1.5vw 0;
  margin-top: 20px;
}

section.main .container .bottom a.contactBtn img.mail {
  width: 21px;
  height: auto;
  margin-right: 10px;
}

section.main .container .bottom a.contactBtn p.contact__text {
  line-height: 1.33;
  letter-spacing: 0;
  position: relative;
}

section.main .container .bottom a.contactBtn p.contact__text::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1px solid #e95544;
  border-bottom: 1px solid #e95544;
  right: -40%;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-45deg);
  transition: all 0.5s;
}

section.main .container .bottom a.contactBtn:hover p.contact__text::after {
  right: -50%;
}

/* ==================================================================================================== */
/* responsive */
/* ==================================================================================================== */
@media screen and (max-width: 1024px) {
  section.main .container .info__box .info__list .list__item {
    flex-direction: column;
  }

  section.main .container .info__box .info__list .list__item .key {
    width: 100%;
    padding: 12px 0;
  }

  section.main .container .info__box .info__list .list__item .value {
    width: 100%;
    padding: 15px;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  section.main {
    margin-top: 60px;
    padding-bottom: 80px;
  }

  section.main .wrapper {
    margin: auto;
  }

  section.main .container {
    flex-direction: column-reverse;
  }

  section.main .container .info__box {
    width: 100%;
    position: unset;
  }

  section.main .container .img__box {
    width: 100%;
    margin-top: 30px;
  }

  section.main .container .img__box .post__img {
    width: auto;
    height: 50vw;
    margin: 0 20px;
  }

  section.main .container .img__box .post__img img {
    width: auto;
    height: 100%;
    object-fit: cover;
  }

  section.main .container .thumbnail {
    display: block;
  }

  section.main .container .img__box .post__img:not(:first-child) {
    margin-top: unset;
  }

  section.main .container .img__box.pc {
    display: none;
  }

  section.main .container .img__box.sp {
    display: block;
  }

  section.main .container .bottom {
    margin-top: 50px;
  }

  section.main .container .bottom a.contactBtn {
    padding: 15px 0;
    margin: auto;
    margin-top: 40px;
  }

  section.main .container .info__box .title__box h2.title {
    font-size: calc(18px + 2 * (100vw - 320px) / 448);
  }

  section.main .container .info__box .info__list h4.list__title {
    font-size: calc(18px + 2 * (100vw - 320px) / 448);
  }

  .mv.mv1 .title__box {
    left: 3%;
    width: 90%;
  }
}

@media screen and (max-width: 480px) {
  section.main .container .img__box .post__img {
    margin: 0 10px;
  }
}

/* add youtube */
.youtube_wrapper {
  max-width: 800px;
  margin: 10% auto 0;
  height: 400px;
  width: 90%;
}
@media screen and (max-width: 480px) {
  .youtube_wrapper {
    height: 180px;
  }
}