@charset "utf-8";
/*
Theme Name:mirr official web site
Author:エム・エム・エム スタジオ
Version:1.0.0
*/
/*------------------------------------------------------------ 
	デフォルトスタイル	全ページ共通css
------------------------------------------------------------*/

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: #f0efec;
  color: #665066;
  font-size: 1.2rem;
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
  overscroll-behavior: none;
}

html {
  font-size: 62.5%;
}

audio {
  width: 100%;
}

div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
figure,
figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}
img {
  pointer-events: none;
  user-select: none;
}
ul,
ol {
  list-style-type: none;
}

img,
svg {
  vertical-align: middle;
}

.img-responsive {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.img-cover {
  width: 100%;
  object-fit: cover;
  object-position: 50%;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block; /* 必要に応じて変更 */
}
#fixed-bd {
  position: fixed;
  top: 30px;
  left: 30px;
  bottom: 30px;
  right: 30px;
  border: 1px solid #665066;
  box-sizing: border-box; /* パディング込みで幅・高さを計算 */
  padding: 3%;
  pointer-events: none;
  z-index: 999;
}

#wrap {
  margin-top: 5%;
  position: relative;
  z-index: 1;
}

/*custom*/
.flex {
  display: flex;
}
.flex-item-center {
  display: flex;
  align-items: center;
}
.flex-btw {
  display: flex;
  justify-content: space-between;
}

/* txt font*/

.seasons {
  font-family: "the-seasons", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.open-sans {
  font-family: "Open Sans", sans-serif;
}

/* =============================
   HEADER基本構造
============================= */
#header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
}

.hd-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3%;
}

.hd-logo {
  height: 26px;
  width: auto;
}

.hd-menu-container {
  display: flex;
  gap: 30px;
}

.hd-menu-container li {
  list-style: none;
}

.hd-menu-container span {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
  color: #665066;
  cursor: pointer;
}
.hd-rightbox {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* =============================
   ハンバーガー（2本線）
============================= */
.hamburger-btn {
  width: 28px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1100;
}

.hamburger-btn span {
  display: block;
  height: 1px;
  width: 100%;
  background: #665066;
  position: absolute;
  left: 0;
  transition: 0.4s ease;
  border-radius: 1px;
}

.hamburger-btn span:nth-child(1) {
  top: 8px;
}

.hamburger-btn span:nth-child(2) {
  top: 16px;
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(20deg);
  top: 12px;
}

.hamburger-btn.active span:nth-child(2) {
  transform: rotate(-20deg);
  top: 12px;
}

/* =============================
   全画面メニュー
============================= */
/* 初期状態 */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  background: rgba(240, 239, 236, 0.7);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 4% 16% 4% 10%;
  box-sizing: border-box;
  transition: opacity 0.6s ease, backdrop-filter 0.6s ease;
}

/* 開いた状態 */
.fullscreen-menu.open {
  opacity: 1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: auto;
}

.menu-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jp-poem {
  font-size: 1.6rem;
  margin: 7% 0 5% 0;
  line-height: 2.6rem;
  letter-spacing: 0.1rem;
}
.en-poem {
  font-size: 1rem;
  font-weight: 300;
}

.menu-image {
  width: 100%;
  max-width: 440px;
}

.menu-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-items li {
  margin-bottom: 4%;
}

.menu-items li a {
  font-size: 6rem;
  letter-spacing: 0.1rem;
  font-weight: 400;
}

.c-soon {
  text-decoration: line-through;
}
.menu-link {
  position: relative;
  display: inline-block;
  opacity: 0.5;
  transition: opacity 0.4s ease;
  overflow: visible;
}

.menu-link:hover {
  opacity: 1;
}
.hover-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background-image: url("../img/menu-hover.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: transform;
}

.menu-link:hover .hover-arrow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.sub-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin-top: 4%;
}

.sub-links a {
  text-decoration: underline;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
}

/*hero*/
/* 全体レイアウト */
.hero-sec {
  box-sizing: border-box;
}

.hero-inner {
  display: flex;
}

.hero-left {
  position: relative;
  width: 60%;
  height: 85vh;
}

.hero-left .hero1 {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 23vw;
  height: 60vh;
  object-fit: cover;
}

/* 右下にズラして配置される女性の写真 */
.hero-left .hero2 {
  position: absolute;
  bottom: 20px;
  left: 60%;
  width: 17vw;
  height: 47vh;
  object-fit: cover;
}

