@charset "UTF-8";
/* line-clamp .p-lc
styleの場合
<p class="p-lc" style="--lc:2;">text</p> pcとspが同じ
<p class="p-lc" style="--lc-pc:2;--lc-sp:3;">text</p>  pcとspが別
----------------------------------------------------------------------------- */
[class*=-lc] {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: var(--lc);
  line-clamp: var(--lc);
}

.-lc_1 {
  --lc:1;
}

.-lc_2 {
  --lc:2;
}

.-lc_3 {
  --lc:3;
}

.-lc_4 {
  --lc:4;
}

.-lc_5 {
  --lc:5;
}

.-lc_6 {
  --lc:6;
}
.-dress_img img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 56/88;
}

.ml-heart-stroke::before,
.ml-heart-fill::after {
  content: "";
  width: 1.7rem;
  height: auto;
  aspect-ratio: 17/15;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 0.5s;
}

.ml-heart-stroke::before {
  -webkit-mask-image: url("../img/dress/heart-stroke.svg");
  mask-image: url("../img/dress/heart-stroke.svg");
}

.ml-heart-fill::after {
  -webkit-mask-image: url("../img/dress/heart-fill.svg");
  mask-image: url("../img/dress/heart-fill.svg");
}

.mylist_button-wrap {
  position: relative;
}
.mylist_button-wrap .js-mylist_button {
  position: absolute;
  bottom: 0;
  right: 0;
}

