@charset "UTF-8";
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,
center,
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,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    vertical-align: baseline;
}

html {
    font-size: 62.5%;
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: none;
}

* {
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
    padding: 0;
}


/* ==========================================
    base
========================================== */

body {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    color: #040000;
    background-color: #efebf2;
    /* background-color: #fff; */
    font-weight: 400;
    font-size: 17px;
    font-size: 1.7rem;
    font-family: "Noto Serif JP", "Noto Serif", serif, "Hiragino Mincho ProN", YuMincho;
    /* font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', sans-serif; */
    font-style: normal;
    line-height: 2.08;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    hanging-punctuation: allow-end;
    font-feature-settings: "palt";
}

@media screen and (max-width: 767px) {
    body {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

a:link {
    color: #040000;
    text-decoration: none;
}

a:visited {
    color: #040000;
}

a:active {
    color: #040000;
}

a {
    transition: .4s;
}

a:hover {
    opacity: 0.8;
    transition: .4s;
}

img {
    display: block;
}

.portal img {
    width: 100%;
    height: auto;
    border-style: none;
    vertical-align: bottom;
}

.u-only_pc {
    display: block;
}

.u-only_sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .u-only_pc {
        display: none;
    }
    .u-only_sp {
        display: block;
    }
}

.u-lsp {
    letter-spacing: -3px;
}

.u-ff_gc {
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', sans-serif;
}

.u-txta_center {
    text-align: center;
}

.u-txta_right {
    text-align: right;
}

.u-indent p {
    text-indent: 1em;
    text-align: justify;
}


/* ===================== animation ===================== */

.fadeup {
    opacity: 0;
}

.fadeup.is-animated {
    animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeup {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===================== layout ===================== */

.l-cont_xl,
.l-cont_l,
.l-cont_m,
.l-cont_s,
.l-cont_ss {
    width: 90%;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .l-cont_xl,
    .l-cont_l,
    .l-cont_m,
    .l-cont_s,
    .l-cont_ss {
        width: 100%;
        padding: 0 30px;
    }
    .l-cont_xl {
        max-width: 1910px;
    }
    .l-cont_l {
        max-width: 1580px;
    }
    .l-cont_m {
        max-width: 1420px;
    }
    .l-cont_s {
        max-width: 1020px;
    }
    .l-cont_ss {
        max-width: 940px;
    }
}


/* ===================== footer ===================== */

.l-footer {
    padding: 48px 0 120px;
    border-top: 1px solid #251714;
}

@media screen and (max-width: 767px) {
    .l-footer {
        padding: 32px 0 40px;
    }
}

.l-footer_logo {
    width: 32.2%;
    display: block;
}

@media screen and (min-width: 768px) {
    .l-footer_logo {
        max-width: 345px;
    }
}

@media screen and (max-width: 767px) {
    .l-footer_logo {
        width: 64%;
        margin: auto;
    }
}


/* ===================== title ===================== */

.c-ttl_exb {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    color: #fff;
    line-height: 1;
    margin-bottom: 72px;
}

@media screen and (max-width: 767px) {
    .c-ttl_exb {
        display: block;
        color: #fff;
        line-height: 1;
        margin-bottom: 40px;
        text-align: center;
    }
}

.c-ttl_exb-en {
    margin-right: 54px;
    font-size: 28px;
    font-size: 2.8rem;
}

.c-ttl_exb-en .-txt {
    padding: 0 20px 25px;
    position: relative;
    display: inline-block;
}

.c-ttl_exb-en .-txt::before {
    background: #e3a700;
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 1s;
}

.is-animated .c-ttl_exb-en .-txt::before {
    transform-origin: center top;
    transform: scale(1, 1);
}

@media screen and (max-width: 767px) {
    .c-ttl_exb-en {
        margin-right: 0;
        font-size: 15px;
        font-size: 1.5rem;
        margin-bottom: 14px;
    }
    .c-ttl_exb-en .-txt {
        padding: 0 10px 12px;
    }
}

.c-ttl_exb-jp {
    font-size: 71px;
    font-size: 7.1rem;
}

@media screen and (max-width: 767px) {
    .c-ttl_exb-jp {
        font-size: 30px;
        font-size: 3.0rem;
    }
}

.c-ttl_block {
    font-size: 35px;
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.4;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', sans-serif;
}

@media screen and (max-width: 767px) {
    .c-ttl_block {
        font-size: 16px;
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
}

.c-ttl_main {
    position: relative;
    z-index: 0;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #231815;
    font-weight: 700;
    font-size: 50px;
    font-size: 5.0rem;
    text-align: center;
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
    .c-ttl_main .u-only_sp {
        display: block !important;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl_main {
        font-size: 4.8vw;
        margin-bottom: 20px;
    }
}


/* ===================== txt ===================== */

.c-txt_caption {
    line-height: 1.75;
    margin-top: 10px;
    color: #0f3675;
    font-size: 16px;
    font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
    .c-txt_caption {
        font-size: 13px;
        font-size: 1.3rem;
    }
}


/* ===================== slider ===================== */

@media screen and (min-width: 768px) {
    .c-interview {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
}

.c-interview_name {
    font-weight: 700;
    font-size: 18px;
    font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
    .c-interview_name {
        font-size: 15px;
        font-size: 1.5rem;
    }
}


/* vol4 end */

.c-interview_txt .-indent {
    text-indent: 1em;
}

.c-interview_txt .-last {
    margin-top: 1.5em;
}

.c-interview_side p {
    line-height: 1.67;
    font-size: 15px;
    font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
    .c-interview_side {
        width: 80%;
        margin: 30px auto 0;
    }
    .c-interview_side p {
        font-size: 12px;
        font-size: 1.2rem;
    }
}


/* ===================== slider ===================== */

@media screen and (max-width: 767px) {
    .c-slider_common .slick-list {
        width: 93%;
        margin: 0 auto;
    }
}

.c-slider_common .slick-arrow {
    width: 29px;
    height: 48px;
    background-position: left top;
    background-size: contain;
    background-repeat: no-repeat;
    text-indent: -9999px;
}

@media screen and (max-width: 767px) {
    .c-slider_common .slick-arrow {
        width: 15px;
        height: 25px;
    }
}

.c-slider_common .slick-arrow::before {
    display: none;
}

.c-slider_common .slick-arrow:hover {
    opacity: 0.8;
}

.c-slider_common .slick-prev {
    left: -100px;
    background-image: url(../img/ico_prev.svg) !important;
    z-index: 10;
}

@media screen and (max-width: 1240px) {
    .c-slider_common .slick-prev {
        left: -4vw;
    }
}

@media screen and (max-width: 767px) {
    .c-slider_common .slick-prev {
        left: -3.5%;
    }
}

.c-slider_common .slick-prev:hover {
    opacity: 0.8;
}

.c-slider_common .slick-next:hover {
    background-image: url(../img/ico_next.svg) !important;
}

.c-slider_common .slick-next {
    right: -100px;
    background-image: url(../img/ico_next.svg);
    z-index: 10;
}

@media screen and (max-width: 1240px) {
    .c-slider_common .slick-next {
        right: -4vw;
    }
}

@media screen and (max-width: 767px) {
    .c-slider_common .slick-next {
        right: -3.5%;
    }
}

.p-index_sec03_slidenote {
    padding-top: 10px;
}

.p-index_sec03_slidenote h4 {
    padding: 0 45px;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.5;
    margin-top: 13px;
    margin-bottom: 10px;
}

.p-index_sec03_slidenote p {
    line-height: 2;
    padding: 0 45px;
    font-size: 16px;
    font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
    .p-index_sec03_slidenote h4 {
        padding: 0;
        font-size: 15px;
        font-size: 1.5rem;
        margin-top: 10px;
        margin-bottom: 8px;
        /* display: none; */
    }
    .p-index_sec03_slidenote p {
        font-size: 13px;
        font-size: 1.3rem;
        padding: 0;
        /* display: none; */
    }
}


/* ===================== button ===================== */


/* .c-btn_more {
    display: inline-block;
    margin-left: 0.5em;
}

.c-btn_more a {
    display: block;
    height: 21px;
    line-height: 19px;
    padding: 0 8px;
    color: #0f3675;
    border: 1px solid #0f3675;
    font-size: 16px;
    font-size: 1.6rem;
    transition: .4s;
}

@media screen and (max-width: 767px) {
    .c-btn_more a {
        font-size: 13px;
        font-size: 1.3rem;
        height: 25px;
        line-height: 24px;
        padding: 0 8px;
    }
}

.c-btn_more a:hover {
    transition: .4s;
    background-color: #0f3675;
    color: #fff;
} */

.c-btn_center {
    width: 33.29%;
    min-width: 300px;
    max-width: 616px;
    margin: 20px auto 0;
}

@media screen and (max-width: 767px) {
    .c-btn_center {
        width: 100%;
        margin: 15px auto 0;
    }
}

.c-btn_center a {
    display: block;
    line-height: 1;
    background-color: #595757;
    border: 1px solid #595757;
    color: #fff;
    text-align: center;
    transition: .4s;
}

@media screen and (max-width: 767px) {
    .c-btn_center a {
        padding: 6px 0;
    }
}

.c-btn_center a span {
    display: inline-block;
    padding: 5px 48px 5px 0;
    background-image: url(../img/ico_arw.svg);
    background-position: right center;
    background-size: 21px 22px;
    background-repeat: no-repeat;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', sans-serif;
    font-weight: 700;
    font-size: 18px;
    font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
    .c-btn_center a span {
        padding: 5px 30px 5px 0;
        font-size: 13px;
        font-size: 1.3rem;
    }
}

.c-btn_center a:hover {
    background-color: #fff;
    color: #595757;
    transition: .4s;
}

.c-btn_center a:hover span {
    background-image: url(../img/ico_arw_g.svg);
}

.c-txt_base p {
    text-indent: 1em;
}

.c-txt_base p+p {
    margin-top: 1em;
}

.c-txt_lnote {
    color: #727171;
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

@media screen and (max-width: 767px) {
    .c-txt_lnote {
        font-size: 14px;
        font-size: 1.4rem;
        margin-bottom: 16px;
    }
}


/* ===================== index ===================== */


/* フローティングバナー */

.l-header_bnr {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    background-color: #1d1f1e;
    color: #fff;
    height: 80px;
    transform: translateY(-80px);
    transition: all .4s;
    padding: 0 2vw;
    box-shadow: 0px 1px 5px 2px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 768px) {
    .l-header_bnr {
        position: relative;
        transform: unset;
    }
}

@media screen and (min-width: 1560px) {
    .l-header_bnr {
        height: 100px;
        /* transform: translateY(-100px); */
    }
}

@media screen and (max-width: 767px) {
    .l-header_bnr {
        height: 60px;
        transform: translateY(-60px);
        padding: 0 0 0 5%;
    }
}

.l-header_bnr.is-scroll {
    position: fixed;
    /* transform: translateY(0); */
}

@media screen and (max-width: 767px) {
    .l-header_bnr.is-scroll {
        transform: translateY(0);
    }
}

.l-header_bnr_inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    height: 100%;
}

.l-header_bnr_logo {
    width: 16.3%;
    max-width: 388px;
    display: block;
    margin-right: 7.6vw;
    padding-bottom: 15px;
}

.l-header_bnr_btn {
    display: none;
}

.l-header_bnr_menu ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    font-size: 1.15vw;
}

.l-header_bnr_menu ul li {
    color: #fff;
    margin-left: 1.4vw;
}

.l-header_bnr_menu ul li a {
    color: #fff;
    line-height: 1.3;
    padding-bottom: 26px;
    display: inline-block;
    position: relative;
}

.l-header_bnr_menu ul li a::before {
    background: #e3a700;
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .3s;
}

.l-header_bnr_menu ul li a:hover {
    opacity: 1;
}

.l-header_bnr_menu ul li a:hover::before {
    transform-origin: center top;
    transform: scale(1, 1);
}

@media screen and (max-width: 767px) {
    .l-header_bnr_inner {
        justify-content: space-between;
        align-items: center;
    }
    .l-header_bnr_logo {
        max-width: unset;
        width: 40%;
        padding-bottom: 0;
        margin-right: 0;
    }
    .l-header_bnr_btn {
        display: block;
        width: 60px;
        height: 60px;
        position: relative;
        z-index: 9999;
    }
    .l-header_bnr_btn span {
        display: inline-block;
        position: absolute;
        width: 26px;
        height: 1px;
        background-color: #fff;
        left: 50%;
        margin-left: -13px;
        transition: .3s;
    }
    .l-header_bnr_btn span:nth-child(2) {
        top: 29px;
    }
    .l-header_bnr_btn span:nth-child(1) {
        top: 21px;
    }
    .l-header_bnr_btn span:nth-child(3) {
        top: 37px;
    }
    .l-header_bnr_btn.active span {
        width: 30px;
        margin-left: -15px;
    }
    .l-header_bnr_btn.active span:nth-child(2) {
        display: none;
    }
    .l-header_bnr_btn.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 29px;
    }
    .l-header_bnr_btn.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 29px;
    }
    .l-header_bnr_menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 1000;
        background-color: #1d1f1e;
        padding: 30px 5%;
        text-align: center;
        transform: translateX(100%);
        transition: .3s;
    }
    .l-header_bnr_menu.open {
        transform: translateX(0);
        transition: .2s;
    }
    .l-header_bnr_menu ul {
        display: block;
        font-size: 15px;
        font-size: 1.5rem;
    }
    .l-header_bnr_menu ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }
    .l-header_bnr_menu ul li a {
        color: #fff;
        line-height: 1.3;
        padding: 16px 0 26px;
        display: block;
        text-align: center;
        border-bottom: 1px solid #e3a700;
    }
}


/* header */

.l-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 46px 5%;
}

