@charset "UTF-8";
/* ------------------------------------------------
                    共通css
--------------------------------------------------- */
/*---------- header ----------*/
header {
    width: 100%;
	position: relative;
}
header.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}
header .gnav-wrap{
	display: block
}
header .gnav-wrap ul#gnav {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
header .gnav-wrap ul#gnav li {
	width: 25%;
	border-right: 1px solid #fff;
}
header .gnav-wrap ul#gnav li:last-child {
	border-right: none;
}
header .gnav-wrap ul#gnav li a {
	width: 100%;
	height: 60px;
    display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
    font-weight: 700;
	position: relative;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
header .gnav-wrap ul#gnav li a.gnav-arrow {
	background: #3a302e;
}
header .gnav-wrap ul#gnav li a.gnav-entry{
    background: #f1af00;
}
header .gnav-wrap ul#gnav li a.gnav-arrow::after,
header .gnav-wrap ul#gnav li a.gnav-entry::after{
	content: '';
	width: 18px;
	height: 18px;
	background: url("../img/icon_arrow_down.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 9px);
	right: 15px;
}
header .gnav-wrap ul#gnav li a.gnav-contact {
	background: #da4614;
}
header .gnav-wrap ul#gnav li a.gnav-contact::after {
	content: '';
	width: 20px;
	height: 20px;
	background: url("../img/icon_mail.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 10px);
	right: 15px;
}
@media (max-width: 900px) {
	header .gnav-wrap ul#gnav li a {
		padding-right: 1em;
		font-size:0.9em
	}
	header .gnav-wrap ul#gnav li a.gnav-arrow::after,
	header .gnav-wrap ul#gnav li a.gnav-entry::after,
	header .gnav-wrap ul#gnav li a.gnav-contact::after {
		right: 8px;
	}
}
@media (max-width: 768px) {
    header {
        width: 100%;
		height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
    }
	
	
	
    header .gnav-wrap {
        width: 100%;
        height: 100%;
        padding: 0;
        background: #e7dfe9;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 998;
		display: none
    }
    header .gnav-wrap ul#gnav {
        width: 100%;
        padding: calc(5vw + 60px) 0 0;
        display: block;
        position: relative;
        z-index: 999;
    }
	header .gnav-wrap ul#gnav li {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #3a302e;
	}
	header .gnav-wrap ul#gnav li:first-child {
		border-top: 1px solid #3a302e;
	}
	header .gnav-wrap ul#gnav li a {
		width: 100%;
		height: auto;
		padding: 4vw;
		display: block;
		color: #3a302e;
		text-align: left;
	}
	header .gnav-wrap ul#gnav li a.gnav-arrow {
		background: none;
	}
    header .gnav-wrap ul#gnav li a.gnav-entry{
    background:none;
}
	header .gnav-wrap ul#gnav li a.gnav-arrow::after,
    header .gnav-wrap ul#gnav li a.gnav-entry::after{
		content: '';
		width: 4vw;
		height: 4vw;
		background: url("../img/icon_arrow_down_black.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 2vw);
		right: 4vw;
	}
	header .gnav-wrap ul#gnav li a.gnav-contact {
		background: none;
		color: #da4614;
	}
	header .gnav-wrap ul#gnav li a.gnav-contact::after {
		content: '';
		width: 4vw;
		height: 4vw;
		background: url("../img/icon_mail_orange.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 2vw);
		right: 4vw;
	}
    header .btn-menu-wrap {
        width: 25px;
        height: 20px;
        position: absolute;
        top: calc(50% - 10px);
        right: 20px;
        text-align: right;
    }
    header #sp-menu-trigger{
        width: 25px;
        height: 20px;
        display: inline-block;
        position: relative;
        cursor: pointer;
        z-index: 9999999;
    }
    header #sp-menu-trigger span {
        width: 100%;
        height: 2px;
        background: #da4614;
        position: absolute;
        left: 0;
    }
    header #sp-menu-trigger span:nth-of-type(1) {
        top: 0;
    }
    header #sp-menu-trigger span:nth-of-type(2) {
        top: calc(50% - 1px);
    }
    header #sp-menu-trigger span:nth-of-type(3) {
        bottom: 0;
    }
    header #sp-menu-trigger.is-active span:nth-of-type(1) {
        -webkit-transform: translateY(9px) rotate(-45deg);
        transform: translateY(9px) rotate(-45deg);
    }
    header #sp-menu-trigger.is-active span:nth-of-type(2) {
        opacity: 0;
    }
    header #sp-menu-trigger.is-active span:nth-of-type(3) {
        -webkit-transform: translateY(-9px) rotate(45deg);
        transform: translateY(-9px) rotate(45deg);
    }

}


