@charset "UTF-8";
@import url(base.css);

html{ scroll-behavior: smooth;scroll-padding-top: 15vw;}
.colRed {color: #ff0000;}
.colBlue {color: #0078ff;}
.colOrange {color: #ff9100;}
.colGreen {color: #30ab49;}

.sizeL {font-size: 1.2rem;}
.sizeM {font-size: 4vw;}
.sizeN {font-size: 1rem;}
.sizeS {font-size: .9rem;}

.fit {
    width: 100%;
    height: auto;}

/*-------------------------------------------------
	++ BASE
-------------------------------------------------*/
body {
    font-size: 3.5vw;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.6;
    margin: 0;
    overflow: hidden;}

#container {
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;}

.cInner {
    display: block;
    clear: both;
    padding: 0 2vw;}

/*
.container {
    display: flex;
    flex-direction: column;
    height: 100vh;

    width: 100vw;}
*/
main {
height: 100vh;
    overflow-y: scroll;}

/*-------------------------------------------------
	++ HEAD
-------------------------------------------------*/
#header {
    background-color: #fff;
    display: flex;
    width: 100%;
    height: 15vw;}
#header h1 {
    width: 50%;
    margin: 0 auto;
    text-align: center;}
#header h1 img {width: 100%;}
#header .history {
    position: absolute;
    top: 1.5vw;
    right: 3vw;}
#header .history img {width: 12vw;}

#header .menuBtn {
    background: #30ab49;
    width: 12vw;
    height: 12vw;
    border-radius: 100%;
    position: absolute;
    top: 1.5vw;
    left: 3vw;}
#header .menuBtn span {
    width: 60%;
    height: .8vw;
    display: inline-block;
    background-color: #FFF;
    position: absolute;
    left: 50%;}
#header .menuBtn span:nth-of-type(1) {
    top: 50%;
    transform: translate(-50%, calc(-50% + 2vw));}
#header .menuBtn span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, -50%);}
#header .menuBtn span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, -50%);}
#header .menuBtn span:nth-of-type(4) {
    top: 50%;
    transform: translate(-50%, calc(-50% - 2vw));}
#header .menuBtn.current span:nth-of-type(1) {
    display: none;}
#header .menuBtn.current span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);}
#header .menuBtn.current span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);}
#header .menuBtn.current span:nth-of-type(4) {
    display: none;}
#header .menuContents {
    display: none;
    background-color: #30ab49;
    width: 100vw;
    height: 100dvh;
    position: fixed;
    right: 0;
    top: 15vw;
    color: #FFF;
    z-index: 9999;}
#header .menuContents ul {
    padding: 10vw 7vw;
    display: flex;
    flex-wrap: wrap;}
#header .menuContents ul li {
    background-color: #ffb000;
    border-radius: 20px;
    text-align: center;
    margin-top: 5vw;}
#header .menuContents ul li img {width: 15vw; margin-bottom: 2vw;}
#header .menuContents ul li a {
    color: #FFF;
    width: 40vw;
    height: 40vw;
    font-size: 4.4vw;
    font-weight: bold;
    line-height: 1em;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;}

/*-------------------------------------------------
	++ CONTENTS
-------------------------------------------------*/
section {padding: 1.5vh 0 2vh 0;}
.bgGreen {background-color: #30ab49;}

section.bgGreenArrow {
    position: relative;
    background-color: #30ab49;
    margin-bottom: 2vw;}
section.bgGreenArrow::before {
    content: " ";
    position: absolute;
    height: 15px;
    width: 10%;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background-color: #30ab49;
    bottom: -14px;
    left: 45%;}

h2 {
    font-size: 4.5vw;
    line-height: 1.3em;
    color: #fff;
    padding-bottom: 0.3em;
    font-weight: bold;
    text-align: center;}
.mgB20 {margin-bottom: 20vw;}
h3 {
    font-size: 3.7vw;
    line-height: 1.5em;
    color: #000;
    font-weight: bold;
    text-align: left;
    padding-bottom: 0.5em;}

.characterBox {
    display: flex;
    flex-wrap: wrap;
    margin: 3% 0;}
.characterItem {
    border-radius: 10px;
    width: 32%;
    margin: 0;
    padding: 0;
    position: relative;}
.characterItem img {
    width: 100%;}
label {
	display: inline-block;
	position: relative;}
.location_checkbox {
	position: absolute;
	right: 5px;
	top:5px;
    width: 1.3em;
    height: 1.3em;}
.location_checkbox + img {border: 1px solid rgba( 0, 0, 0, 0 );}
.location_checkbox:checked + img {
	border: 3px solid #ffff00;
    border-radius: 10px;}
.location_checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    background-color: #fff;
    border-radius: 2px;
    cursor: pointer;}
