/**
 * File: base.css
 * Usage: 全ページ共通のスタイルを定義します。レイアウト、モジュールなど。
 * Example: ly_header, ly_footer, el_btn, el_gradientGold, el_subpTtl, el_normalTtl
*/

@charset "UTF-8";

:root {
  --text_main: #4d4d4d;
  --text_heading: #ab8b8c;
  --m_grey: #808080;
  --bg_light: #f6efe7;
  --bg_bright: #faf5f1;
}

/* ================================================
 リセットの記述
================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
ul[role='list'],
ol[role='list'] {
  list-style: none;
  padding: 0;
  margin: 0;
}
html:focus-within {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh; /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overflow-x: hidden;
  user-select: none;
}
a {
  text-decoration: none;
  color: inherit;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
input,
button,
textarea,
select {
  font: inherit;
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* WordPress管理画面のツールバー */
#wpadminbar {
  display: none !important;
}

/* ================================================
 フォントの読み込み
================================================ */
@font-face {
  font-family: 'NotoSerifJp';
  font-weight: 400;
  src: url(../fonts/NotoSerifJP-Variable.ttf) format('truetype');
}

@font-face {
  font-family: 'NotoSansJp';
  src: url(../fonts/NotoSansJP-Variable.ttf) format('truetype');
}

@font-face {
  font-family: 'CormorantGaramond';
  font-weight: 400;
  src: url(../fonts/CormorantGaramond-Regular.ttf) format('truetype');
}

@font-face {
  font-family: 'CormorantGaramond';
  font-weight: 500;
  src: url(../fonts/CormorantGaramond-Medium.ttf) format('truetype');
}

@font-face {
  font-family: 'CormorantGaramond';
  font-weight: 700;
  src: url(../fonts/CormorantGaramond-Bold.ttf) format('truetype');
}

@font-face {
  font-family: 'Reman';
  font-weight: 400;
  src: url(../fonts/Reman.ttf) format('truetype');
}

/* ================================================
 スタイルの適用(モバイルファーストで記述)
================================================ */
body {
  background: var(--bg_light);
  color: var(--text_main);
  width: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: 'NotoSerifJp', serif;
  overscroll-behavior: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

body.isActive {
  overflow: hidden;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.17em;
  margin-top: 0.6em;
  margin-bottom: 0.4em;
}

h4 {
  font-size: 1.12em;
}

h5 {
  font-size: 0.83em;
}

h6 {
  font-size: 0.75em;
}

.clearfix::after {
  clear: both;
}

li {
  list-style: none;
}

html {
  margin-top: 0 !important;
}

/* メディアクエリ用の表示・非表示 */
.sm_only {
  display: block !important;
}
.md_only,
.lg_only {
  display: none !important;
}

/* ================================================
  レイアウト
================================================ */
/* 全体のレイアウト */
.ly_cont {
  padding-inline: var(--pad-inner);
}

/* ヘッダー */
.ly_header {
  pointer-events: none;
  position: fixed;
  width: 100%;
  height: 90px;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: end;
  gap: 40px;
  background: transparent;
  z-index: 1011;
}

/* フッター */
.ly_footer {
  padding-inline: 30px;
  position: relative;
  padding-top: 60px;
}

.ly_footer::before {
  content: '';
  pointer-events: none;
  position: absolute;
  bottom: 38px;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background: url('../vector/bg_line.svg') no-repeat;
  background-size: contain;
  background-position: bottom center;
}

.ly_footer::after {
  content: '';
  position: absolute;
  pointer-events: none;
  bottom: 0;
  right: 0;
  display: block;
  z-index: -1;
  width: 100%;
  height: 100%;
  /*background: -moz-linear-gradient(
    180deg,
    rgba(246, 239, 231, 1) 0%,
    rgba(233, 166, 166, 0.7) 100%
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(246, 239, 231, 1) 0%,
    rgba(233, 166, 166, 0.7) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(246, 239, 231, 1) 0%,
    rgba(233, 166, 166, 0.7) 100%
  );*/
  background: rgb(250,245,241);
  background: linear-gradient(-180deg, rgba(250,245,241,1) 0%, rgba(233,166,166,0.7) 100%);
}

.ly_footer a {
  transform: scale(1);
  transition: 0.3s ease;
}

.ly_footer a:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
}

.bl_footerGroup {
  display: flex;
  flex-direction: column-reverse;
  gap: 60px;
}

