@charset "UTF-8";
/* ========================================
リセットCSS
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
div {
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

iframe {
  max-width: 100%;
  vertical-align: middle;
}

span {
  font: inherit;
  letter-spacing: inherit;
}

ul,
ol {
  list-style: none;
}

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

address {
  font: inherit;
}

input,
button,
textarea,
select {
  color: inherit;
  font: inherit;
  vertical-align: middle;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

/* ========================================
変数・関数
======================================== */
:root {
  --color-black: #595757;
  --color-pink: #e87bac;
  --color-orange: #ffaa61;
  --font-base: "Roboto", sans-serif;
  --font-outfit: "Outfit", "Roboto", sans-serif;
  --z-index-menu: 10;
  --header-height-pc: 90px;
  --header-height-sp: 65px;
  --z-index-header: 9;
  --mg-sp: 5vw;
}

/* ========================================
mixin
======================================== */
/* ========================================
ベースCSS
======================================== */
body {
  color: var(--color-black);
  font-family: var(--font-base);
  font-size: clamp(18px , calc(24 / 1280 * 100vw), 24px);
  font-weight: 400;
  line-height: 1.5416666667;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  opacity: 0;
  animation: pageFadein 0.6s forwards;
}

@keyframes pageFadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
a {
  color: inherit;
  text-decoration: none;
}

/* CLEAR-FIX */
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 2em;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

/* ========================================
モジュール・パーツ m-
======================================== */
.m-inner {
  width: 88%;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .m-inner {
    width: 90vw;
  }
}

.m-secTtl {
  padding-left: min(calc(40 / 375 * 100vw), 40px);
  color: var(--color-pink);
  font-family: var(--font-outfit);
  font-size: clamp(36px , calc(48 / 1280 * 100vw), 48px);
  font-weight: 600;
  letter-spacing: 0.025em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .m-secTtl {
    font-size: min(calc(28 / 375 * 100vw), 28px);
    padding-left: min(calc(28 / 375 * 100vw), 28px);
  }
}
.m-secTtl::before {
  content: "";
  display: block;
  width: min(calc(30 / 375 * 100vw), 30px);
  height: 4px;
  background: var(--color-pink);
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .m-secTtl::before {
    width: min(calc(20 / 375 * 100vw), 20px);
  }
}
@media screen and (max-width: 767px) {
  .m-secTtl {
    font-size: min(calc(36 / 375 * 100vw), 36px);
  }
}

