@charset "UTF-8";
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* ベースカラー
*--------------------------------------*/
/*--------------------------------------*
* フォント
*--------------------------------------*/
/*--------------------------------------*
* ブレイクポイント
*--------------------------------------*/
/*--------------------------------------*
* vw変換(SP用)
*--------------------------------------*/
/*--------------------------------------*
* vw変換(PC用)
*--------------------------------------*/
/*--------------------------------------*
* デフォルトスタイル
*--------------------------------------*/
html,
body {
  width: 100%;
  font-size: 15px;
  margin: 0 auto;
  font-family: "baskerville-display-pt", serif;
  font-weight: 400;
  font-style: italic;
  color: #454545;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 2.6666666667vw;
  }
}

img,
video,
object {
  width: 100%;
  border: none;
  display: block;
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

/*--------------------------------------*
* aタグ
*--------------------------------------*/
a {
  display: block;
  text-decoration: none;
  transition: all 0.4s;
  color: #454545;
}
a[href=""] {
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.6;
    transition: all 0.4s;
    text-decoration: underline;
    text-decoration-color: #454545;
    text-decoration-thickness: 0.7px;
  }
}

/*--------------------------------------*
* ローディング
*--------------------------------------*/
#loading-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 999;
  align-items: center;
  display: flex;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s, visibility 0.5s;
}
#loading-bg .loading__inner {
  width: 100%;
  height: 100%;
  position: relative;
}
#loading-bg .loading__inner__img-wrapper {
  height: 100%;
  position: relative;
}
@media screen and (min-width: 769px) {
  #loading-bg .loading__inner__img-wrapper {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
#loading-bg .loading__inner__img {
  position: absolute;
  opacity: 0;
}
#loading-bg .loading__inner__img__1 {
  top: 2.99%;
  left: 0;
  margin-left: 2.66%;
  width: 36%;
}
@media screen and (min-width: 769px) {
  #loading-bg .loading__inner__img__1 {
    margin-left: 9.37%;
    top: 5%;
    width: 19%;
  }
}
#loading-bg .loading__inner__img__2 {
  top: 0;
  right: 0;
  margin-right: 13.3%;
  width: 33.3%;
}
@media screen and (min-width: 769px) {
  #loading-bg .loading__inner__img__2 {
    margin-top: 5.62%;
    margin-right: 6.59%;
    width: 17.36%;
    z-index: 10;
  }
}
#loading-bg .loading__inner__img__3 {
  top: 30%;
  right: 0;
  width: 30%;
}
@media screen and (min-width: 769px) {
  #loading-bg .loading__inner__img__3 {
    margin-right: 20.8%;
    top: 40%;
    width: 15.62%;
  }
}
#loading-bg .loading__inner__img__4 {
  bottom: 1.49%;
  left: 0;
  margin-left: 2.66%;
  width: 26.6%;
}
@media screen and (min-width: 769px) {
  #loading-bg .loading__inner__img__4 {
    margin-left: 2.43%;
    top: 42.5%;
    width: 13.88%;
  }
}
#loading-bg .loading__inner__img__5 {
  bottom: 3.37%;
  left: 0;
  margin-left: 44.6%;
  width: 20%;
}
@media screen and (min-width: 769px) {
  #loading-bg .loading__inner__img__5 {
    margin-left: 18.4%;
    bottom: 10.4%;
    width: 10.41%;
  }
}
#loading-bg .loading__inner__img__6 {
  bottom: 11.24%;
  right: 0;
  width: 26.6%;
}
@media screen and (min-width: 769px) {
  #loading-bg .loading__inner__img__6 {
    margin-right: 2.08%;
    width: 13.88%;
    bottom: 5.62%;
  }
}
@media screen and (max-width: 768px) {
  #loading-bg .loading__inner__img__main {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100svh;
    transform-origin: center center;
    transform: translate(-50%, -50%) translate(var(--x), var(--y)) scale(var(--scale));
    opacity: 0;
    --scale: 0.45;
    --x: -15.4vw;
    --y: -0.8vw;
  }
}
@media screen and (min-width: 769px) {
  #loading-bg .loading__inner__img__main {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    transform-origin: center center;
    aspect-ratio: 400/600;
    width: 27.77%;
    height: auto;
    margin-top: 9.0277777778vw;
    margin-left: 32.29%;
  }
}
#loading-bg .loading__inner__img__main picture {
  display: block;
}
#loading-bg .loading__inner__img__main picture img {
  transform-origin: center center;
  -o-object-fit: cover;
     object-fit: cover;
}
#loading-bg.show .loading__inner__img-wrapper {
  scale: 1.4;
  transition: 1s ease 0s;
}
@media screen and (max-width: 768px) {
  #loading-bg.show .loading__inner__img__main {
    --x: 0;
    --y: 0;
    --scale: 1;
    opacity: 1;
    transition: transform 0.8s ease, opacity 0.5s ease;
  }
}
@media screen and (min-width: 769px) {
  #loading-bg.show .loading__inner__img__main {
    transition: 0.5s ease 0s;
    height: 100%;
    width: 100%;
    margin: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    translate: 0 0;
    height: auto;
    width: 57.63%;
  }
}
#loading-bg.hide {
  opacity: 1;
  transition: 1s ease;
  visibility: hidden;
}