/* 右側コピー群 */
.hero-right {
  width: 50%;
  /* margin-left: 12%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #665066;
}

.hero-right h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  line-height: 3rem;
  letter-spacing: 0.22rem;
}

.copy-jp {
  font-size: 1.1rem;
  line-height: 2.45rem;
  letter-spacing: 0.1rem;
  font-weight: 300;
  margin-bottom: 15%;
}

/* ボタン */
.hero-btn {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: #665066;
  text-decoration: none;
  gap: 0.8rem;
  position: relative;
}

.arrow-circle {
  width: 38px;
  height: 38px;
  border: 1px solid #665066;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* =============================
   HERO VISUAL（新構造）
============================= */
.hero-main-container {
  width: 100%;
  min-height: 70vh;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding-top: 8vh;
}
.hero-catch {
  width: 100%;
  margin: 6vh auto 0 auto;
  text-align: center;
  position: relative;
  z-index: 11;
}
.hero-catch-label {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: #665066;
  margin-bottom: 2.2rem;
  font-weight: 400;
}
.hero-catch-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.8rem;
  color: #665066;
  letter-spacing: 0.18em;
  font-weight: 400;
  margin-bottom: 50px;
  line-height: 1.7;
}
.hero-catch-desc {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.1rem;
  color: #665066;
  line-height: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}
/* =============================
   HERO GALLERY 無限横スクロール（clip-path版）
============================= */
.hero-masked-scroll-wrapper {
  width: 100vw;
  height: 66vh;
  position: relative;
  background: #f0efec;
  overflow: hidden;
}

.hero-scroll-track {
  width: max-content;
  display: flex;
  animation: hero-scrollLoop 57s linear infinite;
  height: 100%;
}
.hero-gallery {
  position: relative;
}
.hero-scroll-track img {
  height: 100%;
  object-fit: cover;
  margin-right: 16px;
  pointer-events: none;
  user-select: none;
}

.hero-gallery-text {
  width: 100%;
  position: absolute;
  z-index: 11;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.daen {
  position: absolute;
  bottom: 82%;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 10;
  pointer-events: none;
}
.hero-gallery-text p {
  font-family: "the-seasons", serif;
  font-size: 9rem;
  font-weight: 400;
  color: #f0efec;
  text-align: center;
  letter-spacing: 0.12rem;
  line-height: 10rem;
  background: none;
  text-shadow: none;
  mix-blend-mode: normal;
  user-select: none;
}
@keyframes hero-scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hg-name {
  position: absolute;
  z-index: 99;
  right: -3%;
  top: -7%;
  transform: rotate(90deg);
  transform-origin: center;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
}

/*sec1*/
.sec1 {
  margin: 15% 0;
  width: 55%;
}
.sec1-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec1-img {
  width: 50%;
  max-width: 422px;
  height: auto;
}
.sec1-inner p {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.4rem;
}

/*sec2*/
.sec2 {
  margin: 15% 0;
}
.sec2-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec2-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sec2-container p {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.03rem;
  margin-bottom: 15%;
}
.sec2-container h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 10%;
  line-height: 3.5rem;
  letter-spacing: 0.17rem;
}
.sec2-container h3 {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 15%;
  line-height: 1.6rem;
  letter-spacing: 0.05rem;
}

/*共通ボタン*/
.circle-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #665066;
}

.btn-bg {
  width: 43px;
  height: 43px;
  background-color: #665066;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.btn-arrow {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: auto;
}
.btn-txt {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.05rem;
}

.circle-button:hover .btn-arrow,
.circle-button2:hover .btn-arrow {
  animation: flyLoop 1.25s ease-in-out forwards;
}

@keyframes flyLoop {
  0% {
    transform: translateX(-50%);
    opacity: 1;
  }
  40% {
    transform: translateX(150%);
    opacity: 0;
  }
  41% {
    transform: translateX(-150%);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%);
    opacity: 1;
  }
}

/*sec3*/
.sec3 {
  position: relative;
  height: 720px;
  width: 100%;
  overflow: hidden;
  margin: 10% 0;
  background-color: #f0efec; /* デバッグ用背景 */
}

.sec3-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1200px; /* 任意の最大幅 */
  margin: 0 auto;
}

/* 背景画像：画面幅いっぱいに広げ、縦もcover */
.sec3-bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: translate(-50%, 0);
  will-change: transform;
}

/* 前景画像：中央配置 + サイズ固定 */
.sec3-fg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 420px;
  width: 230px;
  z-index: 2;
}

