@charset "utf-8";

/* CSS INFORMATION -====================================================
File name : base.css
Description :
===================================================================== */


/* =====================================================================
*    共通・大枠
* =================================================================== */

html {
    font-size: calc(10 / 750 * 100vw);
}

@media screen and (min-width: 768px) {
    html {
        font-size: calc(10 / 1600 * 100vw);
    }
}

@media screen and (min-width: 1600px) {
    html {
        font-size: 10px;
    }
}

.gDef-top-banner {}

.gDef-contents {
    color: #131919;
    font-family: "Noto Sans JP", "メイリオ", "ＭＳ Ｐゴシック", "小塚ゴシック Pro R", "ヒラギノ角ゴ Pro W3", "Meiryo", "MS PGothic", "KozGoPro-Regular", "Hiragino Kaku Gothic Pro", "MS UI Gothic", Osaka, sans-serif;
    line-height: 1.5;
    letter-spacing: 0.05em;
    background-color: #fff;
}

.set1,
.set1 * {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.set1 img {
    width: 100%;
    height: auto;
    display: block;
}

.set1 a {
    display: block;
    text-decoration: none;
    color: #131919;
}

@media screen and (min-width: 768px) {
    .set1 a {
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
    }
}

@media screen and (max-width: 767px) {
    .pc {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .sp {
        display: none !important;
    }
}


/* =====================================================================
*    section
* =================================================================== */

body {
    overflow-x: hidden;
}

.main {
    display: block;
}

.inner {}

.sec_ttl_box {}

.sec_ttl {
    display: inline-block;
    margin: calc(-33 / 750 * 100vw) 0 0;
    padding: 0 calc(10 / 750 * 100vw) calc(15 / 750 * 100vw) calc(60 / 750 * 100vw);
    background-color: #e2ff00;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: right;
}

.sec_ttl[data-txt]::before {
    content: attr(data-txt);
    display: block;
    margin: -0.47em 0 -0.1em;
    color: #e60019;
    font-size: 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
    .inner {
        width: 100%;
        max-width: 1600px;
        margin: 0 auto;
    }
    .sec_ttl {
        width: calc(660 / 1600 * 100vw);
        margin: calc(-33 / 1600 * 100vw) 0 0;
        padding: 0 calc(10 / 1600 * 100vw) calc(15 / 1600 * 100vw) calc(60 / 1600 * 100vw);
        font-size: 18px;
    }
}

@media screen and (min-width: 1300px) {
    .sec_ttl {
        width: calc(640 / 1600 * 100vw);
        font-size: 20px;
    }
    .sec_ttl[data-txt]::before {
        font-size: 60px;
    }
}

@media screen and (min-width: 1600px) {
    .sec_ttl {
        width: calc(50vw - 160px);
        left: 50%;
        margin: -33px 0 0 -50vw;
        padding: 0 10px 15px 60px;
        font-size: 24px;
    }
    .sec_ttl[data-txt]::before {
        font-size: 72px;
    }
}


/* =====================================================================
*    btn / arrow
* =================================================================== */

.arrow1::before,
.arrow1::after {
    content: "";
    display: block;
    width: calc(48 / 750 * 100vw);
    height: calc(48 / 750 * 100vw);
    background-color: #1c1c1c;
    position: absolute;
    top: 0;
    bottom: 0;
    right: calc(-24 / 750 * 100vw);
    margin: auto;
}

.arrow1::after {
    background: url(../images/common/btn_arrow1.png) no-repeat center center;
    background-size: 100% auto;
}

.btn1 {
    width: calc(580 / 750 * 100vw);
    margin: 0 auto;
    padding: calc(4 / 750 * 100vw);
    border: 2px solid #e60019;
}

.btn1 a {
    padding: 1em 0;
    background-color: #e60019;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .arrow1::before,
    .arrow1::after {
        width: calc(48 / 1600 * 100vw);
        height: calc(48 / 1600 * 100vw);
        right: calc(-24 / 1600 * 100vw);
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
    }
    .arrow1:hover::before,
    .arrow1:hover::after {
        right: calc(-6 / 1600 * 100vw);
    }
    .btn1 {
        width: calc(492 / 1600 * 100vw);
        padding: calc(4 / 1600 * 100vw);
    }
    .btn1 a {
        padding: 1.25em 0;
        font-size: 18px;
    }
}

@media screen and (min-width: 1600px) {
    .arrow1::before,
    .arrow1::after {
        width: 48px;
        height: 48px;
        right: -24px;
    }
    .arrow1:hover::before,
    .arrow1:hover::after {
        right: -6px;
    }
    .btn1 {
        width: 492px;
        padding: 4px;
    }
}


/* =====================================================================
*    header
* =================================================================== */

.nav {
    background-color: #000;
    border-bottom: calc(12 / 750 * 100vw) solid #bcd400;
}

.nav_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    padding: calc(4 / 750 * 100%) calc(4 / 750 * 100%) 0;
}

.nav_menu li {
    width: calc(369 / 742 * 100%);
    margin: 0 calc(4 / 742 * 100%) calc(4 / 742 * 100%) 0;
}

.nav_menu li:nth-child(even),
.nav_menu li:last-child {
    margin-right: 0;
}

.nav_menu li a {
    padding: 3.7rem 0;
    background-image: linear-gradient( 140deg, #131919 50%, #1f2525 50.1%);
    color: #fff;
    font-size: 16px;
    font-family: YakuHanJP, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav_menu li.nav4 a,
.nav_menu li.nav5 a {
    letter-spacing: 0;
}

@media screen and (max-width: 767px) {
    .nav_menu li.nav5 {
        width: 100%;
    }
}

@media screen and (min-width: 768px) {
    .nav {
        border-width: calc(6 / 1600 * 100vw);
    }
    .nav_menu {
        width: calc(1400 / 1600 * 100%);
        margin: 0 auto;
        padding: calc(2 / 1600 * 100%);
    }
    .nav_menu li,
    .nav_menu li:nth-child(even) {
        width: calc(247 / 1200 * 100%);
        width: 19%;
        margin: 0 calc(2 / 1200 * 100%) 0 0;
    }
    .nav_menu li:last-child {
        margin-right: 0;
    }
    .nav_menu li a {
        padding: calc(27 / 247 * 100%) 0;
        padding: 2.7rem 0;
        font-size: 18px;
        letter-spacing: 0.2em;
    }
    .nav_menu li.nav4 a {
        letter-spacing: 0.05em;
    }
    .nav_menu li a:hover {
        color: #bcd400;
    }
}

@media screen and (min-width: 1600px) {
    .nav {
        border-width: 6px;
    }
}


/* =====================================================================
*    subpage_header
* =================================================================== */

.submv::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc(190 / 750 * 100%);
    background: url(../images/common/img_submv_sp.jpg) no-repeat center top;
    background-size: 100% auto;
}

.submv .inner {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.submv .mv_ttl {
    width: calc(396 / 750 * 100%);
    position: absolute;
    top: 0;
    left: 0;
    margin: calc(36 / 750 * 100%) 0 0 calc(336 / 750 * 100%);
}

.submv .mv_date {
    width: calc(402 / 750 * 100%);
    position: absolute;
    top: 0;
    left: 0;
    margin: calc(128 / 750 * 100%) 0 0 calc(336 / 750 * 100%);
}

@media screen and (min-width: 768px) {
    .submv::before {
        padding-top: calc(220 / 1600 * 100%);
        background: url(../images/common/img_submv_pc.jpg) no-repeat center top #f7f8f9;
        background-size: auto 100%;
    }
    .submv .mv_ttl {
        width: calc(435 / 1600 * 100%);
        margin: calc(40 / 1600 * 100%) 0 0 calc(810 / 1600 * 100%);
    }
    .submv .mv_date {
        width: calc(440 / 1600 * 100%);
        margin: calc(156 / 1600 * 100%) 0 0 calc(805 / 1600 * 100%);
    }
}

@media screen and (min-width: 1600px) {
    .submv::before {
        padding-top: 220px;
    }
}


/* =====================================================================
*    slick
* =================================================================== */

.slick-arrow {
    width: calc(48 / 750 * 100vw);
    height: calc(48 / 750 * 100vw);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    margin: 0 0 calc(-72 / 750 * 100%);
}

.slick-arrow::before,
.slick-arrow::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #1c1c1c;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.slick-arrow::after {
    background: url(../images/common/btn_arrow1.png) no-repeat center center;
    background-size: 100% auto;
}

.slick-arrow.next {
    margin: 0 0 calc(-72 / 750 * 100%) calc(75 / 750 * 100%);
}

.slick-arrow.prev::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.slick-disabled.slick-arrow::before {
    border-color: #dedede;
}

.slick-disabled.slick-arrow::after {
    background-color: #dedede;
}

@media screen and (min-width: 768px) {
    .slick-arrow {
        width: calc(48 / 1600 * 100vw);
        height: calc(48 / 1600 * 100vw);
        margin: 0 0 calc(-72 / 1600 * 100vw);
        cursor: pointer;
    }
    .slick-arrow.next {
        margin: 0 0 calc(-72 / 1600 * 100vw) calc(75 / 1600 * 100vw);
    }
    .slick-arrow::before {
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
    }
    .slick-arrow:hover::before {
        background-color: #e60019;
    }
}

@media screen and (min-width: 1600px) {
    .slick-arrow {
        width: 48px;
        height: 48px;
        margin: 0 0 -72px;
    }
    .slick-arrow.next {
        margin: 0 0 -72px 75px;
    }
}


/* =====================================================================
*    info
* =================================================================== */

/* テキストリンクあり
.info {
    padding: calc(60 / 750 * 100%) 0 calc(25 / 750 * 100%);
    background-color: #e60019;
}

.info::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc(180 / 750 * 100%);
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
} */

/* テキストリンクなし　*/
.info {
    padding: calc(60 / 750 * 100%) 0 calc(90 / 750 * 100%);
    background-color: #e60019;
}

.info::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc(240 / 750 * 100%);
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}


.info_ttl {
    width: calc(600 / 750 * 100%);
    margin: 0 auto;
    padding: calc(19 / 750 * 100%) 0 calc(33 / 750 * 100%);
    background-image: -webkit-gradient( linear, right top, left top, from(#131919), to(#1b2323));
    background-image: linear-gradient( 270deg, #131919, #1b2323);
    color: #fff;
    font-size: 18px;
    font-family: YakuHanJP, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    z-index: 2;
}

.info_ttl::after {
    content: "";
    display: block;
    width: calc(280 / 600 * 100%);
    padding-top: calc(4 / 600 * 100%);
    background-color: #e2ff00;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto calc(28 / 600 * 100%);
}

.info_ttl span {
    font-size: 28px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.info_box {
    width: calc(680 / 750 * 100%);
    margin: calc(-70 / 750 * 100%) auto 0;
    padding: calc(120 / 750 * 100%) calc(40 / 750 * 100%) calc(60 / 750 * 100%);
    background: url(../images/common/bg_dot_gray15.png) repeat left top #fff;
    background-size: calc(36 / 680 * 100%) auto;
    -webkit-box-shadow: calc(10 / 750 * 100vw) calc(10 / 750 * 100vw) 0 rgba(31, 37, 37, 0.25);
    box-shadow: calc(10 / 750 * 100vw) calc(10 / 750 * 100vw) 0 rgba(31, 37, 37, 0.25);
}

.info_list li {
    margin: 0 0 0.5em;
    /*    padding: 0 0 0 0.6em;*/
    font-size: 16px;
    line-height: 1.714;
}

.info_list li:last-child {
    margin: 0;
}


/*
.info_list li::before {
    content: "■";
    display: block;
    position: absolute;
    top: 0;
    left: -0.6em;
    color: #e60019;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
}
*/

.info_box p {
    margin: 0.3em 0 0 1em;
    color: #5d5d5d;
    font-size: 16px;
    line-height: 1.667;
    text-indent: -1em;
}

.info_box p:first-of-type {
    margin-top: 1.5em;
}

@media screen and (min-width: 768px) {
  /* テキストリンクあり
  .info {
      padding: calc(50 / 1600 * 100%) 0 calc(50 / 1600 * 100%);
  }
  .info::before {
      padding-top: calc(220 / 1600 * 100%);
  } */
  /* テキストリンクなし  */
    .info {
        padding: calc(50 / 1600 * 100%) 0 calc(120 / 1600 * 100%);
    }
    .info::before {
        padding-top: calc(190 / 1600 * 100%);
    }


    .info_ttl {
        width: calc(560 / 1600 * 100%);
        padding: calc(11 / 1600 * 100%) 0 calc(17 / 1600 * 100%);
        font-size: 22px;
    }
    .info_ttl span {
        margin: 0 0.15em;
        font-size: 24px;
    }
    .info_ttl::after {
        width: calc(140 / 500 * 100%);
        padding-top: calc(2 / 500 * 100%);
        margin: 0 auto calc(12 / 500 * 100%);
    }
    .info_box {
        width: calc(1000 / 1600 * 100%);
        margin: calc(-35 / 1600 * 100%) auto 0;
        padding: calc(70 / 1600 * 100%) calc(40 / 1600 * 100%) calc(40 / 1600 * 100%);
        background-size: calc(36 / 1000 * 100%) auto;
        -webkit-box-shadow: calc(7 / 1600 * 100vw) calc(7 / 1600 * 100vw) 0 rgba(31, 37, 37, 0.25);
        box-shadow: calc(7 / 1600 * 100vw) calc(7 / 1600 * 100vw) 0 rgba(31, 37, 37, 0.25);
    }
    .info_list li {
        /*        padding: 0 0 0 2.4em;*/
        font-size: 18px;
        line-height: 1.75;
    }
    /*
    .info_list li::before {
        left: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
*/
    .info_box p {
        margin: 0.3em 0 0 3em;
        font-size: 18px;
    }
    .info_box p:first-of-type {
        margin-top: 2em;
    }
}

@media screen and (min-width: 1600px) {
  /* テキストリンクなし
    .info {
        padding: 50px 0 120px;
    }
  */
  /* テキストリンクあり */
  .info {
      padding: 50px 0 50px;
  }

    .info::before {
        padding-top: 190px;
    }
    .info_box {
        -webkit-box-shadow: 7px 7px 0 rgba(31, 37, 37, 0.25);
        box-shadow: 7px 7px 0 rgba(31, 37, 37, 0.25);
    }
}


/* =====================================================================
*    footer
* =================================================================== */

.footer_txt {
    width: calc(680 / 750 * 100%);
    margin: 0 auto;
    padding: 0 0 5em;
    color: #5d5d5d;
    font-size: 16px;
    line-height: 1.667;
}

@media screen and (min-width: 768px) {
    .footer_txt {
        width: calc(1000 / 1600 * 100%);
        padding: 0 0 4em;
        font-size: 18px;
        margin: -2em auto 0;
    }
}

@media screen and (min-width: 1000px) {
    .footer_txt {
        padding: 0 0 5em;
        margin: -3.7em auto 0;
    }
}

@media screen and (min-width: 1200px) {
    .footer_txt {
        width: calc(800 / 1600 * 100%);
    }
}

@media screen and (min-width: 1600px) {
    .footer_txt {
        margin: -5.5em auto 0;
        padding: 0 0 6em;
    }
}


/* =====================================================================
*    youtube_popup
* =================================================================== */

.bc_wrapper {
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100000;
    display: none;
    cursor: pointer;
}

.bc_wrapper .return_box {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.bc_wrapper .bc_movie_wrap {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

.bc_wrapper .bc_movie_wrap .bc_movie {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
}

.bc_wrapper .bc_movie_wrap .bc_movie iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.bc_wrapper .btn1 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 5%;
}

.bc_wrapper .btn1 a {
    display: block;
    text-decoration: none;
}

@media screen and (min-width:768px) {
    .bc_wrapper .bc_movie_wrap {
        width: 50%;
    }
}


/* 2022.10.11 GA4 ScrollEvent */

.miyaneya_article_end {
    height: 1px;
}

/* 2025 mv変更 */

.mv_ttl_hidden {
    display: none;
}