@charset "UTF-8";

@import url("https://use.typekit.net/hit5cpl.css");

/* CSS Document */

*,
 :before,
 :after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    word-wrap: break-word;
    vertical-align: baseline;
    outline: none;
}

html {
    font-size: 62.5%; /* 16px × 62.5% = 10px ⇒ 1rem = 10px */
    scroll-behavior: smooth; /* optional: スムーズスクロール */
}

body {
    min-width: 960px;
    margin: 0;
    padding: 0;
    color: #000000;
    font-size: 16px;
    line-height: 1.8em;
    font-family: "Yu Gothic Pr6N M", "din-2014", English-lato, futura-pt, sans-serif;
    letter-spacing: .02em;
    backface-visibility: hidden;
}

article,
aside,
canvas,
details,
figcaption,
figure,
header,
footer,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

blockquote,
q {
    quotes: none;
}

ul,
ol,
li {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

video {
    width: 100%;
    margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

img,
video,
object {
    display: block;
    height: auto;
    border: none;
}

ins {
    background: none;
    color: #000000;
    text-decoration: none;
}

mark {
    background-color: #ffff99;
    color: #000000;
    font-style: italic;
    font-family: "Yu Gothic Pr6N B";
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

hr {
    display: block;
    height: 1px;
    margin: 1em 0;
    padding: 0;
    border: 0;
    border-top: 1px solid #cccccc;
}

:before,
:after {
    transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
}

a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    transition: all .3s ease;
}

a:hover {
    opacity: .8;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.red {
    color: #bf0000;
}

.en-lower {
    font-family: "sofia-pro-condensed", sans-serif;
}

input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
textarea {
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
}

div.stt-lang-select {
    display: none;
}

@font-face {
    font-family: 'English-lato';
    src: url("../../fonts/lato-v24-latin-regular.woff2") format("woff2");
    font-display: swap;
    unicode-range: U+0020-007E;
}

@font-face {
    font-family: And-roboto;
    src: url("../../fonts/RobotoCondensed-Regular.ttf") format("truetype");
    unicode-range: U+0026;
}

@font-face {
    font-family: 'PangramFont';
    src: url('../../fonts/PPPangramSans-Medium.otf') format('opentype');
}


/* utility.css - レイアウト・余白・テキスト汎用クラス */

/* Margin Utility */
.u-l { margin-right: auto; }
.u-r { margin-left: auto; }
.u-c { margin-left: auto; margin-right: auto; }

/* Text Alignment */
.u-text-l { text-align: left; }
.u-text-c { text-align: center; }
.u-text-r  { text-align: right; }

@media screen and (max-width: 768px) {
    .u-text-sp-left   { text-align: left; }
    .u-text-sp-center { text-align: center; }
    .u-text-sp-right  { text-align: right; }
}

/* フォントファミリー */
.u-font-ja {
  font-family: "Yu Gothic Pr6N", "游ゴシック", YuGothic, sans-serif;
}
.u-font-en {
  font-family: "Bebas Neue", "Futura PT", "Helvetica Neue", sans-serif;
}
.u-font-lato {
  font-family: "English-lato", "Futura PT", "Yu Gothic Pr6N", sans-serif;
}
.u-font-ftr {
  font-family: "futura-pt", "Futura", "Avenir Next", "Lato", sans-serif;
  font-style: normal;
}


/* Display Utility */
.pc {
    display: block;
}
.tab {
    display: none;
}

.tab-pc {
    display: block;
}

.tab-sp {
    display: none;
}
.sp {
    display: none;
}

@media screen and (max-width: 960px) {
    .pc {
        display: none;
    }
    .tab {
        display: block;
    }
    .tab-pc {
        display: block;
    }
    .tab-sp {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .u-fs-lg-sp {
        font-size: 1.125rem;
    }
    .pc {
        display: none;
    }
    .tab {
        display: none;
    }
    .tab-pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

/*=============== logo ===============*/

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/*=============== フェードイン ===============*/

.fadeup {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s ease;
}

.fadeup-sm {
    opacity: 0;
    transform: translateY(0px);
    transition: all 0.8s ease;
}

.fadein-late {
    opacity: 0;
    transition: all 1.5s ease;
    transition-delay: 0s;
}

.fadeup.is-inview,
.fadeup-sm.is-inview,
.fadein-late.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.fadein-late.is-inview {
    transition-delay: 0.8s;
}

.feature__container {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.feature__container.fadein-loaded {
  opacity: 1;
}

/*=== 右から ===*/
.fadein-right {
  opacity: 0;
  transform: translateX(40px);
  filter: blur(5px);
  transition: all 1.4s ease;
}

.fadein-right.is-inview {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

/*=== 左から ===*/
.fadein-left {
  opacity: 0;
  transform: translateX(-40px);
  filter: blur(5px);
  transition: all 1.4s ease;
}

.fadein-left.is-inview {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

/*=== 上から ===*/
.fadein-down {
  opacity: 0;
  transform: translateY(-40px);
  filter: blur(5px);
  transition: all 1.4s ease;
}

.fadein-down.is-inview {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/*=== 下から ===*/
.fadein-up {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(5px);
  transition: all 1.4s ease;
}

.fadein-up.is-inview {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/*=============== フェードイン ===============*/
.js-fade {
  opacity: 0;
  /* transform: translateY(20px); */
  transition: opacity 0.8s ease-in;
}

.js-fade.u-fade-simple {
  transition: opacity 0.2s linear; 
}

.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- ベース --- */
.u-fade-up,
.u-fade-right,
.u-fade-left {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

/* カスタムイージング（キレを出すための魔法の数字） */
:root {
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* 下から */
.u-fade-up {
  transform: translateY(18px);
  transition: 
    opacity 1.8s cubic-bezier(0.215, 0.61, 0.355, 1), 
    transform 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* 右から */
.u-fade-right {
  transform: translateX(18px);
  transition: 
    opacity 1.8s cubic-bezier(0.215, 0.61, 0.355, 1), 
    transform 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* 左から */
.u-fade-left {
  transform: translateX(-18px);
  transition: 
    opacity 1.8s cubic-bezier(0.215, 0.61, 0.355, 1), 
    transform 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* 表示状態 */
.is-visible.u-fade-up,
.is-visible.u-fade-right,
.is-visible.u-fade-left {
  opacity: 1;
  transform: translate(0, 0);
}

/* --- 追加：遅延（delay）用ユーティリティ --- */
.u-delay-02 { transition-delay: 0.2s; }
.u-delay-03 { transition-delay: 0.3s; }
.u-delay-04 { transition-delay: 0.4s; }
.u-delay-06 { transition-delay: 0.6s; }
.u-delay-08 { transition-delay: 0.8s; }
.u-delay-10 { transition-delay: 1.0s; }
.u-delay-12 { transition-delay: 1.2s; }
.u-delay-14 { transition-delay: 1.4s; }


/* 文字一つひとつの基本状態 */
.type-char {
    display: inline-block;
    opacity: 0;
    transform: scale(1);
    transition:
        opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
        transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    /*transition: opacity 0.8s ease-out, transform 0.8s ease-out;*/
}

/* 親に .is-visible がついたら、中の文字が順番に動き出す */
.is-visible .type-char {
    opacity: 1;
    transform: scale(1);
    /*transform: translateX(0);*/
}

/*=============== Sticky ===============*/
.u-sticky-container {
    position: relative;
    width: 100%;
}

.u-sticky-base {
  position: sticky;
  top: 0;
  z-index: 1;
  /*height: 100vh;*/
  width: 100%;
  overflow: hidden;
}

.u-scroll-over {
  position: relative;
  z-index: 2;
  /*padding-top: 70vh;*/
  /*padding-bottom: 30vh;*/
}

/* ==================== 以下スマホ表示 ==================== */

@media screen and (max-width: 768px) {
    body {
        width: 100%;
        min-width: 100%;
        font-size: 3.5vw!important;
    }
    article,
    aside,
    canvas,
    details,
    figcaption,
    figure,
    header,
    footer,
    hgroup,
    main,
    menu,
    nav,
    section,
    summary {
        display: block;
    }
    blockquote,
    q {
        quotes: none;
    }
    ul,
    ol,
    li {
        list-style: none;
    }
    table {
        border-collapse: collapse;
        border-spacing: 0;
    }
    img,
    video,
    object {
        display: block;
        height: auto;
        border: none;
    }
    ins {
        background: none;
        color: #000000;
        text-decoration: none;
    }
    mark {
        background-color: #ffff99;
        color: #000000;
        font-style: italic;
        font-family: "Yu Gothic Pr6N B";
    }
    del {
        text-decoration: line-through;
    }
    abbr[title],
    dfn[title] {
        border-bottom: 1px dotted;
        cursor: help;
    }
    hr {
        display: block;
        height: 1px;
        margin: 1em 0;
        padding: 0;
        border: 0;
        border-top: 1px solid #cccccc;
    }
     :before,
     :after {
        transition: .3s;
        -moz-transition: .3s;
        -o-transition: .3s;
        -webkit-transition: .3s;
    }
    a {
        display: block;
        color: #ffffff;
        text-decoration: none;
        transition: .3s;
        -moz-transition: .3s;
        -o-transition: .3s;
        -webkit-transition: .3s;
    }
    a:hover {
        opacity: 1;
    }
    /*=============== Swiper コンテンツ下のFEATURE===============*/
}