/*sec4*/
.sec4 {
  margin: 10% 0;
}

.sec4-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sec4-container p {
  font-size: 1rem;
  letter-spacing: 0.05rem;
  font-weight: 300;
}
.sec4-container h3 {
  margin-top: 10px;
  font-size: 4.2rem;
  letter-spacing: 0.3rem;
  font-weight: 400;
  margin-bottom: 6%;
}
.sec4-container h2 {
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  line-height: 3.3rem;
  font-weight: 400;
}
.sec4-box {
  width: 100%;
  margin: 0 auto; /* 中央揃えのみ */
  display: flex;
  gap: 100px;
  align-items: center;
  justify-content: space-between; /* or flex-start */
  padding: 0 5%; /* 外枠余白はここで管理 */
  box-sizing: border-box;
}
.sec4-box:last-child {
  margin-top: 7%;
}

.sec4-box > img {
  width: 50%;
  max-width: 600px;
  height: auto;
  display: block;
  object-fit: cover;
  flex-shrink: 0;
}

.sec4-box-right {
  flex: 1;
  min-width: 0;
}
.sec4-inner {
  margin-top: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec4-box-right p {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  border: 1px solid #665066;
  padding: 1px 9px;
  width: fit-content;
  border-radius: 9999px;
}
.sec4-box-right h2 {
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.15rem;
  line-height: 3.5rem;
  margin: 3% 0;
}
.sec4-box-right h3 {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
}

.sec4-box-right h4 {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  margin: 12% 0 25% 0;
  line-height: 2.7rem;
}

/*sec5*/
.sec5 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-top: 1px solid #dbd7d8;
  padding-top: 10%;
  width: 100%;
}
.sec5-container {
  width: 80%;
}
.sec5-titlebox {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.sec5-titlebox h3 {
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
  line-height: 3rem;
}
.sec5-titlebox h2 {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1.4rem;
}
.news-list {
  margin-top: 8%;
}
.news-item {
  display: flex;
  justify-content: space-between;
}
.news-date {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  margin-right: 20px;
  opacity: 0.5;
}
.news-title {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
}
.news-tag {
  padding: 1.5px 7px;
  font-size: 0.9rem;
  /* font-size: 1rem; */
  font-weight: 400;
  letter-spacing: 0.1rem;
  /* padding: 1px 7px; */
  border: 1px solid #665066;
  border-radius: 9999px;
}
.news-box + .news-box {
  border-top: 1px solid #dbd7d8;
  padding-top: 2%;
  margin-top: 2%;
}

.sec5-container + .sec5-container {
  margin-top: 10%;
}

.event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
  margin-top: 8%;
}

.event-item {
  display: flex;
  width: 31%;
  color: #665066;
}

.event-date {
  font-size: 1.2rem;
  color: #665066;
  letter-spacing: 0.15rem;
  font-weight: 300;
}

.event-img img {
  width: 100%;
}

.event-title {
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: 2rem;
  letter-spacing: 0.1rem;
}

.event-tag {
  padding: 1.5px 7px;
  font-size: 0.9rem;
  /* font-size: 1rem; */
  font-weight: 400;
  letter-spacing: 0.1rem;
  /* padding: 1px 7px; */
  border: 1px solid #665066;
  border-radius: 9999px;
}
.event-date-tag {
  margin-bottom: 10px;
}
.event-item:nth-child(n + 4) {
  margin-top: 5%;
}

.img-responsive {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/*sec6*/
.sec6 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 15%;
}

.sec6-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sec6-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #f0efec;
  z-index: 2;
}
.sec6-container h3 {
  font-size: 1.7rem;
  letter-spacing: 0.2rem;
  line-height: 4rem;
  font-weight: 500;
  margin-bottom: 10%;
}
.sec6-container p {
  font-size: 1rem;
  letter-spacing: 0.02rem;
  line-height: 1.7rem;
  font-weight: 300;
  margin-bottom: 15%;
}

.circle-button2 {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #f0efec;
}
.btn-bg2 {
  width: 43px;
  height: 43px;
  border: 1px solid rgba(240, 239, 236, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/**

Brand Story page

**/
.img-responsive {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.bs-sec1-img {
  width: 100%;
}
.bs-sec1 {
  margin: 10% 10% 5% 10%;
}
.bs-hero {
  margin-top: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.bs-hero h1 {
  margin-bottom: 2.5%;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
.bs-hero p {
  margin-top: 5%;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05rem;
  text-align: center;
}
.bs-main {
  width: 30%;
}

.bs-sec2 {
  margin: 0 10%;
}
.bs-sec2 h2 {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  line-height: 3rem;
  margin-bottom: 5%;
}

.bs-sec2 p {
  font-size: 1rem;
  letter-spacing: 0.05rem;
  font-weight: 300;
  line-height: 2rem;
  margin-bottom: 20px;
  width: 40%;
}
.bs-sec2-lasttxt {
  font-size: 1rem;
  letter-spacing: 0.02rem;
  font-weight: 400;
}
.bs-sec3 {
  margin-top: 10%;
}
.bs-sec3 p {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  font-weight: 400;
  line-height: 3.5rem;
  margin: 20% 0;
  text-align: center;
}
.bs-sec4 {
  margin-bottom: 10%;
}
.bs-sec4 h2 {
  font-size: 1.8rem;
  letter-spacing: 0.15rem;
  font-weight: 400;
  line-height: 3.5rem;
  margin: 5% 0 2% 5%;
}
.bs-sec4 p {
  font-size: 1rem;
  letter-spacing: 0.05rem;
  font-weight: 300;
  line-height: 2rem;
  margin-left: 5%;
}

/**

Carrier design page

**/
.cd-sec1 {
  margin: 7% 0 10% 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
.cd-hero-btn {
  margin-top: 30px;
}
.cd-scroll-wrapper {
  width: 100%;
  overflow: hidden;
}

.cd-scroll-track {
  display: flex;
  flex-wrap: nowrap;
  animation: scrollLeft 40s linear infinite;
}

.cd-scroll-track img {
  height: 400px;
  width: 400px;
  flex-shrink: 0;
  margin-right: 20px;
  object-fit: cover;
  display: block; /* 重要！段落ち防止 */
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.cd-sec2 h2 {
  margin-top: 5%;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 500;
  line-height: 3.2rem;
}

.cd-sec-titlebox {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cd-sec-titlebox p {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05rem;
}
.cd-sec-titlebox h2 {
  margin-top: 15px;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
.cd-sec-titlebox h3 {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2.5rem;
  letter-spacing: 0.1rem;
  margin: 40px 0 50px 0;
}
.cd-sec-titlebox span {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.02rem;
  line-height: 1.7rem;
}
.cd-sec-titlebox {
  margin: 10% 0;
}
.cd-sec3-container {
  padding: 10% 0;
  border-top: 1px solid #dbd7d8;
}
.cd-sec3-container-inner {
  margin: 0 20%;
}
.cd-sec3-ci-title {
  margin-bottom: 2px;
}
.cd-sec3-ci-title h2 {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
.cd-sec3-ci-title p {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
.cd-sec3-txtbox {
  width: 100%;
  gap: 7%;
  margin-top: 10%;
}

.cd-sec3-txtbox p {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 2.7rem;
}
.cd-sec3-txtbox span {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.04rem;
  line-height: 2rem;
}
.cd-sec4-container {
  margin: 0 16%;
  gap: 5%;
}
.cd-sec4-right {
  width: 45%;
}
.cd-sec4-right img {
  margin-bottom: 60px;
}
.cd-sec4-right h3 {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 3.7rem;
  margin-bottom: 20px;
}
.cd-sec4-right span {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.05rem;
  line-height: 2.2rem;
}
.cd-sec4-right h2 {
  margin-top: 7%;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 2.5rem;
}
.cd-sec4,
.cd-sec5,
.cd-sec6,
.cd-sec7 {
  border-top: 1px solid #dbd7d8;
  width: 100%;
  padding-bottom: 10%;
}

.cd-sec5-table-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
}

.cd-sec5-table {
  width: 100%;
  border-collapse: collapse;
  color: #665066;
}

.cd-sec5-table td {
  border: 1px solid #e5e1dc;
  padding: 24px 20px;
  text-align: center;
  vertical-align: middle;
  font-size: 1.1rem;
  line-height: 1.6;
}
.cd-sec5-table th {
  padding: 10px 20px;
}
.cd-sec5-plantxt {
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  font-weight: 500;
}
.cd-sec5-table th {
  background-color: #665066;
  color: #f0efec;
  font-weight: 300;
  text-align: center;
  font-family: "open-sans";
  font-size: 1rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.cd-sec5-table td div {
  margin-bottom: 6px;
}
.cd-sec6-scroll-container {
  touch-action: pan-x;
  width: 100%;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.cd-sec6-scroll-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
}

.cd-sec6-scroll-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 435px;
  margin-right: 20px;
  padding: 40px;
  border: 1px solid #665066;
  box-sizing: border-box;
}

.cd-sec6-scroll-item img {
  width: 50px;
  height: 50px;
}
.cd-sec6-scroll-item h2 {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  margin: 10px 0 5px 0;
}
.cd-sec6-role {
  font-size: 1.1rem;
  opacity: 0.5;
  font-weight: 300;
  letter-spacing: 0.1rem;
  margin-bottom: 5px;
}
.cd-sec6-role2 {
  opacity: 0.5;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  margin-bottom: 7%;
}
.cd-sec6-maintxt {
  white-space: normal; /* ← これが超重要！！ */
  word-break: break-word; /* ← 長すぎる語を折り返す */
  font-size: 1.1rem;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 2.4rem;
}
.cd-sec7 {
}
.cd-sec7-faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.cd-sec7-faq-item {
  border-bottom: 1px solid #ccc0cb;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cd-sec7-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
  text-align: left;
}
.cd-sec7-faq-question span {
  font-size: 1.2rem;
  line-height: 2.2rem;
  letter-spacing: 0.1rem;
}

.cd-sec7-faq-question span:first-child::before {
  content: "Q.";
  font-family: "seasons";
  font-size: 1.4rem;
  font-weight: 400;
  margin-right: 8px;
  letter-spacing: 0.1rem;
}

.cd-sec7-toggle-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.cd-sec7-faq-answer {
  margin-top: 4%;
  display: none;
  padding-right: 24px;
}
.cd-sec7-faq-answer p {
  font-size: 1.2rem;
  line-height: 2.6rem;
  letter-spacing: 0.1rem;
  opacity: 0.8;
}

.cd-sec7-faq-item.open .cd-sec7-faq-answer {
  display: block;
}

.cd-sec7-faq-item.open .cd-sec7-toggle-icon {
  content: "ー";
}

.cd-cta-img {
  width: 545px;
}
.cd-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 5%;
  padding: 15% 0;
  border-top: 1px solid #665066;
  text-align: center;
}
.cd-cta h2 {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  line-height: 2.7rem;
  margin-top: 3%;
}
.cd-cta p {
  margin: 4% 0 15px 0;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  line-height: 1.8rem;
  font-weight: 300;
}

/*contact*/

.c-sec {
  width: 100%;
}
.c-h2 {
  margin-top: 70px;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  line-height: 2.8rem;
}
.contact-btn-sec {
  display: flex;
  gap: 20px;
  margin: 0 0 45px 0;
  justify-content: center;
}

.contact-btn-sec .tab {
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 20px;
  color: #665066;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.contact-btn-sec .tab.active {
  background-color: #665066;
  color: #f0efec;
}

.contact-content {
  position: relative;
  width: 100%;
}

.contact-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.contact-panel.active {
  display: block;
  opacity: 1;
}
.c-mailtxt {
  font-weight: 500;
  font-size: 4.5rem;
  letter-spacing: 0.2rem;
}

.c-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 8.8%;
  padding: 7% 0;
  border-top: 1px solid #66506633;
  text-align: center;
}
.c-container h2 {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  line-height: 2.7rem;
  margin-top: 3%;
}
.c-container p {
  margin: 4% 0 15px 0;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  line-height: 1.8rem;
  font-weight: 300;
}

/*single-article*/
.article-main-container {
  margin: 11% 30%;
}
.a-thumbnail {
  max-height: 400px;
  object-fit: cover;
  margin-bottom: 40px;
}
.a-date {
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
  opacity: 0.5;
  margin-right: 10px;
}
.a-tag {
  border: #665066 1px solid;
  padding: 1.5px 7px;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  border-radius: 9999px;
}
.article-thumbnail h1 {
  margin-top: 15px;
  font-weight: 500;
  font-size: 2.8rem;
  letter-spacing: 0.2rem;
  line-height: 4rem;
}
.article-first {
  background-color: #e8e5e4;
  padding: 4% 5%;
  margin-bottom: 15%;
}
.article-first p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2.7rem;
  letter-spacing: 0.1rem;
}
.article-main {
  margin-top: 7%;
}
.article-main h2 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 3.5rem;
  letter-spacing: 0.1rem;
}
.article-main img {
  margin: 20px 0 50px 0;
}
.article-main p {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2.7rem;
  letter-spacing: 0.1rem;
}
/*footer*/
#footer {
  margin: 5% 0 2% 0;
}
/* footer 無限スクロール */
.ft-marquee {
  overflow: hidden;
  border-top: 1px solid #665066;
  border-bottom: 1px solid #665066;
  padding: 2.5% 0;
  white-space: nowrap;
  position: relative;
}

.ft-marquee-inner {
  display: inline-block;
  padding: 1rem 0;
  animation: scroll-right 145s linear infinite;
  text-decoration: none;
  color: #665066;
  white-space: nowrap;
}

.ft-marquee-inner img {
  margin: 0 20px;
}

.ft-marquee-inner:hover {
  animation-play-state: paused;
  cursor: pointer;
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

.flex-btw-end {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.ft-container {
  margin: 5% 5% 0 5%;
}
.ft-li {
  gap: 20px;
}
.ft-li a {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.055rem;
}
.ft-box2 {
  margin-top: 8%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.ft-img1 {
  max-width: 400px;
  height: auto;
}
.ft-box2-left h2 {
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  line-height: 2.5rem;
  margin-bottom: 10%;
}
.ft-box2-left p {
  font-size: 1rem;
  letter-spacing: 0.02rem;
  font-weight: 300;
  line-height: 1.7rem;
}
.ft-box3 {
  margin-top: 15%;
  display: flex;
  justify-content: space-between;
}
.ft-box3 p {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02rem;
}
.ft-box3-left {
  display: flex;
  gap: 20px;
  text-decoration: underline;
}

/*アニメーション*/
.scroll-fadein {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(6px);
  transition: all 1.2s ease-out;
  will-change: opacity, transform, filter;
}

.scroll-fadein.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
#loader {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f0efec;
  z-index: 9999;
  animation: loaderBgFadeOut 0.8s ease 2.7s forwards;
}

.loader-icon {
  width: 150px;
  height: auto;
  filter: blur(10px);
  opacity: 0;
  animation: logoBlurFadeIn 0.8s ease 0.1s forwards,
    logoBlurFadeOut 0.8s ease 2.3s forwards;
}

/* ロゴのブラーフェードイン */
@keyframes logoBlurFadeIn {
  0% {
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

/* ロゴのブラーフェードアウト */
@keyframes logoBlurFadeOut {
  0% {
    filter: blur(0px);
    opacity: 1;
  }
  100% {
    filter: blur(10px);
    opacity: 0;
  }
}

/* 背景全体をフェードアウト（ラスト） */
@keyframes loaderBgFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.pc-hide {
  display: none;
}

/*
tab
*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pc-hide {
    display: block !important; /* スマホではpc-hideは表示 */
  }
  .sp-hide {
    display: none !important; /* スマホではsp-hideは非表示 */
  }
  /*index*/

  .hd-inner {
    padding: 5%;
  }
  .tab-flex-column {
    display: flex;
    flex-direction: column;
  }

  .fullscreen-menu {
    padding: 17% 15%;
    gap: 7%;
  }

  .sec1 {
    margin: 30% 0;
    width: 65%;
  }

  .sec2 {
    margin: 10% 0 30% 0;
  }

  .sec3 {
    height: 920px;
  }

  .sec4 {
    margin: 10% 5%;
  }
  .sec4-box > img {
    width: 100%;
  }
  .sec4-box {
    gap: 66px;
  }
  .sec4-box:last-child {
    margin-top: 17%;
  }
  .sec5 {
    padding-top: 15%;
  }
  .news-box + .news-box {
    border-top: 1px solid #dbd7d8;
    padding-top: 4%;
    margin-top: 4%;
  }
  .sec5-container + .sec5-container {
    margin-top: 15%;
  }

  /*cd*/
  .cd-scroll-wrapper {
    width: max-content;
    /* width: 100%; */
    overflow: hidden;
  }
  .cd-scroll-track {
    animation: scrollLeft 40s linear infinite;
  }
  .cd-sec1 {
    margin: 15% 0 20% 0;
  }
  .bs-hero {
    margin-top: 10%;
  }
  .bs-sec1 {
    margin: 15% 10% 15% 10%;
  }
  .cd-sec4-container {
    margin: 0 8%;
  }
  .cd-sec5-table-wrapper {
    max-width: 700px;
  }
  .cd-sec7-faq-list {
    max-width: 650px;
  }

  .cd-cta {
    padding: 15% 0 0 0;
  }
  /*bs*/
  .bs-sec3 {
    margin-top: 15%;
  }
  .bs-sec3 p {
    margin: 20% 20%;
  }
  .bs-sec4 h2 {
    margin: 10% 0 4% 10%;
  }
  .bs-sec4 p {
    margin-left: 10%;
  }

  /*c*/
  .c-container {
    margin-top: 10%;
    padding: 10% 0;
  }
  /*blog*/
  .article-main-container {
    margin: 20% 14%;
  }
  /*ft*/
  #footer {
    margin: 15% 0px 2%;
  }
  .ft-container {
    margin: 10% 5% 0 5%;
  }
  .ft-box3 {
    margin-top: 20%;
  }
  .loader-icon {
    width: 180px;
  }
}

/* 
SP
*/
@media screen and (max-width: 767px) {
  .sp-hide {
    display: none !important; /* スマホではsp-hideは非表示 */
  }
  .pc-hide {
    display: block !important; /* スマホではpc-hideは表示 */
  }
  .sp-flex-column {
    display: flex;
    flex-direction: column;
  }
  /*hd*/
  .hd-inner {
    padding: 7%;
  }

  /*h-menu*/
  .fullscreen-menu {
    padding: 25% 10%;
  }
  .menu-items li a {
    font-size: 4rem;
    letter-spacing: 0.1rem;
    font-weight: 400;
  }
  .menu-right {
    margin-top: 15%;
  }
  .fullscreen-menu {
    overflow-y: auto;
  }
  /*hero*/
  .hero-gallery-text p {
    font-size: 7rem;
  }
  .hero-catch-title {
    font-size: 2rem;
  }
  .hg-name {
    right: -13%;
    top: 11%;
  }
  .hero-catch {
    width: 100%;
    margin: 10.5vh auto 0 auto;
  }

  .hero-scroll-track {
    animation: hero-scrollLoop 77s linear infinite;
  }
  /*sec1*/
  .sec1 {
    margin: 45% 0;
    width: 100%;
  }
  .sec1-inner p {
    margin-bottom: 25%;
  }
  /*sec2*/
  .sec2 {
    margin: 10% 0 45% 0;
  }
  .sec2-container h2 {
    font-size: 1.7rem;
  }

  /*sec3*/

  .sec3-inner {
    width: 90%;
    height: 100%;
    max-width: none;
  }

  /*sec4*/
  .sec4 {
    margin: 20% 0;
  }
  .sec4-box > img {
    width: 100%;
    max-width: none;
  }
  .sec4-inner {
    margin-top: 20%;
  }
  .sec4-box {
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 55px;
  }
  .sec4-box-right h2 {
    margin: 3% 0 2% 0;
    font-size: 1.8rem;
  }
  .sec4-box-right h4 {
    margin: 12% 0 10% 0;
  }
  .sec4-box:last-child {
    margin-top: 25%;
  }
  .sec4-box-right {
    width: 90%;
  }

  /*sec5*/
  .sec5 {
    padding-top: 18%;
  }
  .sp-normal {
    align-items: normal;
    width: 80%;
  }
  .news-tag {
    height: fit-content;
  }
  .news-box + .news-box {
    border-top: 1px solid #dbd7d8;
    padding-top: 6%;
    margin-top: 6%;
  }
  .news-date {
    margin-right: 0;
    margin-bottom: 5px;
  }
  .news-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .news-list {
    margin-top: 17%;
  }
  .sec5-container + .sec5-container {
    margin-top: 25%;
  }
  .event-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8%;
    margin-top: 17%;
  }
  .event-item {
    display: flex;
    width: 46%;
    color: #665066;
  }
  .event-item:nth-child(n + 3) {
    margin-top: 12%;
  }
  /*sec6*/
  .sec6-container h3 {
    font-size: 1.5rem;
    margin-bottom: 20%;
  }
  .sec6-container p {
    margin-bottom: 20%;
  }
  .sec6 {
    height: 120vh;
  }
  .cd-sec6-scroll-item {
    width: 330px;
  }

  /**

Brand Story

**/
  .bs-hero {
    margin-top: 20%;
  }
  .bs-main {
    width: 70%;
  }
  .bs-hero h1 {
    margin-bottom: 8.5%;
  }

  .bs-hero p {
    margin-top: 11%;
  }

  .bs-sec1 {
    margin: 20% 10% 20% 10%;
  }
  .bs-sec1-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }
  .bs-sec2 p {
    margin-bottom: 10px;
    width: 100%;
  }
  .bs-sec2 h2 {
    margin-bottom: 12%;
  }
  .bs-sec3 {
    margin-top: 25%;
  }
  .bs-sec3 img {
    height: 555px;
    object-fit: cover;
  }
  .bs-sec3 p {
    margin: 20% 15%;
  }
  .bs-sec4 {
    margin: 20% 0;
  }
  .bs-sec4 h2 {
    margin: 11% 0 4% 8%;
    font-size: 1.7rem;
    letter-spacing: 0.1rem;
    font-weight: 400;
    line-height: 3.3rem;
  }
  .bs-sec4 p {
    margin-left: 8%;
  }

  /**

キャリアデザインページ

  **/
  .cd-scroll-track {
    width: max-content;
    display: flex;
    flex-wrap: nowrap;
    animation: scrollLeft 40s linear infinite;
  }
  .cd-sec1 {
    margin: 30% 0 30% 0;
  }

  .cd-sec2 h2 {
    margin-top: 10%;
    font-size: 1.3rem;
    line-height: 3.2rem;
  }
  .cd-sec-titlebox {
    margin: 15% 8% 15% 8%;
  }
  .cd-sec-titlebox h3 {
    margin: 45px 0 30px 0;
  }

  .cd-sec3-container-inner {
    margin: 0 8%;
  }
  .cd-sec3-container {
    padding: 15% 0;
  }
  .cd-sec3-txtbox p {
    margin-bottom: 9%;
  }
  .cd-sec3-txtbox {
    margin-top: 17%;
  }
  .cd-sec3-ci-title h2 {
    font-size: 1.5rem;
  }
  .cd-sec4-container {
    display: flex;
  }
  .cd-sec4-right {
    width: 100%;
    order: 2;
  }
  .cd-sec4-right h3 {
    font-size: 2.9rem;
    margin-bottom: 20px;
    margin-top: 30%;
  }
  .sp-cd-sec4-img2 {
    margin: 10% 0 15% 0;
  }
  .cd-sec4-right h2 {
    margin-top: 10%;
  }
  .cd-sec5-table-wrapper {
    max-width: none;
    margin: 0 5%;
  }

  .cd-sec4,
  .cd-sec5,
  .cd-sec6,
  .cd-sec7 {
    padding-bottom: 18%;
  }

  .cd-sec6-scroll-container {
    margin-top: 25%;
  }
  .cd-sec7-faq-list {
    max-width: 100%;
    margin: 20% auto;
    padding: 0 10%;
  }
  .cd-sec7-faq-item {
    padding: 27px 6px;
  }
  .cd-cta {
    margin-top: 0;
    padding: 30% 0 15% 0;
  }
  .cd-cta h2 {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    line-height: 2.7rem;
    margin-top: 11%;
  }
  .cd-cta p {
    margin: 7% 0 7px 0;
  }
  .cd-cta-img {
    width: 82%;
  }

  /**

contactページ

  **/
  .contact-btn-sec {
    gap: 7px;
  }
  .c-container {
    margin: 20% auto 0 auto;
    padding: 7% 0;
    width: 90%;
  }
  .c-container h2 {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    line-height: 2.7rem;
    margin-top: 10%;
  }
  .c-mailtxt {
    font-weight: 500;
    font-size: 3.1rem;
    letter-spacing: 0.2rem;
  }
  .c-container p {
    margin: 10% 0 15px 0;
    font-size: 1rem;
    letter-spacing: 0.05rem;
    line-height: 1.8rem;
    font-weight: 300;
  }

  /**

記事ページ

  **/

  .article-main-container {
    margin: 30% 10%;
  }
  .article-thumbnail h1 {
    margin-top: 15px;
    font-weight: 500;
    font-size: 1.9rem;
    letter-spacing: 0.2rem;
    line-height: 3rem;
  }
  .article-first {
    background-color: #e8e5e4;
    padding: 6% 10%;
    margin-bottom: 25%;
  }
  .article-main {
    margin-top: 12%;
  }

  /*ft*/
  .ft-img1 {
    max-width: 200px;
    height: auto;
    margin-top: 10%;
  }
  #footer {
    margin: 15% 0 5% 0;
  }
  .ft-marquee {
    padding: 7.5% 0;
  }
  .sp-normal2 {
    align-items: normal;
  }
  .ft-logo {
    width: 150px;
    height: auto;
  }
  .ft-container {
    margin: 15% 7% 0 7%;
  }
  .ft-li {
    margin-top: 25px;
    gap: 15px;
  }
  .ft-box2 {
    margin-top: 20%;
  }
  .ft-box3 {
    margin-top: 30%;
  }
}
