@charset "utf-8";

@font-face {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

:root {
  --font-base: YakuHanJP, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  --font-sans: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  --font-serif: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  --font-en: 'Lato', sans-serif;
}

body {
  width: 100%;
  height: auto;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: #1E1E1E;
  margin: 0;
  padding: 0;
  font-family: var(--font-base);
  max-width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 920px){
  body {
    font-size: min(1.14285714286vw, 16px);
  }
}

h1,h2,h3,h4,h5,span,p {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-center_pc {
  text-align: left !important;
}
@media screen and (min-width: 920px){
  .text-center_pc {
    text-align: center !important;
  }
}

.text-center_sp {
  text-align: center !important;
}
@media screen and (min-width: 920px){
  .text-center_pc {
    text-align: left !important;
  }
}

.br_sp {
  display: block;
}
@media screen and (min-width: 920px){
  .br_sp {
    display: none;
  }
}

.br_pc {
  display: none;
}
@media screen and (min-width: 920px){
  .br_pc {
    display: block;
  }
}

.br_catch {
  display: block;
}
@media screen and (min-width: 920px){
  .br_catch {
    display: none;
  }
}

.inner_link {
  position: relative;
}

.inner_link::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #ffffff;
  position: absolute;
  bottom: -2px;
  left: 0;
  scale: 0 1;
  transition: scale 0.3s ease-out;
  transform-origin: 100% 0;
}

@media screen and (min-width: 920px){
  .inner_link:hover {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (min-width: 920px){
  .inner_link:hover::before {
    scale: 1 1;
    transform-origin: 0 0;
  }
}


.stream_line {
  background-image: linear-gradient(to right, #ffffff, #ffffff);
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  line-height: 1.1;
  width: fit-content;
}

.stream_line:hover {
  animation: none;
}
@media screen and (min-width: 920px){
  .stream_line:hover {
    animation: linkLineReverse 0.5s ease forwards;
  }
}

@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }

  50% {
    background-size: 0 1px; /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }

  51% {
    background-position: bottom left;
  }

  100% {
    background-size: 100% 1px;
  }
}

.container-base {
  width: 100%;
  max-width: calc(956px + min(31.7142857143vw, 444px));
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 920px){
  .container-base {
    padding: 0 min(15.8571428571vw, 222px);
  }
}

/*-------------------- site_header --------------------*/

.site_header {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  background-color: #ffffff;
  position: fixed;
  z-index: 5000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (min-width: 920px){
  .site_header {
    justify-content: flex-end;
    padding: min(1.64285714286vw, 23px) min(2.85714285714vw, 40px);
  }
}

.site_header.scrolled {
  opacity: 1;
}

.site_header_logo {
  display: none;
}
@media screen and (min-width: 920px){
  .site_header_logo {
    display: flex;
    width: min(23.1428571429vw, 324px);
    height: min(2.28571428571vw, 32px);
    transition: all 0.4s cubic-bezier(0.18, 0.06, 0.23, 1);
    position: absolute;
    top: 50%;
    left: min(2.85714285714vw, 40px);
    translate: 0 -50%;
  }
}

.site_header_logo img  {
  width: 100%;
  height: 100%;
}

.site_header_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 920px){
  .site_header_nav {
    gap: min(5.33333333333vw, 20px);
  }
}

.site_header_link {
  width: 90px;
}
@media screen and (min-width: 920px){
  .site_header_link {
    width: min(8.57142857143vw, 120px);
  }
}

.site_header_link_txt {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
}
@media screen and (min-width: 920px){
  .site_header_link_txt {
    gap: min(0.85714285714vw, 12px);
  }
}

.site_header_link_txt_en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 920px){
  .site_header_link_txt_en {
    font-size: min(0.92857142857vw, 13px);
  }
}

.site_header_link_txt_ja {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 920px){
  .site_header_link_txt_ja {
    font-size: min(1.14285714286vw, 16px);
  }
}

.site_header {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.site_header.fade-in {
    opacity: 1;
}

.mv {
    width: 100%;
    height: auto;
    position: relative;
}
@media screen and (min-width: 920px){
    .mv {
        height: 100vh;
    }
}

.mv_movie {
    width: 100%;
    height: 124.866666667vw;
    contain: paint;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease;
}
@media screen and (min-width: 920px){
    .mv_movie {
        height: 100vh;
        padding-top: 56.25%;
        position: relative;
    }
}

@media screen and (min-width: 920px){
    .mv_movie--sp  {
        display: none;
    }
}

.mv_movie--pc  {
    display: none;
}
@media screen and (min-width: 920px){
    .mv_movie--pc  {
        display: block;
    }
}

.mv_movie video {
    width: 100%;
    height: 100%;
}
@media screen and (min-width: 920px){
    .mv_movie video {
        height: 100vh;
        object-fit: cover;
        object-position: center;
        position: absolute;
        top: 0;
        left: 0;
    }
}

.mv_ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.5s ease;
}
@media screen and (min-width: 920px){
    .mv_ttl {
        gap: min(1.71428571429vw, 24px);
    }
}
.mv_ttl.is-visible {
    opacity: 1;
}
    
.mv_ttl_img {
    width: 320px;
    display: block;
}
@media screen and (min-width: 920px){
    .mv_ttl_img {
        width: auto;
    }
}

.mv_ttl_img img {
    width: 100%;
    height: 100%;
}

.mv_ttl_txt {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-align: center;
    color: #ffffff;
}
@media screen and (min-width: 920px){
    .mv_ttl_txt {
        font-size: min(2vw, 28px);
    }
}
    
.play-btn {
    width: fit-content;
    height: auto;
    display: flex;
    align-items: center;
    gap: 9px;
    position: absolute;
    bottom: 65px;
    right: 50%;
    translate: 50% 0;
}
@media screen and (min-width: 920px){
    .play-btn {
        bottom: min(2.343vw, 45px);
        right: min(3.02083vw, 58px);
        translate: 0 0;
    }
}

.play-btn_square {
    width: min(5.33333333333vw, 20px);
    height: min(5.33333333333vw, 20px);
    flex: 0 1 min(5.33333333333vw, 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
    border-radius: 4px;
}
@media screen and (min-width: 920px){
    .play-btn_square {
        width: min(1.42857142857vw, 20px);
        height: min(1.42857142857vw, 20px);
        flex: 0 1 min(1.42857142857vw, 20px);
    }
}

.play-btn_square_tri {
    width: 11px;
    height: 9px;
    display: flex;
    position: relative;
    margin-right: -2px;
}

.play-btn_square_tri img {
    width: 100%;
    height: 100%;
}

.play-btn_text {
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-top: 2px;
}

.scrollDown {
  width: fit-content;
  height: auto;
  position: absolute;
  bottom: 32px;
  left: 50%;
  translate: -50% 0;
  font-family: sans-serif; /* $font-en の代用 */
  line-height: 1;
  color: #ffffff; /* $white の代用 */
  z-index: 1;
}
@media screen and (min-width: 920px) {
  .scrollDown {
    bottom: min(2.85714285714vw, 40px);
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.scrollDown span {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  opacity: 0;
  display: inline-block;
  position: relative;
  animation: text-animate 2.5s ease-in-out infinite;
}
@media screen and (min-width: 920px) {
  .scrollDown span {
    font-size: min(1vw, 14px);
  }
}

@keyframes text-animate {
  0%, 10%, 20%, 30%, 40% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0;
    transform: translateY(5px);
  }
  60% {
    opacity: 0;
    transform: translateY(-5px);
  }
  70%, 80%, 90%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.scrollDown p {
  writing-mode: vertical-rl;
}

.modalArea {
    display: none;
    position: fixed;
    z-index: 6000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modalBg {
    width: 100%;
    height: 100%;
    background-color: rgba(30,30,30,0.95);
}

.modalWrapper {
    width: 100%;
    height: 56.279vw;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}
@media screen and (min-width: 920px){
    .modalWrapper {
        width: 90%;
        height: 80%;
    }
}

.modalContents, .modalContents iframe {
    width: 100%;
    height: 100%;
}

.closeModal {
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: min(4.348vw, 18.7px);
    right: min(4.651vw, 20px);
    cursor: pointer;
}
@media screen and (min-width: 920px){
    .closeModal {
        flex-direction: row-reverse;
        gap: min(0.781vw, 15px);
        top: min(2.74vw, 52.7px);
        right: min(2.83vw, 54.4px);
    }
}

.closeModal_icon {
    width: min(5.348vw, 23px);
    height: min(5.348vw, 23px);
    display: flex;
    position: relative;
}
@media screen and (min-width: 920px){
    .closeModal_icon {
        width: min(1.40625vw, 27px);
        height: min(1.40625vw, 27px);
    }
}

.closeModal_icon img {
    width: 100%;
    height: 100%;
}

.closeModal_catch {
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #ffffff;
}
@media screen and (min-width: 920px){
    .closeModal_catch {
        font-size: 11px;
    }
}

.loop {
    background-color: #ECECEC;
    padding: 20px 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}
@media screen and (min-width: 920px){
    .loop {
        padding: min(1.42857142857vw, 20px) 0;
    }
}

.loop_item {
    width: 40px;
    height: 40px;
    margin-right: 20px;
}
@media screen and (min-width: 920px){
    .loop_item {
        width: min(5.71428571429vw, 80px);
        height: min(5.71428571429vw, 80px);
        margin-right: min(2.85714285714vw, 40px);
    }
}

.loop_item--large {
    width: 426px;
    height: 42px;
}
@media screen and (min-width: 920px){
    .loop_item--large {
        width: auto;
        height: min(3vw, 42px);
    }
}

.loop_item img {
    width: 100%;
    height: 100%;
}

.message {
    padding: 80px 0 0;
}
@media screen and (min-width: 920px){
    .message {
        padding: min(11.4285714286vw, 160px) 0 min(8.57142857143vw, 120px);
    }
}

.message .container-base {
    padding: 0;
}
@media screen and (min-width: 920px){
  .message .container-base {
    padding: 0 min(15.8571428571vw, 222px);
  }
}

.message_textArea {
    padding: 0 20px;
    margin: 0 auto 40px;
}
@media screen and (min-width: 920px){
    .message_textArea {
        padding: 0;
        margin: 0 auto min(5.71428571429vw, 80px);
    }
}

.message_ttl {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.65;
    text-align: center;
    display: block;
    margin: 0 0 24px;
}
@media screen and (min-width: 920px){
    .message_ttl {
        font-size: min(2.28571428571vw, 32px);
        letter-spacing: 0.04em;
        margin: 0 0 min(2.85714285714vw, 40px);
    }
}

.message_textArea p {
    text-align: center;
}

.message_thumb {
    width: 100%;
}
@media screen and (min-width: 920px){
    .message_thumb {
        height: min(45.3571428571vw, 635px);
    }
}

.message_thumb img {
    width: 100%;
    height: 100%;
}

.wrap {
    padding: 60px 0 0;
}
@media screen and (min-width: 920px){
    .wrap {
        padding: min(8.57142857143vw, 120px) 0 0;
    }
    }

.section_ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 40px;
}
@media screen and (min-width: 920px){
    .section_ttl {
        margin: 0 auto min(5.71428571429vw, 80px);
    }
}

.section_ttl_en {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: center;
}
@media screen and (min-width: 920px){
    .section_ttl_en {
        font-size: min(1.71428571429vw, 24px);
    }
}

.section_ttl_ja {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: 0.08em;
    text-align: center;
}
@media screen and (min-width: 920px){
    .section_ttl_ja {
        font-size: min(1.14285714286vw, 16px);
    }
}

.lineup {
    background-color: #ECECEC;
}

.lineup_container {
    padding: 0 0 60px;
}
@media screen and (min-width: 920px){
    .lineup_container {
        padding: 0 0 min(8.57142857143vw, 120px);
    }
}

.lineup_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
}
@media screen and (min-width: 920px){
    .lineup_list {
        flex-wrap: nowrap;
        gap: min(1.71428571429vw, 24px);
    }
}

.lineup_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media screen and (min-width: 920px){
    .lineup_item {
        width: calc((100% - min(3.42857142857vw, 48px)) / 3);
        gap: min(5.33333333333vw, 20px);
    }
}

.lineup_item-cell {
    width: calc((100% - 20px) / 2);
    gap: 12px;
}
@media screen and (min-width: 920px){
    .lineup_item-cell {
        width: calc((100% -  min(3.42857142857vw, 48px)) / 3);
        gap: min(5.33333333333vw, 20px);
    }
}

.lineup_item_head {
    width: 100%;
    position: relative;
}

.lineup_item_thumb {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 17.8666666667vw;
}
@media screen and (min-width: 920px){
    .lineup_item_thumb {
        width: min(21.4285714286vw, 300px);
        height: min(21.4285714286vw, 300px);
        margin: 0 0 min(4.64285714286vw, 65px);
    }
}

.lineup_item-cell .lineup_item_thumb {
    width: 100%;
    height: auto;
    margin: 0 0 13.33vw;
}
@media screen and (min-width: 920px){
    .lineup_item-cell .lineup_item_thumb {
        width: min(21.4285714286vw, 300px);
        height: min(21.4285714286vw, 300px);
        margin: 0 0 min(4.64285714286vw, 65px);
    }
}

.lineup_item_thumb picture,
.lineup_item_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lineup_item_picture {
    width: 64vw;
    height: 37.33vw;
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
}
@media screen and (min-width: 920px){
    .lineup_item_picture {
        width: min(17.1428571429vw, 240px);
        height: min(9.64285714286vw, 135px);
    }
}

.lineup_item-cell .lineup_item_picture {
    width: 28.6933vw;
    height: auto;
    box-shadow: 0px 0px 20px 0px #0000004D;
}
@media screen and (min-width: 920px){
    .lineup_item-cell .lineup_item_picture {
        width: min(11.5378571429vw, 161.53px);
    }
}

.lineup_item_picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lineup_item_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
@media screen and (min-width: 920px){
    .lineup_item_inner {
        gap: min(5.33333333333vw, 20px);
    }
}

.lineup_item_ttl {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (min-width: 920px){
    .lineup_item_ttl {
        height: min(4.28571428571vw, 60px);
    }
}

.lineup_item_ttl h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}
@media screen and (min-width: 920px){
    .lineup_item_ttl h3 {
        font-size: min(5.33333333333vw, 20px);
    }
}

.lineup_item_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px 8px 20px;
    background-color: #1E1E1E;
    border-radius: 500px;
}
@media screen and (min-width: 920px){
    .lineup_item_icon {
        width: min(3.42857142857vw, 48px);
        height: min(3.42857142857vw, 48px);
        gap: 0;
        padding: 0;
        background-color: transparent;
        border-radius: 9999px;
        border: 1px solid #CCCCCC;
        transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
    }
}

.lineup_item_icon .txt {
    font-weight: 600;
    font-size: 12px;
    line-height: 1.5;
    color: #ffffff;
}
@media screen and (min-width: 920px){
    .lineup_item_icon .txt {
        display: none;
    }
}

.lineup_item_icon .icon {
    width: 24px;
    height: 24px;
    flex: 0 1 24px;
    display: block;
    position: relative;
}
@media screen and (min-width: 920px){
    .lineup_item_icon .icon {
        width: min(2.28571428571vw, 32px);
        height: min(2.28571428571vw, 32px);
        flex: 0 1 auto;
    }
}

.lineup_item_icon .icon::before {
    content: "";
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    aspect-ratio: 1;
    -webkit-mask-image: url(../img/common/icon_arrow.svg);
    mask-image: url(../img/common/icon_arrow.svg);
    display: block;
    background-color: #ffffff;
    width: 24px;
    height: 24px;
    transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (min-width: 920px){
    .lineup_item_icon .icon::before {
        width: min(2.28571428571vw, 32px);
        height: min(2.28571428571vw, 32px);
        background-color: #1e1e1e;
    }
}

@media screen and (min-width: 920px){
    .lineup_item:hover {
        opacity: 1 !important;
    }
}

@media screen and (min-width: 920px){
    .lineup_item:hover .lineup_item_icon {
        background-color: #E60012;
        border: 1px solid #E60012;
    }
}
@media screen and (min-width: 920px){
    .lineup_item:hover .lineup_item_icon .icon::before {
        background-color: #ffffff;
    }
}


.products .container-base {
    padding: 0;
}
@media screen and (min-width: 920px){
  .products .container-base {
    padding: 0 min(15.8571428571vw, 222px);
  }
}

.products_container {
    padding: 0 0 60px;
}
@media screen and (min-width: 920px){
    .products_container {
        padding: 0 0 min(8.57142857143vw, 120px);
    }
}

.products_container .section_ttl {
    margin: 0;
}

.products_item {
    padding: 60px 0 0;
}
@media screen and (min-width: 920px){
    .products_item {
        padding: min(8.57142857143vw, 120px) 0 0;
    }
}

.products_item-first {
    padding: 60px 0 0;
}
@media screen and (min-width: 920px){
    .products_item-first {
        padding: min(5.71428571429vw, 80px) 0 0;
    }
}

.products_item_head {
    padding: 0 20px;
    margin: 0 auto 24px;
    text-align: center;
}
@media screen and (min-width: 920px){
    .products_item_head {
        padding: 0;
        margin: 0 auto min(2.85714285714vw, 40px);
    }
}

.products_item_ttl {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.5;
    margin: 0 0 8px;
}
@media screen and (min-width: 920px){
    .products_item_ttl {
        font-size: min(2.28571428571vw, 32px);
        line-height: 1;
        margin: 0 0 min(0.71428571428vw, 10px);
    }
}

.products_item_model {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.35;
    color: #a6a6a6;
}
@media screen and (min-width: 920px){
    .products_item_model {
        font-size: min(1.14285714286vw, 16px);
    }
}

.products_item_price {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.35;
    display: block;
    margin: 20px 0 0;
}
@media screen and (min-width: 920px){
    .products_item_price {
        font-size: min(1.14285714286vw, 16px);
        margin: min(1.71428571429vw, 24px) 0 0;
    }
}

.products_item_price strong {
    font-size: 18px;
    font-weight: 500;
}
@media screen and (min-width: 920px){
    .products_item_price strong {
        font-size: min(1.42857142857vw, 20px);
    }
}

.products_item_price span {
    font-size: 11px;
}
@media screen and (min-width: 920px){
    .products_item_price span {
        font-size: min(0.92857142857vw, 13px);
    }
}

.products_item_price_catch {
    font-size: 18px !important;
    display: inline-block;
    margin: 0 6px 0 0;
}
@media screen and (min-width: 920px){
    .products_item_price_catch {
        font-size: min(1.28571428571vw, 18px) !important;
    }
}

/* .gallery {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 40px;
}
@media screen and (min-width: 920px){
    .gallery {
        gap: min(0.57142857142vw, 8px);
        margin: 0 0 min(5.71428571429vw, 80px);
    }
} */

.gallery {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 40px;
    position: relative;
}
@media screen and (min-width: 920px){
    .gallery {
        gap: min(0.57142857142vw, 8px);
        margin: 0 0 min(5.71428571429vw, 80px);
    }
}

.gallery .swiper {
    width: 100%;
}

.gallery-slider img,
.gallery-thumbs img {
  display: block;
  width: 100%;
  height: auto;
}

.gallery-thumbs {
    position: relative;
    width: 93.6% !important;
}
@media screen and (min-width: 920px){
    .gallery-thumbs {
        width: 100% !important;
    }
}

.gallery-thumbs .swiper-slide {
  width: 17.6vw;
  opacity: 0.5;
  transition: opacity 0.3s;
}
@media screen and (min-width: 920px){
    .gallery-thumbs .swiper-slide {
        width: min(13.2857142857vw, 186px);
        cursor: pointer;
    }
}

@media screen and (min-width: 920px){
    .gallery-thumbs .swiper-slide:hover {
        opacity: 1;
    }
}

.gallery-thumbs .swiper-slide-active {
  opacity: 1;
}

.swiper-button-next {
    right: 22px;
    left: auto;
}
@media screen and (min-width: 920px){
    .swiper-button-next {
        right: min(3.14285714286vw, 44px);
    }
}

.swiper-button-prev {
    right: auto;
    left: 22px;
}
@media screen and (min-width: 920px){
    .swiper-button-prev {
        left: min(3.14285714286vw, 44px);
    }
}

.swiper-button-next, .swiper-button-prev {
    width: 16px;
    height: 31px;
}
@media screen and (min-width: 920px){
    .swiper-button-next, .swiper-button-prev {
        width: min(2.28571428571vw, 32px);
        height: min(4.42857142857vw, 62px);
    }
}

.swiper-button-next::after, .swiper-button-prev::after {
    background-image: url(../img/common/icon_button.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    width: 16px;
    height: 31px;
    margin: auto;
    filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.6));
}
@media screen and (min-width: 920px){
    .swiper-button-next::after, .swiper-button-prev::after  {
        width: min(2.28571428571vw, 32px);
        height: min(4.42857142857vw, 62px);
    }
}

.swiper-button-prev::after {
    rotate: 180deg;
}

.products_item_notes {
    border: 2px solid #E50012;
    margin: 0 20px;

}
@media screen and (min-width: 920px){
    .products_item_notes {
        margin: 0;
        width: 100%;
    }
}

.products_item_notes_head {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E50012;
    color: #ffffff;
}
@media screen and (min-width: 920px){
    .products_item_notes_head {
        height: min(5.71428571429vw, 80px);
    }
}

.products_item_notes_head h3 {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-align: center;
}
@media screen and (min-width: 920px){
    .products_item_notes_head h3 {
        font-size: min(1.71428571429vw, 24px);
    }
}

.products_item_notes_head h3 img {
    width: 20px;
    height: 20px;
}
@media screen and (min-width: 920px){
    .products_item_notes_head h3 img {
        width: min(2vw, 28px);
        height: min(2vw, 28px);
    }
}

.products_item_notes_container {
    padding: 34px 25px 36px;
}
@media screen and (min-width: 920px){
    .products_item_notes_container {
        padding: min(2.21428571429vw, 31px) 25px min(3.57142857143vw, 50px);
    }
}

@media screen and (min-width: 920px){
    .products_item_notes_inner {
        width: min(50.3571428571vw, 705px);
        margin: 0 auto;
    }
}

.products_item_notes_message {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: justify;
    display: block;
    margin: 0 0 27px;
}
@media screen and (min-width: 920px){
    .products_item_notes_message {
        font-size: min(1.5vw, 21px);
        margin: 0 0 min(2.14285714286vw, 30px);
    }
}

.products_item_notes_inner ul {
    padding-left: 20px;
    margin: 0 0 27px;
}
@media screen and (min-width: 920px){
    .products_item_notes_inner ul {
        padding-left: min(1.71428571429vw, 24px);
        margin: 0 0 min(2.14285714286vw, 30px);
    }
}

.products_item_notes_inner ul li {
    position: relative; 
}
.products_item_notes_inner ul li::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 9999px;
    background: #1e1e1e;
    position: absolute;
    left: -12px;
    top: calc(0.65em - 0px);
}


.products_item_notes_link {
    display: inline-flex;
    align-items: center;
}

.products_item_notes_link p {
    color: #E50012;
    text-decoration: underline;
}

.products_item_notes_txt {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: justify;
}
@media screen and (min-width: 920px){
    .products_item_notes_txt {
        font-size: min(1.07142857143vw, 15px);
    }
}


.products_item_column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 40px 0 0;
}
@media screen and (min-width: 920px){
    .products_item_column {
        gap: min(5.71428571429vw, 80px);
        margin: min(5.71428571429vw, 80px) 0 0;
    }
}