.js-mylist_button:has(i:is(.ml-heart-stroke, .ml-heart-fill))[aria-pressed=true] > i::after {
  opacity: 1;
}
.js-mylist_button:has(i:is(.ml-heart-stroke, .ml-heart-fill))[aria-pressed=false] > i::after {
  opacity: 0;
}
.js-mylist_button:has(i:is(.ml-heart-stroke, .ml-heart-fill)) > i {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.js-mylist_button:has(i:is(.ml-heart-stroke, .ml-heart-fill)) > i::after {
  position: absolute;
}
.js-mylist_button:not(:has(i:is(.ml-heart-stroke, .ml-heart-fill))) {
  display: flex;
  justify-content: center;
  align-items: center;
  --my-color:#fff;
  width: 1.7rem;
  height: 1.7rem;
  z-index: 10;
  cursor: pointer;
}
.js-mylist_button:not(:has(i:is(.ml-heart-stroke, .ml-heart-fill)))[aria-pressed=true]::after {
  opacity: 1;
}
.js-mylist_button:not(:has(i:is(.ml-heart-stroke, .ml-heart-fill)))[aria-pressed=false]::after {
  opacity: 0;
}
.js-mylist_button:not(:has(i:is(.ml-heart-stroke, .ml-heart-fill)))::before, .js-mylist_button:not(:has(i:is(.ml-heart-stroke, .ml-heart-fill)))::after {
  position: absolute;
}

/* Accordion
----------------------------------------------------------------------------- */
.js-accordion-button:not(.is-sp, .is-pc) {
  cursor: pointer;
}
.js-accordion-target:not(.is-sp, .is-pc) {
  overflow: hidden;
  position: relative;
}
.js-accordion-target:not(.is-sp, .is-pc)[aria-hidden=true] {
  height: 0;
}
.js-accordion-target:not(.is-sp, .is-pc)[aria-hidden=false] {
  z-index: 1;
}

/* ジャーナル
----------------------------------------------------------------------------- */
.cms_common-journal_list {
  display: grid;
}
.cms_common-journal_list .item .link {
  display: flex;
  flex-direction: column;
}
.cms_common-journal_list .item .thumb {
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
}
.cms_common-journal_list .item .thumb > img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 400/267;
  position: relative;
  z-index: 0;
  transition-property: transform;
  transition-duration: 0.5s;
}
.cms_common-journal_list .item .thumb .category {
  display: flex;
  justify-content: center;
  padding: 0.6rem 0.8rem 0.5rem;
  font-size: 1.2rem;
  min-width: 15rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: rgb(from #2A303D r g b/0.5);
  position: absolute;
  bottom: 0;
  left: 0;
}
.cms_common-journal_list .item .text {
  font-family: var(--ff_min);
}
.cms_common-journal_list .item .text .title {
  margin-bottom: 0.8rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.cms_common-journal_list .item .text .desc {
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--bc_black_text);
}
.cms_common-journal_list .item .date {
  margin-top: 1.2rem;
  border-top: 1px solid var(--bc_line);
  padding-top: 1.2rem;
  font-family: var(--ff_en);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

/* Archive Pager */
.cms_common-archive_pager {
  margin-top: 8.8rem;
  display: flex;
  justify-content: center;
}
.cms_common-archive_pager > .wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  font-weight: 200;
  font-family: var(--ff_en);
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: 0;
  color: currentColor;
  position: relative;
}
.cms_common-archive_pager > .wp-pagenavi:not(:has(.previouspostslink)) {
  margin-left: 5.2rem;
}
.cms_common-archive_pager > .wp-pagenavi:not(:has(.nextpostslink)) {
  margin-right: 5.2rem;
}
.cms_common-archive_pager a, .cms_common-archive_pager .wp-pagenavi > span {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
}
.cms_common-archive_pager a:not(.extend), .cms_common-archive_pager .wp-pagenavi > span:not(.extend) {
  box-sizing: border-box;
  height: auto;
}
.cms_common-archive_pager a:not(.extend, .previouspostslink, .nextpostslink), .cms_common-archive_pager .wp-pagenavi > span:not(.extend, .previouspostslink, .nextpostslink) {
  border-bottom: 1px solid transparent;
  padding-inline: 0.4rem;
}
.cms_common-archive_pager a:is(.pages), .cms_common-archive_pager .wp-pagenavi > span:is(.pages) {
  display: none;
}
.cms_common-archive_pager a:is(.current), .cms_common-archive_pager .wp-pagenavi > span:is(.current) {
  border-bottom-color: currentColor;
}
.cms_common-archive_pager a:is(.extend), .cms_common-archive_pager .wp-pagenavi > span:is(.extend) {
  width: 12px;
  background-image: radial-gradient(circle at center, currentColor 0%, currentColor 50%, transparent 50%, transparent 100%);
  background-size: 4px 4px;
  background-position: center;
  background-repeat: repeat-x;
}
.cms_common-archive_pager a:is(.previouspostslink, .nextpostslink), .cms_common-archive_pager .wp-pagenavi > span:is(.previouspostslink, .nextpostslink) {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  border-radius: 50%;
  width: 3.6rem;
  height: 3.6rem;
  position: relative;
}
.cms_common-archive_pager a:is(.previouspostslink, .nextpostslink)::after, .cms_common-archive_pager .wp-pagenavi > span:is(.previouspostslink, .nextpostslink)::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: currentColor;
  -webkit-mask-image: url(/destinyline/assets/img/common/ico-btn_arrow.svg);
  mask-image: url(/destinyline/assets/img/common/ico-btn_arrow.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition-property: background-color;
  transition-duration: 0.5s;
  position: absolute;
}
.cms_common-archive_pager a:is(.previouspostslink), .cms_common-archive_pager .wp-pagenavi > span:is(.previouspostslink) {
  order: -1;
  transform: scaleX(-1);
  margin-right: 1.6rem;
}
.cms_common-archive_pager a:is(.nextpostslink), .cms_common-archive_pager .wp-pagenavi > span:is(.nextpostslink) {
  order: 100;
  margin-left: 1.6rem;
}

.cms_common-single_pager {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 16.8rem auto 16.8rem 1fr;
  margin-top: 12rem;
}
.cms_common-single_pager > a {
  display: flex;
  align-items: center;
  color: var(--bc_black);
  transition-property: opacity;
  transition-duration: 0.5s;
}
.cms_common-single_pager .archive {
  grid-column: 3/4;
  font-family: var(--ff_en);
  font-weight: 200;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
.cms_common-single_pager :is(.prev, .next) {
  gap: 0.8rem;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
}
.cms_common-single_pager :is(.prev, .next) > i {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  border-radius: 50%;
  width: 3.6rem;
  height: 3.6rem;
  position: relative;
}
.cms_common-single_pager :is(.prev, .next) > i::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: currentColor;
  -webkit-mask-image: url(/destinyline/assets/img/common/ico-btn_arrow.svg);
  mask-image: url(/destinyline/assets/img/common/ico-btn_arrow.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition-property: background-color;
  transition-duration: 0.5s;
}
.cms_common-single_pager .prev {
  grid-column: 2/3;
}
.cms_common-single_pager .prev > i {
  transform: scaleX(-1);
}
.cms_common-single_pager .next {
  grid-column: 4/5;
  justify-content: flex-end;
}
/* ドレスリスト
----------------------------------------------------------------------------- */
.cms_common-dress_item {
  position: relative;
}
.no-touchevents .cms_common-dress_item .link:hover .thumb img {
  transform: scale(1.05);
}
.cms_common-dress_item .thumb {
  position: relative;
  z-index: 0;
  width: 100%;
  overflow: hidden;
}
.cms_common-dress_item .thumb img {
  transform: scale(1);
  transition: transform 0.3s;
}
.cms_common-dress_item .detail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
}
.cms_common-dress_item .name {
  font-family: var(--ff_en);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.cms_common-dress_item .js-mylist_button {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  cursor: pointer;
}
.cms_common-dress_item .spec {
  font-family: var(--ff_en);
  font-weight: 200;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.cms_common-dress_item .spec .no::before {
  content: "NO : ";
}
.cms_common-dress_item .spec .style {
  font-family: var(--ff_go);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.3;
}

/* ローディング共通
----------------------------------------------------------------------------- */
.cms_common-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  font-family: var(--ff_en);
  font-weight: 200;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
.cms_common-loading > .icon {
  width: 2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 0.4rem solid var(--bc_main);
  border-right-color: var(--bc_gray3);
  animation: l2 1s infinite linear;
}

@keyframes l2 {
  to {
    transform: rotate(1turn);
  }
}
/* パララックスの動き
----------------------------------------------------------------------------- */
.cms_js-list_item-ios {
  transition-property: opacity;
  transition-duration: 1s;
}
.cms_js-list_item-ios:not(.is-active) {
  opacity: 0;
  pointer-events: none;
}

/* サイドのsticky
----------------------------------------------------------------------------- */
.cms_common_js-side-sticky {
  --my-h:0px;
  --diff-h:0px;
  --scroll-rate: 1;
  transition-property: top;
  transition-duration: 0.1s;
  transition-timing-function: linear;
}

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

Common CSS

・ヘッダー、フッター等のページ共通で使用される要素「.g-×××」

上記はここに記述する

============================================================================= */
/*---------------------------------------------------------------
 add on
---------------------------------------------------------------*/
:root {
  /* フォント */
  --ff_go: "Zen Kaku Gothic New", sans-serif;
  --ff_en: "Poppins", sans-serif;
  /* スクロールバー幅動的対応 */
  --scrollbar: 0;
  /* カラーリング */
  /* hex */
  --bc_ff: #FFFFFF;
  --bc_00: #000000;
  --bc_c00: #cc0000;
  --bc_00c: #0000cc;
  --bc_black: #000000;
  --bc_white: #FFFFFF;
  --bc_line: #BFBFBF;
  --bc_gray: #565656;
  --bc_gray2: #BFBFBF;
  --bc_gray3: #F8F8F8;
  --bc_main: #404040;
  /* RGB */
  --bc_ff_RGB: 255,255,255;
  --bc_00_RGB: 0,0,0;
  --bc_c00_RGB: 204, 0, 0;
  --bc_red_RGB: 204, 0, 0;
  --bc_blue_RGB: 0, 0, 204;
  --bc_black_RGB: 24,25,26;
  --bc_white_RGB: 255,255,255;
  --bc_line_RGB: 191,191,191;
  --bc_gray_RGB: 86,86,86;
  --bc_gray2_RGB: 191,191,191;
  --bc_gray3_RGB: 248,248,248;
  --bc_main_RGB: 64,64,64;
}

/* 自動高さ調整 */
[data-autoheight],
[data-autoheight-pc],
[data-autoheight-sp] {
  transition: none !important;
}

/*---------------------------------------------------------------
 Library class
---------------------------------------------------------------*/
/* object-fit */
:where(.-of) {
  display: block;
  line-height: 0;
}
:where(.-of) > img {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
}

:where(.-of_contain) {
  display: block;
  line-height: 0;
}
:where(.-of_contain) > img {
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
  background-size: contain;
  background-position: center center;
  width: 100%;
  height: 100%;
}

/* line-clamp */
:where(.-line_clamp) {
  display: -webkit-inline-box;
  -webkit-box-orient: vertical;
  text-align: left;
  overflow: hidden;
}

/* background img */
:where(.-bg) {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

@keyframes anim-underline01 {
  0% {
    clip-path: inset(0% 100% 0% 0%);
  }
  40% {
    clip-path: inset(0% 0% 0% 0%);
  }
  60% {
    clip-path: inset(0% 0% 0% 0%);
  }
  100% {
    clip-path: inset(0% 0% 0% 100%);
  }
}
@keyframes anim-underline02 {
  0% {
    clip-path: inset(0% 0% 0% 0%);
  }
  40% {
    clip-path: inset(0% 0% 0% 100%);
  }
  60% {
    clip-path: inset(0% 100% 0% 0%);
  }
  100% {
    clip-path: inset(0% 0% 0% 0%);
  }
}
:where(.-underline) > span {
  position: relative;
}
:where(.-underline) > span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--bc_black);
  clip-path: inset(0% 100% 0% 0%);
}
:where(.-underline):not(:has(.ico-other_heart)) i {
  margin-left: 1.5rem;
}
.no-touchevents :where(.-underline):hover span::before {
  animation-name: anim-underline01;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
:where(.-underline).-rev > span::before {
  bottom: -0.5rem;
  clip-path: inset(0% 0% 0% 0%);
}
.no-touchevents :where(.-underline).-rev:hover span::before {
  animation-name: anim-underline02;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
:where(.-underline).-bc_white {
  color: var(--bc_white);
}
:where(.-underline).-bc_white span::before {
  background-color: var(--bc_white);
}
:where(.-underline).-bc_white i {
  background: var(--bc_white);
}

/*---------------------------------------------------------------
 ico class
---------------------------------------------------------------*/
/* btn insta icon */
:where(.ico-btn_insta) i {
  display: inline-flex;
  width: 1.6rem;
  height: 1.6rem;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/ico-btn_insta.svg");
  mask-image: url("../img/common/ico-btn_insta.svg");
  background: var(--bc_black);
}

/* btn facebook icon */
:where(.ico-btn_facebook) i {
  display: inline-flex;
  width: 1.6rem;
  height: 1.6rem;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/ico-btn_facebook.svg");
  mask-image: url("../img/common/ico-btn_facebook.svg");
  background: var(--bc_black);
}

/* btn arrow icon */
:where(.ico-btn_arrow) i {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/ico-btn_arrow.svg");
  mask-image: url("../img/common/ico-btn_arrow.svg");
  background: var(--bc_main);
}

/* heart icon */
:where(.ico-other_heart) i {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/ico-other_heart.svg");
  mask-image: url("../img/common/ico-other_heart.svg");
  background: var(--bc_black);
}

/* search icon */
:where(.ico-other_search) i {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/ico_other_search.svg");
  mask-image: url("../img/common/ico_other_search.svg");
  background: var(--bc_black);
}

/* pagetop arrow */
:where(.ico-pagetop_arrow) i {
  display: inline-flex;
  width: 0.8rem;
  height: 0.5rem;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/ico-pagetop_arrow.svg");
  mask-image: url("../img/common/ico-pagetop_arrow.svg");
  background: var(--bc_white);
}

/*---------------------------------------------------------------
 Font Format class
---------------------------------------------------------------*/
/* webfont */
/* Zen Kaku Gothic New */
:where(.-f_go) {
  font-family: var(--ff_go);
  font-style: normal;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
}

/* Poppins */
:where(.-f_en) {
  font-family: var(--ff_en);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*---------------------------------------------------------------
 Text Format class
---------------------------------------------------------------*/
/* text style */
/* 欧文タイトル （デフォルトM）*/
:where(.-t_title) {
  font-family: var(--ff_en);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 4.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
:where(.-t_title):where(.-fz_l) {
  font-size: 5.5rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
:where(.-t_title):where(.-fz_m) {
  font-size: 4.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
:where(.-t_title):where(.-fz_s) {
  font-size: 2.6rem;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 1.7;
}

/* 見出し（デフォルトM） */
:where(.-t_headline) {
  font-family: var(--ff_go);
  font-style: normal;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
  font-size: 2.5rem;
  letter-spacing: 0;
  line-height: 1.8;
}
:where(.-t_headline):where(.-fz_l) {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.8;
}
:where(.-t_headline):where(.-fz_m) {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.8;
}
:where(.-t_headline):where(.-fz_s) {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
:where(.-t_headline):where(.-fz_xs) {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
}

/* 本文（デフォルトM2） */
:where(.-t_body) {
  font-family: var(--ff_go);
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 2;
}
:where(.-t_body):where(.-fz_m1) {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.4;
}
:where(.-t_body):where(.-fz_m2) {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2;
}
:where(.-t_body):where(.-fz_s) {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.5;
}

/* line height */
:where(.-lh_24) {
  line-height: 2.4;
}

:where(.-lh_22) {
  line-height: 2.2;
}

:where(.-lh_20) {
  line-height: 2;
}

:where(.-lh_18) {
  line-height: 1.8;
}

:where(.-lh_17) {
  line-height: 1.7;
}

:where(.-lh_16) {
  line-height: 1.8;
}

:where(.-lh_15) {
  line-height: 1.5;
}

/* note */
:where(.-t_note) {
  font-family: var(--ff_go);
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

/* indent（※） */
:where(.-indent) {
  padding-left: 1em;
}
:where(.-indent)::before {
  position: relative;
  content: "※";
  margin-left: -1em;
}

/* weight level(100) */
/* Thin */
:where(.-fw_t) {
  font-weight: 100;
}

/* ExtraLight(200) */
:where(.-fw_t) {
  font-weight: 200;
}

/* light(300) */
:where(.-fw_l) {
  font-weight: 300;
}

/* regular(400) */
:where(.-fw_r) {
  font-weight: 400;
}

/* medium(500) */
:where(.-fw_m) {
  font-weight: 500;
}

/*---------------------------------------------------------------
 Title Format class
---------------------------------------------------------------*/
/* section title */
:where(.-sec_tit) {
  color: var(--bc_main);
}
:where(.-sec_tit) :where(.-title) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
:where(.-sec_tit) :where(.-title).-titleline {
  position: relative;
}
:where(.-sec_tit) :where(.-title).-titleline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  height: 1px;
  /* 背景にアニメーションするグラデーションを設定 */
  background-image: linear-gradient(90deg, var(--bc_line), var(--bc_line), var(--bc_line), var(--bc_line), var(--bc_line), var(--bc_line), var(--bc_line), var(--bc_line), rgba(171, 173, 167, 0), rgba(171, 173, 167, 0), #006c91, #c2c2c2, #c2c2c2);
  background-size: 200% auto;
  background-repeat: no-repeat;
  background-position: 200% center;
}
@keyframes titleanim01_underline {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: 0% center;
  }
}
:where(.-sec_tit) :where(.-title) .-f_en {
  font-family: var(--ff_en);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.05em;
  line-height: 0.8;
}
:where(.-sec_tit) :where(.-title) .-f_en:not(.-noanimate) {
  /* 背景にアニメーションするグラデーションを設定 */
  background-image: linear-gradient(90deg, var(--bc_main), var(--bc_main), var(--bc_main), var(--bc_main), var(--bc_main), var(--bc_main), #6B858C, #52a3be, #ABADA7, var(--bc_main), #ABADA7, rgba(171, 173, 167, 0));
  background-size: 200% auto;
  background-repeat: no-repeat;
  background-position: 400% center;
  /* テキストの形にだけ表示（＝マスク） */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; /* Safari対策 */
}
@keyframes titleanim01_gradientFlow {
  0% {
    background-position: 400% center;
    background-image: linear-gradient(90deg, var(--bc_main), var(--bc_main), var(--bc_main), var(--bc_main), var(--bc_main), var(--bc_main), #6B858C, #52a3be, #ABADA7, var(--bc_main), #ABADA7, rgba(171, 173, 167, 0));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; /* Safari対策 */
  }
  99.9% {
    background-position: 0% center;
    background-image: linear-gradient(90deg, var(--bc_main), var(--bc_main), var(--bc_main), var(--bc_main), var(--bc_main), var(--bc_main), #6B858C, #52a3be, #ABADA7, var(--bc_main), #ABADA7, rgba(171, 173, 167, 0));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; /* Safari対策 */
  }
  100% {
    background-position: 0% center;
    background-image: none;
    background-clip: unset;
    -webkit-text-fill-color: var(--bc_main); /* Safari対策 */
  }
}
@keyframes titleanim01_gradientFlow_white {
  0% {
    background-position: 400% center;
    background-image: linear-gradient(90deg, #FFF, #FFF, #FFF, #FFF, #FFF, #FFF, #6B858C, #52a3be, #ABADA7, var(--bc_main), #ABADA7, rgba(171, 173, 167, 0));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; /* Safari対策 */
  }
  99.9% {
    background-position: 0% center;
    background-image: linear-gradient(90deg, #FFF, #FFF, #FFF, #FFF, #FFF, #FFF, #6B858C, #52a3be, #ABADA7, var(--bc_main), #ABADA7, rgba(171, 173, 167, 0));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; /* Safari対策 */
  }
  100% {
    background-position: 0% center;
    background-image: none;
    background-clip: unset;
    -webkit-text-fill-color: #FFF; /* Safari対策 */
  }
}
:where(.-sec_tit) :where(.-title) .-f_en.-noanimate {
  animation: none !important;
}
:where(.-sec_tit) :where(.-title) .-f_go {
  font-family: var(--ff_go);
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
}
:where(.-sec_tit) :where(.-title) .-f_go:not(.-noanimate) {
  opacity: 0;
  transform: translateY(1rem);
}
@keyframes titleanim01_subtxt {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
:where(.-sec_tit) :where(.-title) .-f_go.-noanimate {
  animation: none !important;
}
:where(.-sec_tit) :where(.-title).-inline {
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 1.2rem;
}
:where(.-sec_tit) :where(.-title).-inline .-f_go {
  position: relative;
}
:where(.-sec_tit) :where(.-title).-inline .-f_go::before {
  content: "／";
  margin-right: 0.5em;
}
:where(.-sec_tit).-bc_white {
  color: var(--bc_white);
}
:where(.-sec_tit).-bc_white .-region::before {
  background-color: var(--bc_white);
}
:where(.-sec_tit):has(.-region) :where(.-title) {
  gap: 2rem;
}
:where(.-sec_tit):has(.-region) :where(.-title) .-f_en {
  font-size: 4rem;
}
:where(.-sec_tit):has(.-region) :where(.-title) .-region {
  position: relative;
  font-family: var(--ff_en);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-top: 2rem;
}
:where(.-sec_tit):has(.-region) :where(.-title) .-region::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  height: 1px;
  width: 2rem;
  background-color: var(--bc_main);
}
:where(.-sec_tit) :where(.-t_body) {
  opacity: 0;
  transform: translateY(1rem);
}
@keyframes titleanim01_tbody {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
:where(.-sec_tit) :where(.-t_headline) {
  opacity: 0;
  transform: translateY(1rem);
}
@keyframes titleanim01_t_headline {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
:where(.-sec_tit).is-animation :where(.-title).-titleline::before {
  animation: titleanim01_underline 1.8s ease-in-out forwards;
  animation-delay: 0.8s;
}
:where(.-sec_tit).is-animation :where(.-title) .-f_en {
  animation: titleanim01_gradientFlow 1s ease-in-out forwards;
}
:where(.-sec_tit).is-animation :where(.-title) .-f_en.-color02 {
  animation: titleanim01_gradientFlow_white 1s ease-in-out forwards;
}
:where(.-sec_tit).is-animation :where(.-title) .-f_go {
  animation: titleanim01_subtxt 0.25s ease-out forwards;
  animation-delay: 1s;
}
:where(.-sec_tit).is-animation :where(.-t_body) {
  animation: titleanim01_tbody 0.25s ease-out forwards;
  animation-delay: 1.15s;
}
:where(.-sec_tit).is-animation :where(.-t_headline) {
  animation: titleanim01_t_headline 0.25s ease-out forwards;
  animation-delay: 1.15s;
}

/*---------------------------------------------------------------
 Link element
---------------------------------------------------------------*/
/* wraplink */
:where(.-wrap_link) {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
:where(.-wrap_link) ~ :is(.img, .ph, .thumb) {
  overflow: hidden;
}
:where(.-wrap_link) ~ :is(.img, .ph, .thumb) img {
  opacity: 1;
  transition: transform 0.6s;
}
.no-touchevents :where(.-wrap_link):hover ~ :is(.img, .ph, .thumb) img {
  transform: scale(1.02);
}

/* 汎用角丸ボタン */
:where(.-btn01) {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  height: 4rem;
  border-radius: 4rem;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(var(--bc_white_RGB), 0.7);
  transition: background 0.5s, border-color 0.7s;
  /*カラバリ*/
}
:where(.-btn01).ico-btn_arrow {
  padding: 0 1.5rem;
  justify-content: flex-start;
}
:where(.-btn01).ico-btn_arrow i {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  transform: translateY(-50%);
  background: var(--bc_white);
  transition: background 0.5s;
}
:where(.-btn01) > span {
  position: relative;
  display: inline-flex;
  font-family: var(--ff_en);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 0.9;
  color: var(--bc_white);
  transition: color 0.7s;
}
:where(.-btn01).-bc_main {
  background-color: var(--bc_main);
  border: 1px solid var(--bc_main);
}
:where(.-btn01).-bc_main span {
  color: var(--bc_white);
}
:where(.-btn01).-bc_main i {
  background: var(--bc_white);
}
.no-touchevents :where(.-btn01).-bc_main:hover {
  background-color: var(--bc_white);
}
.no-touchevents :where(.-btn01).-bc_main:hover span {
  color: var(--bc_main);
}
.no-touchevents :where(.-btn01).-bc_main:hover i {
  background: var(--bc_main);
}
:where(.-btn01).-bc_white {
  background-color: var(--bc_white);
  border: 1px solid var(--bc_white);
}
:where(.-btn01).-bc_white span {
  color: var(--bc_main);
}
:where(.-btn01).-bc_white i {
  background: var(--bc_main);
}
.no-touchevents :where(.-btn01).-bc_white:hover {
  background-color: var(--bc_gray);
}
.no-touchevents :where(.-btn01).-bc_white:hover span {
  color: var(--bc_white);
}
.no-touchevents :where(.-btn01).-bc_white:hover i {
  background: var(--bc_white);
}
.no-touchevents :where(.-btn01):hover {
  background-color: var(--bc_white);
}
.no-touchevents :where(.-btn01):hover span {
  color: var(--bc_black);
}
.no-touchevents :where(.-btn01):hover i {
  background: var(--bc_black);
}

/* 角ボタン */
:where(.-btn02) {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 2rem;
  height: 4rem;
  box-sizing: border-box;
  overflow: hidden;
  background-color: var(--bc_main);
  border: 1px solid var(--bc_main);
  transition: background 0.5s;
  /*カラバリ*/
}
:where(.-btn02) i {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bc_white);
  transition: background 0.5s;
}
:where(.-btn02).ico-btn_arrow i {
  width: 1.2rem;
  height: 1.2rem;
}
:where(.-btn02) > span {
  position: relative;
  display: inline-flex;
  font-family: var(--ff_en);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--bc_white);
  transition: color 0.7s;
}
.no-touchevents :where(.-btn02):hover {
  background-color: var(--bc_white);
}
.no-touchevents :where(.-btn02):hover span {
  color: var(--bc_black);
}
.no-touchevents :where(.-btn02):hover i {
  background: var(--bc_black);
}

/* VIEW ALLボタン */
:where(.-btn_viewall) {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-family: var(--ff_en);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--bc_main);
  transition: color 0.7s;
}
:where(.-btn_viewall) i {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border: 1px solid var(--bc_main);
  border-radius: 50%;
  margin-left: 2rem;
  transition: background 0.5s;
}
:where(.-btn_viewall) i::before, :where(.-btn_viewall) i::after {
  content: "";
}
:where(.-btn_viewall) i::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: var(--bc_main);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
}
:where(.-btn_viewall) i::after {
  width: 1rem;
  height: 1rem;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/ico-btn_arrow.svg");
  mask-image: url("../img/common/ico-btn_arrow.svg");
  background: var(--bc_main);
  transition: background 0.5s;
}
.no-touchevents :where(.-btn_viewall):hover i {
  background-color: var(--bc_main);
}
.no-touchevents :where(.-btn_viewall):hover i::before {
  transform: scale(1);
  opacity: 1;
}
.no-touchevents :where(.-btn_viewall):hover i::after {
  background-color: var(--bc_white);
}
:where(.-btn_viewall):not(:has(span)) i {
  margin-left: 0;
}
:where(.-btn_viewall).-bc_white {
  color: var(--bc_white);
}
:where(.-btn_viewall).-bc_white i {
  border-color: var(--bc_white);
}
:where(.-btn_viewall).-bc_white i::before {
  background-color: var(--bc_white);
}
:where(.-btn_viewall).-bc_white i::after {
  background: var(--bc_white);
}
.no-touchevents :where(.-btn_viewall).-bc_white:hover i {
  background-color: var(--bc_white);
}
.no-touchevents :where(.-btn_viewall).-bc_white:hover i::after {
  background: var(--bc_main);
}

/*　下線型ボタン　*/
:where(.-btn_underline) {
  position: relative;
  display: inline-flex;
  font-family: var(--ff_en);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
  width: 8rem;
}
:where(.-btn_underline) > span {
  position: relative;
  display: inline-flex;
  width: 100%;
  min-height: 3rem;
  align-items: center;
}
:where(.-btn_underline) > span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--bc_main);
  clip-path: inset(0% 0% 0% 0%);
}
:where(.-btn_underline).ico-btn_arrow span {
  padding-right: 2.4rem;
}
:where(.-btn_underline).ico-btn_arrow i {
  position: absolute;
  right: 0;
  width: 1rem;
  height: 1rem;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/ico-btn_arrow.svg");
  mask-image: url("../img/common/ico-btn_arrow.svg");
  background: var(--bc_main);
}
.no-touchevents :where(.-btn_underline):hover span::before {
  animation-name: anim-underline02;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

/*---------------------------------------------------------------
 nav element layout
---------------------------------------------------------------*/
/* navigation link */
:where(.-g_nav) {
  font-family: var(--ff_en);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--bc_black);
}
:where(.-g_nav) > li {
  line-height: 1;
}

:where(.-inner_link) {
  font-family: var(--ff_en);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--bc_gray);
}
:where(.-inner_link) li {
  line-height: 1;
}

:where(.-s_nav) {
  font-family: var(--ff_en);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
:where(.-s_nav) li {
  line-height: 1;
}
:where(.-s_nav) a {
  display: inline-flex;
  align-items: center;
}

:where(.-sns_link) a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  opacity: 1;
  transition: opacity 0.3s;
}
.no-touchevents :where(.-sns_link) a:hover {
  opacity: 0.5;
}
:where(.-sns_link) i {
  width: 1.6rem;
  height: 1.6rem;
}

:where(.-other_link) a {
  line-height: 0;
}
:where(.-other_link) a span {
  position: relative;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
:where(.-other_link) a i {
  width: 100%;
  height: 100%;
}

/*---------------------------------------------------------------
 common element layout
---------------------------------------------------------------*/
/* ガイドラインmodule */
.mod_guideline {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  /* 表示制御 */
}
.mod_guideline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: rgba(var(--bc_red_RGB), 0.5);
}
.mod_guideline.-visible {
  display: block;
}
.mod_guideline.-visible .mod_guideline-basic {
  display: block;
}
.mod_guideline.-visible.-layout1 {
  display: block;
}
.mod_guideline.-visible.-layout1 .mod_guideline-basic {
  display: none;
}
.mod_guideline.-visible.-layout1 .mod_guideline-layout1 {
  display: block;
}

.mod_guideline-basic {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.mod_guideline-basic::before, .mod_guideline-basic::after {
  content: "";
  position: absolute;
}
.mod_guideline-basic::before {
  top: 0;
  bottom: 0;
  width: 1px;
  box-sizing: border-box;
  border-left: 1px solid rgba(var(--bc_red_RGB), 0.5);
  border-right: 1px solid rgba(var(--bc_red_RGB), 0.5);
}
.mod_guideline-basic::after {
  display: inline-block;
  background-color: rgba(var(--bc_red_RGB), 1);
  color: var(--bc_white);
  line-height: 1.6;
}
.mod_guideline-basic > span {
  position: relative;
  display: block;
  margin: auto;
}
.mod_guideline-basic > span::before, .mod_guideline-basic > span::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}
.mod_guideline-basic > span::before {
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
}
.mod_guideline-basic > span::after {
  display: inline-block;
  color: var(--bc_white);
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 0 1rem;
}
.mod_guideline-basic .-w01 {
  width: 152rem;
}
.mod_guideline-basic .-w01::before {
  border-left: 1px solid rgba(var(--bc_blue_RGB), 1);
  border-right: 1px solid rgba(var(--bc_blue_RGB), 1);
}
.mod_guideline-basic .-w01::after {
  background-color: rgba(var(--bc_blue_RGB), 1);
}
.mod_guideline-basic .-w02 {
  width: 144rem;
}
.mod_guideline-basic .-w02::before {
  border-left: 1px solid rgba(var(--bc_blue_RGB), 0.5);
  border-right: 1px solid rgba(var(--bc_blue_RGB), 0.5);
}
.mod_guideline-basic .-w02::after {
  background-color: rgba(var(--bc_blue_RGB), 0.7);
}
.mod_guideline-basic .-w03 {
  width: 136rem;
}
.mod_guideline-basic .-w03::before {
  border-left: 1px solid rgba(var(--bc_blue_RGB), 0.3);
  border-right: 1px solid rgba(var(--bc_blue_RGB), 0.3);
}
.mod_guideline-basic .-w03::after {
  background-color: rgba(var(--bc_blue_RGB), 0.5);
}
.mod_guideline-basic .-w04::before {
  border-left: 1px solid rgba(var(--bc_blue_RGB), 0.8);
  border-right: 1px solid rgba(var(--bc_blue_RGB), 0.8);
}
.mod_guideline-basic .-w04::after {
  background-color: rgba(var(--bc_blue_RGB), 0.8);
}
.mod_guideline-basic .-w05::before {
  border-left: 1px solid rgba(var(--bc_blue_RGB), 0.6);
  border-right: 1px solid rgba(var(--bc_blue_RGB), 0.6);
}
.mod_guideline-basic .-w05::after {
  background-color: rgba(var(--bc_blue_RGB), 0.6);
}
.mod_guideline-basic .-w06::before {
  border-left: 1px solid rgba(var(--bc_blue_RGB), 0.4);
  border-right: 1px solid rgba(var(--bc_blue_RGB), 0.4);
}
.mod_guideline-basic .-w06::after {
  background-color: rgba(var(--bc_blue_RGB), 0.4);
}
.mod_guideline-basic .-min {
  /* PC最小幅絶対基準 */
  width: 1000px;
}
.mod_guideline-basic .-min::before {
  border-left: 1px solid rgba(var(--bc_00_RGB), 0.5);
  border-right: 1px solid rgba(var(--bc_00_RGB), 0.5);
}
.mod_guideline-basic .-min::after {
  content: "w:1024px(absolute)";
  background-color: rgba(var(--bc_00_RGB), 0.7);
}

/* content wrap */
:where(.content_wrap) {
  position: relative;
  width: 100%;
  padding-top: 10rem;
  margin-bottom: 16rem;
}

/* header */
.mod_header-inner {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 10rem;
  width: 100%;
  box-sizing: border-box;
  transform: translateY(0);
  transition: transform 1s;
}
#Pagetop:has(#menuopenstate:checked) .mod_header-inner {
  transform: translateY(0) !important;
}
.mod_header-logo {
  position: absolute;
  left: 5rem;
  display: inline-flex;
  width: 15rem;
  height: 5.6rem;
  opacity: 1;
  transition: opacity 0.3s, filter 0.7s;
  filter: invert(100%);
}
.mod_header-logo > * {
  line-height: 0;
}
.mod_header-logo img {
  width: 100%;
  height: auto;
}
.no-touchevents .mod_header-logo:hover {
  opacity: 0.5;
}
.mod_header-other_link {
  display: inline-flex;
  gap: 0.15rem;
  margin-right: 2.5rem;
}
.mod_header-other_link i {
  transition: background-color 0.7s;
  background-color: var(--bc_black);
}
.mod_header-action_link .-btn01 {
  border-color: rgba(var(--bc_black_RGB), 0.7);
}
.mod_header-action_link .-btn01 span {
  color: var(--bc_black);
}
.no-touchevents .mod_header-action_link .-btn01:hover {
  background-color: var(--bc_black);
}
.no-touchevents .mod_header-action_link .-btn01:hover span {
  color: var(--bc_white);
}
.mod_header .language_selecter {
  position: relative;
  margin-right: 2.4rem;
  box-sizing: border-box;
}
.mod_header .language_selecter:has([data-stt-disabled]) {
  opacity: 0.5 !important;
  pointer-events: none !important;
}
.mod_header .language_btn {
  position: relative;
  font-family: var(--ff_en);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--bc_black);
  transition: color 0.7s;
}
.mod_header .language_btn > span {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.mod_header .language_btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/ico_language_arrow.svg");
  mask-image: url("../img/common/ico_language_arrow.svg");
  background: var(--bc_black);
  transform: rotate(0);
  transition: transform 0.3s, background 0.7s;
}
.mod_header .language_btn.is-active i {
  transform: rotate(180deg);
}
.mod_header .language_detail {
  pointer-events: none;
}
.mod_header .language_panel {
  pointer-events: all;
  display: flex;
  font-family: var(--ff_en);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
.mod_header .language_panel > li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--bc_main);
  border: 1px solid var(--bc_main);
  transition: color 0.5s, border 0.5s, background 0.5s;
  padding-inline: 1.5rem;
  padding-block: 0.5rem;
  border-radius: 100vmax;
}
.mod_header .language_panel > li[data-stt-active] {
  color: var(--bc_white);
  background-color: rgba(var(--bc_main_RGB), 1);
  border-color: rgba(var(--bc_main_RGB), 1);
  cursor: default;
}
.no-touchevents .mod_header .language_panel > li:hover:not([data-stt-active]) {
  background-color: var(--bc_main);
  color: var(--bc_white);
}
#Pagetop:has(.is-negative) .mod_header .mod_header-logo {
  filter: invert(0);
}
#Pagetop:has(.is-negative) .mod_header .mod_header-other_link i {
  background-color: var(--bc_white);
}
#Pagetop:has(.is-negative) .mod_header .menu_btn .bar {
  background-color: var(--bc_white);
}
#Pagetop:has(.is-negative) .mod_header .language_btn {
  color: var(--bc_white);
}
#Pagetop:has(.is-negative) .mod_header .language_btn i {
  background: var(--bc_white);
}
#Pagetop:has(.is-negative) .mod_header .language_panel > li {
  color: var(--bc_white);
  border-color: var(--bc_white);
}
#Pagetop:has(.is-negative) .mod_header .language_panel > li[data-stt-active] {
  color: var(--bc_main);
  background-color: var(--bc_white);
  border-color: var(--bc_white);
}
.no-touchevents #Pagetop:has(.is-negative) .mod_header .language_panel > li:hover:not([data-stt-active]) {
  background-color: var(--bc_white);
  color: var(--bc_main);
}
#Pagetop:has(#menuopenstate:checked) .mod_header .mod_header-other_link i {
  background-color: var(--bc_white);
}
#Pagetop:has(#menuopenstate:checked) .mod_header .menu_btn .bar {
  background-color: var(--bc_white);
}
#Pagetop:has(#menuopenstate:checked) .mod_header .language_btn {
  color: var(--bc_white);
}
#Pagetop:has(#menuopenstate:checked) .mod_header .language_btn i {
  background: var(--bc_white);
}
#Pagetop:has(#menuopenstate:checked) .mod_header .language_panel > li {
  color: var(--bc_white);
  border-color: var(--bc_white);
}
#Pagetop:has(#menuopenstate:checked) .mod_header .language_panel > li[data-stt-active] {
  color: var(--bc_main);
  background-color: var(--bc_white);
  border-color: var(--bc_white);
}
.no-touchevents #Pagetop:has(#menuopenstate:checked) .mod_header .language_panel > li:hover:not([data-stt-active]) {
  background-color: var(--bc_white);
  color: var(--bc_main);
}

