@charset "utf-8";
html {
    scroll-behavior: smooth;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
/* ボディの基本設定 */
.max-width-wrapper {
    letter-spacing: 0.09em;
    margin: 0;
}
/* デフォルトの余白とパディングを削除 */
ul,
ol,
button,
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
time,
small {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
/* リストスタイルのリセット */
ul,
ol {
    list-style: none;
}
/* aタグのスタイルとトランジション */
a {
    -webkit-text-decoration: none;
    color: inherit;
    text-decoration: none;
}
a:hover {
    opacity: 0.7;
}
button {
    color: inherit;
}
/* ホバー時のカーソル設定 */

/* タップ時のハイライトを透明に設定 */
a {
    -webkit-tap-highlight-color: transparent; /* リンクのハイライトを透明に */
}
button {
    -webkit-tap-highlight-color: transparent; /* ボタンのハイライトも透明に */
}
:root {
    --font-family-base: "Noto Sans JP", sans-serif;
    --font-family-second:"Nunito Sans", sans-serif;
    --font-Montserrat: "Montserrat", sans-serif;
}
:root {
    --font-weight-regular: 400;
    --font-weight-normal: 500;
    --font-weight-bold: 700;
}
:root {
    --white-color: #ffffff;
    --red-color: #bc0602;
    --blue-color: #2251a2;
    --dark-blue: #003174;
    --yellow-color: #ca8b00;
    --green-color: #72B75E;
    --dark-brown:#391F1A;
    --light-blue-color:#00c5e9;
    --transition-default: 0.2s;
}
.max-width-wrapper {
    color: #000;
    color: var(--black);
    font-family: "Noto Sans JP", sans-serif;
    font-family: var(--font-family-base);
}
.u-desktop {
    display: none;
}
img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}
.flex {
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.t_center {
    text-align: center;
}
.t_left {
    text-align: left;
}
.t_right {
    text-align: right;
}
.sidebar_language {
    display: flex;
    justify-content: center;
    gap: 30px;
    background: #FFFFFF;
    padding: 1em 10px;
}
.sidebar_language_link {
    align-items: center;
    display: flex;
    gap: 5px;
}
.sidebar_language_link_text {
    font-family: "Century Gothic", "Montserrat", "Helvetica", sans-serif;
    font-size: 1.25vw !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
}
.arrow {
  border: solid black;
  display: inline-block;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 100 700;
    src: url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v290/kJEhBvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oFsI.woff2) format('woff2');
}
.material_symbols_outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}
.sidebar_language_icon {
    font-size: 1vw  !important;
    font-weight: 400 !important;
    color: #ff0000;
}
@media only screen and (min-width:768px) {
    .u-desktop {
        display: block;
    }
    .u-mobile {
        display: none;
    }
}
footer {
    background: #FFF;
}
.footer__links-login {
    text-align: center;
    padding: 30px 0;
}
.footer__links-login svg {
    display: inline-block;
}
a {
    text-decoration: none !important;
}
/* ==========================================================================
   Scroll fade-in animation (staggered)
   ========================================================================== */
.fade-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}
.fade-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fade-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ==========================================================================
   DENIM TOP — content styles (5 Reasons / Monster DENIM)
   ========================================================================== */

/* ---- MV copy ---- */
.sec_mv { position: relative; }
.sec_mv .img_mv { position: relative; }
/* MV image PC/SP swap (aligned to 750/751 layout breakpoint) */
.sec_mv .u-desktop { display: none; }
.sec_mv .u-mobile { display: block; }
.mv_copy {
    position: absolute;
    color: var(--white-color);
}
.mv_copy_title {
    font-weight: var(--font-weight-bold);
    line-height: 1.5;
}
.mv_copy_text {
    font-weight: var(--font-weight-regular);
    line-height: 1.9;
}

/* ---- 5 Reasons heading ---- */
.sec_reasons { padding: 0 5%; }
.reasons_head { margin-bottom: 7vw; }
.reasons_head_en {
    font-family: var(--font-family-second);
    font-weight: var(--font-weight-regular);
    color: #655229;
    letter-spacing: 0.06em;
}
.reasons_head_en_sub {
    display: block;
    font-style: italic;
    font-size: 0.5em;
    letter-spacing: 0.08em;
    margin-top: 0.6em;
    color: #8a7a5a;
    font-weight: 500;
}
.reasons_head_ja {
    font-weight: var(--font-weight-normal);
    margin-top: .5vw;
    letter-spacing: 0.12em;
    color: #655229;
}