.products_item_txtArea {
    padding: 0 70px;
}
@media screen and (min-width: 920px){
    .products_item_txtArea {
        width: min(36.5vw, 511px);
        padding: 0;
    }
}

.products_item_txt {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
@media screen and (min-width: 920px){
    .products_item_txt {
        gap: min(0.85714285714vw, 12px);
    }
}

.products_item_txt p {
    text-align: justify;
    letter-spacing: 0.04em;
}

.products_item_catch {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    color: #A6A6A6;
    display: block;
    margin: 0 0 10px;
}
@media screen and (min-width: 920px){
    .products_item_catch {
        font-size: min(0.85714285714vw, 12px);
        margin: 0 0 min(0.85714285714vw, 12px);
    }
}

.products_item_video {
    position: relative;
    margin: 0 55px;
}
@media screen and (min-width: 920px){
    .products_item_video {
        width: min(44.8571428571vw, 628px);
        margin: 0;
    }
}

.products_item_video_bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
@media screen and (min-width: 920px){
    .products_item_video_bg {
        height: min(29.9285714286vw, 419px);
    }
}

.products_item_video_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.products_item_video_circle {
    width: 112px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}
@media screen and (min-width: 920px){
    .products_item_video_circle {
        width: min(12.8571428571vw, 180px);
        height: min(12.8571428571vw, 180px);
        cursor: pointer;
    }
}

.products_item_video .play-btn {
    position: relative;
    bottom: auto;
    right: auto;
    translate: 0 0;
}

.products_item_detail {
    width: 100%;
    padding: 0 20px;
    color: #ffffff;
}
@media screen and (min-width: 920px){
    .products_item_detail {
        padding: 0;
    }
}

.products_item_detail_inner {
    background-color: #1E1E1E;
    padding: 40px 20px;
}
@media screen and (min-width: 920px){
    .products_item_detail_inner {
        padding: min(4.28571428571vw, 60px) 28px;
    }
}

.products_item_detail_info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 0 auto 32px;
}
@media screen and (min-width: 920px){
    .products_item_detail_info {
        gap: min(1.14285714286vw, 16px);
        margin: 0 auto min(2.85714285714vw, 40px);
    }
}

