@charset "UTF-8";
/* ====================================
 共通スタイル
 ==================================== */
#main {
  font-family: shippori-mincho-b1, sans-serif;
  counter-reset: anchor, id;
  font-weight: 400;
  overflow: hidden;
}

.swiper-container {
  block-size: 86.66666vw;
  container-type: inline-size;
  container-name: main-visual;
  position: relative;
}

.swiper-wrapper {
  overflow: hidden;
}

.grid-lineup-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 6%;
  grid-row-gap: 4rem;
  margin-top: 5rem;
}
.grid-lineup-container .grid-lineup-item {
  font-family: "Noto Sans", sans-serif;
}
.grid-lineup-container .grid-lineup-item figure {
  text-align: center;
  position: relative;
}
.grid-lineup-container .grid-lineup-item figure img:first-of-type {
  opacity: 1;
  transition: opacity 0.3s;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  inline-size: 100%;
  block-size: auto;
}
.grid-lineup-container .grid-lineup-item figure figcaption {
  margin-top: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
}
.grid-lineup-container .grid-lineup-item figure figcaption::before {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.2rem;
  background: url(../../assets/common/images/chevron-right-solid.svg) no-repeat 0 0/contain;
  margin-right: 0.4rem;
}
.grid-lineup-container .grid-lineup-item .spec-text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}

.annotation {
  font-family: "Noto Sans", sans-serif;
  text-align: justify;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 7rem;
  padding-top: 2rem;
  border-top: 1px solid #a5a5a5;
}
.annotation::before {
  content: "※";
  color: #116aff;
}

/*@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}*/
.swiper-slide-active picture,
.swiper-slide-duplicate-active picture,
.swiper-slide-prev picture {
  display: block;
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

.swiper-wrapper.paused .swiper-slide-active picture,
.swiper-wrapper.paused .swiper-slide-duplicate-active picture,
.swiper-wrapper.paused .swiper-slide-prev picture {
  animation: none;
  transform: none;
  transition: unset;
}

.circle-pagination:focus-visible {
	outline: 2px solid var(--cyan);
	outline-offset: 1px;
}

/* =============================
    ページネーションの見栄えを調整
============================= */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: static;
  display: flex;
  justify-content: space-between;
  width: 12rem;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  background-color: transparent;
  bottom: 0;
  padding: 8px 0;
  line-height: 1;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0;
}

/* ==========================
    円形のページネーションを作成
  ========================== */
.circle-pagination {
  position: relative;
  width: 3.1rem;
  height: inherit;
  z-index: 1;
  background-color: transparent;
  text-align: center;
  cursor: pointer;
  opacity: 1;
  display: inline-block;
  outline: none;
}

.circle-pagination .circle-pagination__inner {
  font-family: Zen Maru Gothic;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  aspect-ratio: 1 / 1;
}

