@charset "UTF-8";
/**
* @file _config.scss
**/
/**
* @file _reset.scss
**/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: bottom;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

*:focus {
  outline: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before,
q::after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  border: 0;
  outline: none;
  cursor: pointer;
}

input[type='submit'],
input[type='button'] {
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
}

input[type='submit']::-webkit-search-decoration,
input[type='button']::-webkit-search-decoration {
  display: none;
}

input[type='submit']:focus,
input[type='button']:focus {
  outline-offset: -2px;
}

input,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

/**
* @file _m-media.scss
**/
/**
* @file _header.scss
**/
.header {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10;
  position: fixed;
  top: auto;
  left: auto;
  width: 100%;
  max-width: none;
  height: auto;
  padding: 0;
  border-bottom: none;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.header h3,
.header a {
  font-family: "Noto Sans JP", sans-serif;
}

.header .content-width {
  max-width: 1070px;
}

.header.is-open {
  z-index: 5;
  position: fixed;
  width: 100%;
  background-color: #000;
}

.header__container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: height 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 80px;
  transition: height 0.5s;
}

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

.header__container.is-scroll {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-transition: height 0.5s;
  justify-content: space-between;
  height: 50px;
  transition: height 0.5s;
}

.header__logo {
  width: 100%;
  max-width: 140px;
  height: 30px;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .header__logo {
    max-width: 120px;
    height: auto;
  }
  .header__logo img {
    -o-object-position: bottom;
    object-position: bottom;
  }
}

.header__logo a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo.is-scroll {
  max-width: 100px;
  height: auto;
}

.header__nav {
  height: 100%;
}

.header .nav__lists {
  -webkit-box-align: end;
  -ms-flex-align: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  height: 100%;
  margin-left: 105px;
  gap: 30px;
}

@media screen and (max-width: 1200px) {
  .header .nav__lists {
    margin-left: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .header .nav__lists {
    margin-left: 5px;
    gap: 10px;
  }
}

.header .nav .lists__item {
  height: 100%;
}

@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    .header .nav .lists__item:not(:first-child) {
      margin-left: 40px;
    }
  }
}

@media screen and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 0), screen and (max-width: 1024px) and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    .header .nav .lists:not(:first-child) {
      margin-left: 10px;
    }
  }
}

.header .nav .item__container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  cursor: pointer;
}

.header .nav .item__wrapper {
  visibility: hidden;
  z-index: 10;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100vw;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #fff;
}

.header .nav .item__ttl {
  position: relative;
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: calc(12 /(1.2 * 10));
  letter-spacing: 0.1em;
}

@media screen and (max-width: 850px) {
  .header .nav .item__ttl {
    font-size: 1rem;
    line-height: calc(10 /(1 * 10));
    letter-spacing: 0.1em;
  }
}

@media screen and (max-width: 768px) {
  .header .nav .item__ttl {
    font-size: 1.2rem;
    line-height: calc(12 /(1.2 * 10));
    letter-spacing: 0.1em;
  }
}

.header .nav .item__ttl::after {
  -webkit-transition: all 0.5s;
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #000;
  content: "";
  transition: all 0.5s;
}

.header .nav.is-scroll .item__ttl {
  margin-top: 5px;
}

.header .nav.is-scroll .item__wrapper {
  top: 50px;
}

.header .link__box {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.header .link__box:not(:first-of-type) {
  margin-top: 60px;
}

.header .link__head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .link .next-link {
  font-size: 1.4rem;
  line-height: calc(14 /(1.4 * 10));
  letter-spacing: 0.1em;
  text-decoration: underline;
}

.header .link__sub-ttl {
  padding-left: 5px;
  border-left: 2px solid #000;
  font-size: 1.6rem;
  line-height: calc(16 /(1.6 * 10));
  letter-spacing: 0.1em;
}

.header .link__sub-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.header .link__sub-lists:first-of-type {
  margin-top: 30px;
}

.header .link .sub-lists__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .link .sub-lists__item:not(:first-child) {
  margin-left: 20px;
}

.header .link .item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 160px;
}

.header .link .item__img {
  width: 25px;
  height: 25px;
}

.header .link .item__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}

.header .link .item__category-ttl {
  margin-left: 10px;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: calc(12 /(1.2 * 10));
  letter-spacing: 0.1em;
}

.header .item__container:hover .item__wrapper {
  -webkit-transition: all 0.5s;
  visibility: visible;
  transition: all 0.5s;
}