.products_item_detail_info_catch {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid #ffffff;
}
@media screen and (min-width: 920px){
    .products_item_detail_info_catch {
        padding: min(0.57142857142vw, 8px) min(0.85714285714vw, 12px);
    }
}

.products_item_detail_info_catch h5 {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}
@media screen and (min-width: 920px){
    .products_item_detail_info_catch h5 {
        font-size: min(1.14285714286vw, 16px);
    }
}

.products_item_detail_info_txt {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.products_item_detail_info_txt p {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}
@media screen and (min-width: 920px){
    .products_item_detail_info_txt p {
        font-size: min(1.71428571429vw, 24px);
    }
}

.products_item_detail_info_txt small {
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}
@media screen and (min-width: 920px){
    .products_item_detail_info_txt small {
        font-size: min(0.92857142857vw, 13px);
    }
}

.products_item_detail_column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 508px;
    margin: 0 auto;
}
@media screen and (min-width: 920px){
    .products_item_detail_column {
        width: min(36.4285714286vw, 510px);
        gap: min(1.14285714286vw, 16px);
        max-width: 100%;
    }
}

.products_item_detail_link {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background-color: #ffffff;
    border-radius: 500px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    color: #1e1e1e;
}
@media screen and (min-width: 920px){
    .products_item_detail_link {
        padding: min(1.14285714286vw, 16px) min(2.57142857143vw, 36px);
        font-size: min(1.28571428571vw, 18px);
        transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
    }
}
@media screen and (min-width: 920px){
    .products_item_detail_link:hover {
        background-color: #E60012;
        color: #ffffff;
    }
}