@media screen and (max-width: 767px) {
    .l-header {
        padding: 12px 5%;
    }
}

.l-header_inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.l-header .l-header_logo {
    width: 11.2vw;
    max-width: 180px;
    display: block;
}

.l-header .l-header_seiko {
    width: 8.17vw;
    max-width: 130px;
    display: block;
}

.p-index_mv {
    background-color: #000;
}

.p-index_mv_head {
    position: relative;
}

@media screen and (max-width: 767px) {
    .p-index_mv {}
}

.p-index_mv_img_ttl {
    position: absolute;
    z-index: 0;
    top: 40.54%;
    left: 8.07%;
    width: 46.17%;
    max-width: 852px;
    animation: fadeOut1 0.8s 5s forwards, fadeIn1 0.8s 23s forwards;
}

@media screen and (min-width: 1561px) {
    .p-index_mv_img_ttl {
        max-width: 500px;
    }
}

@media screen and (max-width: 1560px) and (min-width: 1441px) {
    .p-index_mv_img_ttl {
        max-width: 380px;
    }
}

@media screen and (max-width: 1440px) and (min-width: 1001px) {
    .p-index_mv_img_ttl {
        max-width: 350px;
    }
}

@media screen and (max-width: 1000px) and (min-width: 767px) {
    .p-index_mv_img_ttl {
        max-width: 290px;
    }
}

