@charset "UTF-8";

:root {
  --color-black: #000;
  /* font family */
  --font-gin: dnp-shuei-gothic-gin-std, sans-serif;
  --font-times: times-new-roman, sans-serif;
  --font-helvetica: helvetica-neue-lt-pro, sans-serif;
}

html,
body {
  font-family: var(--font-gin);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

.l-line-link {
  display: inline-block;
  position: relative;
  line-height: 1;

  &::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #000;
    transform: scaleX(1);
    transition: transform 0.3s ease-in-out;
    transform-origin: right;
  }
}

/*================ loading ================*/

.l-loading {
  position: fixed;
  z-index: 10;
  inset: 0;
  background: #fff;
  color: #000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0s linear 0s;
}

.l-loading__logo,
.l-loading__text {
  opacity: 0;
  animation: loading-content 5s ease forwards;
}

@keyframes loading-content {

  0%,
  28.125% {
    opacity: 0;
  }

  38.125%,
  87.5% {
    opacity: 1;
  }

  97.5%,
  100% {
    opacity: 0;
  }
}

.l-loading.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s ease, visibility 0s linear 0.8s;
}

.l-loading__inner {
  width: 100%;
  height: 100%;
}

.l-loading__logo {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 200px;
  height: 31.544px;
}

.l-loading__logo svg {
  display: block;
  width: 100%;
  height: 100%;
}

.l-loading__text {
  position: absolute;
  bottom: calc(190 / 1440 * 100vw);
  left: 50%;
  width: calc(564.45 / 1440 * 100vw);
}

