@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img, video {
  max-width: 100%;
  height: auto;
  margin-top: -0.6px;
}

button {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  outline: none;
  color: inherit;
  font-family: inherit;
  display: block;
  cursor: pointer;
}

body, html {
  font-size: 1.3333333333vw;
}
@media screen and (min-width: 750px) {
  body, html {
    font-size: 10px;
  }
}

body {
  font-family: "noto-serif", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  line-height: 0;
}

/* 画像コンテナ */
.image-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .image-container {
        width: 100%;
        max-width: none;
    }
}

/* 画像ラッパー（01.pngとボタン用） */
.image-wrapper {
    position: relative;
    width: 100%;
}

/* 画像アイテム */
.image-item {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

/* ボタン共通スタイル */
.btn-left,
.btn-right {
    position: absolute;
    top: 80%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 10;
}

.btn-left img,
.btn-right img {
    width: auto;
    height: auto;
    display: block;
}

/* 左側ボタン */
.btn-left {
    left: 45px;
}

/* 右側ボタン */
.btn-right {
    right: 45px;
}

/* CTAボタン共通スタイル */
.cta-btn-04,
.cta-btn-06 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 10;
}

.cta-btn-04 img,
.cta-btn-06 img {
    width: auto;
    height: auto;
    display: block;
}

/* 04画像のCTAボタン個別設定 */
.cta-btn-04 {
    bottom: 135px;
}

/* 06画像のCTAボタン個別設定 */
.cta-btn-06 {
    bottom: 155px;
}

/* 光るギミック */
.btn-left,
.btn-right,
.cta-btn-04,
.cta-btn-06 {
    display: inline-block;
    position: absolute;
    overflow: hidden;
}

.btn-left:after,
.btn-right:after,
.cta-btn-04:after,
.cta-btn-06:after {
    content: "";
    height: 100%;
    width: 30px;
    position: absolute;
    top: -180px;
    left: 0;
    background-color: #fff;
    opacity: 0;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 2.8s ease-in-out infinite;
    animation: reflection 2.8s ease-in-out infinite;
}

@keyframes reflection {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -webkit-transform: scale(0) rotate(45deg);
        transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }
    81% {
        -webkit-transform: scale(4) rotate(45deg);
        transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(50) rotate(45deg);
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

/* ホバーエフェクト */
.btn-left:hover,
.btn-right:hover,
.cta-btn-04:hover,
.cta-btn-06:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/**************** フッター *****************/
.footer {
  padding: 5rem 0;
  background-color: #e9e9e3;
}
.footer__linkList {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__linkList li {
  padding: 0 0.5em;
  font-size: 1.8rem;
  line-height: 1.2;
}
.footer__linkList li + li {
  border-left: 1px solid #000;
}
.footer__linkList li a {
  text-decoration: underline;
}
.footer .copyright {
  margin-top: 1em;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1;
}

/* レスポンシブ対応 - ボタン位置調整 */
@media screen and (max-width: 768px) {
    /* 左右ボタン（01.png上のボタン） */
    .btn-left {
        left: 8vw;
        top: 81%;
    }
    
    .btn-right {
        right: 8vw;
        top: 81%;
    }
    
    .btn-left img,
    .btn-right img {
        width: 35vw;
        height: auto;
    }
    
    /* CTAボタン（04.png、06.png上のボタン） */
    .cta-btn-04 {
        bottom: 17vw;
    }
    
    .cta-btn-06 {
        bottom: 20vw;
    }
    
    .cta-btn-04 img,
    .cta-btn-06 img {
        width: 70vw;
        height: auto;
    }
}