/* menu drawer */
#menuopenstate {
  display: none;
}

.menu_btn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 12rem;
  height: 10rem;
  background-color: rgba(var(--bc_black_RGB), 0);
  cursor: pointer;
  transition: opacity 0.7s;
  /*collection表示時処理*/
}
.menu_btn .bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  transition: 0.3s;
  margin: auto;
  background-color: var(--bc_black);
}
.menu_btn .open .bar {
  width: 4rem;
}
.menu_btn .open .bar:nth-child(1) {
  top: -1rem;
}
.menu_btn .open .bar:nth-child(2) {
  opacity: 0;
}
.menu_btn .open .bar:nth-child(3) {
  bottom: -1rem;
}
.menu_btn .close .bar {
  width: 0;
}
.menu_btn .close .bar:nth-child(1) {
  transform: rotate(45deg);
}
.menu_btn .close .bar:nth-child(2) {
  transform: rotate(-45deg);
}
body:has(#menuopenstate:checked) .menu_btn .open .bar {
  width: 0;
}
body:has(#menuopenstate:checked) .menu_btn .close .bar {
  width: 2rem;
}

.menu_drawer {
  position: fixed;
  justify-content: flex-end;
  overflow-y: auto;
  top: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  clip-path: inset(0 0 100% 100%);
  background-color: var(--bc_white);
  opacity: 0;
  pointer-events: none;
  transition: clip-path 0.3s, opacity 0.4s;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(var(--bc_main_RGB), 0);
}
#Pagetop:has(#menuopenstate:checked) .menu_drawer {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
}
.menu_drawer-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 63rem;
  padding-bottom: 0;
  box-sizing: border-box;
}
.menu_drawer-g_nav {
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  color: var(--bc_white);
}
#Pagetop:has(#menuopenstate:checked) .menu_drawer-g_nav {
  pointer-events: auto;
}
.menu_drawer-g_nav > li {
  text-align: left;
  min-width: 15rem;
}
.menu_drawer-g_nav .ico-other_heart {
  display: inline-flex;
  align-items: center;
}
.menu_drawer-g_nav .ico-other_heart i {
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.5em;
  background: var(--bc_white);
}
.menu_drawer-g_nav.row1.col2 {
  gap: 3.5rem;
}
.menu_drawer-g_nav.row2 {
  margin-top: 5.5rem;
}
.menu_drawer-inner_link {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.4rem;
  padding-left: 1em;
  color: var(--bc_white);
}
.menu_drawer-sns_link {
  display: flex;
  gap: 2rem;
}
.menu_drawer-sns_link i {
  background: var(--bc_white);
}
.menu_drawer-closer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc(100% - 63rem);
}
.menu_drawer .-underline span::before {
  background-color: var(--bc_white);
}

