@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイル
************************************/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
  main.main, div.sidebar {
    padding: 0;
  }
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}


/* ==================================================
  ■ common
================================================== */

:root {
  --i_bg_color: #f9f5f0;
  --i_txt_color: #333;
  --i_main_color: #bc5e66;
  --i_sub_color: #bf9f6c;
  --i_sub2_color: #ece2d3;
  --i_btn_color: #bc5e66;
  --i_btn_hover_color: #fff;
  --i_btn_border_color: #bc5e66;
  --i_btn_hover_border_color: #bc5e66;
  --i_btn_txt_color: #fff;
  --i_btn_hover_txt_color: #bc5e66;
  --i_shadow_color: rgba(0,0,0,0.05);
  --i_border_color: rgba(125,125,125,0.3);
  --i_noimg_bg_color: #eee;
}

body {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 200 !!important;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.1rem;
}
.body .content {
  margin-top: 0;
}
.body .main {
  padding: 0;
}
.body .article {
  margin-bottom: 0;
}
.entry-content {
  margin-top: 0;
  margin-bottom: 0;
}

/* 1. Adobe Fonts読み込み中、サイトの中身を透明にして隠す */
.wf-loading #container #content {
  opacity: 0 !important;
}

/* 2. フォント読み込み完了後、中身をふわっと表示 */
.wf-active #container #content {
  opacity: 1 !important;
  transition: opacity 0.2s ease-in-out !important;
}

/* 3. 3秒後には強制表示（真っ白防止） */
.wf-inactive #container #content {
  opacity: 1 !important;
}


/*本文*/

a {
  color: var(--i_txt_color);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: var(--i_txt_color);
  text-decoration: none;
}
p, .article ul li, .article ol li, .wp-block-button__link,
.wp-block-table td, .wp-block-table th {
  font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem);
}
.article p {
  margin-bottom: 0;
}


/*見出し*/

* + .uk-h1, * + .uk-h2, * + .uk-h3, * + .uk-h4, * + .uk-h5, * + .uk-h6, * + h1, * + h2, * + h3, * + h4, * + h5, * + h6 {
  margin-top: 0;
}
.article h2, .article h3, .article h4, .article h5, .article h6 {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
}
.article h2 {
  background-color: transparent;
  font-size: clamp(1.5rem, 1.24rem + 1.3vw, 1.875rem);
  margin-bottom: 0;
  padding: 0;
}
.article h3 {
  font-size: clamp(1.125rem, 0.865rem + 1.3vw, 1.5rem);
}
.article h4 {
  font-size: clamp(0.875rem, 0.615rem + 1.3vw, 1.25rem);
}
.article h5 {
  font-size: clamp(0.75rem, 0.49rem + 1.3vw, 1.125rem);
}
.article h6 {
  font-size: clamp(0.625rem, 0.365rem + 1.3vw, 1rem);
}

.font_amandine {
  font-family: "amandine", sans-serif !important;
  letter-spacing: 0.2rem;
}
.font_shippori {
  font-family: "shippori-mincho", sans-serif !important;
}


/* ロード画面  */

/* 画面全体を覆う設定 */
.loader-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; /* 背景色 */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader-wrap::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(at 0% 0%, #FFF, transparent), radial-gradient(at 100% 0%, #E9D6D8, transparent), radial-gradient(at 0% 100%, #DDC1E5, transparent), radial-gradient(at 100% 100%, #bc5e66, transparent);
  pointer-events: none;
  opacity: 0.7;
}

/* 文字を隠してロゴを表示 */
.loader {
  font-size: 0; /* "Loading..."の文字を隠す */
  width: 150px;  /* ロゴの横幅に合わせて調整 */
  height: 150px; /* ロゴの縦幅に合わせて調整 */
  position: relative;
}

/* 擬似要素でロゴ画像を表示 */
.loader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://miu-plus.com/wp-content/uploads/2026/04/logo_s.png') no-repeat center center / contain;
  animation: logo-appear 4s ease-out forwards;
}

/* 点滅の動き */
@keyframes logo-appear {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/* 編集画面 */




/* header
---------------------------------------------------- */

#header-container {
  background-color: var(--i_main_color);
}
#header-container-in {
  width: 100%;
  padding: 15px 3vw;
}
.header-container-in.hlt-top-menu .logo-header img {
  filter: brightness(0) invert(1);
  max-height: 30px;
  vertical-align: center;
}
.logo-menu-button img {
  max-height: 25px;
}
.navi {
  background-color: transparent;
}
.navi-in > ul {
  flex-wrap: nowrap;
  padding: 0 1em 0 0;
}
.navi-in > ul li {
  width: auto;
  height: 45px;
  margin-left: 40px;
}
.navi-in a {
  /*font-size: clamp(0.75rem, 0.663rem + 0.43vw, 0.875rem);*/
}
#navi .navi-in a:hover {
  background-color: transparent;
}
#navi .navi-in li:not(.contact_mail) a:hover {
  opacity: 0.5;
}
#navi .navi-in > ul > li > a {
  color: #fff;
  padding: 0;
}

#header-container .contact_mail {
  margin-left: 40px;
}
#header-container .contact_mail a {
  background-color: var(--i_btn_color);
  border: 1px solid var(--i_btn_hover_color);
  color: var(--i_btn_txt_color) !important;
  text-align: center;
  padding: 0 1.4em !important;
  width: 160px;
  position: relative;
}
#header-container .contact_mail a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 1px;
  background-color: var(--i_btn_hover_color);
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
#header-container .contact_mail a:hover::before {
  width: 10px;
}

