@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  letter-spacing: 1px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
}

a {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

:root {
  --container: 1375px;
  --offset: 205px;
}

header {
  box-shadow: 0 4px 11.1px 0 rgba(0, 0, 0, 0.15);
}
header .inner {
  padding: 0 30px;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease-in-out;
}
@media (max-width: 768px) {
  header .inner {
    height: 60px;
  }
}
@media (max-width: 600px) {
  header .inner {
    padding: 20px;
  }
}
header .inner figure {
  display: block;
  margin: 0;
}
@media (max-width: 600px) {
  header .inner figure {
    max-width: 130px;
  }
  header .inner figure img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
header .inner ul {
  display: flex;
  align-items: center;
}
header .inner ul li {
  margin-right: 30px;
}
@media (max-width: 930px) {
  header .inner ul li {
    margin-right: 15px;
  }
}
@media (max-width: 800px) {
  header .inner ul li {
    margin-right: 5px;
  }
}
@media (max-width: 768px) {
  header .inner ul li {
    text-align: center;
    font-size: 1.4rem;
  }
}
header .inner ul li:last-child {
  margin-right: 0;
}
header .inner ul li a {
  color: #000;
  font-size: 1.4rem;
  font-family: "Gabarito", sans-serif;
  letter-spacing: 0.05em;
  font-weight: bold;
}
header .inner ul li .sub-menu {
  display: flex;
  /* ← 常にflex（ここ重要） */
  position: absolute;
  top: 38px;
  left: 0;
  width: 255%;
  margin: 0;
  background-color: #fff;
  padding: 20px 20px;
  z-index: 9;
  /* 閉じた状態 */
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
header .inner ul li .sub-menu li a {
  font-weight: 400;
}
header .inner ul li.has-sub {
  position: relative;
}
header .inner ul li.has-sub.is-open .sub-menu {
  display: flex;
  position: absolute;
  top: 32px;
  width: 255%;
  left: 0;
  margin: 0;
  background-color: #fff;
  padding: 20px 20px;
  z-index: 99;
  max-height: 200px;
  /* サブの高さに合わせて十分大きめに */
  opacity: 1;
  max-width: initial;
  pointer-events: auto;
}
@media (max-width: 768px) {
  header .inner ul li.has-sub.is-open .sub-menu {
    position: initial;
    width: 100%;
    background-color: transparent;
    flex-direction: column;
    padding: 20px 0;
    gap: 20px;
    overflow: hidden;
    max-height: 0;
    transform: none;
    transition: max-height 0.35s ease, opacity 0.25s ease;
  }
}
header.is-fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  z-index: 999;
}
header.is-fixed .inner {
  height: 60px;
}

/* ページのガクッ防止 */
body.has-fixed-header {
  padding-top: 60px;
}

.sec_mv_brand {
  width: 100%;
  padding: 0px 0;
}
@media (max-width: 680px) {
  .sec_mv_brand {
    padding: 0px;
  }
}
@media (max-width: 680px) {
  .sec_mv_brand.othercollection {
    min-height: 599px;
  }
}
.sec_mv_brand.othercollection .ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Gabarito", sans-serif;
  font-size: 8rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.2));
}
@media (max-width: 1300px) {
  .sec_mv_brand.othercollection .ttl {
    text-align: center;
    font-size: 7rem;
    transform: translate(-50%, 0%);
    width: 100%;
  }
}
@media (max-width: 680px) {
  .sec_mv_brand.othercollection .ttl {
    display: none;
  }
}
.sec_mv_brand .sp {
  display: none;
}
@media (min-width: 681px) {
  .sec_mv_brand .sp_mv {
    display: none;
  }
}
@media (max-width: 680px) {
  .sec_mv_brand .pc_mv {
    display: none;
  }
}
@media (max-width: 600px) {
  .sec_mv_brand {
    padding: 0px;
    display: block;
  }
  .sec_mv_brand .sp {
    display: block;
  }
  .sec_mv_brand .pc {
    display: none;
  }
}

.sec_mv {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  letter-spacing: 0.15em;
  font-family: "Gabarito", sans-serif;
  background-size: cover;
  background-position: center;
  color: #fff;
  font-family: "Gabarito", sans-serif;
  position: relative;
}
.sec_mv h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media (min-width: 601px) {
  .sec_mv .sp_mv {
    display: none;
  }
}
@media (max-width: 600px) {
  .sec_mv {
    font-size: 3.5rem;
  }
  .sec_mv .pc_mv {
    display: none;
  }
}

.slug-recruit .sec_mv h2,
.tax-item_series .sec_mv h2,
.tax-item_category .sec_mv h2,
.post-type-archive-items .sec_mv h2 {
  right: 19vw;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
}
@media (max-width: 1000px) {
  .slug-recruit .sec_mv h2,
  .tax-item_series .sec_mv h2,
  .tax-item_category .sec_mv h2,
  .post-type-archive-items .sec_mv h2 {
    right: 10vw;
  }
}
@media (max-width: 680px) {
  .slug-recruit .sec_mv,
  .tax-item_series .sec_mv,
  .tax-item_category .sec_mv,
  .post-type-archive-items .sec_mv {
    font-size: 2.5rem;
    justify-content: flex-end;
  }
}

@media (max-width: 800px) {
  .slug-recruit .sec_mv h2 {
    right: 7vw;
    font-size: 4rem;
  }
}
@media (max-width: 600px) {
  .slug-recruit .sec_mv h2 {
    justify-content: center;
    left: auto;
    right: auto;
    transform: translate(0%, -50%);
    width: 100%;
    text-align: center;
  }
}

.page-recruit .sec_mv {
  color: #fff;
}
@media (max-width: 700px) {
  .page-recruit .sec_mv h2 {
    left: auto;
    transform: translate(0%, -50%);
  }
}

.page-about .sec_mv {
  background-image: url(../img/about/mv.jpg);
  color: #000;
  min-height: 562px;
}
@media (max-width: 700px) {
  .page-about .sec_mv {
    background-image: url(../img/about/sp_mv.jpg);
    min-height: 362px;
  }
}
@media (max-width: 500px) {
  .page-about .sec_mv {
    min-height: 230px;
    height: 230px;
  }
}

.sec_mv_brand,
.sec_mv {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease-out 0.3s forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn {
  text-align: center;
}
.btn a {
  font-family: "Gabarito", sans-serif;
  display: block;
  max-width: 200px;
  margin: 0 auto;
  font-size: 1.4rem;
  color: #000;
  line-height: 1.3;
  padding: 19px 47px;
  border: 1px solid #000;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (max-width: 500px) {
  .btn a {
    padding: 20px 20px;
    max-width: 100%;
    height: 55px;
  }
}
.btn a:hover {
  opacity: 1;
  background-color: #000;
  color: #fff;
}
.btn.wh a {
  color: #fff;
  border: 1px solid #fff;
}
.btn.wh a:hover {
  background-color: #fff;
  color: #000;
}

.hamburger {
  display: none;
}

/*------------------------------
       トップページ
------------------------------*/
@media (min-width: 861px) {
  .kv_sp {
    display: none !important;
  }
}
@media (max-width: 860px) {
  .kv_pc {
    display: none !important;
  }
}
/* ======================================
  KV Swiper
====================================== */
.kv-swiper {
  position: relative;
  width: 100%;
  padding: 0px 0px 0;
  overflow-y: visible;
}
@media (max-width: 500px) {
  .kv-swiper {
    padding: 0;
  }
}
.kv-swiper .right_txt {
  z-index: 3;
  position: absolute;
  right: 20px;
  top: 50%;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  letter-spacing: 0.4em;
  font-size: 1rem;
}
@media (max-width: 860px) {
  .kv-swiper .right_txt {
    right: 10px;
    font-size: 1rem;
  }
}
.kv-swiper .left_txt {
  position: absolute;
  left: 20px;
  top: 50%;
  z-index: 3;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  letter-spacing: 0.1em;
  transform: translateY(-50%) rotate(180deg);
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  letter-spacing: 0.4em;
  font-size: 1rem;
}
@media (max-width: 860px) {
  .kv-swiper .left_txt {
    left: 10px;
    font-size: 1rem;
  }
}

/* 横の画像を隠す */
.kv-swiper-inner {
  width: 100%;
  overflow: hidden;
}

/* Swiper本体 */
.kv-slider {
  height: 100%;
  overflow: visible;
}
.kv-slider .swiper-slide {
  width: 100%;
}
.kv-slider img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 初期状態（等倍） */
.kv-slider .swiper-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 表示中スライド → 拡大 */
/* 前後スライドは少し薄く */
/* =========================
  ページネーション（外出し）
========================= */
.kv-swiper .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px !important;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 14px;
  /* ● → 線 */
}
@media (max-width: 680px) {
  .kv-swiper .swiper-pagination {
    gap: 5px;
  }
}
.kv-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 60px;
  height: 2px;
  margin: 0 !important;
  border-radius: 0;
  background-color: #e0e0e0;
  opacity: 1;
}
@media (max-width: 680px) {
  .kv-swiper .swiper-pagination .swiper-pagination-bullet {
    height: 3px;
  }
}
@media (max-width: 500px) {
  .kv-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 30px;
  }
}
.kv-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000;
}

.box01 {
  margin-top: 80px;
}
.box01 .inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 870px) {
  .box01 .inner {
    flex-direction: column-reverse;
  }
}
.box01 .inner .right_box {
  max-width: 517px;
}
@media (max-width: 600px) {
  .box01 .inner .right_box {
    width: 100%;
  }
}
.box01 .inner .left_box {
  text-align: center;
}
@media (max-width: 870px) {
  .box01 .inner .left_box {
    margin-top: 50px;
    width: 100%;
  }
}
.box01 .inner .left_box .sub_ttl {
  font-size: 2.3rem;
  letter-spacing: 0.15em;
  line-height: 1.7;
  margin-bottom: 35px;
  font-weight: 700;
}
@media (max-width: 680px) {
  .box01 .inner .left_box .sub_ttl {
    margin-top: 35px;
  }
}
.box01 .inner .left_box .txt {
  font-size: 1.6rem;
  line-height: 2.4;
  margin-bottom: 65px;
}
@media (max-width: 500px) {
  .box01 .inner .left_box .txt {
    margin-bottom: 25px;
  }
}

.box02 {
  margin: 70px auto 0;
  padding: 0px;
}
@media (max-width: 680px) {
  .box02 {
    padding: 0px;
    margin: 75px auto 0;
  }
}
.box02 .inner {
  background-image: url(../img/top/box02bk.jpg);
  background-size: cover;
  height: 52.1vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media (max-width: 650px) {
  .box02 .inner {
    height: 100vw;
    background-image: url(../img/top/box02bk_sp.jpg);
  }
}
@media (max-width: 500px) {
  .box02 .inner {
    justify-content: flex-start;
    align-items: end;
  }
}
.box02 .inner .txtbox {
  max-width: 200px;
  margin-left: clamp(205px, 15vw, 320px);
}
@media (max-width: 1200px) {
  .box02 .inner .txtbox {
    margin-left: clamp(170px, 15vw, 320px);
  }
}
@media (max-width: 1100px) {
  .box02 .inner .txtbox {
    margin-left: clamp(140px, 12vw, 320px);
  }
}
@media (max-width: 1000px) {
  .box02 .inner .txtbox {
    margin-left: clamp(50px, 10vw, 320px);
  }
}
@media (max-width: 680px) {
  .box02 .inner .txtbox {
    max-width: 100%;
    padding: 50px 0;
  }
}
.box02 .inner .txtbox .ttl {
  color: #fff;
  text-align: center;
  font-size: 5rem;
  line-height: 1.2;
  letter-spacing: 0.15em;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  margin-bottom: 23px;
}
@media (max-width: 860px) {
  .box02 .inner .txtbox .ttl {
    font-size: 4rem;
  }
}
@media (max-width: 680px) {
  .box02 .inner .txtbox .ttl {
    margin-bottom: 20px;
  }
}

.box02_2 {
  margin: 30px auto 0;
  padding: 0px;
}
@media (max-width: 680px) {
  .box02_2 {
    padding: 0px;
    margin: 20px auto 0;
  }
}
.box02_2 .inner {
  background-image: url(../img/top/box03bk.jpg);
  background-size: cover;
  height: 52.1vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 680px) {
  .box02_2 .inner {
    background-image: url(../img/top/box03bk_sp.jpg);
    height: 100vw;
  }
}
@media (max-width: 500px) {
  .box02_2 .inner {
    justify-content: flex-end;
    align-items: end;
  }
}
.box02_2 .inner .txtbox {
  max-width: 200px;
  margin-right: clamp(205px, 15vw, 320px);
}
@media (max-width: 1200px) {
  .box02_2 .inner .txtbox {
    margin-right: clamp(170px, 15vw, 320px);
  }
}
@media (max-width: 1100px) {
  .box02_2 .inner .txtbox {
    margin-right: clamp(140px, 12vw, 320px);
  }
}
@media (max-width: 1000px) {
  .box02_2 .inner .txtbox {
    margin-right: clamp(50px, 10vw, 320px);
  }
}
@media (max-width: 680px) {
  .box02_2 .inner .txtbox {
    max-width: 100%;
    padding: 82px 20px 0;
    margin-right: 0;
  }
}
@media (max-width: 500px) {
  .box02_2 .inner .txtbox {
    max-width: 100%;
    padding: 50px;
  }
}
.box02_2 .inner .txtbox .ttl {
  color: #fff;
  text-align: center;
  font-size: 5rem;
  line-height: 1.2;
  letter-spacing: 0.15em;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  margin-bottom: 23px;
}
@media (max-width: 860px) {
  .box02_2 .inner .txtbox .ttl {
    font-size: 4rem;
  }
}
@media (max-width: 680px) {
  .box02_2 .inner .txtbox .ttl {
    margin-bottom: 20px;
  }
}

.box03 {
  background-size: cover;
  margin: 30px auto 0;
  padding: 0px;
  height: 52.1vw;
  max-height: 52.1vw;
  overflow: hidden;
}
@media (max-width: 680px) {
  .box03 {
    padding: 0px;
    height: auto;
    max-height: 100%;
  }
}
.box03 .inner {
  display: flex;
  /* 左右共通 */
}
.box03 .inner .txt_box {
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 680px) {
  .box03 .inner .txt_box {
    padding-top: 70px;
    width: 84%;
  }
}
.box03 .inner .txt_box .ttl {
  font-size: 5rem;
  line-height: 1.2;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 38px;
  letter-spacing: 0.15em;
}
@media (max-width: 860px) {
  .box03 .inner .txt_box .ttl {
    font-size: 2.5rem;
  }
}
@media (max-width: 650px) {
  .box03 .inner .txt_box .ttl {
    margin-bottom: 15px;
  }
}
.box03 .inner .txt_box .txt {
  font-size: 1.4rem;
  line-height: 2.1;
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  height: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}
@media (max-width: 650px) {
  .box03 .inner .txt_box .txt {
    display: none;
  }
}
@media (max-width: 850px) {
  .box03 .inner .txt_box .txt .btn a {
    padding: 10px;
    font-size: 1.2rem;
    width: 80%;
  }
}
.box03 .inner .left_box,
.box03 .inner .right_box {
  width: 50%;
  height: 52.1vw;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* 黒オーバーレイ */
}
@media (max-width: 680px) {
  .box03 .inner .left_box,
  .box03 .inner .right_box {
    width: 100%;
    height: 240px;
  }
}
.box03 .inner .left_box::before,
.box03 .inner .right_box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.24);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.box03 .inner .left_box:hover::before,
.box03 .inner .right_box:hover::before {
  opacity: 1;
}
.box03 .inner .left_box:hover .txt,
.box03 .inner .right_box:hover .txt {
  height: auto;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  margin-bottom: 45px;
}
@media (max-width: 650px) {
  .box03 .inner .left_box:hover .txt,
  .box03 .inner .right_box:hover .txt {
    margin-bottom: 25px;
  }
}
.box03 .inner .left_box {
  background-image: url(../img/top/box04bkimg01.jpg);
}
@media (max-width: 680px) {
  .box03 .inner .left_box {
    background-image: url(../img/top/box04bkimg01_sp.jpg);
    margin-bottom: 30px;
  }
}
.box03 .inner .right_box {
  background-image: url(../img/top/box04bkimg02.jpg);
}
@media (max-width: 680px) {
  .box03 .inner .right_box {
    background-image: url(../img/top/box04bkimg02_sp.jpg);
  }
}

.top_newsbox {
  max-width: 1205px;
  margin: 190px auto 0;
  padding: 0 30px;
}
@media (max-width: 870px) {
  .top_newsbox {
    margin: 40px auto 0;
  }
}
@media (max-width: 680px) {
  .top_newsbox {
    margin: 70px auto 0;
    padding: 0 20px;
  }
}
.top_newsbox .inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  .top_newsbox .inner {
    flex-direction: column;
  }
}
.top_newsbox .inner .ttl {
  font-size: 5rem;
  line-height: 1.2;
  letter-spacing: 0.15em;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
}
@media (max-width: 860px) {
  .top_newsbox .inner .ttl {
    font-size: 4rem;
    text-align: center;
  }
}
@media (max-width: 680px) {
  .top_newsbox .inner .ttl {
    margin-bottom: 35px;
  }
}
.top_newsbox .inner .txt_box {
  max-width: 800px;
  width: 100%;
}
@media (max-width: 1100px) {
  .top_newsbox .inner .txt_box {
    max-width: 100%;
  }
}
.top_newsbox .inner .txt_box dl {
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 500px) {
  .top_newsbox .inner .txt_box dl {
    flex-direction: column;
  }
}
.top_newsbox .inner .txt_box dl dt {
  padding: 40px 0;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  width: 30%;
  border-bottom: 1px solid #D9D9D9;
  letter-spacing: 0.15em;
  line-height: 160%;
}
.top_newsbox .inner .txt_box dl dt .news-cat {
  display: none;
}
@media (max-width: 600px) {
  .top_newsbox .inner .txt_box dl dt {
    border: none;
  }
}
@media (max-width: 500px) {
  .top_newsbox .inner .txt_box dl dt .news-cat {
    display: block;
    max-width: 100%;
    text-align: center;
    color: #fff;
    background-color: #000;
    padding: 5px 10px;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-left: 18px;
  }
}
@media (max-width: 500px) {
  .top_newsbox .inner .txt_box dl dt {
    display: flex;
    align-items: center;
    padding: 25px 0 0;
    width: 100%;
    margin-bottom: 11px;
  }
}
.top_newsbox .inner .txt_box dl dt:last-of-type {
  border-bottom: none;
}
.top_newsbox .inner .txt_box dl dd {
  padding: 40px 0;
  width: 70%;
  line-height: 160%;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-bottom: 1px solid #D9D9D9;
}
@media (max-width: 500px) {
  .top_newsbox .inner .txt_box dl dd {
    padding: 0px 0 25px;
    width: 100%;
    font-size: 1.4rem;
  }
}
.top_newsbox .inner .txt_box dl dd a {
  color: #000;
}
.top_newsbox .inner .txt_box dl dd:last-of-type {
  border-bottom: none;
}
.top_newsbox .inner .txt_box .btn {
  margin-top: 40px;
}
@media (max-width: 500px) {
  .top_newsbox .inner .txt_box .btn {
    margin-top: 34px;
    margin-bottom: 0px;
  }
}
.top_newsbox .inner .txt_box .btn a {
  margin-right: 0;
}
.top_newsbox .inner .txt_box .btn a:hover {
  opacity: 1;
}
@media (max-width: 500px) {
  .top_newsbox .inner .txt_box .btn a {
    margin-right: auto;
  }
}