.header .item__container:hover .item__ttl::after {
  -webkit-transition: all 0.5s;
  width: 100%;
  transition: all 0.5s;
}

.header__icon-wrapper {
  height: 100%;
  margin-top: 5px;
  margin-left: auto;
}

.header .icon-wrapper__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  gap: 20px;
}

@media screen and (max-width: 1024px) {
  .header .icon-wrapper__lists {
    gap: 10px;
  }
}

.header .icon-wrapper .lists__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  height: 100%;
  cursor: pointer;
}

@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    .header .icon-wrapper .lists__item:not(:first-child) {
      margin-left: 20px;
    }
  }
}

@media screen and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 0), screen and (max-width: 1024px) and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    .header .icon-wrapper .lists__item:not(:first-child) {
      margin-left: 10px;
    }
  }
}

.header .icon-wrapper .item__box {
  position: relative;
}

.header .icon-wrapper .item__img {
  width: 18px;
  height: 20px;
}

.header .icon-wrapper .item__img::after {
  -webkit-transition: all 0.5s;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #000;
  content: "";
  transition: all 0.5s;
}

.header .icon-wrapper .item__img img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}

.header .icon-wrapper .item__sub-lists {
  -webkit-transform: translateX(-50%) translateY(100%);
  visibility: hidden;
  z-index: 10;
  position: absolute;
  bottom: -15px;
  left: 50%;
  padding: 20px;
  transform: translateX(-50%) translateY(100%);
  border: 1px solid #000;
  background-color: #fff;
}

.header .icon-wrapper .sub-lists__sub-item:not(:first-child) {
  margin-top: 15px;
}

.header .icon-wrapper .sub-item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.header .icon-wrapper .sub-item__img {
  width: 20px;
  height: 20px;
}

.header .icon-wrapper .sub-item__img img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}

.header .icon-wrapper .sub-item__ttl {
  margin-left: 10px;
  font-size: 1.2rem;
  line-height: calc(12 /(1.2 * 10));
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.header .icon-wrapper .lists__item:hover .item__img::after {
  -webkit-transition: all 0.5s;
  width: 100%;
  transition: all 0.5s;
}

.header .icon-wrapper .lists__item:hover .item__sub-lists {
  visibility: visible;
}

.header .icon-wrapper .sub-item__link:hover .sub-item__ttl {
  text-decoration: underline;
}

.header .icon-wrapper .search {
  -webkit-transform: translateX(-85%) translateY(100%);
  transform: translateX(-85%) translateY(100%);
}

.header .icon-wrapper .search__form {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.header .icon-wrapper .search__link-input {
  display: none;
}

.header .icon-wrapper .search__link {
  display: block;
  width: 25px;
  height: 25px;
  margin-left: 10px;
  cursor: pointer;
}

.header .icon-wrapper .box142 {
  width: 250px;
  max-width: 250px;
  padding: 5px;
  border: 1px solid #000;
}

.header__container--sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .header__container--sp {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
  }
}

.header__container--sp .img-white {
  -webkit-transition: opacity 0.5s;
  opacity: 0;
  transition: opacity 0.5s;
}

.header__container--sp .img-white.is-open {
  -webkit-transition: opacity 0.5s;
  opacity: 1;
  transition: opacity 0.5s;
}

.header .nav-sp__ttl {
  display: block;
  font-size: 1rem;
  line-height: calc(10 /(1 * 10));
  letter-spacing: 0.1em;
}

.header .nav-sp__ttl.white {
  color: #fff;
}

.header .nav-sp__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.header .nav-sp .lists__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 35px;
}

.header .nav-sp .lists__item:not(:first-child) {
  margin-left: 10px;
}

.header .nav-sp .item__link {
  display: block;
}

.header .nav-sp .item__img {
  position: relative;
  height: 22px;
  margin: 0 auto;
  margin-bottom: 2px;
}

.header .nav-sp .item__img img {
  -o-object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header .nav-sp .cart {
  width: 21.2px;
}

.header .nav-toggle {
  z-index: 10;
  position: relative;
  width: 25px;
  height: 16px;
  margin: 0 auto;
  margin-top: 3px;
  margin-bottom: 5px;
  cursor: pointer;
}

.header .menu-line {
  -webkit-transition: 0.8s ease;
  z-index: 10;
  position: absolute;
  right: 0;
  width: 100%;
  height: 1.8px;
  background-color: #000;
  transition: 0.8s ease;
}

.header .menu-line1 {
  top: 0;
}

.header .menu-line2 {
  top: 8px;
}

.header .menu-line3 {
  top: 16px;
}

.header #js-nav-menu.is-open .nav-toggle {
  width: 30px;
  height: 20px;
}