/*---------- footer ----------*/
footer {
    width: 100%;
}

footer .footer-sns-wrap {
	width: 100%;
	display: flex;
}
footer .footer-sns-wrap .footer-sns-box {
	width: 50%;
	padding: 20px;
	background: #444246;
}
footer .footer-sns-wrap .footer-sns-box:first-child {
	border-right: 1px solid #fff;
}
footer .footer-sns-wrap .footer-sns-box a {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
}
footer .footer-sns-wrap .footer-sns-box a img {
	width: 100%;
	max-width: 50px;
	margin: 0 auto 15px;
}

footer .organizer {
	margin: 0 auto 60px;
	text-align: center;
	font-size: 17px;
	font-weight: 400;
	line-height: 1;
}
footer .organizer img {
	max-width: 160px;
	margin: 0 auto 50px;
}
footer .footer-links {
	width: 90%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
footer .footer-links li {
	margin: 0 20px;
}
footer .footer-links li a {
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
}

footer .copyright {
    width: 100%;
	margin-top: 80px;
    padding: 20px;
	background: #000;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

@media (max-width: 768px) {
	footer {
		width: 100%;
	}

	footer .footer-sns-wrap {
		width: 100%;
		display: flex;
	}
	footer .footer-sns-wrap .footer-sns-box {
		width: 50%;
		padding: 0;
		background: #444246;
	}
	footer .footer-sns-wrap .footer-sns-box:first-child {
		border-right: 1px solid #fff;
	}
	footer .footer-sns-wrap .footer-sns-box a {
		width: 100%;
		padding: 5vw 0;
		font-size: 3.6vw;
	}
	footer .footer-sns-wrap .footer-sns-box a img {
		width: 15%;
		max-width: 50px;
		margin: 0 auto 2vw;
	}

	footer .organizer {
		margin: 0 auto 16vw;
		text-align: center;
		font-size: 3.6vw;
	}
	footer .organizer img {
		max-width: 160px;
		margin: 0 auto 10vw;
	}
	footer .footer-links {
		width: 90%;
		margin: 0 auto;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	footer .footer-links li {
		margin: 0 4vw;
	}
	footer .footer-links li a {
		font-size: 3.2vw;
	}

	footer .copyright {
		width: 100%;
		margin-top: 16vw;
		padding: 4vw 2vw;
		font-size: 3.0vw;
	}
}


/*---------- コンテンツ レイアウト ----------*/
.cont-inn {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.flex-box {
    display: flex;
}


@media (max-width: 768px) {
    .cont-inn {
        width: 90%;
        max-width: initial;
        margin: 0 auto;
        position: relative;
    }
}


/*---------- テキスト ----------*/
.txt-caption {
    font-size: 14px;
	color: #575757;
}
.txt-indent {
	padding-left: 1em;
	text-indent: -1em;
	display: inline-block;
}
.txt-bold {
	font-weight: 700;
}
.txt-red, 
a.txt-red {
	color: #da4614;
}
.txt-marker {
	background: linear-gradient(transparent 55%, #f0ff00 0%);
	display: inline;
	padding: 0 2px 2px;
}


@media (max-width: 768px) {
    .txt-caption{
        font-size: 3.2vw;
    }
}


/*---------- ボタン ----------*/
a.btn-gray {
	width: 90%;
	max-width: 220px;
	padding: 10px 25px;
	display: block;
	text-align: center;
	border-radius: 40px;
	background: #444246;
	color: #fff;
	font-weight: 400;
	line-height: 1;
	position: relative;
}
a.btn-blank::after {
	content: '';
	width: 14px;
	height: 14px;
	background: url("../img/icon_blank.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 7px);
	right: 10px;
}

a.is-disabled {
	pointer-events: none;
	position: relative;
}
a.is-disabled::before {
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(120,120,120,0.7);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
a.is-disabled::after {
	content: 'coming soon...';
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
	a.bnr-entry {
		width: 90%;
		max-width: 356px;
		margin: 2em auto 1em;
		display: block;
	}
	a.bnr-entry-l {
		width: 100%;
		max-width: 584px;
		margin: 2em auto 1em;
		display: block;
	}

@media (max-width: 960px) {

	/*a.bnr-entry {
		width: 100%;
		max-width: 356px;
		margin: 0 auto;
		display: block;
	}*/
}

@media (max-width: 768px) {
	a.btn-gray {
		max-width: initial;
		padding: 2vw 6vw;
		border-radius: 8vw;
	}
	a.btn-blank::after {
		content: '';
		width: 3vw;
		height: 3vw;
		background: url("../img/icon_blank.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 1.5vw);
		right: 2vw;
	}
}


/*---------- フォーム ----------*/
input,
button,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
    box-sizing: border-box;
}

input[type='text'],
textarea {
    width: 100%;
    padding: 14px;
    background: #fff;
    border: 1px solid #BFBFBF;
    resize: vertical;
}
textarea {
    height: 170px;
}
input[type='checkbox'],
input[type='radio'] {
    display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
    cursor: pointer;
}

input[type='date']{
    width: 100%;
    position: relative;
}
input[type='date']::-webkit-calendar-picker-indicator {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
}

select {
    width: 100%;
}
.select-wrap{
    width: 48%;
    padding: 4px 0 4px 10px;
    background: #fff;
    border: 1px solid #BFBFBF;
    position: relative;
}
.select-wrap::after {
    content: "";
    width: 12px;
    height: 7px;
    background: url("../img/common/arrow_gray01.svg") 0 0 no-repeat;
    background-size: 100%;
    position: absolute;
    top: calc(50% - 3.5px);
    right: 10px;
}
.select-wrap.w-100 {
    margin: 0 auto;
}

.date-input-wrap{
    width: 100%;
    padding: 4px 0 4px 10px;
    background: #fff;
    border: 1px solid #BFBFBF;
    position: relative;
}
.date-input-wrap::after {
    content: "";
    width: 12px;
    height: 7px;
    background: url("../img/common/arrow_gray01.svg") 0 0 no-repeat;
    background-size: 100%;
    position: absolute;
    top: calc(50% - 3.5px);
    right: 10px;
}

select::-ms-expand {
    display: none;
}

input::placeholder, 
textarea::placeholder { color: #A8A8A8;}
/* IE */
input:-ms-input-placeholder, 
textarea:-ms-input-placeholder { color: #A8A8A8;}
/* Edge */
input::-ms-input-placeholder, 
textarea::-ms-input-placeholder { color: #A8A8A8;}


.radio-wrap label {
    position: relative;
    padding-left: 30px;
}

.radio-wrap label::before {
    content: "";
    width: 25px;
    height: 25px;
    display: block;
    box-sizing: border-box;
    border-radius: 50%;
    border: 1px solid #ADADAD;
    position: absolute;
    top: 0;
    left: 0;
}

.radio-wrap input:checked + label::before {
    border: 1px solid #0092E5;
}
.radio-wrap input:checked + label::after {
    content: "";
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 50%;
    background: #0092E5;
    position: absolute;
    top: 5px;
    left: 5px;
}

@media (max-width: 768px) {
    input[type='text'],
    textarea {
        width: 100%;
        padding: 2vw;
        background: #fff;
        border: 1px solid #BFBFBF;
        resize: vertical;
    }
    textarea {
        height: 40vw;
    }
    .select-wrap{
        width: 48%;
        padding: 1vw 0 1vw 2vw;
        background: #fff;
        border: 1px solid #BFBFBF;
        position: relative;
    }
    .select-wrap::after {
        content: "";
        width: 2.4vw;
        height: 2vw;
        background: url("../img/common/arrow_gray01.svg") center center no-repeat;
        background-size: 100%;
        position: absolute;
        top: calc(50% - 1vw);
        right: 2vw;
    }

    select::-ms-expand {
        display: none;
    }

    input::placeholder, 
    textarea::placeholder { color: #A8A8A8;}
    /* IE */
    input:-ms-input-placeholder, 
    textarea:-ms-input-placeholder { color: #A8A8A8;}
    /* Edge */
    input::-ms-input-placeholder, 
    textarea::-ms-input-placeholder { color: #A8A8A8;}


    .radio-wrap label {
        position: relative;
        padding-left: 6vw;
    }

    .radio-wrap label::before {
        content: "";
        width: 5vw;
        height: 5vw;
        display: block;
        box-sizing: border-box;
        border-radius: 50%;
        border: 1px solid #ADADAD;
        position: absolute;
        top: 0;
        left: 0;
    }

    .radio-wrap input:checked + label::before {
        border: 1px solid #0092E5;
    }
    .radio-wrap input:checked + label::after {
        content: "";
        width: 3vw;
        height: 3vw;
        display: block;
        border-radius: 50%;
        background: #0092E5;
        position: absolute;
        top: 1vw;
        left: 1vw;
    }
}


