@charset "utf-8";

:root {
    --color01: #1A265F;
    --color04: #b5b6b6;
    --color01-rgb: 0, 148, 215;
    --color02: #3062bb;
    --color02-rgba: 48, 98, 187;
    --color03: #42B049;
    --color03-rgb: 66, 176, 73;
    --color05: #F08D1D;
    --color05-rgb: 240, 141, 29;

    --white: #FFFFFF;
}

#counterContents {
    --counter-base-color: #1A265F !important;
    --counter-bar-base-accent-color: #b5b6b6 !important;
}

/* CSS Document */
/* ==========================================================================================
■■■■■■　通常設定　■■■■■■
========================================================================================== */
/* ==========要素関係========== */
body {
    color: #333333;
    font-family: 'Noto Sans JP', sans-serif;
    background: #FAFAFA;
    position: relative;
    /*background: #dbe9ec;*/
    /*きれいなブルー */
}

a {
    text-decoration: none;
}

p {
    text-align: justify;
    font-size: 0.9rem;
    line-height: 1.8;
    letter-spacing: 0.02rem;
}

i {
    margin-right: 0.5rem;
}

h1 {
    font-size: 1.7rem;
}

.links {
    margin: 1rem 0;
}

.links span {
    display: block;
    margin-bottom: 0.5rem;
}

.links span .linkInText {
    padding-left: 0;
}

a.linkObviousBox {
    display: inline-block;
    padding: 0.3rem 1.5rem 0.5rem;
    background: #FFFFFF;
    color: var(--color01);
    margin-top: 0.5rem;
    border: 1px solid var(--color01);
}

a.linkObviousBox:hover {
    background: var(--color01);
    color: #FFF;
}

.mbShow {
    display: none;
}

.neverShow {
    display: none !important;
}

.fw_bld {
    font-weight: bold;
}

*[disabled] {
    display: none !important;
}

.underline {
    font-weight: 600;
    background: 
        linear-gradient(360deg, rgba(var(--color05-rgb), 0.3) 1px, rgba(var(--color05-rgb), 0.3) 1px, rgba(var(--color05-rgb), 0.3) calc(0.5rem + 1px), rgba(var(--color05-rgb), 0.3) calc(0.5rem + 1px), rgba(var(--color05-rgb), 0.3) calc(0.5rem + 2px), rgba(255, 255, 255, 0) calc(0.5rem + 2px));
}

/* ==========フォント関係========== */
/*-- Noto Sans 強制読み込み --*/
.ff_NS {
    font-family: 'Noto Sans JP' !important;
}

.ff_NS300 {
    font-family: 'Noto Sans JP' !important;
    font-weight: 300;
}

.fw100 {
    font-weight: 100;
}

.ff_Ow {
    font-family: Oswald;
}

.ff_swrbG {
    font-family: "Sawarabi Gothic";
}

.ff_swrbM {
    font-family: "Sawarabi Mincho";
}

.ff_hnnr {
    font-family: "Hannari";
}

.ff-mp1p {
    font-family: "M PLUS 1p";
}

.ff_mpr1c {
    font-family: "M PLUS Rounded 1c";
}

.ff_ubuntu {
    font-family: 'Ubuntu', sans-serif;
}

.ff_kosugi {
    font-family: 'Kosugi Maru', sans-serif;
}


.zenkakuDash {
    letter-spacing: -.2em;
    width: 2em;
    margin-right: .5em;
}

.markNotes {
    display: block;
    padding-left: 1rem;
    text-indent: -1rem;
}

/* ==========レイアウト関係========== */
/*.inner {
    width: 86%;
    margin: 0 auto;
    max-width: 1280px;
}*/
/* ==========header関係========== */
header {
    position: fixed;
    width: 100%;
    height: 80px;
    z-index: 999;
}

#mb_logo,
.menuBtn {
    display: none;
}

.globalHeader__inner {
    padding: 0 0 0 20px;
}

#globalHeader {
    background: rgba(255, 255, 255, 0.95);
}

#globalHeader__content {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
}

#globalHeader__logo {
    margin-right: auto;
    color: var(--color01);
    /* width: 25%; */
    width: 18%;
}

#globalHeader__logo h1 {
    line-height: 0;
}

#globalHeader__logo h1 a {
    display: block;
}

#globalHeader__items {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 180px;
    font-size: 0.9rem;
}

.globalHeader__Item {
    margin: 0 1.5rem;
    position: relative;
}