.circle-pagination__inner svg {
  transform: rotate(-90deg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.circle-pagination__inner circle {
  fill: transparent;
  stroke: #000;
  stroke-width: 1.5;
  animation: circle 5s linear forwards;
}

.circle-pagination__inner.paused circle {
  animation: none;
  transform: none;
  transition: unset;
  display: none;
}

.circle-pagination__inner.reset circle {
  animation: circle 5s linear forwards;
}

@keyframes circle {
  0% {
    stroke-dasharray: 0 94;
  }
  99.9%, to {
    stroke-dasharray: 94 94;
  }
}
.swiper-pagination-bullet.swiper-pagination-bullet-active .circle-pagination__inner {
  color: #000;
}

.circle-pagination:not(.swiper-pagination-bullet-active) .circle-pagination__inner svg {
  /* 非アクティブ時なサークルのsvgは非表示に */
  display: none;
}

.swiper-control {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 15.6rem;
  margin: 1rem auto 0;
}
.swiper-control .swiper_pause {
  height: 1.8rem;
  width: 1.1rem;
  display: flex;
  justify-content: space-between;
}
.swiper-control .swiper_pause::before, .swiper-control .swiper_pause::after {
  content: "";
  display: block;
  height: 100%;
  width: 0.4rem;
  background: #000;
  border-radius: 10rem;
}
.swiper-control .swiper_pause.paused {
  background: url(images/start.svg) no-repeat 0 0.5rem/contain;
}
.swiper-control .swiper_pause.paused::before, .swiper-control .swiper_pause.paused::after {
  display: none;
}

.mainTitle {
  text-align: center;
  font-size: 2.3rem;
  padding: 2.5rem 0;
}

.greeting {
  padding: 7rem 5% 7rem;
  font-size: 1.5rem;
  line-height: 3.2rem;
}
.greeting .logo-fit63 {
  width: 22rem;
  margin: 2.3rem auto 0;
}
.greeting .t1 {
  font-family: noto-sans-cjk-jp, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 500;
  margin-top: 8rem;
}
.greeting .t1::before, .greeting .t1::after {
  content: "";
  display: inline-block;
  width: 0.2rem;
  height: 4.461rem;
  background: #000;
}
.greeting .t1::before {
  transform: rotate(-19.97deg);
  margin-right: 1rem;
}
.greeting .t1::after {
  transform: rotate(19.97deg);
  margin-left: 1rem;
}
.greeting .tob {
  display: flex;
  flex-direction: column;
  width: 28rem;
  margin: 0 auto;
}
.greeting .tob a {
  background: #000;
  color: #fff;
  margin-top: 1rem;
  text-align: center;
  border-radius: 1rem;
  counter-increment: anchor;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.6rem;
  padding: 0.4rem 1.5rem;
}
.greeting .tob a span {
  content: "0" counter(anchor);
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 2.6rem;
  line-height: 1;
}
.greeting .tob a::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 2rem;
  background: url(../../assets/common/images/chevron-down-solid-w.svg) no-repeat 0 0/contain;
}

.standard {
  counter-increment: id;
  padding: 7rem 0 0;
}
.standard h2 {
  margin: 0 8%;
  height: 16rem;
  font-size: 2.2rem;
  line-height: 3.7rem;
  text-align: center;
  position: relative;
  --x-gradient: linear-gradient(
    90deg,
    #959595 0 3.8rem,
    transparent 0 calc(100% - 3.8rem),
    #959595 calc(100% - 3.8rem)
  );
  --y-gradient: linear-gradient(
    #959595 0 3rem,
    transparent 0 calc(100% - 3rem),
    #959595 calc(100% - 3rem)
  );
  display: flex;
  flex-direction: column;
  background-image: var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
  background-repeat: no-repeat;
  background-size: 100% 0.3rem, 0.3rem 100%, 100% 0.3rem, 0.3rem 100%;
  background-position: top, right, bottom, left;
}

.standard h2 span {
  font-family: "Noto Sans", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.standard h2 span small {
  display: block;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 1.8rem;
  color: #535353;
}

.standard .subVisual p {
  margin: 3rem 7% 0;
}
.standard .subVisual picture {
  display: block;
  margin-top: 2rem;
}
.standard .subVisual picture img {
  inline-size: 124%;
  margin-left: -12%;
}

#other {
  background: #ece7db;
  padding: 6rem 8% 6rem;
  text-align: center;
}
#other h2 {
  font-family: "Noto Sans", sans-serif;
  text-align: center;
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 700;
}
#other h3 {
  font-size: 1.8rem;
  margin-top: 1rem;
}
#other .box {
  margin-top: 4rem;
}
#other .box h4 {
  color: #fff;
  background: #000;
  font-size: 1.2rem;
  width: 14.9rem;
  height: 3rem;
  margin: 2rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans", sans-serif;
}
#other .box h5 {
  font-size: 2rem;
  margin-top: 1rem;
}
#other .box p {
  font-size: 1.4rem;
  margin-top: 1rem;
}

#lineup {
  padding-top: 5rem;
  text-align: center;
}
#lineup h2 {
  font-size: 3.5rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
#lineup .sub-title {
  font-size: 1.8rem;
  line-height: 1.25;
  margin-top: 1rem;
}
#lineup .logo-fit63 {
  width: 18rem;
  margin: 3rem auto 0;
}

h2 span {
  display: inline-block;
}

/* ==========================================
	ホバー、マウスポインタがサポートされている環境
=========================================== */
@media (hover: hover) and (pointer: fine) {
  .btn-feature-open {
    transition: 0.5s;
  }
  .btn-feature-open:hover {
    text-decoration: none;
    opacity: 0.6 !important;
    transition: 0.5s;
  }
  a {
    transition: 0.5s;
  }
  a:hover {
    text-decoration: none;
    opacity: 0.6 !important;
    transition: 0.5s;
  }
  a.hovering img:first-of-type {
    opacity: 1 !important;
  }
}
/* ====================================
	スマートフォン専用スタイル
===================================== */
@media screen and (width < 768px) {
  .pc {
    display: none;
  }
}
#mainVisual {
  background: #ece7db;
}