.m-btn-fill {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(286px , calc(430 / 1280 * 100vw), 430px);
  height: clamp(54px , calc(80 / 1280 * 100vw), 80px);
  padding: 0 5px;
  background: var(--color-pink);
  border-radius: 40px;
  color: #fff;
  font-family: var(--font-outfit);
  font-size: min(calc(30 / 1280 * 100vw), 20px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media (hover: hover) {
  .m-btn-fill {
    transition: opacity 0.3s;
  }
  .m-btn-fill:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .m-btn-fill {
    width: min(calc(300 / 375 * 100vw), 300px);
    height: min(calc(50 / 375 * 100vw), 50px);
    font-size: min(calc(16 / 375 * 100vw), 16px);
  }
}
.m-btn-arrow {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0 10px;
  margin-left: auto;
  font-size: clamp(15px , calc(20 / 1280 * 100vw), 20px);
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .m-btn-arrow {
    font-size: min(calc(16 / 375 * 100vw), 16px);
  }
}
.m-btn-arrow::after {
  content: "";
  display: block;
  width: clamp(34px , calc(52 / 1280 * 100vw), 52px);
  height: clamp(34px , calc(52 / 1280 * 100vw), 52px);
  border: 1px solid var(--color-pink);
  border-radius: 50%;
  background: url(../image/common/arrow_right.svg) center/auto no-repeat;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .m-btn-arrow::after {
    width: min(calc(52 / 375 * 100vw), 52px);
    height: min(calc(52 / 375 * 100vw), 52px);
  }
}
@media (hover: hover) {
  .m-btn-arrow:hover::after {
    background-color: var(--color-pink);
    background-image: url(../image/common/arrow_right_white.svg);
  }
}

.t-inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
補助的に使用 u-
======================================== */
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

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

.u-ib {
  display: inline-block !important;
}

.u-text-center {
  text-align: center !important;
}
.u-text-left {
  text-align: left !important;
}
.u-text-right {
  text-align: right !important;
}

.u-color-black {
  color: var(--color-black);
}
.u-color-pink {
  color: var(--color-pink);
}
.u-color-orange {
  color: var(--color-orange);
}

.u-bold-400 {
  font-weight: 400 !important;
}
.u-bold-700 {
  font-weight: 700 !important;
}

/* ========================================
header
======================================== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: var(--header-height-pc);
  background: transparent;
  padding: 0 min(calc(40 / 1280 * 100vw), 40px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .header {
    height: var(--header-height-sp);
    padding: 0 min(calc(20 / 375 * 100vw), 20px);
  }
}
.header.is-bg {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 10px rgba(151, 151, 152, 0.2);
}
@media screen and (max-width: 767px) {
  .header_logo {
    width: 100px;
  }
}
.header_menuBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--color-pink);
  border-radius: 50%;
  color: var(--color-pink);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .header_menuBtn {
    width: 42px;
    height: 42px;
    font-size: 10px;
  }
}

.menu {
  width: 100%;
  height: 100%;
  background: var(--color-pink);
  color: #fff;
  font-family: var(--font-outfit);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-menu);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.is-menuActive .menu {
  opacity: 1;
  visibility: visible;
}
.menu_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height-pc);
  padding: 0 min(calc(44 / 1280 * 100vw), 44px) 0 min(calc(40 / 1280 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .menu_head {
    height: var(--header-height-sp);
    padding: 0 min(calc(30 / 375 * 100vw), 30px) 0 min(calc(20 / 375 * 100vw), 20px);
  }
}
@media screen and (max-width: 767px) {
  .menu_logo {
    width: 90px;
  }
}
.menu_closed {
  width: 40px;
  height: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .menu_closed {
    width: 30px;
    height: 30px;
  }
}
.menu_closed::before, .menu_closed::after {
  content: "";
  width: 50px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 767px) {
  .menu_closed::before, .menu_closed::after {
    width: 42px;
  }
}
.menu_closed::before {
  transform: translateX(-50%) rotate(45deg);
}
.menu_closed::after {
  transform: translateX(-50%) rotate(-45deg);
}
.menu_primary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: min(calc(32 / 1280 * 100vw), 32px) 0;
  max-width: calc(calc(450 / 1280 * 100vw) * 2 + calc(120 / 1280 * 100vw));
  margin: min(calc(40 / 1280 * 100vw), 40px) auto 0;
  max-height: calc(100vh - var(--header-height-pc));
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .menu_primary {
    width: calc(285 / 375 * 100vw);
    gap: 14px 0;
    max-width: none;
    margin-top: -10px;
  }
}
.menu_primary::-webkit-scrollbar {
  display: none;
}
@media (hover: hover) {
  .menu_primary a {
    transition: opacity 0.3s;
  }
  .menu_primary a:hover {
    opacity: 0.7;
  }
}
.menu_primary > li {
  width: calc(450 / 1280 * 100vw);
}
@media screen and (max-width: 767px) {
  .menu_primary > li {
    width: 100%;
  }
}
.menu_primary > li > a,
.menu_primary > li > button {
  display: block;
  width: 100%;
  border-bottom: 1px solid #fff;
  font-size: clamp(32px , calc(37 / 1280 * 100vw), 37px);
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .menu_primary > li > a,
  .menu_primary > li > button {
    padding: 6px 0;
    font-size: min(calc(24 / 375 * 100vw), 24px);
  }
}
.menu_primary > li > button {
  position: relative;
}
.menu_primary > li > button::before, .menu_primary > li > button::after {
  content: "";
  width: min(calc(25 / 1280 * 100vw), 25px);
  height: min(calc(4 / 1280 * 100vw), 4px);
  background: #fff;
  position: absolute;
  top: min(calc(40 / 1280 * 100vw), 40px);
  right: min(calc(30 / 1280 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .menu_primary > li > button::before, .menu_primary > li > button::after {
    width: 20px;
    height: 3px;
    top: 50%;
    right: 15px;
  }
}
.menu_primary > li > button::after {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.menu_primary ul {
  display: none;
  padding-bottom: min(calc(40 / 1280 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .menu_primary ul {
    padding: 10px 0 0;
  }
}
.menu_primary ul li {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .menu_primary ul li {
    margin-top: 0;
  }
}
.menu_primary ul a {
  display: block;
  font-size: clamp(18px , calc(24 / 1280 * 100vw), 24px);
  letter-spacing: 0.05em;
  padding-left: min(calc(30 / 1280 * 100vw), 30px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .menu_primary ul a {
    padding: 5px 0 6px 22px;
    font-size: 16px;
  }
}
.menu_primary ul a::before {
  content: "";
  display: block;
  width: min(calc(20 / 1280 * 100vw), 20px);
  height: 2px;
  background: #fff;
  position: absolute;
  top: min(calc(20 / 1280 * 100vw), 20px);
  left: 0;
}
@media screen and (max-width: 767px) {
  .menu_primary ul a::before {
    width: 15px;
    top: 16px;
  }
}
.menu_primary .is-active > button::after {
  transform: rotate(0);
}

/* ========================================
footer
======================================== */
.footer {
  padding: 50px 0 20px;
  background: var(--color-pink);
  color: #fff;
}
.footer a {
  color: #fff;
}
.footer_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
  margin-top: 40px;
  font-family: var(--font-outfit);
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .footer_nav {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto 1fr;
    gap: 24px 0;
  }
}
.footer_nav p {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .footer_nav > li:nth-child(3) {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
.footer_nav ul li {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .footer_nav ._about ul {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.footer_nav2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 30px;
  margin-top: 50px;
  font-family: var(--font-outfit);
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .footer_nav2 {
    font-size: 11px;
  }
}
.footer_nav2 li + li {
  position: relative;
}
.footer_nav2 li + li::after {
  content: "";
  width: 1px;
  height: 9px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .footer_nav2 li + li::after {
    left: auto;
    right: -15px;
  }
}
@media screen and (max-width: 767px) {
  .footer_nav2 li:nth-child(4) {
    width: 100%;
  }
  .footer_nav2 li:nth-child(4)::after {
    display: none;
  }
}
.footer_nav2 ._contact {
  font-size: 20px;
  font-family: var(--font-outfit);
}
@media screen and (max-width: 767px) {
  .footer_nav2 ._contact {
    width: 100%;
  }
}
.footer_foot {
  border-top: 1px solid #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px 40px;
  margin-top: 20px;
  padding-top: 20px;
}
.footer_foot p {
  font-size: 14px;
  line-height: 1.2142857143;
}
@media screen and (max-width: 767px) {
  .footer_foot p {
    font-size: 11px;
  }
}
.footer_copyright {
  display: block;
  font-size: 10px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .footer_copyright {
    width: 100%;
    text-align: center;
  }
}

/* ========================================
メニュー
======================================== */
/* ========================================
共通で使うレイアウト l-
======================================== */
.l-main {
  padding-top: var(--header-height-pc);
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: var(--header-height-sp);
  }
}

.l-tabBtnBox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-tabBtnBox {
    gap: 6px calc((100% - calc(80 / 375 * 100vw) * 4) / 3);
  }
}
.l-tabBtnBox > button {
  width: 118px;
  height: 60px;
  border: 1px solid #979798;
  background: #f5f5f5;
  color: #979798;
  font-family: var(--font-outfit);
  font-size: 16px;
  line-height: 1.125;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-tabBtnBox > button {
    width: calc(80 / 375 * 100vw);
    height: 40px;
    font-size: min(calc(11 / 375 * 100vw), 11px);
  }
}
.l-tabBtnBox > button::after {
  content: "";
  display: block;
  width: 100vw;
  height: 2px;
  background: var(--color-pink);
  margin-top: -1px;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 2;
}
.l-tabBtnBox > button.is-active {
  background-color: var(--color-pink);
  border-color: var(--color-pink);
  color: #fff;
}

.l-form dl {
  display: flex;
  border-top: 1px solid #717071;
  padding: 24px 0 25px;
  font-size: clamp(16px , calc(20 / 1280 * 100vw), 20px);
  line-height: 1.15;
}
@media screen and (max-width: 767px) {
  .l-form dl {
    display: block;
    padding: 13px 0 16px;
    line-height: 1.2777777778;
  }
}
.l-form dl * {
  letter-spacing: 0.025em;
}
.l-form dt {
  width: clamp(208px , calc(260 / 1280 * 100vw), 260px);
  padding-top: 0.7em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-form dt {
    width: 100%;
    padding-top: 0;
    padding-left: 10px;
    font-size: 18px;
  }
}
.l-form dt.-row2 {
  padding-top: 0;
}
.l-form dt .u-bold-400 {
  letter-spacing: -0.01em;
}
.l-form dd {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .l-form dd {
    margin-top: 7px;
    font-size: 16px;
  }
}
.l-form input,
.l-form textarea,
.l-form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: clamp(40px , calc(50 / 1280 * 100vw), 50px);
  margin: 0;
  padding: 0 20px;
  background: #f5f5f5;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  outline: none;
}
@media screen and (max-width: 767px) {
  .l-form input,
  .l-form textarea,
  .l-form select {
    padding: 0 10px;
    height: 40px;
  }
}
.l-form input::-moz-placeholder, .l-form textarea::-moz-placeholder, .l-form select::-moz-placeholder {
  color: #C9CACA;
}
.l-form input::placeholder,
.l-form textarea::placeholder,
.l-form select::placeholder {
  color: #C9CACA;
}
.l-form textarea {
  resize: vertical;
  height: 300px;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .l-form textarea {
    height: 280px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.l-form select {
  position: relative;
  padding-right: 35px;
  background-image: url(../image/common/select_arrow.svg);
  background-position: right 12px center;
  background-size: auto;
  background-repeat: no-repeat;
}
.l-form_checkbox {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  padding: 0.7em 0 0.6em;
}
@media screen and (max-width: 767px) {
  .l-form_checkbox {
    gap: 17px 0;
    padding: 10px 5px 5px 10px;
  }
}
.l-form_checkbox input[type=radio],
.l-form_checkbox input[type=checkbox] {
  display: none;
}
.l-form_checkbox label {
  display: block;
  cursor: pointer;
}
.l-form_checkbox span {
  display: inline-block;
  position: relative;
  padding-left: 30px;
}
.l-form_checkbox span::before, .l-form_checkbox span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.1em;
  left: 0;
}
.l-form_checkbox span::before {
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-black);
}
.l-form_checkbox span::after {
  width: 14px;
  height: 7px;
  border-left: 3px solid var(--color-pink);
  border-bottom: 3px solid var(--color-pink);
  transform: skewX(-6deg) translate(25%, 65%) rotate(-45deg);
  opacity: 0;
}
.l-form_checkbox input:checked + span::after {
  opacity: 1;
}
.l-form_appBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 48px;
  border-top: 1px solid #717071;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-form_appBox {
    padding-top: 30px;
  }
}
.l-form .l-form_submit {
  width: 200px;
  height: 45px;
  background: var(--color-pink);
  border-radius: 24px;
  color: #fff;
  font-family: var(--font-outfit);
  font-size: clamp(18px , calc(20 / 1280 * 100vw), 20px);
  font-weight: 600;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .l-form .l-form_submit {
    width: 150px;
    height: 36px;
    font-size: 16px;
  }
}
.l-form .l-form_prev {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  position: absolute;
  top: 47px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-form .l-form_prev {
    position: static;
  }
}
.l-form .l-form_prev::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--color-pink);
  background: url(../image/common/arrow_left.svg) center/auto no-repeat;
}
.l-form_rec {
  color: #e03828;
}
@media screen and (max-width: 767px) {
  .l-form_rec {
    width: 36px;
    font-size: 12px;
    line-height: 15px;
  }
}
.l-form .l-form_error {
  margin-top: 6px;
  color: #e03828;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .l-form .l-form_error {
    margin-top: 3px;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .l-form-confirm dl {
    padding: 38px 0 38px;
  }
}
@media screen and (max-width: 767px) {
  .l-form-confirm dl {
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 768px) {
  .l-form-confirm dt {
    width: clamp(208px , calc(270 / 1280 * 100vw), 270px);
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-form-confirm dt.-row2 {
    margin: -0.56em 0;
  }
}
@media screen and (max-width: 767px) {
  .l-form-confirm dd {
    margin-top: 25px;
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .l-form-confirm .l-form_appBox {
    justify-content: space-between;
    align-items: center;
  }
}

/* ========================================
トップページ home
======================================== */
.home + .footer {
  margin-top: 100px;
}

.homeMv {
  position: relative;
  margin-top: calc(36 / 1280 * 100vw);
}
@media screen and (max-width: 767px) {
  .homeMv {
    margin-top: 0;
    padding-top: calc(100 / 375 * 100vw);
    overflow: hidden;
  }
}
.homeMv_textBox {
  width: 100%;
  font-family: var(--font-outfit);
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: translateY(-16.5%);
}
@media screen and (max-width: 767px) {
  .homeMv_textBox {
    top: calc(45 / 375 * 100vw);
  }
}
.homeMv_textBox ._catch {
  font-size: calc(70 / 1280 * 100vw);
  line-height: 1.2857142857;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .homeMv_textBox ._catch {
    font-size: calc(28 / 375 * 100vw);
    line-height: 1.2857142857;
    letter-spacing: 0.025em;
  }
}
.homeMv_textBox ._text {
  margin-top: 15px;
  font-size: calc(22 / 1280 * 100vw);
  line-height: 1.3181818182;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .homeMv_textBox ._text {
    margin-top: calc(6 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
    line-height: 1.3333333333;
  }
}
.homeMv_slideBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .homeMv_slideBox {
    width: calc(569 / 375 * 100vw);
    margin-left: calc(-97 / 375 * 100vw);
  }
}
.homeMv_slide {
  pointer-events: none;
}
.homeMv .splide__slide {
  transition: 0s;
  opacity: 1 !important;
}
.homeMv .splide__slide img {
  width: 110%;
  height: 110%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.homeMv .splide__slide.is-active {
  z-index: 3 !important;
}
.homeMv .splide__slide.is-active div {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
.homeMv .splide__slide.is-imgMoved img {
  transform: translateX(-5%) scale(1.1);
  animation: imgMoved 6s linear infinite forwards;
}
@keyframes imgMoved {
  0% {
    transform: translateX(-5%) scale(1.1);
  }
  100% {
    transform: translateX(5%) scale(1.1);
  }
}
.homeMv .splide__slide.is-next {
  z-index: -1 !important;
}
.homeMv .splide__slide.is-prev {
  z-index: 2 !important;
}
.homeMv_slide01 {
  width: calc(390 / 1280 * 100vw);
}
@media screen and (max-width: 767px) {
  .homeMv_slide01 {
    width: calc(175 / 375 * 100vw);
  }
}
.homeMv_slide01 .splide__slide div {
  padding-top: 130.7692307692%;
  animation-delay: 3.8s;
}
@media screen and (max-width: 767px) {
  .homeMv_slide01 .splide__slide div {
    padding-top: 161.7142857143%;
  }
}
.homeMv_slide01 .splide__slide.is-active div {
  animation: slide 1s cubic-bezier(0.165, 0.84, 0.44, 1) 1 forwards;
}
.homeMv_slide02 {
  width: calc(412 / 1280 * 100vw);
  margin-top: calc(170 / 1280 * 100vw);
}
@media screen and (max-width: 767px) {
  .homeMv_slide02 {
    width: calc(185 / 375 * 100vw);
    margin-top: calc(90 / 375 * 100vw);
  }
}
.homeMv_slide02 .splide__slide div {
  padding-top: 106.7961165049%;
  animation-delay: 3.9s;
}
@media screen and (max-width: 767px) {
  .homeMv_slide02 .splide__slide div {
    padding-top: 141.0810810811%;
  }
}
.homeMv_slide02 .splide__slide.is-active div {
  animation: slide 1s 0.1s cubic-bezier(0.165, 0.84, 0.44, 1) 1 forwards;
}
.homeMv_slide03 {
  width: calc(390 / 1280 * 100vw);
  margin-top: calc(53 / 1280 * 100vw);
}
@media screen and (max-width: 767px) {
  .homeMv_slide03 {
    width: calc(175 / 375 * 100vw);
    margin-top: calc(24 / 375 * 100vw);
  }
}
.homeMv_slide03 .splide__slide div {
  padding-top: 120.5128205128%;
}
@media screen and (max-width: 767px) {
  .homeMv_slide03 .splide__slide div {
    padding-top: 159.4285714286%;
  }
}
.homeMv_slide03 .splide__slide.is-active div {
  animation: slide 1s 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 1 forwards;
}
@keyframes slide {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

.homeProducts {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .homeProducts {
    margin-top: 60px;
  }
}
.homeProducts_ttl {
  color: var(--color-pink);
  font-family: var(--font-outfit);
  font-size: clamp(40px , calc(60 / 1280 * 100vw), 60px);
  font-weight: 600;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .homeProducts_ttl {
    font-size: 36px;
  }
}
.homeProducts_read {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .homeProducts_read {
    margin-top: 0;
  }
}
.homeProducts_slider .splide__track {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .homeProducts_slider .splide__track {
    padding-top: 40px;
  }
}
.homeProducts_slider .splide__arrow {
  width: clamp(40px , calc(52 / 1280 * 100vw), 52px);
  height: clamp(40px , calc(52 / 1280 * 100vw), 52px);
  border-radius: 50%;
  border: 1px solid var(--color-pink);
  background: #fff;
  position: absolute;
  top: 360px;
  transform: translateY(-50%);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .homeProducts_slider .splide__arrow {
    top: 55vw;
  }
}
@media screen and (min-width: 768px) {
  .homeProducts_slider .splide__arrow--prev {
    left: auto;
    right: calc(50% + 280px);
  }
}
@media screen and (max-width: 767px) {
  .homeProducts_slider .splide__arrow--prev {
    left: var(--mg-sp);
  }
}
@media screen and (min-width: 768px) {
  .homeProducts_slider .splide__arrow--next {
    right: auto;
    left: calc(50% + 280px);
  }
}
@media screen and (max-width: 767px) {
  .homeProducts_slider .splide__arrow--next {
    right: var(--mg-sp);
  }
}
@media screen and (max-width: 767px) {
  .homeProducts_slider .splide__arrow {
    width: min(calc(50 / 375 * 100vw), 50px);
    height: min(calc(50 / 375 * 100vw), 50px);
  }
}
.homeProducts_slider .splide__pagination {
  display: flex;
  justify-content: center;
  gap: 0 26px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 100px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .homeProducts_slider .splide__pagination {
    gap: 0 20px;
    bottom: 74px;
  }
}
.homeProducts_slider .splide__pagination li {
  line-height: 0;
}
.homeProducts_slider .splide__pagination button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  width: 7px;
  height: 7px;
  background: #c1c2c3;
  border: none;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .homeProducts_slider .splide__pagination button {
    width: 5px;
    height: 5px;
  }
}
.homeProducts_slider .splide__pagination button.is-active {
  background: var(--color-pink);
  transform: none;
}
.homeProducts_list li {
  background-position: center bottom;
  background-size: auto;
  background-repeat: repeat-x;
  padding: 100px 0 150px;
}
@media screen and (max-width: 767px) {
  .homeProducts_list li {
    padding: calc(75 / 375 * 100vw) 0 120px;
  }
}
.homeProducts_list a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
.homeProducts_list a ._hoverImg {
  max-width: none;
}
@media (hover: hover) {
  .homeProducts_list a:hover ._contImg {
    opacity: 0;
  }
  .homeProducts_list a:hover ._hoverImg {
    opacity: 1;
  }
}
.homeProducts_list ._imgBox {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .homeProducts_list ._imgBox {
    width: 60%;
  }
}
.homeProducts_list ._imgBox img {
  transition: opacity 0.5s;
}
.homeProducts_list ._hoverImg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .homeProducts_list ._hoverImg {
    width: 100%;
  }
}
.homeProducts_list ._textBox {
  transition: opacity 0.4s;
}
.homeProducts_list ._catch {
  margin-top: 40px;
  font-family: var(--font-outfit);
  font-size: clamp(36px , calc(48 / 1280 * 100vw), 48px);
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .homeProducts_list ._catch {
    margin-top: 20px;
    font-size: min(calc(20 / 375 * 100vw), 20px);
  }
}
.homeProducts_list ._name {
  font-family: var(--font-outfit);
  font-size: clamp(52.5px , calc(70 / 1280 * 100vw), 70px);
  font-weight: 600;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .homeProducts_list ._name {
    font-size: min(calc(36 / 375 * 100vw), 36px);
  }
}
.homeProducts_list ._desc {
  max-width: 660px;
  margin: 20px auto 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .homeProducts_list ._desc {
    margin-top: 10px;
    padding: 0 var(--mg-sp);
  }
}
.homeProducts_list ._notes {
  font-size: 14px;
  line-height: 1.2857142857;
  text-align: left;
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .homeProducts_list ._notes {
    font-size: 10px;
    line-height: 1.25;
    bottom: 12px;
  }
}
.homeProducts_list ._airwall {
  background-image: url(../image/home/product_airwall_bg_pc.png);
}
@media screen and (max-width: 767px) {
  .homeProducts_list ._airwall {
    background-image: url(../image/home/product_airwall_bg_sp.png);
  }
}
.homeProducts_list ._airwall ._catch,
.homeProducts_list ._airwall ._name {
  color: var(--color-pink);
}
.homeProducts_list ._airwallpad {
  background-image: url(../image/home/product_airwall_bg_pc.png);
}
@media screen and (max-width: 767px) {
  .homeProducts_list ._airwallpad {
    background-image: url(../image/home/product_airwall_bg_sp.png);
  }
}
.homeProducts_list ._airwallpad ._catch,
.homeProducts_list ._airwallpad ._name {
  color: var(--color-pink);
}
@media screen and (max-width: 767px) {
  .homeProducts_list ._airwallpad ._hoverImg {
    width: 107.5%;
  }
}
.homeProducts_list ._cocoroll {
  background-image: url(../image/home/product_cocoroll_bg_pc.png);
}
@media screen and (max-width: 767px) {
  .homeProducts_list ._cocoroll {
    background-image: url(../image/home/product_cocoroll_bg_sp.png);
  }
}
.homeProducts_list ._cocoroll ._catch,
.homeProducts_list ._cocoroll ._name {
  color: var(--color-orange);
}
.homeProducts_list .is-prevSlide,
.homeProducts_list .is-nextSlide {
  background: none !important;
  opacity: 1 !important;
  transition: 0.4s !important;
  filter: blur(1px);
}
.homeProducts_list .is-prevSlide a,
.homeProducts_list .is-nextSlide a {
  pointer-events: none;
}
.homeProducts_list .is-prevSlide ._textBox,
.homeProducts_list .is-nextSlide ._textBox {
  opacity: 0;
}
.homeProducts_list .is-prevSlide ._imgBox {
  transform-origin: center top;
  transform: translate(max(-24vw, -308px), -5vw) scale(0.5);
}
@media screen and (max-width: 1000px) {
  .homeProducts_list .is-prevSlide ._imgBox {
    transform: translate(max(-30vw, -308px), -8vw) scale(0.4);
  }
}
@media screen and (max-width: 767px) {
  .homeProducts_list .is-prevSlide ._imgBox {
    transform: translate(max(-50vw, -308px), -20vw) scale(0.7);
  }
}
.homeProducts_list .is-nextSlide ._imgBox {
  transform-origin: center top;
  transform: translate(min(24vw, 308px), -5vw) scale(0.5);
}
@media screen and (max-width: 1000px) {
  .homeProducts_list .is-nextSlide ._imgBox {
    transform: translate(min(30vw, 308px), -8vw) scale(0.4);
  }
}
@media screen and (max-width: 767px) {
  .homeProducts_list .is-nextSlide ._imgBox {
    transform: translate(min(50vw, 308px), -20vw) scale(0.7);
  }
}
.homeProducts_list .is-active ._notes {
  opacity: 1;
}

.homeWhat {
  padding: 100px 0;
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .homeWhat {
    padding: 50px 0;
  }
}
.homeWhat_ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: var(--color-pink);
  font-family: var(--font-outfit);
  font-size: min(calc(60 / 1280 * 100vw), 60px);
  font-weight: 600;
  letter-spacing: 0.025em;
  -webkit-text-decoration: underline 2px var(--color-pink);
          text-decoration: underline 2px var(--color-pink);
  text-underline-offset: 0.6em;
}
@media screen and (max-width: 767px) {
  .homeWhat_ttl {
    font-size: min(calc(30 / 375 * 100vw), 30px);
    letter-spacing: 0;
    line-height: 1.7777777778;
    text-align: center;
    text-underline-offset: 0.4em;
  }
}
.homeWhat_desc {
  margin-top: 55px;
  font-size: clamp(20px , calc(30 / 1280 * 100vw), 30px);
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .homeWhat_desc {
    margin-top: 30px;
    font-size: min(calc(18 / 375 * 100vw), 18px);
    line-height: 1.8888888889;
    letter-spacing: 0.025em;
  }
}
.homeWhat_link a {
  margin: clamp(60px , calc(88 / 1280 * 100vw), 88px) auto 0;
}
@media screen and (max-width: 767px) {
  .homeWhat_link a {
    margin-top: 30px;
  }
}

.homePost {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 100px;
}
.homePost > * {
  width: min(calc(480 / 1280 * 100vw), 480px);
}
@media screen and (max-width: 767px) {
  .homePost > * {
    width: 100%;
  }
  .homePost > * + * {
    margin-top: 50px;
  }
}
.homePost h2 {
  padding-left: min(calc(40 / 375 * 100vw), 40px);
  color: var(--color-pink);
  font-family: var(--font-outfit);
  font-size: clamp(36px , calc(48 / 1280 * 100vw), 48px);
  font-weight: 600;
  letter-spacing: 0.025em;
  position: relative;
}
.homePost h2::before {
  content: "";
  display: block;
  width: min(calc(30 / 375 * 100vw), 30px);
  height: 4px;
  background: var(--color-pink);
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .homePost h2 {
    font-size: min(calc(36 / 375 * 100vw), 36px);
  }
}
.homePost ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.homePost ul li {
  width: min(calc(230 / 1280 * 100vw), 230px);
}
@media screen and (max-width: 767px) {
  .homePost ul li {
    width: calc(160 / 375 * 100vw);
  }
}
.homePost ul a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.homePost ul a > * {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .homePost ul a {
    display: block;
  }
}
.homePost ul ._ttl {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: min(calc(30 / 375 * 100vw), 20px);
  font-family: var(--font-outfit);
}
@media screen and (max-width: 767px) {
  .homePost ul ._ttl {
    font-size: min(calc(20 / 375 * 100vw), 20px);
  }
}
.homePost ul ._time {
  display: block;
  margin-top: auto;
  color: var(--color-pink);
  font-size: clamp(12px , calc(18 / 1280 * 100vw), 18px);
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .homePost ul ._time {
    font-size: min(calc(16 / 375 * 100vw), 16px);
  }
}
.homePost ul img {
  width: 100%;
}
.homePost .m-btn-arrow {
  margin-top: 20px;
}

.homeNews {
  margin-top: 80px;
}
.homeNews h2 {
  padding-left: min(calc(40 / 375 * 100vw), 40px);
  color: var(--color-pink);
  font-family: var(--font-outfit);
  font-size: clamp(36px , calc(48 / 1280 * 100vw), 48px);
  font-weight: 600;
  letter-spacing: 0.025em;
  position: relative;
}
.homeNews h2::before {
  content: "";
  display: block;
  width: min(calc(30 / 375 * 100vw), 30px);
  height: 4px;
  background: var(--color-pink);
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .homeNews h2 {
    font-size: min(calc(36 / 375 * 100vw), 36px);
  }
}
.homeNews ul {
  margin-top: 30px;
}
.homeNews li {
  display: flex;
  border-bottom: 1px solid #d4d5d5;
  font-size: clamp(16px , calc(20 / 1280 * 100vw), 20px);
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .homeNews li {
    font-size: 14px;
  }
}
.homeNews li time {
  width: clamp(120px , calc(140 / 1280 * 100vw), 140px);
  color: var(--color-pink);
}
@media screen and (max-width: 767px) {
  .homeNews li time {
    width: 90px;
  }
}
.homeNews li h3 {
  flex: 1;
}

/* ========================================

======================================== */
.productVideo {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  overflow-y: scroll;
}
.productVideo.is-hidden {
  overflow: hidden;
}
.productVideo::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 100px);
}
@media screen and (max-width: 767px) {
  .productVideo::after {
    height: 100%;
  }
}
.productVideo video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.productVideo_box {
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 767px) {
  .productVideo_box {
    display: flex;
    align-items: center;
  }
}
.airwall .productVideo_box {
  background: url(../image/airwall/video_bg.png) center/cover;
}
.airwallpad .productVideo_box {
  background: url(../image/airwallpad/video_bg.png) center/cover;
}
.cocoroll .productVideo_box {
  background: url(../image/cocoroll/video_bg.png) center/cover;
}
.productVideo_scroll {
  display: none;
  padding-bottom: 10px;
  color: var(--color-pink);
  font-family: var(--font-outfit);
  font-size: clamp(14px, 1.25vw, 24px);
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 2;
}
.productVideo_scroll::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-left: 2px solid var(--color-pink);
  border-bottom: 2px solid var(--color-pink);
  transform: translate(-50%, 0) rotate(-45deg);
  position: absolute;
  left: 50%;
  bottom: 0;
  opacity: 0;
  animation: scroll 1.8s linear infinite;
}
.productVideo_scroll.-orange {
  color: var(--color-orange);
}
.productVideo_scroll.-orange::before {
  border-color: var(--color-orange);
}
@keyframes scroll {
  0% {
    opacity: 0;
    transform: translate(-50%, 0) rotate(-45deg);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, 5px) rotate(-45deg);
  }
  60% {
    opacity: 1;
    transform: translate(-50%, 15px) rotate(-45deg);
  }
  80% {
    opacity: 0;
    transform: translate(-50%, 20px) rotate(-45deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 20px) rotate(-45deg);
  }
}