.products_item_detail_bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    background-color: #2B2B2B;
    padding: 40px 20px;
}
@media screen and (min-width: 920px){
    .products_item_detail_bottom {
        flex-direction: row;
        justify-content: space-between;
        gap: min(2.28571428571vw, 32px);
        padding: min(2.85714285714vw, 40px);
    }
}

.products_item_detail_notes {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media screen and (min-width: 920px){
    .products_item_detail_notes {
        width: calc((100% - min(2.28571428571vw, 32px)) / 2);
        align-items: flex-start;
        gap: min(0.85714285714vw, 12px);
    }
}

.products_item_detail_notes_ttl {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    text-align: center;
}
@media screen and (min-width: 920px){
    .products_item_detail_notes_ttl {
        font-size: min(1vw, 14px);
        text-align: left;
    }
}

.products_item_detail_notes_list {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-left: 16px;
}
@media screen and (min-width: 920px){
    .products_item_detail_notes_list {
        padding-left: min(1.42857142857vw, 20px);
    }
}

.products_item_detail_notes_list li {
    font-weight: 300;
    font-size: 12px;
    line-height: 1.3;
    text-align: justify;
    position: relative;
}
@media screen and (min-width: 920px){
    .products_item_detail_notes_list li {
        font-size: min(0.85714285714vw, 12px);
    }
}

.products_item_detail_notes_list li::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
    left: -10px;
    top: calc(0.65em - 3px);
}