/* ---- reason block ---- */
.reason { position: relative; margin-bottom: 12vw; }
.reason_num {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-family-second);
    color: #655229;
    letter-spacing: 0.08em;
    margin-bottom: 1em;
}
.reason_num .bar {
    display: inline-block;
    width: 2.448vw;
    height: 0.313vw;
    background: #655229;
    flex-shrink: 0;
}
.reason_title {
    font-weight: var(--font-weight-bold);
    line-height: 1.55;
    margin-bottom: 1em;
    color: #655229;
}
.reason_text {
    font-weight: var(--font-weight-regular);
    line-height: 2;
    color: #655229;
    font-size: 0.85em;
}
.reason_img img,
.reason_sub img { display: block; border-radius: 12px; }

/* ---- Monster DENIM ---- */
.sec_monster { padding: 0 5% 12vw; }
.monster_title {
    font-family: var(--font-family-second);
    font-weight: var(--font-weight-regular);
    font-style: italic;
    color: #655229;
    letter-spacing: 0.04em;
}
.monster_lead {
    font-weight: var(--font-weight-normal);
    margin-top: 0.8em;
    color: #655229;
}
.monster_body { margin-bottom: 7vw; }
.monster_img img { border-radius: 12px; }
.monster_text {
    font-weight: var(--font-weight-regular);
    line-height: 2;
    font-size: 0.85em;
    color: #655229;
    text-align: left;
}
.monster_btns { display: flex; justify-content: center; }
.monster_btn {
    display: inline-block;
    border: 3px solid #655229;
    border-radius: 999px;
    color: #655229;
    text-align: center;
    letter-spacing: 0.06em;
    transition: var(--transition-default);
}
.monster_btn:hover { background: #655229; color: var(--white-color); opacity: 1; }

/* ==========================================================================
   SP  (<= 750px)
   ========================================================================== */
@media only screen and (max-width: 750px) {
    .mv_copy {
        left: 6%;
        right: 6%;
        bottom: 8%;
        text-align: left;
    }
    .mv_copy_title { font-size: 5.9vw; }
    .mv_copy_text { font-size: 4.8vw; margin-top: 1.4em; }

    .arrow {
      border-width: 0 0.698vw 0.698vw 0;
      padding: 0.93vw;
      margin: 0.398vw 1.163vw;
    }

    .sec_reasons { padding: 0; }
    .sidebar_language_link .sidebar_language_link_text,.sidebar_language_link  .sidebar_language_icon {font-size: 4vw!important;}
    .reasons_head_en { font-size: 13.884vw; }
    .reasons_head_en_sub { font-size: 3.651vw; }
    .reasons_head_ja { font-size: 4.581vw;margin-top: .5vw;}

    .reason { text-align: center; margin-bottom: 14vw; }
    .reason--01 .reason_img img,
    .reason--04 .reason_img img {
        -webkit-border-radius: 0 24px 24px 0;
        border-radius: 0 24px 24px 0;
    }

    .reason--02 .reason_img img,
    .reason--05 .reason_img img {
        -webkit-border-radius: 24px 0 0 24px;
        border-radius: 24px 0 0 24px;
    }
    .reason_img { margin-bottom: 6vw; }

    .reason--01 .reason_img,
    .reason--04 .reason_img {
        margin-right: 6%;
    }
    .reason--02 .reason_img,
    .reason--05 .reason_img{
        margin-left: 6%;
    }

    .reason_num { font-size: 6.372vw; font-weight: var(--font-weight-normal); text-align: left; margin-bottom: 5vw;}
    .reason_num .bar{width: 7.93vw; height: 1.395vw;}
    .reason_title { font-size: 5.442vw; font-weight: var(--font-weight-bold); text-align: left; margin: 0 6% 5vw;}
    .reason_text { font-size: 4.581vw; font-weight: var(--font-weight-regular); text-align: left; margin: 0 6% 6vw; }
    .reason_sub { width: 85%; margin: 0 auto; }

    .monster_head { margin-bottom: 7vw; text-align: left; }
    .monster_title { font-size: 13.884vw; }
    .monster_lead { font-size: 4.581vw; }
    .monster_body { margin-bottom: 0; }
    .monster_img01 { margin-bottom: 7vw; }
    .monster_text { font-size: 4.581vw; margin-bottom: 7vw; }
    .monster_img02 { margin-bottom: 9vw; }
    .monster_btns { flex-direction: column-reverse; align-items: center; gap: 4vw; }
    .monster_btn { width: 72%; padding: 1.1em 1em; font-size: 4vw; border: 1vw solid #655229; }
}

/* ==========================================================================
   PC  (>= 751px)
   ========================================================================== */
@media only screen and (min-width: 751px) {
    /*.max-width-wrapper { max-width: 1600px; margin: 0 auto; }*/

    .sec_mv .u-desktop { display: block; }
    .sec_mv .u-mobile { display: none; }
    .mv_copy {
        left: 50%;
        top: 50%;
        transform: translateY(-50%);
        text-align: left;
    }
    .mv_copy_title { font-size: 2.813vw; }
    .mv_copy_text { font-size: 1.458vw; margin-top: 1.2em; }

    .arrow {
      border-width: 0 0.155vw 0.155vw 0;
      padding: 0.207vw;
      margin: 0.155vw 0.259vw;
    }

    .sec_reasons { padding: 0}
    .reasons_head { margin-bottom: 80px; }
    .reasons_head_en { font-size: 5vw; }
    .reasons_head_en_sub {
        display: inline;
        font-size: 2.083vw;
        margin-top: 0;
        margin-left: 0.8em;
        vertical-align: middle;
        white-space: nowrap;
    }
    .reasons_head_ja { font-size: 2.5vw; }

    /* two-column reason: text column holds body + sub stacked (fixed 50px gap);
       big photo sits in the other column on the same single row, so its height
       never inflates the body-to-sub spacing. */
    .reason {
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        column-gap: 2.917vw;
        align-items: start;
        margin-bottom: 6.25vw;
    }
    .reason_body { padding-top: 6px; }
    .reason_num { font-size: 1.875vw; }
    .reason_title { font-size: 2.5vw; }
    .reason_text { font-size: 1.042vw; }
    .reason_sub { max-width: 520px; margin-top: 2.604vw; }

    /* PC: big images bleed to the content-box edge, rounded only on the inner side */
    .reason--01 .reason_img img,
    .reason--04 .reason_img img {
        -webkit-border-radius: 0 1.25vw 1.25vw 0;
                border-radius: 0 1.25vw 1.25vw 0;
    }
    .reason--02 .reason_img img,
    .reason--05 .reason_img img {
        -webkit-border-radius: 1.25vw 0 0 1.25vw;
                border-radius: 1.25vw 0 0 1.25vw;
    }

    /* image-side column is a touch wider than the text-side, matching the design */
    .reason--01, .reason--04 { grid-template-columns: 1.45fr 0.95fr; padding-right: 6%; }
    .reason--02, .reason--05 { grid-template-columns: 0.95fr 1.45fr; padding-left: 6%;}
    .reason--03 {padding: 0 6%;  row-gap: 45px;}

    /* R01: big image left, text column right */
    .reason--01 .reason_img  { grid-column: 1; grid-row: 1; align-self: start; }
    .reason--01 .reason_textcol { grid-column: 2; grid-row: 1; }

    /* R02: big image right, text column left */
    .reason--02 .reason_img  { grid-column: 2; grid-row: 1; align-self: start; }
    .reason--02 .reason_textcol { grid-column: 1; grid-row: 1; }

    /* R03: full-width image on top, then text (left) + sub photo (right) below */
    .reason--03 .reason_img  { grid-column: 1 / 3; grid-row: 1; max-width: none; justify-self: stretch; }
    .reason--03 .reason_body { grid-column: 1; grid-row: 2; padding-left: 7vw; }
    .reason--03 .reason_sub  { grid-column: 2; grid-row: 2; display: block; max-width: 520px; justify-self: self-start; align-self: start; }

    /* R04: big image left, text column right */
    .reason--04 .reason_img  { grid-column: 1; grid-row: 1; align-self: start; }
    .reason--04 .reason_textcol { grid-column: 2; grid-row: 1; }

    /* R05: big image right, text column left */
    .reason--05 .reason_img  { grid-column: 2; grid-row: 1; align-self: start; }
    .reason--05 .reason_textcol { grid-column: 1; grid-row: 1; }

    .sec_monster { padding: 30px 12% 100px; }
    .monster_title { font-size: 5vw; }
    .monster_lead { font-size: 1.667vw; }
    .monster_head { margin-bottom: 40px; }
    .monster_body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 24px;
        margin-bottom: 0;
    }
    .monster_img01 { grid-column: 1; grid-row: 1; }
    .monster_img02 { grid-column: 2; grid-row: 1; }
    .monster_text { grid-column: 1 / 3; grid-row: 2; margin: 40px auto 50px; font-size: 1.042vw; }
    .monster_btns { gap: 24px; }
    .monster_btn { min-width: 240px; padding: 16px 24px; font-size: 1.25vw; }
}

/* ---- language switch (sidebar_language) under MV ---- */
@media only screen and (max-width: 750px) {
    .sec_mv + .sidebar_language { margin-bottom: 4vw; }
}
@media only screen and (min-width: 751px) {
    .sec_mv + .sidebar_language { margin-bottom: 30px; }
}