/* ====================================
	PC&タブレット専用スタイル
===================================== */
@media print, screen and (width >= 768px) {
  .sp {
    display: none;
  }
  #mainVisual {
    position: relative;
  }
  #mainVisual .swiper-container {
    block-size: 53.33333vw;
    max-inline-size: 2100px;
    max-block-size: 1120px;
  }
  #mainVisual .swiper-control {
    position: absolute;
    bottom: 2.4vw;
    right: 14vw;
    z-index: 500;
    width: 16rem;
  }
  #mainVisual .swiper-control .circle-pagination__inner {
    color: #fff;
  }
  #mainVisual .swiper-control .circle-pagination__inner circle {
    stroke: #fff;
  }
  #mainVisual .swiper-control .swiper_pause::before, #mainVisual .swiper-control .swiper_pause::after {
    background: #fff;
  }
  #mainVisual .swiper-control .swiper_pause.paused {
    background: url(images/start_w.svg) no-repeat 0 0.5rem/contain;
  }
  #mainVisual .swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 12.5rem;
  }
  .grid-lineup-container .grid-lineup-item {
    text-align: center;
  }
  .grid-lineup-container .grid-lineup-item figure img:first-of-type {
    opacity: 0;
  }

  .grid-lineup-container .grid-lineup-item figure figcaption {
    background-position: 5rem center;
    font-size: 2.2rem;
    margin-top: 2.5rem;
  }
  .grid-lineup-container .grid-lineup-item .spec-text {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-top: 1rem;
  }
  .mainTitle {
    position: absolute;
    width: 59vw;
    max-width: 758px;
    font-size: 3.5rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.07em;
    padding: 2.2rem 0 3rem 4rem;
    text-align: left;
    right: 0;
    top: 45.5vw;
    margin-top: -17.1rem;
    background: rgba(0, 0, 0, 0.2);
    z-index: 100;
  }
  .greeting {
    text-align: center;
    padding: 10rem 0;
    font-size: 1.8rem;
  }
  .greeting > p {
    line-height: 3.4rem;
  }
  .greeting .logo-fit63 {
    width: 34rem;
    margin-top: 6rem;
  }
  .greeting .t1 {
    font-size: 2rem;
    margin-top: 10rem;
  }
  .greeting .t1::before, .greeting .t1::after {
    width: 1px;
    height: 4.478rem;
  }
  .greeting .t1::before {
    transform: rotate(-30.57deg);
    margin-right: 3rem;
  }
  .greeting .t1::after {
    transform: rotate(30.57deg);
    margin-left: 3rem;
  }
  .greeting .tob {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1150px;
    width: 90%;
    margin: 0 auto;
  }
  .greeting .tob a {
    max-width: 26.6rem;
    width: 24%;
    margin-top: 3rem;
    padding: 1.1rem 1.5rem;
  }
  .standard {
    padding: 10rem 0 0;
  }
  .standard h2 {
    font-size: 4rem;
    line-height: 1.6;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 900px;
    height: 20rem;
    margin: 0 auto;
    --y-gradient: linear-gradient(
      #959595 0 2.2rem,
      transparent 0 calc(100% - 2.2rem),
      #959595 calc(100% - 2.2rem)
    );
  }
  .standard h2 span {
    position: absolute;
    top: 4rem;
    left: 2rem;
    font-size: 8rem;
  }
  .standard h2 span small {
    font-size: 1.8rem;
    margin-bottom: 0.3em;
  }
  .standard .subVisual {
    position: relative;
    margin: 7rem 0 0;
  }
  .standard .subVisual p {
    font-size: 1.5rem;
    line-height: 1.5;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 8px 8px 16px 5px rgba(0, 0, 0, 0.1098039216);
    position: absolute;
    margin: 0;
    z-index: 500;
  }
  .standard .subVisual picture {
    margin: 0;
    overflow: hidden;
    height: 78.3vw;
    text-align: center;
    position: relative;
  }
  .standard .subVisual picture img {
    position: absolute;
    width: 125vw;
    margin-left: -62.5vw;
  }
  .standard#sub01 p {
    bottom: 5rem;
    right: 5vw;
    width: 31rem;
    height: 13.2rem;
  }
  .standard#sub02 p {
    bottom: 5rem;
    left: 5vw;
    width: 31rem;
    height: 11rem;
  }
  .standard#sub03 p {
    top: 5.4rem;
    right: 5vw;
    width: 31rem;
    height: 15rem;
  }
  .standard#sub04 p {
    top: 6.6rem;
    right: 5vw;
    width: 28rem;
    height: 11rem;
  }
  #other {
    padding: 14rem 5%;
    text-align: left;
  }
  #other h2 {
    font-size: 7rem;
    text-align: left;
    margin: 0 auto;
    max-width: 1200px;
  }
  #other h3 {
    font-size: 3rem;
    margin: 4rem auto 0;
    max-width: 1200px;
  }
  #other .inner {
    display: flex;
    justify-content: space-between;
    margin: 8rem auto 0;
    max-width: 1200px;
  }
  #other .inner .box {
    width: 31%;
    max-width: 360px;
  }
  #other .inner .box h4 {
    margin: 3rem 0 0 0;
    display: inline-flex;
    width: initial;
    padding: 0 1.2rem;
    border-radius: 0.3rem;
    font-size: 1.4rem;
  }
  #other .inner .box h5 {
    margin-top: 2rem;
  }
  #other .inner .box p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  #lineup {
    padding: 14rem 5% 12rem;
    text-align: left;
  }
  #lineup h2 {
    font-size: 7rem;
  }
  #lineup .inner {
    display: flex;
    align-items: center;
    margin-top: 2rem;
  }
  #lineup .inner h3 {
    font-size: 3rem;
    margin: 0;
  }
  #lineup .inner .logo-fit63 {
    width: 20rem;
    margin: 0 0 0 7rem;
  }
  .annotation {
    margin-top: 15rem;
    padding-left: 1em;
    position: relative;
  }
  .annotation::before {
    position: absolute;
    left: 0;
  }
}
/* ====================================
	TAB style（768px～1023px）
===================================== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .grid-lineup-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 3%;
    grid-row-gap: 6rem;
  }
}
/* ====================================
	PC style（1024px～）
===================================== */
@media screen and (min-width: 1024px) {
  .grid-lineup-container {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 1%;
    grid-row-gap: 0;
    margin-top: 8rem;
  }
}
/* ====================================
	PC専用スタイル
===================================== */
@media print, screen and (width >= 1200px) {
  .standard .subVisual picture {
    margin: 0;
    overflow: hidden;
    height: 940px;
    text-align: center;
  }
  .standard .subVisual picture img {
    left: 50%;
    top: 0;
    margin-left: -750px;
    height: 940px;
    width: 1500px;
  }
  .standard#sub01 p {
    right: 10%;
  }
  .standard#sub02 p {
    left: 10%;
  }
  .standard#sub03 p {
    right: 10%;
  }
  .standard#sub04 p {
    right: 10%;
  }
  /* .standard#sub01 p {
    bottom: 5rem;
    right: 50%;
    margin-right: -53rem;
  }
  .standard#sub02 p {
    left: 50%;
    margin-left: -53rem;
  }
  .standard#sub03 p {
    top: 5.4rem;
    right: 50%;
    margin-right: -53rem;
  }
  .standard#sub04 p {
    top: 6.6rem;
    right: 50%;
    margin-right: -53rem;
  } */
}
@media print, screen and (width >= 1500px) {
  .mainTitle {
    width: 75.8rem;
    padding-right: 0;
  }
  .standard .subVisual picture {
    margin: 0;
    overflow: hidden;
    height: 940px;
    text-align: center;
  }
  .standard .subVisual picture img {
    position: absolute;
    width: 101%;
    height: auto;
    left: 50%;
    top: 50%;
    margin-top: -31.3vw;
    margin-left: -49.7vw;
  }
  .standard#sub01 p {
    bottom: 5rem;
    right: 14%;
    margin-right: 0;
  }
  .standard#sub02 p {
    left: 14%;
    margin-left: 0;
  }
  .standard#sub03 p {
    right: 14%;
    margin-right: 0;
  }
  .standard#sub04 p {
    right: 14%;
    margin-right: 0;
  }
}/*# sourceMappingURL=style.css.map */