.products_item_row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
@media screen and (min-width: 920px){
    .products_item_row {
        flex-direction: row;
        align-items: start;
        justify-content: space-between;
    }
}

@media screen and (min-width: 920px){
    .products_item_row .products_item_txtArea {
        flex: 0 1 min(36.5vw, 511px);
    }
}


.products_item_links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 58px;
}
@media screen and (min-width: 920px){
    .products_item_links {
        flex: 0 1 min(23.8571428571vw, 334px);
        gap: min(0.85714285714vw, 12px);
        padding: 0;
    }
}

.products_item_link {
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #1e1e1e;
    border-radius: 500px;
    background-color: #ffffff;
}
@media screen and (min-width: 920px){
    .products_item_link {
        height: min(4.57142857143vw, 64px);
        gap: min(0.57142857142vw, 8px);
        transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
    }
}

.products_item_link .txt {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}
@media screen and (min-width: 920px){
    .products_item_link .txt {
        font-size: min(1.28571428571vw, 18px);
    }
}

.icon_pdf {
    width: 24px;
    height: 24px;
    flex: 0 1 24px;
    position: relative;
}
@media screen and (min-width: 920px){
    .icon_pdf {
        width: min(2.28571428571vw, 32px);
        height: min(2.28571428571vw, 32px);
        flex: 0 1 min(2.28571428571vw, 32px);
        position: relative;
    }
}