@media screen and (max-width: 1023px) {
  #header-container {
    background-color: #fff;
  }
  #header-container-in {
    padding: 0;
  }
  .mobile-header-menu-buttons {
    background-color: rgba(255,255,255,1);
    border-bottom: none !important;
    box-shadow: 0 0 10px var(--i_shadow_color);
    flex-direction: row-reverse;
    top: 0 !important;
    padding: 5px 0;
  }
  .go-to-top-visible .mobile-header-menu-buttons {
    border-bottom: 1px solid var(--i_border_color);
  }
  .mobile-menu-buttons .logo-menu-button {
    justify-content: flex-start;
    padding-left: 3vw;
  }
  .mobile-menu-buttons .search-menu-button {
    display: none;
  }
  .navi-menu-button .menu-open {
    padding: 10px;
    position: relative;
    width: 50px;
  }
  .mobile-menu-buttons .menu-icon {
    border-top: 1px solid var(--i_txt_color);
  }
  .fa-bars::before {
    content: "";
    display: block;
    position: absolute;
    width: calc(100% - 20px);
    height: 1px;
    top: 20px;
    left: 10px;
    background-color: var(--i_txt_color);
  }
  .fa-bars::after {
    content: "";
    display: block;
    position: absolute;
    width: calc(100% - 20px);
    height: 1px;
    top: 30px;
    left: 10px;
    background-color: var(--i_txt_color);
  }
  #navi-menu-close, #sidebar-menu-close, #search-menu-close,
  #share-menu-close, #follow-menu-close {
    background-color: transparent;
  }
  .mobile-menu-buttons .menu-caption {
    color: transparent;
    font-size: 1px;
    position: relative;
  }
  .mobile-menu-buttons .menu-caption::before {
    content: "menu";
    display: block;
    position: absolute;
    width: 100%;
    height: auto;
    color: var(--i_txt_color);
    font-family: "amandine", sans-serif !important;
    font-size: 8px;
    text-align: center;
  }
  .navi-menu-content {
    max-width: 100%;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 0;
    pointer-events: none;
  }
  #navi-menu-input:checked ~ #navi-menu-content {
    background-color: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    pointer-events: auto;
  }
  .menu-close-button {
    position: relative;
  }
  .fa-close::before, .fa-close::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 30px;
    top: 35%;
    left: auto;
    right: 33px;
    background-color: var(--i_txt_color);
    transform: rotate(45deg);
  }
  .fa-close::after {
    transform: rotate(-45deg);
  }
  .menu-content .menu-drawer {
    padding: 10px 4vw;
  }
  .menu-drawer a:hover {
    background-color: transparent;
  }
  .menu-drawer li {
    padding-bottom: 3px;
    letter-spacing: 0.15rem;
  }
  .menu-drawer .sub-menu {
    font-size: 14px;
    padding-left: 30px;
  }
  .menu-drawer .sub-menu li {
    padding-bottom: 1px;
    position: relative;
  }
  .menu-drawer .sub-menu li::before {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 2.5px);
    left: -7px;
    width: 5px;
    height: 5px;
    background-color: var(--i_sub_color);
    opacity: 0.4;
  }
  .mobile-menu-buttons .contact_mail a {
    display: inline-block;
    background-color: var(--i_btn_color);
    border: 1px solid var(--i_btn_hover_color);
    color: var(--i_btn_txt_color) !important;
    text-align: center;
    min-width: 200px;
    margin-top: 30px;
    padding: 10px 20px 13px;
    position: relative;
  }
  .mobile-menu-buttons .contact_mail a::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 1px;
    background-color: var(--i_btn_hover_color);
    pointer-events: none;
    transition: all 0.3s ease-in-out;
  }
}


/* footer
---------------------------------------------------- */

.footer {
  border-top: 1px solid var(--i_sub2_color);
  margin-top: 0;
  padding-top: 40px;
}
.footer-widgets {
  align-items: center;
  justify-content: space-between;
}
.footer-widgets.cf::after {
  display: none;
}
.footer-left, .footer-center, .footer-right {
  flex: 1;
  flex: 0 0 auto;
  text-align: center;
}
.footer-center .widget_custom_html {
  margin-bottom: 20px;
}
.footer_logo {
  max-height: 30px;
  width: auto;
}
.instagram_logo {
  max-height: 30px;
  width: auto;
}
footer .contact_mail {
  display: inline-block;
  margin: 10px 5px 0;
}
footer .contact_mail a {
  display: inline-block;
  width: 240px;
  background-color: var(--i_btn_hover_color) !important;
  border: 1px solid var(--i_sub_color);
  color: var(--i_sub_color) !important;
  padding: 14px 20px;
  position: relative;
}
footer .contact_mail a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 1px;
  background-color: var(--i_sub_color);
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
footer .contact_mail a:hover::before {
  width: 10px;
}

.footer-bottom {
  margin-top: -20px;
}
.navi-footer-in > .menu-footer li {
  border: none;
}
.navi-footer-in > .menu-footer li:last-child {
  border-right: none;
}
.footer-bottom.fnm-text-width .menu-footer li a {
  padding: 0 20px;
  font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem);
}
.navi-footer-in a:hover {
  background-color: transparent;
  color: var(--i_sub_color) !important;
}