.globalHeader__Item:not(:first-of-type):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -30px;
    margin-top: auto;
    margin-bottom: auto;
    display: block;
    width: 1px;
    height: 25px;
    -webkit-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: skewX(-26deg);
    -ms-transform: skewX(-26deg);
    transform: skewX(-26deg);
    background-color: #999;
}

.globalHeader__Item a {
    letter-spacing: 0.1rem;
    font-weight: 500;
}

#globalHeader__specular {
    background: var(--color04);
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 180px;
    font-size: 0.9rem;

    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
    overflow: hidden;
}

#globalHeader__specular::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    display: block;
    content: "";
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
#globalHeader__specular:hover::after {
    -webkit-transform: scale(2) rotate(180deg);
    transform: scale(2) rotate(180deg);
    background: var(--color03);
}
#globalHeader__specular:hover::before {
    opacity: 1;
}

#globalHeader__specular a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    letter-spacing: 0.1rem;
}

#globalHeader .header_rubby {
    display: block;
    font-weight: 300;
    font-size: 0.7rem;
    text-align: center;
    letter-spacing: 0.1rem;
    color: var(--color01);
    padding-top: 0.2rem;
    font-family: Oswald;
}

#globalHeader__specular .header_rubby {
    color: #FFFFFF;
}

/* ========== Slideshow ========== */
.bg_slideshow {
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.vegas-timer-progress {
    background: var(--color03) !important;
}

/* ========== mainVisual ========== */
#homeMainVisual {
    position: relative;
    /*z-index: -1;*/
}

#homeMainVisual #slogan {
    position: absolute;
    bottom: 5rem;
    left: 5rem;
}

#homeMainVisual #slogan h2 {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #FFF;
}

#homeMainVisual #slogan .sloganControlled img {
    display: block;
    width: 100%
}

/*#homeMainVisual #slogan h2 {
    color: #FFF;
    font-size: 5rem;
    line-height: 0.7;
    margin-bottom: 1.2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #FFF;
    text-shadow: -3px 5px 0 rgba(0, 0, 0, 0.3);
    letter-spacing: 0.1rem;
}
#homeMainVisual #slogan h2 #sloganEnphasis {
    display: block;
    font-size: 10rem;
}*/

#homeMainVisual #slogan p {
    color: #FFF;
    text-shadow: -1px 1px 0 rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.infoBanners {
    margin-top: -5rem;
    padding: 5rem 5rem 5rem;
    /* background: rgba(var(--color01-rgb), 0.1); */
}

.infoBanners .infoBannarItem01 ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: nowrap;
    width: 100%;
}

.infoBanners .infoBannarItem01 li {
    width: calc(25% - 1rem);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0.5rem;
}

.infoBanners .infoBannarItem01 li:nth-of-type(even) a {
    /* background: #ca1b28; */
}

.infoBanners .infoBannarItem01 li a {
    width: 100%;
    padding: 1.5rem 0.8rem;
    display: block;
    background: #fff;
    color: var(--color01);
}

.infoBanners li a {
    padding: 2rem 5rem;
    display: block;
    text-align: center;
    letter-spacing: 0.1rem;
    /* font-size: 1.2rem; */
}

.infoBanners li .ruby {
    display: block;
    font-size: 0.7rem;
    margin-top: 0.5rem;
    border-top: 1px solid currentColor;
    padding-top: 0.5rem;
}

/*
.infoBanners li:nth-child(odd) a {
    background: var(--color01);
}

.infoBanners li:nth-child(even) a {
    background: var(--color02);
}*/

/* ==========リッチホバー設定========== */
/*基本設定*/
.buttonHover::before,
.buttonHover::after {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
}

.buttonHover,
.buttonHover::before,
.buttonHover::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .4s;
    transition: all .4s;
}