.productMv {
  position: relative;
}
.productMv img {
  width: 100%;
}
.productMv_videoBtn {
  display: flex;
  align-items: center;
  gap: 0 10px;
  color: var(--color-pink);
  font-family: var(--font-outfit);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  position: absolute;
  left: calc(40 / 1280 * 100vw);
  bottom: calc(90 / 1280 * 100vw);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .productMv_videoBtn {
    left: calc(20 / 375 * 100vw);
    bottom: calc(40 / 375 * 100vw);
  }
}
.productMv_videoBtn::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url(../image/common/arrow_left.svg) center/auto no-repeat;
  border: 1px solid var(--color-pink);
  border-radius: 50px;
  transition: 0.3s;
}
@media (hover: hover) {
  .productMv_videoBtn:hover::before {
    background-color: var(--color-pink);
    background-image: url(../image/common/arrow_left_white.svg);
  }
}
.productMv_videoBtn.-orange {
  color: var(--color-orange);
}
.productMv_videoBtn.-orange::before {
  border-color: var(--color-orange);
  background-image: url(../image/common/arrow_left_orange.svg);
}
@media (hover: hover) {
  .productMv_videoBtn.-orange:hover::before {
    background-color: var(--color-orange);
    background-image: url(../image/common/arrow_left_white.svg);
  }
}