.go-to-top-button {
  position: relative;
  background-color: rgba(191, 159, 108, 0.15);
  border-radius: 0;
  color: var(--i_sub_color);
  transition: all 0.3s ease-in-out;
}
.go-to-top-button:hover {
  opacity: 0.5;
}
.fa-angle-double-up::before {
  content: "TOP";
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: 7px;
  left: 1px;
  color: var(--i_bg_color);
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.1rem;
}
.fa-angle-double-up::after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  top: 12px;
  left: calc(50% - 4.5px);
  border-top: 2px solid var(--i_bg_color);
  border-right: 2px solid var(--i_bg_color);
  transform: rotate(-45deg);
}

.copyright {
  font-size: 12px;
  margin-top: 60px;
}

@media screen and (max-width: 834px) {
  .footer-widgets {
    display: block;
  }
  .navi-footer-in > .menu-footer li.menu-item {
    width: auto;
  }
  .navi-footer-in > .menu-footer li.menu-item:first-of-type {
    border-left: none;
  }
}
@media screen and (max-width: 834px) {
  .navi-footer-in > .menu-footer li.menu-item {
    border-top: 1px solid var(--i_sub2_color);
    border-left: 1px solid var(--i_sub2_color);
    margin: 0;
    padding: 10px;
    width: 46%;
  }
  .navi-footer-in > .menu-footer li.menu-item:nth-of-type(1),
  .navi-footer-in > .menu-footer li.menu-item:nth-of-type(2) {
    border-top: none;
  }
  .navi-footer-in > .menu-footer li.menu-item:nth-of-type(odd) {
    border-left: none;
  }
  .copyright {
    font-size: 10px;
  }
}


/* SEO
---------------------------------------------------- */

.article h1 {
  position: fixed;
  top: 6px;
  right: 4vw;
  margin: 0;
  font-size: 12px;
  opacity: 0;
}


/* 固有パーツ記述
---------------------------------------------------- */

/*文字サイズ*/
.has-small-font-size {
  font-size: clamp(0.75rem, 0.663rem + 0.43vw, 0.875rem) !important;
}
.has-medium-font-size {
  font-size: clamp(0.875rem, 0.615rem + 1.3vw, 1.25rem) !important;
}
.has-large-font-size {
  font-size: clamp(1.5rem, 1.24rem + 1.3vw, 1.875rem) !important;
}
.has-x-large-font-size {
  font-size: clamp(1.875rem, 1.356rem + 2.6vw, 2.625rem) !important;
}

/* btn */
.wp-block-button a {
  background-color: var(--i_btn_color);
  border: 1px solid var(--i_btn_border_color);
  color: var(--i_btn_txt_color);
  padding: 10px 30px;
  min-width: 200px;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.wp-block-button a:hover {
  background-color: var(--i_btn_hover_color);
  border-color: var(--i_btn_hover_border_color);
  color: var(--i_btn_hover_txt_color);
}
.wp-block-button a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 1px;
  background-color: var(--i_btn_hover_color);
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.wp-block-button a:hover::before {
  width: 10px;
  background-color: var(--i_btn_color);
}
.wp-block-button.is-style-outline a {
  background-color: transparent;
  border: 1px solid var(--i_btn_hover_border_color);
  color: var(--i_btn_hover_txt_color);
  padding: 10px 20px;
  min-width: 200px;
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-outline a:hover {
  background-color: var(--i_btn_color);
  border: 1px solid var(--i_btn_border_color);
  color: var(--i_btn_txt_color);
}
.wp-block-button.is-style-outline a::before {
  background-color: var(--i_btn_color);
}
.wp-block-button.is-style-outline a:hover::before {
  background-color: var(--i_btn_hover_color);
}

/* パンくず */
.breadcrumb {
  background-color: #f9f5f0 !important;
  color: var(--i_sub_color);
  font-size: 12px;
  margin: 0 !important;
  padding: 5px 3vw 0 !important;
}
.fa-fw {
  display: none;
}
@media screen and (max-width: 1023px) {
  .breadcrumb {
    margin-top: calc(3vw + 45px) !important;
  }
}

/* 区切り線 */
.wp-block-separator {
  border-top: 1px solid var(--i_border_color);
  margin-bottom: 20px !important;
  position: relative;
}
.wp-block-separator.is-style-wide {
  border-bottom: none !important;
}

/* コンテンツ幅 */
.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 1500px !important;
}
body:not(:has(.top_page)) .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 1200px !important;
}

/* カバー */
.body .wp-block-cover {
  margin-bottom: 0;
  padding: 0;
}
.wp-block-cover, .wp-block-cover-image {
  min-height: 0;
}
.wp-block-cover .wp-block-cover__inner-container {
  padding-left: 3vw;
  padding-right: 3vw;
}

/* タイムライン */
.timeline-item-content {
  border-left: 1px solid var(--i_border_color);
}
.timeline-item::before {
  top: 18px;
  left: 99.5px;
  border: 5px solid #fff;
}
.timeline-item-title {
  font-size: clamp(0.875rem, 0.615rem + 1.3vw, 1.25rem) !important;
  font-weight: normal;
}
@media screen and (max-width: 480px) {
  .timeline-box .timeline {
    padding-left: 20px;
  }
  .timeline > li.timeline-item {
    border-left: 1px solid var(--i_border_color);
  }
  .timeline-item::before {
    width: 12px;
    height: 12px;
    top: 19px;
    left: -9.5px;
    border-width: 3px;
  }
  .timeline-item-content {
    border-left: none;
    padding-left: 15px;
  }
}