/*追加設定*/
.buttonHover {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.buttonHover:hover {
    color: var(--color01) !important;
}

.buttonHover:hover .ruby {
    /* border-top: 1px solid var(--color01) !important; */
    border-top: 1px solid #fff !important;
}

/* .infoBanners li:nth-child(even) .buttonHover:hover {
    color: var(--color02) !important;
} */

.infoBanners li .buttonHover:hover {
    color: #fff !important;
}

/* .infoBanners li:nth-child(even) .buttonHover:hover .ruby {
    border-top: 1px solid var(--color02) !important;
} */


.buttonHover::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.buttonHover:hover::after {
    -webkit-transform: scale(2) rotate(180deg);
    transform: scale(2) rotate(180deg);
    background: var(--color05);
}

/* ==========section設定========== */
.each__section {
    padding: 5rem 0;
}

.section__title h2 {
    font-family: Oswald;
    font-size: 5rem;
    letter-spacing: 0.25rem;
}

.section__title {
    text-align: center;
    /* margin-bottom: 5rem; */
    position: relative;
}

.section__subtitle {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section__subtitle h3 {
    font-family: Oswald;
    font-size: 4rem !important;
    letter-spacing: 1rem;
    margin-bottom: 0 !important;
}

.section__title span {
    display: block;
    letter-spacing: 0.2rem;
}

.section__subtitle span {
    display: block;
    letter-spacing: 0.2rem;
}

#secCocept_detail {
    background: var(--color01);
    width: 100%;
}

.the_inner {
    /*width: 1220px;*/
    max-width: 1180px;
    margin: 0 auto;
}

.section__omote {
    color: var(--color01);
}

.section__ura {
    color: #FFF;
}

.section__ura .contentBox .txt {
    font-weight: 300;
}

.the_wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin-bottom: 5rem;
}

.the_wrapper .wrap__image {
    width: 50%;
}

.the_wrapper .wrap__image picture {
    padding-left: 2.5rem;
    display: block;
}

.the_wrapper .wrap_content {
    width: 50%;
}

.contentBox h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contentBox h4 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.contentBox .txt {
    line-height: 1.8;
    letter-spacing: 0.05rem;
}

#secInfo {
    /* background: rgba(0, 111, 187, 0.3); */
    background: rgba(181, 182, 182, .6);
}

#featureWrapper {
    padding: 5rem 0 0;
}

#featureWrapper h3 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 5rem;
    letter-spacing: 0.2rem;
}

#featureWrapper .section__subtitle h3:before {
    content: "-";
    left: 0;
    height: 1.8rem;
    width: 1rem;
    margin-right: 1rem;
    color: var(--color01);
    font-weight: 100;
}

#featureWrapper .section__subtitle h3:after {
    content: "-";
    right: 0;
    height: 1.8rem;
    width: 1rem;
    margin-left: 1rem;
    color: var(--color01);
    font-weight: 100;
}

#secInfo .section__subtitle {
    margin-bottom: 2.5rem;
    color: var(--color01);
}

#secInfo .section__subtitle h4 {
    text-align: center;
    font-family: Oswald;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1rem;
    color: var(--color01);
}

#secInfo .section__subtitle h4:before {
    content: "-";
    left: 0;
    height: 1.8rem;
    width: 1rem;
    margin-right: 1rem;
    color: var(--color01);
    font-weight: 100;
}

#secInfo .section__subtitle h4:after {
    content: "-";
    right: 0;
    height: 1.8rem;
    width: 1rem;
    margin-left: 1rem;
    color: var(--color01);
    font-weight: 100;
}

#featureWrapper .contentType_02 .wrap__image picture {
    padding-right: 2.5rem;
    padding-left: 0;
}

#conceptTheFearture .wrap_content h3 {
    text-align: left;
    font-weight: 700;
    letter-spacing: 0.1rem;
    font-family: Oswald;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    /*袋文字*/
    -webkit-text-stroke: 1.5px var(--color01);
    text-stroke: 1px var(--color01);
    color: #FFF;
}

#conceptTheFearture .wrap_content h4 {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: -0.05em;
}

#conceptTheFearture .wrap_content h5 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    color: #333;
    border-bottom: 1px dotted #999999;
}

#conceptTheFearture .txt {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
}

#conceptTheFearture .txt .entry_sort {
    font-weight: 600;
}

#conceptTheFearture .txt .entry_sort_desc {
    display: block;
    padding-left: 3.15rem;
}

#conceptTheFearture .txt.notes {
    font-size: 0.8rem;
    line-height: 1.8;
    text-indent: -1rem;
    padding-left: 1rem;
    border-top: 1px dotted #000;
    padding-top: 1rem;
    margin-top: 1rem;
}

#conceptTheFearture ul.memo {
    background: #efefef;
    border: 1px dotted #999999;
    font-size: 0.9rem;
    padding: 1rem;
    margin: 0 0 1rem;
}

#conceptTheFearture ul.memo li {
    border-bottom: 1px dotted #999999;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}
#conceptTheFearture ul.memo li:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
#conceptTheFearture ul.memo li > span {
    display: block;
    padding-left: 1.2rem;
}