/* footer */
.mod_footer {
  position: relative;
}
.mod_footer-inner {
  position: relative;
  z-index: 0;
  display: flex;
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}
.mod_footer-logo {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s;
}
.mod_footer-logo img {
  width: 100%;
  height: auto;
}
.no-touchevents .mod_footer-logo:hover {
  opacity: 0.5;
}
.mod_footer-g_nav {
  display: inline-flex;
  flex-direction: column;
  gap: 4rem;
}
.mod_footer-g_nav li {
  display: flex;
  flex-direction: column;
}
.mod_footer-g_nav .-inner_link {
  display: inline-flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2.4rem;
  padding-left: 1em;
}
.mod_footer-g_nav .ico-other_heart {
  display: inline-flex;
  align-items: center;
}
.mod_footer-g_nav .ico-other_heart i {
  width: 1.5rem;
  height: 1.6rem;
  margin-right: 0.8rem;
}
.mod_footer-g_nav.col1 {
  margin-right: 8rem;
}
.mod_footer-action_link {
  display: inline-flex;
  gap: 1rem;
}
.mod_footer-sns_link {
  display: inline-flex;
  gap: 1rem;
  margin-top: 12rem;
}
.mod_footer-s_nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: right;
  color: var(--bc_gray);
  margin-top: 2.5rem;
}
.mod_footer-s_nav span::before {
  background-color: var(--bc_gray);
}
.mod_footer-copyright {
  font-family: var(--ff_en);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: right;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--bc_gray);
  margin-top: 3rem;
}