.l-loading__text svg {
  display: block;
  width: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  .l-loading__logo {
    top: 0;
    left: 15px;
    width: auto;
    height: 35px;
    display: flex;
    align-items: center;
  }

  .l-loading__logo svg {
    width: auto;
    height: 18px;
  }

  .l-loading__text {
    left: 30px;
    bottom: calc(163 / 393 * 100vw);
    width: calc(292.04 / 393 * 100vw);
    transform: none;
  }

  .l-loading__text svg {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {

  .l-loading,
  .l-loading.is-loaded {
    transition-duration: 0.01ms;
  }
}

@media (any-hover: hover) {
  .l-line-link:hover::after {
    transform: scaleX(0);
  }
}


/*================ fadein ================*/
.fadein {
  transition: all 1s;
  opacity: 0
}

.fadein.scroll-fade {
  opacity: 1
}

.fadein-bottom {
  transition: all 1s;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
  opacity: 0
}

.fadein-bottom.scroll-fade {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1
}

.fadein-bottom-buffered {
  transition: all 1s;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
  opacity: 0
}

.fadein-bottom-buffered.scroll-fade {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1
}



/*================ セクション名 ================*/


.l-header {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 2;

  @media (max-width: 767px) {
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-inline: 15px;
  }

}

.l-header__inner {}

.l-header__logo {
  color: #fff;

  @media (max-width: 767px) {
    color: #000;
  }
}

.l-header__logo svg {
  width: 100%;
  height: 100%;
  object-fit: contain;

  @media (max-width: 767px) {
    height: 18px;
    width: auto;
  }
}

/*================ l-mv ================*/

.l-mv {
  position: relative;
  width: 100%;
  height: 100vh;
}

.l-mv__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.l-mv__picture picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-content__item__image__picture picture,
.l-items__slider__item__image__picture picture {
  display: block;
}

.l-mv__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-mv__title {
  position: absolute;
  bottom: calc(190 / 1440 * 100vw);
  left: 50%;
  width: calc(564.45 / 1440 * 100vw);

  @media (max-width: 767px) {
    left: 30px;
    bottom: calc(163 / 393 * 100vw);
    width: calc(292.04 / 393 * 100vw);
  }
}

.l-mv__title svg {
  width: 100%;
  object-fit: contain;
  fill: #fff;
}



/*================ l-lead ================*/

.l-lead {
  position: relative;
  padding-block: 132px;

  @media (max-width: 767px) {
    padding-block: 88px 107px;
  }
}

.l-lead__inner {}

.l-lead__text {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.875;

  @media (max-width: 767px) {
    font-size: 15px;
    line-height: 1.866;
  }
}

/*================ l-content ================*/

.l-content {
  padding-inline: calc(110 / 1440 * 100vw);

  @media (max-width: 767px) {
    padding-inline: 0;
  }
}

.l-content__inner {}

.l-content__item {
  display: grid;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.l-content__item:not(:last-child) {
  margin-bottom: 100px;

  @media (max-width: 767px) {
    margin-bottom: 0;
  }
}


.l-content__item__image {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: calc(20 / 1440 * 100vw);
}


.l-content__item__image__image {}

.l-content__item__image__picture {
  align-self: flex-end;
}

.l-items__slider__item__image__picture {
  display: block;
}

.l-content__item__image__picture:has(> .l-content__item__image__text__code),
.l-items__slider__item__image__picture:has(> .l-content__item__image__text__code) {
  position: relative;
  display: block;
}

.l-content__item__image__text__code {
  position: absolute;
  bottom: 3%;
  left: 50%;
  margin: 0;
  padding: 8px 15px;
  border: 1px solid #000;
  background: rgb(255 255 255 / 65%);
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 1.2s ease;
  white-space: nowrap;
  font-size: 14px;
  font-family: var(--font-helvetica);

  @media (max-width: 767px) {
    font-size: 13px;
    padding: 6px 12px;
  }
}

.l-content__item__image__text__code.is-visible {
  opacity: 1;
}

.l-items__slider__item__image__picture>.l-content__item__image__text__code {
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
}

@media (prefers-reduced-motion: reduce) {
  .l-content__item__image__text__code {
    transition-duration: 0.01ms;
  }
}

.l-content__item__image__text__button,
.l-items__slider__item__text__name__button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.l-content__item__image__text__table {
  font-family: var(--font-helvetica);
  font-size: 14px;
  line-height: 1.6428;
  text-align: left;

  td {
    padding-left: calc(70 / 1440 * 100vw);
  }
}

/* ------ option ------ */

.l-content__item--01 {
  gap: 0 calc(122 / 1220 * 100%);
  grid-template-columns: calc(600 / 1220 * 100%) calc(498 / 1220 * 100%);
  padding-bottom: calc(105 / 1440 * 100vw);
}

.l-content__item--01 .l-content__item__image--right {
  position: relative;
  top: calc(105 / 1440 * 100vw);

  @media (max-width: 767px) {
    top: 0;
  }
}

/* 02 */

.l-content__item--02 {
  gap: 0 calc(66 / 1220 * 100%);
  grid-template-columns: calc(487 / 1220 * 100%) calc(600 / 1220 * 100%);
}

.l-content__item--02 .l-content__item__image {
  display: block;
}

.l-content__item--02 .l-content__item__image__picture {
  align-self: flex-start;
  margin-bottom: calc(20 / 1440 * 100vw);
}

/* 03 */

.l-content__item--03 {
  gap: 0 calc(30 / 1220 * 100%);
  grid-template-columns: calc(540 / 1220 * 100%) calc(487 / 1220 * 100%);
  justify-content: flex-end;
}

/* 04 */

.l-content__item--04 {
  gap: 0 calc(149 / 1220 * 100%);
  grid-template-columns: calc(540 / 1220 * 100%) calc(449 / 1220 * 100%);
  padding-bottom: calc(197 / 1440 * 100vw);
}

.l-content__item--04 .l-content__item__image {
  grid-template-rows: auto auto;
  grid-row: auto;
}

.l-content__item--04 .l-content__item__image__picture {
  align-self: flex-start;
}

.l-content__item--04 .l-content__item__image--left {
  position: relative;
  top: calc(197 / 1440 * 100vw);

  @media (max-width: 767px) {
    top: 0;
  }
}

/* 05 */

.l-content__item--05 {
  gap: 0 calc(10 / 1220 * 100%);
  grid-template-columns: calc(540 / 1440 * 100vw) calc(540 / 1440 * 100vw);
  padding-left: calc(60 / 1440 * 100vw);
}

/* 06 */

.l-content__item--06 {
  gap: 0 calc(77 / 1220 * 100%);
  grid-template-columns: calc(600 / 1220 * 100%) calc(498 / 1220 * 100%);
  /* align-items: center; */
}

.l-content__item--06 .l-content__item__image--right {
  position: relative;
  top: calc(68/1440*100vw);

  @media (max-width: 767px) {
    top: 0;
  }
}


.l-content__item--06 .l-content__item__image {
  grid-template-rows: auto auto;
  grid-row: auto;
}

/* 07 */

.l-content__item--07 {
  gap: 0 calc(140 / 1220 * 100%);
  grid-template-columns: calc(498 / 1220 * 100%) calc(540 / 1220 * 100%);
  padding-bottom: 68px;
}

.l-content__item--07 .l-content__item__image--w498 {
  position: relative;
  top: 68px;

  @media (max-width: 767px) {
    top: 0;
  }
}

@media (max-width: 767px) {

  .l-content__item--01,
  .l-content__item--02,
  .l-content__item--03,
  .l-content__item--04,
  .l-content__item--05,
  .l-content__item--06,
  .l-content__item--07 {
    gap: 0;
    grid-template-columns: 1fr;
    padding-inline: 0;
    top: 0;
    padding-bottom: 0;
  }

  .l-content__item__image {
    display: block;
    grid-row: auto;
    margin-bottom: 70px;
  }

  .l-content__item__image__picture {
    margin-inline: auto;
  }

  .l-content__item__image__text {
    margin-top: 13px;
    padding-inline: 15px;
  }

  .l-content__item__image__text__table {
    font-size: 13px;
    line-height: 1.592308;
    width: 100%;

    td {
      padding-left: 0;
      text-align: center;
    }
  }

  /* 01 */

  .l-content__item--01 .l-content__item__image--right .l-content__item__image__picture {
    width: calc(293 / 393 * 100vw);
  }

  .l-content__item--02 .l-content__item__image--left .l-content__item__image__picture {
    width: calc(293 / 393 * 100vw);
  }

  .l-content__item--03 .l-content__item__image--left .l-content__item__image__picture {
    width: calc(337 / 393 * 100vw);
  }

  .l-content__item--03 .l-content__item__image--right .l-content__item__image__picture {
    width: calc(293 / 393 * 100vw);
  }

  .l-content__item--04 .l-content__item__image--left .l-content__item__image__picture {
    width: calc(337 / 393 * 100vw);
  }

  .l-content__item--04 .l-content__item__image--right .l-content__item__image__picture {
    width: calc(247 / 393 * 100vw);
  }

  .l-content__item--05 .l-content__item__image--left .l-content__item__image__picture {
    width: calc(337 / 393 * 100vw);
  }

  .l-content__item--05 .l-content__item__image--right .l-content__item__image__picture {
    width: calc(337 / 393 * 100vw);
  }

  .l-content__item--06 .l-content__item__image--right .l-content__item__image__picture {
    width: calc(293 / 393 * 100vw);
  }
}

/*================ l-items ================*/

.l-items {
  margin-top: 136px;
  padding-inline: calc(110 / 1440 * 100vw);

  @media (max-width: 767px) {
    margin-top: 0;
    padding-inline: 15px;
  }
}

.l-items__inner {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding-top: 70px;
  padding-bottom: 53px;
  padding-inline: calc(75 / 1220 * 100vw);

  @media (max-width: 767px) {
    padding-inline: 15px;
    padding-bottom: 60px;
  }
}

.l-items__title {
  text-align: center;
}

.l-items__title__image {
  display: inline-block;
  width: calc(146.54 / 1440 * 100vw);

  @media (max-width: 767px) {
    width: calc(119.5 / 393 * 100vw);
  }
}

.l-items__slider-wrap {
  position: relative;
  margin-top: 67px;
}

.l-items__slider.swiper {
  margin-top: 0;
}

.l-items__slider__item {
  height: auto;
}

.l-items__slider__button {
  position: absolute;
  z-index: 2;
  top: 20%;
  width: 50px;
  height: 50px;
  border: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;

  @media (max-width: 767px) {
    width: 36px;
    height: 36px;
  }

  @media (any-hover: hover) {
    &:hover {
      opacity: 0.5;
    }
  }
}

.l-items__slider__button::before {
  display: block;
  width: 100%;
  height: 100%;
  background: url('../images/common/arw_ico.svg') center / contain no-repeat;
  content: '';
}

.l-items__slider__button--prev {
  left: -35px;

  @media (max-width: 767px) {
    left: -15px;
  }
}

.l-items__slider__button--next {
  right: -35px;

  @media (max-width: 767px) {
    right: -15px;
  }
}

.l-items__slider__button--prev::before {
  transform: scaleX(-1);
}

.l-items__slider__button:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

.l-items__slider__item__image {}

.l-items__slider__item__image__image {}

.l-items__slider__item__text {}

.l-items__slider__item__text__title {
  font-size: 23px;
  font-family: var(--font-times);
  line-height: 0.869;
  margin-bottom: 10px;
}

.l-items__slider__item__text__name {
  display: grid;
  grid-template-columns: 1fr auto;
  font-family: var(--font-helvetica);
  margin-top: 4px;
}

.l-items__slider__item__text__name__title {
  font-size: 18px;
  line-height: 1.0555;

  @media (max-width: 767px) {
    font-size: 17px;
  }
}

.l-items__slider__item__text__name__title__price {
  font-size: 14px;

  @media (max-width: 767px) {
    font-size: 13px;
  }
}

.l-items__slider__item__text__name__button {
  font-size: 14px;
  height: max-content;

  @media (max-width: 767px) {
    font-size: 13px;
  }
}

.l-items__slider__item__text__description {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.5384;
}

.l-items__slider__item__text__title__sub {
  letter-spacing: -0.01em;
  line-height: 1.64285;
  font-size: 14px;
}

.l-items__button {
  margin-top: 50px;
  text-align: center;

  @media (max-width: 767px) {
    margin-top: 60px;
  }
}

.l-items__button__link {
  display: inline-block;
  width: calc(250 / 1440 * 100vw);

  @media (max-width: 767px) {
    width: calc(180 / 393 * 100vw);
  }
}

.l-items__button__link g rect:first-child {
  fill: #fff;
  transition: fill 0.5s ease;
}

.l-items__button__link path {
  fill: #000;
  transition: fill 0.5s ease;
}

@media (any-hover: hover) {
  .l-items__button__link:hover g rect:first-child {
    fill: #000;
  }

  .l-items__button__link:hover path {
    fill: #fff;
  }
}

.l-items__button__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/*================ l-footer ================*/
.l-footer {
  padding-block: 50px 100px;

  @media (max-width: 767px) {
    padding-block: 60px 63px;
  }
}

.l-footer__text {
  font-size: 16px;
  line-height: 1.5625;
  font-family: var(--font-times);
  text-align: center;
}

.l-footer__text__copyright {
  font-size: 14px;
  line-height: 1.5714;
  font-family: var(--font-times);
  text-align: center;
  margin-top: 50px;

  @media (max-width: 767px) {
    margin-top: 40px;
    font-size: 13px;
  }
}

/*================ l-btn-to-top ================*/
.l-btn-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2;

  @media (max-width: 767px) {
    bottom: 15px;
    right: 15px;
  }
}

.l-btn-to-top__image {
  width: 40px;
  height: 40px;

  @media (max-width: 767px) {
    width: 22px;
    height: 22px;
  }
}