#conceptMainPhrase {
    margin: 5rem auto;
    padding: 0 5rem;
    /*background: url("../images/bg/cocetp_bg.png") no-repeat;
	background-position: center; */
}

#conceptMainPhrase p {
    font-size: 1.05rem;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    letter-spacing: 0.025rem;
    margin-bottom: 1.6rem;
    color: #333;
}

/*----- ふわっとfadeIn -----*/
.effect-fade.effect-scroll {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translatey(200px);
    }

    to {
        opacity: 1;
        transform: translatey(0);
    }
}

#pointIntro h3 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 5rem;
    letter-spacing: 0.2rem;
}

#pointIntro h3 span.figures {
    display: inline-block;
    font-size: 5rem;
    padding: 0 0.2rem;
}

#pointIntro .wideBgControl:nth-child(1) {
    background: var(--color01);
    padding-bottom: 3rem;
}

#pointIntro #point_01 {
    position: relative;
    z-index: 10;
    padding-top: 2.5rem;
}

#pointIntro #point_01 h3 .mbCtrl {
    letter-spacing: 0;
}

.eachPointContents h4 {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05rem;
}

.eachPointContents .the_wrapper > .wrap_content {
    padding: 0;
}

.eachPointContents .btn {
    margin: 3rem 0 0;
}

.eachPointContents .btn a {
    display: inline-block;
    background: #fff;
    padding: 1rem 2rem;
    width: auto;
    font-weight: 500;
    color: var(--color01);
    letter-spacing: 0.05rem;
}

/* .wideBgControl2 .eachPointContents .btn a {
    color: var(--color04);
} */

#pointIntro #point_02 > .eachPointContents {
    position: relative;
    z-index: 10;
    /*padding-top: 100px;
    padding-bottom: 50px;*/
}

#pointIntro #point_02 {
    background: var(--color04);
}

#pointIntro .wideBgControl:nth-child(2) {
    background: var(--color04);
}

#pointIntro .wideBgControl:nth-child(even) .wrap_content {
    margin-left: 5rem;
}

#pointIntro .wideBgControl:nth-child(odd) .wrap_content {
    margin-right: 5rem;
}

#pointIntro #point_03 > .eachPointContents {
    position: relative;
    z-index: 10;
    padding-top: 2.5rem;
}

#pointIntro #point_03 {
    background: var(--color01);
}

#pointIntro .wideBgControl:nth-child(3) {
    background: var(--color01);
}

/*---　背景ナナメの設定 ---*/
#pointIntro .wideBgControl:nth-child(1) {
    background: var(--color01);
    padding-bottom: calc(10vw + 10px);
    padding-top: calc(10vw + 10px);
    position: relative;
    overflow: hidden;
}

#pointIntro .wideBgControl:nth-child(1):before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    border-bottom: 10vw solid var(--color01);
    border-left: 100vw solid #FAFAFA;
}

#pointIntro .wideBgControl:nth-child(1):after {
    content: ' ';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 10vw solid var(--color04);
    border-bottom: 10vw solid var(--color04);
    border-right: 100vw solid transparent;
}

#pointIntro .wideBgControl:nth-child(2) {
    background: var(--color04);
    padding-bottom: calc(5vw + 10px);
    /*padding-top: calc( 10vw + 10px );*/
    position: relative;
    overflow: hidden;
}


#pointIntro .wideBgControl:nth-child(2):after {
    content: ' ';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 10vw solid var(--color01);
    border-right: 100vw solid transparent;
}

#pointIntro .wideBgControl:nth-child(3) {
    padding-bottom: calc(5vw + 10px);
    position: relative;
    overflow: hidden;
}


#pointIntro .wideBgControl:nth-child(3):after {
    content: ' ';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 10vw solid #FAFAFA;
    border-left: 100vw solid var(--color01);
}

/*--- ナナメ設定ここまで ---*/

#secOutline {
    padding-top: 0;
}

#secOutline #outlineTable {
    background: #FFF;
    margin-top: 5rem;
    padding: 5rem;
    color: #333;
}

#secOutline #outlineTable table {
    width: 100%;
}

#secOutline #outlineTable th,
#secOutline #outlineTable td {
    border-collapse: collapse;
    padding: 2rem 5rem;
    font-weight: normal;
    border-bottom: 1px solid var(--color01);
    text-align: left;
    letter-spacing: 0.08rem;
}

#secOutline #outlineTable td .markNotes {
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: red;
}

