@charset "UTF-8";
@font-face {
  font-family: "Bodoni72Book";
  src: url("../fonts/bodoni-72-book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
* {
  min-height: 0;
  box-sizing: border-box;
}

html,
body {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #1D1D1B;
  padding-top: 0 !important;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.wrap {
  font-size: 20px;
  line-height: 1.5;
  text-align: justify;
  line-break: strict;
}
@media screen and (max-width: 1200px) {
  .wrap {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .wrap {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
  }
}
.wrap img {
  max-width: 100%;
  vertical-align: bottom;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.pc-inline {
  display: inline-block !important;
}

.sp-inline {
  display: none !important;
}

a:hover {
  opacity: 0.8;
}

.super {
  font-size: 0.8em;
  vertical-align: super;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.js-fade {
  opacity: 0;
  transition: opacity 1.5s;
}
.js-fade.js-on {
  opacity: 1;
}

.js-fade-image {
  opacity: 0;
  transform: scale(1.05);
  transition: transform 1.5s, opacity 1.5s;
}
.js-fade-image.js-on {
  opacity: 1;
  transform: scale(1);
}

.icj-pagetop {
  display: none;
  right: 80px;
}
@media screen and (max-width: 768px) {
  .icj-pagetop {
    right: 15px;
    bottom: 20vw;
  }
}

/* ============================
* MAIN
* ========================= */
/* common */
/* ========================= */
.wrap {
  overflow: clip;
}

.wrap > main {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .wrap > main {
    margin-bottom: 80px;
  }
}

.section-inner {
  width: 100%;
  max-width: 1260px;
  margin: auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .section-inner {
    padding: 0 20px;
  }
}

.c-red {
  color: #DE252A;
}

.note {
  font-size: 13px;
}

.btn_t01 {
  display: block;
  background: #DE252A;
  color: #fff;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  width: 450px;
  height: 100px;
  border-radius: 20px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .btn_t01 {
    width: 100%;
    max-width: 450px;
    height: 80px;
    border-radius: 10px;
    font-size: 20px;
  }
}
.btn_t01::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: solid 3px;
  border-right: solid 3px;
  transform: rotate(45deg);
}

.cmn-cv {
  display: none;
}

/* header */
/* ========================= */
.ig6-header {
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .ig6-header {
    padding: 10px 0;
  }
}
.ig6-header_logo {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .ig6-header_logo img {
    width: 70px;
  }
}

/* スライダー
********************************/
.swiper-container {
  padding-bottom: 60px;
}

.swiper-button-next,
.swiper-button-prev {
  cursor: pointer;
  top: 50%;
  width: 30px;
  height: 30px;
  border: 1px solid #222222;
  border-radius: 50%;
  background: #fff;
  transition: background-color 0.3s, border-color 0.3s;
}
@media screen and (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 6.8vw;
    height: 6.8vw;
  }
}
@media (hover) and (pointer: fine) {
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background-color: #222222;
    border-color: #222222;
  }
  .swiper-button-next:hover::after,
  .swiper-button-prev:hover::after {
    border-color: #fff;
  }
}
.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
}
@media screen and (max-width: 768px) {
  .swiper-button-next::after,
  .swiper-button-prev::after {
    width: 1.6vw;
    height: 1.6vw;
  }
}

.swiper-button-prev {
  left: 0;
}
.swiper-button-prev::after {
  border-left: 1px solid #222222;
  border-bottom: 1px solid #222222;
  left: 55%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.swiper-button-next {
  right: 0;
}
.swiper-button-next::after {
  border-top: 1px solid #222222;
  border-right: 1px solid #222222;
  left: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* RTL対応 */
.swiper-rtl .swiper-button-next::after {
  border-left: 1px solid #222222;
  border-bottom: 1px solid #222222;
  left: 55%;
}
.swiper-rtl .swiper-button-prev::after {
  border-top: 1px solid #222222;
  border-right: 1px solid #222222;
  left: 45%;
}

/* pagination */
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  text-align: center;
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination-bullet {
  position: relative;
  display: block;
  width: 50px;
  height: 4px;
  border-radius: 0;
  margin: 0 !important;
  background: #D9D9D9;
  opacity: 1;
  transition: 0.3s;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 30px;
    height: 5px;
  }
}
.swiper-pagination-bullet:first-child {
  border-radius: 3px 0 0 3px;
}
.swiper-pagination-bullet:last-child {
  border-radius: 0 3px 3px 0;
}
.swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1D1D1B;
  border-radius: 3px;
  display: block;
  transition: transform 0.3s;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

/* MV */
/* ========================= */
.mv_main {
  padding: 0px 0px 0px 40px;
  border-left: 10px solid #DE252A;
}
@media screen and (max-width: 768px) {
  .mv_main {
    padding: 0px 0px 0px 15px;
    border-left: 5px solid #DE252A;
  }
}
.mv_main_text {
  font-size: min(6.6666666667vw, 80px);
}
@media screen and (max-width: 768px) {
  .mv_main_text {
    font-size: 40px;
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin-bottom: 0.6rem;
  }
}
.mv_main_text .sub {
  font-size: min(2.9166666667vw, 35px);
  display: block;
  line-height: 1;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .mv_main_text .sub {
    font-size: 25px;
    letter-spacing: 0em;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .mv_main .note {
    line-height: 1.2;
  }
}
.mv_img {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .mv_img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 40px;
  }
}

/* description */
/* ========================= */
.ig6-description {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .ig6-description {
    padding-top: 40px;
  }
}
.ig6-description_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .ig6-description_box {
    grid-template-columns: repeat(1, 1fr);
    align-items: normal;
    gap: 40px;
  }
}
.ig6-description_box .textArea .title {
  font-size: 35px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .ig6-description_box .textArea .title {
    font-size: 25px;
  }
}
.ig6-description_box .textArea .text {
  line-height: 2;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .ig6-description_box .textArea .text {
    line-height: 1.5;
  }
}
/* lineup */
/* ========================= */
.ig6-lineup {
  padding-top: 100px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .ig6-lineup {
    padding-top: 40px;
    margin-bottom: 40px;
  }
}
.ig6-lineup_title {
  font-size: 35px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .ig6-lineup_title {
    font-size: 25px;
    gap: 8px;
  }
}
.ig6-lineup_title span {
  flex-shrink: 0;
}
.ig6-lineup_title::before, .ig6-lineup_title::after {
  content: "";
  border-bottom: 1px solid #1D1D1B;
  width: 100%;
}

/** swiper **/
.lineup-swiper {
  position: relative;
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .lineup-swiper {
    padding: 0 20px;
    padding-bottom: 30px;
  }
}
.lineup-swiper-container {
  margin-top: 40px;
  padding-bottom: 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lineup-swiper-container {
    margin-top: 32px;
    padding-bottom: 0;
  }
}
.lineup-swiper-slide {
  transform: scale(0.8) !important;
  transition: transform 0.2s;
}
@media screen and (min-width: 768px) {
  .lineup-swiper-slide {
    width: 573px !important;
  }
}
@media screen and (max-width: 768px) {
  .lineup-swiper-slide {
    transform: scale(1) !important;
  }
}
.lineup-swiper-slide.swiper-slide-active {
  transform: scale(1) !important;
}
.lineup-swiper-slide a {
  display: block;
}
.lineup-swiper-slide a:focus .lineup-swiper-img img {
  transform: scale(1.1);
}
.lineup-swiper-slide a:focus .lineup-swiper-name,
.lineup-swiper-slide a:focus .lineup-swiper-description {
  opacity: 0.5;
}
@media (hover) {
  .lineup-swiper-slide a:hover .lineup-swiper-img img {
    transform: scale(1.1);
  }
  .lineup-swiper-slide a:hover .lineup-swiper-name,
  .lineup-swiper-slide a:hover .lineup-swiper-description {
    opacity: 0.5;
  }
}
.lineup-swiper-slide-content {
  display: block;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .lineup-swiper-slide-content {
    width: 100%;
  }
}
.lineup-swiper-img {
  display: block;
  margin: auto;
  overflow: hidden;
}
.lineup-swiper-img img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}
.lineup-swiper-name {
  color: #222;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .lineup-swiper-name {
    padding: 0;
  }
}
.lineup-swiper-name-logo {
  line-height: 1;
}
.lineup-swiper-name-logo img {
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .lineup-swiper-name-logo img {
    max-width: 175px;
    max-height: 20px;
  }
}
.lineup-swiper-name-logo.brillart + .lineup-swiper-name-ja {
  padding-bottom: 7px;
}
.lineup-swiper-name-logo.hyakunen {
  margin-top: -10px;
}
.lineup-swiper-name-logo.hyakunen img {
  width: 119px;
}
@media screen and (max-width: 768px) {
  .lineup-swiper-name-logo.hyakunen img {
    width: 61px;
  }
}
.lineup-swiper-name-ja {
  color: #222;
  line-height: 1;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .lineup-swiper-name-ja {
    display: block;
    font-size: 15px;
  }
}
@media screen and (max-width: 390px) {
  .lineup-swiper-name-ja {
    font-size: 12px;
  }
}
.lineup-swiper-description {
  color: #222;
  margin-top: 19px;
  font-size: 15px;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .lineup-swiper-description {
    font-size: 14px;
    margin-top: 10px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 390px) {
  .lineup-swiper-description {
    font-size: 12px;
  }
}
.lineup-swiper-description::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 5px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: rotate(45deg) translateY(-2px);
  display: inline-block;
}
@media screen and (max-width: 390px) {
  .lineup-swiper-description::after {
    width: 7px;
    height: 7px;
    transform: rotate(45deg) translateY(-1px);
  }
}
.lineup-swiper-thumb {
  max-width: 800px;
  margin: auto;
  display: none;
}
@media screen and (max-width: 768px) {
  .lineup-swiper-thumb {
    display: block;
  }
}
.lineup-swiper-thumb-slide {
  transition: opacity 0.3s;
}
.lineup-swiper-thumb-slide.swiper-slide-active {
  outline: 5px solid #e2e3e7;
}
@media screen and (max-width: 768px) {
  .lineup-swiper-thumb-slide {
    outline: 1px solid #e2e3e7;
  }
}
@media (hover) {
  .lineup-swiper-thumb-slide:hover {
    opacity: 0.7;
  }
}
.lineup-swiper-thumb-slide a {
  display: block;
  pointer-events: none;
}
.lineup-swiper-thumb-slide a.pointer {
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .lineup-swiper-thumb-slide img {
    width: 100%;
  }
}
.lineup-swiper-button-wrap {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 573px;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .lineup-swiper-button-wrap {
    width: 100%;
  }
}
.lineup-swiper-button-prev {
  left: -40px;
}
@media screen and (max-width: 768px) {
  .lineup-swiper-button-prev {
    left: 2%;
  }
}
.lineup-swiper-button-next {
  right: -40px;
}
@media screen and (max-width: 768px) {
  .lineup-swiper-button-next {
    right: 2%;
  }
}