.top_collection {
  margin-top: 175px;
}
@media (max-width: 500px) {
  .top_collection {
    margin-top: 63px;
  }
}
.top_collection .inner {
  margin: 0 auto;
  padding: 0px;
}
@media (max-width: 500px) {
  .top_collection .inner {
    padding: 0px;
  }
}
.top_collection .inner .ttl {
  font-size: 5rem;
  letter-spacing: 0.15em;
  line-height: 1.2;
  padding-left: 90px;
  margin-bottom: 22px;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
}
@media (max-width: 860px) {
  .top_collection .inner .ttl {
    text-align: center;
  }
}
@media (max-width: 690px) {
  .top_collection .inner .ttl {
    padding-left: 0px;
    font-size: 4rem;
    line-height: 100%;
    margin-bottom: 46px;
    padding: 0 20px;
  }
}
.top_collection .inner .btn {
  margin: 50px auto 100px;
}
@media (max-width: 500px) {
  .top_collection .inner .btn {
    margin: 32px auto 87px;
    padding: 0 20px;
  }
}
.top_collection .inner ul {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 680px) {
  .top_collection .inner ul {
    flex-direction: column;
  }
}
.top_collection .inner ul li {
  width: 33.333%;
  min-height: 42.1vw;
  max-height: 575px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 680px) {
  .top_collection .inner ul li {
    min-height: 61.2vh;
    width: 100%;
    margin-bottom: 20px;
    max-height: 434px;
  }
}
@media (max-width: 500px) {
  .top_collection .inner ul li {
    min-height: 68.2vh;
  }
}
@media (max-width: 500px) {
  .top_collection .inner ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.top_collection .inner ul li:hover {
  opacity: 1;
}
.top_collection .inner ul li:hover h3 {
  opacity: 1;
}
.top_collection .inner ul li:hover a {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.54);
}
.top_collection .inner ul li h3 {
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  color: #fff;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0.3em;
}
.top_collection .inner ul li a {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.top_collection .inner ul li:nth-child(1) {
  background-image: url(../img/top/collectionimg01.jpg);
}
@media (max-width: 500px) {
  .top_collection .inner ul li:nth-child(1) {
    background-image: url(../img/top/collectionimg01_sp.jpg);
  }
}
.top_collection .inner ul li:nth-child(2) {
  background-image: url(../img/top/collectionimg02.jpg);
}
@media (max-width: 500px) {
  .top_collection .inner ul li:nth-child(2) {
    background-image: url(../img/top/collectionimg02_sp.jpg);
  }
}
.top_collection .inner ul li:nth-child(3) {
  background-image: url(../img/top/collectionimg03.jpg);
}
@media (max-width: 500px) {
  .top_collection .inner ul li:nth-child(3) {
    background-image: url(../img/top/collectionimg03_sp.jpg);
  }
}

/*------------------------------
      Other collectionページ
------------------------------*/
.othercollection_box {
  max-width: 1124px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .othercollection_box {
    padding: 0 20px;
  }
}
.othercollection_box .list_top {
  margin-top: 159px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 680px) {
  .othercollection_box .list_top {
    flex-direction: column;
    margin-top: 30px;
  }
}
.othercollection_box .list_top li {
  max-width: 499px;
  position: relative;
  overflow: hidden;
  line-height: 0;
}
@media (max-width: 1090px) {
  .othercollection_box .list_top li {
    width: 48%;
  }
}
@media (max-width: 680px) {
  .othercollection_box .list_top li {
    width: 100%;
    max-width: 100%;
  }
}
.othercollection_box .list_top li:hover {
  cursor: pointer;
}
.othercollection_box .list_top li a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.othercollection_box .list_top li::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.othercollection_box .list_top li .txt {
  opacity: 0;
}
.othercollection_box .list_top li:hover .txt {
  opacity: 1;
  transition: opacity 0.4s ease;
  position: absolute;
  bottom: 22px;
  right: 24px;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.43;
  color: #fff;
  z-index: 5;
}
.othercollection_box .list_top li:hover::after {
  opacity: 1;
}
.othercollection_box .list_top li:nth-child(2) {
  margin-top: 157px;
}
@media (max-width: 680px) {
  .othercollection_box .list_top li:nth-child(2) {
    margin-top: 30px;
  }
}
.othercollection_box .list {
  margin-top: 122px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 680px) {
  .othercollection_box .list {
    flex-direction: column;
    margin-top: 30px;
  }
}
.othercollection_box .list li {
  max-width: 499px;
  position: relative;
  overflow: hidden;
  line-height: 0;
}
@media (max-width: 1090px) {
  .othercollection_box .list li {
    width: 48%;
  }
}
@media (max-width: 680px) {
  .othercollection_box .list li {
    width: 100%;
    max-width: 100%;
  }
}
.othercollection_box .list li:hover {
  cursor: pointer;
}
.othercollection_box .list li a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.othercollection_box .list li::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.othercollection_box .list li .txt {
  opacity: 0;
}
.othercollection_box .list li:hover .txt {
  opacity: 1;
  transition: opacity 0.4s ease;
  position: absolute;
  bottom: 22px;
  right: 24px;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.43;
  color: #fff;
  z-index: 5;
}
.othercollection_box .list li:hover::after {
  opacity: 1;
}
.othercollection_box .list li:nth-child(2) {
  margin-top: 157px;
}
@media (max-width: 680px) {
  .othercollection_box .list li:nth-child(2) {
    margin-top: 30px;
  }
}
.othercollection_box .btn {
  margin-top: 213px;
  margin-bottom: 170px;
}
.othercollection_box .btn a {
  background-color: #fff;
  color: #000;
}
.othercollection_box .btn a:hover {
  background-color: #000;
  color: #fff;
}
@media (max-width: 680px) {
  .othercollection_box .btn {
    margin-top: 54px;
    margin-bottom: 61px;
  }
  .othercollection_box .btn a {
    max-width: 100%;
    width: 100%;
  }
}

/*------------------------------
       oneページ
------------------------------*/
@media (min-width: 731px) {
  .one_mv_sp {
    display: none !important;
  }
}
@media (max-width: 730px) {
  .one_mv_pc {
    display: none !important;
  }
}
.one_box01 .inner {
  max-width: 1124px;
  padding: 0 30px;
  margin: 150px auto 0;
}
@media (max-width: 730px) {
  .one_box01 .inner {
    margin: 53px auto 0;
    padding: 0 20px;
  }
}
.one_box01 .inner .title {
  text-align: center;
  font-weight: 700;
  font-size: 5rem;
  letter-spacing: 0.1em;
  line-height: 1;
  font-feature-settings: "palt";
}
@media (max-width: 900px) {
  .one_box01 .inner .title {
    font-size: 4rem;
  }
}
@media (max-width: 730px) {
  .one_box01 .inner .title {
    line-height: 1.4;
    font-size: 3.4rem;
  }
  .one_box01 .inner .title .br {
    display: block;
  }
}
.one_box01 .inner .flex_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
  padding-bottom: 322px;
  position: relative;
  padding-right: 57px;
}
@media (max-width: 720px) {
  .one_box01 .inner .flex_box {
    flex-direction: column-reverse;
    padding-bottom: 0px;
    padding-right: 0px;
    margin-top: 34px;
  }
}
.one_box01 .inner .flex_box::after {
  content: "";
  display: block;
  max-width: 603px;
  width: 100%;
  height: 483px;
  background-image: url(../img/look/one/img02.jpg);
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1080px) {
  .one_box01 .inner .flex_box::after {
    max-width: 70%;
    height: 48vw;
  }
}
@media (max-width: 720px) {
  .one_box01 .inner .flex_box::after {
    display: none;
  }
}
.one_box01 .inner .flex_box .left_box {
  max-width: 634px;
}
@media (max-width: 1080px) {
  .one_box01 .inner .flex_box .left_box {
    max-width: 55%;
  }
}
@media (max-width: 720px) {
  .one_box01 .inner .flex_box .left_box {
    max-width: 100%;
  }
}
.one_box01 .inner .flex_box .right_box {
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.15%;
  line-height: 3.7;
  font-weight: 700;
}
@media (min-width: 721px) {
  .one_box01 .inner .flex_box .right_box .sp_img {
    display: none;
  }
}
@media (max-width: 850px) {
  .one_box01 .inner .flex_box .right_box {
    font-weight: 400;
  }
}
@media (max-width: 720px) {
  .one_box01 .inner .flex_box .right_box {
    text-align: center;
    font-size: 1.6rem;
    line-height: 2.6;
    margin-bottom: 57px;
    width: 100%;
  }
  .one_box01 .inner .flex_box .right_box .sp_img {
    display: block;
    margin-bottom: 47px;
  }
}

.one_box02 {
  background-color: #F3F3F3;
  padding: 150px 0;
  margin-top: 110px;
}
@media (max-width: 700px) {
  .one_box02 {
    padding: 72px 0 58px;
  }
}
.one_box02 .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.one_box02 .inner .ttl {
  text-align: center;
}
@media (max-width: 700px) {
  .one_box02 .inner .ttl {
    padding: 0 36px;
  }
}
.one_box02 .inner .flex_box {
  display: flex;
  margin-top: 90px;
  justify-content: center;
  gap: 158px;
}
@media (max-width: 900px) {
  .one_box02 .inner .flex_box {
    padding: 0 30px;
    gap: 90px;
  }
}
@media (max-width: 820px) {
  .one_box02 .inner .flex_box {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 700px) {
  .one_box02 .inner .flex_box {
    margin-top: 37px;
    gap: 59px;
    padding: 0 20px;
  }
}
.one_box02 .inner .flex_box .left_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.one_box02 .inner .flex_box .left_box .sub_ttl {
  font-size: 2.5rem;
  line-height: 1.52;
  font-weight: 700;
  letter-spacing: 0.15em;
}
@media (max-width: 900px) {
  .one_box02 .inner .flex_box .left_box .sub_ttl {
    font-size: 2.1rem;
  }
}
.one_box02 .inner .flex_box .left_box .txt {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  line-height: 3.2;
  margin-top: 37px;
  padding-left: 35px;
}
@media (max-width: 900px) {
  .one_box02 .inner .flex_box .left_box .txt {
    font-weight: 400;
    font-size: 1.6rem;
    margin-top: 25px;
  }
}
@media (max-width: 820px) {
  .one_box02 .inner .flex_box .left_box .txt {
    padding-left: 0;
    text-align: center;
  }
}
.one_box02 .inner .flex_box .right_box {
  max-width: 398px;
}

.one_box04 {
  margin-top: 40px;
  padding: 0 0px;
}
@media (max-width: 750px) {
  .one_box04 {
    margin-top: 62px;
    margin-bottom: 120px;
    padding: 0 20px;
  }
}
.one_box04 .inner {
  background-image: url(../img/look/one/img04.jpg);
  background-size: cover;
  max-height: 850px;
  height: 65vw;
  width: 100%;
  position: relative;
}
@media (max-width: 750px) {
  .one_box04 .inner {
    background-image: none;
    height: auto;
    max-height: 100%;
  }
}
.one_box04 .inner .txt_box {
  max-width: 310px;
  position: absolute;
  top: 14.6vw;
  right: 19.1vw;
}
@media (max-width: 1100px) {
  .one_box04 .inner .txt_box {
    top: 11.6vw;
    right: 16.1vw;
  }
}
@media (max-width: 950px) {
  .one_box04 .inner .txt_box {
    top: 6vw;
    right: 5vw;
  }
}
@media (max-width: 750px) {
  .one_box04 .inner .txt_box {
    position: initial;
    max-width: 100%;
    text-align: center;
  }
  .one_box04 .inner .txt_box::before {
    content: "";
    display: block;
    background-image: url(../img/look/one/sp_img04.jpg);
    width: 100%;
    height: 90vw;
    background-size: cover;
    margin-bottom: 37px;
  }
}
.one_box04 .inner .txt_box .icon {
  text-align: center;
  margin-bottom: 27px;
}
@media (max-width: 950px) {
  .one_box04 .inner .txt_box .icon {
    margin-bottom: 15px;
  }
}
.one_box04 .inner .txt_box .txt {
  text-align: center;
  font-size: 1.8rem;
  line-height: 3.2;
  font-weight: 700;
  letter-spacing: 0.15em;
}
@media (max-width: 850px) {
  .one_box04 .inner .txt_box .txt {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2.6;
  }
}
.one_box04 .inner .txt_box .btn {
  margin-top: 55px;
}
@media (max-width: 950px) {
  .one_box04 .inner .txt_box .btn {
    margin-top: 25px;
  }
}
.one_box04 .inner .txt_box .btn a {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  line-height: 100%;
  padding: 18px 0 16px;
  max-width: 241px;
  width: 100%;
  cursor: pointer;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 680px) {
  .one_box04 .inner .txt_box .btn a {
    max-width: 100%;
  }
}

.one_box05 {
  margin-top: 207px;
}
@media (max-width: 900px) {
  .one_box05 {
    padding: 0 20px;
    margin-top: 120px;
  }
}
.one_box05 .inner .ttl {
  text-align: center;
  font-weight: 700;
  font-size: 5rem;
  line-height: 100%;
  letter-spacing: 0.15em;
  margin-bottom: 56px;
  font-family: "Gabarito", sans-serif;
}
@media (max-width: 700px) {
  .one_box05 .inner .ttl {
    font-size: 4rem;
    line-height: 100%;
    margin-bottom: 41px;
  }
}
.one_box05 .inner .flex_box {
  max-width: 1000px;
  background-color: #F3F3F3;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .one_box05 .inner .flex_box {
    flex-direction: column-reverse;
  }
}
@media (max-width: 700px) {
  .one_box05 .inner .flex_box {
    margin-bottom: 44px;
  }
}
.one_box05 .inner .flex_box.reverse {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
@media (max-width: 900px) {
  .one_box05 .inner .flex_box.reverse {
    flex-direction: column-reverse;
  }
}
.one_box05 .inner .flex_box .left_box {
  max-width: 500px;
  padding-left: 67px;
}
@media (max-width: 900px) {
  .one_box05 .inner .flex_box .left_box {
    max-width: 100%;
    padding-left: 0;
  }
}
.one_box05 .inner .flex_box .left_box .sub_ttl {
  font-size: 3rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
}
@media (max-width: 900px) {
  .one_box05 .inner .flex_box .left_box .sub_ttl {
    text-align: center;
    padding-top: 40px;
  }
}
@media (max-width: 700px) {
  .one_box05 .inner .flex_box .left_box .sub_ttl {
    font-size: 2.6rem;
  }
}
.one_box05 .inner .flex_box .left_box .sub_ttl .nonber {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.15em;
  display: block;
  font-family: "Gabarito", sans-serif;
}
@media (max-width: 900px) {
  .one_box05 .inner .flex_box .left_box .sub_ttl .nonber {
    padding-bottom: 6px;
  }
}
@media (max-width: 700px) {
  .one_box05 .inner .flex_box .left_box .sub_ttl .nonber {
    font-size: 4rem;
  }
}
.one_box05 .inner .flex_box .left_box .txt {
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  line-height: 2.2;
  margin-top: 33px;
  font-weight: 700;
}
@media (max-width: 850px) {
  .one_box05 .inner .flex_box .left_box .txt {
    margin-top: 20px;
    text-align: center;
    padding-bottom: 50px;
    font-weight: 400;
  }
}
@media (max-width: 700px) {
  .one_box05 .inner .flex_box .left_box .txt {
    font-size: 1.4rem;
    line-height: 2.3;
  }
}
.one_box05 .inner .flex_box .right_box {
  max-width: 500px;
  line-height: 0;
}
@media (max-width: 900px) {
  .one_box05 .inner .flex_box .right_box {
    max-width: 100%;
  }
}

.one_box06 .inner {
  max-width: 1125px;
  margin: 165px auto 0;
  padding: 0 30px;
}
@media (max-width: 700px) {
  .one_box06 .inner {
    margin: 0px auto 0;
    padding: 0 20px;
  }
}
.one_box06 .inner .ttl {
  text-align: center;
  font-size: 5rem;
  line-height: 100%;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-family: "Gabarito", sans-serif;
}
@media (max-width: 700px) {
  .one_box06 .inner .ttl {
    font-size: 4rem;
  }
}
.one_box06 .inner .list {
  display: flex;
  justify-content: space-between;
  gap: 38px;
}
@media (max-width: 900px) {
  .one_box06 .inner .list {
    flex-direction: column;
  }
}
.one_box06 .inner .list li {
  max-width: 330px;
}
@media (max-width: 900px) {
  .one_box06 .inner .list li {
    margin: 0 auto;
  }
}
.one_box06 .inner .list li .sub_ttl {
  font-size: 2rem;
  line-height: 100%;
  letter-spacing: 0.15em;
  text-align: center;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  margin-top: 40px;
}
@media (max-width: 700px) {
  .one_box06 .inner .list li .sub_ttl {
    margin-top: 45px;
  }
}
.one_box06 .inner .list li .txt {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.9;
  letter-spacing: 0.15em;
  margin-top: 25px;
}
@media (max-width: 900px) {
  .one_box06 .inner .list li .txt {
    font-weight: 400;
    text-align: center;
  }
}
@media (max-width: 700px) {
  .one_box06 .inner .list li .txt {
    margin-top: 32px;
  }
}
.one_box06 .inner .btn {
  margin-top: 90px;
}
.one_box07 {
  margin-top: 204px;
  margin-bottom: 30px;
}
@media (max-width: 700px) {
  .one_box07 {
    margin-top: 80px;
    margin-bottom: 0;
  }
}
.one_box07 .inner {
  padding: 0 0px;
}
@media (min-width: 701px) {
  .one_box07 .inner .sp {
    display: none;
  }
}
@media (max-width: 700px) {
  .one_box07 .inner {
    padding: 0px;
  }
  .one_box07 .inner .sp {
    display: block;
  }
  .one_box07 .inner .pc {
    display: none;
  }
}

/*------------------------------
      コスメページ
------------------------------*/
.cosme_box01 {
  margin-top: 180px;
}
@media (max-width: 850px) {
  .cosme_box01 {
    margin-top: 67px;
  }
}
@media (max-width: 850px) {
  .cosme_box01 .inner {
    padding: 0 30px;
  }
}
@media (max-width: 650px) {
  .cosme_box01 .inner {
    padding: 0 20px;
  }
}
.cosme_box01 .inner .title {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 5rem;
  line-height: 100%;
  text-align: center;
  color: #D3CFCB;
}
@media (max-width: 650px) {
  .cosme_box01 .inner .title {
    font-size: 2.5rem;
  }
}
.cosme_box01 .inner .txt {
  margin-top: 65px;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.15em;
  line-height: 3.15;
  max-width: 695px;
  width: 100%;
  margin: 65px auto 0;
  padding-bottom: 180px;
  border-bottom: 1px solid #BEBABA;
}
@media (max-width: 850px) {
  .cosme_box01 .inner .txt {
    margin: 41px auto 0;
    font-size: 1.4rem;
    line-height: 35px;
    padding-bottom: 64px;
    font-weight: 400;
  }
  .cosme_box01 .inner .txt .br {
    display: block;
  }
}

.cosme_box02 {
  margin-top: 190px;
}
@media (max-width: 850px) {
  .cosme_box02 {
    margin-top: 64px;
  }
}
.cosme_box02 .inner {
  max-width: 1124px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 650px) {
  .cosme_box02 .inner {
    padding: 0 20px;
  }
}
.cosme_box02 .inner .flex_box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 65px;
}
@media (max-width: 850px) {
  .cosme_box02 .inner .flex_box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.cosme_box02 .inner .flex_box .left_box {
  max-width: 475px;
  width: 100%;
}
@media (max-width: 950px) {
  .cosme_box02 .inner .flex_box .left_box {
    max-width: 375px;
  }
}
@media (max-width: 850px) {
  .cosme_box02 .inner .flex_box .left_box {
    max-width: 100%;
  }
}
.cosme_box02 .inner .flex_box .left_box .sub_ttl {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 5rem;
  line-height: 100%;
  color: #D3CFCB;
}
@media (max-width: 850px) {
  .cosme_box02 .inner .flex_box .left_box .sub_ttl {
    text-align: center;
  }
}
@media (max-width: 650px) {
  .cosme_box02 .inner .flex_box .left_box .sub_ttl {
    font-size: 2.5rem;
  }
}
.cosme_box02 .inner .flex_box .left_box .ttl {
  min-height: 196px;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 850px) {
  .cosme_box02 .inner .flex_box .left_box .ttl {
    margin-top: 27px;
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 650px) {
  .cosme_box02 .inner .flex_box .left_box .ttl {
    min-height: auto;
    padding: 0 10px;
  }
}
.cosme_box02 .inner .flex_box .right_box {
  padding-top: 100px;
}
@media (max-width: 850px) {
  .cosme_box02 .inner .flex_box .right_box {
    padding-top: 47px;
  }
}
@media (max-width: 600px) {
  .cosme_box02 .inner .flex_box .right_box {
    padding-top: 20px;
  }
}
.cosme_box02 .inner .flex_box .right_box .txt01 {
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 1.7;
  letter-spacing: 0.15%;
  margin-bottom: 35px;
}
@media (max-width: 850px) {
  .cosme_box02 .inner .flex_box .right_box .txt01 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 11px;
  }
}
.cosme_box02 .inner .flex_box .right_box .txt02 {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.15%;
  line-height: 2.1;
}
@media (max-width: 850px) {
  .cosme_box02 .inner .flex_box .right_box .txt02 {
    font-weight: 400;
    text-align: center;
    font-size: 1.4rem;
    line-height: 33px;
  }
  .cosme_box02 .inner .flex_box .right_box .txt02 .br {
    display: block;
  }
}

.cosme_box03 {
  margin-top: 140px;
}
@media (max-width: 650px) {
  .cosme_box03 {
    margin-top: 76px;
  }
}
.cosme_box03 .inner {
  max-width: 1124px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 850px) {
  .cosme_box03 .inner {
    padding: 0 20px;
  }
}
.cosme_box03 .inner .ttl {
  text-align: center;
  font-size: 5rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  line-height: 100%;
  color: #D3CFCB;
}
@media (max-width: 650px) {
  .cosme_box03 .inner .ttl {
    padding: 0 10px;
    font-size: 2.5rem;
  }
}
.cosme_box03 .inner .flex_box {
  display: flex;
  margin-top: -20px;
  padding-top: 130px;
  position: relative;
  align-items: center;
  justify-content: space-between;
  /* 初期状態 */
  /* 表示時 */
}
@media (max-width: 950px) {
  .cosme_box03 .inner .flex_box {
    flex-direction: column;
  }
}
@media (max-width: 850px) {
  .cosme_box03 .inner .flex_box {
    padding-top: 44px;
    padding: 0 30px;
    margin-top: 0;
  }
}
@media (max-width: 650px) {
  .cosme_box03 .inner .flex_box {
    padding: 0;
    margin-top: 45px;
  }
}
.cosme_box03 .inner .flex_box .js-fade-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.cosme_box03 .inner .flex_box .js-fade-item.is-show {
  opacity: 1;
  transform: translateY(0);
}
.cosme_box03 .inner .flex_box::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../img/look/cosme/non01.svg);
  width: 181px;
  height: 187px;
  z-index: 2;
}
@media (max-width: 850px) {
  .cosme_box03 .inner .flex_box::before {
    width: 24vw;
    height: 24.6vw;
    background-size: cover;
    left: 0%;
  }
}
.cosme_box03 .inner .flex_box .left_box {
  position: relative;
  padding-bottom: 233px;
}
@media (max-width: 1100px) {
  .cosme_box03 .inner .flex_box .left_box {
    max-width: 580px;
  }
}
@media (max-width: 850px) {
  .cosme_box03 .inner .flex_box .left_box {
    max-width: 580px;
    padding-top: 60px;
  }
}
@media (max-width: 650px) {
  .cosme_box03 .inner .flex_box .left_box {
    padding-bottom: 110px;
  }
}
.cosme_box03 .inner .flex_box .left_box .flex {
  display: flex;
  align-items: center;
  gap: 30px;
}
.cosme_box03 .inner .flex_box .left_box .flex .img01 {
  max-width: 357px;
  height: 479px;
  width: 100%;
}
@media (max-width: 1100px) {
  .cosme_box03 .inner .flex_box .left_box .flex .img01 {
    height: auto;
  }
}
@media (max-width: 650px) {
  .cosme_box03 .inner .flex_box .left_box .flex .img01 {
    max-width: 172px;
  }
}
.cosme_box03 .inner .flex_box .left_box .flex .img02 {
  max-width: 245px;
  height: 327px;
  width: 100%;
}
@media (max-width: 1100px) {
  .cosme_box03 .inner .flex_box .left_box .flex .img02 {
    height: auto;
  }
}
@media (max-width: 650px) {
  .cosme_box03 .inner .flex_box .left_box .flex .img02 {
    max-width: 118px;
  }
}
.cosme_box03 .inner .flex_box .left_box .img03 {
  display: block;
  position: absolute;
  right: 40px;
  bottom: 0;
  width: 100%;
  max-width: 266px;
  height: 265px;
}
@media (max-width: 650px) {
  .cosme_box03 .inner .flex_box .left_box .img03 {
    max-width: 128px;
    height: 127px;
  }
}
@media (max-width: 380px) {
  .cosme_box03 .inner .flex_box .left_box .img03 {
    max-width: 128px;
    height: 127px;
  }
}
.cosme_box03 .inner .flex_box .right_box {
  max-width: 410px;
}
@media (min-width: 951px) {
  .cosme_box03 .inner .flex_box .right_box .sp_ttl {
    display: none !important;
  }
}
@media (max-width: 950px) {
  .cosme_box03 .inner .flex_box .right_box {
    margin-top: 26px;
  }
  .cosme_box03 .inner .flex_box .right_box .pc_ttl {
    display: none !important;
  }
}
@media (max-width: 850px) {
  .cosme_box03 .inner .flex_box .right_box {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 850px) {
  .cosme_box03 .inner .flex_box .right_box .ttl img {
    width: 100%;
  }
}
.cosme_box03 .inner .flex_box .right_box .txt {
  margin-top: 90px;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.15em;
  line-height: 2.4;
}
@media (max-width: 950px) {
  .cosme_box03 .inner .flex_box .right_box .txt {
    margin-top: 27px;
    font-size: 1.4rem;
    line-height: 33px;
  }
}
@media (max-width: 850px) {
  .cosme_box03 .inner .flex_box .right_box .txt {
    font-weight: 400;
  }
  .cosme_box03 .inner .flex_box .right_box .txt .br {
    display: block;
  }
}
@media (max-width: 650px) {
  .cosme_box03 .inner .flex_box .right_box .txt {
    letter-spacing: 0.1em;
  }
}

.cosme_box04 {
  padding: 0 0px;
  margin-top: 165px;
}
@media (max-width: 950px) {
  .cosme_box04 {
    margin-top: 62px;
  }
}
@media (max-width: 650px) {
  .cosme_box04 {
    padding: 0px;
  }
}
.cosme_box04 .bk {
  background-color: #F4F3ED;
  padding: 175px 80px 121px;
}
@media (max-width: 650px) {
  .cosme_box04 .bk {
    padding: 86px 20px 57px;
  }
}
.cosme_box04 .inner {
  max-width: 1124px;
  margin: 0 auto;
  padding: 0 0px;
}
@media (max-width: 650px) {
  .cosme_box04 .inner {
    padding: 0 0px;
  }
}
.cosme_box04 .inner .flex_box {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  /* 初期状態 */
  /* 表示時 */
}
@media (max-width: 950px) {
  .cosme_box04 .inner .flex_box {
    flex-direction: column-reverse;
  }
}
@media (max-width: 650px) {
  .cosme_box04 .inner .flex_box {
    gap: 0px;
  }
}
.cosme_box04 .inner .flex_box .js-fade-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.cosme_box04 .inner .flex_box .js-fade-item.is-show {
  opacity: 1;
  transform: translateY(0);
}
.cosme_box04 .inner .flex_box::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: -9%;
  background-image: url(../img/look/cosme/non02.svg);
  width: 181px;
  height: 187px;
  z-index: 2;
}
@media (max-width: 650px) {
  .cosme_box04 .inner .flex_box::before {
    width: 99px;
    height: 95px;
    background-size: contain;
    top: -3%;
  }
}
.cosme_box04 .inner .flex_box .left_box {
  position: relative;
  padding-bottom: 233px;
}
@media (max-width: 1280px) {
  .cosme_box04 .inner .flex_box .left_box {
    max-width: 540px;
  }
}
@media (max-width: 650px) {
  .cosme_box04 .inner .flex_box .left_box {
    padding-bottom: 122px;
  }
}
.cosme_box04 .inner .flex_box .left_box .flex {
  display: flex;
  align-items: center;
  gap: 30px;
}
.cosme_box04 .inner .flex_box .left_box .flex .img01 {
  max-width: 357px;
  height: 479px;
}
@media (max-width: 1100px) {
  .cosme_box04 .inner .flex_box .left_box .flex .img01 {
    height: auto;
  }
}
@media (max-width: 650px) {
  .cosme_box04 .inner .flex_box .left_box .flex .img01 {
    max-width: 183px;
    height: 245px;
  }
}
.cosme_box04 .inner .flex_box .left_box .flex .img02 {
  max-width: 245px;
  height: 327px;
}
@media (max-width: 1100px) {
  .cosme_box04 .inner .flex_box .left_box .flex .img02 {
    height: auto;
  }
}
@media (max-width: 650px) {
  .cosme_box04 .inner .flex_box .left_box .flex .img02 {
    width: 125px;
    height: 167px;
  }
}
.cosme_box04 .inner .flex_box .left_box .img03 {
  display: block;
  position: absolute;
  right: 40px;
  bottom: 0;
  max-width: 266px;
  height: 265px;
}
@media (max-width: 650px) {
  .cosme_box04 .inner .flex_box .left_box .img03 {
    max-width: 136px;
    height: 135px;
  }
}
.cosme_box04 .inner .flex_box .right_box {
  max-width: 410px;
}
@media (max-width: 1280px) {
  .cosme_box04 .inner .flex_box .right_box {
    max-width: 500px;
  }
}
@media (max-width: 1280px) {
  .cosme_box04 .inner .flex_box .right_box {
    max-width: 500px;
  }
}
@media (min-width: 951px) {
  .cosme_box04 .inner .flex_box .right_box .sp_ttl {
    display: none !important;
  }
}
@media (max-width: 950px) {
  .cosme_box04 .inner .flex_box .right_box {
    margin-top: 26px;
  }
  .cosme_box04 .inner .flex_box .right_box .pc_ttl {
    display: none !important;
  }
}
@media (max-width: 850px) {
  .cosme_box04 .inner .flex_box .right_box {
    max-width: 100%;
    width: 100%;
  }
  .cosme_box04 .inner .flex_box .right_box .ttl {
    width: 100%;
    padding: 0 50px;
  }
}
@media (max-width: 850px) and (max-width: 650px) {
  .cosme_box04 .inner .flex_box .right_box .ttl {
    padding: 0px 30px;
  }
}
@media (max-width: 850px) {
  .cosme_box04 .inner .flex_box .right_box .ttl img {
    width: 100%;
  }
}
.cosme_box04 .inner .flex_box .right_box .txt {
  margin-top: 90px;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.15em;
  line-height: 2.4;
}
@media (max-width: 950px) {
  .cosme_box04 .inner .flex_box .right_box .txt {
    margin-top: 27px;
  }
}
@media (max-width: 850px) {
  .cosme_box04 .inner .flex_box .right_box .txt {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 33px;
  }
  .cosme_box04 .inner .flex_box .right_box .txt .br {
    display: block;
  }
}