/* ラベルボックス */
.label-box-content {
  border-width: 2px;
  padding: 1em 20px 0;
}

/* リスト */
.article ul {
  padding-left: 15px;
}

/* テーブル */

.wp-block-table thead {
  border-color: var(--i_main_color);
}
.wp-block-table thead th {
  color: var(--i_main_color);
}
.wp-block-table td, .wp-block-table th {
  padding: 10px;
}
.wp-block-table.br_nowrap td:first-of-type {
  white-space: nowrap;
}


/* ==================================================
  ■ kit
================================================== */

/* 見出し
---------------------------------------------------- */

.article .hp_1 {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 50px;
}
.article .hp_1::before {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 5px;
  bottom: 10px;
  left: calc(50% - 25px);
  background-color: var(--i_main_color);
}
.article .hp_1::after {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 5px;
  bottom: 10px;
  left: calc(50% - 25px);
  background-color: var(--i_bg_color);
  opacity: 0.5;
}
.article .hp_1 h2 {
  padding: 0;
}

.article .hp_2 {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 60px;
}
.article .hp_2::before {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 30px;
  bottom: 10px;
  left: calc(50% - 2.5px);
  background-color: var(--i_main_color);
}
.article .hp_2::after {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 15px;
  bottom: 10px;
  left: calc(50% - 2.5px);
  background-color: var(--i_bg_color);
  opacity: 0.5;
}
.article .hp_2 h2 {
  padding: 0;
}

.fw_300 {
  font-weight: 300 !important;
}
.fw_400 {
  font-weight: 400 !important;
}
.fw_500 {
  font-weight: 500 !important;
}
.fw_600 {
  font-weight: 600 !important;
}


/* コンテンツ最大幅
---------------------------------------------------- */

.mw_1200 .wp-block-cover__inner-container {
  max-width: 1200px;
}
.mw_900 .wp-block-cover__inner-container {
  max-width: 900px;
}
.mw_700 .wp-block-cover__inner-container {
  max-width: 900px;
}
.mw_500 .wp-block-cover__inner-container {
  max-width: 900px;
}


/* img最大幅
---------------------------------------------------- */

.img_mw_700 img {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}
.img_mw_500 img {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}
.img_mw_400 img {
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}
.img_mw_300 img {
  max-width: 300px;
  margin: 0 auto;
  width: 100%;
}
.img_mw_200 img {
  max-width: 200px;
  margin: 0 auto;
  width: 100%;
}
.img_mw_100 img {
  max-width: 100px;
  margin: 0 auto;
  width: 100%;
}


/* 視差効果
---------------------------------------------------- */

.fade_in {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.fade_in_active {
  opacity: 1;
}

.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up_active {
  transform: translateY(0);
  opacity: 1.0;
}


/* MV
---------------------------------------------------- */

.mv_outer {
  width: 100%;
  height: calc(100vh + 30px);
  margin: 0 auto;
  padding: 0 0 100px;
  overflow: hidden;
  background-color: #fff;
}
.mv_outer .wp-block-columns .catch_area {
  min-width: 350px !important;
}
.mv_outer h2 {
  /*background-color: transparent;
  padding: 0;*/
  font-size: clamp(1.25rem, 0.875rem + 1.88vw, 3.125rem) !important;
}
.mv_outer .wp-block-cover__inner-container {
  /*width: auto;
  max-width: 90%;
  margin-left: auto;
  padding: 3vw;
  background-color: #fff;*/
}
.mv_outer .wp-block-cover__inner-container h2 {
  /*background-color: transparent;
  padding: 0;*/
}
@media (max-width: 781px) {
  .mv_outer {
    width: 100%;
    height: 100vh;
    /*margin-top: 60px;*/
    padding-bottom: 50px;
  }
  .mv_outer .wp-block-columns {
    flex-direction: column-reverse;
    flex-wrap: nowrap !important;
    gap: 0;
  }
  .mv_outer .wp-block-columns .catch_area {
    flex-basis: 40% !important;
  }
  .mv_outer .wp-block-columns .catch_area .catch_inner {
    padding: 20px;
  }
  .mv_outer .wp-block-columns .catch_area .catch_inner p {
    padding-top: 20px !important;
  }
  .mv_outer .wp-block-columns .img_area {
    flex-basis: 50% !important;
  }
}

.mv_slide_outer {
  position: relative;
}
.mv_slide_outer .n2_clear {
  padding: 0 3vw;
}
.mv_slide_outer .n2-ss-slide {
  height: calc(100vh - 150px);
}
.mv_slide_outer .catch_area {
  position: absolute;
  width: calc(94% + 5px);
  height: 100%;
  top: 0;
  left: 3%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.mv_slide_outer .catch_box {
  width: auto;
  max-width: 90%;
  padding: 3vw;
  background-color: #fff;
}
.mv_outer .catch_area h2 {
  background-color: transparent;
  padding: 0;
}
@media (max-width: 781px) {
  .mv_slide_outer .n2_clear {
    padding: 0;
  }
  .mv_slide_outer .catch_area {
    width: 100%;
    left: 0;
  }
}


/* ページタイトル
---------------------------------------------------- */

.pagettl_outer {
  width: 94%;
  margin: 0 auto;
}
.article .pagettl_outer {
  font-weight: bold;
}
.article .pagettl_outer h2 {
  font-weight: bold;
  padding-bottom: 0;
}
body:not(:has(.top_page)) .article .pagettl_outer h2::before, body:not(:has(.top_page)) .article .pagettl_outer h2::after,
.single .article .pagettl_outer h2::before, .single .article .pagettl_outer h2::after {
  display: none;
}
@media (max-width: 781px) {
  .pagettl_outer {
    min-height: 0 !important;
  }
}


/* レスポンシブ_flexカラム数
---------------------------------------------------- */

/*2カラム*/
@media (max-width: 781px) {
  .wp-block-columns.tab_col2:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: calc(50% - 0.75rem) !important;
    flex-shrink: 0;
  }
}
/*3カラム*/
@media (max-width: 781px) {
  .wp-block-columns.tab_col3:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: calc(32% - 0.75rem) !important;
    flex-shrink: 0;
  }
}