@media screen and (max-width: 767px) {
    .p-index_mv_img_ttl {
        top: 40.54%;
        left: 6%;
        width: 31vw;
    }
}

.p-index_mv_img_ttl .-img {
    animation-duration: .8s;
    animation-delay: .8s;
    /* animation-fill-mode: forwards;
    animation-name: fadeIn1;
    opacity: 0; */
    margin-bottom: 9.36%;
    width: 100%;
}

.p-index_mv_img_ttl .-txt {
    animation-duration: 1.2s;
    animation-delay: 1.2s;
    animation-fill-mode: forwards;
    animation-name: fadeIn2;
    opacity: 0;
    width: 66.19%;
    margin: auto;
}

@keyframes fadeOut1 {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeIn1 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn2 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.p-index_mv_img {}

@media screen and (max-width: 767px) {
    .p-index_mv_img {}
}

.p-index_mv_img_cont {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    aspect-ratio: 192 / 108;
    overflow: hidden;
    max-height: 100vh;
}

@media screen and (max-width: 1560px) and (min-width: 767px) {
    .p-index_mv_img_cont {
        max-height: unset;
        height: auto;
    }
}

.p-index_mv_img_cont video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: auto;
}

.p-index_mv_img_cont video.u-only_pc {
    display: block;
}

.p-index_mv_img_cont video.u-only_sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .p-index_mv_img_cont video.u-only_pc {
        display: none;
    }
    .p-index_mv_img_cont video.u-only_sp {
        display: block;
    }
}

.p-index_mv_btm {
    color: #fff;
    padding-bottom: 112px;
}

@media screen and (max-width: 767px) {
    .p-index_mv_btm {
        padding-bottom: 56px;
    }
}

.p-index_mv_btm_img {
    width: 89.97%;
    max-width: 1660px;
    margin: auto;
    padding: 20px 0 45px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .p-index_mv_btm_img .fadeup {
        opacity: 1;
        animation: unset;
    }
}

.p-index_mv_btm_img .-img {
    width: 49.4%;
    margin-right: 1.2%;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .p-index_mv_btm_img {
        width: 94%;
        margin: auto;
        padding: 3vw 0 32px;
    }
    .p-index_mv_btm_img .-img {
        width: 49.4%;
        margin-right: 1.2%;
        margin-bottom: 4px;
    }
}

.p-index_mv_btm_img .-img:nth-child(2n) {
    margin-right: 0;
}

@media screen and (max-width: 767px) {
    .p-index_mv_btm_cont {
        width: 90%;
        margin: auto;
    }
}

.p-index_mv_btm_cont p {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .is-sp {
        display: none;
    }
}


/* sec01 */

.p-index_sec01 {
    padding: 72px 0 124px;
}

@media screen and (max-width: 767px) {
    .p-index_sec01 {
        padding: 40px 0 64px;
    }
}

.p-index_sec01 .c-txt_base {
    margin-top: 24px;
    margin-bottom: 88px;
}

@media screen and (max-width: 767px) {
    .p-index_sec01 .c-txt_base {
        margin-top: 16px;
        margin-bottom: 40px;
    }
    .p-index_sec01 .c-txt_base .l-cont_ss {
        width: 100%;
    }
}

.p-index_sec01_mov {
    margin-bottom: 112px;
}

@media screen and (max-width: 767px) {
    .p-index_sec01_mov {
        margin-bottom: 56px;
    }
}

.p-index_sec01_mov a {
    display: block;
}

.p-index_sec01_cont {
    margin-top: 50px;
}

@media screen and (max-width: 767px) {
    .p-index_sec01_cont {
        margin-top: 24px;
    }
}

.p-index_sec01_cont_row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 54px;
}

@media screen and (max-width: 767px) {
    .p-index_sec01_cont_row {
        display: block;
        margin-bottom: 32px;
    }
}

.p-index_sec01_cont_txt {
    width: 50%;
    text-align: justify;
}

@media screen and (max-width: 767px) {
    .p-index_sec01_cont_txt {
        width: 100%;
    }
}

.p-index_sec01_cont_txt .-block {
    margin-bottom: 36px;
}

@media screen and (max-width: 767px) {
    .p-index_sec01_cont_txt .-block {
        margin-bottom: 20px;
    }
}

.p-index_sec01_cont_txt .-block:last-child {
    margin-bottom: 0;
}

.p-index_sec01_cont_img {
    width: 43.38%;
    font-size: 15px;
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.5;
    padding-top: 10px;
}

@media screen and (max-width: 767px) {
    .p-index_sec01_cont_img {
        width: 100%;
        font-size: 12px;
        font-size: 1.2rem;
        padding-top: 16px;
    }
}

.p-index_sec01_cont_img .-item {
    margin-bottom: 10px;
}

.p-index_sec01_cont_img .-item p {
    margin-top: 6px;
}

.p-index_sec01_cont_img .-row .-row_item {
    margin-bottom: 18px;
}

.p-index_sec01_cont_img .-row .-row_item:last-child {
    margin: 0;
}

.p-index_sec01_cont_btm {
    padding: 0 45px 64px;
}

@media screen and (max-width: 767px) {
    .p-index_sec01_cont_btm {
        padding: 0 0 40px;
    }
}


/* sec02 */

.p-index_sec02 {
    padding: 72px 0 75px;
    background-color: #faf9f7;
}

@media screen and (max-width: 767px) {
    .p-index_sec02 {
        padding: 40px 0 48px;
        background-color: #faf9f7;
    }
}

.p-index_sec02_what {
    /* margin-bottom: 50px; */
    display: block;
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .p-index_sec02_what {
        /* margin-bottom: 28px; */
    }
}

.p-index_sec02_what a {
    display: block;
}

.p-index_sec02_txt {
    margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
    .p-index_sec02_txt {
        margin-bottom: 32px;
    }
}


/* sec03 */

.p-index_sec03 {
    padding: 72px 0 120px;
}

@media screen and (max-width: 767px) {
    .p-index_sec03 {
        padding: 40px 0 56px;
    }
}


/* .p-index_sec03 .slick-prev,
.p-index_sec03 .slick-next {
    top: 30%;
}

@media screen and (max-width: 767px) {
    .p-index_sec03 .slick-prev,
    .p-index_sec03 .slick-next {
        top: 96px;
    }
} */


/* sec04 */

.p-index_sec04 {
    padding: 72px 0 85px;
    background-color: #000;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .p-index_sec04 {
        padding: 40px 0 35px;
    }
}

.c-ttl_sec04 {
    text-align: center;
    line-height: 1.6;
    font-size: 43px;
    font-size: 4.3rem;
    margin-bottom: 64px;
}

