@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap');

@charset "UTF-8";

/*----------------------
 * 1. GENERAL
 *   1.1  Margin
 *   1.2  Text
 *   1.3  Titles and Subtitles
 *   1.4  Buttons
 *   1.5 Other Elements
 *        1.5.1 sns icon
 *        1.5.2 page top
 * 2. HEADER
 * 3. CONTENT
 * 4. FOOTER
 * 5. INTERACTIONS
 */

/*-------------------------------
 * 1.GENERAL
 * ----------------------------*/
html,
body {
	overflow-x: hidden;
}
body {
    font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", serif;
    margin: 0;
    padding: 0;
    font-size: 20px;
	background: #470000;
	color: #fff;
	line-height: 1.8;
	overflow: hidden;
}
@media (max-width: 767.98px) {
    body {
        font-size: calc(13px + 5 * (100vw - 320px) / 447);
    }
}

a {
    color: #000;
    text-decoration: none;
}
a:hover {
    cursor: pointer;
    color: #000;
    text-decoration: underline;
}
a:focus {
  outline: none;
  overflow: hidden;
  text-decoration: none;
}

a[href^="tel:"] {
	cursor: default;
	text-decoration: none;
}
a[href^="tel:"]:hover {
	text-decoration: none;
}
@media (max-width: 767.98px) {
	a[href^="tel:"] {
		cursor: pointer;
	}
}