/* レスポンシブ_flex上下反転
---------------------------------------------------- */

@media (max-width: 781px) {
  .tab_flex_reverse {
    flex-direction: column-reverse;
  }
}


/* レスポンシブ_改行
---------------------------------------------------- */

.tab_br br {
  display: none;
}
@media screen and (max-width: 781px){
  .tab_br br {
    display: block;
  }
}

.sp_br br {
  display: none;
}
@media screen and (max-width: 480px){
  .sp_br br {
    display: block;
  }
}


/* レスポンシブ_文字揃え
---------------------------------------------------- */

/* 中央揃え */
@media screen and (max-width: 480px){
  .sp_align_center {
    text-align: center;
  }
}
/* 左揃え */
@media screen and (max-width: 480px){
  .sp_align_left {
    text-align: left;
  }
}
/* 右揃え */
@media screen and (max-width: 480px){
  .sp_align_right {
    text-align: right;
  }
}


/* アンカーリンク_ブロックデザイン
---------------------------------------------------- */

.anker_block_01.wp-block-buttons {
  counter-reset: number 0;
}
.anker_block_01 .wp-block-button {
  flex: 1;
  white-space: nowrap;
}
.anker_block_01 .wp-block-button a {
  min-width: 300px;
  padding: 30px 60px 30px 30px;
  position: relative;
  text-align: left;
}
.anker_block_01 .wp-block-button a::before {
  content: "contents "counter(number,decimal-leading-zero);
  counter-increment: number 1;
  display: inline-block;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid var(--i_border_color);
  font-size: clamp(0.75rem, 0.663rem + 0.43vw, 0.875rem);
}
.anker_block_01 .wp-block-button a::after {
  content: "\f103";
  display: block;
  position: absolute;
  width: auto;
  height: auto;
  top: 33%;
  right: 25px;
  color: var(--i_sub_color);
  font-family: "FontAwesome" !important;
  font-size: 20px;
}



/* ==================================================
  ■ HOME
================================================== */

.top_page {
  margin-bottom: 0;
}

/* 見出し */

.article .top_page h2 {
  margin-bottom: 0;
}
.article .top_page h3 {
  border: none;
  margin-bottom: 20px;
  padding: 0;
}
.article .top_page h4 {
  border: none;
  margin-bottom: 0;
  padding: 0;
}
.article .top_page h5 {
  border: none;
  margin-bottom: 0;
  padding: 0;
}

/* パンくず  */

body:has(.top_page) .breadcrumb {
  display: none;
}


/* original
---------------------------------------------------- */

.mv_outer .wp-block-columns {
  height: 100%;
  align-items: stretch !important;
}
.mv_outer .catch_inner {
  padding: 3vw;
}
.mv_outer .img_area {
  height: 100%;
}

.top_concept {
  position: relative;
}
.top_concept::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(at 0% 0%, #FFF, transparent), radial-gradient(at 100% 0%, #E9D6D8, transparent), radial-gradient(at 0% 100%, #DDC1E5, transparent), radial-gradient(at 100% 100%, #bc5e66, transparent);
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}
.top_concept::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://miu-plus.com/wp-content/uploads/2026/04/dee1397a81d1ecc0f4a77e6143df9191.png);
  background-repeat: no-repeat;
  background-position: -5% 110%;
  background-size: 60%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.2;
}
.top_concept > .wp-block-cover__inner-container {
  position: relative;
  max-width: 1920px;
}
.top_concept .concept_bg {
  display: block;
  position: absolute;
  top: 0;
  left: calc(0% + 600px);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.top_concept .concept_bg img {
  object-fit: contain;
}
.top_concept > .wp-block-cover__inner-container {
  z-index: 2;
}
.top_concept .top_concept_block1 h2 {
  position: relative;
}
.top_concept .top_concept_block1 h2::before,
.top_concept .top_concept_block1 h2::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #fff;
}
.top_concept .top_concept_block1 h2::before {
  width: 100%;
  opacity: 0.5;
}
.top_concept .top_concept_block1 h2::after {
  width: 50px;
}
.top_concept .top_concept_block2 {
  max-width: 1200px !important;
}
.top_concept .top_concept_block2 span {
  font-size: clamp(1.5rem, 1.24rem + 1.3vw, 1.875rem) !important;
}
.top_concept .top_concept_block2 .concept_block2_box .wp-block-column {
  border-right: 1px solid var(--i_txt_color);
}
.top_concept .top_concept_block2 .concept_block2_box .wp-block-column:last-child {
  border: none;
}