@media screen and (max-width: 767px) {
    .c-ttl_sec04 {
        font-size: 22px;
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
}

.c-ttl_sec04_m {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1.4;
    margin-bottom: 22px;
}

@media screen and (max-width: 767px) {
    .c-ttl_sec04_m {
        font-size: 16px;
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
}

.p-index_sec04_img {
    margin-bottom: 40px;
}

.p-index_sec04_img .-img {
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    .p-index_sec04_img {
        margin-bottom: 30px;
    }
    .p-index_sec04_img .-img {
        margin-bottom: 10px;
    }
}

.p-index_sec04_cont_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .p-index_sec04_cont_row {
        display: block;
    }
}

.p-index_sec04_cont_row .p-index_sec04_cont_txt {
    width: 58.5%;
}

.p-index_sec04_cont_row .p-index_sec04_cont_img {
    width: 36.36%;
}

@media screen and (max-width: 767px) {
    .p-index_sec04_cont_row .p-index_sec04_cont_txt,
    .p-index_sec04_cont_row .p-index_sec04_cont_img {
        width: 100%;
    }
    .p-index_sec04_cont_img {
        margin-top: 20px;
    }
    .p-index_sec04_cont_img .u-txta_right {
        font-size: 12px;
        font-size: 1.2rem;
    }
}

.p-index_sec04_cont_row .p-index_sec04_cont_img p {
    font-size: 14px;
    margin-top: 5px;
}

@media screen and (max-width: 767px) {
    .p-index_sec04_cont_row .p-index_sec04_cont_img p {
        font-size: 12px;
        margin-top: 5px;
    }
}

.p-index_sec04_cont_block:last-child {
    margin-top: 38px;
}

.p-index_sec04_slid {
    margin-top: 60px;
}

@media screen and (max-width: 767px) {
    .p-index_sec04_cont_block:last-child {
        margin-top: 20px;
    }
    .p-index_sec04_slid {
        margin-top: 32px;
    }
}


/* lineup */

.p-index_lineup {
    padding: 100px 0 148px;
}

@media screen and (max-width: 767px) {
    .p-index_lineup {
        padding: 56px 0 72px;
    }
}

.c-ttl_lineup {
    text-align: center;
    font-size: 30px;
    font-size: 3.0rem;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .c-ttl_lineup {
        text-align: center;
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.6;
    }
}

.p-index_lineup_list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
}

.p-index_lineup_item {
    width: 23.68%;
    margin-right: 1.75%;
    margin-top: 8vw;
}

@media screen and (min-width: 768px) {
    .p-index_lineup_item:nth-last-child(-n+3) {
        margin-top: 20vw;
    }
}

@media screen and (max-width: 767px) {
    .p-index_lineup_item {
        width: 48.5%;
        margin-right: 3%;
        margin-top: 16vw;
    }
}

.p-index_lineup_item_inner {
    display: block;
}

.p-index_lineup_item_inner .-img {
    /* padding: 0 10%; */
    padding: 0 15%;
}

@media screen and (min-width: 768px) {
    .p-index_lineup_item:nth-child(4),
    .p-index_lineup_item:last-child {
        margin-right: 0;
    }
}

@media screen and (max-width: 767px) {
    .p-index_lineup_item:nth-child(2n) {
        margin-right: 0;
    }
}

.p-index_lineup_item .-cont {
    position: relative;
    z-index: 10;
    margin-top: -5.4vw;
    text-align: center;
    color: #857c68;
    word-break: break-all;
    line-height: 1.1;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-end;
}

@media screen and (max-width: 767px) {
    .p-index_lineup_item .-cont {
        display: block;
    }
}

.p-index_lineup_item .-ico {
    width: 31.6%;
    margin-left: 3.3%;
}

@media screen and (max-width: 767px) {
    .p-index_lineup_item .-ico {
        width: 34%;
        margin-left: 0;
        position: absolute;
        bottom: 100%;
        right: -7%;
    }
}

.p-index_lineup_item .-txt {
    width: 51.9%;
    padding-top: 16px;
}

@media screen and (max-width: 767px) {
    .p-index_lineup_item .-txt {
        width: 100%;
        padding-top: 0;
    }
}

.p-index_lineup_item_name {
    font-weight: 600;
    font-size: 29px;
    font-size: 2.9rem;
}

@media screen and (max-width: 767px) {
    .p-index_lineup_item_name {
        font-size: 20px;
        font-size: 2.0rem;
    }
}

.p-index_lineup_item_spec {
    font-weight: 600;
    font-size: 15px;
    font-size: 1.5rem;
    margin-top: 13px;
}

@media screen and (max-width: 767px) {
    .p-index_lineup_item_spec {
        font-size: 13px;
        font-size: 1.3rem;
        margin-top: 8px;
    }
}

.p-index_lineup_item_price {
    font-weight: 600;
    font-size: 15px;
    font-size: 1.5rem;
    margin-top: 8px;
}

@media screen and (max-width: 767px) {
    .p-index_lineup_item_price {
        font-size: 14px;
        font-size: 1.4rem;
        margin-top: 5px;
    }
}

.p-index_lineup_item_link {
    margin-top: 16px;
    font-weight: bold;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
    .p-index_lineup_item_link {
        margin-top: 16px;
        font-size: 13px;
        font-size: 1.3rem;
    }
}

.p-index_lineup_link {
    margin-top: 140px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .p-index_lineup_link {
        margin-top: 72px;
    }
}

.p-index_lineup_link_ttl {
    font-size: 16px;
    font-size: 1.6rem;
}


/* ==========================================
    セイコー用 フッター
========================================== */


/* PC */


/* .Header_header__CgYcE {
    position: fixed;
    width: 100%;
    height: 90px;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding: 30px;
    background-color: #1a1a1a;
    z-index: 11;
}

@media screen and (max-width: 991px) {
    .Header_header__CgYcE {
        position: fixed;
        height: 60px;
        padding: 20px;
    }
}

.Header_header__logo__5O4yb {
    width: 226px;
}

@media screen and (max-width: 991px) {
    .Header_header__logo__5O4yb {
        width: 128px;
    }
}

.Header_header__right__zRxRw {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

.Header_header__seiko__aDEzY {
    width: 88px;
    margin: 0;
}

@media screen and (max-width: 991px) {
    .Header_header__seiko__aDEzY {
        width: 63px;
        margin: 0 32px 0 0;
    }
}

.Header_header__seiko__aDEzY img {
    width: 100%;
}

.Header_header__menu__f7jB6 {
    width: 46px;
    margin: 0 0 5px;
}

.Header_header__menu__f7jB6 a {
    display: block;
    width: 100%;
    font-family: Roboto Flex, sans-serif;
    text-align: center;
    color: #f3f3f3;
}

.Header_header__menu-text__Mkfy_ {
    position: relative;
    padding: 0 0 3px;
    font-size: 12px;
    font-weight: 200;
    text-align: center;
    letter-spacing: .04em;
    transform: scale(1.15, .85);
    overflow: hidden;
}

.Header_header__menu-text__Mkfy_ span {
    display: block;
}

.Header_header__menu-text__Mkfy_ span:nth-child(2) {
    position: absolute;
    top: 0;
    left: 1px;
}

.Header_header__menu-lines__9SC8n {
    position: relative;
    overflow: hidden;
}

.Header_header__menu-track__6GvFr {
    position: relative;
    overflow: hidden;
    height: 1px;
    transform-origin: right;
}

.Header_header__menu-track__6GvFr span {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #f3f3f3;
    animation-timing-function: ease-out;
}

.Header_header__menu-track__6GvFr:first-child span {
    animation-duration: .5s;
    animation-delay: 0ms;
}

.Header_header__menu-track__6GvFr span:nth-child(2) {
    transform: translateX(-66%);
}

.Header_header__menu-track__6GvFr+.Header_header__menu-track__6GvFr {
    margin: 5px 0 0;
} */


/* SP */