hr {
     border-top: 1px solid #000;
     margin-top: 20px;
     margin-bottom: 20px;
}
@media (max-width: 767.98px) {
    hr {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

strong {
    font-weight: 600;
}

.small {
    display: inline-block;
    font-size: 16px;
}
@media (max-width: 767.98px) {
    .small {
        font-size: calc(11px + 3 * (100vw - 320px) / 447);
    }
}

img {
    display: block;
}

main {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #000;
    -webkit-animation: fadeIn 1s linear both;
    animation: fadeIn 1s linear both;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.inner {
    max-width: 840px;
    margin: 0 auto;
}

/* 1.1  Margin
 * ------------------------------*/
.mt00 { margin-top: 0 !important; }
.mt05 { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px !important; }
.mt50 { margin-top: 50px !important; }
.mt60 { margin-top: 60px !important; }
.mt70 { margin-top: 70px !important; }
.mt80 { margin-top: 80px !important; }

.mb00 { margin-bottom: 0 !important; }
.mb05 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb70 { margin-bottom: 70px !important; }
.mb80 { margin-bottom: 80px !important; }

@media (max-width: 767.98px) {
    .mt00-xs {
        margin-top: 0 !important;
    }
    .mt10-xs {
        margin-top: 10px !important;
    }
    .mt20-xs {
        margin-top: 20px !important;
    }
    .mt30-xs {
        margin-top: 30px !important;
    }
    .mt40-xs {
        margin-top: 40px !important;
    }
    .mt50-xs {
        margin-top: 50px !important;
    }
    .mb00-xs {
        margin-bottom: 0 !important;
    }
    .mb10-xs {
        margin-bottom: 10px !important;
    }
    .mb20-xs {
        margin-bottom: 20px !important;
    }
    .mb30-xs {
        margin-bottom: 30px !important;
    }
    .mb40-xs {
        margin-bottom: 40px !important;
    }
    .mb50-xs {
        margin-bottom: 50px !important;
    }
}

/* 1.2 Text
 * ------------------------------*/
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
@media (max-width: 767.98px) {
     .text-left-xs {
        text-align: left !important;
    }
    .text-center-xs {
        text-align: center !important;
    }
    .text-right-xs {
        text-align: right !important;
    }
}

.txt-red,
.txt-red a,
.txt-red a:hover {
    color: #f2142b !important;
}
.txt-red-light,
.txt-red-light a,
.txt-red-light a:hover {
    color: #ff4c27 !important;
}
.txt-blue,
.txt-blue a,
.txt-blue a:hover {
    color: #0090ff !important;
}

.txt-gothic {
    font-family: 'Noto Sans JP', sans-serif !important;
}
.txt-min {
    font-family: 'Noto Serif JP', serif !important;
}

a.txt-underline,
.txt-underline {
    text-decoration: underline !important;
}
a.txt-underline:hover {
    text-decoration: none !important;
}

.txt-indent {
    display: inline-block;
    text-indent: -1em;
    padding-left: 1em;
}

.f10 { font-size: 10px !important; }
.f11 { font-size: 11px !important; }
.f12 { font-size: 12px !important; }
.f13 { font-size: 13px !important; }
.f14 { font-size: 14px !important; }
.f15 { font-size: 15px !important; }
.f16 { font-size: 16px !important; }
.f17 { font-size: 17px !important; }
.f18 { font-size: 18px !important; }
.f19 { font-size: 19px !important; }
.f20 { font-size: 20px !important; }
.f21 { font-size: 21px !important; }
.f22 { font-size: 22px !important; }
.f23 { font-size: 23px !important; }
.f24 { font-size: 24px !important; }
.f25 { font-size: 25px !important; }
@media (max-width: 991.98px) {
    .f18, .f19 {
        font-size: 16px !important;
    }
    .f20, .f21 {
        font-size: 17px !important;
    }
    .f22, .f23 {
        font-size: 18px !important;
    }
    .f24, .f25 {
        font-size: 20px !important;
    }
}
@media (max-width: 767.98px) {
    .f13, .f14 {
        font-size: 12px !important;
    }
    .f15, .f16 {
        font-size: 13px !important;
    }
    .f17, .f18 {
        font-size: 14px !important;
    }
    .f19, .f20, .f21 {
        font-size: 15px !important;
    }
    .f22, .f23, .f24, .f25 {
        font-size: 16px !important;
    }
    .f15-xs {
        font-size: 15px !important;
    }
    .f14-xs {
        font-size: 14px !important;
    }
    .f13-xs {
        font-size: 13px !important;
    }
    .f12-xs {
        font-size: 12px !important;
    }
}

/* 1.3 Titles and Subtitles
 * ------------------------------*/
h1, h2, h3, h4 {
    margin: 0;
    font-weight: 600;
    line-height: 1.5;
}

/* 1.4 Buttons
 * ------------------------------*/
.btn {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 100px;
    font-size: 36px;
    /*font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", serif !important;*/
    font-family: 'Noto Serif JP', serif !important;
    font-weight: 500;
    line-height: 1;
    padding: 30px 10px 32px;
    box-sizing: border-box;
    color: #fff;
    background: #c10001;
    outline: none;
    transition: all .3s;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
}
.btn:hover,
.btn:focus,
.btn:active {
  color: #fff !important;
  text-decoration: none;
  background: #dd0000;
}
.btn:focus {
    outline: none;
    overflow: hidden;
    text-decoration: none;
}
@media (max-width: 991.98px) {
    .btn {
        font-size: 30px;
    }
}
@media (max-width: 767.98px) {
    .btn {
        padding: 18px 10px 20px;
        font-size: calc(17px + 3 * (100vw - 320px) / 447);
        background: #ff0001;
        border-radius: 60px;
    }
}

/* 1.5 Other Elements
 * ------------------------------*/
/* 1.5.1 sns Icon ------------*/
#sns-list {
    width: 50px;
    height: 150px;
    padding: 10px 10px 10px 10px;
    position: fixed;
    top: 220px;
    right: 0;
    margin: 0;
    background: #000;
    color: #fff;
    text-align: center;
    z-index: 10010 !important;
    box-sizing: border-box;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
#sns-list .sub {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    font-family: "游ゴシック",YuGothic, sans-serif !important;
}

#sns-list .fa-facebook,
#sns-list .fa-twitter {
	font-size: 21px !important;
    color: #fff !important;
    margin-top: 20px;
    display: block;
}
#sns-list .fa-facebook:hover,
#sns-list .fa-twitter:hover {
    text-decoration: none !important;
    opacity: 0.8;
    transition: 0.5s;
}
@media only screen and (max-width: 767px) {
    #sns-list {
        display: none;
    }
}