@media screen and (max-width: 1500px) {
  .top_concept .concept_bg {
    left: 330px;
    min-width: 1300px;
  }
}
@media screen and (max-width: 781px) {
  .top_concept .concept_bg {
    position: relative;
    width: 140vw;
    left: -23vw;
    min-width: 0;
    min-height: 0 !important;
  }
  .top_concept .concept_bg img {
    object-fit: cover;
    position: static;
  }
  .top_concept_block2 .wp-block-cover {
    margin-top: 100px !important;
  }
  .top_concept_block1 .wp-block-columns {
    padding-top: 0 !important;
    text-align: center;
  }
  .top_concept_block2 .concept_block2_box .wp-block-column {
    border: none !important;
    padding: 10px 0 !important;
  }
  .top_concept_block2 .concept_block2_box .wp-block-column:not(:last-child) {
    position: relative;
    padding-bottom: 30px !important;
  }
  .top_concept_block2 .concept_block2_box .wp-block-column:not(:last-child)::before {
    content: "◆";
    display: block;
    position: absolute;
    bottom: 0;
    left: calc(50% - 15px);
    width: 30px;
    height: 15px;
    color: var(--i_sub_color);
    text-align: center;
    opacity: 0.4;
  }
  .top_concept .top_concept_block2 span.wp-block-cover__background {
    opacity: 0.5 !important;
  }
  .top_concept_block1 .wp-block-buttons {
    justify-content: center;
  }
  .top_concept::after {
    background-position: left 45%;
    background-size: 100%;
    z-index: 1;
    opacity: 0.3;
  }
}

.top_products {
  text-align: center;
}
.article .top_products .serum_category {
  display: inline-block;
  padding-top: 25px;
  position: relative;
}
.article .top_products .serum_category::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background-color: var(--i_sub_color);
  opacity: 0.4;
}
.top_products .wp-block-image {
  aspect-ratio: 7 / 5;
  background-color: #fff;
  box-sizing: border-box;
  position: relative;
}
.top_products .wp-block-image > a {
  display: inline;
}
.top_products .wp-block-image::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 15px;
  height: 15px;
  background-color: var(--i_sub_color);
  opacity: 0.15;
  clip-path: polygon(100% 0px, 100% 100%, 0px 100%);
  pointer-events: none;
}
.top_products .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4vw;
  transition: all 0.6s ease-in-out;
}
.top_products .wp-block-image a:hover img {
  padding: 3vw;
}
.top_products hr {
  max-width: 300px;
  margin: 0 auto;
}
@media screen and (max-width: 781px) {
  .top_products .wp-block-column:first-child {
    margin-bottom: 60px !important;
  }
}

.top_topics .widget-entry-cards .a-wrap {
  background-color: #f9f5f0;
  border: 1px solid #f9f5f0 ;
  border-radius: 0;
  margin-bottom: 10px;
}
.top_topics .widget-entry-cards .a-wrap:hover {
  background-color: #f9f5f0;
  border: 1px solid var(--i_sub2_color);
}
.top_topics .card-arrow .a-wrap::after {
  background-color: var(--i_sub2_color);
  width: 8px;
  height: 10px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  color: transparent;
  margin-top: -6px;
}
.top_topics .new-entry-card-meta {
  border-right: 1px solid var(--i_sub2_color);
  padding-right: 0;
  margin-right: 40px;
}
.top_topics .new-entry-card-post-date .entry-date {
  color: var(--i_txt_color);
  font-weight: normal;
  padding: 0 30px;
}
.top_topics .post-update {
  display: none;
}
@media screen and (max-width: 781px){
  .top_topics .new-entry-card-meta {
    margin-right: 15px;
  }
  .top_topics .new-entry-card-post-date {
    margin-right: 0px;
  }
  .top_topics .new-entry-card-post-date .entry-date {
    padding: 0 15px;
  }
}



/* ==================================================
  ■ content
================================================== */

.contents_page {
  background-color: #f9f5f0;
  margin-bottom: 5px;
  padding: calc(3vw - 26px) 0 100px;
}

/* 日付を非表示 */
.page .date-tags, .home.page .date-tags {
  display: none;
}

/*pagettl*/

.article .pagettl_outer {
  position: relative;
  overflow: visible;
}
.pagettl_outer::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 40px;
  background-color: var(--i_txt_color);
  z-index: 1;
}
.article .pagettl_outer,
.article .pagettl_outer h2 {
  font-weight: normal;
}
body:not(:has(.top_page)) .article .pagettl_outer h2 {
  padding-top: 30px;
}

/*トグルアコーディオン*/
.toggle-button {
  background-color: var(--i_sub2_color);
  border: none;
  border-radius: 0;
  padding: 10px 10px;
}
.toggle-button::before {
  color: var(--i_sub_color);
  opacity: 1;
}
.toggle-content,
.toggle-checkbox:checked ~ .toggle-content {
  border: 1px solid var(--i_sub2_color);
  background-color: rgba(255,255,255,0.5);
}

/* 見出し
---------------------------------------------------- */