.header #js-nav-menu.is-open .menu-line1 {
  -webkit-transform: rotate(135deg);
  position: absolute;
  top: 10px;
  transform: rotate(135deg);
  background-color: #fff;
}

.header #js-nav-menu.is-open .menu-line2 {
  opacity: 0;
}

.header #js-nav-menu.is-open .menu-line3 {
  -webkit-transform: rotate(-135deg);
  position: absolute;
  top: 10px;
  transform: rotate(-135deg);
  background-color: #fff;
}

.header #js-nav-menu.is-open .nav-sp__ttl {
  display: none;
}

.header__logo-sp {
  width: 100%;
  max-width: 140px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .header__logo-sp {
    max-width: 75px;
  }
  .header__logo-sp img {
    vertical-align: middle;
  }
}

.header .logo-sp__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 40px;
}

.header .logo-sp__link img {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.header__sp-menu {
  -webkit-transition: all 0.5s;
  z-index: 10;
  position: fixed;
  top: 60px;
  left: 100%;
  width: 100vw;
  height: calc(100% - 60px);
  padding: 25px;
  overflow: scroll;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.5s;
}

.header__sp-menu.is-open {
  -webkit-transition: all 0.5s;
  left: 0;
  transition: all 0.5s;
}

.header .sp-menu .lists__item {
  width: 100%;
  border-top: 1px solid #fff;
  cursor: pointer;
}

.header .sp-menu .lists__item:last-of-type {
  border-bottom: 1px solid #fff;
}

.header .sp-menu .item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px 0;
  color: #fff;
}

.header .sp-menu .item__img {
  width: 30px;
  height: 30px;
}

.header .sp-menu .item__ttl {
  font-size: 1.2rem;
  line-height: calc(12 /(1.2 * 10));
  letter-spacing: 0.1em;
}

.header .sp-menu .item__next {
  -webkit-transition: border-bottom 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  transform: translateY(-50%);
  transition: border-bottom 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, border-bottom 0.5s;
  transition: transform 0.5s, border-bottom 0.5s, -webkit-transform 0.5s;
}

.header .sp-menu .has-child.is-open {
  border-bottom: 1px solid #fff;
}

.header .sp-menu .has-child.is-open .item__next {
  -webkit-transition: -webkit-transform 0.5s;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.header .sp-menu .child__lists {
  display: none;
  width: 90%;
  margin-left: auto;
}

.header .sp-menu .child .lists__item:first-child {
  border-top: none;
}

.header .sp-menu .child .lists__item:last-child {
  border-bottom: none;
}

.header .sp-search {
  height: auto;
}

.header .sp-search .search__form {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.header .sp-search .search__link-input {
  display: none;
}

.header .sp-search .search__link {
  display: block;
  width: 40px;
  height: 40px;
  padding-left: 10px;
  cursor: pointer;
}

.header .sp-search .search__link img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header .sp-search .box142 {
  width: calc(100% - 40px);
  padding: 10px;
  border: 1px solid #fff;
  background-color: #000;
  color: #fff;
}

.header .sp-search .box142::-webkit-input-placeholder {
  color: #fff;
}

.header .sp-search .box142::-moz-placeholder {
  color: #fff;
}

.header .sp-search .box142:-ms-input-placeholder {
  color: #fff;
}

.header .sp-search .box142::-ms-input-placeholder {
  color: #fff;
}

.header .sp-search .box142::placeholder {
  color: #fff;
}

.header .sp-search__ttl {
  margin-top: 30px;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: calc(12 /(1.2 * 10));
  letter-spacing: 0.1em;
}

.header .sp-search__lists {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  gap: 7px;
}

.header .sp-search .lists__item {
  width: 31.6%;
  height: 30px;
}

@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    .header .sp-search .lists__item:not(:first-child) {
      margin-left: 7px;
    }
  }
}

.header .sp-search .item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-size: 1.1rem;
  line-height: calc(11 /(1.1 * 10));
  letter-spacing: 0.1em;
}

.header .sp-search .next-link {
  display: block;
  margin-top: 15px;
  color: #fff;
  font-size: 1.2rem;
  line-height: calc(12 /(1.2 * 10));
  letter-spacing: 0.1em;
  text-align: right;
}

/**
* @file _footer.scss
**/
.footer {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #434748;
}