.knt_general-set .icon_social {
    padding: 0;
    text-align: right;
}
.knt_general-set .icon_social .line {
    display: inline-block;
    line-height: 23px;
}
.knt_general-set .icon_social .line img {
    vertical-align: top;
}
.knt_general-set .icon_social iframe {
    max-width: 150px !important;
}
.knt_general-set .icon_social .twitter-share-button {
    height: 25px !important;
}

.social {
    margin: 0 auto;
    max-width: 400px;
}
.social .icon_social {
    position: relative;
    right: 0;
    top: 0;
    z-index: 3;
}
.knt_general-set,
.knt_general-set .icon_social .socialBoxON {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
}
.knt_general-set .icon_social .socialBoxON {
	margin-bottom:30px;
}
.knt_general-set .icon_social .socialBoxON > iframe {
	margin:0 5px;
}

/* 1.5.2 page top ------------*/
#pagetop {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 20px;
    width: 91px;
    height: 91px;
    z-index: 1000;
    background: url(../img/pagetop.png) 50% 50% no-repeat;
    background-size: contain;
    text-indent: 100% !important;
	white-space: nowrap;
	overflow: hidden;
}
#pagetop:hover {
    cursor: pointer;
    opacity: 0.8;
    transition: 0.5s;
}
@media (max-width: 991.98px) {
    #pagetop {
        width: 60px;
        height: 60px;
    }
}
@media (max-width: 767.98px) {
    #pagetop {
        bottom: 20px;
    }
}

/*-------------------------------
 * 2. HEADER
 * ----------------------------*/
header {
    width: 100%;
    height: 650px;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 0;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}