/* @media screen and (max-width: 767px) {
    .Header_header__CgYcE {
        height: 60px;
        padding: 20px;
    }
    .Header_header__logo__5O4yb {
        width: 128px;
    }
    .Header_header__seiko__aDEzY {
        width: 63px;
        margin: 0 32px 0 0;
    }
    .Header_header__menu__f7jB6 {
        width: 46px;
        margin: 0 0 5px;
    }
} */


/* ==========================================
    セイコー用 フッター
========================================== */


/* PC */


/* .Footer_footer__bottom__Wmfky {
    position: relative;
    background: #000;
    width: 100%;
    height: auto;
}

.Footer_foot_r__yuL76 {
    float: right;
    padding-top: 58px;
    margin: 0 35px 0 0;
}

.Footer_globalFooter-sns__aG0DG {
    margin-top: 0;
}

.Footer_globalFooter-sns__aG0DG>.Footer__list__TJ0Dw {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.Footer_globalFooter-sns__aG0DG>.Footer__list__TJ0Dw>.Footer__item__sO85L {
    margin-left: 4px;
}

.Footer_globalFooter-sns__aG0DG>.Footer__list__TJ0Dw>.Footer__item__sO85L>.Footer__link__fNrW9 {
    display: block;
    text-decoration: none;
    line-height: 1;
    transition: .2s ease;
}

.Footer_globalFooter-sns__aG0DG>.Footer__list__TJ0Dw>.Footer__item__sO85L>.Footer__link__fNrW9>.Footer__image__iuZUX {
    height: 36px;
    width: auto;
}

.Footer_foot_l__k9uzn {
    float: left;
    margin: 59px 0 0 40px;
}

.Footer_foot_l__k9uzn .Footer_foot_logo__wSuDk {
    float: left;
    line-height: 1;
    margin-bottom: 53px;
}

.Footer_foot_l__k9uzn .Footer_copyright__qHv0K {
    float: left;
    margin: 13px 0 0 32px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 1px;
    color: #fff;
    font-family: Noto Sans JP, sans-serif;
    font-weight: 400;
}

.Footer_footer__bottom__Wmfky::after {
    content: " ";
    display: block;
    clear: both;
}

.Footer_foot_l__k9uzn .Footer_foot_logo__wSuDk img {
    width: 131px;
    transition: .2s;
} */


/* SP */


/* @media screen and (max-width: 767px) {
    .Footer_foot_r__yuL76 {
        float: none;
        padding-top: 40px;
        margin: 0;
    }
    .Footer_globalFooter-sns__aG0DG>.Footer__list__TJ0Dw {
        justify-content: center;
    }
    .Footer_foot_l__k9uzn {
        float: none;
        margin: 39px 0 0;
        text-align: center;
    }
    .Footer_foot_l__k9uzn .Footer_foot_logo__wSuDk {
        float: none;
        line-height: 1;
        margin-bottom: 23px;
    }
    .Footer_foot_l__k9uzn .Footer_copyright__qHv0K {
        float: none;
        margin: 13px 0 0;
        padding-bottom: 30px;
        font-size: 12px;
        line-height: 1;
        color: #fff;
    }
    .Footer_foot_l__k9uzn .Footer_foot_logo__wSuDk img {
        margin: auto;
    }
} */


/* ==========================================
    フローティング  id="l-wrap" に class="-seiko"追加
========================================== */

.-seiko .p-index_products_bnr.-in {
    display: none;
    margin-bottom: 0;
    padding: 15px;
    background-color: rgba(128, 128, 128, .8);
}

@media screen and (max-width: 767px) {
    .-seiko .p-index_products_bnr.-in {
        padding: 10px;
    }
}

@media screen and (max-width: 767px) {
    .-seiko .p-index_products_bnr.-in li {
        margin-bottom: 8px;
    }
    .-seiko .p-index_products_bnr.-in li:last-child {
        margin-bottom: 0;
    }
}

.-seiko .p-index_products_bnr.-in li a {
    position: relative;
    transition: .4s;
    display: block;
}

.-seiko .p-index_products_bnr.-in li a:hover {
    opacity: 1;
    transition: .4s;
}

.-seiko .p-index_products_bnr.-in li a:hover::before {
    content: "";
    display: block;
    background-color: rgba(255, 255, 255, .6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.-seiko .p-index_products_bnr .btm {
    display: block;
}

.-seiko .p-index_products_bnr .float {
    display: none;
}

.-seiko .p-index_products_bnr.-in .btm {
    display: none;
}

.-seiko .p-index_products_bnr.-in .float {
    display: block;
}


/* モーダル */


/* モーダルと背景の指定 */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
    z-index: -1;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .modal {
        /* height: auto; */
    }
}


/* モーダルの擬似要素の指定 */

@media screen and (min-width: 768px) {
    .modal:before {
        content: "";
        display: inline-block;
        vertical-align: middle;
        height: 100%;
        margin-left: -0.2em;
    }
}


/* クラスが追加された時の指定 */

.modal.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 100;
}


/* モーダル内側の指定 */

.modal-container {
    position: relative;
    display: inline-block;
    margin-top: 120px;
}

@media screen and (max-width: 767px) {
    .modal-container {
        margin-top: 40px;
    }
}


/* モーダルを閉じるボタンの指定 */

.modal-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    color: #fff;
    background: #1d1f1e;
    border-radius: 50%;
    cursor: pointer;
}


/* モーダルのコンテンツ部分の指定 */

.modal-content {
    background: #fff;
    padding-top: 40px;
    padding-bottom: 60px;
}

@media screen and (max-width: 767px) {
    .modal-content {
        width: 100%;
        padding: 20px 5%;
    }
}


/* -----------------------------------
　　　　　　　　　　　　　　　　　　　　　　　　　　　　portal
------------------------------------*/

.p-portal_mv {
    /* background-color: #000; */
}

.p-portal_mv .l-header {
    padding: 2vw 2vw 0;
}

@media screen and (min-width: 1600px) {
    .p-portal_mv .l-header {
        padding: 32px 32px 0;
    }
}

@media screen and (max-width: 767px) {
    .p-portal_mv .l-header {
        padding: 3.3vw 2vw 0 3.3vw;
    }
    .p-portal_mv .l-header_logo {
        width: 28vw;
    }
    .p-portal_mv .l-header_seiko {
        width: 20vw;
    }
}

.p-portal_mv_head {
    position: relative;
}

.p-portal_mv_head .l-header {
    z-index: 100;
}

.p-portal_mv_img {
    height: 100vh;
}

.p-portal_mv_img_ttl {
    position: absolute;
    z-index: 0;
    top: 15.2vh;
    left: 50%;
    width: 29vw;
    transform: translateX(-50%);
    z-index: 10;
}

@media screen and (max-width: 767px) {
    .p-portal_mv_img_ttl {
        /* top: 49.2vw; */
        left: 50%;
        width: 78.2667vw;
    }
}

.p-portal_mv_img_ttl .-img {
    animation-duration: .8s;
    animation-delay: .8s;
    margin-bottom: 9.36%;
    width: 100%;
}

.p-portal_mv_img_ttl .-txt {
    animation-duration: 1.2s;
    animation-delay: 1.2s;
    width: 66.19%;
    margin: auto;
}

.p-portal_mv_img_txt {
    /* position: absolute;
    z-index: 0; */
    /* bottom: 14vh; */
    /* bottom: 4.5vw; */
    /* bottom: 2vh; */
    /* bottom: 2.8vh;
    left: 50%;
    transform: translateX(-50%); */
    color: #231815;
    width: 100%;
    z-index: 10;
}