.productCont02 {
  background: #f5f5f5;
}

.productTabBox {
  width: min(calc(1020 / 1280 * 100vw), 1020px);
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(251, 230, 238, 0.7);
}
@media screen and (max-width: 767px) {
  .productTabBox {
    width: calc(335 / 375 * 100vw);
    padding: calc(20 / 375 * 100vw) 0;
  }
}

.productBg2 {
  padding: min(calc(100 / 1280 * 100vw), 100px) 0;
}

.productTabBox {
  padding: min(calc(60 / 1280 * 100vw), 60px) 0 min(calc(70 / 1280 * 100vw), 70px);
}

.productTabBox_inner {
  width: min(calc(880 / 1280 * 100vw), 880px);
  margin-left: auto;
  margin-right: auto;
  background: #f5f5f5;
  padding-bottom: min(calc(25 / 1280 * 100vw), 25px);
}
@media screen and (max-width: 767px) {
  .productTabBox_inner {
    width: calc(295 / 375 * 100vw);
    padding-bottom: calc(20 / 375 * 100vw);
  }
}
.productTabBox_inner + .productTabBox_inner {
  margin-top: min(calc(100 / 1280 * 100vw), 100px);
}
@media screen and (max-width: 767px) {
  .productTabBox_inner + .productTabBox_inner {
    margin-top: calc(40 / 375 * 100vw);
  }
}