header .main {
    margin: 0;
    max-width: 1100px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    margin: auto;
    -webkit-animation: fadeIn 0.8s linear both;
    animation: fadeIn 0.8s linear both;
}
header .expo {
    width: 649px;
    height: 306px;
    background: url(../img/expo.png?=221114) 0 0 no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    z-index: 2;
    text-indent: -9999px;
    -webkit-animation: fadeIn 0.8s linear both;
    animation: fadeIn 0.8s linear both;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
header .expo a {
    display: block;
    width: 649px;
    height: 306px;
}
header .logo {
    width: 127px;
    height: 114px;
    background: url(../img/logo.png) 0 0 no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 30px;
    margin: 0;
    text-indent: 100% !important;
	white-space: nowrap;
	overflow: hidden;
    -webkit-animation: fadeIn 0.8s linear both;
    animation: fadeIn 0.8s linear both;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
header .logo a {
    display: block;
    width: 127px;
    height: 114px;
}
header .presents {
    width: 257px;
    height: 26px;
    background: url(../img/presents.png) 0 0 no-repeat;
    background-size: contain;
    position: absolute;
    top: 60px;
    left: 160px;
    margin: 0;
    text-indent: 100% !important;
	white-space: nowrap;
	overflow: hidden;
    -webkit-animation: fadeIn 0.8s linear both;
    animation: fadeIn 0.8s linear both;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
header .presents a {
    display: block;
    width: 257px;
    height: 26px;
}
@media (max-width: 991.98px) {
    header {
        height: 530px;
    }
    header .expo,
    header .expo a {
        width: 500px;
        height: 236px;
    }
}
@media (max-width: 767.98px) {
    header {
        height: 480px;
    }
    header .expo {
        width: 100%;
        height: 50px;
        background: url(../img/expo-sp.png?=221114) top center no-repeat;
        background-size: cover;
        top: 0;
    }
    header .expo a {
        width: 100%;
        height: 50px;
    }
    header .logo {
        width: 100px;
        height: 90px;
        background-image: url(../img/logo-sp.png) 0 0;
        top: 50px;
        left: 0;
        right: 0;
        margin: auto;
    }
    header .logo a {
        width: 100px;
        height: 90px;
    }
    header .presents {
        width: 200px;
        height: 20px;
        background-image: url(../img/presents-sp.png);
        top: 140px;
        left: 0;
        right: 0;
        margin: auto;
    }
    header .presents a {
        width: 200px;
        height: 20px;
    }
}
@media (max-width: 575.98px) {
    header {
        height: 360px;
    }
    header .logo {
        top: 35px;
    }
    header .presents {
        top: 125px;
    }
}
@media (max-width: 380.98px) {
    header {
        height: 340px;
    }
}
@media (max-width: 320.98px) {
    header {
        height: 310px;
    }
}

/*-------------------------------
 * 3. CONTENT
 * ----------------------------*/
.icon-num {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    line-height: 1;
}
.icon-num span {
    display: inline-block;
    font-size: 28px;
    margin-top: 4px;
    color: #cf0001;
    font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", serif !important;
}
@media (max-width: 767.98px) {
    .icon-num {
        width: 25px;
        height: 25px;
    }
    .icon-num span {
        font-size: 20px;
        margin-top: 3px;
    }
}
@media (max-width: 575.98px) {
    .icon-num {
        width: 18px;
        height: 18px;
    }
    .icon-num span {
        font-size: 15px;
        margin-top: 1px;
    }
}

/*----- info -----*/
.info-wrap {
    margin: 0;
    padding-top: 30px;
    padding-bottom: 60px;
    background: #470000;
	color: #fff;
}
.info-wrap .tts {
    font-size: 26px;
    font-weight: 400;
    text-align: center;
    margin: 50px 0 0;
    line-height: 1.8;
}
.info-wrap .tts strong {
    font-size: 28px;
}
.info-wrap .tts img {
    display: block;
    padding-bottom: 10px;
}
.info-wrap .list {
    max-width: 810px;
    margin: 30px auto 0;
}
.info-wrap .list dl {
    width: 100%;
    display: table;
    margin: 0 0 10px;
    padding: 0;
    font-size: 26px;
}
.info-wrap .list dl dt {
    display: table-cell;
    width: 55px;
    vertical-align: top;
    padding-top: 5px;
}
.info-wrap .list dl dd {
    display: table-cell;
    width: auto;
    vertical-align: top;
}
@media (max-width: 991.98px) {
    .info-wrap .list {
        max-width: 100%;
    }
    .info-wrap .list dl {
        font-size: 20px;
    }
    .info-wrap .list dl dt {
        padding-top: 2px;
    }
}
@media (max-width: 767.98px) {
    .info-wrap {
        padding-top: 20px;
        padding-bottom: 30px;
    }
    .info-wrap .tts {
        font-size: calc(13px + 3 * (100vw - 320px) / 447);
        margin-top: 30px;
        letter-spacing: -0.024em;
    }
    .info-wrap .tts strong {
        font-size: calc(14px + 4 * (100vw - 320px) / 447);
    }
    .info-wrap .list {
        margin: 20px auto 0;
    }
    .info-wrap .list dl {
        font-size: calc(13px + 3 * (100vw - 320px) / 447);
        margin-bottom: 5px;
    }
    .info-wrap .list dl dt {
        width: 30px;
        padding-top: 5px;
    }
}

.info-wrap .waku-box {
    margin: 35px auto 5px;
    background: #fff;
    border: 7px solid #0090ff;
    color: #000;
    font-family: 'Noto Sans JP', sans-serif;
}
.info-wrap .waku-box.red {
    border-color: #ff4c27;
}
.info-wrap .waku-box .sub {
    background: #0090ff;
    color: #fff;
    padding-bottom: 9px;
}
.info-wrap .waku-box.red .sub {
    background: #ff4c27;
}
.info-wrap .waku-box .subsub {
    font-size: 24px;
    text-align: center;
    font-weight: 500;
    margin: 0 0 15px;
}
.info-wrap .waku-box .box-inner {
    padding: 22px 30px 30px;
}
.info-wrap .waku-box dl {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    margin: 0;
    padding: 0;
}
.info-wrap .waku-box dl dt {
    width: 18%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-weight: 600;
}
.info-wrap .waku-box dl dd {
    width: 79%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.info-wrap .waku-box dl p {
    margin: 0;
}
.info-wrap .waku-box .dd-box {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
}
.info-wrap .waku-box .dd-box div {
    width: 48%;
    box-sizing: border-box;
    text-indent: -1em;
    padding-left: 1em;
}
@media (max-width: 991.98px) {
    .info-wrap .waku-box dl dt {
        width: 22%;
    }
    .info-wrap .waku-box dl dd {
        width: 75%;
    }
}
@media (max-width: 767.98px) {
    .info-wrap .waku-box {
        border-width: 5px;
    }
    .info-wrap .waku-box .sub {
        padding-bottom: 7px;
    }
    .info-wrap .waku-box .sub img {
        height: 25px;
        width: auto;
    }
    .info-wrap .waku-box .subsub {
        font-size: calc(14px + 3 * (100vw - 320px) / 447);
        margin-bottom: 7px;
    }
    .info-wrap .waku-box {
        margin-top: 25px;
    }
    .info-wrap .waku-box .box-inner {
        padding: 13px 10px 15px;
    }
    .info-wrap .waku-box dl {
        font-size: calc(13px + 3 * (100vw - 320px) / 447);
    }
    .info-wrap .waku-box dl dt {
        width: 29%;
    }
    .info-wrap .waku-box dl dd {
        width: 70%;
    }
    .info-wrap .waku-box .dd-box div {
        width: 100%;
    }
}

.info-wrap .deadline {
    background: #FFCB02;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    padding: 4px 5px 7px;
    margin: 20px auto 0;
    line-height: 1.5;
}
.info-wrap .btn {
    margin-top: 30px;
}
@media (max-width: 767.98px) {
    .info-wrap .deadline {
        font-size: calc(14px + 3 * (100vw - 320px) / 447);
        margin-top: 15px;
        padding-top: 3px;
    }
    .info-wrap .btn {
        margin-top: 16px;
    }
}

/*----- guide -----*/
.guide-wrap {
    margin: 0;
    padding-top: 45px;
    padding-bottom: 10px;
    background: #e7eaec;
    color: #000;
}
.guide-wrap dl {
    width: 830px;
    margin: 0 auto 16px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}
.guide-wrap dl dt {
    width: 25%;
    font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", serif !important;
    font-size: 23px;
    line-height: 1.5;
}
.guide-wrap dl dd {
    width: 75%;
    letter-spacing: 0.05em;
}
.guide-wrap dl.day {
    font-size: 45px;
    line-height: 1;
    margin-top: -5px;
}
.guide-wrap dl.day .week {
    display: inline-block;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #dd0000;
    color: #fff;
    text-align: center;
    vertical-align: -5%;
}
.guide-wrap dl.day .week span {
    display: inline-block;
    font-size: 30px;
    vertical-align: 24%;
}
.guide-wrap dl.price {
    margin-bottom: 5px;
}
.guide-wrap dl.place dd {
    font-size: 40px;
    line-height: 1;
}
.guide-wrap dl.price dd {
    margin-top: -10px;
    font-size: 31px;
    letter-spacing: 0;
    line-height: 1.8;
}
.guide-wrap dl.deadline dd {
    margin-top: -10px;
    font-size: 31px;
    color: #dd0000;
}
.guide-wrap dl.deadline dd .txt-add {
    display: block;
    margin-top: -5px;
    font-size: 24px;
}
.guide-wrap dl.deadline dd .txt-end {
    display: block;
    font-size: 28px;
}
.guide-wrap dl .small {
    font-size: 15px;
}
@media (max-width: 991.98px) {
    .guide-wrap dl {
        width: 100%;
    }
    .guide-wrap dl dt {
        font-size: 20px;
    }
    .guide-wrap dl.day {
        font-size: 35px;
    }
    .guide-wrap dl.day .week {
        width: 34px;
        height: 34px;
    }
    .guide-wrap dl.day .week span {
        font-size: 25px;
    }
    .guide-wrap dl.place dd {
        font-size: 32px;
    }
    .guide-wrap dl.price dd {
        font-size: 25px;
    }
    .guide-wrap dl.deadline dd {
        font-size: 25px;
        margin-top: -7px;
    }
    .guide-wrap dl.deadline dd .txt-add {
        font-size: 20px;
    }
    .guide-wrap dl.deadline dd .txt-end {
        font-size: 24px;
    }
}
@media (max-width: 767.98px) {
    .guide-wrap dl dt {
        font-size: 17px;
        width: 20%;
    }
    .guide-wrap dl dd {
        width: 80%;
    }
    .guide-wrap dl.day {
        font-size: 30px;
    }
    .guide-wrap dl.day .week {
        vertical-align: 8%;
    }
    .guide-wrap dl.day .week span {
        vertical-align: 4%;
    }
    .guide-wrap dl.place dd {
        font-size: 28px;
    }
    .guide-wrap dl.price dd {
        font-size: 20px;
    }
    .guide-wrap dl.deadline dd {
        font-size: 20px;
        margin-top: -7px;
    }
    .guide-wrap dl.deadline dd .txt-add {
        font-size: 17px;
    }
    .guide-wrap dl.deadline dd .txt-end {
        font-size: 22px;
    }
}
@media (max-width: 575.98px) {
    .guide-wrap {
        padding-top: 25px;
        padding-bottom: 15px;
    }
    .guide-wrap dl {
        margin-bottom: 5px;
    }
    .guide-wrap dl dt {
        font-size: 14px;
        width: 26%;
    }
    .guide-wrap dl dd {
        width: 74%;
    }
    .guide-wrap dl.day {
        font-size: 22px;
    }
    .guide-wrap dl.day .week {
        width: 25px;
        height: 25px;
        vertical-align: 10%;
    }
    .guide-wrap dl.day .week span {
        font-size: 17px;
        vertical-align: 4%;
    }
    .guide-wrap dl.place dd {
        font-size: 18px;
    }
    .guide-wrap dl.price dd {
        font-size: 17px;
        margin-top: -5px;
    }
    .guide-wrap dl.deadline {
        margin-top: -8px;
    }
    .guide-wrap dl.deadline dd {
        font-size: 17px;
        margin-top: -5px;
    }
    .guide-wrap dl.deadline dd .txt-add {
        font-size: 14px;
        margin-top: 0;
        line-height: 1.5;
    }
    .guide-wrap dl.deadline dd .txt-add-sp {
        font-size: 16px;
    }
    .guide-wrap dl.deadline dd .txt-end {
        font-size: 15px;
        margin-top: 2px;
    }
    .guide-wrap dl .small {
        font-size: 11px;
    }
}
@media (max-width: 320.98px) {
    .guide-wrap dl.day {
        font-size: 20px;
    }
    .guide-wrap dl.place dd {
        font-size: 17px;
    }
    .guide-wrap dl.deadline dd .txt-add-sp {
        font-size: 13px;
    }
    .guide-wrap dl.deadline dd .txt-add {
        font-size: 12px;
    }
    .guide-wrap dl.deadline dd .txt-end {
        margin-top: 5px;
        font-size: 13px;
    }
}

/*----- btn-wrap -----*/
.btn-wrap-pc {
    margin: 0;
    padding-top: 70px;
    padding-bottom: 70px;
    background: #fff;
    color: #000;
}
.btn-wrap-sp {
    display: none;
}
@media (max-width: 767.98px) {
    .btn-wrap-pc {
        display: none;
    }
    .btn-wrap-sp {
        display: block;
        margin-top: 30px;
        padding: 20px  15px;
        background: #470000;
    }
}

/*----- interview -----*/
.itv-wrap {
    margin: 0;
    padding-top: 60px;
    padding-bottom: 45px;
    background: #e7eaec;
    color: #000;
    font-family: 'Noto Serif JP', serif;
}
.itv-wrap .ttl {
    background: #eb0001;
    color: #fff;
    font-size: 30px;
    text-align: center;
    padding: 7px 5px 9px;
    margin: 0 0 20px;
}
.itv-wrap .sub {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.8;
}
.itv-wrap .subsub {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.8;
    margin: -5px 0 0;
}
.itv-wrap .name {
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    margin: 5px 0;
}
.itv-wrap .name span {
    display: inline-block;
    margin-left: 5px;
    font-size: 16px;
}
@media (max-width: 991.98px) {
    .itv-wrap .ttl {
        font-size: 26px;
    }
    .itv-wrap .sub {
        font-size: 23px;
    }
}
@media (max-width: 767.98px) {
    .itv-wrap {
        padding-top: 30px;
        padding-bottom: 10px;
    }
    .itv-wrap .ttl {
        font-size: calc(14px + 3 * (100vw - 320px) / 447);
        padding: 7px 5px;
        margin-bottom: 15px;
    }
    .itv-wrap .sub {
        font-size: calc(14px + 3 * (100vw - 320px) / 447);
        text-align: center;
    }
    .itv-wrap .subsub {
        font-size: calc(14px + 3 * (100vw - 320px) / 447);
    }
    .itv-wrap .name {
        font-size: calc(15px + 3 * (100vw - 320px) / 447);
    }
    .itv-wrap .name span {
        font-size: calc(12px + 2 * (100vw - 320px) / 447);
    }
}

.itv-wrap .box {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    margin: 30px 0 0;
}
.itv-wrap .box .img-area {
    width: 24%;
    box-sizing: border-box;
}
.itv-wrap .box .txt-area {
    width: 73%;
    box-sizing: border-box;
}
.itv-wrap .box .txt-area .txt {
    line-height: 1.7;
    font-size: 16px;
}
@media (max-width: 767.98px) {
    .itv-wrap .box {
        margin-top: 15px;
    }
    .itv-wrap .box .img-area {
        width: 100%;
    }
    .itv-wrap .box .img-area img {
        max-width: 60%;
    }
    .itv-wrap .box .txt-area {
        width: 100%;
        margin-top: 10px;
    }
    .itv-wrap .box .txt-area .txt {
        font-size: calc(13px + 2 * (100vw - 320px) / 447);
    }
}


/*-------------------------------
 * 4. FOOTER
 * ----------------------------*/
footer {
    margin: 0;
    padding: 50px 0 10px;
    background: #fff;
    color: #000;
    font-size: 20px;
}
footer .sponsor {
    margin: 0 0 40px;
    text-align: center;
    line-height: 2;
}
footer .sponsor span {
    display: inline-block;
    font-size: 16px;
    color: #470000;
}
footer .copy {
    font-size: 15px;
    text-align: center;
    margin: 20px 0 0;
    font-family: "游ゴシック",YuGothic, sans-serif !important;
}
@media (max-width: 767.98px) {
    footer {
        font-size: calc(13px + 3 * (100vw - 320px) / 447);
        padding-top: 25px;
    }
    footer .sponsor {
        margin-bottom: 20px;
        line-height: 1.8;
    }
    footer .sponsor span {
        font-size: calc(12px + 2 * (100vw - 320px) / 447);
    }
    footer .copy {
        font-size: 10px;
        margin-top: 30px;
    }
}

/*-------------------------------
 * 5. INTERACTIONS
 * ----------------------------*/
.opacity:hover {
  opacity: 0.75;
  transition: 0.7s;
}

/*--------- keyframes --------- */
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*-------------------------------
 * 6. NOTICEBAR
 * ----------------------------*/
#knt_noticebar {
    background: #e7eaec;
    width: 100%;
    font-family: "游ゴシック",YuGothic, sans-serif !important;
}
#knt_noticebar p {
    background: url(/common/imgs/i-attention.gif) 3% no-repeat;
    color: #000;
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
    padding: 10px 0;
    text-align: left;
}
@media (max-width: 575.98px) {
    #knt_noticebar p {
        font-size: 11px;
    }
}