@media screen and (max-width: 767px) {
    .p-portal_mv_img_txt {
        bottom: unset;
        top: 72vw;
        left: 50%;
        transform: translateX(-50%);
        color: #231815;
        width: 85.333vw;
    }
}

.p-portal_mv_sub_ttl {
    /* font-size: 2vw; */
    font-size: 28px;
    text-align: center;
    line-height: 1.2;
    font-weight: 600;
    /* margin-bottom: 1.9333vw; */
    margin-bottom: 2.5vw;
    opacity: 0;
    animation: fadeInP1 0.8s 1s forwards;
}

@media screen and (min-width: 768px) {
    .en .p-portal_mv_sub_ttl {
        font-size: 25px;
    }
}

@media screen and (max-width: 767px) {
    .p-portal_mv_sub_ttl {
        font-size: 6.1333vw;
        margin-bottom: 5.0667vw;
        animation: fadeInP1 0.8s 0.3s forwards;
    }
}

.p-portal_mv_sub_txt {
    text-align: center;
    line-height: 1.9;
    /* font-size: 1.2vw; */
    font-size: 14px;
    opacity: 0;
    /* animation: fadeInP1 0.8s 1.4s forwards; */
}


/* @media screen and (max-width: 1680px) {
    .p-portal_mv_sub_txt {
        font-size: 14px;
    }
} */

@media screen and (max-width: 767px) {
    .p-portal_mv_sub_txt {
        font-size: 3.2vw;
    }
}

.p-portal_mv_sub_txt p {
    text-align: center;
}

@media screen and (max-width: 767px) {
    .p-portal_mv_sub_txt p {
        text-align: justify;
    }
}

.p-portal_mv_bnr {
    display: inline-flex;
    /* align-items: flex-end; */
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 1.2;
    /* margin-top: 4.1667vw; */
    /* margin-top: 2.6667vh; */
    margin-top: 2.6vw;
    opacity: 0;
    /* animation: fadeInP1 1.2s 1.8s forwards; */
    cursor: pointer;
    transition: .4s;
    position: relative;
}

.p-portal_mv_bnr:not(:first-child) {
    margin-top: 1.6vw;
}

.p-portal_mv_bnr:hover {
    opacity: 0;
}

.p-portal_mv_bnr.is-animated:hover {
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .p-portal_mv_bnr:not(:first-child) {
        margin-top: 5.54vw;
    }
}

.p-portal_mv_bnr_wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}


/* 第四回 */

.en .p-portal_mv_bnr.-ex04 .p-portal_mv_bnr_txt {
    padding-bottom: 0;
}

@media screen and (max-width: 767px) {
    .p-portal_mv_bnr.-ex04 .p-portal_mv_bnr_txt {
        padding-bottom: 0;
    }
}

.p-portal_mv_bnr:hover .p-portal_mv_bnr_img,
.p-portal_mv_bnr:hover .p-portal_mv_bnr_txt {
    opacity: .8;
    transition: .4s;
}

@media screen and (max-width: 767px) {
    .p-portal_mv_bnr {
        margin-top: 8.8vw;
    }
}

.p-portal_mv_bnr_img {
    width: 13.2667vw;
    /* margin-right: .8667vw; */
    margin-right: 16px;
    transition: .4s;
}

@media screen and (max-width: 767px) {
    .p-portal_mv_bnr_img {
        width: 30.8vw;
        margin-right: 4.6667vw;
    }
}

.p-portal_mv_bnr_txt {
    padding-bottom: 1.4333vw;
    color: #231815;
    transition: .4s;
    text-align: left!important;
    width: 245px;
}

@media screen and (min-width: 768px) {
    /* vol2まではこちら .en .p-portal_mv_bnr_txt {
        width: 330px;
    } */
    .en .p-portal_mv_bnr_txt {
        width: 360px;
    }
}

@media screen and (max-width: 890px) and (min-width: 768px) {
    .en .p-portal_mv_bnr_txt {
        width: 280px;
    }
}

.p-portal_mv_bnr_txt .-br {
    display: none;
}