.productCont01 img {
  width: 100%;
}

.productCont02 img {
  width: 100%;
}

.productCont03 {
  background: #fff;
}
.productCont03 img {
  width: 100%;
}

.productCont04 img {
  width: 100%;
}

.productCont05 img {
  width: 100%;
}

.productTabNav1Box,
.productTabNav2Box {
  display: flex;
  justify-content: space-between;
  width: min(calc(780 / 1280 * 100vw), 780px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .productTabNav1Box,
  .productTabNav2Box {
    flex-direction: column;
    gap: calc(25 / 375 * 100vw) 0;
    width: calc(255 / 375 * 100vw);
  }
}
.productTabNav1Box > *,
.productTabNav2Box > * {
  cursor: pointer;
}
.productTabNav1Box .is-active img,
.productTabNav2Box .is-active img {
  filter: drop-shadow(0px 0px 2px #e87bac);
}
.productTabNav1Box img,
.productTabNav2Box img {
  width: 100%;
}

.productTabNav1 {
  width: min(calc(250 / 1280 * 100vw), 250px);
}
@media screen and (max-width: 767px) {
  .productTabNav1 {
    width: 100%;
  }
}

.productTabNav2 {
  width: min(calc(382 / 1280 * 100vw), 382px);
}
@media screen and (max-width: 767px) {
  .productTabNav2 {
    width: 100%;
  }
}

.productTabCont1,
.productTabCont2 {
  display: none;
  width: min(calc(780 / 1280 * 100vw), 780px);
  margin-left: auto;
  margin-right: auto;
  margin-top: min(calc(25 / 1280 * 100vw), 25px);
}
@media screen and (max-width: 767px) {
  .productTabCont1,
  .productTabCont2 {
    width: calc(255 / 375 * 100vw);
    margin-top: calc(-15 / 375 * 100vw);
    padding-bottom: calc(20 / 375 * 100vw);
  }
}

.productSize {
  background: #f5f5f5;
  padding-bottom: min(calc(90 / 1280 * 100vw), 90px);
}
.productSize_wrap {
  width: min(calc(1020 / 1280 * 100vw), 1020px);
  background: #fbedf2;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .productSize_wrap {
    width: 100%;
  }
}
.productSize_ttl img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .productSize_slide .splide__list {
    transition: 0s !important;
  }
}
.productSize_slide .splide__slide img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .productSize_slide .splide__pagination {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .productSize_slide .splide__pagination {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 0 calc(16 / 375 * 100vw);
    margin-top: 0;
    position: absolute;
    left: 0;
    bottom: calc(38 / 375 * 100vw);
  }
}
.productSize_slide .splide__pagination li {
  line-height: 0;
}
.productSize_slide .splide__pagination button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  width: calc(6 / 375 * 100vw);
  height: calc(6 / 375 * 100vw);
  background: #c1c2c3;
  border: none;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.productSize_slide .splide__pagination button.is-active {
  background: var(--color-pink);
  transform: none;
}
.productSize_themSlide .splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 2px solid var(--color-pink);
}
.productSize_text img {
  width: 100%;
}