.bl_footerSec {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bl_footerSec:has(.bl_footerSnsList) {
  padding-top: 60px;
}

.bl_footerSec_ttl {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.bl_footerSecList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
  row-gap: 32px;
}

.bl_footerSecList li:nth-child(odd) {
  width: 60%;
}

.bl_footerSecList li:nth-child(even) {
  width: 40%;
}

.bl_footerSecList li a,
.bl_footerSec_ec,
.bl_footerSecInfo_company {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size:22px;
  font-weight: 500;
  white-space:nowrap;
}

.bl_footerSecList a span:last-child,
.bl_footerSec_ec span:last-child {
  font-family: 'NotoSansJp', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.bl_footerSec_ec {
  margin-top: 8px;
}

.bl_footerSec_ec svg {
  width: 24px;
  height: 24px;
  transform: translateY(4px) rotate(-135deg);
}

.bl_footerSec_ec svg line,
.bl_footerSec_ec svg path {
  stroke: var(--text_main);
}

.bl_footerSecInfo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: 'NotoSansJp', sans-serif;
}

.bl_footerSecInfo_company {
  font-family: 'NotoSerifJp', serif;
}

.bl_footerSecInfo_map {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.bl_footerSecInfo_map a {
  text-decoration: underline;
}

.bl_footerSecInfo_map svg {
  transform: translateY(-2px);
}

.bl_footerSecContact {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bl_footerSecContact_tel {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: flex-end;
}

.bl_footerSecContact span:last-child {
  font-size: 20px;
  font-weight: 500;
}

.el_footerSecContact_mail {
  text-decoration: underline;
  font-family: 'NotoSansJp', sans-serif;
}

.bl_footerSecPolicy {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  font-family: 'NotoSansJp', sans-serif;
}

.bl_footerSnsList li {
  width: 100% !important;
}

.bl_footerSnsList li a {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
}

.bl_footerSnsList li a svg {
  flex-shrink: 0;
}

.el_footerLogo {
  margin-top: 86px;
  position: relative;
  z-index: 2;
}

.bl_footerToTopCont {
  display: none;
}

.bl_footerToTopCont.isVisible {
  display: flex;
}

.bl_footerToTop {
  position: fixed;
  z-index: 999;
  opacity: 0;
  bottom: 40px;
  right: 30px;
  width: 80px;
  height: 80px;
  background: rgba(250, 245, 241, 0.5);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.bl_footerToTopCont.isVisible .bl_footerToTop {
  opacity: 1;
  transform: translateY(0);
}

.bl_footerToTop span {
  display: block;
}

.bl_footerToTop svg {
  transform: rotate(180deg);
  width: 18px;
  height: 18px;
}

.el_footerLogo.over_960 {
  display: none;
}

.el_footerCopy {
  padding-top: 83px;
  padding-bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--m_grey);
}

.ly_nav {
  display: none;
  position: fixed;
  z-index: 1010;
  top: 0;
  left: 0;
  min-height: 100vh;
  height: 100%;
  width: 100%;
  background-color: #b7b7b740;
  justify-content: end;
}

.ly_nav.isActive {
  display: flex;
  overflow-y: auto; /* Ensure it's scrollable when active */
}

/* ================================================
 ブロックモジュール
================================================ */
/* ヘッダー */

.bl_header_ec {
  display: flex;
  pointer-events: all;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  margin-inline-end: 80px;
}

.bl_header_ec img {
  height: 30px;
  width: 30px;
  transform: translateY(-4px);
}

/* ナビゲーション */

.bl_nav {
  width: 87%;
  min-height: 100vh;
  max-width: 500px;
  height: fit-content;
  background: #ffffff;
  padding-top: 6vh;
  padding-inline: 40px;
}

.bl_navList li {
  padding-block: 13px;
  font-size: 24px;
  border-bottom: 1px solid #e6ddd3;
}

.bl_navList li span {
  display: none;
}

.bl_nav_ec {
  margin-top: 32px;
  margin-bottom: 48px;
  border: 1px solid var(--text_main);
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-block: 16px;
  transition: all 0.3s ease;
}

.bl_nav_ec:hover {
  background: var(--bg_light);
}

.bl_nav_ec h3 {
  margin: 0;
  font-size: 20px;
}

.bl_nav_ec span {
  font-size: 12px;
  font-family: 'NotoSansJp', sans-serif;
}

.bl_navSNSList {
  display: flex;
  flex-direction: row;
  gap: 32px;
  padding-block: 30px;
}

.bl_nav_copy {
  font-family: 'NotoSerifJp', serif;
  font-size: 12px;
}

/* ================================================
  エレメントモジュール
================================================ */
/* ボタン */

.el_btn {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: right;
  font-family: 'NotoSerifJp', serif;
  gap: 16px;
  transition: 0.3s ease;
}

.el_btn:hover {
  transform: scale(1.05);
}

.el_btn:hover span:last-child circle {
  fill: #ab8b8c;
  transition: 0.3s ease;
}

.el_btn span:last-child circle {
  transition: 0.3s ease;
}

.el_btn span:first-child {
  text-decoration: underline;
  text-decoration-skip-ink: auto;
  transition: 0.3s ease;
}

.el_btn span:last-child {
  width: 56px;
  height: 56px;
  background: #4d4d4d;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}

.el_btn.el_btnRight svg {
  transform: rotate(90deg);
}

.el_btn.el_btnSimple span {
  background: transparent;
}

.el_btn.el_btnSimple circle {
  display: none;
}

.el_btn.el_btnSimple span:last-child svg line,
.el_btn.el_btnSimple span:last-child svg path {
  stroke: #4d4d4d;
}

/* ハンバーガーメニュー */
.el_hamb {
  pointer-events: all;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 10px;
  background: #faf5f1;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  padding-inline-start: 14px;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.el_hamb span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text_main);
}

.el_hamb span:nth-child(2) {
  width: 18px;
}

.el_hamb.isActive {
  background: #aaaaaa;
}

.el_hamb.isActive span {
  width: 18px;
  border-radius: 999px;
  background-color: #ffffff;
}

.el_hamb.isActive span:nth-child(1) {
  transform: translate(2px, 5px) rotate(45deg);
}

.el_hamb.isActive span:nth-child(2) {
  display: none;
}

.el_hamb.isActive span:nth-child(3) {
  transform: translate(2px, -3px) rotate(-45deg);
}

.el_bgVector {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 140%;
  height: auto;
}

.bl_breadcrumbs {
  padding-top: 12px;
  padding-right: 20px;
}

.bl_breadcrumbs .breadcrumb {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: end;
}

.breadcrumb > * {
  -webkit-line-clamp: 1;
  text-align: right;
}

/* ================================================
 ヘルパー
================================================ */
/* 余白の調整 */
.hp_mt20 {
  margin-top: 20px;
}

.hp_mt40 {
  margin-top: 40px;
}

.hp_pb20 {
  padding-bottom: 20px;
}

.hp_pt40 {
  padding-top: 40px;
}

.hp_padX40 {
  padding-inline: 40px;
}

.hp_padY20 {
  padding-block: 20px;
}

.hp_wMax {
  width: max-content;
  margin-inline: auto;
}

/* 色の変更 */
.hp_bgBlack {
  background: #333;
}

/* テキストの調整 */
.hp_txtCenter {
  text-align: center;
}

.hp_txtEng {
  font-family:'Noto serif',serif;
}

.un_fvSubttl {
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 10px;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  pointer-events: all;
}

.over_960 {
  display: none;
}

@media screen and (width > 768px) {
  .sm_only {
    display: none !important;
  }
  .md_only,
  .lg_only {
    display: block !important;
  }

  .bl_header_ec.md_only {
    display: flex !important;
    margin-top: 30px;
  }

  .ly_header:has(.el_hamb.isActive) .bl_header_ec {
    display: none !important;
  }

  .ly_cont {
    max-width: 1080px;
    margin-inline: auto;
  }

  .ly_normalSec {
    padding-block: 80px;
  }

  /* ヘッダー */
  .bl_headerCont {
    justify-content: space-between;
    overflow: hidden;
  }

  .bl_nav {
    min-height: fit-content;
    border-bottom-left-radius: 40px;
    position: relative;
    padding-inline-start: 64px;
  }

  .bl_navList li {
    border: none;
    padding-block: 12px;
    transition: 0.3s ease;
  }

  .bl_navList li span {
    display: inline-block;
    font-family: 'NotoSansJp', sans-serif;
    font-size: 13px;
    padding-inline-start: 14px;
  }

  .bl_navList li:hover {
    transform: scale(1.05);
    transition: 0.3s ease;
  }

  .bl_nav_copy {
    padding-bottom: 5vh;
  }

  .el_secTtl {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .hp_borderBold {
    margin-top: 12px;
  }

  .hp_mt40 {
    margin-top: 80px;
  }

  .hp_pt40 {
    padding-top: 80px;
  }

  .bl_breadcrumbs {
    padding-top: 12px;
    padding-right: 20px;
  }

  .el_normalTtl {
    font-size: 1.5rem;
  }

  .el_hamb {
    right: 48px;
    width: 80px;
    height: 80px;
    padding-inline: 30px;
  }

  .bl_header_ec {
    margin-inline-end: 140px;
  }

  .ly_sidenav {
    position: fixed;
    z-index: 999;
    top: 0;
    padding-top: 40px;
    max-width: 156px;
    width: 100%;
    left: 0;
    height: calc(100vh - 80px);
  }

  .bl_sidenav_logo {
    display: flex;
    justify-content: center;
  }

  .bl_sidenav_logo img {
    max-height: 20vh;
    height: 100%;
  }

  .bl_sidenavList {
    margin-top: 3vh;
    float: right;
    margin-right: 8px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .bl_sidenavList li {
    transition: 0.3s ease;
  }

  .bl_sidenavList li:hover {
    transform: scale(1.1);
    transition: 0.3s ease;
  }

  .bl_sidenav_SNSList {
    position: fixed;
    bottom: 40px;
    left: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .hp_containerWidth {
    max-width: 1340px;
    margin-inline-start: 160px;
    margin-inline-end: 80px;
  }

  .bl_footerToTop {
    right: 40px;
  }

  .el_bgVector {
    height: 140%;
    transform: translateY(57%);
  }

  .bl_footerSecList li a,
  .bl_footerSec_ec,
  .bl_footerSecInfo_company {
    font-size: clamp(1rem, 0.848rem + 0.65vw, 1.625rem);
  }
}

@media screen and (width > 768px) and (width < 960px) {
  .ly_footer {
    padding-inline: 0;
  }

  .bl_sidenavList {
    display: none;
  }

  .bl_sidenav_SNSList {
    display: none;
  }

  .bl_sidenav_logo {
    max-height: 20vh;
    max-width: 100px;
  }

  .bl_sidenav_logo img {
    max-height: 20vh;
    height: 100%;
  }

  .hp_containerWidth {
    margin-inline-start: 100px;
  }

  .bl_footerGroup {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 40px;
  }

  .bl_footerGroup .bl_footerSec:first-child {
    width: 60%;
  }

  .bl_footerSecList {
    justify-content: flex-start;
  }

  .bl_footerSecList li:nth-child(odd) {
    width: 55%;
  }

  .bl_footerSec:has(.bl_footerSnsList) {
    padding-top: 60px;
  }

  .el_footerCopy.hp_containerWidth {
    margin-inline: 0;
  }

}

@media screen and (width >= 960px) {
  .ly_footer {
    padding-inline: 0;
  }

  .ly_footer::before {
    height: 760px;
    bottom: 0;
    opacity: 0.5;
    background: url('../vector/bg_line.svg') no-repeat;
    background-size: cover;
    background-position: top center;
  }

  .bl_footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .bl_footerGroup {
    display: contents;
    /* display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 1.4vw; */
  }

  .bl_footerSec_ttl {
    padding-bottom: 40px;
  }

  .bl_footerSecList {
    justify-content: flex-start;
    max-width: 25vw;
    row-gap: 40px;
  }

  .bl_footerSecPolicy {
    margin-top: 40px;
  }

  .over_960 {
    display: block !important;
  }

  .bl_footerSec_ec {
    margin: 0;
    white-space: nowrap;
  }

  .bl_footerSec > .bl_footerSec_ec {
    display: none;
  }

  .el_footerLogo:not(.over_960) {
    display: none;
  }

  .bl_footerSec:has(.bl_footerSnsList) {
    padding-top: 0;
  }

  .el_footerLogo {
    margin-top: 0;
  }

  .bl_footerSnsList {
    width: 12vw;
  }

  .el_footerCopy {
    text-align: left;
    width: fit-content;
    font-size: 13px;
    padding-top: 153px;
    padding-bottom: 40px;
  }

  .bl_footerLogo {
    width: 5vw;
  }

  .bl_footerLogo img {
    width: 100%;
  }


}

/* @media screen and (width > 1440px) {
  .bl_footerSecList li a,
  .bl_footerSec_ec,
  .bl_footerSecInfo_company {
    font-size: clamp(1.125rem, 0.973rem + 0.65vw, 1.75rem);
  }
} */

@media screen and (width > 1580px) {
  .hp_containerWidth {
    margin-inline: auto;
  }

  .bl_fvCont {
    margin-inline: 160px;
  }
}


.u-br{
  display:block;
}
.u-br-sp{
  display:block;
}



.-isPc{
  display:none;
}

@media screen and (width > 768px) {
  .u-br-sp{
  display:inline;
}
.-isSp{
  display:none;
}
.-isPc{
  display:block;
}
.u-br-pc{
  display:block
}
}