.footer p,
.footer a,
.footer span {
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  .footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.footer__head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .footer__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer__logo-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__logo {
  width: 60px;
  height: 90px;
}

.footer__logo img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__logo-txt {
  margin-left: 40px;
  color: #fff;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: calc(30 /(1.8 * 10));
  letter-spacing: 0.1em;
}

.footer__sns-box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 30px;
  border: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .footer__sns-box {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

.footer .sns-box__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 30px;
  gap: 15px;
}

.footer .sns-box__ttl {
  color: #fff;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: calc(14 /(1.4 * 10));
  letter-spacing: 0.1em;
}

.footer .sns-box .lists__item {
  width: 35px;
  height: 35px;
}

.footer .sns-box .item__link img {
  width: 100%;
}

.footer__nav {
  margin-top: 50px;
  margin-bottom: 15px;
}

.footer .nav__lists {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
}

@media screen and (max-width: 768px) {
  .footer .nav__lists {
    gap: 0 30px;
  }
}

.footer .nav .lists__item {
  position: relative;
}

.footer .nav .lists__item::before {
  position: absolute;
  top: 0;
  right: -20px;
  width: 1px;
  height: 100%;
  background-color: #fff;
  content: "";
}

@media screen and (max-width: 768px) {
  .footer .nav .lists__item {
    width: 45%;
    padding: 15px 0;
    border-top: 1px solid #fff;
  }
  .footer .nav .lists__item:nth-child(6), .footer .nav .lists__item:nth-child(7) {
    border-bottom: 1px solid #fff;
  }
  .footer .nav .lists__item::before {
    display: none;
  }
}

.footer .nav .item__link {
  display: block;
  height: 100%;
  color: #fff;
  font-size: 1.2rem;
  line-height: calc(12 /(1.2 * 10));
  letter-spacing: 0.1em;
}

.footer .nav .lists__item:first-child .item__link {
  padding-left: 0;
}

.footer .nav .lists__item:last-child::before {
  display: none;
}

.footer__txt {
  color: #fff;
  font-size: 1.2rem;
  line-height: calc(12 /(1.2 * 10));
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .footer__txt {
    line-height: calc(32 / 18);
    text-align: center;
  }
}

.footer__txt-box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .footer__txt-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer__copyright {
  color: #fff;
  font-size: 1.2rem;
  line-height: calc(12 /(1.2 * 10));
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .footer__copyright {
    margin-top: 20px;
    font-size: 1rem;
    line-height: calc(10 /(1 * 10));
    letter-spacing: 0.1em;
  }
}

/**
* @file _l-common.scss
**/
html {
  font-size: 62.5%;
}

body {
  background-color: transparent;
  color: #333;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.2rem;
  }
}

main,
header,
footer {
  margin: auto;
}

body.is-stop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
}

p,
input,
textarea {
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
}

.lazyload-img {
  -webkit-transition: 0.3s opacity;
  opacity: 0;
  transition: 0.3s opacity;
}

.lazyload-img.lazyloaded {
  opacity: 1;
}

.is-pc {
  display: block;
}

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

.is-tab {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-tab {
    display: block;
  }
}

.content-width {
  max-width: 1070px;
  margin: auto;
}

.content-padding {
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  .content-padding {
    padding: 0 15px;
  }
}

@media (min-width: 768px) {
  a[href^='tel:'] {
    pointer-events: none;
  }
}

.js-banner {
  opacity: 0;
  pointer-events: none;
}

.js-banner.is-active {
  opacity: 1;
  pointer-events: all;
}

.floating {
  z-index: 4;
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 400px;
  height: 150px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .floating {
    bottom: 15px;
    left: 15px;
    width: 120px;
    height: 120px;
  }
}

.floating__banner {
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.floating__banner:hover {
  -webkit-transition: opacity 0.6s;
  opacity: 0.6;
  transition: opacity 0.6s;
}

.floating__banner img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}

.floating__close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .floating__close {
    width: 30px;
    height: 30px;
  }
}

.floating__close img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}

.modal-banner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
}

.modal-banner__wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

@media screen and (max-width: 768px) {
  .modal-banner__wrapper {
    max-width: 300px;
  }
}

.modal-banner__banner {
  aspect-ratio: 1 / 1;
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .modal-banner__banner {
    width: 100%;
    max-width: 300px;
  }
}

.modal-banner__banner img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-banner__close {
  -webkit-transform: translate(-50% -50%);
  position: absolute;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  transform: translate(-50% -50%);
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .modal-banner__close {
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
  }
}