/*-------------------
* コンテンツのスタイル
-------------------*/
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* FV
*--------------------------------------*/
.fv .container {
  position: relative;
}
@media screen and (min-width: 769px) {
  .fv .container {
    display: flex;
    background-color: #ffffff;
  }
}
@media screen and (min-width: 769px) {
  .fv .fv_image {
    width: 57.63%;
  }
}
.fv .fv_image picture {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv .fv_title {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media screen and (min-width: 769px) {
  .fv .fv_title {
    position: relative;
    top: auto;
    left: auto;
    translate: 0 0;
    width: 42.37%;
  }
}
.fv .fv_title figure {
  width: 77.3333333333vw;
}
@media screen and (min-width: 769px) {
  .fv .fv_title figure {
    width: 31.9444444444vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/*--------------------------------------*
* 基本設定
*--------------------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.opacity {
  opacity: 0;
}

@keyframes maskLeft {
  0% {
    mask-position: left;
    -webkit-mask-position: left;
  }
  100% {
    mask-position: right;
    -webkit-mask-position: right;
  }
}
@keyframes maskRight {
  0% {
    mask-position: right;
    -webkit-mask-position: right;
  }
  100% {
    mask-position: left;
    -webkit-mask-position: left;
  }
}
.mask_left {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.mask_right {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.mask_full {
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
figure.zoom {
  overflow: hidden;
}

/*--------------------------------------*
* セクション共通
*--------------------------------------*/
/* 背景 */
.bg::before {
  content: "";
  display: block;
  position: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../assets/images/sp/bg.webp);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .bg::before {
    background-image: url(../assets/images/pc/bg.webp);
  }
}
@media screen and (min-width: 769px) {
  .bg::before {
    background-image: url(../assets/images/sp/bg.webp);
  }
}

/* 説明文 */
.description {
  padding-top: 66.8vw;
  padding-bottom: 54.1333333333vw;
}
@media screen and (min-width: 769px) {
  .description {
    padding-top: 21.0416666667vw;
    padding-bottom: 20.9722222222vw;
  }
}
.description__text {
  text-align: center;
  line-height: 1.380952381;
  font-size: 5.6vw;
  opacity: 0;
  transform: translateY(12px);
}
@media screen and (min-width: 769px) {
  .description__text {
    font-size: 1.4583333333vw;
    line-height: 1.380952381;
  }
}

/* sec1,12 スティッキー */
@media screen and (min-width: 769px) {
  .sec__1,
  .sec__5,
  .sec__12 {
    width: 52.0833333333vw;
    margin: 0 auto;
  }
}
.sec__1 .sec__img__area,
.sec__5 .sec__img__area,
.sec__12 .sec__img__area {
  position: relative;
}
.sec__1 .sticky_wrapper,
.sec__5 .sticky_wrapper,
.sec__12 .sticky_wrapper {
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec__1 .sticky_wrapper .spacer,
  .sec__5 .sticky_wrapper .spacer,
  .sec__12 .sticky_wrapper .spacer {
    height: 20vw;
  }
}
.sec__1 .sec__img,
.sec__5 .sec__img,
.sec__12 .sec__img {
  width: 100%;
}
.sec__1 .sec__img__area__list,
.sec__5 .sec__img__area__list,
.sec__12 .sec__img__area__list {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: clip;
}
@media screen and (max-width: 768px) {
  .sec__1 .sec__img__area__list,
  .sec__5 .sec__img__area__list,
  .sec__12 .sec__img__area__list {
    height: 120vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__1 .sec__img__area__list,
  .sec__5 .sec__img__area__list,
  .sec__12 .sec__img__area__list {
    height: 55.2083333333vw;
  }
}
.sec__1 .sec__img__area__list__item,
.sec__5 .sec__img__area__list__item,
.sec__12 .sec__img__area__list__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sec__1 .sec__img__area__list__item__1,
.sec__5 .sec__img__area__list__item__1,
.sec__12 .sec__img__area__list__item__1 {
  z-index: 1;
}
.sec__1 .sec__img__area__list__item__2,
.sec__5 .sec__img__area__list__item__2,
.sec__12 .sec__img__area__list__item__2 {
  z-index: 2;
}
.sec__1 .sec__img__area__list__item__3,
.sec__5 .sec__img__area__list__item__3,
.sec__12 .sec__img__area__list__item__3 {
  z-index: 3;
}
.sec__1 .sec__img__area__list__item__4,
.sec__5 .sec__img__area__list__item__4,
.sec__12 .sec__img__area__list__item__4 {
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .sec__1 .sec__img__area__list__img,
  .sec__5 .sec__img__area__list__img,
  .sec__12 .sec__img__area__list__img {
    height: 120vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__1 .sec__img__area__list__img,
  .sec__5 .sec__img__area__list__img,
  .sec__12 .sec__img__area__list__img {
    height: 55.2083333333vw;
  }
}
.sec__1 .sec__img__area__list__img img,
.sec__5 .sec__img__area__list__img img,
.sec__12 .sec__img__area__list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* sec1 */
.sec__1 {
  width: 80vw;
  margin: 0 auto 38.6666666667vw;
}
@media screen and (min-width: 769px) {
  .sec__1 {
    display: grid;
    justify-content: center;
    grid-template-columns: 36.8055555556vw 18.75vw;
    -moz-column-gap: 10.4166666667vw;
         column-gap: 10.4166666667vw;
    margin: 0 auto 15vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__1 .sec__img__area {
    order: 1;
  }
}
@media screen and (min-width: 769px) {
  .sec__1 .credit {
    order: 3;
  }
}
.sec__1 .sec__img__2 {
  width: 44vw;
  margin-top: 10.6666666667vw;
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .sec__1 .sec__img__2 {
    order: 2;
    width: 100%;
    margin-top: 13.4722222222vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__1 .sec__img__2 img {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* sec2 */
.sec__2 {
  margin-bottom: 30.6666666667vw;
}
@media screen and (min-width: 769px) {
  .sec__2 {
    width: 36.8055555556vw;
    margin: 0 auto 9.7222222222vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__2 .credit {
    margin-left: 10vw;
  }
}

/* sec3 */
.sec__3 {
  width: 66.6666666667vw;
  margin: 0 auto 32vw;
}
@media screen and (min-width: 769px) {
  .sec__3 {
    width: 63.8888888889vw;
    margin-bottom: 17.7083333333vw;
  }
}
.sec__3 .sec__img__area {
  display: grid;
  gap: 1.3333333333vw;
}
@media screen and (min-width: 769px) {
  .sec__3 .sec__img__area {
    grid-template-columns: 27.7777777778vw 27.7777777778vw;
    justify-content: center;
    -moz-column-gap: 8.3333333333vw;
         column-gap: 8.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__3 .sec__img__area .sec__img__1__wrapper {
    width: 66.6666666667vw;
  }
}
.sec__3 .credit li a {
  text-wrap: nowrap;
}

/* sec4 */
.sec__4 {
  margin-bottom: 31.4666666667vw;
}
@media screen and (max-width: 768px) {
  .sec__4 .sec__wrapper {
    display: flex;
    justify-content: space-between;
  }
  .sec__4 .sec__wrapper .credit {
    margin-left: 6.6666666667vw;
    width: 72vw;
  }
  .sec__4 .sec__wrapper .pcNone {
    margin-top: 6.4vw;
    margin-right: 6.6666666667vw;
    /* 待機ドット */
    /* アクティブドット */
  }
  .sec__4 .sec__wrapper .pcNone .swiper-pagination {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 2.4vw; /* ドット間隔 */
  }
  .sec__4 .sec__wrapper .pcNone .swiper-pagination-bullet {
    width: 1.6vw;
    height: 1.6vw;
    border: 0.5px solid #707070;
    background-color: transparent;
    opacity: 1; /* デフォルトの薄さを無効化 */
    border-radius: 50%;
    margin: 0;
  }
  .sec__4 .sec__wrapper .pcNone .swiper-pagination-bullet-active {
    background-color: #a0a0a0;
  }
}
@media screen and (min-width: 769px) {
  .sec__4 {
    margin-bottom: 18.2638888889vw;
  }
  .sec__4 .sec__img__area .sec__img__1 {
    display: flex;
    justify-content: space-between;
  }
  .sec__4 .sec__img__area .sec__img__1 li {
    width: 24.5833333333vw;
  }
}

/* sec5 */
.sec__5 {
  margin-bottom: 32vw;
}
@media screen and (min-width: 769px) {
  .sec__5 {
    margin-bottom: 9.7222222222vw;
    width: 36.8055555556vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__5 .sec__img__area__list {
    top: 0;
    height: 100vh;
  }
}
@media screen and (max-width: 768px) {
  .sec__5 .sec__img__area__list__img {
    height: 100vh;
  }
}
@media screen and (max-width: 768px) {
  .sec__5 .credit {
    margin-left: 10vw;
  }
}

/* sec6 */
.sec__6 {
  margin-bottom: 32vw;
}
@media screen and (min-width: 769px) {
  .sec__6 {
    margin-bottom: 34.5138888889vw;
    position: relative;
  }
}
@media screen and (min-width: 769px) {
  .sec__6 .sec__img__area {
    display: grid;
    justify-content: end;
    grid-template-columns: 31.25vw 52.0833333333vw;
    grid-template-rows: auto auto auto;
    -moz-column-gap: 8.3333333333vw;
         column-gap: 8.3333333333vw;
    row-gap: 1.7361111111vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__6 .sec__img__1 {
    width: 60vw;
    margin-left: 6.6666666667vw;
    margin-bottom: 6.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__6 .sec__img__1 {
    grid-column: 1;
    grid-row: 1;
  }
}
.sec__6 .sec__img__2 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sec__6 .sec__img__2 {
    margin-bottom: 6.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__6 .sec__img__2 {
    grid-column: 2;
    grid-row: 1/4;
    align-self: center;
  }
}
@media screen and (max-width: 768px) {
  .sec__6 .sec__img__3 {
    width: 53.3333333333vw;
    margin-right: 6.6666666667vw;
    margin-left: auto;
  }
}
@media screen and (min-width: 769px) {
  .sec__6 .sec__img__3 {
    grid-column: 1;
    grid-row: 3;
  }
}
.sec__6 .credit {
  margin-right: 6.6666666667vw;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .sec__6 .credit {
    text-align: right;
  }
}
@media screen and (min-width: 769px) {
  .sec__6 .credit {
    margin-top: 0;
    margin-right: 0;
    position: absolute;
    top: 71.9444444444vw;
    left: 47.9166666667vw;
  }
}

/* sec7 */
.sec__7 {
  margin-bottom: 32vw;
}
@media screen and (min-width: 769px) {
  .sec__7 {
    margin-bottom: 16.6666666667vw;
  }
}
.sec__7 .sec__bg {
  position: sticky;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100svh;
  top: 0;
}
@media screen and (max-width: 768px) {
  .sec__7 .sec__bg {
    background-image: url(../assets/images/sp/7_1.webp);
  }
}
@media screen and (min-width: 769px) {
  .sec__7 .sec__bg {
    background-image: url(../assets/images/pc/7_1.webp);
  }
}
.sec__7 .sec__bg__overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .sec__7 .sec__bg__overlay {
    background-color: rgba(255, 255, 255, 0.7);
  }
}
@media screen and (min-width: 769px) {
  .sec__7 .sec__bg__overlay {
    background-color: rgba(255, 255, 255, 0.6);
  }
}
.sec__7 .sec__wrapper {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .sec__7 .sec__wrapper {
    width: 25vw;
    margin-left: 11.8055555556vw;
  }
}
.sec__7 .sec__img__1 {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec__7 .sec__img__1 {
    width: 65.3333333333vw;
  }
}
.sec__7 .credit {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .sec__7 .credit {
    padding-bottom: 25%;
  }
}
@media screen and (min-width: 769px) {
  .sec__7 .credit {
    padding-bottom: 4.1666666667vw;
  }
}
.sec__7 .credit li a {
  text-wrap: nowrap;
}

/* sec8 */
.sec__8 {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec__8 {
    margin-bottom: 32vw;
    width: 80vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__8 {
    margin-bottom: 22.2222222222vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__8 .sec__img__area {
    display: flex;
    justify-content: center;
    -moz-column-gap: 8.3333333333vw;
         column-gap: 8.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__8 .sec__img__1 {
    width: 44vw;
    margin-bottom: 13.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__8 .sec__img__1 {
    width: 18.75vw;
    margin-top: 13.5416666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__8 .sec__img__2__wrapper {
    width: 36.8055555556vw;
    margin: 0;
    overflow: visible;
  }
}
.sec__8 .sec__img__2__wrapper .credit {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .sec__8 .sec__img__2__wrapper .credit {
    text-align: right;
  }
}
@media screen and (min-width: 769px) {
  .sec__8 .sec__img__2__wrapper .credit {
    margin-top: -3.125vw;
    position: relative;
    z-index: 20;
  }
}
.sec__8 .sec__img__2 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sec__8 .sec__img__2 {
    margin-bottom: 6.6666666667vw;
  }
}

/* sec9 */
@media screen and (max-width: 768px) {
  .sec__9 {
    margin-bottom: 38.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__9 {
    margin-bottom: 22.2222222222vw;
  }
}
.sec__9 .sec__img__area {
  display: grid;
  gap: 1.3333333333vw;
}
@media screen and (min-width: 769px) {
  .sec__9 .sec__img__area {
    gap: 13.8888888889vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__9 .sec__img__1__wrapper {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .sec__9 .sec__img__1__wrapper {
    order: 2;
    width: 27.7777777778vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .sec__9 .sec__img__2 {
    order: 1;
  }
}
.sec__9 .credit {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .sec__9 .credit {
    margin-left: 10vw;
  }
}

/* sec10 */
.sec__10 {
  margin: 0 auto 32vw;
}
@media screen and (max-width: 768px) {
  .sec__10 {
    width: 80vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__10 {
    margin-bottom: 22.2222222222vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__10 .sec__img__area {
    display: grid;
    justify-content: center;
    -moz-column-gap: 10.4166666667vw;
         column-gap: 10.4166666667vw;
    grid-template-columns: 36.8055555556vw 18.75vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__10 .sec__img__1__wrapper {
    width: 100%;
    margin-bottom: 13.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__10 .sec__img__1__wrapper {
    width: 36.8055555556vw;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .sec__10 .sec__img__2 {
    width: 48vw;
    margin-left: auto;
  }
}
@media screen and (min-width: 769px) {
  .sec__10 .sec__img__2 {
    width: 18.75vw;
    margin-top: 13.5416666667vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__10 .credit {
    text-align: right;
    margin-left: auto;
  }
}

/* sec11 */
.sec__11 {
  margin: 0 auto 32vw;
}
@media screen and (min-width: 769px) {
  .sec__11 {
    margin-bottom: 22.2222222222vw;
    width: 36.8055555556vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__11 .credit {
    width: -moz-fit-content;
    width: fit-content;
    margin: 2.6666666667vw auto 0;
  }
}
/* sec12 */
.sec__12 {
  width: 80vw;
  margin: 0 auto 38.6666666667vw;
}
@media screen and (min-width: 769px) {
  .sec__12 {
    margin-bottom: 22.2222222222vw;
    width: 36.8055555556vw;
  }
}
/* sec13 */
.sec__13 {
  margin-bottom: 32vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  .sec__13 .sec__img__area {
    display: grid;
    justify-content: start;
    grid-template-columns: 52.0833333333vw 31.25vw;
    grid-template-rows: auto auto auto;
    -moz-column-gap: 8.3333333333vw;
         column-gap: 8.3333333333vw;
    row-gap: 1.7361111111vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__13 .sec__img__1 {
    width: 60vw;
    margin-left: 6.6666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__13 .sec__img__1 {
    grid-column: 2;
    grid-row: 1;
  }
}
@media screen and (max-width: 768px) {
  .sec__13 .sec__img__2 {
    width: 100%;
    margin-bottom: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__13 .sec__img__2 {
    grid-column: 1;
    grid-row: 1/4;
    align-self: center;
  }
}
@media screen and (max-width: 768px) {
  .sec__13 .sec__img__3 {
    width: 53.3333333333vw;
    margin-right: 6.6666666667vw;
    margin-left: auto;
  }
}
@media screen and (min-width: 769px) {
  .sec__13 .sec__img__3 {
    grid-column: 2;
    grid-row: 3;
  }
}
.sec__13 .credit {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .sec__13 .credit {
    margin-right: 6.6666666667vw;
    text-align: right;
  }
}
@media screen and (min-width: 769px) {
  .sec__13 .credit {
    position: absolute;
    top: 71.9444444444vw;
    right: 47.9166666667vw;
    text-align: right;
    margin-top: 0;
  }
}

/* sec14 */
.sec__14 {
  margin: 0 auto 58.6666666667vw;
  display: grid;
}
@media screen and (max-width: 768px) {
  .sec__14 {
    width: 66.6666666667vw;
    gap: 1.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__14 {
    justify-content: center;
    grid-template-columns: 27.7777777778vw 27.7777777778vw;
    margin-bottom: 27.4305555556vw;
    -moz-column-gap: 8.3333333333vw;
         column-gap: 8.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__14 .sec__img__1 {
    order: 2;
  }
}
@media screen and (min-width: 769px) {
  .sec__14 .sec__img__2 {
    order: 1;
  }
}
@media screen and (min-width: 769px) {
  .sec__14 .credit {
    order: 3;
    margin-left: auto;
  }
}

.loop_slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.credit {
  display: grid;
}
.credit li a {
  line-height: 140%;
}

footer figure {
  margin-inline: auto;
}
footer .link_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .logo {
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .sp_loop_slider .swiper-wrapper,
  .sp_loop_slider_reverse .swiper-wrapper {
    transition-timing-function: linear !important;
  }
  .credit {
    gap: 1.7333333333vw;
    margin-top: 4vw;
  }
  .credit li a {
    font-size: 2.6666666667vw;
  }
  footer .footer_container {
    display: grid;
  }
  footer figure {
    width: 56vw;
    margin-bottom: 37.3333333333vw;
  }
  footer .link_wrap {
    gap: 9.8666666667vw;
    margin-bottom: 12.4vw;
  }
  footer .link_wrap li {
    width: 6.6666666667vw;
  }
  footer .logo {
    width: 20.6666666667vw;
    padding-bottom: 18.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .credit {
    margin: 2.0833333333vw auto 0;
    width: -moz-fit-content;
    width: fit-content;
  }
  footer .footer_container {
    display: grid;
    gap: 8.3333333333vw;
  }
  footer figure {
    width: 27.7777777778vw;
    margin-bottom: 19.4444444444vw;
  }
  footer .link_wrap {
    gap: 4.375vw;
  }
  footer .link_wrap li {
    width: 2.4305555556vw;
  }
  footer .logo {
    width: 9.1666666667vw;
    padding-bottom: 21.7361111111vw;
  }
}/*# sourceMappingURL=style.css.map */