#secOutline #outlineTable tr:nth-child(1) {
    border-top: 1px solid var(--color01);
}

#secOutline #outlineTable th {
    width: 25%;
    font-weight: 700;
    color: var(--color01);
    padding-right: 0;
    font-size: 1.1rem;
}

#secOutline #outlineTable tr:nth-child(even) {
    background:
        /*rgba(28, 67, 136, 0.05)*/
        #FEFEFE;
}

#secOutline #outlineTable table td > ul > li {
    margin-bottom: 1.5rem;
    /*0.8rem;*/
    text-indent: -1rem;
    padding-left: 1rem;
    text-align: justify;
}
#secOutline #outlineTable table td > ul > li:last-of-type {
    margin-bottom: 0;
}

#secOutline #outlineTable table td > ul > li dt {
    font-weight: 500;
}

#secOutline #outlineTable table td > ul > li > dl > dd > ul > li {
    margin-bottom: 1rem;
}
#secOutline #outlineTable table td > ul > li > dl > dd > ul > li:last-of-type {
    margin-bottom: 0;
}


#secOutline #outlineTable table td li > .campaignDetail span {
    padding-left: 0;
    text-indent: 1rem;
}


#secOutline #outlineTable table td > ul.gift > li {
    text-indent: 0;
    padding-left: 0;
}

#secOutline #outlineTable table td li span.gifts {
    font-weight: 500;
    font-size: 1rem;
    /*display: inline-block;*/
    margin-bottom: 0.25rem;
}

#secOutline #outlineTable table td li span {
    font-size: 0.9rem;
}

#secOutline #outlineTable table td small.desc + hr {
    border-top: 1px dotted #ccc;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    /* display: inline-block; */
}

#secOutline #outlineTable .goodsDetail {
    background: #FFF;
    padding: 0;
}

#secOutline #outlineTable .goodsDetail table {
    width: 100%;
    margin-bottom: 1rem;
}

#secOutline #outlineTable .goodsDetail td {
    border-collapse: collapse;
    padding: 0.5rem;
    border-bottom: none;
    text-align: center;
    vertical-align: middle
}

#secOutline #outlineTable .goodsDetail td:nth-child(1) {
    padding-left: 0;
}

#secOutline #outlineTable .goodsDetail tr:nth-child(1) {
    border-top: none;
}

#secOutline #outlineTable .goodsDetail tr:nth-child(even) {
    background: none;
}


#secFlow {
    background: #FFF;
}

/*.contentBox__header {
	position: relative;
	padding-bottom: 55px;
}

.contentBox__header:after {
	position: absolute;
    left: 9px;
    bottom: -5px;
    z-index: 2;
    content: '';
    display: block;
    background-color: #FFF;
    margin: 6px 0 15px 0;
    width: 1px;
    height: 40px;
    animation: elasticus 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}*/
.contentBox__header span {
    font-size: 3rem;
    font-family: Oswald;
}

#flowchart {
    padding: 5rem;
}

.flowchart__items {
    color: #333;
}

/*
.flowchart__items:after {
    display: block;
    width: 50px;
    height: 50px;
    border-top: 1px solid var(--color01);
    border-right: 1px solid var(--color01);
   transform: rotate(135deg);
   content: "";
	margin: 1rem auto;
}
*/
.flowchart__items dl {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.flowchart__items + .flowchart__items {
    margin-top: 3rem;
}

.flowchart__items dt {
    font-family: Oswald;
    font-size: 1.5rem;
    margin-right: 5rem;
    color: var(--color01);
    min-width: 10%;
}

.flowchart__items dt span {
    font-size: 3rem;
}

.flowchart__items dd {
    border-left: 1px solid var(--color01);
    padding-left: 5rem;
}

.flowchart__items dd h5 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--color01);
    letter-spacing: 0.05rem;
}

.flowchart__items dd h5 > span {
    font-size: 17px;
    display: block;
    text-indent: -1rem;
    margin-left: 1rem;
}

.notes {
    font-size: 0.85rem;
}

.beer {
    color: goldenrod;
}

#faqLists {
    padding: 5rem;
    background: #FFF;
}

.faq__items {
    color: #333;
}

.faq__items + .faq__items {
    margin-top: 1rem;
}

.faq__items dl {
    position: relative;
    line-height: 1.8;
    padding: 2rem 3rem;
    background: rgba(219, 233, 236, 0.3);
}