body:not(:has(.top_page)) .article h2 {
  border: none;
  padding: 0 0 30px;
  position: relative;
}
body:not(:has(.top_page)) .article h2::before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  bottom: 0;
  left: calc(50% - 5px) !important;
  background-color: var(--i_sub_color);
  opacity: 0.4;
}
/*body:not(:has(.top_page)) .article h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 2px;
  bottom: 10px;
  left: 0;
  background-color: var(--i_sub_color);
}
body:not(:has(.top_page)) .article h2.has-text-align-center::before {
  left: calc(50% - 25px);
}
body:not(:has(.top_page)) .article h2.has-text-align-center::after {
  left: calc(50% - 25px);
}
body:not(:has(.top_page)) .article h2.has-text-align-right::before {
  left: auto;
  right: 0;
}
body:not(:has(.top_page)) .article h2.has-text-align-right::after {
  left: auto;
  right: 0;
}*/
body:not(:has(.top_page)) .article h3 {
  border: none;
  /*border-left: 5px solid var(--i_sub_color);*/
  padding: 10px 20px;
  position: relative;
}
body:not(:has(.top_page)) .article h3::before {
  content: "";
  display: block;
  position: absolute;
  top: 30%;
  left: 0;
  width: 5px;
  height: 40%;
  background-color: var(--i_sub_color);
  opacity: 0.4;
}
body:not(:has(.top_page)) .article h3::after {
  content: "";
  display: block;
  position: absolute;
  top: 30%;
  left: 7px;
  width: 1px;
  height: 40%;
  background-color: var(--i_sub_color);
  opacity: 0.4;
}
body:not(:has(.top_page)) .article h4 {
  background-color: #fff;
  border: none;
  color: var(--i_txt_color);
  padding: 10px 15px;
  position: relative;
}
body:not(:has(.top_page)) .article h4::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 4px;
  left: 4px;
  border-right: 1px solid var(--i_sub_color);
  border-bottom: 1px solid var(--i_sub_color);
  opacity: 0.4;
}
body:not(:has(.top_page)) .article h5 {
  border-bottom: 1px solid #e1d2ba;
  padding-left: 30px;
  position: relative;
}
body:not(:has(.top_page)) .article h5::before {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  top: calc(50% - 4px);
  left: 10px;
  background-color: var(--i_sub_color);
  opacity: 0.4;
}
body:not(:has(.top_page)) .article h6 {
  border-bottom: 1px solid var(--i_sub2_color);
}

/*original*/

.contents_page.concept > * {
  z-index: 1;
}
.contents_page.concept::after {
  position: absolute;
  content: "";
  display: block;
  width: 96vw;
  height: 100vh;
  bottom: 0;
  left: 3vw;
  background-image: url(https://miu-plus.com/wp-content/uploads/2026/04/concept_flower-1.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 52%;
  pointer-events: none;
  opacity: 0.1;
}
.contents_concept_grid {
  align-items: center;
}
.contents_concept_full .wp-block-cover__inner-container {
  padding: 0;
}
body:not(:has(.top_page)) .contents_concept_full .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none !important;
}
.contents_concept_full .full_txt_area_left > * {
  margin-left: auto;
}
.contents_concept_full .full_txt_area_right > * {
  margin-right: auto;
}
.contents_concept_full .full_txt_area_left > *,
.contents_concept_full .full_txt_area_right > * {
  max-width: 540px;
}
.contents_concept_full img {
  width: 100%;
}
.contents_concept_col {
  gap: 3vw;
}
@media screen and (max-width: 781px) {
  .contents_page.concept .wp-container-core-group-is-layout-0541a8bf {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .contents_concept_full .full_txt_area_left > *,
  .contents_concept_full .full_txt_area_right > * {
    max-width: none;
  }
  .contents_concept_full:has(.full_txt_area_left) .wp-block-columns {
    flex-direction: column-reverse;
  }
}

.contents_product_col {
  gap: 3vw;
}
.contents_product_col .wp-block-image {
  background-color: #fff;
  box-sizing: border-box;
  position: relative;
}
.contents_product_col .wp-block-image::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 15px;
  height: 15px;
  background-color: var(--i_sub_color);
  opacity: 0.15;
  clip-path: polygon(100% 0px, 100% 100%, 0px 100%);
  pointer-events: none;
}
.contents_product_col .wp-block-image > a {
  display: inline-block;
  width: 100%;
}
.contents_product_col .wp-block-image img {
  width: 100%;
  height: 100%;
  padding: 3vw;
  transition: all 0.6s ease-in-out;
}
.contents_product_col .wp-block-image a:hover img {
  padding: 2vw;
}
@media screen and (max-width: 781px) {
  .contents_product_col .wp-block-column:first-child {
    margin-bottom: 60px !important;
  }
  .contents_product_col .wp-block-image img {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
  }
}

.products_child_01 .wp-block-columns {
  gap: 3vw;
}
.products_child_01 .wp-block-image {
  background-color: #fff;
  box-sizing: border-box;
  position: relative;
}
.products_child_01 .wp-block-image img {
  width: 100%;
  height: 100%;
  padding: 3vw;
}
@media screen and (max-width: 781px) {
  .products_child_01 .wp-block-image img {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    aspect-ratio: 1 / 1 !important;
  }
}