@media screen and (min-width: 1190px) {
    .p-portal_mv_bnr_txt {
        /* width: 18vw; */
        /* width: 21vw; */
        width: 25vw;
    }
    .en .p-portal_mv_bnr_txt {
        /* width: 24vw; */
        width: 25vw;
    }
    .en .p-portal_mv_bnr_txt .-jp {
        font-size: 1.5vw;
    }
    .en .p-portal_mv_bnr_txt {}
    .p-portal_mv_bnr_txt .-br {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .p-portal_mv_bnr_txt {
        width: 190px;
        padding-bottom: 2vw;
    }
}

@media screen and (max-width: 767px) {
    .en.pc.full .p-portal_mv_bnr_txt {
        width: 330px;
    }
}

.p-portal_mv_bnr_txt .-en {
    display: inline-block;
    /* font-size: .833vw; */
    font-size: 13px;
    margin-bottom: 1vw;
    padding: 0 .03vw .4667vw;
    position: relative;
}

.p-portal_mv_bnr_txt .-en::before {
    background: #e3a700;
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 1s;
}

.is-animated .p-portal_mv_bnr_txt .-en::before {
    transform-origin: center top;
    transform: scale(1, 1);
}

@media screen and (max-width: 767px) {
    .p-portal_mv_bnr_txt .-en {
        display: inline-block;
        font-size: 3.3333vw;
        margin-bottom: 2.4vw;
        padding: 0 1vw 1.8667vw;
    }
}

.p-portal_mv_bnr_txt .-jp {
    font-size: 1.854vw;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .p-portal_mv_bnr_txt .-jp {
        /* font-size: 5.3333vw; */
        font-size: 17px;
    }
    .en .p-portal_mv_bnr_txt .-jp {
        font-size: 15px;
    }
}

.p-portal_mv_img_cont {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.p-portal_mv_img_cont .-img {
    display: inline-block;
    position: relative;
    height: 100vh;
    z-index: 1;
}

@media screen and (min-width: 768px) {
    .p-portal_mv_img_cont {
        height: 100%;
    }
}


/* @media screen and (max-width: 1560px) and (min-width: 767px) {
    .p-portal_mv_img_cont {
        max-height: unset;
        height: auto;
    }
} */

.p-portal_mv_img_cont img {
    width: 100%;
    /* height: 100%;
    object-fit: contain;
    object-position: top;
    display: block; */
    margin: auto;
}

@keyframes fadeInP1 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.tab .p-portal_mv_img_ttl {
    top: 3.0905vh;
}

.tab .p-portal_mv_img_txt {
    top: 38vh;
    bottom: unset;
}

.tab .p-portal_mv_sub_ttl {
    font-size: 3vw;
    margin-bottom: 2.5vw;
}

.tab .p-portal_mv_sub_txt {
    line-height: 2;
    font-size: 0.95vw;
}

.tab .p-portal_mv_btm {
    margin-top: -60vh;
}

.tab .p-portal_mv_bnr {
    margin-top: 4.1667vw;
}

.tab .p-portal_mv_bnr_img {
    width: 13vw;
    margin-right: 1.8vw;
}

.tab .p-portal_mv_bnr_txt .-en {
    font-size: 1.2vw;
}

.full .p-portal_mv_img_txt {
    /* bottom: 10vh; */
    bottom: unset;
    top: 55vh;
}

.full .p-portal_mv_img_cont {
    height: auto;
}

.p-portal_mv_img_cont .is-full {
    display: none;
}

.p-portal_mv_img_cont .is-small2 {
    display: none;
}

.full .p-portal_mv_img_cont .is-small2 {
    display: none;
}

.full .p-portal_mv_img_cont .is-small {
    display: block;
}

.full .p-portal_mv_img_cont .is-full {
    display: none;
}

.full2 .p-portal_mv_img_cont .is-full {
    display: none;
}

.full2 .p-portal_mv_img_cont .is-small {
    display: none;
}

.full2 .p-portal_mv_img_cont .is-small2 {
    display: block;
}

.full2.landscape .p-portal_mv_img_cont .is-small2 {
    display: none;
}


/* @media screen and (min-width: 1543px) {
    .full2.landscape .p-portal_mv_img_cont .is-small2 {
        display: block;
    }
} */

.landscape .p-portal_mv_img_cont img {
    width: 100%;
    height: auto;
    object-fit: unset;
}

.landscape .p-portal_mv_img_cont .is-small {
    display: none;
}

.landscape .p-portal_mv_img_cont .is-full {
    display: block;
}

.landscape .p-portal_mv_img_ttl {
    top: 15.2vh;
    width: 20vw;
}

.landscape .p-portal_mv_img_txt {
    bottom: 1.7vw;
}

.landscape .p-portal_mv_sub_ttl {
    margin-bottom: 0.6vw;
}

.landscape .p-portal_mv_bnr_img {
    width: 10.2vw;
}

.landscape .p-portal_mv_bnr_txt {
    padding-bottom: 1vw;
}

.landscape .p-portal_mv_bnr_txt {
    width: 240px;
}

.landscape.en .p-portal_mv_bnr_txt {
    /* width: 24vw; */
    width: 21vw;
}

.landscape .p-portal_mv_bnr_txt .-jp {
    font-size: 1.2vw;
    font-weight: 600;
}

.landscape .p-portal_mv_bnr_txt .-en {
    margin-bottom: 0.8em;
}

.landscape .p-portal_mv_sub_ttl {
    font-size: 28px;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .en.landscape .p-portal_mv_sub_ttl {
        font-size: 25px;
        margin-bottom: 22px;
    }
}

.pc.full .p-portal_mv_img_ttl {
    top: 13vh;
}

.pc.full .p-portal_mv_bnr_img {
    width: 15.2667vw;
}

.pc.full .p-portal_mv_img,
.pc.full .p-portal_mv_img_cont .-img {
    height: auto;
}

.pc.full .p-portal_mv_btm {
    /* margin-top: -16vh; */
    margin-top: -56vh;
}

@media screen and (max-width: 800px) and (min-width:1680px) {
    /* .landscape .p-portal_mv_sub_txt.u-indent p {
        font-size: 11px;
    } */
}


/* .landscape .p-portal_mv_sub_txt.u-indent p {
    font-size: 11px;
} */

@media screen and (max-width: 767px) {
    .full .p-portal_mv_img_cont img {
        height: auto;
        object-fit: unset;
    }
    .full .p-portal_mv_img_ttl {
        top: 60vw;
    }
    .full .p-portal_mv_img_txt {
        bottom: unset;
        top: 74vw;
        text-align: center;
    }
    .phone .is-full {
        display: none!important;
    }
}


/* .landscape .p-portal_mv .l-header {
    padding: 1.3667vw 13.8vw 0;
} */

@media screen and (max-width: 767px) {
    .pc .is-sp {
        display: none;
    }
    .pc .p-portal_mv .l-header {
        padding: 1.3667vw 2.2667vw 0;
    }
    .pc .p-portal_mv_head {
        position: relative;
    }
    .pc .p-portal_mv .l-header_logo {
        width: 16vw;
    }
    .pc .p-portal_mv .l-header_seiko {
        width: 12vw;
    }
    .pc .p-portal_mv_img {
        height: auto;
        /* overflow: hidden; */
        position: relative;
    }
    .pc .p-portal_mv_img_ttl {
        position: absolute;
        z-index: 10;
        top: 5.0905vh;
        left: 50%;
        width: 28.3vw;
        transform: translateX(-50%);
    }
    .pc .p-portal_mv_img_ttl .-img {
        animation-duration: .8s;
        animation-delay: .8s;
        margin-bottom: 9.36%;
        width: 100%;
    }
    .pc .p-portal_mv_img_ttl .-txt {
        animation-duration: 1.2s;
        animation-delay: 1.2s;
        width: 66.19%;
        margin: auto;
    }
    .pc .p-portal_mv_img_txt {
        /* position: absolute;
        z-index: 10; */
        /* bottom: 14vh; */
        /* bottom: unset;
        top: 48.5vw; */
        /* bottom: 2vh; */
        /* left: 50%;
        transform: translateX(-50%);
        color: #fff; */
    }
    .pc .p-portal_mv_sub_ttl {
        font-size: 3.2vw;
        text-align: center;
        line-height: 1.2;
        font-weight: 600;
        /* margin-bottom: 1.9333vw; */
        margin-bottom: 2.5vw;
        opacity: 0;
        animation: fadeInP1 0.8s 1s forwards;
    }
    .pc .p-portal_mv_sub_txt {
        text-align: center;
        line-height: 2;
        /* font-size: 1.3vw; */
        font-size: 12px;
        opacity: 0;
        animation: fadeInP1 0.8s 1.4s forwards;
    }
    .pc .p-portal_mv_sub_txt p {
        text-align: center;
    }
    .pc .p-portal_mv_bnr {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        color: #fff;
        line-height: 1.2;
        /* margin-top: 2.1667vh; */
        margin-top: 4.1667vw;
        opacity: 0;
        animation: fadeInP1 1.2s 1.8s forwards;
        cursor: pointer;
        transition: .4s;
    }
    .pc .p-portal_mv_bnr:hover .p-portal_mv_bnr_img,
    .pc .p-portal_mv_bnr:hover .p-portal_mv_bnr_txt {
        opacity: .8;
        transition: .4s;
    }
    .pc .p-portal_mv_bnr_img {
        width: 20vw;
        margin-right: 2vw;
        transition: .4s;
    }
    .pc .p-portal_mv_bnr_txt {
        padding-bottom: 1.4333vw;
        color: #fff;
        transition: .4s;
    }
    .pc .p-portal_mv_bnr_txt .-en {
        display: inline-block;
        /* font-size: 1.5vw; */
        font-size: 12px;
        margin-bottom: 1.2vw;
        padding: 0 .1vw .8vw;
        position: relative;
    }
    .pc .p-portal_mv_bnr_txt .-en::before {
        background: #e3a700;
        content: '';
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0;
        bottom: 0;
        margin: auto;
        transform-origin: right top;
        transform: scale(0, 1);
        transition: transform 1s;
    }
    .pc .p-portal_mv_bnr_txt.is-animeted .-en::before {
        transform-origin: center top;
        transform: scale(1, 1);
    }
    .pc .p-portal_mv_bnr_txt .-jp {
        font-size: 2.5vw;
        font-weight: 600;
    }
    .pc .p-portal_mv_img_cont {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .phone .p-portal_mv_img_cont .is-small {
        display: none;
    }
}

@media screen and (max-width: 580px) {
    .pc .p-portal_mv_img_ttl {
        top: 2vh;
    }
}


/* スクロールバー */

.p-portal_mv_img {
    position: relative;
}

@media screen and (max-width: 767px) {
    .p-portal_mv_img,
    .p-portal_mv_img_cont .-img {
        height: auto;
    }
}

.p-index_mv_img_scroll {
    position: absolute;
    z-index: 10;
    right: 6.56vw;
    bottom: -170px;
    width: 16px;
    transition: .4s;
}

@media screen and (max-width: 767px) {
    .p-index_mv_img_scroll {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .p-index_mv_img_scroll {
        /* position: fixed; */
        z-index: 10;
        right: 6.56vw;
        bottom: -170px;
        width: 16px;
    }
    .p-index_mv_img_scroll.-none {
        position: absolute;
        z-index: 0;
        right: 6.56vw;
        bottom: 0;
        transition: .4s;
    }
    .p-index_mv_img_scroll.-none_h {
        position: absolute!important;
    }
}

.p-index_mv_img_scroll a {
    display: block;
    position: relative;
    z-index: 0;
    /* padding-right: 21px; */
    padding-bottom: 80px;
    cursor: pointer;
    height: 235px;
    /* margin-bottom: -56px; */
    overflow: hidden;
}

.p-index_mv_img_scroll a span {
    display: none;
}

.p-index_mv_img_scroll a::before,
.p-index_mv_img_scroll a::after {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    width: 1px;
    height: 90%;
    content: "";
}

.p-index_mv_img_scroll a::before {
    height: 235px;
    background-color: #b49733;
    opacity: .7;
}

.p-index_mv_img_scroll a::after {
    height: 76px;
    background-color: #a8811f;
    animation: topScrollAttention 2s ease-in 3;
}

@keyframes topScrollAttention {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(210%);
    }
}

.p-index_mv_img_scroll img {
    width: 10px;
    position: absolute;
    top: -80px;
    left: 53%;
}

.p-portal_mv_btm {
    position: relative;
    z-index: 10;
    /* margin-top: -22vh; */
    margin-top: -19.5vh;
    padding-bottom: 120px;
}

.pc.full2 .p-portal_mv_btm {
    /* margin-top: -20vh; */
    margin-top: -11.5vh;
}

.pc .p-portal_mv_btm {
    text-align: center;
}

.landscape .p-portal_mv_btm {
    margin-top: -18vh;
}

.landscape2 .p-portal_mv_btm {
    margin-top: 0!important;
}


/* @media screen and (min-height: 720px) {
    .full.pc .p-portal_mv_bnr {
        margin-top: -40vh;
    }
} */

@media screen and (max-width: 767px) {
    .p-portal_mv_btm {
        position: relative;
        z-index: 10;
        /* margin-top: -120vw; */
        margin-top: 0;
        padding-bottom: 0;
        /* padding: 0 5% 80px; */
        padding: 83vw 5% 80px;
    }
    .p-portal_mv_img_txt {
        width: 100%;
        transform: unset;
    }
    .p-portal_mv_sub_txt {
        animation: fadeInP1 0.8s 1.4s forwards;
    }
    .p-portal_mv_bnr {
        animation: fadeInP1 1.2s 1.8s forwards;
    }
    .p-portal_mv_bnr_txt.is-animeted .-en::before {
        transform-origin: center top;
        transform: scale(1, 1);
        animation: unset;
    }
    .p-portal_mv_bnr_txt,
    .p-portal_mv_bnr {
        opacity: 1!important;
    }
}

.p-portal_mv_bnr_txt .is-small2 {
    display: none;
}

.full2 .p-portal_mv_bnr_txt .is-small2 {
    display: block;
}

.full2 .p-portal_mv_bnr_txt {
    padding-bottom: 0;
}


/* 追加 */

.p-portal_mv_bnr_wrap.-lastyear {
    margin-top: 1.2vw;
}

.p-portal_mv_bnr_wrap.-lastyear .p-portal_mv_bnr {
    align-items: stretch;
}

.p-portal_mv_bnr_wrap.-lastyear .p-portal_mv_bnr_img {
    padding-right: 16px;
    margin-right: 0;
    /* width: calc(13.2667vw + 16px); */
    background-color: #050605;
    /* width: calc(17vw + 16px); */
    width: 19vw;
}

.landscape .p-portal_mv_bnr_wrap.-lastyear .p-portal_mv_bnr_img {
    width: 14vw;
}

.pc.full .p-portal_mv_bnr_wrap.-lastyear .p-portal_mv_bnr_img {
    width: 22vw;
}

.p-portal_mv_bnr_wrap.-lastyear .p-portal_mv_bnr_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.p-portal_mv_bnr_wrap.-lastyear .p-portal_mv_bnr_txt {
    background-color: #050605;
    color: #fff;
    padding-top: 0.8vw;
    padding-bottom: 1.8vw;
    /* width: 202px; */
    /* width: 17vw; */
    width: 20.5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.landscape .p-portal_mv_bnr_txt {
    width: 14.8vw;
    max-width: 330px;
}

.landscape .p-portal_mv_bnr_wrap.-lastyear .p-portal_mv_bnr_txt {
    width: 12vw;
    padding-top: 0.6vw;
    padding-bottom: 1.2vw;
}

.pc.full .p-portal_mv_bnr_wrap.-lastyear .p-portal_mv_bnr_txt {
    width: 20.5vw;
    padding-top: 0.6vw;
    padding-bottom: 1.2vw;
}

.p-portal_mv_bnr_wrap.-lastyear .p-portal_mv_bnr_txt .-en {
    font-size: 11px;
    padding-bottom: 0;
    margin-bottom: 0.8vw;
}

.landscape .p-portal_mv_bnr_wrap.-lastyear .p-portal_mv_bnr_txt .-en {
    margin-bottom: 0.6vw;
}

.p-portal_mv_bnr_wrap.-lastyear .p-portal_mv_bnr_txt .-en::before {
    display: none;
}

.p-portal_mv_bnr_wrap.-lastyear .p-portal_mv_bnr_txt .-jp {
    font-size: 1.426vw;
}

.landscape .p-portal_mv_bnr_wrap.-lastyear .p-portal_mv_bnr_txt .-jp {
    font-size: 1vw;
    font-weight: 600;
}

.en .p-portal_mv_bnr_wrap.-lastyear .p-portal_mv_bnr_txt {
    padding-top: 0.8vw;
    padding-bottom: 1vw;
}

.en .p-portal_mv_bnr_wrap.-lastyear .p-portal_mv_bnr_txt .-en {
    margin-bottom: 0.5vw;
}

@media screen and (max-width: 767px) {
    .p-portal_mv_img {
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
    }
    .p-portal_mv_bnr_wrap.-lastyear .p-portal_mv_bnr_img {
        width: 51%;
        padding-right: 4.6667vw;
    }
    .p-portal_mv_bnr_wrap.-lastyear .p-portal_mv_bnr_txt {
        width: 49%;
    }
    .p-portal_mv_bnr_wrap.-lastyear .p-portal_mv_bnr_txt .-en {
        font-size: 10px;
    }
    .p-portal_mv_bnr_wrap.-lastyear .p-portal_mv_bnr_txt .-jp {
        font-size: 16px;
    }
    .p-portal_mv_bnr_wrap.-lastyear .p-portal_mv_bnr_txt .-jp {
        font-size: 14px;
    }
    .p-portal_mv_bnr_txt .-en {
        padding-left: 0;
    }
}


/* ------- newマーク出す場合 ------- */


/* .p-portal_mv_bnr:first-child .p-portal_mv_bnr_txt .-en::after {
    content: "NEW";
    display: block;
    position: absolute;
    bottom: 120%;
    left: 0;
    font-size: 14px;
    color: #d9a012;
}

@media screen and (max-width: 767px) {
    .p-portal_mv_bnr:first-child .p-portal_mv_bnr_txt .-en::after {
        font-size: 13px;
    }
} */