/* RTB */
.mod_rtb {
  position: relative;
  left: 0;
  right: 0;
  text-align: right;
}

.pagetop_btn {
  position: fixed;
  bottom: 4rem;
  right: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid rgba(var(--bc_main_RGB), 0.5);
  background-color: var(--bc_main);
  border-radius: 50%;
  box-sizing: border-box;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s, bottom 1s, background 0.7s;
  z-index: 999;
  margin-bottom: env(safe-area-inset-bottom);
}
.pagetop_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid var(--bc_white);
  background-color: var(--bc_white);
  border-radius: 50%;
  box-sizing: border-box;
  transform-origin: center center;
  transform: scale(0);
  opacity: 0;
  transition: opacity 0.7s, transform 0.3s;
}
.pagetop_btn i {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 0.8rem;
  height: 0.5rem;
  background: var(--bc_white);
  transition: filter 0.3s;
}
.no-touchevents .pagetop_btn:hover::before {
  opacity: 1;
  transform: scale(1);
}
.no-touchevents .pagetop_btn:hover i {
  filter: invert(100%);
}
.state_screenheightscroll .pagetop_btn {
  opacity: 1;
  pointer-events: auto;
}
#Pagetop:has(#menuopenstate:checked) .pagetop_btn {
  opacity: 0;
  pointer-events: none;
}
.pagetop_btn.-endline {
  position: absolute;
  bottom: 4rem;
}

/* SP sticky menu */
.flowbottomSP {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: calc(100% - 4rem);
  height: 3.5rem;
  margin-bottom: env(safe-area-inset-bottom);
  background-color: var(--bc_white);
  transition: transform 1s;
  transform: translateY(calc(100% + 2rem));
  z-index: 999;
}
.flowbottomSP a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.state_screenheightscroll .flowbottomSP {
  transform: none;
}
#Pagetop:has(#menuopenstate:checked) .flowbottomSP {
  transform: translateY(calc(100% + 2rem));
}
.flowbottomSP.-endline {
  transform: translateY(calc(100% + 2rem));
}

/* bread list */
.mod_breadlist {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-inline: 4rem;
  box-sizing: border-box;
  overflow-x: auto;
}

.breadlist {
  display: flex;
  align-items: center;
  width: 100%;
  height: 5rem;
  margin: auto;
  text-align: left;
  white-space: nowrap;
}
.breadlist li {
  display: inline-block;
  position: relative;
  font-family: var(--ff_go);
  font-style: normal;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--bc_main);
}
.breadlist li + li {
  margin-left: 3rem;
}
.breadlist li + li:before {
  content: "/";
  position: absolute;
  left: -2rem;
}
.no-touchevents .breadlist a:hover {
  text-decoration: underline;
}

/* mod_contact */
.mod_contact-inner {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: calc(100% - 8rem);
  width: 100%;
  margin-inline: auto;
  padding-top: 8rem;
  padding-bottom: 12rem;
  box-sizing: border-box;
  background-color: #F8F8F8;
}
.mod_contact-detail {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 6rem;
}
.mod_contact-detail .-btn02 {
  width: 43.2rem;
  height: 14rem;
}