/* NEW */
/* ========================= */
.ig6-new {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .ig6-new {
    margin-bottom: 40px;
  }
}
.ig6-new_box {
  background-color: #F5F5F5;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .ig6-new_box {
    padding: 20px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.ig6-new_boxText .icon {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .ig6-new_boxText .icon {
    margin-bottom: 10px;
    width: 80px;
  }
}
.ig6-new_boxText .title {
  font-size: 35px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .ig6-new_boxText .title {
    font-size: 25px;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }
}
.ig6-new_boxText .text {
  font-size: 20px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .ig6-new_boxText .text {
    font-size: 18px;
    line-height: 1.5;
  }
}
.ig6-new_boxImg {
  width: 43.86%;
  max-width: 500px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .ig6-new_boxImg {
    width: 100%;
    max-width: none;
  }
}

/* BANNER */
/* ========================= */
.ig6-bnr {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .ig6-bnr {
    margin-bottom: 40px;
  }
}

/* LINK */
/* ========================= */
.ig6-link_leadText {
  position: relative;
  font-size: 25px;
  font-weight: 500;
  padding: 0 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ig6-link_leadText {
    font-size: 20px;
    padding: 0 10px;
  }
}
.ig6-link_leadText::before, .ig6-link_leadText::after {
  content: "";
  display: block;
  border-left: 2px solid;
  height: 75%;
  width: 1px;
  position: absolute;
  top: 15%;
  bottom: 0;
}
.ig6-link_leadText::before {
  left: 0;
  transform: rotate(-30deg);
}
.ig6-link_leadText::after {
  right: 0;
  transform: rotate(30deg);
}
.ig6-link_btn {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .ig6-link_btn {
    margin-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */