@charset "utf-8";@charset "UTF-8";
/* メニューNONE */
#header {
        display: none;
}
#header .header__nav {
        display: none;
}
#header .header__inner {
        display: none;
}
#header .header__nav--bottom {
        display: none;
}
.keyword-box {
        display: none;
}
.crumbsList .row ol {
    display: none;
}
.crumbsList {
    display: none;
}
.footer .footer__inner {
    display: none;
}
.footer {
    display: none;
}

/* 左側画像固定 */
.split-layout {
  display: flex;
  height: 100vh;
}

.split-left {
    flex: 0 0 45vw;
    position: sticky;
    top: 0;
    height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #eee;
    z-index: 2;
}

.split-left img {
  width: 100%;   
  height: 100%;  
  object-fit: cover; 
}

.split-right {
    flex: 1;
    height: 100vh;
    overflow-y: auto;
    background: #ffffff;
    padding: 40px 0px 0px;
    box-sizing: border-box;
    text-align: center;
}

/* ブランド説明レイアウト */
.ma-ourstory {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    background-color: #e3e7e8;
    padding: 80px 30px;
    box-sizing: border-box;
    color: #000000;
}

.ma-ourstory__inner {
  max-width: 800px; 
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 画像（ロゴ）エリア */
.ma-ourstory__image-box {
  background-color: #ffffff;
  width: 100%;
  max-width: 380px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.ma-ourstory__logo {
  max-width: 80%;
  height: auto;
  display: block;
}

/* コンテンツエリア */
.ma-ourstory__content {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.ma-ourstory__title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #363636;
    letter-spacing: 0.05em;
}

.ma-ourstory__text {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-ideograph;
  margin: 0;
}

/* インタビューレイアウト */

.interview-container {
    width: 100%;
    box-sizing: border-box;
}

/* --- 記事コンテンツ --- */
.interview-content {
    max-width: 720px;
    padding: 30px;
    box-sizing: border-box;
    margin: 0 auto;
}

/* --- 画像 --- */
.interview-image-wrapper {
    width: 100%;
    margin-bottom: 30px; 
}

.interview-image {
    width: 100%;
    height: auto; 
    display: block;
}

/* --- Q&Aセクション --- */
.interview-section {
    margin-bottom: 20px;
}

.interview-question {
    font-size: 1.6rem;
    font-weight: 600;
    color: #111;
    margin-top: 50px;
    margin-bottom: 15px;
    line-height: 1.4;
    text-align: justify;
}

.interview-answer {
    font-size: 1.2rem;
    margin: 0;
    text-align: justify;
    margin-bottom: 10%;
}

/* --- 区切り線 --- */
.interview-divider {
    border: 0;
    height: 1px;
    background-color: black;
    margin: 20px 0px;
    width: 30%;
    max-width: 80px;
}

/* ----- テキスト部分のフォント指定 ----- */
.font-title {
    font-family: sans-serif;
    font-weight: 600;
    font-size: 1.5em;
    letter-spacing: 0.03em;
    color: #222;
}

.font-body {
    font-family: sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #414040;
    margin-top: 3%;
    margin-bottom: 10%;
}

/* ----- アイテム画像 ----- */

.parent {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 0.1fr);
    gap: 5px;
    justify-content: center;
    justify-items: center;
}

.parent02 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 5px;
    justify-content: center;
    justify-items: center;
    margin: 0% 5%;
}

/* テキスト*/
.font01 {
    font-size: 1.2rem;
    line-height: 25px;
    width: 95%;
    margin: 0% auto;
}

.font02 {
    font-size: 1.2rem;
    line-height: 25px;
    width: 85%;
    margin: 2% auto;
    font-weight: bold;
    text-align: justify;
}

.text01 {
    font-size: 0.8em;
    font-weight: nomal;
    line-height: 25px;
    width: 90%;
    margin: 0% auto;
    text-align: center;
}

/* ボタンの基本スタイル */
.ma-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 310px;
    height: 60px;
    margin: 40px auto;
    background-color: #1f2b55;
    color: #ffffff !important;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0.05em;
    box-sizing: border-box;
    transition: opacity 0.3s 
ease;
    margin-top: 15%;
}

/* マウスを乗せた時の動き（ホバー） */
.ma-btn:hover {
  opacity: 0.8;       
}

@media (max-width: 900px) {
  .split-layout {
    flex-direction: column;
    height: auto;
  }
  .split-left {
    position: static;
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid #eee;
  }
  .split-left img {
    width: 100%;
    height: auto;
    border-radius: 0;
  }

.split-right {
        height: auto;
        padding: 45px 0px 0px;
    }
}

/* レスポンシブ対応 */
@media (max-width: 800px) {
  .catalogue-layout {
    max-width: 98vw;
  }
.bottom-content-area {
        flex-direction: row;
        gap: 18px;
        align-items: stretch;
    }
.bottom-image-area, .item-info {
        justify-content: end;
        align-items: baseline;
    }
  .bottom-image-area .main-img, .main-img {
    max-width: 98vw;
  }
  .item-info li {
    font-size: 1em;
    margin-bottom: 16px;
    justify-content: flex-start;
  }

.week-slider-container {
    --slide-width: 35vw;
  }
  .week-slider-track {
    width: calc(14 * var(--slide-width));
  }
  .week-slide {
    flex: 0 0 var(--slide-width);
    padding: 8px;
  }

.ma-btn {
    height: 50px;       
    font-size: 14px;    
    width: 90%;    
  }
}

@media (max-width: 430px) {
.top-image-area {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    margin-top: 5%;
}
.item-info {
    display: contents;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 190px;
}
.bottom-content-area {
     flex-direction: row;
      gap: 18px;
      align-items: end;
}

.font-bold {
    font-family: "impact", sans-serif;
    font-size: 3.0em;
    padding-top: 10%;
}
}
@media (max-width: 430px) {
.interview-content {
    box-sizing: border-box;
    margin: 0 auto;
}
.parent {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 0.1fr);
    gap: 5px;
    justify-content: center;
    justify-items: center;
    margin: 0px 10px;
}
}
@media (max-width: 320px) {
.interview-content {
    padding: 20px;
    box-sizing: border-box;
    margin: 0 auto;
}
}