.faq__items .question {
    padding-left: 4rem;
    display: flex;
    align-items: center;
    position: relative;
    height: 4rem;
    font-weight: 500;
    color: var(--color01);
    font-size: 1.2rem;
}

.faq__items .question:before {
    content: "Q.";
    color: var(--color01);
    font-size: 3rem;
    text-align: center;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
    font-family: Oswald;
}

.faq__items .answer {
    padding-left: 4rem;
    display: flex;
    align-items: center;
    position: relative;
    height: auto;
    text-align: justify;
}

.faq__items .answer:before {
    content: "A.";
    color: #dc5b67;
    font-size: 3rem;
    text-align: center;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
    font-family: Oswald;
}

/*----- FAQ アコーディオン部分 -----*/
.faq__items .questionWrapper {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    transition: all 1s ease;
    width: 100%;
}

/*アイコンの＋と×*/
.faq__items .questionWrapper::before,
.faq__items .questionWrapper::after {
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    background-color: var(--color01);
}

.faq__items .questionWrapper::before {
    top: 48%;
    right: 15px;
    transform: rotate(0deg);
}

.faq__items .questionWrapper::after {
    top: 48%;
    right: 15px;
    transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.faq__items .questionWrapper.close::before {
    transform: rotate(45deg);
}

.faq__items .questionWrapper.close::after {
    transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.faq__items .answerWrapper {
    display: none;
    /*はじめは非表示*/
    margin-bottom: 1rem;
}

/* ENTRY */
#secEntry {
    background: var(--color01);
}

#entryDetail {
    padding-bottom: 5rem;
}

.entryboxWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}

.entry__title {
    margin-bottom: 1rem;
    text-align: center;
    display: inline-block;
    width: 50%;
    margin: 0 auto 2rem;
    position: relative;
    background: #FFF;
    z-index: 1;
    padding: 1rem 2rem;
    color: var(--color01);
    -webkit-clip-path: polygon(32px 0%, 100% 0%, calc(100% - 32px) 100%, 0% 100%);
    clip-path: polygon(32px 0%, 100% 0%, calc(100% - 32px) 100%, 0% 100%);
}

/* .entry__title:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-left: solid 2rem var(--color01);
    /*bodyのカラーと同じ色に*/
/* border-bottom: solid 95px transparent;
    z-index: 2; 
}

.entry__title:after {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-left: solid 2rem #FFF;
    /*bodyのカラーと同じ色に*/
/* border-bottom: solid 95px var(--color01);
    z-index: 2;
} */

.entry__title h4 {
    font-size: 1.8rem;
    letter-spacing: 0.3rem;
}

.entry__title span {
    letter-spacing: 0.1rem;
    font-weight: 300;
}

.entryPeriod,
.eventPeriod,
.howToEntry {
    /*padding: 2.5rem 5rem;*/
    /*border: 1px solid #FFF;*/
    margin-bottom: 5rem;
    text-align: center;
}

.entryPeriod p,
.eventPeriod p {
    font-size: 1.6rem;
    font-family: Oswald;
    letter-spacing: 0.25rem;
    text-align: center;
}

.entryPeriod p.memo,
.eventPeriod p.memo {
    font-size: 0.9rem;
}

.howToEntry .txts {
    margin: 0 auto 3rem;
    width: 70%;
}

.howToEntry .txts p {
    font-size: 1rem;
    letter-spacing: 0.05rem;
    font-weight: 300;
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.howToEntry .txts p b {
    font-size: 1.25rem;
    font-weight: bold;
}

.youbi {
    display: inline-block;
    margin-left: -1rem;
    margin-right: -0.5rem;
}

a.linkInText {
    text-decoration: underline;
    transition: 0.3s;
}
a.linkInText:hover {
    color: var(--color05);
}

.entrybox_items {
    flex-basis: 47%;
    border: 1px solid #fff;
    background: var(--color04);
}

.entrybox_items .mbDInlineBlock {
    font-weight: normal;
}

.entrybox_items .mbDInlineBlock b {
    font-size: 1.25rem;
    font-weight: bold;
}

.entrybox_items a {
    display: block;
    padding: 2rem;
    background: rgba(var(--primary-color-rgb), 0.2);
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* .entrybox_items a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color03);
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: -1;
} */

.entrybox_items a::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    display: block;
    content: "";
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.entrybox_items a:hover::after {
    -webkit-transform: scale(2) rotate(180deg);
    transform: scale(2) rotate(180deg);
    background: var(--color03);
}

