<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/**------------------------
- mixin
*------------------------*/
/**------------------------
- variables
*------------------------*/
html {
  --form-line: #ededed;
  --form-bg: white;
  --form-theme: #e60012;
  --form-red: #e60012;
  --form-radius: 0;
  --formItem-border: rgba(255,255,255,0);
  --formItem-space-pc: 10px;
  --formTit-w: clamp(12rem,200px,25%);
  --formInput-h-pc: 60px;
  --formInput-w-sm-pc: clamp(10rem,200px,30%);
  --formInput-w-md-sp: clamp(14rem,500px,70%);
  --formTextarea-h-pc: 200px;
  --formTextarea-h-sp: 80vw;
}

/**------------------------
- reset
*------------------------*/
input, button, textarea, select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/**------------------------
- layout
*------------------------*/
.formItem {
  border-bottom: solid 1px var(--formItem-border);
}
@media screen and (min-width: 768px) {
  .formItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    padding: var(--formItem-space-pc) 0;
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .formItem {
    padding: 2.6666666667vw 0;
    font-size: 3.7333333333vw;
  }
}

.formTit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .formTit {
    width: var(--formTit-w);
    min-height: var(--formInput-h-pc);
  }
}
@media screen and (max-width: 767px) {
  .formTit {
    margin-bottom: 0.4em;
  }
}
.formItem.-required .formTit::after {
  content: "必須";
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
  padding: 0.3em 0.6em 0.3em;
  background: var(--form-red);
  line-height: 1.2;
  color: white;
}
@media screen and (min-width: 768px) {
  .formItem.-required .formTit::after {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .formItem.-required .formTit::after {
    font-size: 2.6666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .formContent {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: var(--formInput-h-pc);
  }
}
@media screen and (max-width: 767px) {
  .formContent {
    margin-top: 0.8em;
  }
}

/**-----------------------------
- inputText/textarea/Select
*-----------------------------*/
.form__inputText,
.form__textarea,
.form__select {
  width: 100%;
  padding: 0.4em 0.8em;
  background: var(--form-bg);
  border: solid 1px var(--form-line);
  border-radius: var(--form-radius);
  cursor: pointer;
}
.form__inputText:focus,
.form__textarea:focus,
.form__select:focus {
  border: 2px solid var(--form-theme);
}
@media screen and (min-width: 768px) {
  .form__inputText.sm,
  .form__textarea.sm,
  .form__select.sm {
    width: var(--formInput-w-sm-pc);
  }
}

@media screen and (min-width: 768px) {
  .form__inputText,
  .form__select {
    height: var(--formInput-h-pc);
  }
}
@media screen and (max-width: 767px) {
  .form__inputText,
  .form__select {
    height: 15.4666666667vw;
  }
}

.form__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("../images/common/icon/select.svg");
  background-repeat: no-repeat;
  background-position: right 1.2em center;
  background-size: 1.2em;
}

@media screen and (min-width: 768px) {
  .form__textarea {
    height: var(--formTextarea-h-pc);
  }
}
@media screen and (max-width: 767px) {
  .form__textarea {
    height: var(--formTextarea-h-sp);
  }
}

/**------------------------
- check/radio
*------------------------*/
.form__check,
.form__radio {
  display: block;
  cursor: pointer;
}
.form__check + label,
.form__radio + label {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__check + label::after, .form__check + label::before,
.form__radio + label::after,
.form__radio + label::before {
  content: "";
  display: block;
  cursor: pointer;
}
.form__check + label::before,
.form__radio + label::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.8em;
  background: var(--form-bg);
  border: solid 1px var(--form-line);
}
.form__check + label::after,
.form__radio + label::after {
  opacity: 0;
  position: absolute;
  z-index: inherit;
  top: 50%;
  left: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form__check:checked + label::after,
.form__radio:checked + label::after {
  opacity: 1;
}

.form__check + label::before {
  border-radius: var(--form-radius);
}
.form__check + label::after {
  left: 0;
  width: 0.9em;
  height: 0.4em;
  border-top: solid 2px var(--form-theme);
  border-right: solid 2px var(--form-theme);
  -webkit-transform: translate(0.3em, -0.3em) rotate(135deg);
          transform: translate(0.3em, -0.3em) rotate(135deg);
}

.form__radio + label::before {
  border-radius: 50%;
}
.form__radio + label::after {
  left: 0.4em;
  width: 0.7em;
  height: 0.7em;
  background: #3f3f3f;
  border-radius: 50%;
}

/**------------------------
- formBtn
*------------------------*/
.formBtn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16rem;
}
@media screen and (min-width: 768px) {
  .formBtn__wrap {
    margin: 45px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .formBtn__wrap {
    margin: 12vw 0 0;
  }
}

/**------------------------
- placeholder
*------------------------*/
::-webkit-input-placeholder {
  color: #b9b9b9 !important;
}
::-moz-placeholder {
  color: #b9b9b9 !important;
}
:-ms-input-placeholder {
  color: #b9b9b9 !important;
}
::-ms-input-placeholder {
  color: #b9b9b9 !important;
}
::placeholder {
  color: #b9b9b9 !important;
}

/**------------------------
- formPp
*------------------------*/
.formPp {
  background: white;
  border: solid 1px #ededed;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  .formPp {
    height: 220px;
    margin: 20px 0 0 0;
    padding: 20px;
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .formPp {
    height: 48vw;
    margin: 5.3333333333vw 0 0 0;
    padding: 4vw;
    font-size: 3.2vw;
  }
}

/**------------------------
- catArea
*------------------------*/
.catArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .catArea {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .catArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.2666666667vw;
  }
}

/**------------------------
- zipArea
*------------------------*/
.zipArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}