.productSlideTtl img {
  width: 100%;
}

.productSlide {
  position: relative;
}
.productSlide .splide__slide img {
  width: 100%;
}
.productSlide .splide__arrows {
  display: flex;
  justify-content: space-between;
  width: min(calc(134 / 1280 * 100vw), 134px);
  position: absolute;
  left: 41%;
  bottom: 14%;
}
@media screen and (max-width: 767px) {
  .productSlide .splide__arrows {
    position: static;
  }
}
.productSlide .splide__arrow {
  width: min(calc(52 / 1280 * 100vw), 52px);
  height: min(calc(52 / 1280 * 100vw), 52px);
  border-radius: 50%;
  border: 1px solid var(--color-pink);
  background: #fff;
  position: static;
  transform: none;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .productSlide .splide__arrow {
    width: calc(30 / 375 * 100vw);
    height: calc(30 / 375 * 100vw);
    position: absolute;
    top: calc(144 / 375 * 100vw);
  }
  .productSlide .splide__arrow--prev {
    left: calc(50 / 375 * 100vw);
  }
  .productSlide .splide__arrow--next {
    right: calc(8 / 375 * 100vw);
  }
  .productSlide .splide__arrow img {
    width: calc(7 / 375 * 100vw);
    height: calc(7 / 375 * 100vw);
  }
}