.cosme_box05 {
  padding: 124px 0px 0;
  margin-top: 165px;
}
@media (max-width: 850px) {
  .cosme_box05 {
    padding: 67px 0px 73px;
    margin-top: 64px;
  }
}
.cosme_box05 .inner {
  max-width: 1124px;
  margin: 0 auto;
  padding: 0 30px;
}
.cosme_box05 .inner .flex_box {
  display: flex;
  position: relative;
  justify-content: space-between;
  gap: 40px;
  /* 初期状態 */
  /* 表示時 */
}
@media (max-width: 950px) {
  .cosme_box05 .inner .flex_box {
    flex-direction: column;
  }
}
.cosme_box05 .inner .flex_box .js-fade-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.cosme_box05 .inner .flex_box .js-fade-item.is-show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 850px) {
  .cosme_box05 .inner .flex_box::after {
    content: "";
    display: block;
    position: absolute;
    width: 150px;
    height: 160px;
    background-image: url(../img/look/cosme/box05img03.svg);
    right: 0;
    top: -6%;
  }
}
@media (max-width: 850px) and (max-width: 650px) {
  .cosme_box05 .inner .flex_box::after {
    width: 130px;
    height: 139px;
    background-size: contain;
  }
}
.cosme_box05 .inner .flex_box::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -9%;
  background-image: url(../img/look/cosme/non03.svg);
  width: 181px;
  height: 187px;
  z-index: 2;
}
@media (max-width: 650px) {
  .cosme_box05 .inner .flex_box::before {
    width: 98px;
    height: 101px;
    background-size: contain;
    top: -5%;
  }
}
.cosme_box05 .inner .flex_box .left_box {
  position: relative;
  padding-bottom: 233px;
  gap: 30px;
  max-width: 600px;
  width: 100%;
}
@media (max-width: 1100px) {
  .cosme_box05 .inner .flex_box .left_box {
    max-width: 450px;
  }
}
@media (max-width: 850px) {
  .cosme_box05 .inner .flex_box .left_box {
    max-width: 100%;
    width: 100%;
    padding-bottom: 0px;
  }
}
.cosme_box05 .inner .flex_box .left_box .img01 {
  max-width: 500px;
  height: 500px;
}
@media (max-width: 1100px) {
  .cosme_box05 .inner .flex_box .left_box .img01 {
    max-width: 350px;
    height: auto;
  }
}
@media (max-width: 850px) {
  .cosme_box05 .inner .flex_box .left_box .img01 {
    max-width: 65%;
  }
}
.cosme_box05 .inner .flex_box .left_box .img02 {
  max-width: 500px;
  height: 500px;
  margin-left: auto;
}
@media (max-width: 1100px) {
  .cosme_box05 .inner .flex_box .left_box .img02 {
    max-width: 350px;
    height: auto;
  }
}
@media (max-width: 850px) {
  .cosme_box05 .inner .flex_box .left_box .img02 {
    max-width: 75%;
  }
}
.cosme_box05 .inner .flex_box .right_box {
  max-width: 410px;
  margin-top: 40px;
}
@media (max-width: 850px) {
  .cosme_box05 .inner .flex_box .right_box {
    max-width: 100%;
    width: 100%;
    margin-top: 0px;
  }
}
.cosme_box05 .inner .flex_box .right_box .ttl {
  position: relative;
  padding-top: 120px;
  padding-right: 80px;
}
@media (min-width: 851px) {
  .cosme_box05 .inner .flex_box .right_box .ttl .sp_img {
    display: none;
  }
}
@media (max-width: 850px) {
  .cosme_box05 .inner .flex_box .right_box .ttl {
    text-align: center;
    padding-top: 0px;
    padding-right: 0;
    padding: 0 30px;
  }
  .cosme_box05 .inner .flex_box .right_box .ttl .pc_img {
    display: none;
  }
}
.cosme_box05 .inner .flex_box .right_box .ttl::before {
  content: "";
  display: block;
  position: absolute;
  width: 150px;
  height: 160px;
  background-image: url(../img/look/cosme/box05img03.svg);
  right: 0;
  top: 0;
}
@media (max-width: 850px) {
  .cosme_box05 .inner .flex_box .right_box .ttl::before {
    display: none;
  }
}
.cosme_box05 .inner .flex_box .right_box .ttl img {
  width: 100%;
}
.cosme_box05 .inner .flex_box .right_box .txt01 {
  font-size: 4rem;
  letter-spacing: 0.15em;
  line-height: 1;
  margin-top: 70px;
  font-weight: 700;
}
@media (max-width: 850px) {
  .cosme_box05 .inner .flex_box .right_box .txt01 {
    text-align: center;
    margin-top: 31px;
  }
}
@media (max-width: 650px) {
  .cosme_box05 .inner .flex_box .right_box .txt01 {
    font-size: 3.4rem;
    letter-spacing: 0.1em;
  }
  .cosme_box05 .inner .flex_box .right_box .txt01 span {
    font-size: 3.4rem;
    margin: 0 0 0 -30px;
  }
}
.cosme_box05 .inner .flex_box .right_box .txt02 {
  margin-top: 50px;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.4;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 850px) {
  .cosme_box05 .inner .flex_box .right_box .txt02 {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 33px;
  }
  .cosme_box05 .inner .flex_box .right_box .txt02 .br {
    display: block;
  }
}
.cosme_box05 .inner .flex_box .right_box .btn {
  margin-top: 40px;
}
.cosme_box05 .inner .flex_box .right_box .btn a {
  padding: 18px 30px;
  max-width: 240px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
@media (max-width: 650px) {
  .cosme_box05 .inner .flex_box .right_box .btn a {
    max-width: 100%;
  }
}

/* =========================
  全体ラッパー
========================= */
.sample-slider-wrap {
  width: 100%;
  padding: 0 30px;
}
@media (max-width: 650px) {
  .sample-slider-wrap {
    padding: 0 20px;
  }
}

.sample-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* slidesPerView:'auto' の場合は幅を固定（あなたは382pxでOK） */
.sample-slider .swiper-slide {
  width: 382px !important;
  flex: none !important;
}
@media (max-width: 650px) {
  .sample-slider .swiper-slide {
    width: 300px !important;
  }
  .sample-slider .swiper-slide img {
    width: 300px !important;
    height: 300px !important;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/* 見出し＋ナビ */
.sample-slider-head {
  max-width: 1400px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 650px) {
  .sample-slider-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* タイトル */
.sample-slider-ttl {
  font-family: "Shippori Mincho", serif;
  font-size: 6.5rem;
  color: #D3CFCB;
  font-weight: 500;
  line-height: 1.13;
}
@media (max-width: 650px) {
  .sample-slider-ttl {
    font-size: 4rem;
    text-align: center;
    margin: 0 auto;
  }
}

/* ナビ */
.sample-slider-nav {
  display: flex;
  gap: 10px;
}
@media (min-width: 851px) {
  .sample-slider-nav.sp_slid_nav {
    display: none;
  }
}
@media (max-width: 850px) {
  .sample-slider-nav {
    justify-content: center;
    margin-top: 30px;
  }
  .sample-slider-nav.pc_slid_nav {
    display: none;
  }
}
.sample-slider-nav .swiper-button-prev,
.sample-slider-nav .swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  background: #000;
  margin: 0;
  /* Swiperのデフォ余白対策 */
  z-index: 10;
  /* 念のため */
  pointer-events: auto;
}
.sample-slider-nav .swiper-button-prev {
  background: #f5f5f5;
}
.sample-slider-nav .swiper-button-prev::after,
.sample-slider-nav .swiper-button-next::after {
  font-size: 14px;
  color: #000;
}
.sample-slider-nav .swiper-button-next::after {
  color: #fff;
}

/* =========================
  Swiper本体
========================= */
.sample-slider {
  width: 100%;
  overflow: hidden;
  /* Swiper周りのリセット */
  /* slidesPerView:'auto' で流す場合、slide幅が必須 */
}
.sample-slider,
.sample-slider * {
  box-sizing: border-box;
}
.sample-slider .swiper-slide {
  width: 382px !important;
  /* ← ここで「ガタつき/止まり」を消す */
  flex: none !important;
  max-width: none !important;
  display: block !important;
}
@media (max-width: 650px) {
  .sample-slider .swiper-slide {
    width: 320px !important;
  }
}

/* =========================
  画像カード
========================= */
.hover-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  /* 白フィルター（クリック阻害しないよう pointer-events:none） */
}
@media (max-width: 650px) {
  .hover-card {
    aspect-ratio: 0;
  }
}
.hover-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.hover-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
  /* ←超重要：ドラッグ/クリックの邪魔をしない */
}
.hover-card:hover::after {
  opacity: 1;
}
.hover-card:hover img {
  transform: scale(1.03);
}

/* ロゴ */
.hover-logo {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
  pointer-events: none;
  /* ←ロゴレイヤーも邪魔しない */
}

.hover-card:hover .hover-logo {
  opacity: 1;
}

.cosme_box06 {
  margin-top: 200px;
  padding: 0 0px;
}
@media (max-width: 850px) {
  .cosme_box06 {
    padding: 0px;
  }
}
@media (max-width: 650px) {
  .cosme_box06 {
    margin-top: 139px;
  }
}
.cosme_box06 .lineup-block {
  margin-top: 152px;
}
@media (max-width: 650px) {
  .cosme_box06 .lineup-block {
    margin-top: 52px;
    margin-bottom: 31px;
  }
}
@media (min-width: 851px) {
  .cosme_box06 figure .sp_img {
    display: none;
  }
}
@media (max-width: 850px) {
  .cosme_box06 figure img {
    width: 100%;
  }
  .cosme_box06 figure .pc_img {
    display: none;
  }
}
.cosme_box06 .inner {
  background-color: #F8F7F1;
}
.cosme_box06 .inner .ttl {
  font-size: 4rem;
  left: 0.1em;
  line-height: 1;
  margin-bottom: 70px;
  text-align: center;
  margin-top: 130px;
  font-weight: 700;
}
@media (max-width: 650px) {
  .cosme_box06 .inner .ttl {
    font-size: 2.5rem;
    margin-top: 51px;
    margin-bottom: 33px;
    line-height: 38px;
  }
  .cosme_box06 .inner .ttl .br {
    display: block;
  }
}
.cosme_box06 .inner .txt {
  font-size: 2rem;
  line-height: 2.5;
  letter-spacing: 0.15em;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 850px) {
  .cosme_box06 .inner .txt {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 33px;
  }
}
.cosme_box06 .inner .listimg {
  display: flex;
  justify-content: center;
  gap: 39px;
  margin-top: 59px;
}
@media (max-width: 850px) {
  .cosme_box06 .inner .listimg {
    flex-direction: column;
    padding: 0 20px;
  }
}
.cosme_box06 .inner .listimg li {
  max-width: 330px;
}
@media (max-width: 850px) {
  .cosme_box06 .inner .listimg li:nth-child(2) {
    margin-left: auto;
  }
}
@media (max-width: 650px) {
  .cosme_box06 .inner .listimg li img {
    max-width: 210px;
  }
}
.cosme_box06 .inner .cosme_box06img02 {
  max-width: 800px;
  margin: 58px auto 0;
}
@media (min-width: 850px) {
  .cosme_box06 .inner .cosme_box06img02 .sp_img {
    display: none;
  }
}
@media (max-width: 850px) {
  .cosme_box06 .inner .cosme_box06img02 {
    padding: 0 20px;
  }
  .cosme_box06 .inner .cosme_box06img02 .pc_img {
    display: none;
  }
}

.slug-cosme .lineup-title.cosme {
  font-weight: 500;
}

.cosme_box07 {
  padding: 0 0px;
}
@media (max-width: 850px) {
  .cosme_box07 {
    padding: 0 0px;
  }
}
.cosme_box07 .lineup-block {
  margin-top: 97px;
  margin-bottom: 0;
  padding-bottom: 141px;
}
@media (max-width: 650px) {
  .cosme_box07 .lineup-block {
    margin-top: 97px;
    padding-bottom: 94px;
  }
}
@media (min-width: 851px) {
  .cosme_box07 figure .sp_img {
    display: none;
  }
}
@media (max-width: 850px) {
  .cosme_box07 figure img {
    width: 100%;
  }
  .cosme_box07 figure .pc_img {
    display: none;
  }
}
.cosme_box07 .inner {
  background-color: #F1F6FB;
}
.cosme_box07 .inner .flex_box {
  display: flex;
  justify-content: space-between;
  max-width: 1090px;
  margin: 113px auto 0;
}
@media (max-width: 650px) {
  .cosme_box07 .inner .flex_box {
    margin: 43px auto 0;
  }
}
@media (max-width: 850px) {
  .cosme_box07 .inner .flex_box .left_box {
    display: none;
  }
}
.cosme_box07 .inner .flex_box .left_box .ttl {
  max-width: 487px;
  width: 100%;
  text-align: right;
  margin-left: auto;
}
.cosme_box07 .inner .flex_box .left_box .imbbox {
  max-width: 519px;
  margin-top: 149px;
}
.cosme_box07 .inner .flex_box .left_box .txt {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.6;
  letter-spacing: 0.15m;
  margin-top: 93px;
}
.cosme_box07 .inner .flex_box .right_box {
  max-width: 499px;
}
@media (min-width: 851px) {
  .cosme_box07 .inner .flex_box .right_box .pc_hide {
    display: none;
  }
}
@media (max-width: 850px) {
  .cosme_box07 .inner .flex_box .right_box {
    max-width: 100%;
    padding: 0 25px;
  }
  .cosme_box07 .inner .flex_box .right_box .pc_hide {
    display: block;
  }
  .cosme_box07 .inner .flex_box .right_box .ttl {
    width: 100%;
  }
}
@media (max-width: 850px) and (max-width: 850px) {
  .cosme_box07 .inner .flex_box .right_box .ttl {
    text-align: center;
    padding: 0 25px;
  }
}
@media (max-width: 850px) and (max-width: 850px) and (max-width: 650px) {
  .cosme_box07 .inner .flex_box .right_box .ttl {
    padding: 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 850px) {
  .cosme_box07 .inner .flex_box .right_box .ttl img {
    width: 100%;
  }
}
.cosme_box07 .inner .flex_box .right_box .imgbox {
  max-width: 499px;
}
.cosme_box07 .inner .flex_box .right_box .imgbox02 {
  max-width: 499px;
  margin-top: 89px;
}
.cosme_box07 .inner .flex_box .right_box .note {
  text-align: right;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 4.3;
}
@media (max-width: 650px) {
  .cosme_box07 .inner .flex_box .right_box .note {
    text-align: center;
    line-height: 1.3;
  }
}
@media (max-width: 650px) {
  .cosme_box07 .inner .flex_box .right_box .sp_last_txt {
    margin-top: 33px;
  }
}
@media (max-width: 850px) {
  .cosme_box07 .inner .flex_box .right_box .spimg01 {
    display: block;
    max-width: 60%;
    margin-left: auto;
  }
}
@media (max-width: 850px) and (max-width: 650px) {
  .cosme_box07 .inner .flex_box .right_box .spimg01 {
    line-height: 0;
    margin-bottom: 33px;
  }
}
@media (max-width: 850px) {
  .cosme_box07 .inner .flex_box .right_box .imbboxsp {
    display: block;
    max-width: 60%;
  }
}
@media (max-width: 850px) and (max-width: 650px) {
  .cosme_box07 .inner .flex_box .right_box .imbboxsp {
    line-height: 0;
    margin-bottom: 0;
    margin-top: 33px;
  }
}
@media (max-width: 850px) {
  .cosme_box07 .inner .flex_box .right_box .spimg03 {
    display: block;
    max-width: 60%;
    margin-left: auto;
  }
}
@media (max-width: 850px) and (max-width: 650px) {
  .cosme_box07 .inner .flex_box .right_box .spimg03 {
    margin-bottom: 0;
    line-height: 0;
  }
}
@media (max-width: 850px) {
  .cosme_box07 .inner .flex_box .right_box .txt {
    text-align: center;
    font-size: 1.6rem;
    line-height: 2.6;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
@media (max-width: 850px) and (max-width: 650px) {
  .cosme_box07 .inner .flex_box .right_box .txt {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 33px;
    margin-top: 33px;
  }
}

.cosme_box08 {
  padding: 0 0px;
}
@media (max-width: 850px) {
  .cosme_box08 {
    padding: 0;
  }
}
.cosme_box08 .lineup-block {
  margin-top: 152px;
}
@media (max-width: 650px) {
  .cosme_box08 .lineup-block {
    margin-top: 65px;
  }
}
.cosme_box08 .inner {
  background-color: #F8F1F6;
  padding-bottom: 143px;
}
@media (max-width: 650px) {
  .cosme_box08 .inner {
    padding-bottom: 86px;
  }
}
.cosme_box08 .inner .lineup-block {
  margin-bottom: 0;
}
.cosme_box08 .inner .txt01 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.6;
  text-align: center;
  background-image: url(../img/look/cosme/cosme_box08bk.svg);
  background-position: center;
  padding: 90px 0;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 850px) {
  .cosme_box08 .inner .txt01 {
    font-weight: 400;
    background-size: 80%;
    background-size: contain;
    padding: 0 20px;
  }
  .cosme_box08 .inner .txt01 .br {
    display: block;
  }
}
@media (max-width: 650px) {
  .cosme_box08 .inner .txt01 {
    font-size: 1.4rem;
    line-height: 33px;
    margin-top: 49px;
  }
}
@media (min-width: 851px) {
  .cosme_box08 .inner figure .sp_img {
    display: none;
  }
}
@media (max-width: 850px) {
  .cosme_box08 .inner figure img {
    width: 100%;
  }
  .cosme_box08 .inner figure .pc_img {
    display: none;
  }
}
@media (max-width: 650px) {
  .cosme_box08 .inner figure {
    margin-bottom: 0;
    line-height: 0;
  }
}
.cosme_box08 .inner .txt02 {
  padding: 0 67px;
}
@media (max-width: 850px) {
  .cosme_box08 .inner .txt02 {
    padding: 0 20px;
    margin-top: 73px;
  }
}
@media (min-width: 851px) {
  .cosme_box08 .inner .txt02 figure .sp_img {
    display: none;
  }
}
@media (max-width: 850px) {
  .cosme_box08 .inner .txt02 figure {
    display: block;
  }
  .cosme_box08 .inner .txt02 figure img {
    width: 100%;
  }
  .cosme_box08 .inner .txt02 figure .pc_img {
    display: none;
  }
}
.cosme_box08 .inner .txt02 .txt03 {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 4.3;
  letter-spacing: 0.15em;
}
@media (max-width: 650px) {
  .cosme_box08 .inner .txt02 .txt03 {
    text-align: right;
  }
}
.cosme_box08 .inner .txt04 {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.6;
  letter-spacing: 0.15em;
  margin-top: 40px;
}
@media (max-width: 850px) {
  .cosme_box08 .inner .txt04 {
    font-weight: 400;
    font-size: 1.4rem;
    margin-top: 30px;
    line-height: 33px;
  }
}

.cosme_box09 {
  padding: 0 0px;
}
@media (max-width: 850px) {
  .cosme_box09 {
    padding: 0;
  }
}
.cosme_box09 .inner {
  background-color: #FAEEDF;
  padding-bottom: 160px;
}
@media (max-width: 650px) {
  .cosme_box09 .inner {
    padding-bottom: 71px;
  }
}
.cosme_box09 .inner .lineup-block {
  margin-top: 121px;
}
@media (max-width: 650px) {
  .cosme_box09 .inner .lineup-block {
    margin-top: 101px;
    margin-bottom: 0;
  }
}
@media (min-width: 851px) {
  .cosme_box09 .inner figure .sp_img {
    display: none;
  }
}
@media (max-width: 850px) {
  .cosme_box09 .inner figure {
    display: block;
    margin-bottom: 0;
    line-height: 0;
  }
  .cosme_box09 .inner figure img {
    width: 100%;
  }
  .cosme_box09 .inner figure .pc_img {
    display: none;
  }
}
.cosme_box09 .inner .img_box01 {
  padding: 84px 67px 0;
}
@media (max-width: 850px) {
  .cosme_box09 .inner .img_box01 {
    padding: 24px 20px 0;
  }
  .cosme_box09 .inner .img_box01 figure {
    margin-bottom: 0;
  }
}
.cosme_box09 .inner .img_box01 .note01 {
  text-align: right;
  font-weight: 500;
  line-height: 4.3;
  letter-spacing: 0.15em;
}
@media (max-width: 650px) {
  .cosme_box09 .inner .img_box01 .note01 {
    font-size: 1.2rem;
  }
}
.cosme_box09 .inner .flex_box {
  padding: 69px 67px 0;
  display: flex;
  align-items: center;
  gap: 121px;
  justify-content: center;
}
@media (max-width: 850px) {
  .cosme_box09 .inner .flex_box {
    flex-direction: column;
    padding: 69px 20px 0;
    gap: 24px;
  }
}
@media (max-width: 650px) {
  .cosme_box09 .inner .flex_box {
    padding: 49px 20px 0;
  }
}
.cosme_box09 .inner .flex_box .txt01 {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.9;
  text-align: center;
  letter-spacing: 0.1em;
  color: #CE9631;
}
@media (max-width: 850px) {
  .cosme_box09 .inner .flex_box .txt01 {
    font-weight: 400;
    font-size: 2rem;
    line-height: 36px;
  }
}
.cosme_box09 .inner .flex_box .img_box02 {
  max-width: 537px;
}

.cosme_box10 {
  padding: 0 0px;
}
@media (max-width: 850px) {
  .cosme_box10 {
    padding: 0;
  }
}
.cosme_box10 .inner {
  background-color: #F3F1EF;
  padding-bottom: 160px;
}
@media (max-width: 650px) {
  .cosme_box10 .inner {
    padding-bottom: 93px;
  }
}
@media (max-width: 850px) {
  .cosme_box10 .inner {
    padding-bottom: 90px;
  }
}
.cosme_box10 .inner .lineup-block {
  margin-top: 121px;
}
@media (max-width: 650px) {
  .cosme_box10 .inner .lineup-block {
    margin-top: 76px;
    margin-bottom: 0;
  }
}
@media (min-width: 851px) {
  .cosme_box10 .inner figure .sp_img {
    display: none;
  }
}
@media (max-width: 850px) {
  .cosme_box10 .inner figure {
    display: block;
  }
  .cosme_box10 .inner figure img {
    width: 100%;
  }
  .cosme_box10 .inner figure .pc_img {
    display: none;
  }
}
.cosme_box10 .inner .flex_box {
  display: flex;
  justify-content: center;
  gap: 72px;
  margin-top: 133px;
}
@media (max-width: 650px) {
  .cosme_box10 .inner .flex_box {
    margin-top: 33px;
  }
}
.cosme_box10 .inner .flex_box .left_box {
  max-width: 550px;
}
@media (max-width: 850px) {
  .cosme_box10 .inner .flex_box .left_box {
    display: none;
  }
}
.cosme_box10 .inner .flex_box .left_box .txt01 {
  font-weight: 700;
  text-align: center;
  font-size: 2rem;
  line-height: 2.6;
  letter-spacing: 0.15em;
  margin-top: 104px;
}
.cosme_box10 .inner .flex_box .left_box figure {
  margin: 0;
}
.cosme_box10 .inner .flex_box .right_box {
  max-width: 550px;
}
@media (min-width: 851px) {
  .cosme_box10 .inner .flex_box .right_box .sp_img {
    display: none;
  }
  .cosme_box10 .inner .flex_box .right_box .sp_txt {
    display: none;
  }
}
@media (max-width: 850px) {
  .cosme_box10 .inner .flex_box .right_box {
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
  }
  .cosme_box10 .inner .flex_box .right_box .pv_img {
    display: none;
  }
  .cosme_box10 .inner .flex_box .right_box .sp_img {
    display: block;
  }
  .cosme_box10 .inner .flex_box .right_box .imgbox01 {
    max-width: 70%;
    display: none;
  }
  .cosme_box10 .inner .flex_box .right_box .imgbox02 {
    max-width: 70%;
    margin-left: auto;
    margin-top: 34px;
    display: none;
  }
  .cosme_box10 .inner .flex_box .right_box .sp_txt {
    display: block;
    text-align: center;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 33px;
    letter-spacing: 0.15em;
    margin: 54px auto 74px;
  }
}
.cosme_box10 .inner .flex_box .right_box .ttl {
  text-align: center;
  margin-bottom: 75px;
}
@media (min-width: 851px) {
  .cosme_box10 .inner .flex_box .right_box .ttl .sp_img {
    display: none;
  }
}
@media (max-width: 850px) {
  .cosme_box10 .inner .flex_box .right_box .ttl .pc_img {
    display: none;
  }
  .cosme_box10 .inner .flex_box .right_box .ttl .sp_img {
    display: block;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 850px) {
  .cosme_box10 .inner .flex_box .right_box .ttl {
    padding: 0 5px;
    margin-bottom: 54px;
  }
}
.cosme_box10 .inner .sp_bk {
  max-width: 1172px;
  margin: 81px auto 0;
}
@media (max-width: 650px) {
  .cosme_box10 .inner .sp_bk {
    background-color: #F3F1EF;
    padding: 30px 20px;
    margin-top: 0px;
  }
}
.cosme_box10 .inner .flex_box02 {
  background-color: #000;
  padding: 85px 67px 79px;
  margin-top: 145px;
}
.cosme_box10 .inner .flex_box02 p.note {
  text-align: right;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  line-height: 4.3;
  font-weight: 500;
}
@media (max-width: 650px) {
  .cosme_box10 .inner .flex_box02 p.note {
    text-align: center;
    line-height: 1.3;
    padding: 0 0 30px 0;
  }
}
.cosme_box10 .inner .flex_box02 p.note.pc_hide {
  display: none;
}
@media (max-width: 850px) {
  .cosme_box10 .inner .flex_box02 p.note.pc_hide {
    display: block;
  }
}
@media (max-width: 850px) {
  .cosme_box10 .inner .flex_box02 {
    padding: 100px 20px 30px;
    margin-top: 0;
  }
}
@media (max-width: 650px) {
  .cosme_box10 .inner .flex_box02 {
    padding: 50px 20px 0px;
  }
}
.cosme_box10 .inner .flex_box02 .ttl {
  text-align: center;
}
.cosme_box10 .inner .flex_box02 .sub_txt {
  text-align: center;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 2.1;
  letter-spacing: 0.15em;
  margin-top: 15px;
  color: #fff;
}
@media (max-width: 650px) {
  .cosme_box10 .inner .flex_box02 .sub_txt {
    font-size: 1.8rem;
  }
}
.cosme_box10 .inner .flex_box02 .flex {
  display: flex;
  justify-content: space-between;
  gap: 72px;
  margin-top: 48px;
}
@media (max-width: 650px) {
  .cosme_box10 .inner .flex_box02 .flex {
    flex-direction: column;
    gap: 33px;
  }
  .cosme_box10 .inner .flex_box02 .flex figure {
    max-width: 209px;
    display: block;
  }
  .cosme_box10 .inner .flex_box02 .flex figure:nth-child(2) {
    margin-left: auto;
  }
}

/*------------------------------
        Itemsページ
------------------------------*/
.items_lead {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  line-height: 2.6;
  margin-top: 90px;
}
@media (max-width: 680px) {
  .items_lead {
    margin-top: 37px;
  }
  .items_lead .br {
    display: block;
  }
  .items_lead br {
    display: none;
  }
}

#item-filter {
  max-width: 930px;
  margin: 45px auto 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
}
@media (max-width: 680px) {
  #item-filter {
    padding: 0 25px;
    margin: 45px auto 59px;
  }
}

/* チェックボックスを消す */
#item-filter input[type=checkbox] {
  display: none;
}

/* ラベル全体をボタン化 */
#item-filter label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-family: "Gabarito", sans-serif;
  cursor: pointer;
  padding: 10px 25px;
  /* gap: の都合で左右マージンは不要なら消してOK */
  border: 1px solid #000;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  transition: 0.25s;
}
@media (max-width: 680px) {
  #item-filter label {
    font-size: 1rem;
    padding: 8px 16px;
  }
}