.location_checkbox:checked {background-color: #fff;}
.location_checkbox:checked::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 15px;
    height: 10px;
    border-bottom: 4px solid #30ab49;
    border-left: 4px solid #30ab49;
    transform: rotate(-45deg);}

.orangeBtn {
    width: 60%;
    background-color: #ffb000;
    border-radius: 30px;
    color: #FFFFFF;
    text-align: center;
    font-weight: bold;
    font-size: 4vw;
    line-height: 2.5em;
    padding: 0;
    margin: 0 auto;}
.orangeBtn a {display: block;}
.orangeBtn a:link,.orangeBtn a:visited {color:#ffffff;text-decoration:none;}
.orangeBtn a:hover,.orangeBtn a:active {color:#ffffff;text-decoration:none;}

.textbox100 {width: 100%;padding: 2%;border-radius: 10px;border: 1px #b5b5b5 solid;margin: 1% 0;}
.textbox1002 {width: 100%;padding: 4% 2%;border-radius: 5px;border: 1px #b5b5b5 solid;margin: 0;}
.txtGray::placeholder {color: #b2b2b2;}

.iconBox {display: flex;}
.iconItem {
    width: 50px;
    margin-left: 2%;}

.txtBox {
    background-color: #fff;
    border-radius: 10px;
    padding: 3%;
    text-align: left;
    font-weight: bold;}

.banner {margin: 2% 0;}
.banner img {width: 100%;}

.discussionBox {display: flex;margin-bottom: 3vw;}
.discussionBox2 {
    display: flex;
    margin-bottom: 3vw;
    border-radius: 8px;
    padding: 7px 10px;
    background-color: #fff;}
.discussionIcon {width: 15%;}
.discussionIcon img {width: 100%;}
.discussionTxt,
.discussionTxt2 {
    position: relative;
    display: inline-block;
    margin: 0 0 0 15px;
    padding: 7px 10px;
    width: 85%;
    color: #000;
    font-size: 16px;
    background: #FFF;
    border-radius: 8px;
    box-sizing: border-box;}
.discussionTxt:before {
    content: "";
    position: absolute;
    top: 7vw;
    left: -24px;
    margin-top: -12px;
    border: 12px solid transparent;
    border-right: 12px solid #FFF;
    z-index: 2;}
.discussionTxt:after {
    content: "";
    position: absolute;
    top: 7vw;
    left: -30px;
    margin-top: -14px;
    border: 14px solid transparent;
    z-index: 1;}
.discussionTxt p,
.discussionTxt2 p {
    margin: 0;
    padding: 0;
    font-size: 3.5vw;
    text-align: left;
    line-height: 1.3em;}
.borderO {border: solid 3px #ffb900;}
.borderO:after {border-right: 14px solid #ffb900;}
.borderB {border: solid 3px #0659ff;}
.borderB:after {border-right: 14px solid #0659ff;}
.borderP {border: solid 3px #ee63d7;}
.borderP:after {border-right: 14px solid #ee63d7;}

.discussionBtn {
    display: flex;}
.discussionContinue {
    width: 46%;
    margin: 0 2%;
    background-color: #ff7b00;
    border-radius: 10px;}
.discussionEnd {
    width: 46%;
    margin: 0 2%;
    background-color: #878787;
    border-radius: 10px;}
.discussionContinue a,
.discussionEnd a {
    height: 17vw;
    margin: 0;
    color: #fff;
    font-weight: bold;
    font-size: 4.5vw;
    display: flex;
    align-items: center;
    justify-content: center;}
.discussionContinue a:link,.discussionContinue a:visited,
.discussionEnd a:link,.discussionEnd a:visited {color:#ffffff;text-decoration:none;}
.discussionContinue a:hover,.discussionContinue a:active,
.discussionEnd a:hover,.discussionEnd a:active {color:#ffffff;text-decoration:none;}

.searchBox {display: flex;}
.searchWaku {width: 85%;}
.searchBtn {width: 13%;}
.searchBtn img {width: 100%;}

.resultBox {
    border: 1px #b5b5b5 solid;
    border-radius: 8px;
    padding: 3%;
    display: flex;
    margin-bottom: 3vw;}
.resultBox p {
    font-weight: bold;
    font-size: 4vw;
    text-align: left;}
.resultBox p span {
    display: block;
    font-weight: normal;
    font-size: 3.5vw;
    text-align: left;
    padding-bottom: 0.3em;}

.e-link {
    display: table;
    background-color: #ffb000;
    color: #fff;
    text-align: center;
    font-weight: bold;
    border-radius: 100px;
    line-height: 1.3em;
    padding: 2vw 7vw;
    margin: 0 auto;
    border: none;
    font-size: 4vw;
    cursor: pointer;}
.e-link2 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffb000;
    color: #fff;
    text-align: center;
    font-weight: bold;
    width: 100%;
    height: 12vw;
    border-radius: 0px;
    line-height: 1.3em;
    padding: 0;
    margin: 0 auto;
    border: none;
    font-size: 4vw;
    cursor: pointer;}

.p-popup {
    display: none;
    z-index: 99999;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);}
.p-popup_in {
    position: absolute;
    left: 0;
    right: 0;
    top: 21%;
    transform: translateX(0%) translateY(-20%);}
.p-popup_list {
    position: relative;
    width: 98%;
    height: 97vh;
    background-color: #30ab49;
    padding: 30px 10px;
    border-radius: 20px;
    margin: 0 auto;
    text-align: center;
    overflow: scroll;}
.e-company {
    font-size: 3.5vw;
    font-weight: normal;
    margin: 5px auto 0 auto;}
.e-name {
    font-size: 4.8vw;
    font-weight: bold;
    margin: 5px auto 0 auto;}
.e-text {
    text-align: left;
    margin: 10px auto;}
.e-close {
    width: 10%;
    position: absolute;
    right: 2%;
    top: 2%;
    border: none;
    background-color: transparent;}
.e-close img {width: 100%;}

.characterIntroBox {
    display: flex;
    flex-wrap: wrap;
    height: 50vh;
    margin: 3% 0;
    overflow: scroll;}
.characterIntroImg {
    width: 32%;
    margin: 0 0 2vw 0;
    padding: 0;
    position: relative;}
.characterIntroImg img {
    width: 100%;}

.characterIntroTxt {
    width: 65%;
    font-weight: normal;
    color: #fff;
    text-align: left;
    font-size: 3vw;}

.optionBtn {
    width: 80%;
    margin: 5vw auto 10vw auto;
    background-color: #30ab49;
    border: 1px #fff solid;
    border-radius: 30px;
    background-image: url("/img/ic_plus.svg");
    background-repeat: no-repeat;
    background-position: left 5vw center;
    background-size: 5vw;}
.optionBtn a {
    display: block;
    color: #FFF;
    font-weight: bold;
    font-size: 4vw;
    line-height: 2.5em;}

.shareBtn {
    width: 15vw;
    position: fixed;
    bottom: 13vw;
    right: 0;
    z-index: 100;}
.shareBtn img {width: 100%;}

#footer {
    position: fixed;
    bottom: 0;}
.footerBox {
    display: flex;
    flex-wrap: wrap;
    color: #fff;
    font-weight: bold;}
.footerItemL {
    width: 100%;
    height: 12vw;
    font-size: 4.5vw;}
.mgt1 {margin-top: 1%;}
.footerItemS {
    width: 49.5%;
    height: 12vw;
    font-size: 3.8vw;
    line-height: 1.2em;}
.footerItemM {
    width: 50%;
    height: 15vw;
    font-size: 4vw;
    line-height: 1.3em;
    text-align: center;}
.bgfooter1 {background-color: #ffb000;}
.bgfooter2 {background-color: #878787;}
.bgfooter3 {
    background-color: #ff7b00;
    background-image: url("/img/ic_Discussion.svg");
    background-repeat: no-repeat;
    background-position: left 2vw center;
    background-size: 10vw;}
.footerBox a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;}
.footerBox a:link,.footerBox a:visited {color:#ffffff;text-decoration:none;}
.footerBox a:hover,.footerBox a:active {color:#ffffff;text-decoration:none;}


#pageTop {
	position: fixed;
	bottom: 0;
  	right: 0;
	z-index:9998;}
#pageTop img {
	display:block;
    width: 15vw;}