.productNav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 min(calc(100 / 1280 * 100vw), 100px);
  padding: min(calc(100 / 1280 * 100vw), 100px) 0;
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .productNav {
    padding: calc(50 / 375 * 100vw) 0 calc(70 / 375 * 100vw);
  }
}
.productNav .productNav_ttl {
  font-size: min(calc(30 / 1280 * 100vw), 30px);
  font-family: var(--font-outfit);
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .productNav .productNav_ttl {
    font-size: calc(24 / 375 * 100vw);
    padding-left: calc(20 / 375 * 100vw);
  }
}
.productNav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 min(calc(50 / 1280 * 100vw), 50px);
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .productNav ul {
    margin-top: calc(30 / 375 * 100vw);
  }
}
.productNav li {
  width: min(calc(270 / 1280 * 100vw), 270px);
}
@media screen and (max-width: 767px) {
  .productNav li {
    width: calc(116 / 375 * 100vw);
  }
}
@media (hover: hover) {
  .productNav a {
    transition: opacity 0.3s;
  }
  .productNav a:hover {
    opacity: 0.7;
  }
}
.productNav img {
  width: 100%;
}

.airwall .productBg1 {
  background: url(../image/airwall/bg01_pc.png) center top/cover;
}
@media screen and (max-width: 767px) {
  .airwall .productBg1 {
    background-image: url(../image/airwall/bg01_sp.png);
  }
}
.airwall .productBg2 {
  background: url(../image/airwall/bg02_pc.png) center top/cover;
}
@media screen and (max-width: 767px) {
  .airwall .productBg2 {
    background-image: url(../image/airwall/bg02_sp.png);
  }
}

.airwallpad .productTabBox {
  box-shadow: 0 0 11px rgba(193, 194, 195, 0.5);
}
@media screen and (max-width: 767px) {
  .airwallpad .productCont02 {
    margin-top: calc(40 / 375 * 100vw);
  }
}

.cocoroll .productBg1 {
  background: url(../image/cocoroll/bg01_pc.png) center top/cover;
}
@media screen and (max-width: 767px) {
  .cocoroll .productBg1 {
    background-image: url(../image/cocoroll/bg01_sp.png);
  }
}
.cocoroll .productBg2 {
  background: url(../image/cocoroll/bg02_pc.png) center top/cover;
}
@media screen and (max-width: 767px) {
  .cocoroll .productBg2 {
    background-image: url(../image/cocoroll/bg02_sp.png);
  }
}
.cocoroll .productTabBox {
  box-shadow: 0 0 11px rgba(193, 194, 195, 0.5);
}
.cocoroll .productSlide .splide__arrow {
  border-color: var(--color-orange);
}
.cocoroll .productTabNav1Box .is-active img,
.cocoroll .productTabNav2Box .is-active img {
  filter: drop-shadow(0px 0px 2px var(--color-orange));
}