/* accordion */
:where([data-accordion-trigger]) {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
:where([data-accordion-trigger]) i {
  transform: rotate(180deg);
  transition: transform 0.3s;
}
:where([data-accordion-trigger]).is-active i {
  transform: rotate(0deg);
}

:where([data-accordion-detail]) {
  transition: height 0.7s, padding 0.3s, opacity 0.7s;
  height: auto;
  opacity: 1;
  pointer-events: all;
}
:where([data-accordion-detail]).is-hidden {
  opacity: 0;
  height: 0;
  padding-block: 0 !important;
  overflow: hidden;
  pointer-events: none;
}

/* 汎用タブ（表示制御のみ） */
:where([data-tabarea]) {
  pointer-events: all;
}
:where([data-tabarea]) [data-tabmenu] {
  position: relative;
  z-index: 1;
  pointer-events: all;
}
:where([data-tabarea]) [data-tabmenu] [data-tabmenu-item] {
  transition: background 0.3s;
  cursor: pointer;
}
:where([data-tabarea]) [data-tabdetail] [data-tabdetail-item] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s;
}
:where([data-tabarea]) [data-tabdetail] [data-tabdetail-item].is-active {
  position: static;
  display: block;
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}

:where(.-dress_of_img) {
  position: relative;
}
:where(.-dress_of_img) img {
  width: 100%;
  height: auto;
  aspect-ratio: 56/88;
}
:where(.-dress_of_img) img.front {
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 1;
  position: relative;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.3);
}
:where(.-dress_of_img) img.back {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media (width > 767px) {
  .-lc_pc_1 {
    --lc:1;
  }
  .-lc_pc_2 {
    --lc:2;
  }
  .-lc_pc_3 {
    --lc:3;
  }
  .-lc_pc_4 {
    --lc:4;
  }
  .-lc_pc_5 {
    --lc:5;
  }
  .-lc_pc_6 {
    --lc:6;
  }
  .js-accordion-button:not(.is-sp) {
    cursor: pointer;
  }
  .js-accordion-target:not(.is-sp) {
    overflow: hidden;
    position: relative;
  }
  .js-accordion-target:not(.is-sp)[aria-hidden=true] {
    height: 0;
  }
  .js-accordion-target:not(.is-sp)[aria-hidden=false] {
    z-index: 1;
  }
  .cms_common-journal_list { /* PC */
    grid-template-columns: repeat(3, 1fr);
    gap: 12rem 8rem;
  }
  .cms_common-journal_list .item .text .title { /* PC */
    min-height: 2lh;
  }
  .cms_common-journal_list .item .text .desc { /* PC */
    min-height: 2lh;
  }
  .cms_common-single_pager {
    border-top: 1px solid var(--bc_gray2);
    padding-top: 4.8rem;
  }
  .cms_common_js-side-sticky {
    position: sticky;
  }
  .cms_common_js-side-sticky .is-firefox {
    position: static;
  }
  .cms_common_js-side-sticky.is-top {
    top: 12rem;
  }
  .cms_common_js-side-sticky:not(.is-top, .is-firefox) {
    top: calc(100lvh - var(--my-h) + var(--diff-h));
  }
  .cms_common_js-side-sticky:not(.is-top, .is-firefox):not(.is-stickied)::before, .cms_common_js-side-sticky:not(.is-top, .is-firefox):not(.is-stickied)::after {
    opacity: 0;
  }
  :where(.-line_clamp).-line1 {
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }
  :where(.-line_clamp).-line2 {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  :where(.-line_clamp).-line3 {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  :where(.-line_clamp).-line4 {
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }
  :where(.-line_clamp).-line5 {
    -webkit-line-clamp: 5;
    line-clamp: 5;
  }
  :where(.-line_clamp).-line6 {
    -webkit-line-clamp: 6;
    line-clamp: 6;
  }
  :where(.-sec_tit) :where(.-title).-titleline::before {
    bottom: -3.5rem;
  }
  :where(.-sec_tit) :where(.-title) .-f_en {
    font-size: 4.5rem;
  }
  :where(.-sec_tit) :where(.-title) .-f_go {
    font-size: 1.5rem;
  }
  .mod_guideline-basic::before {
    width: 160rem;
    left: calc(50% - 80rem);
  }
  .mod_guideline-basic::after {
    content: "w:1600px";
    font-size: 1.4rem;
    padding: 0 1rem;
    left: calc(50% - 80rem);
  }
  .mod_guideline-basic .-w01::after {
    content: "w:1520px";
    top: 3rem;
    left: calc(50% - 76rem);
  }
  .mod_guideline-basic .-w02::after {
    content: "w:1440px";
    top: 0rem;
    left: calc(50% - 72rem);
  }
  .mod_guideline-basic .-w03::after {
    content: "w:1360px";
    top: 3rem;
    left: calc(50% - 68rem);
  }
  .mod_guideline-basic .-w04 {
    width: 8rem;
  }
  .mod_guideline-basic .-w04::after {
    content: "w:80px(offset center)";
    top: 3rem;
    left: calc(50% - 4rem);
  }
  .mod_guideline-basic .-w05 {
    display: none;
  }
  .mod_guideline-basic .-w06 {
    display: none;
  }
  .mod_guideline-basic .-min::after {
    top: 6rem;
    left: calc(50% - 500px);
  }
  .mod_header-action_link {
    display: flex;
    gap: 1rem;
    margin-right: 12rem;
  }
  .mod_header-action_link .-btn01 {
    border-color: rgba(var(--bc_main_RGB), 0.7);
    background-color: var(--bc_main);
  }
  .mod_header-action_link .-btn01 span {
    color: var(--bc_white);
  }
  .no-touchevents .mod_header-action_link .-btn01:hover {
    background-color: var(--bc_white);
  }
  .no-touchevents .mod_header-action_link .-btn01:hover span {
    color: var(--bc_black);
  }
  .mod_header .language_detail {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 3rem;
  }
  .mod_header .language_panel {
    flex-direction: column;
    gap: 1rem;
  }
  #Pagetop:has(.is-negative) .mod_header .mod_header-action_link .-btn01 {
    border-color: var(--bc_white);
    background-color: rgba(var(--bc_black_RGB), 0);
  }
  #Pagetop:has(.is-negative) .mod_header .mod_header-action_link .-btn01 span {
    color: var(--bc_white);
  }
  .no-touchevents #Pagetop:has(.is-negative) .mod_header .mod_header-action_link .-btn01:hover {
    background-color: var(--bc_white);
  }
  .no-touchevents #Pagetop:has(.is-negative) .mod_header .mod_header-action_link .-btn01:hover span {
    color: var(--bc_black);
  }
  #Pagetop:has(#menuopenstate:checked) .mod_header .mod_header-action_link .-btn01 {
    border-color: var(--bc_white);
    background-color: rgba(var(--bc_black_RGB), 0);
  }
  #Pagetop:has(#menuopenstate:checked) .mod_header .mod_header-action_link .-btn01 span {
    color: var(--bc_white);
  }
  .no-touchevents #Pagetop:has(#menuopenstate:checked) .mod_header .mod_header-action_link .-btn01:hover {
    background-color: var(--bc_white);
  }
  .no-touchevents #Pagetop:has(#menuopenstate:checked) .mod_header .mod_header-action_link .-btn01:hover span {
    color: var(--bc_black);
  }
  .is-hidden .menu_btn {
    opacity: 0 !important;
    pointer-events: none !important;
  }
  .menu_drawer::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 73rem;
    background-color: rgba(var(--bc_main_RGB), 0.8);
  }
  .menu_drawer-inner {
    padding-top: 18rem;
    padding-bottom: 18rem;
    padding-left: 8rem;
    padding-right: 11rem;
  }
  .menu_drawer-sns_link {
    position: absolute;
    right: 11rem;
    bottom: 8rem;
  }
  .mod_footer-inner {
    align-items: flex-start;
    max-width: calc(100% - 16rem);
    padding: 8rem 0;
  }
  .mod_footer-logo {
    width: 14.6rem;
    height: 11.1rem;
    margin-right: 12rem;
  }
  .mod_footer-g_nav.col2 {
    margin-right: 11rem;
  }
  .mod_footer-row {
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .mod_footer-action_link .-btn01 {
    width: 16rem;
  }
}
@media (width <= 767px) {
  .-lc_sp_1 {
    --lc:1;
  }
  .-lc_sp_2 {
    --lc:2;
  }
  .-lc_sp_3 {
    --lc:3;
  }
  .-lc_sp_4 {
    --lc:4;
  }
  .-lc_sp_5 {
    --lc:5;
  }
  .-lc_sp_6 {
    --lc:6;
  }
  .ml-heart-stroke::before,
  .ml-heart-fill::after {
    width: 1.6rem;
  }
  .js-accordion-button:not(.is-pc) {
    cursor: pointer;
  }
  .js-accordion-target:not(.is-pc) {
    overflow: hidden;
    position: relative;
  }
  .js-accordion-target:not(.is-pc)[aria-hidden=true] {
    height: 0;
  }
  .js-accordion-target:not(.is-pc)[aria-hidden=false] {
    z-index: 1;
  }
  .cms_common-journal_list { /* SP */
    gap: 4rem;
  }
  .cms_common-journal_list .item .thumb { /* SP */
    margin-bottom: 2rem;
  }
  .cms_common-journal_list .item .text .title { /* SP */
    font-size: 1.4rem;
  }
  .cms_common-journal_list .item .text .desc { /* SP */
    font-size: 1.3rem;
  }
  .cms_common-journal_list .item .date { /* SP */
    font-size: 1.2rem;
    line-height: 1;
  }
  .cms_common-archive_pager {
    margin-top: 5.6rem;
  }
  .cms_common-archive_pager > .wp-pagenavi:not(:has(.previouspostslink)) {
    margin-left: 4.4rem;
  }
  .cms_common-archive_pager > .wp-pagenavi:not(:has(.nextpostslink)) {
    margin-right: 4.4rem;
  }
  .cms_common-archive_pager > .wp-pagenavi {
    gap: 1.2rem;
    font-size: 1.4rem;
  }
  .cms_common-archive_pager a:is(.previouspostslink), .cms_common-archive_pager .wp-pagenavi > span:is(.previouspostslink) {
    margin-right: 0.8rem;
  }
  .cms_common-archive_pager a:is(.nextpostslink), .cms_common-archive_pager .wp-pagenavi > span:is(.nextpostslink) {
    margin-left: 0.8rem;
  }
  .cms_common-single_pager {
    grid-template-columns: 1fr auto auto 1fr;
    row-gap: 2.4rem;
    margin-top: 4.8rem;
    margin-inline: auto;
    width: 27.6rem;
    position: relative;
  }
  .cms_common-single_pager:has(.prev, .next)::before {
    content: "";
    height: 3.6rem;
    width: 1px;
    background-color: var(--bc_gray2);
    position: absolute;
    left: calc(50% - 0.5px);
    top: 0;
  }
  .cms_common-single_pager .archive {
    grid-row: 2/3;
    grid-column: 2/4;
    border-bottom: 1px solid;
    padding-block: 0.8rem;
    font-size: 1.4rem;
  }
  .cms_common-single_pager:not(:has(.prev, .next)) .archive {
    grid-row: 1/2;
  }
  .cms_common-single_pager .prev {
    grid-row: 1/2;
    grid-column: 1/3;
  }
  .cms_common-single_pager .next {
    grid-row: 1/2;
    grid-column: 3/5;
  }
  .cms_common-dress_item .detail {
    max-width: 16.3rem;
  }
  .cms_common-dress_item .name {
    font-size: 1.4rem;
  }
  .cms_common-dress_item .spec .no {
    display: block;
  }
  .cms_common-dress_item .spec .style {
    display: inline-block;
    margin-top: 0;
  }
  :where(.-line_clamp).-sp_line1 {
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }
  :where(.-line_clamp).-sp_line2 {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  :where(.-line_clamp).-sp_line3 {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  :where(.-line_clamp).-sp_line4 {
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }
  :where(.-line_clamp).-sp_line5 {
    -webkit-line-clamp: 5;
    line-clamp: 5;
  }
  :where(.-line_clamp).-sp_line6 {
    -webkit-line-clamp: 6;
    line-clamp: 6;
  }
  :where(.-underline).-rev > span::before {
    bottom: -0.3rem;
  }
  :where(.ico-btn_arrow) i {
    -webkit-mask-image: url("../img/common/ico-btn_arrow_sp.svg");
    mask-image: url("../img/common/ico-btn_arrow_sp.svg");
  }
  :where(.ico-other_heart) i {
    width: 1.6rem;
    height: 1.6rem;
  }
  :where(.ico-other_search) i {
    width: 1.6rem;
    height: 1.6rem;
  }
  :where(.-t_title) {
    font-weight: 200;
    font-size: 2.4rem;
    letter-spacing: 0;
    line-height: 1.7;
  }
  :where(.-t_title):where(.-fz_m_sp) {
    font-size: 2.4rem;
    font-weight: 200;
    letter-spacing: 0;
    line-height: 1.7;
  }
  :where(.-t_headline) {
    font-size: 2rem;
    line-height: 1.7;
  }
  :where(.-t_headline):where(.-fz_l_sp) {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.8;
  }
  :where(.-t_headline):where(.-fz_m_sp) {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.7;
  }
  :where(.-t_headline):where(.-fz_s_sp) {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.6;
  }
  :where(.-t_body) {
    line-height: 2;
  }
  :where(.-t_body):where(.-fz_m1) {
    line-height: 2.2;
  }
  :where(.-t_body):where(.-fz_m1_sp) {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 2.2;
  }
  :where(.-t_body):where(.-fz_m2_sp) {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 2;
  }
  :where(.-t_body):where(.-fz_s) {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.5;
  }
  :where(.-lh_24_sp) {
    line-height: 2.4;
  }
  :where(.-lh_22_sp) {
    line-height: 2.2;
  }
  :where(.-lh_20_sp) {
    line-height: 2;
  }
  :where(.-lh_18_sp) {
    line-height: 1.8;
  }
  :where(.-lh_17_sp) {
    line-height: 1.7;
  }
  :where(.-lh_16_sp) {
    line-height: 1.6;
  }
  :where(.-lh_15_sp) {
    line-height: 1.5;
  }
  :where(.-sec_tit) :where(.-title) {
    gap: 1.8rem;
  }
  :where(.-sec_tit) :where(.-title).-titleline::before {
    bottom: -1.5rem;
  }
  :where(.-sec_tit) :where(.-title) .-f_en {
    font-size: 3rem;
  }
  :where(.-sec_tit) :where(.-title) .-f_go {
    font-size: 1.2rem;
  }
  :where(.-sec_tit) :where(.-title).-inline {
    gap: 0.8rem;
  }
  :where(.-sec_tit):has(.-region) :where(.-title) .-f_en {
    font-size: 2.5rem;
  }
  :where(.-sec_tit):has(.-region) :where(.-title) .-f_go {
    font-size: 1.4rem;
  }
  :where(.-sec_tit):has(.-region) :where(.-title) .-region {
    font-size: 1.4rem;
  }
  :where(.-sec_tit):has(.-region) :where(.-title) .-region::before {
    width: 1.5rem;
  }
  :where(.-btn01) {
    min-width: 13.5rem;
    height: 4rem;
    padding: 0 1.5rem;
    justify-content: flex-start;
    border-radius: 4rem;
  }
  :where(.-btn02) {
    height: 9.6rem;
    padding-inline: 1.6rem;
  }
  :where(.-btn02) i {
    right: 1.6rem;
  }
  :where(.-btn02) > span {
    font-size: 1.4rem;
  }
  :where(.-btn_viewall) {
    font-size: 1.4rem;
    height: 3.6rem;
  }
  :where(.-btn_viewall) i {
    width: 3.6rem;
    height: 3.6rem;
    margin-left: 1rem;
    border-color: rgba(var(--bc_main_RGB), 0.7);
  }
  :where(.-btn_viewall) i::before {
    width: 3.6rem;
    height: 3.6rem;
  }
  :where(.-btn_viewall) i::after {
    -webkit-mask-image: url("../img/common/ico-btn_arrow_sp.svg");
    mask-image: url("../img/common/ico-btn_arrow_sp.svg");
  }
  :where(.-btn_viewall).-bc_white i {
    border-color: rgba(var(--bc_white_RGB), 0.7);
  }
  .no-touchevents :where(.-btn_viewall).-bc_white:hover i {
    border-color: rgba(var(--bc_white_RGB), 0.7);
  }
  :where(.-g_nav) {
    font-size: 1.5rem;
  }
  :where(.-other_link) a span {
    width: 1.6rem;
    height: 1.6rem;
  }
  .mod_guideline-basic::before {
    max-width: 37.5rem;
    width: 100vw;
    left: 50%;
  }
  .mod_guideline-basic::after {
    content: "w:375px";
    font-size: 1.2rem;
    padding: 0 0.5rem;
    left: 0;
  }
  .mod_guideline-basic > span::after {
    font-size: 1.2rem;
    padding: 0 0.5rem;
  }
  .mod_guideline-basic .-w01 {
    width: calc(100% - 1.6rem);
  }
  .mod_guideline-basic .-w01::after {
    content: "w:359px(100vw - 1.6rem)";
    top: 2rem;
    left: 0;
  }
  .mod_guideline-basic .-w02 {
    width: calc(100% - 3.2rem);
  }
  .mod_guideline-basic .-w02::after {
    content: "w:343px(100vw - 3.5rem)";
    top: 4rem;
    left: 0;
  }
  .mod_guideline-basic .-w03 {
    width: calc(100% - 4.8rem);
  }
  .mod_guideline-basic .-w03::after {
    content: "w:327px(100vw - 4.8rem)";
    top: 6rem;
    left: 0;
  }
  .mod_guideline-basic .-w04 {
    width: calc(100% - 8rem);
  }
  .mod_guideline-basic .-w04::after {
    content: "w:295px(100vw - 8.0rem)";
    top: 8rem;
    left: 0;
  }
  .mod_guideline-basic .-w05 {
    display: none;
  }
  .mod_guideline-basic .-w05::after { /* SP */
    content: "w:279px(100vw - 9.6rem)";
    top: 10rem;
    left: 0;
  }
  .mod_guideline-basic .-w06 {
    display: none;
  }
  .mod_guideline-basic .-w06::after {
    content: "w:215px(100vw - 16rem)";
    top: 12rem;
    left: 0;
  }
  .mod_guideline-basic .-min {
    display: none;
  }
  :where(.content_wrap) {
    padding-top: 8rem;
    margin-bottom: 8rem;
  }
  .mod_header-inner {
    height: 8rem;
    padding: 0;
  }
  .is-header_fix.is-header_up .mod_header-inner {
    transform: translateY(-100%);
  }
  .mod_header-logo {
    left: 1.6rem;
    width: 9.2rem;
    height: 3.7rem;
  }
  .mod_header-other_link {
    margin-right: 21rem;
  }
  .mod_header-other_link span {
    width: 2.2rem;
    height: 2.2rem;
  }
  .mod_header-action_link {
    position: absolute;
    top: calc(50% - 1.8rem);
    display: block;
    width: 13.5rem;
    margin-right: 6rem;
  }
  .mod_header-action_link .-btn01 {
    height: 3.6rem;
    border-radius: 3.6rem;
  }
  .mod_header-action_link .-btn01 span {
    font-size: 1.1rem;
  }
  .mod_header-action_link .-btn01 i {
    width: 1rem;
    height: 1rem;
  }
  .mod_header-action_link .trigger.-btn01 span {
    position: relative;
    align-items: center;
  }
  .mod_header-action_link .trigger.-btn01 span::before {
    content: "";
    display: inline-flex;
    width: 1.2rem;
    height: 1.2rem;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-image: url("../img/common/ico-other_contact.svg");
    mask-image: url("../img/common/ico-other_contact.svg");
    background: var(--bc_black);
    margin-right: 0.5em;
    transition: background 0.7s;
  }
  .mod_header-action_link .trigger.-btn01 i {
    position: absolute;
    right: 1.5rem;
    top: calc(50% - 0.4rem);
    display: inline-flex;
    width: 0.8rem;
    height: 0.8rem;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-image: url("../img/common/ico-accordion_arrow.svg");
    mask-image: url("../img/common/ico-accordion_arrow.svg");
    background: var(--bc_black);
    transition: background 0.7s;
  }
  .mod_header-action_link .detail {
    padding: 1rem 0;
  }
  .mod_header-action_link .detail .-btn01 + .-btn01 {
    margin-top: 1rem;
  }
  .mod_header .language_selecter {
    margin-right: 5.5rem;
    opacity: 0;
    transition: opacity 1s;
    pointer-events: none;
  }
  .mod_header .language_btn {
    display: none;
  }
  .mod_header .language_btn > span {
    padding-right: 1.5rem;
  }
  .mod_header .language_btn i {
    width: 1rem;
    height: 1rem;
  }
  .mod_header .language_panel {
    gap: 0.5rem;
    font-size: 1.2rem;
  }
  #Pagetop:has(.is-negative) .mod_header .mod_header-action_link .-btn01 {
    border-color: var(--bc_white);
  }
  #Pagetop:has(.is-negative) .mod_header .mod_header-action_link .-btn01 span {
    color: var(--bc_white);
  }
  #Pagetop:has(.is-negative) .mod_header .mod_header-action_link .-btn01 span::before {
    background: var(--bc_white);
  }
  #Pagetop:has(.is-negative) .mod_header .mod_header-action_link .-btn01 i {
    background: var(--bc_white);
  }
  #Pagetop:has(.is-negative) .mod_header .mod_header-action_link .detail {
    padding: 1rem 0;
  }
  #Pagetop:has(.is-negative) .mod_header .mod_header-action_link .detail .-btn01 span {
    color: var(--bc_black);
  }
  #Pagetop:has(.is-negative) .mod_header .mod_header-action_link .detail .-btn01 i {
    background: var(--bc_black);
  }
  #Pagetop:has(.is-negative) .mod_header .mod_header-action_link .detail .-btn01 + .-btn01 {
    margin-top: 1rem;
  }
  #Pagetop:has(#menuopenstate:checked) .mod_header .mod_header-logo {
    filter: invert(0);
  }
  #Pagetop:has(#menuopenstate:checked) .mod_header .mod_header-action_link .-btn01 {
    border-color: var(--bc_white);
  }
  #Pagetop:has(#menuopenstate:checked) .mod_header .mod_header-action_link .-btn01 span {
    color: var(--bc_white);
  }
  #Pagetop:has(#menuopenstate:checked) .mod_header .mod_header-action_link .-btn01 span::before {
    background: var(--bc_white);
  }
  #Pagetop:has(#menuopenstate:checked) .mod_header .mod_header-action_link .-btn01 i {
    background: var(--bc_white);
  }
  #Pagetop:has(#menuopenstate:checked) .mod_header .mod_header-action_link .detail {
    padding: 1rem 0;
  }
  #Pagetop:has(#menuopenstate:checked) .mod_header .mod_header-action_link .detail .-btn01 span {
    color: var(--bc_black);
  }
  #Pagetop:has(#menuopenstate:checked) .mod_header .mod_header-action_link .detail .-btn01 i {
    background: var(--bc_black);
  }
  #Pagetop:has(#menuopenstate:checked) .mod_header .mod_header-action_link .detail .-btn01 + .-btn01 {
    margin-top: 1rem;
  }
  #Pagetop:has(#menuopenstate:checked) .mod_header .language_selecter {
    opacity: 1;
    pointer-events: all;
  }
  .menu_btn {
    width: 6rem;
    height: 8rem;
    top: 0;
    right: 0;
  }
  .menu_btn .open .bar {
    width: 2.6rem;
  }
  .menu_btn .open .bar:nth-child(1) {
    top: -0.8rem;
  }
  .menu_btn .open .bar:nth-child(3) {
    bottom: -0.8rem;
  }
  body:has(#menuopenstate:checked) .menu_btn .close .bar {
    width: 3.2rem;
  }
  .menu_drawer {
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .menu_drawer-inner {
    width: calc(100% - 4.8rem);
    margin-inline: auto;
    padding-top: 12rem;
    padding-bottom: 6rem;
  }
  .menu_drawer-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: -2.4rem;
    right: -2.4rem;
    bottom: 0;
    z-index: -1;
    background-color: rgba(var(--bc_main_RGB), 0.8);
  }
  .menu_drawer-g_nav {
    gap: 3.5rem;
  }
  .menu_drawer-g_nav > li {
    min-width: 12.5rem;
  }
  .menu_drawer-g_nav.row1.col2 {
    gap: 3rem;
  }
  .menu_drawer-g_nav.row2 {
    margin-top: 5rem;
  }
  .menu_drawer-g_nav.row2.col2 {
    min-width: 13.8rem;
  }
  .menu_drawer-inner_link {
    margin-top: 2rem;
  }
  .menu_drawer-action_link {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 4rem;
  }
  .menu_drawer-action_link .-btn01 {
    width: 27rem;
  }
  .menu_drawer-sns_link {
    width: 100%;
    justify-content: center;
    margin-top: 5rem;
  }
  .menu_drawer-closer {
    display: none;
  }
  .mod_footer-inner {
    flex-direction: column;
    align-items: center;
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
  .mod_footer-logo {
    width: 12.8rem;
    height: 9.8rem;
  }
  .mod_footer-g_nav {
    gap: 3.5rem;
  }
  .mod_footer-g_nav li {
    min-width: 11rem;
  }
  .mod_footer-g_nav .-inner_link {
    gap: 2rem;
  }
  .mod_footer-g_nav.col3 {
    margin-right: 8rem;
  }
  .mod_footer-g_nav.row2 {
    margin-top: 5rem;
  }
  .mod_footer-col {
    display: flex;
    flex-wrap: wrap;
    max-width: calc(100% - 4.8rem);
    margin-inline: auto;
    margin-top: 7.5rem;
  }
  .mod_footer-row {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: calc(100% - 4.8rem);
    margin-inline: auto;
    margin-top: 5rem;
  }
  .mod_footer-action_link {
    flex-direction: column;
    width: 27rem;
    margin-inline: auto;
  }
  .mod_footer-action_link .-btn01 {
    width: 100%;
  }
  .mod_footer-sns_link {
    margin-top: 5.5rem;
  }
  .mod_footer-s_nav {
    margin-top: 4rem;
  }
  .pagetop_btn {
    bottom: 6rem;
    right: 1.6rem;
  }
  .pagetop_btn.-endline {
    bottom: -2.4rem;
  }
  .pagetop_btn.-endline2 {
    position: absolute;
    bottom: -2.4rem;
  }
  .mod_breadlist {
    padding-inline: 1.6rem;
  }
  .breadlist {
    height: 4rem;
  }
  .mod_contact-inner {
    flex-direction: column;
    max-width: 100%;
    height: auto;
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
  .mod_contact-detail {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    margin-top: 4.5rem;
  }
  .mod_contact-detail .-btn02 {
    width: calc(100vw - 4.8rem);
    height: 9.6rem;
  }
}
@media (hover: hover) {
  .cms_common-journal_list .item .link:hover .thumb > img {
    transform: scale(1.05);
  }
  .cms_common-single_pager > a:hover {
    opacity: 0.8;
  }
}
@media (hover) {
  .cms_common-archive_pager a:not(.extend), .cms_common-archive_pager .wp-pagenavi > span:not(.extend) {
    transition-property: color, background;
    transition-duration: 0.5s;
  }
  .cms_common-archive_pager a:not(.extend):is(a:not(.previouspostslink):not(.nextpostslink)):hover, .cms_common-archive_pager .wp-pagenavi > span:not(.extend):is(a:not(.previouspostslink):not(.nextpostslink)):hover {
    color: currentColor;
  }
  .cms_common-archive_pager a:not(.extend):is(.previouspostslink, .nextpostslink):hover::after, .cms_common-archive_pager .wp-pagenavi > span:not(.extend):is(.previouspostslink, .nextpostslink):hover::after {
    background-color: currentColor;
  }
}
@media screen and (width > 767px) and (orientation: portrait) {
  body {
    min-width: 100vw;
  }
}
@media print, screen and (min-width: 641px) and (max-width: 1000px) {
  .mod_main {
    overflow: hidden;
  }
}
@media screen and (min-width: 641px) and (max-width: 1000px) and (orientation: portrait) {
  .mod_main {
    overflow: visible;
  }
}
@media screen and (orientation: portrait) and (width > 767px) {
  .mod_footer-inner {
    max-width: calc(100vw - 8rem);
    overflow: hidden;
  }
  .mod_footer-logo {
    margin-right: 6rem;
  }
  .mod_footer-g_nav.col1 {
    margin-right: 4rem;
  }
  .mod_footer-g_nav.col2 {
    margin-right: 4rem;
  }
  .mod_contact-detail .-btn02 {
    aspect-ratio: 43.2/14;
    width: calc((100vw - 24rem - 6rem) / 3);
    height: auto;
  }
}/*# sourceMappingURL=common.css.map */