.entrybox_items a:hover::before {
    opacity: 0.9;
}

.entrybox_items h5 {
    /*margin-bottom: 2rem;*/
    letter-spacing: 0.1rem;
}

.entrybox_items h5 i {
    padding-left: 0.8rem;
}

.entrybox_items .entryLink img {
    width: 80%;
}

/*----- 利用規約 -----*/
#secTerms {
    background: #FFF;
}

.termWrapper {
    padding: 5rem;
    color: #333;
}

.term__items {
    line-height: 1.8;
    letter-spacing: 0.05rem;
    padding-left: 1rem;
    text-indent: -1.1rem;
    font-weight: 400;
}

.term__items i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.term__items + .term__items {
    margin-top: 1.2rem;
}

.termWrapper ul {
    padding: 1rem;
}

.termWrapper h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 0.15rem;
    color: var(--color01);
    position: relative;
}

.termWrapper h4:before {
    content: "／";
    left: 0;
    height: 1.8rem;
    width: 1rem;
    margin-right: 0.5rem;
    color: var(--color01);
    font-weight: 100;
}

.termWrapper h4:after {
    content: "／";
    height: 1.8rem;
    width: 1rem;
    margin-left: 0.5rem;
    color: var(--color01);
    font-weight: 100;
}


.termWrapper p {
    font-size: 1rem;
    letter-spacing: 0.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 400;
}

.termList,
.termPrivacy {
    margin-bottom: 5rem;
}




#secContact {
    background: var(--color01);
}

.contactWrapper {
    margin: 0 auto;
    width: 80%;
    padding: 5rem 5rem 0;
}

.contactContents {
    text-align: center;
    letter-spacing: 0.05rem;
    font-family: 'Noto Sans JP', sans-serif;

}

.contactContents h4 {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    padding: 1rem 2rem;
    border: 1px solid #FFF;
}

.contactContents dt {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.08rem;
    font-weight: 700;
}

.contactContents dt > span {
    display: block;
    font-size: 1rem;
}

.contactContents li {
    margin-bottom: 2rem;
    font-weight: 300;
}

.contactContents li.address {
    letter-spacing: 0.2rem;
}

.contactContents li.tel,
.contactContents li.mail {
    font-size: 2.1rem;
    font-family: Oswald;
    letter-spacing: 0.2rem;
    color: var(--color05);
}

.contactContents li.tel > div,
.contactContents li.mail > div {
    font-size: 1rem;
    margin: 1rem 0;
    color: #FFF;
}

.contactContents li div li {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

footer {
    font-family: Oswald;
    letter-spacing: 0.2rem;
    padding: 1rem 0;
}

footer p {
    text-align: center;
    color: var(--color01);
}



/*----- テキストナビゲーション
-左から右に線が伸びる（下部）-----*/
#globalHeader__items li a {
    /*線の基点とするためrelativeを指定*/
    position: relative;
    display: block;
}

#globalHeader__items li.current a,
#globalHeader__items li a:hover {
    color: var(--color01);
}

#globalHeader__items li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    /*    bottom: -40px;*/
    bottom: -1.25rem;
    left: 0;
    /*線の形状*/
    width: 90%;
    height: 2px;
    background: var(--color05);
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);
    /*X方向0、Y方向1*/
    transform-origin: left top;
    /*左上基点*/
}

/*現在地とhoverの設定*/
#globalHeader__items li.current a::after,
#globalHeader__items li a:hover::after {
    transform: scale(1, 1);
    /*X方向にスケール拡大*/
}


/*----- スクロールダウン
-縦線が動いてスクロールを促す- -----*/

/*スクロールダウン全体の場所*/
.scrolldown1 {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    left: 50%;
    margin-top: 30px;
    /*全体の高さ*/
    height: 30px;
}

/* 線の描写 */
.scrolldown1::after {
    content: "";
    /*描画位置*/
    position: absolute;
    /*線の形状*/
    width: 2px;
    height: 30px;
    background: #FFF;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: pathmove 2.0s ease-in-out infinite;
    opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
    0% {
        height: 0;
        top: 0;
        opacity: 0.5;
    }

    30% {
        height: 30px;
        opacity: 1;

    }

    100% {
        height: 0;
        top: 100px;
        opacity: 1;
    }
}

/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color01);
    border: 1px solid #FFF;
    border-radius: 5px;
    width: 60px;
    height: 60px;
    color: #FFF;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 2rem;
    transition: all 0.3s;
}