.company_table tbody {
  background-color: #fff;
}
.company_table table tr:nth-of-type(2n+1) {
  background-color: transparent;
}
.company_table table tr td:first-of-type {
  background-color: var(--i_sub2_color);
  width: 200px;
}
.company_table table:not(.has-border-color) :where(th, td) {
  border: 2px solid #f9f5f0;
}
@media screen and (max-width: 781px) {
  .company_table .wp-block-table .has-fixed-layout td {
    display: inline-block;
    width: 100%;
  }
}


/* ==================================================
  ■ form
================================================== */

.wpcf7 {
  max-width: 900px !important;
}
.article .wpcf7-form p {
  margin-bottom: 1.8em;
}
.wpcf7-not-valid-tip {
  color: #bc5e66;
  font-size: 14px;
}
span.essential {
  margin-left: 10px;
  padding: 3px 8px;
  background: var(--i_sub_color);
  border-radius: 5px;
  color: #fff;
  font-size: clamp(8px, 1.3vw, 12px);
  font-weight: 400;
  vertical-align: text-bottom;
}
button, input:not([type="checkbox"]):not([type="submit"]), select, textarea {
  margin-top: 10px;
}
.wpcf7-list-item {
  margin-left: 0;
}
.wpcf7-list-item {
  margin-right: 20px;
}
input[type="submit"] {
  background-color: var(--i_main_color);
  border: none;
  color: #fff;
  background-color: var(--i_main_color);
  font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem);
  font-family: "noto-sans-cjk-jp", sans-serif !important;
  font-weight: 300 !important;
}
.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  background-color: #fff;
  padding: 10px;
}

@media (max-width: 1080px) {
  /* input（一行入力）、textarea（複数行）、select（プルダウン）を全て16pxにする */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  input[type="search"],
  textarea,
  select {
    font-size: 16px !important;
  }
}


/* ==================================================
  ■ blog
================================================== */

/* 全体
---------------------------------------------------- */

.single .content,
.archive .content {
  padding-left: 3vw;
  padding-right: 3vw;
}
.single .content-in,
.archive .content-in {
  max-width: 1000px;
}

.body .main {
  background-color: transparent;
}
.under-entry-content {
  padding-bottom: 60px;
}
#pager-post-navi {
  padding-top: 40px;
}


/* 記事一覧パーツ_cocoon
---------------------------------------------------- */

.widget-entry-card {
  font-size: clamp(0.75rem, 0.663rem + 0.43vw, 0.875rem);
}
.widget-entry-cards .a-wrap {
  padding: 20px 0;
  /*background-color: var(--i_sub2_color);*/
  border: 1px solid var(--i_border_color);
  border-radius: 10px;
}
.widget-entry-cards .a-wrap:hover {
  background-color: var(--i_sub2_color);
}
.card-arrow .a-wrap::after {
  color: var(--i_main_color);
}
.widget-entry-cards figure {
  display: none;
}
.card-arrow .widget-entry-card-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: flex-end;
  margin-left: 0;
  margin-right: 40px;
}
.new-entry-card-post-date .fa-clock-o {
  display: none;
}
.new-entry-card-post-date .entry-date {
  color: var(--i_main_color);
  font-size: clamp(0.75rem, 0.663rem + 0.43vw, 0.875rem);
  font-weight: bold;
  padding: 2vw;
}


/* 記事一覧ページ_cocoon
---------------------------------------------------- */

#archive-title {
  color: var(--i_sub_color);
  font-family: "amandine", sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.2rem;
}
#archive-title .fa-folder-open::before {
  display: none;
}
.entry-card-thumb:has(.no-image) {
  background-color: #fff;
  background-image: url(https://miu-plus.com/wp-content/uploads/2026/04/logo_s.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40% auto;
}
.entry-card-thumb img.no-image {
  opacity: 0;
}
.cat-label {
  top: 5px;
  left: 5px;
  padding: 1px 10px;
  background-color: var(--i_main_color);
}
.entry-card-title {
  border-bottom: 1px solid var(--i_border_color);
  font-family: "shippori-mincho", sans-serif !important;
  padding-bottom: 10px;
  margin-bottom: 20px;
}


/* 記事ページ
---------------------------------------------------- */

body.single .article h2 {
  margin-bottom: 60px;
  border-bottom: 1px solid #e1d2ba;
  padding-bottom: 10px;
}
body.single .article h2::before {
  width: 100%;
  height: 5px;
  left: 0 !important;
  bottom: -8px;
}
.cat-link {
  background-color: var(--i_sub_color);
  padding: 5px 10px;
}
.pager-post-navi a .iconfont {
  color: var(--i_sub_color);
  font-size: 1rem;
}
.pager-post-navi a figure {
  display: none;
}
.fa-clock-o::before {
  display: none;
}
.a-wrap:hover {
  background-color: transparent;
}

.single .entry-content.cf {
  padding-bottom: 60px;
}
.cocoon-custom-text-1 {
  color: var(--i_sub_color);
}


/* ==================================================
  ■ 編集画面用
================================================== */

#wpadminbar {
  display: none;
}
.apdt-pc-only {
  display: none;
}
html {
  margin-top: 0 !important;
}


@media screen and (max-width: 1023px) {
  .admin-bar:where(.mblt-header-mobile-buttons, .mblt-header-and-footer-mobile-buttons) {
    margin-top: 0;
  }
}


/* ==================================================
  ■ 追記
================================================== */

/* 0000
---------------------------------------------------- */