.icon_pdf::before {
    content: "";
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    aspect-ratio: 1;
    -webkit-mask-image: url(../img/common/icon_pdf.svg);
    mask-image: url(../img/common/icon_pdf.svg);
    display: block;
    background-color: #1e1e1e;
    width: 24px;
    height: 24px;
    transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (min-width: 920px){
    .icon_pdf::before {
        width: min(2.28571428571vw, 32px);
        height: min(2.28571428571vw, 32px);
    }
}

@media screen and (min-width: 920px){
    .products_item_link:hover {
        background-color: #E60012;
        border: 1px solid #E60012;
        color: #ffffff;
    }
}

@media screen and (min-width: 920px){
    .products_item_link:hover .icon_pdf::before {
        background-color: #ffffff;
    }
}

.products_item_link-buy {
    background-color: #1e1e1e;
    color: #ffffff;
}
@media screen and (min-width: 920px){
    .products_item_link-buy:hover {
        background-color: #E60012;
        border: 1px solid #E60012;
        color: #ffffff;
    }
}

.shop_content {
    width: 90%;
    height: 80%;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 8px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}
@media screen and (min-width: 920px){
    .shop_content {
        width: min(56.5vw, 791px);
        padding: min(6vw, 84px) min(1.42857142857vw, 20px) min(4.28571428571vw, 60px) min(4.28571428571vw, 60px);
    }
}

.shop_content_inner {
    height: 100%;
    overflow-y: auto;
    width: 100%;
}
@media screen and (min-width: 920px){
    .shop_content_inner {
        padding-right: min(2.28571428571vw, 32px);
    }
}

.shop_content_ttl {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.6;
    display: block;
    margin: 0 0 20px;
}
@media screen and (min-width: 920px){
    .shop_content_ttl {
        font-size: min(2vw, 28px);
        margin: 0 0 min(1.42857142857vw, 20px);
    }
}

.shop_content_list {
    border-top: 1px solid #B3B3B3;
}

.shop_content_list li {
    border-bottom: 1px solid #B3B3B3;
}

.shop_content_link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 8px;
}
@media screen and (min-width: 920px){
    .shop_content_link {
        padding: min(0.85714285714vw, 12px);
        transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
    }
}

.shop_content_link_txt {
    font-weight: 300;
    font-size: 14px;
    line-height: 1.6;
    flex: 1 1 0;
}
@media screen and (min-width: 920px){
    .shop_content_link_txt {
        font-size: min(1.28571428571vw, 18px);
    }
}

.shop_content_link .icon::before,
.shop_content_link .icon::after {
    transition: translate 0.2s ease-out, background-color 0.3s;
}