/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 10px;
    z-index: 9999;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*　下に下がる動き　*/
#page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(100px);
    }
}

#page-top i {
    margin: 0;
}



.banners {
    margin: 0 5rem 5rem;
}

.banners ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 2rem;
}


.banners ul li {
    width: calc(100% / 4 - 1rem);
    background: #FAFAFA;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

/*.banners ul:last-of-type:after {
    display: block;
    content: "";
    width: calc(100% / 4 - 1rem);
}*/



.banners ul li a {
    padding: 1.5rem 0.8rem;
    display: block;
    width: 100%;
    color: var(--color01);
}

.banners ul li .ruby {
    display: block;
    font-size: 0.7rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid !important;
}

.information {
    margin: 0 5rem;
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
}

.information dl {
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--color01);
    color: var(--color01);
}

.information dl:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.information dl[data-new=true] dd::before {
    content: "NEW";
    display: inline-block;
    background: var(--color05);
    color: #fff;
    margin-right: 0.5rem;
    padding: 0rem 1rem;
    font-size: 0.8rem;
    /* vertical-align: text-top; */
    border-radius: 3px;
    font-weight: bold;
}

.information dl dt {
    margin-right: 1rem;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    min-width: 13rem;
}

.information dl dt:after {
    content: '/';
    padding-left: 1rem;
}

.information dl dt,
.information dl dd {
    line-height: 1.8;
}

/* ----- ボタン風リンク ----- */
.Btn-ish a {
    padding: 0.5rem 1rem;
    /*border: 1px solid var(--color01);*/
    letter-spacing: 0.1rem;
    display: inline-block;
    width: 50%;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--color01);
    color: #FFF;
    outline: none;
}

/* ----- modaal ----- */
.modaal-outer-wrapper .modaal-container {
    max-width: 640px !important;
}


/* ----- FS RESULT -----*/
.fsResult {
    margin: 0 5rem;
}

#taikaiResultOutputArea {
    margin: 3rem 0;
}

.taikaiResultOutputTitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    letter-spacing: 0.1rem;
    color: var(--color01);
}

.slick-track {
    display: flex;
    align-items: stretch;
}

.slick-slide {
    float: none;
    height: auto;
    padding: 0 .5rem;
}

.slick-slider {
    margin-bottom: 3rem;
}

.slick-slide > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*height: 100%;*/
    min-height: 8rem;
    padding: .5rem 1rem;
    color: var(--color01);
    /*background-color: rgb(0 0 0 / 17%);*/
    background: #FAFAFA;
    border-radius: .5rem;
    box-sizing: border-box;
}

.gallery-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-list-item {
    width: calc(100% / 6);
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.gallery-list-item::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.gallery-list-item img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: none;
    transition: .3s;
}

.gallery-list-item a:hover img {
    opacity: 0.4;
}

.gallery-list-item[data-direction="row"] img {
    height: 100%;
}

.gallery-list-item[data-direction="column"] img {
    width: 100%;
}

/* .title0n */
.title01 {
    font-weight: bold;
    font-size: 1.1rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5em;
    margin: 0 0 0.5em;
}

ul + .title01 {
    margin-top: 2rem;
}

.title01 + ul {
    line-height: 1.5;
}

.title01 + ul li {
    margin-bottom: 0.5rem;
    /* letter-spacing: -0.01em; */
}

.title01::before {
    content: "■";
}

/* .style0n */
.style01 {
    display: block;
    width: 100%;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 0.5rem 0;
    padding: 0.5rem 0;
    text-indent: 0;
    font-weight: bold;
    color: var(--color01);
    opacity: 0.9;
}

.style01.border-bottom-0 {
    margin-bottom: -0.5rem;
}

figure img {
    display: block;
}

.figureGroup {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin: 0.5rem 0;
}

.figureGroup figure {
    display: block;
}

.figureGroup figcaption {
    font-size: 0.8rem;
    letter-spacing: -0.05em;
    word-break: break-all;
}

.figureGroup.row-cols-3 figure {
    width: 33.3333333333%;
}

.border-1 {
    border: 1px solid #eee;
}

.border-top-1 {
    border-top: 1px solid #eee;
}

.border-bottom-1 {
    border-bottom: 1px solid #eee;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.border-left-1 {
    border-left: 1px solid #eee;
}

.border-right-1 {
    border-right: 1px solid #eee;
}

/* animate.css */
@keyframes bounceIn {

    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}