.modal-banner__close img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.l-contents {
  padding-top: 80px;
  background: #fff;
}

@-webkit-keyframes fadein {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

div#one_maincolumn {
  margin-top: 0;
}

.concept {
  padding-top: 0;
  /* スライダー全体 */
}

.concept .vertical-slider {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

@media screen and (max-width: 1024px) {
  .concept .vertical-slider {
    display: none;
  }
}

.concept .vertical-slider .swiper-wrapper {
  position: relative;
  /* スライド */
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 30px;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide .position-box {
  -webkit-transform: translateY(-50%);
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide .box {
  -webkit-transition: all 0.5s;
  position: relative;
  max-width: 1280px;
  height: 640px;
  margin: auto;
  color: #fff;
  transition: all 0.5s;
}

@media screen and (max-width: 1280px) {
  .concept .vertical-slider .swiper-wrapper .vertical-slider__slide .box {
    height: 700px;
  }
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide .box__content {
  position: absolute;
  top: 50px;
  right: 0;
  width: 43%;
  opacity: 0;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide .box__content .content-ttl {
  color: #fff;
  font-style: normal;
  font-weight: lighter;
  font-weight: 100;
  font-size: 2.7rem;
  font-family: caecilia-sans-head, sans-serif;
  letter-spacing: 0.1em;
  text-align: left;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide .box__content .content-subttl {
  margin-top: 10px;
  color: #fff;
  font-weight: normal;
  font-size: 2.2rem;
  line-height: 1.9;
  letter-spacing: 0.1em;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide .box__content .content-txt {
  margin-top: 30px;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(1) {
  background-image: url("../images/concept/background-1.png");
  background-repeat: no-repeat;
  background-color: #3f4142;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(1) .box {
  background-image: url("../images/concept/concept-1.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(2) {
  background-image: url("../images/concept/background-2.png");
  background-repeat: no-repeat;
  background-color: #3f4142;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(2) .box {
  background-image: url("../images/concept/concept-2.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(3) {
  background-image: url("../images/concept/background-3.png");
  background-repeat: no-repeat;
  background-color: #3f4142;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(3) .box {
  background-image: url("../images/concept/concept-3.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(4) {
  background-image: url("../images/concept/background-1.png");
  background-repeat: no-repeat;
  background-color: #3f4142;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(4) .box {
  background-image: url("../images/concept/concept-4.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(4) .box__content {
  top: 34%;
  left: 40%;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(5), .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(6) {
  background-image: url("../images/concept/background-1.png");
  background-repeat: no-repeat;
  background-color: #3f4142;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(5) .box, .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(6) .box {
  background-image: url("../images/concept/concept-4.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(5) .box__content, .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(6) .box__content {
  top: 25%;
  left: 0;
  width: 80%;
  margin: auto;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(5) .box__content .content-list, .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(6) .box__content .content-list {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 80px;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(5) .box__content .content-list__item, .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(6) .box__content .content-list__item {
  width: 100%;
  max-width: 280px;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(5) .box__content .content-list__item .content-ttl, .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(6) .box__content .content-list__item .content-ttl {
  color: #fff;
  font-style: normal;
  font-weight: 100;
  font-size: 1.8rem;
  font-family: caecilia-sans-head, sans-serif;
  text-align: left;
}

@media screen and (max-width: 1280px) {
  .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(5) .box__content .content-list__item .content-ttl, .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(6) .box__content .content-list__item .content-ttl {
    font-size: 1.4rem;
  }
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(5) .box__content .content-list__item .content-subtxt, .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(6) .box__content .content-list__item .content-subtxt {
  margin-top: 10px;
  font-size: 1rem;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(5) .box__content .content-list__item .content__link-box, .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(6) .box__content .content-list__item .content__link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  gap: 5px;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(5) .box__content .content-list__item .content__link-box span, .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(6) .box__content .content-list__item .content__link-box span {
  font-size: 1.2rem;
  line-height: calc(21 / 12);
  letter-spacing: 0.1em;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(5) .box__content .content-list__item .content__sub-lists, .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(6) .box__content .content-list__item .content__sub-lists {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 10px 5px;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(5) .box__content .content-list__item .sub-lists__item, .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(6) .box__content .content-list__item .sub-lists__item {
  -webkit-transition: opacity 0.5s;
  border-radius: 3px;
  background: url("../images/concept/link-bg.png") center/cover no-repeat;
  transition: opacity 0.5s;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(5) .box__content .content-list__item .sub-lists__item:hover, .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(6) .box__content .content-list__item .sub-lists__item:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(5) .box__content .content-list__item .sub-item__link, .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(6) .box__content .content-list__item .sub-item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: calc(21 / 12);
  letter-spacing: 0.1em;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(6) .box__content {
  top: 18%;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(7) {
  background-image: url("../images/concept/background-2.png");
  background-repeat: no-repeat;
  background-color: #3f4142;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(7) .box {
  background-image: url("../images/concept/concept-5.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) {
  background-image: url("../images/concept/background-3.png");
  background-repeat: no-repeat;
  background-color: #3f4142;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box {
  background-color: #3f4142;
}

@media screen and (max-width: 1280px) {
  .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box {
    height: 600px;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box {
    height: 470px;
  }
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box__content {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box__content .left-content {
  width: 40%;
  margin-bottom: 100px;
  margin-left: 130px;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box__content .left-content .left-ttl {
  color: #fff;
  font-style: normal;
  font-weight: 100;
  font-size: 2.7rem;
  font-family: caecilia-sans-head, sans-serif;
  letter-spacing: 0.1em;
  text-align: left;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box__content .left-content .left-txt {
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.1em;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box__content .right-content {
  width: 50%;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box__content .right-content__list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box__content .right-content__list .list-item {
  position: relative;
  width: 50%;
  padding: 52px 50px;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1280px) {
  .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box__content .right-content__list .list-item {
    padding: 52px 30px;
    padding-top: 90px;
    font-size: 1rem;
  }
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box__content .right-content__list .list-item .item-back {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box__content .right-content__list .list-item:nth-of-type(1) {
  z-index: 1;
  padding-top: 52px;
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box__content .right-content__list .list-item:nth-of-type(1) {
    padding-top: 25px;
  }
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box__content .right-content__list .list-item:nth-of-type(2) {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  padding-top: 100px;
  font-size: 1.8rem;
}

@media screen and (max-width: 1280px) {
  .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box__content .right-content__list .list-item:nth-of-type(2) {
    top: 12px;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box__content .right-content__list .list-item:nth-of-type(2) {
    padding-top: 60px;
  }
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box__content .right-content__list .list-item:nth-of-type(3) {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  padding-top: 100px;
  font-size: 1.8rem;
}

@media screen and (max-width: 1280px) {
  .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box__content .right-content__list .list-item:nth-of-type(3) {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box__content .right-content__list .list-item:nth-of-type(3) {
    bottom: 24px;
    padding-top: 60px;
  }
}

.concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box__content .right-content__list .list-item:nth-of-type(4) {
  bottom: 40px;
  padding-top: 80px;
}

@media screen and (max-width: 1280px) {
  .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box__content .right-content__list .list-item:nth-of-type(4) {
    bottom: 26px;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .concept .vertical-slider .swiper-wrapper .vertical-slider__slide:nth-of-type(8) .box__content .right-content__list .list-item:nth-of-type(4) {
    bottom: 54px;
    padding-top: 40px;
  }
}

.concept .vertical-slider .pagination__box {
  -webkit-transform: translate(-50%, -50%);
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1280px;
  height: 640px;
  margin: 0 auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.concept .vertical-slider .swiper-pagination {
  display: block;
  right: 40px;
  pointer-events: all;
}

@media screen and (max-width: 1024px) {
  .concept .vertical-slider .swiper-pagination {
    display: none;
  }
}

.concept .vertical-slider__pagination .swiper-pagination-bullet {
  background-color: #999;
}

.concept .vertical-slider__pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

.concept .vertical-slider .swiper-slide-active .box__content {
  -webkit-transition: all 0.5s;
  -webkit-animation: fadein 1s 1s forwards;
  animation: fadein 1s 1s forwards;
  transition: all 0.5s;
}

.concept .sp-content {
  display: none;
  background-color: #3f4142;
}

@media screen and (max-width: 1024px) {
  .concept .sp-content {
    display: block;
  }
}

.concept .sp-content__box {
  padding: 40px 60px;
  color: #fff;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box {
    padding: 20px;
  }
}

.concept .sp-content__box .content-box {
  padding: 0 30px;
  padding-top: 46px;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box .content-box {
    padding-top: 23px;
  }
}

.concept .sp-content__box .content-box__ttl {
  color: #fff;
  font-style: normal;
  font-weight: lighter;
  font-weight: 100;
  font-size: 2.7rem;
  font-family: caecilia-sans-head, sans-serif;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box .content-box__ttl {
    font-size: 1.7rem;
  }
}

.concept .sp-content__box .content-box__subttl {
  margin-top: 40px;
  color: #fff;
  font-weight: normal;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box .content-box__subttl {
    margin-top: 20px;
    font-size: 1.4rem;
  }
}

.concept .sp-content__box .content-box__txt {
  margin-top: 50px;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box .content-box__txt {
    margin-top: 25px;
    font-size: 1rem;
  }
}

.concept .sp-content__box:nth-of-type(1) {
  background-image: url("../images/concept/background-1.png");
  background-repeat: no-repeat;
}

.concept .sp-content__box:nth-of-type(1) .content-box {
  max-width: 560px;
  height: 1200px;
  margin: auto;
  background-image: url("../images/concept/concept-1-sp.png");
  background-position: center bottom;
  background-size: auto;
  background-repeat: no-repeat;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box:nth-of-type(1) .content-box {
    height: 800px;
    background-size: cover;
  }
}

.concept .sp-content__box:nth-of-type(2) {
  background-image: url("../images/concept/background-2.png");
  background-repeat: no-repeat;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box:nth-of-type(2) {
    z-index: 1;
    position: relative;
  }
}

.concept .sp-content__box:nth-of-type(2) .content-box {
  max-width: 560px;
  height: 1200px;
  margin: auto;
  background-image: url("../images/concept/concept-2-sp.png");
  background-position: center bottom;
  background-size: auto;
  background-repeat: no-repeat;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box:nth-of-type(2) .content-box {
    height: 800px;
    background-image: none;
  }
}

.concept .sp-content__box:nth-of-type(2) .sp-back {
  display: none;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box:nth-of-type(2) .sp-back {
    display: block;
    z-index: -1;
    position: absolute;
    top: 0;
    width: 335px;
    margin: auto;
    padding-top: 20px;
  }
  .concept .sp-content__box:nth-of-type(2) .sp-back img {
    -o-object-fit: cover;
    width: 100%;
    object-fit: cover;
  }
}

.concept .sp-content__box:nth-of-type(3) {
  background-image: url("../images/concept/background-3.png");
  background-repeat: no-repeat;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box:nth-of-type(3) {
    z-index: 1;
    position: relative;
  }
}

.concept .sp-content__box:nth-of-type(3) .content-box {
  max-width: 560px;
  height: 1200px;
  margin: auto;
  background-image: url("../images/concept/concept-3-sp.png");
  background-position: center bottom;
  background-size: auto;
  background-repeat: no-repeat;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box:nth-of-type(3) .content-box {
    height: 800px;
    background-image: none;
  }
}

.concept .sp-content__box:nth-of-type(3) .sp-back {
  display: none;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box:nth-of-type(3) .sp-back {
    display: block;
    z-index: -1;
    position: absolute;
    top: 0;
    width: 335px;
    margin: auto;
    padding-top: 20px;
  }
  .concept .sp-content__box:nth-of-type(3) .sp-back img {
    -o-object-fit: cover;
    width: 100%;
    object-fit: cover;
  }
}

.concept .sp-content__box:nth-of-type(4) {
  background-image: url("../images/concept/background-1.png");
  background-repeat: no-repeat;
}

.concept .sp-content__box:nth-of-type(4) .content-box {
  z-index: 1;
  position: relative;
  max-width: 560px;
  margin: auto;
  padding-bottom: 30px;
  overflow: hidden;
  background: #3c3f40;
}

.concept .sp-content__box:nth-of-type(4) .content-box::before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 660px;
  background: url("../images/concept/sp-bg-1.jpg") top/contain no-repeat;
  content: "";
}

.concept .sp-content__box:nth-of-type(4) .content-box::after {
  z-index: -1;
  position: absolute;
  bottom: -220px;
  left: 0;
  width: 100%;
  height: 900px;
  background: url("../images/concept/sp-bg-2.png") top/contain no-repeat;
  content: "";
}

@media screen and (max-width: 500px) {
  .concept .sp-content__box:nth-of-type(4) .content-box::after {
    bottom: -360px;
  }
}

.concept .sp-content__box:nth-of-type(4) .content-box__list {
  margin-top: 40px;
}

.concept .sp-content__box:nth-of-type(4) .content-box__list .list-item {
  margin-top: 50px;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box:nth-of-type(4) .content-box__list .list-item {
    margin-top: 25px;
  }
}

.concept .sp-content__box:nth-of-type(4) .content-box__list .list-item:nth-of-type(1) {
  margin-top: 0;
}

.concept .sp-content__box:nth-of-type(4) .content-box__list .list-item__ttl {
  color: #fff;
  font-style: normal;
  font-weight: 100;
  font-size: 2.2rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
  text-align: left;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box:nth-of-type(4) .content-box__list .list-item__ttl {
    font-size: 1.4rem;
  }
}

.concept .sp-content__box:nth-of-type(4) .content-box__list .list-item__txt {
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box:nth-of-type(4) .content-box__list .list-item__txt {
    font-size: 1rem;
  }
}

.concept .sp-content__box:nth-of-type(4) .content-box__list .list-item__txt span {
  font-size: 1rem;
}

.concept .sp-content__box:nth-of-type(4) .content__link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  gap: 5px;
}

.concept .sp-content__box:nth-of-type(4) .content__link-box span {
  font-size: 1rem;
  line-height: calc(18 / 10);
  letter-spacing: 0.1em;
}

.concept .sp-content__box:nth-of-type(4) .content__sub-lists {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 10px 5px;
}

.concept .sp-content__box:nth-of-type(4) .sub-lists__item {
  -webkit-transition: opacity 0.5s;
  border-radius: 3px;
  background: url(../images/concept/link-bg.png) center/cover no-repeat;
  transition: opacity 0.5s;
}

.concept .sp-content__box:nth-of-type(4) .sub-lists__item:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}

.concept .sp-content__box:nth-of-type(4) .sub-item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-weight: bold;
  font-size: 1rem;
  line-height: calc(18 / 10);
  letter-spacing: 0.1em;
}

.concept .sp-content__box:nth-of-type(5) {
  background-image: url("../images/concept/background-2.png");
  background-repeat: no-repeat;
}

.concept .sp-content__box:nth-of-type(5) .content-box {
  max-width: 560px;
  height: 1200px;
  margin: auto;
  background-image: url("../images/concept/concept-5-sp.png");
  background-position: center bottom;
  background-size: auto;
  background-repeat: no-repeat;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box:nth-of-type(5) .content-box {
    height: 800px;
    background-size: cover;
  }
}

.concept .sp-content__box:nth-of-type(6) {
  background-image: url("../images/concept/background-3.png");
  background-repeat: no-repeat;
}

.concept .sp-content__box:nth-of-type(6) .content-box {
  max-width: 560px;
  height: 1590px;
  margin: auto;
  padding: 0;
  padding-top: 92px;
  background-color: #3f4142;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box:nth-of-type(6) .content-box {
    height: 1080px;
    padding-top: 46px;
  }
}

.concept .sp-content__box:nth-of-type(6) .content-box__ttl {
  padding: 0 30px;
  color: #fff;
  font-style: normal;
  font-weight: 100;
  font-family: caecilia-sans-head, sans-serif;
}

.concept .sp-content__box:nth-of-type(6) .content-box__txt {
  padding: 0 30px;
}

.concept .sp-content__box:nth-of-type(6) .content-box__list {
  margin-top: 150px;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box:nth-of-type(6) .content-box__list {
    margin-top: 75px;
  }
}

.concept .sp-content__box:nth-of-type(6) .content-box__list .list-item__ttl {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  color: #fff;
  font-style: normal;
  font-weight: 100;
  font-size: 2.2rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box:nth-of-type(6) .content-box__list .list-item__ttl {
    font-size: 1.7rem;
  }
}

.concept .sp-content__box:nth-of-type(6) .content-box__list .list-item__txt {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box:nth-of-type(6) .content-box__list .list-item__txt {
    font-size: 1rem;
  }
}

.concept .sp-content__box:nth-of-type(6) .content-box__list .list-item:nth-of-type(2n) {
  margin-top: -48px;
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../images/concept/baloon-sp.png");
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 599px) {
  .concept .sp-content__box:nth-of-type(6) .content-box__list .list-item:nth-of-type(2n) {
    padding-top: 66px;
    padding-bottom: 45px;
    background-size: contain;
  }
}

.concept .sp-content__box:nth-of-type(6) .content-box__list .list-item:nth-of-type(2n + 1) {
  padding: 70px 0;
  background-image: url("../images/concept/concept-6-back.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.l-contents {
  padding-top: 0;
}

.l-contents__frame {
  padding-top: 0;
}