.shop_content_link .icon_blank {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.shop_content_link .icon_blank::before,
.shop_content_link .icon_blank::after {
    content: "";
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    aspect-ratio: 1;
    -webkit-mask-image: url(../img/common/icon_blank.svg);
    mask-image: url(../img/common/icon_blank.svg);
    display: block;
    width: 20px;
    height: 20px;
    background: #1e1e1e;
    transition: translate 0.2s ease-out;
}
@media screen and (min-width: 920px){
    .shop_content_link .icon_blank::before,
    .shop_content_link .icon_blank::after {
        width: min(1.42857142857vw, 20px);
        height: min(1.42857142857vw, 20px);
    }
}

.shop_content_link .icon_blank::after {
    position: absolute;
    top: 0;
    left: 0;
    translate: -200% 200%;
}

.shop_content_link:hover .icon_blank::before {
    translate: 100% -100%;
}
.shop_content_link:hover .icon_blank::after {
    translate: 0 0;
}

.shop_content .closeModal {
    top: 16px;
    right: 16px;
}
@media screen and (min-width: 920px){
    .shop_content .closeModal {
        top: min(2.57142857143vw, 36px);
        right: min(2.57142857143vw, 36px);
    }
}

.shop_content .closeModal_icon {
    width: 48px;
    height: 12px;
    display: block;
    position: relative;
}

.shop_content .closeModal_icon::before,
.shop_content .closeModal_icon::after {
    content: "";
    position: absolute;
    background-color: #1e1e1e;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    rotate: 15deg;
}

.shop_content .closeModal_icon::after {
    rotate: 165deg;
}

.close_btn {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 500px;
    margin: 40px auto 0;
    padding: 12px 24px;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (min-width: 920px){
    .close_btn {
        width: min(9.14285714286vw, 128px);
        margin: min(2.85714285714vw, 40px) auto 0;
        cursor: pointer;
    }
}

.close_btn_txt {
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (min-width: 920px){
    .close_btn_txt {
        font-size: min(1.14285714286vw, 16px);
    }
}

@media screen and (min-width: 920px){
    .close_btn:hover {
        background-color: #1e1e1e;
    }
}
@media screen and (min-width: 920px){
    .close_btn:hover .close_btn_txt {
        color: #ffffff;
    }
}

.point {
    background-color: #ECECEC;
}

.point_container {
    padding: 0 0 60px;
}
@media screen and (min-width: 920px){
    .point_container {
        padding: 0 0 min(8.57142857143vw, 120px);
    }
}

.point_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media screen and (min-width: 920px){
    .point_list {
        gap: min(2.85714285714vw, 40px);
    }
}

.point_item {
    width: 100%;
    display: flex;
    flex-direction: column;
}
@media screen and (min-width: 920px){
    .point_item {
        flex-direction: row;
        height: min(22.7857142857vw, 319px);
    }
}

@media screen and (min-width: 920px){
    .point_list .point_item:nth-child(2) {
        flex-direction: row-reverse;
    }
}

.point_item_thumb {
    width: 100%;
    height: auto;
    display: block;
}
@media screen and (min-width: 920px){
    .point_item_thumb {
        width: 50%;
        height: 100%;
    }
}

.point_item_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.point_item_detail {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 55px;
    background-color: #ffffff;
}
@media screen and (min-width: 920px){
    .point_item_detail {
        width: 50%;
        height: 100%;
        padding: 28px min(2.85714285714vw, 40px);
    }
}

.point_item_txtArea {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media screen and (min-width: 920px){
    .point_item_txtArea {
        gap: min(1.14285714286vw, 16px);
    }
}

.point_item_ttl {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.point_item_ttl_number {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #a6a6a6;
}
@media screen and (min-width: 920px){
    .point_item_ttl_number {
        font-size: min(5.33333333333vw, 20px);
    }
}

.point_item_ttl_txt {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
}
@media screen and (min-width: 920px){
    .point_item_ttl_txt {
        font-size: min(1.71428571429vw, 24px);
    }
}

.point_item_txtArea p {
    text-align: justify;
}

.event {
    background-color: #343434;
    color: #ffffff;
}

.event_container {
    padding: 0 0 60px;
}
@media screen and (min-width: 920px){
    .event_container {
        padding: 0 0 min(5.71428571429vw, 80px);
    }
}

.event_head {
    margin: 0 0 40px;
}
@media screen and (min-width: 920px){
    .event_head {
        margin: 0 0 min(5.71428571429vw, 80px);
    }
}

.event_ttl_end {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    margin: 0 0 .5em;
}
@media screen and (min-width: 920px){
    .event_ttl_end {
        font-size: min(2.33333333333vw, 28px);
    }
}

.event_ttl {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.5;
    text-align: center;
    display: block;
    margin: 0 auto 24px;
}
@media screen and (min-width: 920px){
    .event_ttl {
        font-size: min(2.85714285714vw, 40px);
        margin: 0 auto min(1.71428571429vw, 24px);
    }
}

.event_txt {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
@media screen and (min-width: 920px){
    .event_txt {
        gap: min(0.85714285714vw, 12px);
    }
}

.event_txt p {
    letter-spacing: 0.04em;
    text-align: center;
}

.event_txt small {
    font-size: 11px;
    letter-spacing: 0.04em;
    text-align: center;
}
@media screen and (min-width: 920px){
    .event_txt small {
        font-size: min(0.85714285714vw, 12px);
    }
}

.event_link {
    width: 304px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 500px;
    padding: 16px 0;
    margin: 24px auto 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    color: #1e1e1e;
}
@media screen and (min-width: 920px){
    .event_link {
        width: min(27.8571428571vw, 390px);
        font-size: min(1.28571428571vw, 18px);
        padding: min(1.14285714286vw, 16px) 0;
        margin: min(2.85714285714vw, 40px) auto 0;
        transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
    }
}

@media screen and (min-width: 920px){
    .event_link:hover {
        background-color: #E60012;
        color: #ffffff;
    }
}

.event_loop_img {
    display: block;
    width: 96vw;
    height: 64vw;
}
@media screen and (min-width: 920px){
    .event_loop_img {
        width: min(51.4285714286vw, 720px);
        height: min(34.2857142857vw, 480px);
    }
}

.event_loop_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.event_content {
    padding: 40px 20px 0;
}
@media screen and (min-width: 920px){
    .event_content {
        padding: min(7.14285714286vw, 100px) min(4.28571428571vw, 60px) 0;
    }
}

.event_content_ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 40px;
}
@media screen and (min-width: 920px){
    .event_content_ttl {
        gap: min(1.71428571429vw, 24px);
        margin: 0 auto min(5.71428571429vw, 80px);
    }
}

.event_content_ttl_img {
    width: 320px;
    display: block;
}
@media screen and (min-width: 920px){
    .event_content_ttl_img {
        width: auto;
    }
}

.event_content_ttl_img img {
    width: 100%;
    height: 100%;
}

.event_content_ttl_txt {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-align: center;
    color: #ffffff;
}
@media screen and (min-width: 920px){
    .event_content_ttl_txt {
        font-size: min(2vw, 28px);
    }
}

.event_content_row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
    
}
@media screen and (min-width: 920px){
    .event_content_row{
        width: min(74.4285714286vw, 1042px);
        flex-wrap: nowrap;
        gap: min(4vw, 56px);
        margin: 0 auto;
    }
}

.event_content_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media screen and (min-width: 920px){
    .event_content_item {
        width: calc((100% - min(8vw, 112px)) / 3);
        gap: min(5.33333333333vw, 20px);
    }
}

.event_content_item-cell {
    width: calc((100% - 20px) / 2);
    gap: 12px;
}
@media screen and (min-width: 920px){
    .event_content_item-cell {
        width: calc((100% - min(8vw, 112px)) / 3);
        gap: min(5.33333333333vw, 20px);
    }
}

.event_content_item_head {
    width: 100%;
    position: relative;
}

.event_content_item_thumb {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 17.8666666667vw;
}
@media screen and (min-width: 920px){
    .event_content_item_thumb {
        width: min(21.4285714286vw, 300px);
        height: min(21.4285714286vw, 300px);
        margin: 0 0 min(4.64285714286vw, 65px);
    }
}

.event_content_item-cell .event_content_item_thumb {
    width: 100%;
    height: auto;
    margin: 0 0 13.33vw;
}
@media screen and (min-width: 920px){
    .event_content_item-cell .event_content_item_thumb {
        width: min(21.4285714286vw, 300px);
        height: min(21.4285714286vw, 300px);
        margin: 0 0 min(4.64285714286vw, 65px);
    }
}

.event_content_item_thumb picture,
.event_content_item_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.event_content_item_picture {
    width: 64vw;
    height: 37.33vw;
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
}
@media screen and (min-width: 920px){
    .event_content_item_picture {
        width: min(17.1428571429vw, 240px);
        height: min(9.64285714286vw, 135px);
    }
}

.event_content_item-cell .event_content_item_picture {
    width: 28.6933vw;
    height: auto;
    box-shadow: 0px 0px 20px 0px #0000004D;
}
@media screen and (min-width: 920px){
    .event_content_item-cell .event_content_item_picture {
        width: min(11.5378571429vw, 161.53px);
    }
}

.event_content_item_picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.event_content_item_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
@media screen and (min-width: 920px){
    .event_content_item_inner {
        gap: min(5.33333333333vw, 20px);
    }
}

.event_content_item_ttl {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (min-width: 920px){
    .event_content_item_ttl {
        height: min(4.28571428571vw, 60px);
    }
}

.event_content_item_ttl h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}
@media screen and (min-width: 920px){
    .event_content_item_ttl h3 {
        font-size: min(1.71428571429vw, 24px);
    }
}

.event_content_item_column {
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px auto 0;
}
@media screen and (min-width: 920px){
    .event_content_item_column {
        gap: min(0.85714285714vw, 12px);
        margin: min(5.33333333333vw, 20px) auto 0;
    }
}

.event_content_item-cell .event_content_item_column {
    margin: 12px auto 0;
}
@media screen and (min-width: 920px){
    .event_content_item-cell .event_content_item_column {
        margin: min(5.33333333333vw, 20px) auto 0;
    }
}

.event_content_item_link {
    width: 272px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    color: #1e1e1e;
}
@media screen and (min-width: 920px){
    .event_content_item_link {
        width: min(22.1428571429vw, 310px);
        height: min(5.71428571429vw, 80px);
        font-size: min(1.14285714286vw, 16px);
        transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
    }
}

.event_content_item_link-small {
    width: 152px;
    height: 45px;
}
@media screen and (min-width: 920px){
    .event_content_item_link-small {
        width: min(22.1428571429vw, 310px);
        height: min(5.71428571429vw, 80px);
    }
}

@media screen and (min-width: 920px){
    .event_content_item_link:hover {
        background-color: #E60012;
        color: #ffffff;
    }
}

.event_blank {
    margin: 60px 0 0;
    border-top: 1px solid #ffffff;
    padding: 60px 0 0;
}
@media screen and (min-width: 920px){
    .event_blank {
        margin: min(5.71428571429vw, 80px) 0 0;
        padding: min(5.71428571429vw, 80px) 0 0;
    }
}

.event_blank_link {
    width: 272px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #ffffff;
    border-radius: 500px;
    margin: 0 auto;
}
@media screen and (min-width: 920px){
    .event_blank_link {
        width: min(24.3571428571vw, 341px);
        height: min(4.57142857143vw, 64px);
        gap: min(0.57142857142vw, 8px);
        transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
    }
}

.event_blank_link_txt {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
    color: #1e1e1e;
}
@media screen and (min-width: 920px){
    .event_blank_link_txt {
        font-size: min(1.28571428571vw, 18px);
        transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
    }
}

.event_blank_link .icon_blank {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.event_blank_link .icon_blank::before,
.event_blank_link .icon_blank::after {
    content: "";
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    aspect-ratio: 1;
    -webkit-mask-image: url(../img/common/icon_blank-l.svg);
    mask-image: url(../img/common/icon_blank-l.svg);
    display: block;
    width: 24px;
    height: 24px;
    background: #1e1e1e;
    transition: translate 0.2s ease-out;
}
@media screen and (min-width: 920px){
    .event_blank_link .icon_blank::before,
    .event_blank_link .icon_blank::after {
        width: min(2.28571428571vw, 32px);
        height: min(2.28571428571vw, 32px);
    }
}

.event_blank_link .icon_blank::after {
    position: absolute;
    top: 0;
    left: 0;
    translate: -200% 200%;
}

@media screen and (min-width: 920px){
    .event_blank_link:hover {
        background-color: #E60012;
    }
}
@media screen and (min-width: 920px){
    .event_blank_link:hover .event_blank_link_txt {
        color: #ffffff;
    }
}
@media screen and (min-width: 920px){
    .event_blank_link:hover .icon_blank::before,
    .event_blank_link:hover .icon_blank::after {
        background: #ffffff;
    }
}

.event_blank_link:hover .icon_blank::before {
    translate: 100% -100%;
}
.event_blank_link:hover .icon_blank::after {
    translate: 0 0;
}

section+section {
    margin: 0 !important;
}