/**------------------------
- errMessageArea
*------------------------*/
.errMessageArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.errMessageArea .item {
  width: 100%;
}

.errMessage {
  font-size: 0.8em;
  color: var(--form-red);
  display: none;
}
.errMessage.is-show {
  display: block;
}

/**------------------------
- mixin
*------------------------*/
/**------------------------
- variables
*------------------------*/
/**------------------------
- reset
*------------------------*/
summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}

/**------------------------
- layout
*------------------------*/
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1100px;
  }
}

/**------------------------
- utility
*------------------------*/
.u-youtube {
  position: relative;
  overflow: hidden;
  padding-top: 56.15%;
}
.u-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/**------------------------
- Molecules
*------------------------*/
.sec__head {
  position: relative;
  z-index: 1;
}
.sec__head.-tate {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}

.sec__heading {
  font-family: "Noto Serif", serif;
  font-weight: 400;
  line-height: 1.4;
}

.sec__headEn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #e60214;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  line-height: 1;
}
.sec__headEn::before {
  content: "";
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  background: #e60214;
}

.sec__text {
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .sec__heading {
    font-size: 34px;
  }
  .sec__headEn {
    gap: 10px;
    font-size: 16px;
  }
  .sec__headEn::before {
    width: 8px;
    height: 8px;
  }
  .sec__text {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .sec__heading {
    font-size: 5.6vw;
  }
  .sec__headEn {
    gap: 1.6vw;
    font-size: 2.6666666667vw;
  }
  .sec__headEn::before {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
  }
  .sec__text {
    font-size: 3.4666666667vw;
  }
}
.m-decoLine {
  position: absolute;
  z-index: -1;
  width: 2px;
  background: #e60214;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

@media screen and (min-width: 768px) {
  .m-decoLine {
    height: 216px;
  }
}
@media screen and (max-width: 767px) {
  .m-decoLine {
    height: 44vw;
  }
}
.m-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, from(#e60012), to(#d40011));
  background: linear-gradient(to bottom, #e60012, #d40011);
  color: white;
}

@media screen and (min-width: 768px) {
  .m-btn {
    width: 420px;
    max-width: 100%;
    height: 72px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .m-btn {
    width: 80%;
    height: 16vw;
    font-size: 4vw;
  }
}
/**------------------------
- animation
*------------------------*/
.fadeUp {
  opacity: 0;
}
.fadeUp.js-scroll.is-active {
  -webkit-animation: fadeUp 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
          animation: fadeUp 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

.fadeSlideR {
  opacity: 0;
}
.fadeSlideR.js-scroll.is-active {
  -webkit-animation: fadeSlideR 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
          animation: fadeSlideR 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

.fadeSlideL {
  opacity: 0;
}
.fadeSlideL.js-scroll.is-active {
  -webkit-animation: fadeSlideL 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
          animation: fadeSlideL 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@-webkit-keyframes fadeUp {
  0% {
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeSlideR {
  0% {
    opacity: 0;
    -webkit-transform: translateX(16px);
            transform: translateX(16px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeSlideR {
  0% {
    opacity: 0;
    -webkit-transform: translateX(16px);
            transform: translateX(16px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes fadeSlideL {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-16px);
            transform: translateX(-16px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeSlideL {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-16px);
            transform: translateX(-16px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/**------------------------
- Splide Customize
*------------------------*/
.splide {
  height: 100%;
}
.splide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.splide .splide__track {
  height: 100%;
}
.splide .splide__arrows {
  position: absolute;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 0;
  right: 0;
}
.splide .splide__arrows .splide__arrow {
  position: static;
  border-radius: 0;
  width: 50px;
  height: 50px;
  background: #e60214;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
.splide .splide__arrows .splide__arrow svg {
  fill: white;
}
.splide .splide__arrows .splide__arrow--next {
  border-left: solid 1px rgba(255, 255, 255, 0.5);
}
.splide .splide__pagination {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  left: auto;
  right: 10px;
  bottom: 70px;
}
.splide .splide__pagination .splide__pagination__page {
  opacity: 1;
  border: solid 1px #e60214;
  background: white;
}
.splide .splide__pagination .splide__pagination__page.is-active {
  border-width: 3px;
}
.splide .splide__pagination .splide__pagination__page:focus {
  outline: 0 !important;
}

/**------------------------
- Kv
*------------------------*/
.kv__catch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.kv__content {
  position: relative;
  z-index: 1;
}

.kv__lead {
  position: relative;
  z-index: 1;
  line-height: 1.2;
}
.kv__lead::before {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: inherit;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #333;
}

.kv__heading {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .kv__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .kv__catch {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: calc((100vw - 100%) / 2 + 63%);
    height: 665px;
    margin: 0 70px 0 calc((100vw - 100%) / 2 * -1);
  }
  .kv__content {
    margin: 45px 0 0 0;
  }
  .kv__content .m-decoLine {
    top: 108px;
    right: -35px;
    -webkit-transform: rotate(18deg);
            transform: rotate(18deg);
  }
  .kv__logo {
    width: 110px;
    margin: 0 0 36px 0;
  }
  .kv__lead {
    margin-bottom: 40px;
    padding-bottom: 30px;
    font-size: 15px;
  }
  .kv__lead::before {
    width: 20px;
  }
  .kv__heading {
    font-size: 60px;
  }
  .kv__name {
    margin-top: 16px;
    font-size: 15;
  }
  .kv__thum {
    width: 174px;
    margin-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .kv__catch {
    width: 100vw;
    height: 89.3333333333vw;
    margin: 0 calc((100vw - 100%) / 2 * -1);
  }
  .kv__content {
    margin: 7.3333333333vw 0 0 0;
  }
  .kv__content .m-decoLine {
    top: 10.6666666667vw;
    right: 14.6666666667vw;
  }
  .kv__logo {
    width: 22.4vw;
    margin: 0 0 6vw 0;
  }
  .kv__lead {
    margin-bottom: 8vw;
    padding-bottom: 5.3333333333vw;
    font-size: 2.6666666667vw;
  }
  .kv__lead::before {
    width: 3.3333333333vw;
  }
  .kv__heading {
    font-size: 11.2vw;
  }
  .kv__name {
    margin-top: 3.2vw;
    font-size: 2.6666666667vw;
  }
  .kv__thum {
    position: absolute;
    z-index: inherit;
    bottom: 0;
    right: 2.6666666667vw;
    width: 30.6666666667vw;
  }
}
/**------------------------
- Pagenav
*------------------------*/
.pagenav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pagenav__anc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  font-family: "Noto Serif", serif;
  line-height: 1.2;
}
.pagenav__anc:hover {
  color: #e60214;
}
.pagenav__anc:hover::after {
  width: 20px;
  height: 20px;
  background: center/50% no-repeat url("../img/ico-arrow.svg") #e60214;
}
.pagenav__anc .en {
  display: block;
  line-height: 1;
  color: #e60214;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
}
.pagenav__anc::after {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: inherit;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  background: #e60214;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform-origin: left;
          transform-origin: left;
}

@media screen and (min-width: 768px) {
  .lp-Pagenav {
    padding: 65px 0 0 0;
  }
  .pagenav__item {
    width: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .pagenav__item:not(:first-of-type) {
    border-left: solid 1px #e5e5e5;
  }
  .pagenav__anc {
    padding: 15px 0 30px;
    gap: 10px;
    font-size: 14px;
  }
  .pagenav__anc .en {
    font-size: 14px;
  }
  .pagenav__anc::after {
    bottom: 8px;
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 767px) {
  .lp-Pagenav {
    padding: 15.3333333333vw 0 0 0;
  }
  .pagenav__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: solid 1px #e5e5e5;
  }
  .pagenav__item {
    width: 50%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 2.6666666667vw 0;
    border-bottom: solid 1px #e5e5e5;
  }
  .pagenav__anc {
    padding: 2.6666666667vw 0 6.6666666667vw;
    font-size: 2.9333333333vw;
  }
  .pagenav__anc .en {
    margin-bottom: 0.4em;
    font-size: 2.4vw;
  }
  .pagenav__anc::after {
    bottom: 2.6666666667vw;
    width: 1.6vw;
    height: 1.6vw;
  }
  .pagenav__item:nth-child(even) .pagenav__anc {
    border-left: solid 1px #e5e5e5;
  }
}
/**------------------------
- Intro
*------------------------*/
.lp-Intro {
  position: relative;
  z-index: 1;
}
.lp-Intro::before {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: -1;
  right: 0;
  background: center/cover no-repeat url("../img/intro_bg.jpg");
}

.introHead {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(-70deg, transparent 15%, #e60214 15%, #e60214 85%, transparent 85%);
  color: white;
}

.introHead__lead {
  display: inline-block;
  position: relative;
  z-index: inherit;
  padding: 0 0.6em;
  opacity: 0.7;
}
.introHead__lead::before, .introHead__lead::after {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: inherit;
  bottom: 0.1em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-left: solid 1px;
  height: 80%;
}
.introHead__lead::before {
  left: 0;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
.introHead__lead::after {
  right: 0;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}

.introHead__heading {
  font-family: "Noto Serif", serif;
  font-weight: 400;
  line-height: 1.2;
}

.lp-Intro .sec__headEn {
  position: absolute;
  z-index: inherit;
  top: 0;
  left: 0;
  height: 20em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}

.intro__catch {
  position: relative;
  z-index: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 55%;
}
.intro__catch .img-top, .intro__catch .img-btm {
  position: absolute;
  z-index: inherit;
}
.intro__catch .img-top {
  top: 0;
  right: 0;
  width: 77%;
}
.intro__catch .img-btm {
  bottom: 0;
  left: 0;
  width: 32.75%;
}

@media screen and (min-width: 768px) {
  .lp-Intro {
    padding: 110px 0 0 0;
  }
  .lp-Intro::before {
    top: 430px;
    width: 1260px;
    max-width: 66vw;
    height: 950px;
    -webkit-transform: translateX(33px);
            transform: translateX(33px);
  }
  .introHead {
    width: 460px;
    height: 180px;
    padding: 0 0 25px;
  }
  .introHead__lead {
    font-size: 16px;
  }
  .introHead__heading {
    font-size: 28px;
  }
  .intro__youtube {
    width: 760px;
    margin: -40px auto 0;
  }
  .intro__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 220px 0 0;
  }
  .intro__content {
    padding: 55px 0 0 60px;
  }
  .intro__text {
    margin: 40px 0 0 0;
  }
  .lp-Intro .sec__headEn {
    top: 10px;
    left: -70px;
  }
  .intro__catch {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 580px;
    height: 740px;
  }
}
@media screen and (max-width: 767px) {
  .lp-Intro {
    padding: 16vw 0 16vw 0;
  }
  .lp-Intro::before {
    top: 62.6666666667vw;
    width: 64vw;
    height: 274.6666666667vw;
  }
  .introHead {
    width: 64vw;
    height: 24vw;
    margin: 0 0 0 calc((100vw - 100%) / 2 * -1);
    padding: 0 10vw 0 0;
    background: linear-gradient(-70deg, transparent 15%, #e60214 15%);
  }
  .introHead__lead {
    font-size: 2.6666666667vw;
  }
  .introHead__heading {
    font-size: 4.5333333333vw;
  }
  .intro__youtube {
    margin: -2vw 0 0 0;
  }
  .intro__wrap {
    padding: 14vw 0 0;
  }
  .intro__content {
    padding: 0 0 0 13.3333333333vw;
  }
  .lp-Intro .sec__headEn {
    top: 0.2666666667vw;
    left: -10vw;
  }
  .intro__text {
    margin: 10vw 0 0 0;
  }
  .intro__catch {
    width: 65.3333333333vw;
    height: 82.6666666667vw;
    margin: 9.3333333333vw 0 10.6666666667vw auto;
  }
}
/**------------------------
- Outdoor
*------------------------*/
.lp-Outdoor {
  background-repeat: no-repeat;
  background-image: url("../img/outdoor_bg.jpg");
}

.outdoorHead {
  position: relative;
  z-index: 1;
}

.outdoorHead__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.3em;
  position: absolute;
  z-index: inherit;
  left: 0;
  font-family: "Noto Serif", serif;
  font-weight: 400;
}
.outdoorHead__heading .bg {
  display: inline-block;
  background: linear-gradient(-80deg, transparent 10%, #e60214 10%, #e60214 90%, transparent 90%);
  padding: 0 2em;
  color: white;
  line-height: 1.4;
}

.outdoorHead__catch {
  margin: 0 calc((100vw - 100%) / 2 * -1) 0 90px;
}

.outdoorBtm {
  position: relative;
  z-index: 1;
}

.outdoorBtm__heading {
  font-family: "Noto Serif", serif;
  font-weight: 400;
  line-height: 1.8;
}

.outdoorBtm__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.outdoorBtm__imgs.js-scroll .outdoorBtm__img {
  opacity: 0;
}
.outdoorBtm__imgs.js-scroll.is-active .outdoorBtm__img:nth-of-type(1) {
  -webkit-animation: fadeUp 1s calc(1s * 0.2) cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeUp 1s calc(1s * 0.2) cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.outdoorBtm__imgs.js-scroll.is-active .outdoorBtm__img:nth-of-type(2) {
  -webkit-animation: fadeUp 1s calc(2s * 0.2) cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeUp 1s calc(2s * 0.2) cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.outdoorBtm__imgs.js-scroll.is-active .outdoorBtm__img:nth-of-type(3) {
  -webkit-animation: fadeUp 1s calc(3s * 0.2) cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeUp 1s calc(3s * 0.2) cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.outdoorBtm__img {
  width: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (min-width: 768px) {
  .lp-Outdoor {
    padding: 200px 0 100px 0;
    background-size: 50vw;
    background-position: top 690px left;
  }
  .outdoorHead__heading {
    left: -43px;
    bottom: 100px;
    font-size: 34px;
  }
  .outdoorHead__heading .bg {
    padding: 0.15em 2.5em;
  }
  .outdoor__lead {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    margin: 54px 0 0 0;
    font-size: 15px;
  }
  .outdoor__lead p {
    width: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .outdoorBtm {
    margin: 80px 0 0 0;
  }
  .outdoorBtm .m-decoLine {
    bottom: 0px;
    right: 100px;
    z-index: 1;
    height: 430px;
    -webkit-transform: rotate(19deg);
            transform: rotate(19deg);
  }
  .outdoorBtm__heading {
    font-size: 28px;
  }
  .outdoorBtm__imgs {
    gap: 56px;
    margin: 60px 0 0 0;
  }
  .outdoorBtm__img:nth-of-type(1) {
    margin-top: 220px;
  }
  .outdoorBtm__img:nth-of-type(2) {
    margin-top: 110px;
  }
}
@media screen and (max-width: 767px) {
  .lp-Outdoor {
    padding: 19.3333333333vw 0 26.6666666667vw 0;
    background-size: 100vw;
    background-position: top 54.6666666667vw left;
  }
  .outdoorHead__heading {
    bottom: -4.6666666667vw;
    margin: 0 0 0 calc((100vw - 100%) / 2 * -1);
    font-size: 5.6vw;
  }
  .outdoorHead__heading .bg {
    padding: 0.32em 2em 0.25em 6vw;
    background: linear-gradient(-80deg, transparent 10%, #e60214 10%);
  }
  .outdoorHead__catch {
    width: 88vw;
    height: 74.6666666667vw;
    margin: 0 0 13.3333333333vw 0;
    -webkit-transform: translateX(7.04vw);
            transform: translateX(7.04vw);
  }
  .outdoorHead__catch img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .outdoor__lead {
    margin: 15.3333333333vw 0 0 0;
  }
  .outdoorBtm {
    margin: 15.3333333333vw 0 0 0;
  }
  .outdoorBtm .m-decoLine {
    top: 2.6666666667vw;
    right: 20vw;
    height: 53.3333333333vw;
    z-index: 1;
  }
  .outdoorBtm__heading {
    font-size: 5.6vw;
  }
  .outdoorBtm__imgs {
    gap: 3.8666666667vw;
    margin: 22.6666666667vw 0 0 0;
  }
  .outdoorBtm__img:nth-of-type(1) {
    margin-top: 18.6666666667vw;
  }
  .outdoorBtm__img:nth-of-type(2) {
    margin-top: 9.3333333333vw;
  }
}
/**------------------------
- Personal
*------------------------*/
.lp-Personal {
  position: relative;
  z-index: 1;
}
.lp-Personal::before {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #f5f5f5;
}
.lp-Personal::after {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 50vw;
  background: white;
}

.personalTop .sec__headEn {
  position: absolute;
  z-index: inherit;
  top: 0;
  left: 0;
  height: 20em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}

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

.personalTop__detail__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
  line-height: 1.2;
}
.personalTop__detail__item:first-child {
  width: 100%;
}
.personalTop__detail__item::before {
  content: "";
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
}
.personalTop__detail__item:nth-of-type(1)::before {
  background-image: url("../img/personalTop_detail_item01.png");
}
.personalTop__detail__item:nth-of-type(2)::before {
  background-image: url("../img/personalTop_detail_item02.png");
}
.personalTop__detail__item:nth-of-type(3)::before {
  background-image: url("../img/personalTop_detail_item03.png");
}
.personalTop__detail__item:nth-of-type(4)::before {
  background-image: url("../img/personalTop_detail_item04.png");
}
.personalTop__detail__item:nth-of-type(5)::before {
  background-image: url("../img/personalTop_detail_item05.png");
}
.personalTop__detail__item:nth-of-type(6)::before {
  background-image: url("../img/personalTop_detail_item06.png");
}
.personalTop__detail__item:nth-of-type(7)::before {
  background-image: url("../img/personalTop_detail_item07.png");
}

.personalBtm__content {
  display: -ms-grid;
  display: grid;
  background: white;
}

.personalBtm__item {
  counter-increment: personalBtmNum;
}
.personalBtm__item dt {
  position: relative;
  z-index: 1;
  padding-left: 1.5em;
  font-weight: 700;
  line-height: 1.8;
  color: #e60214;
}
.personalBtm__item dt::before {
  content: counter(personalBtmNum);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  z-index: inherit;
  left: 0;
  border-radius: 50%;
  background: #e60214;
  line-height: 1;
  color: white;
  font-weight: 400;
  letter-spacing: 0;
}
.personalBtm__item dd {
  line-height: 1.8;
}

.personalTop__detail__logo {
  width: 80%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .lp-Personal {
    padding: 180px 0 0 0;
  }
  .lp-Personal::before {
    bottom: -20vw;
  }
  .lp-Personal::after {
    height: 80px;
  }
  .personalTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .personalTop__content {
    width: 50%;
    padding: 0 0 0 60px;
  }
  .personalTop .sec__headEn {
    top: 10px;
    left: -60px;
  }
  .personalTop__text {
    padding: 50px 0 0 0;
  }
  .personalTop__detail {
    width: calc(50% - 75px);
  }
  .personalTop__detail__list {
    gap: 10px;
    font-size: 15px;
  }
  .personalTop__detail__item {
    padding: 16px 16px 14px;
    width: calc((100% - 10px) / 2);
  }
  .personalTop__detail__item::before {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  .personalTop__detail__logo {
    margin-top: 40px;
  }
  .personalBtm {
    margin: 60px 0 0 0;
  }
  .personalBtm__content {
    -ms-grid-columns: 1fr 60px 1fr 60px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 60px;
    padding: 40px 40px 70px;
  }
  .personalBtm__item:not(:nth-of-type(3n)) {
    position: relative;
    z-index: 1;
  }
  .personalBtm__item:not(:nth-of-type(3n))::before {
    content: "";
    display: inline-block;
    position: absolute;
    z-index: -1;
    top: -50px;
    right: -40px;
    width: 20px;
    height: 20px;
    background: center/contain no-repeat url("../img/ico-plus.svg");
  }
  .personalBtm__item:nth-of-type(1)::before, .personalBtm__item:nth-of-type(2)::before {
    display: none;
  }
  .personalBtm__item dt {
    padding-left: 40px;
    font-size: 16px;
  }
  .personalBtm__item dt::before {
    top: -2px;
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
  .personalBtm__item dd {
    padding: 8px 0 0 40px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .lp-Personal {
    padding: 30.6666666667vw 0 0 0;
  }
  .lp-Personal::after {
    height: 10.6666666667vw;
  }
  .personalTop__content {
    padding: 0 0 0 13.3333333333vw;
  }
  .personalTop .sec__headEn {
    top: 0.2666666667vw;
    left: -10vw;
  }
  .personalTop__text {
    padding: 8.6666666667vw 0 0 0;
    font-size: 3.4666666667vw;
  }
  .personalTop__detail {
    padding: 8.6666666667vw 0 0 13.3333333333vw;
  }
  .personalTop__detail__list {
    gap: 1.3333333333vw;
    font-size: 2.9333333333vw;
  }
  .personalTop__detail__item {
    padding: 3.2vw 2.6666666667vw 2.6666666667vw;
    width: calc((100% - 1.3333333333vw) / 2);
  }
  .personalTop__detail__item::before {
    width: 4.6666666667vw;
    height: 4.6666666667vw;
    margin-right: 1.3333333333vw;
  }
  .personalTop__detail__logo {
    width: 100%;
    margin-top: 6.6666666667vw;
  }
  .personalBtm {
    margin: 15.3333333333vw calc((100vw - 100%) / 2 * -1) 0;
  }
  .personalBtm__catch {
    overflow-x: scroll;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    scrollbar-color: #e60214 transparent;
    scrollbar-width: thin;
  }
  .personalBtm__catch::-webkit-scrollbar {
    height: 8px;
  }
  .personalBtm__catch::-webkit-scrollbar-track {
    background: transparent;
  }
  .personalBtm__catch::-webkit-scrollbar-thumb {
    background: #e60214;
    border-radius: 4px;
  }
  .personalBtm__catch::-webkit-scrollbar-thumb:hover {
    background: #e60214;
  }
  .personalBtm__catch__inr {
    width: 170vw;
    height: 85vw;
  }
  .personalBtm__catch__inr img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .personalBtm__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 7.3333333333vw;
    padding: 8vw 4.8vw;
  }
  .personalBtm__item dt {
    font-size: 3.7333333333vw;
    padding-left: 10.6666666667vw;
    font-size: 16px;
  }
  .personalBtm__item dt::before {
    top: -0.5333333333vw;
    width: 8vw;
    height: 8vw;
    font-size: 4.5333333333vw;
  }
  .personalBtm__item dd {
    font-size: 3.4666666667vw;
    padding: 2.6666666667vw 0 0 10.6666666667vw;
  }
}
/**------------------------
- Slider
*------------------------*/
.lp-Slider {
  position: relative;
  z-index: 2;
}

.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

.slider__item {
  position: relative;
  z-index: 1;
  margin: 0 10px !important;
}

@media screen and (min-width: 768px) {
  .lp-Slider {
    padding: 80px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .lp-Slider {
    padding: 5.3333333333vw 0 0;
  }
}
/**------------------------
- Function
*------------------------*/
.function__item {
  cursor: pointer;
}
.function__item[open] .function__title {
  color: #e60214;
}
.function__item[open] .function__title::after {
  background-image: url("../img/ico-minus.svg");
}

.function__title, .function__content {
  background: #f5f5f5;
}

.function__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}
.function__title::after {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: inherit;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: center/contain no-repeat url("../img/ico-plus.svg");
}
.function__title::before {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: inherit;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
}
.function__item:nth-of-type(1) .function__title::before {
  background-image: url("../img/function_title_icon01.png");
}
.function__item:nth-of-type(2) .function__title::before {
  background-image: url("../img/function_title_icon02.png");
}
.function__item:nth-of-type(3) .function__title::before {
  background-image: url("../img/function_title_icon03.png");
}
.function__item:nth-of-type(4) .function__title::before {
  background-image: url("../img/function_title_icon04.png");
}
.function__item:nth-of-type(5) .function__title::before {
  background-image: url("../img/function_title_icon05.png");
}
.function__item:nth-of-type(5) .function__title::before {
  background-image: url("../img/function_title_icon05.png");
}
.function__item:nth-of-type(6) .function__title::before {
  background-image: url("../img/function_title_icon06.png");
}
.function__item:nth-of-type(7) .function__title::before {
  background-image: url("../img/function_title_icon08.png");
}
.function__item:nth-of-type(8) .function__title::before {
  background-image: url("../img/function_title_icon09.png");
}

.function__content {
  border-top: solid 2px white;
}

.function__thum {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.function__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .lp-Function {
    padding: 200px 0 160px;
  }
  .function__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .function__group {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .function__head {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 240px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
  }
  .function__head .sec__headEn {
    margin: 0 16px 0 0;
  }
  .function__item:not(:first-of-type) {
    margin-top: 16px;
  }
  .function__content {
    padding: 40px;
  }
  .function__title {
    min-height: 90px;
    padding: 30px 40px 30px 120px;
    font-size: 16px;
  }
  .function__title::after {
    right: 36px;
    width: 20px;
    height: 20px;
  }
  .function__title::before {
    left: 40px;
    width: 60px;
    height: 60px;
  }
  .function__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .function__thum {
    width: 200px;
    margin-right: 40px;
  }
  .function__text {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .lp-Function {
    padding: 15.3333333333vw 0;
  }
  .function__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2.1333333333vw;
  }
  .function__group {
    margin: 8vw 0 0 0;
  }
  .function__item:not(:first-of-type) {
    margin-top: 4vw;
  }
  .function__content {
    padding: 6vw 12vw 5.3333333333vw 5.3333333333vw;
  }
  .function__title {
    min-height: 16vw;
    padding: 4vw 12vw 4vw 17.3333333333vw;
    font-size: 3.4666666667vw;
  }
  .function__title::before {
    left: 2.6666666667vw;
    width: 12vw;
    height: 12vw;
  }
  .function__title::after {
    right: 4vw;
    width: 4vw;
    height: 4vw;
  }
  .function__content {
    padding-right: 4.6666666667vw;
  }
  .function__text {
    font-size: 3.4666666667vw;
  }
  .function__thum {
    width: 53.3333333333vw;
    margin: 0 auto 6vw;
  }
}
/**------------------------
- Message
*------------------------*/
.lp-Message {
  background: center/cover no-repeat url("../img/message_bg.jpg");
}

.message__catch {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .lp-Message {
    padding: 110px 0;
  }
  .message__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .message__catch {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 50%;
    padding-left: 40px;
  }
  .message__catch img {
    width: 420px;
  }
  .message__catch .m-decoLine {
    top: -150px;
    left: 80px;
    height: 430px;
    z-index: 1;
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  .message__text {
    margin: 50px 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  .lp-Message {
    position: relative;
    z-index: 1;
    margin: 17.3333333333vw 0 0 0;
    padding: 0 0 9.3333333333vw;
  }
  .lp-Message::before {
    content: "";
    display: inline-block;
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    height: 29.3333333333vw;
    background: white;
  }
  .message__catch {
    width: 82.6666666667vw;
    height: 69.3333333333vw;
    margin: 0 0 0 calc((100vw - 100%) / 2 * -1);
  }
  .message__catch img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .message__catch .m-decoLine {
    top: -13.3333333333vw;
    right: 13.3333333333vw;
    height: 57.3333333333vw;
    z-index: 1;
  }
  .message__content {
    margin: 11.3333333333vw 0 0 0;
  }
  .message__text {
    margin: 3.3333333333vw 0 0 0;
  }
}
/**------------------------
- Detail
*------------------------*/
.detail__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px #ededed;
  line-height: 1.6;
}
.detail__item dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .lp-Detail {
    padding: 120px 0;
  }
  .detail__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .detail__head {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 240px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
  }
  .detail__head .sec__headEn {
    margin: 0 16px 0 0;
  }
  .detail__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 10px 0 0;
  }
  .detail__item {
    width: calc((100% - 20px) / 2);
    padding: 24px 0 24px;
    font-size: 15px;
  }
  .detail__item dt {
    width: 130px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .lp-Detail {
    padding: 20vw 0 17.3333333333vw;
  }
  .detail__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2.1333333333vw;
  }
  .detail__catch {
    margin: 9.3333333333vw calc((100vw - 100%) / 2 * -1) 2.6666666667vw;
    width: 100vw;
  }
  .detail__item {
    padding: 4vw 0;
    font-size: 3.4666666667vw;
  }
  .detail__item dt {
    width: 29.3333333333vw;
    padding-right: 4vw;
  }
}
/**------------------------
- Reference Price
*------------------------*/
.lp-price {
  padding: 120px 0 80px;
  background: #f5f5f5;
  /* テーブル PC
  /* ---------------------------------- */
  /* テーブル SP
  /* ---------------------------------- */
  /* L50とL70の主な違いについて
  /* ---------------------------------- */
}
@media screen and (max-width: 767px) {
  .lp-price {
    padding: 17vw 0 15vw;
  }
}
@media screen and (min-width: 768px) {
  .lp-price .detail__content {
    width: 860px;
  }
}
.lp-price .tb_price {
  width: 860px;
  background: #fff;
}
.lp-price .tb_price th, .lp-price .tb_price td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.lp-price .tb_price thead {
  background: #f5f5f5;
}
.lp-price .tb_price th {
  padding: 9px 0;
  text-align: center;
  background: #e5e5e5;
  font-weight: 600;
  border-bottom: 3px solid #f5f5f5;
  border-left: 3px solid #f5f5f5;
}
.lp-price .tb_price th:first-child {
  width: 160px;
  border-left: none;
}
.lp-price .tb_price th:nth-child(2) {
  width: 210px;
}
.lp-price .tb_price th:nth-child(3) {
  width: 315px;
}
.lp-price .tb_price tbody td {
  padding: 15px 0;
  font-size: 13px;
  position: relative;
  border-bottom: 3px solid #f5f5f5;
  line-height: 1.8;
}
.lp-price .tb_price tbody td span {
  font-size: 15px;
}
.lp-price .tb_price tbody td span.model {
  font-size: 13px;
}
.lp-price .tb_price tbody td:first-child span {
  font-weight: 600;
}
.lp-price .tb_price tbody td:first-child, .lp-price .tb_price tbody td:nth-child(2) {
  text-align: center;
}
.lp-price .tb_price tbody td:nth-child(3) {
  width: 260px;
  padding-left: 24px;
}
.lp-price .tb_price tbody td:nth-child(2)::before, .lp-price .tb_price tbody td:nth-child(3)::before {
  content: "";
  display: block;
  width: 1px;
  background: #e5e5e5;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.lp-price .tb_price tbody td em {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  color: #E60214;
}
.lp-price .tb_price tbody tr:first-child td, .lp-price .tb_price tbody tr:nth-child(2) td {
  height: 80px;
}
.lp-price .tb_price tbody tr:first-child td::before, .lp-price .tb_price tbody tr:nth-child(2) td::before {
  height: 42px;
}
.lp-price .tb_price tbody tr:nth-child(3) td {
  height: 101px;
}
.lp-price .tb_price tbody tr:nth-child(3) td::before {
  height: 65px;
}
.lp-price .tb_price_sp {
  width: 100%;
  margin-top: 10.5vw;
  background: #fff;
}
.lp-price .tb_price_sp + .tb_price_sp {
  margin-top: 4.5vw;
}
.lp-price .tb_price_sp th {
  width: 28%;
  font-size: 3.7333333333vw;
  font-weight: 600;
  text-align: center;
  background: #e5e5e5;
  border-bottom: 3px solid #f5f5f5;
  border-right: 3px solid #f5f5f5;
}
.lp-price .tb_price_sp td {
  width: 72%;
  padding: 2vw 5.5%;
  font-size: 3.4666666667vw;
  line-height: 1.8;
  border-bottom: 3px solid #f5f5f5;
}
.lp-price .tb_price_sp td span {
  font-size: 3.7333333333vw;
  font-weight: 600;
}
.lp-price .tb_price_sp td span.model {
  font-size: 3.2vw;
}
.lp-price .tb_price_sp td em {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  color: #E60214;
}
.lp-price .tb_price_sp td .indent {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
}
.lp-price .dl_price {
  margin-top: 30px;
}
.lp-price .dl_price dt, .lp-price .dl_price dd {
  font-size: 15px;
}
.lp-price .dl_price dt {
  font-weight: 600;
}
.lp-price .dl_price dd .txt_att {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .lp-price .dl_price {
    margin-top: 5vw;
  }
  .lp-price .dl_price dt, .lp-price .dl_price dd {
    font-size: 3.7333333333vw;
  }
  .lp-price .dl_price dd ul {
    margin-left: 1em;
  }
  .lp-price .dl_price dd ul li {
    text-indent: -1em;
  }
  .lp-price .dl_price dd .txt_att {
    margin-left: 1em;
    text-indent: -1em;
    font-size: 3.7333333333vw;
  }
}

/**------------------------
- Pagetop
*------------------------*/
.lp-Pagetop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #646464;
  color: white;
  text-align: center;
}
.lp-Pagetop::after {
  content: "";
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 0.5em;
  background: center/contain no-repeat url("../img/ico-pagetop.svg");
}

@media screen and (min-width: 768px) {
  .lp-Pagetop {
    gap: 12px;
    padding: 20px;
    font-size: 14px;
  }
  .lp-Pagetop::after {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .lp-Pagetop {
    gap: 2.6666666667vw;
    padding: 4vw;
    font-size: 3.4666666667vw;
  }
  .lp-Pagetop::after {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
/**------------------------
- Form
*------------------------*/
.lp-Form {
  background: url("../img/bg.jpg");
}

.form__heading {
  font-family: "Noto Serif", serif;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .lp-Form {
    padding: 80px 0;
  }
  .lp-Form .l-inner {
    max-width: 820px;
  }
  .form__heading {
    margin: 0 0 50px;
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .lp-Form {
    padding: 10.6666666667vw 0;
  }
  .form__heading {
    margin: 0 0 6.6666666667vw;
    font-size: 5.6vw;
  }
}
/**------------------------
- Thanks
*------------------------*/
.lp-Thanks {
  background: url("../img/bg.jpg");
}

.thanks__heading {
  font-family: "Noto Serif", serif;
  text-align: center;
}

.thanks__text {
  font-family: "Noto Serif", serif;
  text-align: center;
}

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

@media screen and (min-width: 768px) {
  .lp-Thanks {
    padding: 240px 0;
  }
  .thanks__heading {
    font-size: 28px;
  }
  .thanks__text {
    margin: 40px 0 80px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .lp-Thanks {
    padding: 32vw 0;
  }
  .thanks__heading {
    font-size: 5.6vw;
  }
  .thanks__text {
    margin: 8vw 0 12vw;
    font-size: 3.7333333333vw;
  }
}
/*# sourceMappingURL=lamaxa.css.map */</pre></body></html>