/* ========================================
About Us .about
======================================== */
.about {
  background: url(/wp-content/themes/skinix/assets/image/about/bg.png) center bottom/auto repeat-x;
  padding-bottom: 150px;
}
.about .l-tabBtnBox {
  margin-top: 80px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .about .l-tabBtnBox {
    margin: 35px 0 40px;
  }
}

.aboutMv img {
  width: 100%;
}

.aboutMainTtl {
  margin-top: 25px;
  color: var(--color-pink);
  font-family: var(--font-outfit);
  font-weight: 600;
  font-size: min(calc(60 / 1280 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .aboutMainTtl {
    margin-top: 20px;
    font-size: 36px;
  }
}

.aboutCont img {
  width: 100%;
}

/* ========================================
About Us .about
======================================== */
.knowledge {
  padding-bottom: 150px;
}
.knowledge .l-tabBtnBox {
  margin-top: 80px;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .knowledge .l-tabBtnBox {
    margin: 20px 0 30px;
  }
}

.knowledgeMainTtl {
  margin-top: 25px;
  color: var(--color-pink);
  font-family: var(--font-outfit);
  font-weight: 600;
  font-size: min(calc(60 / 1280 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .knowledgeMainTtl {
    margin-top: 20px;
    font-size: 36px;
  }
}

.knowledgeCont_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 4.4117647059%;
  margin-top: 30px;
}
.knowledgeCont_list li {
  width: 30.3921568627%;
}
@media screen and (max-width: 767px) {
  .knowledgeCont_list li {
    width: 100%;
  }
}
.knowledgeCont_list a {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.knowledgeCont_list a > * {
  width: 100%;
}
.knowledgeCont_list ._imgBox {
  padding-top: 80.6451612903%;
  position: relative;
}
.knowledgeCont_list ._imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.knowledgeCont_list ._ttl {
  margin: 10px 0;
  font-family: var(--font-outfit);
  font-size: clamp(20px , calc(30 / 1280 * 100vw), 30px);
  font-weight: 600;
  line-height: 1.0666666667;
}
@media screen and (max-width: 767px) {
  .knowledgeCont_list ._ttl {
    font-size: min(calc(24 / 375 * 100vw), 24px);
    line-height: 1;
  }
}
.knowledgeCont_list ._time {
  display: block;
  margin-top: auto;
  color: var(--color-pink);
  font-size: clamp(14px , calc(20 / 1280 * 100vw), 20px);
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .knowledgeCont_list ._time {
    font-size: min(calc(16 / 375 * 100vw), 16px);
  }
}

/* ========================================
contact お問い合わせ
======================================== */
.contact {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-bottom: 90px;
  }
}

.contactIntro_mainTtl {
  padding-top: 32px;
  color: var(--color-pink);
  font-family: var(--font-outfit);
  font-size: min(calc(48 / 1280 * 100vw), 48px);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .contactIntro_mainTtl {
    padding-top: 20px;
    font-size: calc(28 / 375 * 100vw);
  }
}
.contactIntro_read {
  text-align: center;
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .contactIntro_read {
    margin-top: 2px;
  }
}
.contactIntro_links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px calc(72 / 1280 * 100vw);
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .contactIntro_links {
    flex-direction: column;
    align-items: center;
    gap: 15px 0;
    margin-top: 24px;
  }
}
.contactIntro_links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46%;
  max-width: 430px;
  height: min(calc(80 / 1280 * 100vw), 80px);
  padding: 0 20px;
  background: var(--color-pink);
  border-radius: 40px;
  color: #fff;
  font-family: var(--font-outfit);
  font-size: min(calc(24 / 1280 * 100vw), 24px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .contactIntro_links a {
    width: calc(300 / 375 * 100vw);
    height: 50px;
    font-size: max(calc(16 / 375 * 100vw), 15px);
    letter-spacing: 0.04em;
  }
}

.contactContainer {
  margin-top: 100px;
  padding: 60px min(calc(70 / 1280 * 100vw), 70px) 78px;
  border-radius: 15px;
  box-shadow: 0 0 11px rgba(193, 194, 195, 0.5);
}
@media screen and (max-width: 767px) {
  .contactContainer {
    margin-top: 40px;
    padding: 38px var(--mg-sp);
  }
}
.contactContainer_ttl {
  color: var(--color-pink);
  font-family: var(--font-outfit);
  font-size: min(calc(36 / 1280 * 100vw), 36px);
  font-weight: 600;
  letter-spacing: 0.025em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contactContainer_ttl {
    font-size: calc(24 / 375 * 100vw);
  }
}
.contactContainer_desc {
  margin-top: 25px;
  font-size: min(calc(24 / 1280 * 100vw), 24px);
}
@media screen and (max-width: 767px) {
  .contactContainer_desc {
    margin-top: 5px;
    font-size: calc(18 / 375 * 100vw);
    line-height: 1.3888888889;
  }
}
.contactContainer_desc a {
  -webkit-text-decoration: underline 2px var(--color-black);
          text-decoration: underline 2px var(--color-black);
  text-underline-offset: 0.3em;
}
.contact-confirm .contactContainer_desc {
  text-align: center;
}
.contactContainer .l-form {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .contactContainer .l-form {
    margin-top: 32px;
  }
}

.contact-complet_read {
  margin-top: 102px;
  color: var(--color-pink);
  font-family: var(--font-outfit);
  font-size: clamp(30px , calc(36 / 1280 * 100vw), 36px);
  line-height: 1.5277777778;
  text-align: center;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .contact-complet_read {
    margin-top: 26px;
    font-size: min(calc(24 / 375 * 100vw), 24px);
    line-height: 1.25;
  }
}
.contact-complet_message {
  margin: 54px auto 0;
  max-width: 880px;
  padding-top: 42px;
  border-top: 1px solid #717071;
}
@media screen and (max-width: 767px) {
  .contact-complet_message {
    margin-top: 40px;
    padding-top: 15px;
    line-height: 1.3888888889;
  }
}
.contact-complet_back {
  margin-top: 43px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-complet_back {
    margin-top: 25px;
  }
}
.contact-complet_back a {
  display: flex;
  align-items: center;
  gap: 0 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.contact-complet_back a::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--color-pink);
  background: url(../image/common/arrow_left.svg) center/auto no-repeat;
}/*# sourceMappingURL=style.css.map */