/* ★ checked のとき：黒背景＋白文字 */
#item-filter label:has(input[type=checkbox]:checked) {
  background: #000;
  color: #fff;
}

.filter-series {
  max-width: 774px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
@media (max-width: 680px) {
  .filter-series {
    gap: 0 11px;
  }
}
.filter-series label {
  margin-bottom: 17px;
}
@media (max-width: 680px) {
  .filter-series label {
    margin-bottom: 10px;
  }
}

.filter-category {
  margin-bottom: 23px;
}
@media (max-width: 680px) {
  .filter-category {
    margin-bottom: 10px;
  }
}

/*------------------------------
       お問い合わせページ
------------------------------*/
.contact_ttl {
  font-family: "Gabarito", sans-serif;
  margin: 172px auto 125px;
}
@media (max-width: 590px) {
  .contact_ttl {
    margin: 92px auto;
  }
}
.contact_ttl h2 {
  font-size: 5rem;
  text-align: center;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  font-size: 5rem;
  line-height: 100%;
  letter-spacing: 0.15em;
}
@media (max-width: 590px) {
  .contact_ttl h2 {
    font-size: 3.5rem;
  }
}

.contact_lead {
  text-align: center;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.2;
  letter-spacing: 0.1em;
}
@media (max-width: 590px) {
  .contact_lead .br {
    display: block;
  }
}

.contact_box01 {
  max-width: 860px;
  margin: 21px auto 83px;
  padding: 0 30px;
}
@media (max-width: 590px) {
  .contact_box01 {
    padding: 0 20px;
    margin: 23px auto 56px;
  }
}
.contact_box01 .inner {
  background-color: #F8F8F8;
  padding: 22px 24px;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.93;
  letter-spacing: 0.1em;
}
@media (max-width: 590px) {
  .contact_box01 .inner {
    padding: 26px 25px;
    font-size: 1.3rem;
    line-height: 2.1;
  }
}

.contact_box02 {
  max-width: 860px;
  margin: 0px auto 160px;
  padding: 0 30px;
}
@media (max-width: 590px) {
  .contact_box02 {
    margin: 0px auto 0px;
    padding: 0 20px;
  }
}
.contact_box02 .list {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 590px) {
  .contact_box02 .list {
    flex-direction: column;
  }
}
.contact_box02 .list dt {
  width: 86px;
  margin-right: 36px;
  font-family: "Gabarito", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media (max-width: 590px) {
  .contact_box02 .list dt {
    width: 100%;
    padding: 0px 0 14px;
  }
}
.contact_box02 .list dt.pd {
  padding: 15px 0;
}
@media (max-width: 590px) {
  .contact_box02 .list dt.pd {
    padding: 0px 0 14px;
  }
}
.contact_box02 .list dt.jp {
  font-weight: 700;
}
.contact_box02 .list dd {
  width: calc(100% - 122px);
  margin-bottom: 20px;
  /* select本体 */
  /* 右側の▼ */
  /* フォーカス時（任意） */
}
@media (max-width: 590px) {
  .contact_box02 .list dd {
    width: 100%;
    margin-bottom: 24px;
  }
}
.contact_box02 .list dd .select-wrap {
  position: relative;
  max-width: 308px;
  width: 100%;
}
@media (max-width: 590px) {
  .contact_box02 .list dd .select-wrap {
    max-width: 100%;
  }
}
.contact_box02 .list dd .select-wrap select {
  max-width: 308px;
  width: 100%;
  padding: 13px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  border: 1px solid #000;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
@media (max-width: 590px) {
  .contact_box02 .list dd .select-wrap select {
    max-width: 100%;
  }
}
.contact_box02 .list dd .select-wrap::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}
.contact_box02 .list dd .select-wrap select:focus {
  outline: none;
}
.contact_box02 .list dd input {
  max-width: 308px;
  width: 100%;
  border: 1px solid #000;
  padding: 13px 20px;
  font-family: "Gabarito", sans-serif;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
.contact_box02 .list dd input ::-moz-placeholder {
  color: #C8C8C8;
  font-family: "Gabarito", sans-serif;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
.contact_box02 .list dd input ::placeholder {
  color: #C8C8C8;
  font-family: "Gabarito", sans-serif;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media (max-width: 590px) {
  .contact_box02 .list dd input {
    max-width: 100%;
  }
}
.contact_box02 .list dd textarea {
  width: 100%;
  padding: 13px 20px;
  border: 1px solid #000;
}
.contact_box02 .list dd textarea ::-moz-placeholder {
  color: #C8C8C8;
  font-family: "Gabarito", sans-serif;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
.contact_box02 .list dd textarea ::placeholder {
  color: #C8C8C8;
  font-family: "Gabarito", sans-serif;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
.contact_box02 .submit {
  text-align: center;
  margin: 80px 0 160px;
}
@media (max-width: 590px) {
  .contact_box02 .submit {
    margin: 60px 0 68px;
  }
}
.contact_box02 .submit input {
  background-color: #000;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 590px) {
  .contact_box02 .submit input {
    max-width: 100%;
  }
}

/*------------------------------
        ニュースページ
------------------------------*/
.single_news_ttl {
  font-family: "Gabarito", sans-serif;
  margin: 174px auto 129px;
}
@media (max-width: 590px) {
  .single_news_ttl {
    margin: 92px auto;
  }
}
.single_news_ttl h2 {
  font-size: 5rem;
  text-align: center;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  font-size: 5rem;
  line-height: 100%;
  letter-spacing: 0.15em;
}
@media (max-width: 590px) {
  .single_news_ttl h2 {
    font-size: 3.5rem;
  }
}

.single_news_txtbox {
  max-width: 800px;
  margin: 130px auto 120px;
}
@media (max-width: 820px) {
  .single_news_txtbox {
    padding: 0 30px;
  }
}
@media (max-width: 590px) {
  .single_news_txtbox {
    padding: 0 20px;
    margin: 0px auto 0px;
  }
}
.single_news_txtbox .day {
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  line-height: 100%;
  font-weight: 700;
  font-family: "Gabarito", sans-serif;
}
.single_news_txtbox .day .category {
  margin-left: 30px;
  background-color: #000;
  color: #fff;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  padding: 5px 10px;
}
.single_news_txtbox .ttl {
  margin-top: 10px;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  line-height: 160%;
  margin-bottom: 26px;
  font-weight: 700;
}
.single_news_txtbox .single_news_txtbox_txt {
  font-size: 1.6rem;
  line-height: 2.7;
  letter-spacing: 0.1em;
  margin-top: 27px;
  font-weight: 500;
}

.single-nav-wrap {
  max-width: 500px;
  margin: 120px auto 121px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
@media (max-width: 590px) {
  .single-nav-wrap {
    margin: 66px auto 157px;
  }
}
.single-nav-wrap .single-nav-center {
  margin: 0;
}
.single-nav-wrap .single-nav-prev {
  position: absolute;
  left: 10px;
}
@media (max-width: 590px) {
  .single-nav-wrap .single-nav-prev {
    left: 20px;
  }
  .single-nav-wrap .single-nav-prev a {
    padding: 19px 0px;
  }
}
.single-nav-wrap .single-nav-next {
  position: absolute;
  right: 0;
  padding: 19px 0;
}
@media (max-width: 590px) {
  .single-nav-wrap .single-nav-next {
    right: 20px;
    text-align: right;
  }
  .single-nav-wrap .single-nav-next a {
    padding: 19px 0px;
  }
}

.single-nav-wrap a {
  text-decoration: none;
  color: #000;
  letter-spacing: 0.15em;
  font-size: 14px;
  transition: opacity 0.3s;
  font-family: "Gabarito", sans-serif;
  font-weight: 600;
  line-height: 100%;
  padding: 19px 40px;
  display: block;
}
@media (max-width: 590px) {
  .single-nav-wrap a {
    padding: 19px 28px;
  }
}

.single-nav-wrap a:hover {
  opacity: 0.6;
}

/* 中央ボタン */
.back-to-list {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid #000;
  font-weight: 600;
}

/* PREV / NEXT の位置調整 */
.single-nav-prev a,
.single-nav-next a {
  font-weight: 500;
  font-family: "Gabarito", sans-serif;
  font-size: 1.4rem;
  line-height: 100%;
  letter-spacing: 0.15em;
}

.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin: 82px auto 121px;
}
@media (max-width: 590px) {
  .c-pagination {
    margin: 59px auto 92px;
    gap: 31px;
  }
}

.c-pagination .c-page-item a,
.c-pagination .c-page-item span {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.c-pagination a {
  color: #000;
  border-bottom: 2px solid #fff;
  padding-bottom: 2px;
  font-family: "Gabarito", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
}

/* 現在ページを下線で表現 */
.c-pagination .current {
  border-bottom: 2px solid #000;
  padding-bottom: 2px;
  font-family: "Gabarito", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
}

/* NEXT のみ右寄りになる場合は余白調整 */
.c-pagination .c-page-item:last-child a {
  font-weight: 600;
  letter-spacing: 0.15em;
}

.category_list_box {
  max-width: 800px;
  margin: 0 auto 80px;
}
@media (max-width: 820px) {
  .category_list_box {
    padding: 0 30px;
  }
}
.category_list_box dl {
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 590px) {
  .category_list_box dl {
    flex-direction: column;
    align-items: flex-start;
  }
}
.category_list_box dl dt {
  padding: 40px 0 41px;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  width: 30%;
  border-bottom: 1px solid #D9D9D9;
  font-size: 1.4rem;
}
@media (max-width: 590px) {
  .category_list_box dl dt {
    padding: 25px 0 0;
    width: 100%;
    border-bottom: none;
  }
}
.category_list_box dl dt:last-of-type {
  border-bottom: none;
}
.category_list_box dl dt .news-cat {
  background-color: #000;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 100%;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 5px 10px;
  margin-left: 24px;
  display: inline-block;
}
.category_list_box dl dd {
  padding: 40px 0;
  width: 70%;
  line-height: 160%;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #D9D9D9;
  font-size: 1.4rem;
}
@media (max-width: 590px) {
  .category_list_box dl dd {
    padding: 11px 0 25px;
    width: 100%;
  }
}
.category_list_box dl dd a {
  color: #000000;
}
.category_list_box dl dd:last-of-type {
  border-bottom: none;
}

/*------------------------------
    recruitページ
------------------------------*/
.recruit_box01 {
  margin: 166px auto 156px;
}
@media (max-width: 700px) {
  .recruit_box01 {
    margin: 42px auto 136px;
    padding: 0 20px;
  }
}
.recruit_box01 .inner {
  max-width: 800px;
  margin: 0 auto;
  background-color: #F8F8F8;
  text-align: center;
  padding: 84px 0 89px;
}
@media (max-width: 700px) {
  .recruit_box01 .inner {
    padding: 51px 0 62px;
  }
}
.recruit_box01 .inner .ttl {
  font-size: 4rem;
  letter-spacing: 0.1em;
  line-height: 100%;
  font-weight: 700;
}
@media (max-width: 700px) {
  .recruit_box01 .inner .ttl {
    font-size: 2.8rem;
    line-height: 1.2;
  }
}
.recruit_box01 .inner .ttl .sec {
  display: block;
  margin: 85px 0;
  line-height: 140%;
}
@media (max-width: 700px) {
  .recruit_box01 .inner .ttl .sec {
    margin: 60px 0;
  }
}
@media (max-width: 700px) {
  .recruit_box01 .inner .ttl .br {
    display: block;
  }
}
.recruit_box01 .inner .sub_ttl {
  font-size: 4rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: 700;
  margin-top: 33px;
}
.recruit_box01 .inner .txt {
  font-size: 1.6rem;
  line-height: 2.8;
  letter-spacing: 0.1em;
  margin-top: 54px;
  font-weight: 700;
}
@media (max-width: 700px) {
  .recruit_box01 .inner .txt {
    margin-top: 45px;
  }
  .recruit_box01 .inner .txt .br {
    display: block;
  }
}
.recruit_box01 .inner .last_ttl {
  margin-top: 107px;
}

.recruit_box02 .inner .ttl {
  text-align: center;
  font-size: 5rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 52px;
  font-family: "Gabarito", sans-serif;
}
@media (max-width: 700px) {
  .recruit_box02 .inner .ttl {
    font-size: 4rem;
    margin-bottom: 26px;
  }
}
.recruit_box02 .inner .ttl span {
  display: block;
  margin-top: 12px;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
}
@media (max-width: 700px) {
  .recruit_box02 .inner .ttl span {
    font-size: 1.6rem;
  }
}
.recruit_box02 .inner .lead_txt {
  text-align: center;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-bottom: 119px;
}
@media (max-width: 1050px) {
  .recruit_box02 .inner .lead_txt {
    font-size: 2rem;
  }
}
@media (max-width: 700px) {
  .recruit_box02 .inner .lead_txt {
    font-size: 1.6rem;
    margin-bottom: 42px;
    line-height: 2.18;
  }
  .recruit_box02 .inner .lead_txt .br {
    display: block;
  }
}
.recruit_box02 .inner .flex_box {
  display: flex;
}
@media (max-width: 800px) {
  .recruit_box02 .inner .flex_box {
    flex-direction: column;
    padding: 0 20px;
    margin-bottom: 60px;
  }
}
.recruit_box02 .inner .flex_box.reverse {
  flex-direction: row-reverse;
  justify-content: center;
}
@media (max-width: 800px) {
  .recruit_box02 .inner .flex_box.reverse {
    flex-direction: column;
    padding: 0 20px;
    margin-bottom: 60px;
  }
}
.recruit_box02 .inner .flex_box.reverse .txt_box {
  padding: 0 90px 0 0px;
  justify-content: flex-end;
}
@media (max-width: 1050px) {
  .recruit_box02 .inner .flex_box.reverse .txt_box {
    padding: 0 50px 0 40px;
  }
}
@media (max-width: 800px) {
  .recruit_box02 .inner .flex_box.reverse .txt_box {
    width: 100%;
    padding: 0 0px 0 0px;
  }
  .recruit_box02 .inner .flex_box.reverse .txt_box .inner {
    width: 100%;
  }
}
.recruit_box02 .inner .flex_box figure {
  width: 50%;
  margin: 0;
  line-height: 1;
}
@media (max-width: 800px) {
  .recruit_box02 .inner .flex_box figure {
    width: 100%;
  }
}
.recruit_box02 .inner .flex_box .txt_box {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 0 0 0 90px;
}
@media (max-width: 1050px) {
  .recruit_box02 .inner .flex_box .txt_box {
    padding: 0 40px 0 50px;
  }
}
@media (max-width: 800px) {
  .recruit_box02 .inner .flex_box .txt_box {
    width: 100%;
    padding: 0 0px 0 0px;
  }
  .recruit_box02 .inner .flex_box .txt_box .inner {
    width: 100%;
  }
}
.recruit_box02 .inner .flex_box .txt_box .sub_ttl {
  font-size: 3rem;
  letter-spacing: 0.1em;
  line-height: 130%;
  font-weight: 700;
  display: block;
}
@media (max-width: 1050px) {
  .recruit_box02 .inner .flex_box .txt_box .sub_ttl {
    font-size: 2.4rem;
  }
}
@media (max-width: 800px) {
  .recruit_box02 .inner .flex_box .txt_box .sub_ttl {
    text-align: center;
  }
}
@media (max-width: 700px) {
  .recruit_box02 .inner .flex_box .txt_box .sub_ttl {
    margin-top: 32px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
  .recruit_box02 .inner .flex_box .txt_box .sub_ttl .br {
    display: block;
  }
}
.recruit_box02 .inner .flex_box .txt_box .sub_ttl .nonber {
  font-family: "Gabarito", sans-serif;
  display: block;
  font-size: 10rem;
  letter-spacing: 0.1em;
  color: #D9D9D9;
  line-height: 100%;
}
@media (max-width: 1050px) {
  .recruit_box02 .inner .flex_box .txt_box .sub_ttl .nonber {
    font-size: 8rem;
  }
}
@media (max-width: 700px) {
  .recruit_box02 .inner .flex_box .txt_box .sub_ttl .nonber {
    font-size: 5rem;
    margin-bottom: 11px;
  }
}
.recruit_box02 .inner .flex_box .txt_box .txt {
  margin-top: 44px;
  max-width: 410px;
  line-height: 2.1;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media (max-width: 1050px) {
  .recruit_box02 .inner .flex_box .txt_box .txt {
    margin-top: 20px;
  }
}
@media (max-width: 800px) {
  .recruit_box02 .inner .flex_box .txt_box .txt {
    max-width: 100%;
  }
}

/*------------------------------
    Aboutページ
------------------------------*/
.about_box01 {
  margin: 156px auto 214px;
}
@media (max-width: 700px) {
  .about_box01 {
    margin: 42px auto 64px;
    padding: 0 20px;
  }
}
.about_box01 .inner {
  max-width: 800px;
  margin: 0 auto;
  background-color: #F8F8F8;
  text-align: center;
  padding: 100px 0 117px;
}
@media (max-width: 700px) {
  .about_box01 .inner {
    padding: 57px 0 94px;
  }
}
.about_box01 .inner .ttl {
  font-size: 5rem;
  letter-spacing: 0.15em;
  line-height: 1.9;
  font-weight: 700;
  font-family: "Gabarito", sans-serif;
}
@media (max-width: 700px) {
  .about_box01 .inner .ttl {
    font-size: 3.8rem;
    line-height: 2.1;
  }
}
@media (max-width: 700px) {
  .about_box01 .inner .ttl .br {
    display: block;
  }
}
.about_box01 .inner .ttl figure {
  display: block;
  margin: 0;
  margin-bottom: 0;
  line-height: 0;
}
@media (max-width: 700px) {
  .about_box01 .inner .ttl figure img {
    width: 40px;
    height: 40px;
  }
}
.about_box01 .inner .sub_ttl {
  font-size: 4rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: 700;
  margin-top: 33px;
}
@media (max-width: 700px) {
  .about_box01 .inner .sub_ttl {
    margin-top: 31px;
    font-size: 3rem;
  }
  .about_box01 .inner .sub_ttl .br {
    display: block;
  }
}
.about_box01 .inner .txt {
  font-size: 1.6rem;
  line-height: 2.8;
  letter-spacing: 0.1em;
  margin-top: 54px;
  font-weight: 500;
}
@media (max-width: 700px) {
  .about_box01 .inner .txt {
    font-weight: 700;
    margin-top: 27px;
    font-size: 1.4rem;
  }
  .about_box01 .inner .txt .br {
    display: block;
  }
}
.about_box01 .inner .last_ttl {
  margin-top: 107px;
}
@media (max-width: 700px) {
  .about_box01 .inner .last_ttl {
    max-width: 258px;
    margin: 71px auto 0;
  }
}

.about_box02 .inner .ttl {
  text-align: center;
  font-size: 5rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 102px;
  font-family: "Gabarito", sans-serif;
}
@media (max-width: 700px) {
  .about_box02 .inner .ttl {
    font-size: 4rem;
    margin-bottom: 24px;
    line-height: 100%;
  }
}
.about_box02 .inner .ttl span {
  display: block;
  margin-top: 12px;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
}
.about_box02 .inner .ttl span.br {
  display: inline;
}
@media (max-width: 700px) {
  .about_box02 .inner .ttl span {
    font-size: 1.6rem;
    margin-top: 9px;
  }
  .about_box02 .inner .ttl span.br {
    display: block;
  }
}
.about_box02 .inner .flex_box {
  display: flex;
}
@media (max-width: 800px) {
  .about_box02 .inner .flex_box {
    flex-direction: column;
    padding: 0 20px;
    margin-bottom: 60px;
  }
}
.about_box02 .inner .flex_box.reverse {
  flex-direction: row-reverse;
  justify-content: center;
}
@media (max-width: 800px) {
  .about_box02 .inner .flex_box.reverse {
    flex-direction: column;
    padding: 0 20px;
    margin-bottom: 60px;
  }
}
.about_box02 .inner .flex_box.reverse .txt_box {
  padding: 0 90px 0 0px;
  justify-content: flex-end;
}
@media (max-width: 1050px) {
  .about_box02 .inner .flex_box.reverse .txt_box {
    padding: 0 50px 0 40px;
  }
}
@media (max-width: 800px) {
  .about_box02 .inner .flex_box.reverse .txt_box {
    width: 100%;
    padding: 0 0px 0 0px;
  }
  .about_box02 .inner .flex_box.reverse .txt_box .inner {
    width: 100%;
  }
}
.about_box02 .inner .flex_box figure {
  width: 50%;
  margin: 0;
  line-height: 0;
}
@media (max-width: 800px) {
  .about_box02 .inner .flex_box figure {
    width: 100%;
  }
}
.about_box02 .inner .flex_box .txt_box {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 0 0 0 90px;
}
@media (max-width: 1050px) {
  .about_box02 .inner .flex_box .txt_box {
    padding: 0 40px 0 50px;
  }
}
@media (max-width: 800px) {
  .about_box02 .inner .flex_box .txt_box {
    width: 100%;
    padding: 0 0px 0 0px;
  }
  .about_box02 .inner .flex_box .txt_box .inner {
    width: 100%;
  }
}
.about_box02 .inner .flex_box .txt_box .sub_ttl {
  font-size: 5rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-weight: 700;
  display: block;
  font-family: "Gabarito", sans-serif;
}
@media (max-width: 1050px) {
  .about_box02 .inner .flex_box .txt_box .sub_ttl {
    font-size: 4rem;
  }
}
@media (max-width: 800px) {
  .about_box02 .inner .flex_box .txt_box .sub_ttl {
    text-align: center;
  }
}
@media (max-width: 700px) {
  .about_box02 .inner .flex_box .txt_box .sub_ttl {
    margin-top: 32px;
    font-size: 4rem;
    line-height: 1.5;
  }
  .about_box02 .inner .flex_box .txt_box .sub_ttl .br {
    display: block;
  }
}
.about_box02 .inner .flex_box .txt_box .sub_ttl span {
  display: block;
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-top: 12px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
}
@media (max-width: 700px) {
  .about_box02 .inner .flex_box .txt_box .sub_ttl span {
    font-size: 1.8rem;
    margin-top: 6px;
  }
}
.about_box02 .inner .flex_box .txt_box .txt {
  margin-top: 44px;
  max-width: 410px;
  line-height: 2.1;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media (max-width: 1050px) {
  .about_box02 .inner .flex_box .txt_box .txt {
    margin-top: 20px;
  }
}
@media (max-width: 800px) {
  .about_box02 .inner .flex_box .txt_box .txt {
    max-width: 100%;
    text-align: center;
  }
}

/* ----------------------------
   Sticky scene
---------------------------- */
.philo-scene {
  position: relative;
  --scene-height: 140vh;
  height: var(--scene-height);
  min-height: 200vh;
}
@media (max-width: 780px) {
  .philo-scene {
    --scene-height: 200vh;
    height: var(--scene-height);
  }
}

.philo-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  min-height: 1600px;
}
/* ----------------------------
   Philosophy block
---------------------------- */
.philo-parallax {
  position: relative;
  height: 100%;
  padding-top: 133px;
  padding-bottom: 270px;
}

/* 背景（ここだけ動かす） */
.philo-parallax__bg {
  position: absolute;
  inset: -25%;
  z-index: 0;
  background: radial-gradient(900px 600px at 20% 20%, rgba(255, 220, 200, 0.8), rgba(255, 255, 255, 0) 60%), radial-gradient(900px 600px at 80% 30%, rgba(190, 225, 255, 0.75), rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, rgba(245, 235, 225, 0.9), rgba(225, 240, 245, 0.9));
  filter: saturate(1.05);
  will-change: transform;
  /* JSで --bgY を更新 */
  transform: translate3d(0, var(--bgY, 0px), 0);
}

/* 中身 */
.philo-parallax__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.philo-parallax__title {
  margin: 0;
  font-family: "Gabarito", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media (max-width: 760px) {
  .philo-parallax__title {
    font-size: 4rem;
  }
}

.philo-parallax__sub {
  margin: 12px 0 0;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media (max-width: 760px) {
  .philo-parallax__sub {
    font-size: 1.6rem;
    margin: 10px 0 0;
  }
}

/* 白カード */
.philo-parallax__card {
  margin: clamp(36px, 5vw, 56px) auto 0;
  max-width: 800px;
  padding: 110px 50px 110px;
  background: rgba(255, 255, 255, 0.64);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
@media (max-width: 760px) {
  .philo-parallax__card {
    padding: 51px 10px 51px;
  }
}

.philo-parallax__catch {
  margin: 0;
  font-size: 4rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media (max-width: 760px) {
  .philo-parallax__catch {
    font-size: 2.7rem;
  }
}

.philo-parallax__text {
  font-size: 1.6rem;
  line-height: 2.8;
  letter-spacing: 0.1em;
  margin-top: 78px;
  font-weight: 500;
}
@media (max-width: 700px) {
  .philo-parallax__text {
    font-size: 1.4rem;
    line-height: 2.4;
    margin-top: 30px;
  }
  .philo-parallax__text .br {
    display: block;
  }
}

.philo-parallax__text p {
  margin: 0 0 14px;
}

/* ----------------------------
   Next cover (white)
   ★必ず Philosophy を“全部隠す”
   - margin-top を -1画面分（--overlap）にする
   - padding-top で中身が潰れないように補正する
---------------------------- */
.next-cover {
  position: relative;
  z-index: 10;
  background: #fff;
  /* 既存：Philosophy に被せる */
  margin-top: calc(-1 * var(--overlap));
  padding-top: 144px;
  /* ★追加：最初は下に逃がしておき、スクロールで0へ戻す */
  will-change: transform;
  transform: translate3d(0, var(--coverY, var(--overlap)), 0);
}
.next-cover {
  transform: translateY(var(--coverY, 100vh));
  will-change: transform;
}

/* 以下は見た目（任意） */
.next-cover__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.next-cover__title {
  margin: 0;
  font-size: 26px;
  letter-spacing: 0.06em;
}

.next-cover__sub {
  margin: 6px 0 28px;
  font-size: 12px;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

.next-cover__table {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.next-cover__table .row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
  font-size: 14px;
}

.next-cover__table .th {
  opacity: 0.7;
}

.next-cover__note {
  margin: 24px auto 0;
  max-width: 760px;
  font-size: 12px;
  line-height: 1.9;
  opacity: 0.7;
  text-align: left;
}

/* ----------------------------
   Responsive
---------------------------- */
@media (max-width: 830px) {
  .philo-parallax {
    padding: 74px 20px 86px;
  }
  /* SPは余白だけ調整（隠す量＝--overlap はJSが端末に合わせて更新） */
  .next-cover {
    padding: calc(var(--overlap) + 64px) var(--container-sp) 96px;
  }
  .next-cover__table .row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
/* ----------------------------
   Reduced motion
---------------------------- */
@media (prefers-reduced-motion: reduce) {
  .philo-parallax__bg {
    transform: translate3d(0, 0, 0) !important;
    will-change: auto;
  }
}
@media (max-width: 768px) {
  .philo-parallax__bg {
    transform: translate3d(0, 0, 0) !important;
  }
}
.about_box03 {
  margin-bottom: 145px;
}
@media (max-width: 830px) {
  .about_box03 {
    padding-top: 0px;
  }
}
@media (max-width: 680px) {
  .about_box03 {
    margin-bottom: 73px;
    padding-top: 65px;
  }
}
.about_box03.recruit {
  margin-top: 255px;
  margin-bottom: 107px;
}
@media (max-width: 680px) {
  .about_box03.recruit {
    margin-bottom: 41px;
    margin-top: 100px;
  }
}
.about_box03 .inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 680px) {
  .about_box03 .inner {
    padding: 0 20px;
  }
}
.about_box03 .inner .ttl {
  text-align: center;
  font-size: 5rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
  font-family: "Gabarito", sans-serif;
}
@media (max-width: 680px) {
  .about_box03 .inner .ttl {
    font-size: 4rem;
  }
}
.about_box03 .inner .ttl .mini {
  display: block;
  margin-top: 12px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
}
@media (max-width: 680px) {
  .about_box03 .inner .ttl .mini {
    font-size: 1.6rem;
  }
}
.about_box03 .inner .list {
  margin-top: 80px;
  border-top: 1px solid #D9D9D9;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 680px) {
  .about_box03 .inner .list {
    margin-top: 36px;
  }
}
.about_box03 .inner .list dt {
  width: 20%;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 27px;
  padding-top: 27px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.75;
  letter-spacing: 0.1em;
}
@media (max-width: 680px) {
  .about_box03 .inner .list dt {
    font-size: 1.4rem;
    line-height: 2;
    width: 70px;
    padding-bottom: 25px;
    padding-top: 25px;
  }
  .about_box03 .inner .list dt .br {
    display: block;
  }
}
.about_box03 .inner .list dd {
  width: 80%;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 27px;
  padding-top: 27px;
  line-height: 2.75;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}
@media (max-width: 680px) {
  .about_box03 .inner .list dd {
    padding-bottom: 25px;
    padding-top: 25px;
    font-size: 1.4rem;
    line-height: 2;
    width: calc(100% - 70px);
  }
}
.about_box03 .inner .list dd .mb56 {
  margin-bottom: 56px;
}
@media (max-width: 700px) {
  .about_box03 .inner .list dd .mb56 {
    margin-bottom: 40px;
  }
}
.about_box03 .inner .list dd.pdr {
  padding-right: 75px;
}
@media (max-width: 700px) {
  .about_box03 .inner .list dd.pdr {
    padding-right: 0;
  }
}
.about_box03 .inner .list dd ul {
  margin-top: 60px;
  padding-left: 20px;
}
@media (max-width: 700px) {
  .about_box03 .inner .list dd ul {
    margin-top: 35px;
  }
}
.about_box03 .inner .list dd ul li {
  list-style: disc;
}
.about_box03 .txt_box .sub_txt {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: 77px;
}
@media (max-width: 680px) {
  .about_box03 .txt_box .sub_txt {
    margin-top: 41px;
  }
  .about_box03 .txt_box .sub_txt .br {
    display: block;
  }
}
.about_box03 .txt_box .txt_box_inner {
  background-color: #F4F3F2;
  padding: 63px 0;
  text-align: center;
  margin-top: 38px;
}
@media (max-width: 680px) {
  .about_box03 .txt_box .txt_box_inner {
    padding: 37px 26px 39px;
    margin-top: 57px;
  }
}
.about_box03 .txt_box .txt_box_inner .sub_txt02 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (max-width: 680px) {
  .about_box03 .txt_box .txt_box_inner .sub_txt02 {
    font-size: 1.6rem;
    line-height: 2.5;
  }
}
.about_box03 .txt_box .txt_box_inner .txt {
  margin-top: 50px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.93;
}
@media (max-width: 680px) {
  .about_box03 .txt_box .txt_box_inner .txt {
    margin-top: 19px;
    text-align: left;
    padding: 0 10px;
  }
}

.about_box04 {
  padding: 0 30px 30px;
  min-height: 540px;
}
@media (max-width: 800px) {
  .about_box04 {
    min-height: 415px;
    padding: 0;
  }
}
.about_box04 .inner {
  background-image: url(../img/about/footer_img.jpg);
  background-size: cover;
  position: relative;
  height: 73vh;
  width: 100%;
}
@media (max-width: 1440px) {
  .about_box04 .inner {
    max-height: 540px;
  }
}
@media (max-width: 800px) {
  .about_box04 .inner {
    background-image: url(../img/about/sp_footer_img.jpg);
    min-height: 415px;
    background-position: center;
  }
}
.about_box04 .inner .txt_box {
  position: absolute;
  top: 12.15vw;
  right: 15.53vw;
}
@media (max-width: 1150px) {
  .about_box04 .inner .txt_box {
    right: 6vw;
  }
}
@media (max-width: 1050px) {
  .about_box04 .inner .txt_box {
    right: 3vw;
  }
}
@media (max-width: 800px) {
  .about_box04 .inner .txt_box {
    right: auto;
    text-align: center;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
}
.about_box04 .inner .txt_box .ttl {
  font-family: "Gabarito", sans-serif;
  font-size: 5rem;
  color: #fff;
  line-height: 100%;
  letter-spacing: 0.15em;
  color: #fff;
  text-align: center;
}
@media (max-width: 800px) {
  .about_box04 .inner .txt_box .ttl {
    font-size: 4rem;
  }
}
.about_box04 .inner .txt_box .txt {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  line-height: 2.1;
  color: #fff;
  margin-top: 25px;
}
@media (max-width: 800px) {
  .about_box04 .inner .txt_box .txt {
    display: none;
  }
}
.about_box04 .inner .txt_box .btn {
  margin-top: 36px;
}
.about_box04 .inner .txt_box .btn a {
  height: 55px;
}
@media (max-width: 800px) {
  .about_box04 .inner .txt_box .btn {
    max-width: 200px;
    margin: 13px auto 0;
  }
}

/*------------------------------
    Itemsページ
------------------------------*/
.look_lead {
  text-align: center;
  font-size: 2.5rem;
  line-height: 172%;
  letter-spacing: 0.3em;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  margin: 136px auto;
}
@media (max-width: 769px) {
  .look_lead {
    margin: 60px auto;
  }
}
@media (max-width: 530px) {
  .look_lead {
    font-size: 2rem;
    padding: 0 30px;
    margin: 48px auto;
  }
}
@media (max-width: 450px) {
  .look_lead {
    padding: 0 20px;
  }
}

.look_list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1124px;
  margin: 76px auto 138px;
  padding: 0 30px;
}
@media (max-width: 1100px) {
  .look_list {
    justify-content: space-between;
  }
}
@media (max-width: 700px) {
  .look_list {
    flex-direction: column;
    margin-bottom: 70px;
    margin-top: 0;
  }
}
@media (max-width: 450px) {
  .look_list {
    padding: 0 20px;
    margin-bottom: 44px;
  }
}
.look_list li {
  max-width: 497px;
  width: 100%;
  margin-bottom: 112px;
  position: relative;
}
.look_list li:hover {
  cursor: pointer;
}
@media (max-width: 1100px) {
  .look_list li {
    max-width: 100%;
    width: 48%;
  }
}
@media (max-width: 700px) {
  .look_list li {
    width: 100%;
  }
  .look_list li img {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .look_list li {
    margin-bottom: 48px;
  }
}
.look_list li a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.look_list li:hover {
  opacity: 1;
}
.look_list li:hover .img_box img {
  transform: scale(1.08);
}
.look_list li:nth-child(odd) {
  margin-right: 70px;
}
@media (max-width: 1100px) {
  .look_list li:nth-child(odd) {
    margin-right: 0px;
  }
}
.look_list li .ttl {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
  margin-bottom: 21px;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
}
@media (max-width: 400px) {
  .look_list li .ttl {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
.look_list li .txt {
  font-size: 1.6rem;
  line-height: 2.25;
  letter-spacing: 0.15em;
}
@media (max-width: 400px) {
  .look_list li .txt {
    font-size: 1.4rem;
  }
}
.look_list li .img_box {
  overflow: hidden;
  max-height: 291px;
}
@media (max-width: 400px) {
  .look_list li .img_box {
    margin-bottom: 22px;
  }
}
.look_list li .img_box img {
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform-origin: center center;
}

/*------------------------------
    CUDAページ
------------------------------*/
.cuda_box01 .inner {
  max-width: 1124px;
  margin: 100px auto 0;
  padding: 0 30px;
}
@media (max-width: 550px) {
  .cuda_box01 .inner {
    margin-top: 36px;
  }
}
@media (max-width: 400px) {
  .cuda_box01 .inner {
    padding: 0 15px;
  }
}
.cuda_box01 .inner .flex_box {
  display: flex;
  gap: 66px;
}
@media (max-width: 770px) {
  .cuda_box01 .inner .flex_box {
    flex-direction: column;
  }
}
.cuda_box01 .inner .flex_box .left_box {
  position: relative;
  max-width: 499px;
}
@media (max-width: 770px) {
  .cuda_box01 .inner .flex_box .left_box {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .cuda_box01 .inner .flex_box .left_box {
    display: none;
  }
}
.cuda_box01 .inner .flex_box .left_box .circle {
  position: absolute;
  left: -10vw;
  bottom: -10%;
}
@media (max-width: 770px) {
  .cuda_box01 .inner .flex_box .left_box .circle {
    width: 40%;
    left: -5vw;
  }
}
.cuda_box01 .inner .flex_box .right_box {
  padding-top: 65px;
  max-width: 499px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 601px) {
  .cuda_box01 .inner .flex_box .right_box .sp {
    display: none;
  }
}
@media (max-width: 600px) {
  .cuda_box01 .inner .flex_box .right_box .sp {
    display: block;
  }
}
@media (max-width: 600px) {
  .cuda_box01 .inner .flex_box .right_box {
    padding-bottom: 160px;
  }
  .cuda_box01 .inner .flex_box .right_box .circle {
    position: absolute;
    bottom: -3%;
    left: -23%;
    max-width: 340px;
  }
}
.cuda_box01 .inner .flex_box .right_box .sp {
  display: none;
}
@media (max-width: 600px) {
  .cuda_box01 .inner .flex_box .right_box .sp {
    display: block;
  }
}
@media (max-width: 770px) {
  .cuda_box01 .inner .flex_box .right_box {
    padding-top: 30px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .cuda_box01 .inner .flex_box .right_box {
    padding-top: 0px;
    margin-top: 0px;
  }
}
.cuda_box01 .inner .flex_box .right_box .ttl {
  font-size: 4rem;
  color: #036EB7;
  letter-spacing: 0.15em;
  line-height: 1.95;
  padding-left: 40px;
  margin-bottom: 100px;
  font-family: "Gabarito", sans-serif;
}
@media (max-width: 770px) {
  .cuda_box01 .inner .flex_box .right_box .ttl {
    padding-left: 0px;
  }
}
@media (max-width: 550px) {
  .cuda_box01 .inner .flex_box .right_box .ttl {
    margin-bottom: 26px;
    line-height: 1.6;
  }
}
@media (max-width: 600px) {
  .cuda_box01 .inner .flex_box .right_box .ttl {
    font-size: 3.2rem;
  }
}
@media (max-width: 600px) {
  .cuda_box01 .inner .flex_box .right_box .img_box {
    margin-top: 30px;
  }
}

/* 回転させたい要素に付けるクラス */
.is-rotate {
  display: inline-block;
  /* transformを効かせるため */
  animation: spin 20s linear infinite;
  transform-origin: 50% 50%;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* 端末設定で「動きを減らす」がONの人には止める */
@media (prefers-reduced-motion: reduce) {
  .is-rotate {
    animation: none;
  }
}
.cuda_box02 {
  padding: 0 0px;
  margin-top: 230px;
}
@media (max-width: 770px) {
  .cuda_box02 {
    margin-top: 150px;
  }
}
@media (max-width: 550px) {
  .cuda_box02 {
    margin-top: 50px;
  }
}
@media (max-width: 400px) {
  .cuda_box02 {
    padding: 0 15px;
  }
}
.cuda_box02 .bk_color {
  background-color: #036EB7;
  padding: 120px 30px;
}
@media (max-width: 770px) {
  .cuda_box02 .bk_color {
    padding: 50px 30px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .cuda_box02 .bk_color {
    padding: 65px 65px;
  }
}
.cuda_box02 .bk_color .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.cuda_box02 .bk_color .inner .flex_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 770px) {
  .cuda_box02 .bk_color .inner .flex_box {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .cuda_box02 .bk_color .inner .flex_box .left_box {
    max-width: 240px;
    margin: auto;
  }
}
.cuda_box02 .bk_color .inner .flex_box .right_box {
  font-size: 1.8rem;
  line-height: 3.2;
  letter-spacing: 0.15em;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 800px) {
  .cuda_box02 .bk_color .inner .flex_box .right_box {
    font-size: 1.4rem;
  }
}
@media (max-width: 770px) {
  .cuda_box02 .bk_color .inner .flex_box .right_box {
    margin-top: 20px;
  }
}
@media (max-width: 400px) {
  .cuda_box02 .bk_color .inner .flex_box .right_box {
    font-size: 1.4rem;
  }
}

.cuda_box03 {
  margin-top: 140px;
}
@media (max-width: 770px) {
  .cuda_box03 {
    margin-top: 50px;
  }
}
@media (max-width: 600px) {
  .cuda_box03 {
    margin-top: 31px;
  }
}
.cuda_box03 .inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}
@media (max-width: 1000px) {
  .cuda_box03 .inner {
    gap: 30px;
  }
}
@media (max-width: 680px) {
  .cuda_box03 .inner {
    flex-direction: column;
  }
}
@media (max-width: 400px) {
  .cuda_box03 .inner {
    padding: 0 15px;
  }
}
.cuda_box03 .inner .ttl {
  font-size: 3.9rem;
  letter-spacing: 0.15em;
  font-family: "Gabarito", sans-serif;
  font-weight: 600;
  color: #036EB7;
}
@media (max-width: 770px) {
  .cuda_box03 .inner .ttl {
    font-size: 3rem;
  }
}
@media (max-width: 600px) {
  .cuda_box03 .inner .ttl {
    font-size: 3.2rem;
  }
}
.cuda_box03 .inner .numbers {
  font-size: 14.5rem;
  letter-spacing: 0.05em;
  font-family: "Gabarito", sans-serif;
  font-weight: 500;
  color: #036EB7;
  display: flex;
  align-items: baseline;
}
@media (max-width: 770px) {
  .cuda_box03 .inner .numbers {
    font-size: 13.5rem;
  }
}
@media (max-width: 600px) {
  .cuda_box03 .inner .numbers {
    font-size: 10rem;
    line-height: 100%;
  }
}
.cuda_box03 .inner .numbers .mini {
  font-size: 6rem;
}
@media (max-width: 770px) {
  .cuda_box03 .inner .numbers .mini {
    font-size: 5rem;
  }
}
@media (max-width: 600px) {
  .cuda_box03 .inner .numbers .mini {
    font-size: 7rem;
  }
}
.cuda_box03 .inner .numbers .mini.bold {
  font-weight: 700;
}
.cuda_box03 .inner .left_box {
  max-width: 470px;
  width: 100%;
  background-color: #F9FFE3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0 25px;
}
@media (max-width: 680px) {
  .cuda_box03 .inner .left_box {
    max-width: 100%;
    padding: 52px 0 20px;
  }
}
.cuda_box03 .inner .right_box {
  max-width: 470px;
  width: 100%;
  background-color: #EAF5FF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 680px) {
  .cuda_box03 .inner .right_box {
    max-width: 100%;
    padding: 60px 0;
  }
}
@media (max-width: 400px) {
  .cuda_box03 .inner .right_box {
    padding: 30px 0;
  }
}

.cuda_box04 {
  padding: 0 30px;
}
@media (max-width: 400px) {
  .cuda_box04 {
    padding: 0 15px;
  }
}
.cuda_box04 .inner .ttl {
  text-align: center;
  font-size: 3.9rem;
  font-family: "Gabarito", sans-serif;
  color: #036EB7;
  letter-spacing: 0.15em;
  line-height: 1.5;
}
@media (max-width: 770px) {
  .cuda_box04 .inner .ttl {
    font-size: 2.6rem;
  }
}
@media (max-width: 600px) {
  .cuda_box04 .inner .ttl {
    font-size: 3rem;
  }
}
.cuda_box04 .inner .ttl::before {
  content: "";
  display: block;
  width: 123px;
  height: 118px;
  background-image: url(../img/look/cuda/icon.svg);
  background-size: cover;
  margin: 80px auto 50px;
}
@media (max-width: 600px) {
  .cuda_box04 .inner .ttl::before {
    margin: 40px auto 33px;
    width: 97px;
    height: 93px;
  }
}
.cuda_box04 .inner .txt {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.15em;
  line-height: 1.9;
  margin-top: 50px;
}
@media (max-width: 680px) {
  .cuda_box04 .inner .txt {
    font-size: 1.6rem;
  }
}
@media (max-width: 550px) {
  .cuda_box04 .inner .txt {
    margin-top: 30px;
  }
}
@media (max-width: 400px) {
  .cuda_box04 .inner .txt {
    font-size: 1.4rem;
  }
}
.cuda_box04 .inner figure {
  display: block;
  text-align: center;
  max-width: 704px;
  margin: 60px auto 0;
}

.cuda_box05 {
  margin-top: 110px;
  overflow-x: hidden;
}
@media (max-width: 770px) {
  .cuda_box05 {
    margin-top: 50px;
  }
}
.cuda_box05 .inner {
  max-width: 1030px;
  margin: 0 auto;
}
.cuda_box05 .inner .flex_box {
  display: flex;
  position: relative;
}
@media (max-width: 770px) {
  .cuda_box05 .inner .flex_box {
    flex-direction: column;
  }
}
.cuda_box05 .inner .flex_box .ttl {
  padding: 60px;
}
@media (max-width: 770px) {
  .cuda_box05 .inner .flex_box .ttl {
    text-align: center;
  }
}
.cuda_box05 .inner .flex_box .img {
  position: relative;
  z-index: 2;
  margin-left: -150px;
  max-width: 424px;
}
@media (max-width: 770px) {
  .cuda_box05 .inner .flex_box .img {
    margin-left: 0px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .cuda_box05 .inner .flex_box .img {
    width: 65%;
    margin: 0 auto;
  }
}
.cuda_box05 .inner .flex_box .circle {
  position: absolute;
  right: -6%;
  top: 0;
}
@media (max-width: 770px) {
  .cuda_box05 .inner .flex_box .circle {
    width: 50%;
    top: 40%;
  }
}
@media (max-width: 600px) {
  .cuda_box05 .inner .flex_box .circle {
    width: 80%;
    top: 30%;
    left: 10%;
    right: auto;
  }
}

.cuda_box06 .inner {
  max-width: 1110px;
  margin: 35px auto 0;
  display: flex;
  align-items: center;
  padding: 0 30px;
}
@media (max-width: 600px) {
  .cuda_box06 .inner {
    margin: 43px auto 0;
  }
}
.cuda_box06 .inner figure {
  max-width: 499px;
}
@media (max-width: 1100px) {
  .cuda_box06 .inner figure {
    width: 40%;
  }
}
@media (max-width: 780px) {
  .cuda_box06 .inner {
    flex-direction: column;
  }
  .cuda_box06 .inner figure {
    width: 80%;
    text-align: center;
  }
}
@media (max-width: 780px) and (max-width: 400px) {
  .cuda_box06 .inner figure {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .cuda_box06 .inner {
    padding: 0 20px;
  }
}
.cuda_box06 .inner .txt_box {
  margin-left: 85px;
}
@media (max-width: 1100px) {
  .cuda_box06 .inner .txt_box {
    margin-left: 40px;
  }
}
@media (max-width: 780px) {
  .cuda_box06 .inner .txt_box {
    margin-left: 0px;
    margin-top: 20px;
  }
}
.cuda_box06 .inner .txt_box .ttl {
  font-family: "Gabarito", sans-serif;
  font-size: 4rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  line-height: 1.2;
  color: #036EB7;
}
@media (max-width: 600px) {
  .cuda_box06 .inner .txt_box .ttl {
    text-align: center;
    font-size: 3.2rem;
    line-height: 100%;
  }
}
.cuda_box06 .inner .txt_box .ttl span {
  display: block;
  font-size: 2.1rem;
  margin-bottom: 10px;
  letter-spacing: 0.15em;
}
@media (max-width: 600px) {
  .cuda_box06 .inner .txt_box .ttl span {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 15px;
  }
}
.cuda_box06 .inner .txt_box .txt {
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  line-height: 2.6;
  margin-top: 30px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .cuda_box06 .inner .txt_box .txt {
    text-align: center;
  }
}

.cuda_box07 .inner {
  max-width: 1115px;
  margin: 35px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}
@media (max-width: 780px) {
  .cuda_box07 .inner {
    flex-direction: column-reverse;
  }
}
@media (max-width: 400px) {
  .cuda_box07 .inner {
    padding: 0 15px;
  }
}
.cuda_box07 .inner .img_box {
  max-width: 490px;
  width: 100%;
}
@media (max-width: 1100px) {
  .cuda_box07 .inner .img_box {
    width: 40%;
  }
}
@media (max-width: 780px) {
  .cuda_box07 .inner .img_box {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .cuda_box07 .inner .img_box img {
    max-width: 197px;
  }
}
@media (max-width: 400px) {
  .cuda_box07 .inner .img_box {
    width: 100%;
  }
}
.cuda_box07 .inner .img_box figure {
  max-width: 304px;
}
@media (max-width: 600px) {
  .cuda_box07 .inner .img_box figure {
    margin-bottom: 0;
  }
}
.cuda_box07 .inner .img_box figure:last-of-type {
  display: block;
  text-align: right;
  margin-left: auto;
}
.cuda_box07 .inner .txt_box {
  margin-right: 85px;
}
@media (max-width: 1100px) {
  .cuda_box07 .inner .txt_box {
    margin-right: 40px;
  }
}
@media (max-width: 780px) {
  .cuda_box07 .inner .txt_box {
    margin-right: 0px;
  }
}
@media (max-width: 600px) {
  .cuda_box07 .inner .txt_box {
    margin-top: 44px;
  }
}
.cuda_box07 .inner .txt_box .ttl {
  font-family: "Gabarito", sans-serif;
  font-size: 4rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  line-height: 1.2;
  color: #036EB7;
}
@media (max-width: 600px) {
  .cuda_box07 .inner .txt_box .ttl {
    text-align: center;
    font-size: 3.2rem;
    line-height: 100%;
  }
}
.cuda_box07 .inner .txt_box .ttl span {
  display: block;
  font-size: 2.1rem;
  margin-bottom: 10px;
  letter-spacing: 0.15em;
}
@media (max-width: 600px) {
  .cuda_box07 .inner .txt_box .ttl span {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 15px;
  }
}
.cuda_box07 .inner .txt_box .txt {
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  line-height: 2.6;
  margin-top: 30px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .cuda_box07 .inner .txt_box .txt {
    text-align: center;
  }
}

.cuda_box08 .inner {
  max-width: 1110px;
  margin: 35px auto 0;
  display: flex;
  align-items: center;
  padding: 0 30px;
}
.cuda_box08 .inner figure {
  max-width: 499px;
}
@media (max-width: 1100px) {
  .cuda_box08 .inner figure {
    width: 40%;
  }
}
@media (max-width: 780px) {
  .cuda_box08 .inner {
    flex-direction: column;
  }
  .cuda_box08 .inner figure {
    width: 80%;
    display: block;
    text-align: center;
  }
}
@media (max-width: 780px) and (max-width: 400px) {
  .cuda_box08 .inner figure {
    width: 100%;
    margin: 0;
    line-height: 0;
  }
}
@media (max-width: 400px) {
  .cuda_box08 .inner {
    padding: 0 15px;
  }
}
.cuda_box08 .inner .txt_box_wapper {
  display: flex;
}
@media (max-width: 600px) {
  .cuda_box08 .inner .txt_box_wapper .sp_no {
    display: none;
  }
}
@media (max-width: 550px) {
  .cuda_box08 .inner .txt_box_wapper {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.cuda_box08 .inner .txt_box {
  margin-left: 85px;
}
@media (max-width: 1100px) {
  .cuda_box08 .inner .txt_box {
    margin-left: 40px;
  }
}
@media (max-width: 600px) {
  .cuda_box08 .inner .txt_box {
    margin-left: 0;
    margin-top: 44px;
  }
}
.cuda_box08 .inner .txt_box .ttl {
  font-family: "Gabarito", sans-serif;
  font-size: 4rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  line-height: 1.2;
  color: #036EB7;
}
@media (max-width: 600px) {
  .cuda_box08 .inner .txt_box .ttl {
    text-align: center;
    font-size: 3.2rem;
    line-height: 100%;
  }
}
.cuda_box08 .inner .txt_box .ttl span {
  display: block;
  font-size: 2.1rem;
  margin-bottom: 10px;
  letter-spacing: 0.15em;
}
@media (max-width: 600px) {
  .cuda_box08 .inner .txt_box .ttl span {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 15px;
  }
}
.cuda_box08 .inner .txt_box .txt {
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  line-height: 2.6;
  margin-top: 30px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .cuda_box08 .inner .txt_box .txt {
    text-align: center;
  }
}
.cuda_box08 .inner .txt_box .btn {
  margin-top: 25px;
}
.cuda_box08 .inner .txt_box .btn a {
  max-width: 240px;
  padding: 20px 0;
  margin: 0;
  letter-spacing: 0.15em;
  cursor: pointer;
}
@media (max-width: 600px) {
  .cuda_box08 .inner .txt_box .btn a {
    max-width: 100%;
    width: 100%;
  }
}

.cuda_box09 {
  background-color: #EAF0F5;
  padding: 95px 0px 65px;
  margin-top: 80px;
}
.cuda_box09.one {
  background-color: transparent;
  padding: 0 0px;
}
@media (max-width: 600px) {
  .cuda_box09.one {
    padding: 0px 0px 70px;
  }
  .cuda_box09.one .inner {
    padding: 77px 21px 60px;
  }
}
.cuda_box09.one .inner {
  padding: 95px 30px 65px;
  background-color: #F3F3F3;
  max-width: 100%;
}
@media (max-width: 600px) {
  .cuda_box09.one .inner {
    padding: 77px 21px 60px;
  }
}
.cuda_box09.one .inner .function_list {
  max-width: 745px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .cuda_box09 {
    padding: 52px 20px 75px;
  }
}
.cuda_box09 .inner {
  max-width: 740px;
  margin: 0px auto 0;
}
.cuda_box09 .inner .ttl {
  text-align: center;
  font-family: "Gabarito", sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  line-height: 1.2;
  margin-bottom: 60px;
  font-weight: 800;
  color: #036EB7;
}
.cuda_box09 .inner .function_list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 600px) {
  .cuda_box09 .inner .function_list {
    gap: 20px;
  }
  .cuda_box09 .inner .function_list li {
    width: 28%;
  }
  .cuda_box09 .inner .function_list li figure {
    margin-bottom: 0;
  }
}
.cuda_box09 .inner .last_txt {
  text-align: center;
  margin-top: 40px;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}
@media (max-width: 600px) {
  .cuda_box09 .inner .last_txt {
    margin-top: 32px;
    padding: 0 10px;
  }
}

.lineup-block {
  margin-bottom: 80px;
  margin-top: 135px;
}
@media (max-width: 900px) {
  .lineup-block {
    margin-top: 80px;
  }
}
@media (max-width: 600px) {
  .lineup-block {
    margin-top: 60px;
    margin-bottom: 98px;
  }
}

.lineup-title {
  text-align: center;
  font-size: 5rem;
  font-family: "Gabarito", sans-serif;
  color: #036EB7;
  letter-spacing: 0.15em;
  line-height: 1.2;
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .lineup-title {
    font-size: 2.5rem;
    line-height: 100%;
    margin-bottom: 37px;
  }
}
.lineup-title.cosme {
  font-family: Shippori Mincho;
  color: #000;
  letter-spacing: 0;
}

.lineup_note {
  text-align: right;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  line-height: 4.3;
  padding-right: 29px;
  padding-bottom: 113px;
}
@media (max-width: 600px) {
  .lineup_note {
    padding-right: 0;
    text-align: center;
    padding-bottom: 97px;
  }
}

.item-list.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
  padding: 0 30px;
}
@media (max-width: 1100px) {
  .item-list.grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .item-list.grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== 美容傘モーダル ===== */
.beauty-modal {
  position: fixed;
  inset: 0;
  z-index: 999999999999;
  /* LINEUPより必ず上 */
  display: none;
}

.beauty-modal.is-open {
  display: block;
}

.beauty-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.beauty-modal-content {
  position: relative;
  width: 94%;
  max-width: 1100px;
  max-height: 100vh;
  margin: 0 auto;
  background: #fff;
  padding: 0px;
  overflow-y: auto;
}
@media (max-width: 600px) {
  .beauty-modal-content {
    width: 100%;
  }
}

.beauty-modal-close {
  position: absolute;
  top: 40px;
  right: 50px;
  cursor: pointer;
  z-index: 10000 !important;
}
@media (max-width: 600px) {
  .beauty-modal-close {
    top: 25px;
    right: 25px;
  }
}
.beauty-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 37px;
  height: 2px;
  background-color: #333;
  transform-origin: center;
}
.beauty-modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 37px;
  height: 2px;
  background-color: #333;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.is-beauty-modal-open {
  overflow: hidden;
}

.beauty-modal_top {
  background-size: cover;
  background-position: center;
  margin: 0 0 40px 0;
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .beauty-modal_top {
    min-height: 70vw;
  }
}
@media (max-width: 800px) {
  .beauty-modal_top {
    min-height: 85vw;
  }
}
@media (max-width: 768px) {
  .beauty-modal_top {
    min-height: 75vh;
  }
}
@media (max-width: 600px) {
  .beauty-modal_top {
    align-items: flex-start;
    width: 100%;
  }
}
@media (max-width: 850px) {
  .beauty-modal_top img {
    width: 100vw;
  }
}
.beauty-modal_top .txt_box {
  margin-left: auto;
  width: 100%;
  max-width: clamp(320px, 50.9vw, 695px);
  padding-right: clamp(120px, 14.28vw, 195px);
  text-align: center;
  transform: translateY(-5%);
}
@media (max-width: 900px) {
  .beauty-modal_top .txt_box {
    padding-right: clamp(90px, 8.28vw, 175px);
  }
}
@media (max-width: 700px) {
  .beauty-modal_top .txt_box {
    padding-right: 25px;
  }
}
@media (max-width: 600px) {
  .beauty-modal_top .txt_box {
    padding-right: 0;
    margin: 0 auto;
  }
}
.beauty-modal_top .txt_box .sub_ttl {
  font-weight: 600;
  font-size: 3.1rem;
  letter-spacing: 0.1em;
  line-height: 1.9;
  margin-top: 18px;
  font-family: "Yu Mincho", "游明朝", YuMincho, "游明朝体", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "MS Mincho", serif;
}
@media (max-width: 800px) {
  .beauty-modal_top .txt_box .sub_ttl {
    font-size: 2.6rem;
  }
}
@media (max-width: 700px) {
  .beauty-modal_top .txt_box .sub_ttl {
    font-size: 2.4rem;
  }
}
@media (max-width: 600px) {
  .beauty-modal_top .txt_box .sub_ttl {
    font-size: 2.6rem;
    line-height: 2.23;
    letter-spacing: 0.1em;
    margin-top: 0;
  }
}
.beauty-modal_top .txt_box .txt {
  margin-top: 58px;
  font-weight: 400;
  line-height: 2.3;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
@media (max-width: 800px) {
  .beauty-modal_top .txt_box .txt {
    margin-top: 30px;
  }
}
@media (max-width: 700px) {
  .beauty-modal_top .txt_box .txt {
    font-size: 1.4rem;
  }
}
@media (max-width: 600px) {
  .beauty-modal_top .txt_box .txt {
    display: none;
  }
}

.beauty-modal_sp_txt {
  display: none;
}
@media (max-width: 850px) {
  .beauty-modal_sp_txt {
    display: block;
    font-size: 1.8rem;
    text-align: center;
    line-height: 2.3;
    letter-spacing: 0.1em;
    font-weight: 400;
    margin-top: 34px;
    margin-bottom: 50px;
  }
}

.beauty-modal_sp_img {
  display: none;
}
@media (max-width: 600px) {
  .beauty-modal_sp_img {
    display: block;
    padding: 0 20px;
    margin-bottom: 27px;
  }
}

.beauty-modal_box02 {
  padding: 65px;
}
@media (max-width: 1000px) {
  .beauty-modal_box02 {
    padding: 35px;
  }
}
@media (max-width: 700px) {
  .beauty-modal_box02 {
    padding: 15px;
  }
}
@media (max-width: 600px) {
  .beauty-modal_box02 {
    padding: 0px;
  }
}
@media (max-width: 850px) {
  .beauty-modal_box02 img {
    width: 100%;
    padding: 30px;
  }
}
.beauty-modal_box02 .inner {
  background-image: url(../img/look/cuda/modal_img10.jpg);
  background-size: cover;
  min-height: 65vw;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .beauty-modal_box02 .inner {
    background-image: none;
  }
}
.beauty-modal_box02 .inner .txt_box {
  max-width: clamp(320px, 40.3vw, 585px);
  padding-left: clamp(120px, 9.7vw, 120px);
  text-align: center;
}
@media (max-width: 1000px) {
  .beauty-modal_box02 .inner .txt_box {
    padding-left: clamp(40px, 2.7vw, 40px);
  }
}
@media (max-width: 630px) {
  .beauty-modal_box02 .inner .txt_box {
    padding-left: 0;
    padding: 30px;
    max-width: 100%;
  }
}
@media (max-width: 570px) {
  .beauty-modal_box02 .inner .txt_box {
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  .beauty-modal_box02 .inner .txt_box {
    padding: 30px 0px 30px 15px;
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  .beauty-modal_box02 .inner .txt_box {
    padding: 30px 0px 30px 15px;
    max-width: 100%;
  }
}
@media (max-width: 400px) {
  .beauty-modal_box02 .inner .txt_box {
    padding: 15px 20px;
    max-width: 100%;
  }
}
.beauty-modal_box02 .inner .txt_box .ttl {
  font-weight: 500;
  font-size: 3rem;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.15em;
  margin-bottom: 35px;
  font-family: "Yu Mincho", "游明朝", YuMincho, "游明朝体", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "MS Mincho", serif;
}
@media (max-width: 900px) {
  .beauty-modal_box02 .inner .txt_box .ttl {
    font-size: 2.4rem;
  }
}
.beauty-modal_box02 .inner .txt_box .note {
  text-align: left;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.9;
  letter-spacing: 0.1em;
  margin-top: 46px;
}
@media (max-width: 400px) {
  .beauty-modal_box02 .inner .txt_box .note {
    margin-top: 35px;
  }
}

.beauty-modal_box03 {
  margin-top: 115px;
}
@media (max-width: 870px) {
  .beauty-modal_box03 {
    margin-top: 85px;
  }
}
@media (max-width: 500px) {
  .beauty-modal_box03 {
    margin-top: 55px;
  }
}
.beauty-modal_box03 .inner {
  max-width: 1070px;
  width: 100%;
  margin: 0 auto;
  padding: 0 35px;
}
@media (max-width: 700px) {
  .beauty-modal_box03 .inner {
    padding: 0 20px;
  }
}
.beauty-modal_box03 .inner .txt_box .ttl {
  display: flex;
  align-items: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #000;
  padding-bottom: 22px;
  font-family: "Yu Mincho", "游明朝", YuMincho, "游明朝体", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "MS Mincho", serif;
}
@media (max-width: 900px) {
  .beauty-modal_box03 .inner .txt_box .ttl {
    font-size: 2.4rem;
  }
}
@media (max-width: 700px) {
  .beauty-modal_box03 .inner .txt_box .ttl {
    font-size: 2.1rem;
    line-height: 1.7;
    padding-bottom: 14px;
  }
  .beauty-modal_box03 .inner .txt_box .ttl span {
    width: calc(100% - 49px);
  }
}
.beauty-modal_box03 .inner .txt_box .ttl::before {
  content: "";
  display: block;
  width: 47px;
  height: 48px;
  background-image: url("../img/look/cuda/modal_icon.svg");
  background-size: cover;
  margin-right: 23px;
}
@media (max-width: 768px) {
  .beauty-modal_box03 .inner .txt_box .ttl::before {
    width: 37px;
    height: 38px;
  }
}
@media (max-width: 700px) {
  .beauty-modal_box03 .inner .txt_box .ttl::before {
    width: 30px;
    height: 31px;
    margin-right: 19px;
  }
}
.beauty-modal_box03 .inner .flex_box {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
@media (max-width: 1000px) {
  .beauty-modal_box03 .inner .flex_box {
    gap: 40px;
  }
}
@media (max-width: 800px) {
  .beauty-modal_box03 .inner .flex_box {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .beauty-modal_box03 .inner .flex_box {
    margin-top: 49px;
  }
}
.beauty-modal_box03 .inner .flex_box:last-of-type {
  margin-top: 80px;
}
@media (max-width: 600px) {
  .beauty-modal_box03 .inner .flex_box:last-of-type {
    margin-top: 62px;
  }
}
.beauty-modal_box03 .inner .flex_box .left_box {
  max-width: 475px;
  width: 100%;
}
@media (max-width: 500px) {
  .beauty-modal_box03 .inner .flex_box .left_box {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .beauty-modal_box03 .inner .flex_box .left_box {
    width: 100%;
  }
}
.beauty-modal_box03 .inner .flex_box .left_box .ttl {
  margin-bottom: 35px;
}
.beauty-modal_box03 .inner .flex_box .left_box .ttl.mb30 {
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .beauty-modal_box03 .inner .flex_box .left_box .ttl.mb30 {
    margin-bottom: 38px;
  }
}
.beauty-modal_box03 .inner .flex_box .left_box .txt {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-bottom: 27px;
}
@media (max-width: 600px) and (max-width: 600px) {
  .beauty-modal_box03 .inner .flex_box .left_box .txt {
    font-size: 1.4rem;
    margin-bottom: 38px;
  }
  .beauty-modal_box03 .inner .flex_box .left_box .txt br.sp_none {
    display: none;
  }
}
.beauty-modal_box03 .inner .flex_box .right_box {
  max-width: 475px;
  width: 100%;
}
@media (max-width: 500px) {
  .beauty-modal_box03 .inner .flex_box .right_box {
    width: 75%;
  }
}
@media (max-width: 600px) {
  .beauty-modal_box03 .inner .flex_box .right_box {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }
  .beauty-modal_box03 .inner .flex_box .right_box.reverse {
    flex-direction: column;
  }
}
.beauty-modal_box03 .inner .flex_box .right_box .txt {
  margin-top: 57px;
  font-size: 1.8rem;
  line-height: 2.3;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #6B6B6B;
  text-align: center;
}
@media (max-width: 870px) {
  .beauty-modal_box03 .inner .flex_box .right_box .txt {
    margin-top: 37px;
    font-size: 1.6rem;
  }
}
@media (max-width: 600px) {
  .beauty-modal_box03 .inner .flex_box .right_box .txt {
    margin-top: 0;
    margin-bottom: 62px;
  }
}
.beauty-modal_box03 .inner .flex_box .right_box .txt.mt47 {
  margin-top: 47px;
}
@media (max-width: 600px) {
  .beauty-modal_box03 .inner .flex_box .right_box .txt.mt47 {
    margin-top: 39px;
  }
}
@media (max-width: 400px) {
  .beauty-modal_box03 .inner .flex_box .right_box .txt {
    font-size: 1.6rem;
  }
}

.beauty-modal_box04 {
  margin-top: 185px;
}
@media (max-width: 870px) {
  .beauty-modal_box04 {
    margin-top: 80px;
  }
}
@media (max-width: 600px) {
  .beauty-modal_box04 {
    margin-top: 53px;
  }
}
.beauty-modal_box04 .inner {
  max-width: 1070px;
  width: 100%;
  margin: 0 auto;
  padding: 0 35px 35px 35px;
}
@media (max-width: 700px) {
  .beauty-modal_box04 .inner {
    padding: 0 15px 35px 15px;
  }
}
.beauty-modal_box04 .inner .txt_box .ttl {
  display: flex;
  align-items: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #000;
  padding-bottom: 22px;
  font-family: "Yu Mincho", "游明朝", YuMincho, "游明朝体", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "MS Mincho", serif;
}
@media (max-width: 900px) {
  .beauty-modal_box04 .inner .txt_box .ttl {
    font-size: 2.4rem;
  }
}
.beauty-modal_box04 .inner .txt_box .ttl span {
  width: calc(100% - 49px);
}
.beauty-modal_box04 .inner .txt_box .ttl::before {
  content: "";
  display: block;
  width: 47px;
  height: 48px;
  background-image: url("../img/look/cuda/modal_icon.svg");
  background-size: cover;
  margin-right: 23px;
}
@media (max-width: 768px) {
  .beauty-modal_box04 .inner .txt_box .ttl::before {
    width: 37px;
    height: 38px;
  }
}
@media (max-width: 700px) {
  .beauty-modal_box04 .inner .txt_box .ttl::before {
    width: 30px;
    height: 31px;
    margin-right: 19px;
  }
}
.beauty-modal_box04 .inner .flex_box {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
@media (max-width: 1000px) {
  .beauty-modal_box04 .inner .flex_box {
    gap: 40px;
  }
}
@media (max-width: 800px) {
  .beauty-modal_box04 .inner .flex_box {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .beauty-modal_box04 .inner .flex_box {
    margin-top: 22px;
    gap: 63px;
  }
}
.beauty-modal_box04 .inner .flex_box:last-of-type {
  margin-top: 80px;
}
@media (max-width: 600px) {
  .beauty-modal_box04 .inner .flex_box:last-of-type {
    margin-top: 22px;
  }
}
.beauty-modal_box04 .inner .flex_box .left_box {
  max-width: 475px;
  width: 100%;
}
@media (max-width: 600px) {
  .beauty-modal_box04 .inner .flex_box .left_box {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 400px) {
  .beauty-modal_box04 .inner .flex_box .left_box {
    width: 100%;
  }
}
.beauty-modal_box04 .inner .flex_box .left_box .txt {
  margin-bottom: 60px;
  font-size: 1.8rem;
  line-height: 2.3;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #6B6B6B;
  text-align: center;
}
@media (max-width: 600px) {
  .beauty-modal_box04 .inner .flex_box .left_box .txt {
    font-size: 1.6rem;
    margin-top: 39px;
    line-height: 2.5;
    margin-bottom: 0;
  }
}
.beauty-modal_box04 .inner .flex_box .right_box {
  max-width: 475px;
  width: 100%;
}
@media (max-width: 500px) {
  .beauty-modal_box04 .inner .flex_box .right_box {
    width: 75%;
  }
}
@media (max-width: 600px) {
  .beauty-modal_box04 .inner .flex_box .right_box {
    width: 100%;
  }
}
.beauty-modal_box04 .inner .flex_box .right_box .note {
  font-size: 1.2rem;
  line-height: 1.9;
  letter-spacing: 0.1em;
  margin-top: 50px;
}

/*------------------------------
       プライバシーポリシー
------------------------------*/
.privacypolicy_lead {
  text-align: center;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.2;
  letter-spacing: 0.1em;
}
@media (max-width: 590px) {
  .privacypolicy_lead .br {
    display: block;
  }
}

.Privacypolicy_box01 {
  background-color: #F8F8F8;
  padding: 46px 50px;
  max-width: 800px;
  margin: 70px auto 156px;
}
@media (max-width: 650px) {
  .Privacypolicy_box01 {
    padding: 30px 20px;
    margin: 50px auto 70px;
  }
}
.Privacypolicy_box01 .txtbox01 {
  margin-bottom: 30px;
  line-height: 1.92;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
}
@media (max-width: 650px) {
  .Privacypolicy_box01 .txtbox01 {
    font-size: 1.2rem;
  }
}

/*------------------------------
        フッター
------------------------------*/
.brand_footer {
  background-color: #036EB7;
  padding: 85px 0 105px;
}
.brand_footer.bl {
  background-color: #C1B59D;
}
.brand_footer.bl .list li a:hover {
  color: #C1B59D;
}
.brand_footer.gl {
  background-color: #B1B1B1;
}
.brand_footer.gl .list li a {
  color: #fff;
  background-color: transparent;
}
.brand_footer.gl .list li a:hover {
  color: #C0B486;
  background-color: #fff;
}
.brand_footer.gre {
  background-color: #606060;
}
.brand_footer.gre .list li a:hover {
  color: #606060;
}
@media (max-width: 450px) {
  .brand_footer {
    padding: 42px 20px 56px;
  }
}
.brand_footer .ttl {
  text-align: center;
  font-family: "Gabarito", sans-serif;
  color: #fff;
  font-size: 2.3rem;
  letter-spacing: 0.2em;
  line-height: 172%;
}
.brand_footer .list {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 40px;
}
@media (max-width: 450px) {
  .brand_footer .list {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 27px;
  }
}
.brand_footer .list li {
  max-width: 200px;
  width: 100%;
  text-align: center;
}
@media (max-width: 450px) {
  .brand_footer .list li {
    max-width: 100%;
  }
}
.brand_footer .list li a {
  display: block;
  color: #fff;
  border: 1px solid #fff;
  font-family: "Gabarito", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  line-height: 1.2;
  padding: 20px 0;
  /* ★ ゆっくり変化させる */
  transition: color 0.6s ease, background-color 0.6s ease;
}
.brand_footer .list li a:hover {
  opacity: 1;
  background-color: #fff;
  color: #036EB7;
}

footer {
  background-color: #000;
}
footer .inner {
  padding: 75px 20px 45px;
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 820px) {
  footer .inner {
    flex-direction: column-reverse;
    align-items: center;
    padding: 45px 23px 31px;
  }
}
@media (max-width: 820px) {
  footer .inner .left_box {
    width: 60%;
    margin-top: 20px;
  }
}
@media (max-width: 690px) {
  footer .inner .left_box {
    width: 70%;
  }
}
@media (max-width: 590px) {
  footer .inner .left_box {
    width: 80%;
  }
}
@media (max-width: 500px) {
  footer .inner .left_box {
    width: 100%;
  }
}
footer .inner .left_box .footer_instagram {
  margin-top: 50px;
}
@media (max-width: 820px) {
  footer .inner .left_box .footer_instagram {
    text-align: center;
    margin-top: 30px;
  }
}
footer .inner .left_box .copy {
  margin-top: 100px;
  color: #fff;
}
@media (max-width: 820px) {
  footer .inner .left_box .copy {
    text-align: center;
    margin-top: 50px;
  }
}
footer .inner .left_box .copy small {
  font-size: 1rem;
  font-family: "Gabarito", sans-serif;
  font-weight: 400;
}
footer .inner .right_box {
  width: 40%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1100px) {
  footer .inner .right_box {
    width: 50%;
  }
}
@media (max-width: 820px) {
  footer .inner .right_box {
    width: 60%;
  }
}
@media (max-width: 690px) {
  footer .inner .right_box {
    width: 70%;
  }
}
@media (max-width: 590px) {
  footer .inner .right_box {
    width: 80%;
  }
}
@media (max-width: 500px) {
  footer .inner .right_box {
    width: 100%;
  }
}
footer .inner .right_box ul {
  width: 33%;
}
@media (max-width: 430px) {
  footer .inner .right_box ul {
    width: 48%;
  }
}
footer .inner .right_box ul li {
  margin-bottom: 30px;
}
footer .inner .right_box ul li a {
  color: #fff;
  font-weight: 600;
  font-family: "Gabarito", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 100%;
}
footer .inner .right_box ul li p {
  margin-top: 12px;
}
footer .inner .right_box ul li .shop-links {
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  margin-top: 0px;
  /* 見た目調整 */
}
footer .inner .right_box ul li.is-open .shop-links {
  opacity: 1;
}
footer .inner .right_box ul li.is-open .shop-links p a {
  font-weight: 400;
}

.cosme_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #EEE9DE;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  height: 60px;
  padding: 0 30px;
  display: none;
  transition: 0.3s ease-in-out;
}
@media (max-width: 850px) {
  .cosme_nav {
    display: block;
  }
}
.cosme_nav.is-fixed {
  display: flex;
  position: fixed;
  top: 60px;
  width: 100%;
  z-index: 99;
}
.cosme_nav.is-fixed figure {
  max-width: 137px;
}
.cosme_nav figure {
  margin-bottom: 0;
  line-height: 0;
}
.cosme_nav .nav {
  display: flex;
  align-items: center;
}
.cosme_nav .nav ul {
  display: flex;
  gap: 0 35px;
  padding: 2px 0;
}
.cosme_nav .nav ul:first-child {
  padding-right: 35px;
  margin-right: 45px;
  border-right: 2px solid #000;
}
@media (max-width: 850px) {
  .cosme_nav .nav ul:first-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
}
.cosme_nav .nav ul li a {
  color: #000;
  font-size: 1.4rem;
  font-family: "Gabarito", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media (max-width: 650px) {
  .cosme_nav .nav ul li a {
    font-size: 1.2rem;
  }
}

@media (max-width: 1150px) {
  /* ヘッダー自体は固定＆非スクロール */
  .cosme_nav {
    padding: 0 16px;
    overflow: hidden;
  }
  /* 横スクロールさせるのは nav だけ */
}
@media (max-width: 1150px) and (max-width: 650px) {
  .cosme_nav {
    display: flex;
  }
  .cosme_nav figure {
    max-width: 137px;
  }
}
@media (max-width: 1150px) {
  .cosme_nav .nav {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    /* ロゴ横の残り幅を使う */
    scrollbar-width: none;
  }
}
@media (max-width: 1150px) and (max-width: 650px) {
  .cosme_nav .nav {
    margin-left: 30px;
  }
}
@media (max-width: 1150px) {
  .cosme_nav .nav::-webkit-scrollbar {
    display: none;
  }
  .cosme_nav .nav ul {
    flex-wrap: nowrap;
    gap: 0 24px;
  }
}
@media (max-width: 1150px) and (max-width: 650px) {
  .cosme_nav .nav ul {
    gap: 0 20px;
  }
}
@media (max-width: 1150px) {
  .cosme_nav .nav li {
    flex: 0 0 auto;
  }
  .cosme_nav .nav a {
    white-space: nowrap;
  }
}
@media (min-width: 681px) {
  .br_680 {
    display: none !important;
  }
}
@media (max-width: 680px) {
  .br_680 {
    display: block !important;
  }
}
/*-------------------------
  ハンバーガーメニュー用
-------------------------*/
@media (max-width: 768px) {
  header .inner ul li {
    margin-right: 0;
  }
  /* ハンバーガー表示 */
  .hamburger {
    display: block;
    width: 25px;
    height: 16px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }
  .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
    transition: 0.3s;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 7px;
  }
  .hamburger span:nth-child(3) {
    bottom: 0;
  }
  /* ナビ非表示 */
  .global-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #000;
    transition: 0.3s;
    z-index: 1000;
    padding-top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .global-nav ul {
    flex-direction: column;
    gap: 35px;
    padding: 0 20px;
  }
  /* 開いた時 */
  body.nav-open .global-nav {
    right: 0;
  }
  /* ×に変形 */
  body.nav-open .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 5px;
    background-color: #fff;
  }
  body.nav-open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 10px;
    background-color: #fff;
  }
  header .inner ul li a {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
  }
  header .inner ul li a img {
    filter: brightness(0) invert(1);
  }
}
/* 初期状態 */
.js-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示状態 */
.js-fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 601px) {
  .br_600 {
    display: none;
  }
}
@media (max-width: 600px) {
  .br_600 {
    display: block;
  }
}
@media (min-width: 601px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .sp {
    display: block !important;
  }
}
.beauty-modal-trigger {
  cursor: pointer;
}

/* FadeUp v2 (独立) */
.js-fadeup2 {
  opacity: 0 !important;
  transform: translateY(18px) !important;
  transition: opacity 0.7s ease, transform 0.7s ease !important;
  will-change: opacity, transform;
}

.js-fadeup2.is-fadeup2-show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* 低モーション設定に配慮 */
@media (prefers-reduced-motion: reduce) {
  .js-fadeup2 {
    transition: none;
    transform: none;
    opacity: 1;
  }
}
.viewmore_look {
  margin: 60px 0;
}
@media (max-width: 600px) {
  .viewmore_look a {
    max-width: 200px;
  }
}

/* コスメSPスライライダーPCでは非表示 */
.sp-slider-wrap {
  display: none;
}
@media (max-width: 850px) {
  .sp-slider-wrap {
    display: block;
    padding: 0 30px;
    margin: 60px;
  }
}
@media (max-width: 600px) {
  .sp-slider-wrap {
    margin: 30px 0;
  }
}

/* スライダー本体 */
.sp-slider {
  position: relative;
  overflow: hidden;
}
.sp-slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* 左右ナビ：薄い丸ボタン */
.sp-slider-wrap .sp_slid_nav {
  /* 位置 */
}
.sp-slider-wrap .sp_slid_nav .swiper-button-prev,
.sp-slider-wrap .sp_slid_nav .swiper-button-next {
  width: 44px;
  height: 44px;
  background: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  padding: 0;
}
.sp-slider-wrap .sp_slid_nav .swiper-button-prev::after,
.sp-slider-wrap .sp_slid_nav .swiper-button-next::after {
  font-size: 44px;
  color: rgba(0, 0, 0, 0.45);
}
.sp-slider-wrap .sp_slid_nav .swiper-button-prev {
  left: 10px;
}
.sp-slider-wrap .sp_slid_nav .swiper-button-next {
  right: 10px;
}

/* 下のドット（画像の下・中央） */
.sp-slider-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  text-align: center;
  z-index: 10;
}
.sp-slider-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 6px !important;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.28);
  opacity: 1;
}
.sp-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(0, 0, 0, 0.85);
  border-color: rgba(0, 0, 0, 0.85);
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

@media (max-width: 850px) {
  .sp_hide {
    display: none !important;
  }
}
#cosme08 .sp-slider-wrap .sp_slid_nav .swiper-button-prev::after,
#cosme08 .sp-slider-wrap .sp_slid_nav .swiper-button-next::after {
  color: #fff;
}

#cosme08 .sp-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  border-color: #fff;
}

#cosme08.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, #fff);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

/* =========================================================
PC：既存レイアウト維持
========================================================= */
.cosme_toggle {
  display: none;
}

/* =========================================================
SP：850px以下でハンバーガー（プルダウン）
========================================================= */
@media (max-width: 850px) {
  .cosme_nav {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .cosme_nav .nav_btn_cosme {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
  }
  .cosme_nav .nav {
    display: none;
    opacity: 1;
  }
  .cosme_nav.is-open {
    background: rgba(238, 233, 222, 0.9);
  }
  .cosme_nav.is-open .cosme_toggle_icon {
    transform: rotate(-135deg);
    margin-top: 2px;
  }
  .cosme_nav.is-open .nav {
    display: block;
    flex-direction: column;
    margin: 0 Auto 20px auto;
  }
  /* ===============================
  トグルボタン
  =============================== */
  .cosme_toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 12px;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  .cosme_toggle_text {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.02em;
  }
  .cosme_toggle_icon {
    width: 10px;
    height: 10px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    margin-top: -2px;
  }
  /* ===============================
  メニュー本体（開閉）
  =============================== */
  .nav {
    overflow: hidden;
    height: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 14px 10px 18px;
    /* 1段目：STORY / CONCEPT / FEATURES */
    /* 2段目：縦並び */
  }
  .nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav ul:first-child {
    display: flex;
    justify-content: center;
    gap: 22px;
    padding: 6px 0 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.35);
    padding-right: 0;
    margin-right: 0;
    border-right: none;
    padding: 15px;
  }
  .nav ul:first-child a {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-decoration: none;
  }
  .nav ul:nth-child(2) {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .nav ul:nth-child(2) a {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-decoration: none;
  }
}
.cosme_logo .logo_sp {
  display: none;
}

@media (max-width: 850px) {
  .cosme_logo .logo_pc {
    display: none;
  }
  .cosme_logo .logo_sp {
    display: block;
  }
}
.amazon_link.is-coming {
  opacity: 0.6;
  pointer-events: none;
}/*# sourceMappingURL=style.css.map */