@charset "UTF-8";

body{
    background:#fff;
    font-family: 'Noto Sans JP',"游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic";
    line-height:1.5;
    color:#222;
    margin: 0 auto;
    padding: 0;
    background:#fff;
    font-size:14px;
    overflow: hidden;
    letter-spacing: 0.1rem;
    background-image:url(../img/back.png);
    background-size:20px;
    background-position:left top;
    background-repeat: repeat;
    line-height:1.5;
    word-break: break-word;
}
.secwrap{
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding:30px;
}
.secinner{
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    max-width: 1200px;
}
@media (max-width:600px){
    .secwrap{
        padding: 15px;
    }
}

/*
header
*/

header{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    position: absolute;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 20px 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 9999;
    transition:all .5s;
    opacity:0;
}
body.loaded header{
    opacity:1;
}
header a.current:after {
	display: block;
	position: absolute;
	bottom: -20px;
	left: 50%;
	content: "";
	background: #ff4350;
/* 	background:linear-gradient(90deg,#FDD000 0% 25%, #65AADD 25% 50%, #EE838B 50% 75%, #13AE67 75% 100%); */
	width: 100%;
	height: 4px;
	border-radius: 3px;
	transform: translate(-50%,0);
}
header>a{
	position: relative;
	display: block;
    margin:0 20px;
    font-size:14px;
    font-weight:bold;
    color:#000;
    text-decoration: none;
    transition:all .3s;
}
header>a:hover{
    opacity:.5;
}
.header_btn{
    display: none;
    position: fixed;
    width: 30px;
    height: 40px;
    margin: auto;
    padding: 0;
    top:0;
    right:10px;
}
@media (max-width:600px){
    .header_btn{
        display: block;
    }
    .header_btn:hover{
        cursor:pointer;
    }
    .header_btn:before{
        content:"";
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        margin: auto;
        padding: 0;
        background:#fff;
        top:calc(40% - 1px);
        right:0;
        transition:all .5s;
    }
    .header_btn:after{
        content:"";
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        margin: auto;
        padding: 0;
        background:#fff;
        top:calc(60% - 1px);
        right:0;
        transition:all .5s;
    }
    body.open header .header_btn:before{
        top:calc(50% - 1px);
        transform:rotateZ(45deg);
    }
    body.open header .header_btn:after{
        top:calc(50% - 1px);
        transform:rotateZ(-45deg);
    }
    header{
        display: block;
        bottom:100vh;
        opacity:0;
        transition:all .5s;
        position: fixed;
    }
    header a{
        display: block;
        position: relative;
        width: 100%;
        text-align:center;
        color:#fff;
        margin: 20px auto;
        transition:all .5s;
    }
    body.open header{
         top:0;
        bottom:auto;
        opacity:1;
    }
	header a.current:after {
		bottom: -10px;
		width: 50%;
	}
}

/*
frame
*/
.frame_lt{
    display: block;
    position: fixed;
    width: 25%;
    height: 100vh;
    margin: auto;
    padding: 0;
    background:#13AE67;
    transform-origin:left bottom;
    top:0;
    left:0;
    transform:rotateZ(0);
    z-index:9997;
    transition:all 1s .3s;
}
.frame_rt{
    display: block;
    position: fixed;
    width: 25%;
    height: 100vh;
    margin: auto;
    padding: 0;
    background:#65AADD;
    transform-origin:left top;
    top:0;
    right:25%;
    transform:rotateZ(0);
    z-index:9998;
    transition:all 1s .3s;
}
.frame_rb{
    display: block;
    position: fixed;
    width: 25%;
    height: 100vh;
    margin: auto;
    padding: 0;
    background:#EE838B;
    transform-origin:right top;
    bottom:0;
    right:0;
    transform:rotateZ(0);
    z-index:9997;
    transition:all 1s .3s;
}
.frame_lb{
    display: block;
    position: fixed;
    width: 25%;
    height: 100vh;
    margin: auto;
    padding: 0;
    background:#FDD000;
    transform-origin:right bottom;
    bottom:0;
    left:25%;
    transform:rotateZ(0);
    z-index:9997;
    transition:all 1s .3s;
}
body.loaded .frame_lt{
    width: 100%;
    height: 8.3vh;
    top:0;
    left:0;
    transform:rotateZ(-14deg);
}
body.loaded .frame_rt{
    width: 8vw;
    height: 100vh;
    top:0;
    right:0;
    transform:rotateZ(-26deg);
}
body.loaded .frame_rb{
    width: 100%;
    height: 7.9vh;
    transform-origin:right top;
    bottom:0;
    right:0;
    transform:rotateZ(-10deg);
}
body.loaded .frame_lb{
    width: 5.9vw;
    height: 100vh;
    bottom:0;
    left:0;
    transform:rotateZ(-26deg);
}
@media (max-width:1200px){
}
@media (max-width:900px){
    
}
@media (max-width:600px){
    body.loaded .frame_lt{
        height: 40px;
    }
    body.loaded .frame_rb{
        height: 30px;
    }
    body.loaded .frame_rt{
        width:20vw;
        transform:rotateZ(-35deg);
    }
    body.loaded .frame_lb{
        transform:rotateZ(-13deg);
    }
    body.open .frame_rt{
        transform:rotateZ(0);
        width: 100%;
        height: 260px;
        
    }
}


/*
landing
*/
#landing{
    transition:all 1.5s;
    opacity:0;
	padding-top:70px;
}
body.loaded #landing{
    transition:all 1.5s;
    opacity:1;
}
#landing>.secinner{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}
.icon_ict{
    display: block;
    position: relative;
    width: 120px;
    height: auto;
    margin-bottom:50px;
}
.subttl{
    font-size:18px;
    font-weight:bold;
    margin-bottom:20px;
    text-align:center;
}
#landing h1{
    font-size:64px;
    letter-spacing: .15em;
    text-align:center;
    margin-bottom:30px;
}
/*
.scroll{
    display: block;
    position: absolute;
    width: auto;
    height: auto;
    margin: auto;
    padding: 0;
    left:0;
    right:0;
    bottom:10vh;
    text-align:center;
    font-size:12px;
    font-weight:bold;
}
.scroll:before{
    content:"";
    display: block;
    position: absolute;
    width: 10px;
    height: 2px;
    border-radius:1px;
    bottom:-10px;
    right:50%;
    background:#000;
    transform-origin:right center;
    transform:rotateZ(30deg);
    animation: scroll_before 2.3s ease 0s infinite normal;
}
.scroll:after{
    content:"";
    display: block;
    position: absolute;
    width: 10px;
    height: 2px;
    border-radius:1px;
    bottom:-10px;
    left:50%;
    background:#000;
    transform-origin:left center;
    transform:rotateZ(-30deg);
    animation: scroll_after 2.3s ease 0s infinite normal;
}
*/
.scroll{
    display: block;
    position: absolute;
    width: auto;
    height: auto;
    margin: auto;
    padding: 0;
    left:auto;
    right:30px;
    bottom:14vh;
    text-align:center;
    font-size:12px;
    font-weight:bold;
    writing-mode: vertical-rl;
}
.scroll:before{
    content:"";
    display: block;
    position: absolute;
    width: 10px;
    height: 2px;
    border-radius:1px;
    bottom:-10px;
    right:50%;
    background:#000;
    transform-origin:right center;
    transform:rotateZ(30deg);
    animation: scroll_before 2.3s ease 0s infinite normal;
}
.scroll:after{
    content:"";
    display: block;
    position: absolute;
    width: 10px;
    height: 2px;
    border-radius:1px;
    bottom:-10px;
    left:50%;
    background:#000;
    transform-origin:left center;
    transform:rotateZ(-30deg);
    animation: scroll_after 2.3s ease 0s infinite normal;
}
@keyframes scroll_before {
    0% {opacity:0;transform:translateY(0) rotateZ(30deg)}
    5% {opacity:0;transform:translateY(0) rotateZ(30deg)}
    10% {opacity:1;transform:translateY(0) rotateZ(30deg)}
    90% {opacity:1;transform:translateY(3vh) rotateZ(30deg)}
    95% {opacity:0;transform:translateY(3vh) rotateZ(30deg)}
    100% {opacity:0;transform:translateY(3vh) rotateZ(30deg)}
}
@keyframes scroll_after {
    0% {opacity:0;transform:translateY(0) rotateZ(-30deg)}
    5% {opacity:0;transform:translateY(0) rotateZ(-30deg)}
    10% {opacity:1;transform:translateY(0) rotateZ(-30deg)}
    90% {opacity:1;transform:translateY(3vh) rotateZ(-30deg)}
    95% {opacity:0;transform:translateY(3vh) rotateZ(-30deg)}
    100% {opacity:0;transform:translateY(3vh) rotateZ(-30deg)}
}
.scroll.coming:before,.scroll.coming:after{
    display: none;
}
.scroll.coming{
    bottom:3vh;
}
@media (max-width:1200px){
    #landing h1{
        font-size:48px;
    }
}
@media (max-width:900px){
    #landing h1{
        font-size:36px;
    }
    #landing h1 br{
        display: none;
    }
}
@media (max-width:600px){
    #landing h1{
        font-size:24px;
        margin-bottom: 20px;
    }
    .subttl {
	    font-size: 16px;
    }
    .icon_ict{
        width: 80px;
    }
}


/*
intro
*/

#intro.secwrap{
    background:rgba(253,208,0,.4);
    padding-top:120px;
    padding-bottom:120px;
}
.intro_text{
    display: block;
    position: relative;
    width: 90%;
    max-width: 800px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    text-align:center;
    font-size:16px;
    line-height:2;
    border: 8px solid #FDD000;
    padding: 30px 16px;
    box-sizing: border-box;
}
.intro_text strong {
	font-weight: bold;
}
@media (max-width:1200px){
    
}
@media (max-width:900px){
}
@media (max-width:600px){
    .intro_text{
        font-size:13px;
    }
    #intro.secwrap{
        padding-top:100px;
        padding-bottom:100px;
    }
    #landing .scroll {
	    display: none;
    }
}


/*
question
*/
#question>.secinner{
    max-width:90%;
}
.q_wrap{
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 80px auto 0;
    padding: 0;
}
.q_wrap p{
    font-size:1.5vw;
    display: inline-block;
    position: relative;
    width: auto;
    margin: 0 auto;
    padding: 0;   
}
.q_l{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 30vw;
    height:30vw;
    padding:0;
    padding-top:4.8vw;
    margin: 0 auto;
    transition:all .5s;
    opacity:0;
    transform:translateY(5vw);
}
.q_l.br{
    padding-top:3.8vw;
}
.q_m{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 21vw;
    height:21vw;
    padding:0;
    padding-top:3.0vw;
    margin: 0 auto;
    transition:all .5s;
    opacity:0;
    transform:translateY(5vw);
}
.q_m.br{
    padding-top:2.0vw;
}
.q_s{
    display: block;
    position: absolute;
    width: 13.2vw;
    height:13.2vw;
    padding:0;
    margin: 0 auto;
    transition:all .5s .5s;
    opacity:0;
    transform:translateY(5vw);
}


.yellow_l{
    background-image:url(../img/q_yellow_l.png);
    background-size:contain;
    background-position:center top;
}
.red_l{
    background-image:url(../img/q_red_l.png);
    background-size:contain;
    background-position:center top;
}
.blue_l{
    background-image:url(../img/q_blue_l.png);
    background-size:contain;
    background-position:center top;
}
.green_l{
    background-image:url(../img/q_green_l.png);
    background-size:contain;
    background-position:center top;
}
.yellow_r{
    background-image:url(../img/q_yellow_r.png);
    background-size:contain;
    background-position:center top;
}
.red_r{
    background-image:url(../img/q_red_r.png);
    background-size:contain;
    background-position:center top;
}
.blue_r{
    background-image:url(../img/q_blue_r.png);
    background-size:contain;
    background-position:center top;
}
.green_r{
    background-image:url(../img/q_green_r.png);
    background-size:contain;
    background-position:center top;
}

.q_l.yellow_l{
    margin-right:calc(50% + 50px);
    transition:all .5s;
}
.q_l.red_r{
    margin-left:calc(50% + 50px);
    margin-top:-28.5vw;
    transition:all .5s .3s;
}
.q_m.blue_l{
    margin-top:calc(-18.5vw - 10px);
    margin-right:calc(50% - 60px);
    transition:all .5s .6s;
}
.q_l.green_l{
    margin-top:-10vw;
    margin-right:calc(50% + 10px);
    transition:all .5s 1.2s;
}
.q_m.yellow_r{
    margin-top:calc(-30vw - 10px);
    margin-left:calc(50% + 70px);
    transition:all .5s .9s;
}
.q_l.blue_r{
    margin-left:calc(50% - 70px);
    margin-top:-10vw;
    transition:all .5s 1.5s;
}
.q_m.red_l{
    margin-right:50%;
    margin-top:-20vw;
    transition:all .5s 1.8s;
}
#question.active .q_l,#question.active .q_m,#question.active .q_s{
    opacity:1;
    transform:translateY(0);
}
.q_s.green_l{
    left:4%;
    top:15%;
}
.q_s.yellow_r{
    bottom:-1vw;
    left:55%;
}
.q_s.green_r{
    right:3%;
    top:38%;
}
.q_s.red_r{
    right:13%;
    top:calc(45% + 13vw);
}

.q_bottom{
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    text-align:center;
}
.q_bottom>p{
    font-size:24px;
    font-weight:bold;
    margin-bottom:15px;
}
.q_arrow{
    display: block;
    position: relative;
    width: 25px;
    height: 10px;
    margin: 0 auto;
    padding: 0;
}
.q_arrow:before{
    content:"";
    display: block;
    position: absolute;
    width: 18px;
    height: 2px;
    margin: auto;
    padding: 0;
    left:50%;
    bottom:0;
    border-radius:1px;
    background:#000;
    transform-origin:left center;
    transform:rotateZ(-30deg);
}
.q_arrow:after{
    content:"";
    display: block;
    position: absolute;
    width: 18px;
    height: 2px;
    margin: auto;
    padding: 0;
    right:50%;
    bottom:0;
    border-radius:1px;
    background:#000;
    transform-origin:right center;
    transform:rotateZ(30deg);
}
@media (max-width:1200px){
    
}
@media (max-width:900px){
    #question>.secinner{
        max-width:100%;
    }
    .q_wrap{
        padding-bottom:15vw;
    }
    .q_wrap p{
        font-size:3vw
    }
    .q_l{
        width: 60vw;
        height:60vw;
        padding-top:9.7vw;
    }
    .q_l.br{
        padding-top:7.7vw;
    }
    .q_m{
        width: 44vw;
        height:44vw;
        padding-top:6.5vw;
    }
    .q_m.br{
        padding-top:4.1vw;
    }
    .q_s{
        width: 26.4vw;
        height:26.4vw;
    }
    .q_l.yellow_l{
        margin-left:0;
        margin-right:auto;
    }
    .q_l.red_r{
        margin-left:auto;
        margin-right:0;
        margin-top:-65vw;
    }
    .q_m.blue_l{
        margin-top:-18.3vw;
        margin-right:auto;
        margin-left:10%;
    }
    .q_l.green_l{
        margin-top:-13vw;
        margin-right:auto;
        margin-left:0;
    }
    .q_m.yellow_r{
        margin-top:-39vw;
        margin-left:auto;
        margin-right:0;
    }
    .q_l.blue_r{
        margin-left:auto;
        margin-right:5%;
        margin-top:-15vw;
    }
    .q_m.red_l{
        margin-right:auto;
        margin-left:5%;
        margin-top:-72vw;
    }
    .q_s.green_l{
        left:-6%;
        top:15%;
    }
    .q_s.red_r{
        bottom:-3vw;
        left:auto;
        right:10%;
    }
    .q_s.green_r{
        right:-6%;
        top:38%;
    }
    .q_s.blue_r{
        right:15%;
        top:55%;
    }
    .q_s{
        display: none;
    }
}
@media (max-width:600px){
    .q_wrap p{
        font-weight:bold;
    }
    .q_bottom>p{
        font-size:18px;
    }
    .q_wrap{
        margin-top:50px;
    }
}


/*
desk
*/

#desk>.secinner{
    background:#EE838B;
    max-width:1000px;
    border-radius:5px;
    padding:50px 10px;
    text-align: center;
}
.helpdesk_logo{
    display: block;
    position: relative;
    width: 250px;
    height: auto;
    margin: 0 auto 10px;
    background:#fff;
    padding: 15px;
    border-radius:5px;
}
#desk h2{
    text-align:center;
    font-size:18px;
    margin-bottom:40px;
}
.desk_wrap{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
    padding: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.desk_block{
    display: block;
    position: relative;
    width: 45%;
    height: auto;
    margin: 0 20px;
    padding: 30px 15px;
    border:2px solid #fff;
    border-radius:5px;
    color:#fff;
    text-align:center;
    max-width:300px;
}
.desk_icon{
    display: block;
    position: relative;
    width: auto;
    height: 35px;
    margin: 0 auto 30px;
}

a.desk_block{
    color:#fff;
    font-size:18px;
    font-weight:bold;
    text-decoration: none;
    transition:all .5s;
}
a.desk_block:hover{
    background:rgba(255,255,255,.2);
}
a.desk_block.tel dl dt{
    font-size:14px;
}
a.desk_block.tel dl dd{
    font-size:24px;
}
a.desk_block.form dt{
    padding-top:16px;
}
.desk_text{
    display: inline-block;
    position: relative;
    width: auto;
    max-width:500px;
    margin: 0 auto 40px;
    text-align: left;
}
.youtube_wrap{
    display: block;
    position: relative;
    width: 100%;    
    height: auto;
    margin: 0 auto;
    padding: 0;
}
.youtube_inner{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    position: relative;
    width: 90%;
    height: auto;
    max-width: 500px;
    margin: 0 auto 20px;
    padding: 20px 30px;
    border-radius: 5px;
    background: #fff;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    transition: all .5s;
    box-shadow: 0 3px 6px rgba(0,0,0,.2);
    border:7px solid #DA1725;
}
.youtube_inner>img {
    display: block;
    width: 60px;
    height: auto;
    margin-right: 30px;
}
.youtube_inner>p {
    font-size: 18px;
    color: #DA1725;
    font-weight: bold;
    border-bottom: 2px solid #DA1725;
    text-decoration: none;
}
.youtube_inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 10px rgba(0,0,0,.2);
}
@media (max-width:1200px){
    
}
@media (max-width:900px){
    
}
@media (max-width:600px){
    .desk_wrap{
        display: block;
    }
    .desk_block{
        width: 100%;
        margin:0 auto 20px;
    }
    #desk h2{
        font-size:20px;
    }
    .youtube_inner>img{
        width: 45px;
        margin-right:15px;
    }
    .youtube_inner>p{
        font-size:14px;
        border-bottom:none;
    }
    .youtube_inner{
        padding: 20px 10px;
        width: 95%;
    }
    .desk_text{
        width: 90%;
    }
}




/*
footer
*/

footer{
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 50px auto 0;
    padding: 20px 10px;
    text-align:center;
}
.footer_inner{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto 40px;
    padding: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.icon_monkasho{
    display: block;
    position: relative;
    width: 60px;
    height: auto;
    margin-right:20px;
}
.footer_text{
    font-size:14px;
    font-weight:500;
    text-align:left;
}
.copyright{
    font-size:12px;
    font-weight:bold;
}

@media (max-width:1200px){
    
}
@media (max-width:900px){
    
}
@media (max-width:600px){
    .footer_inner{
        display: block;
    }
    .footer_text{
        text-align:center;
    }
    .icon_monkasho{
        margin-left:auto;
        margin-right:auto;
        margin-bottom:20px;
        width: 80px;
    }
    footer{
        margin-top:30px;
    }
}


/*
top topic
*/
.topic_movie_wrap{
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 30px auto 50px;
    padding: 0;
}
.topic_movie_wrap>h3{
    text-align:center;
    font-size:24px;
    line-height:1.5;
    margin-bottom:20px;
}
.topic_movie_wrap>h3>span{
    font-size:18px;
}
.movie_wrap{
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
    padding: 0;
    max-width:700px;
}
.movie_inner{
    display: block;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}
.movie_inner>iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.topic_doc_wrap{
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
}
.topic_doc_wrap>h4{
    font-size:18px;
    text-align:center;
    margin-bottom:20px;
}
.doc_wrap{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto 100px;
    padding: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.doc_block{
    display: block;
    position: relative;
    width: 30%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    box-shadow:0 3px 6px rgba(0,0,0,.2);
    transition:all .5s;
}
.doc_block:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 10px rgba(0,0,0,.2);
}
.doc_block>img{
    display: block;
    position: relative;
    width: 100%;
    height: auto;
}
.new_sticker{
    display: block;
    position: relative;
    width: 100px;
    height: auto;
    margin: 0 auto 10px;
    padding:10px;
    background:#fff;
    text-align:center;
    font-weight:bold;
    border-radius:5px;
    border:2px solid #FDD000;
    border-bottom-width:5px;
    color:#FDD000;
    
}
@media (max-width:900px){
    .doc_wrap{
        display: block;
    }
    .doc_block{
        width: 90%;
        max-width:600px;
        margin: 0 auto 20px;
    }
}
@media (max-width:600px){
    .topic_movie_wrap>h3{
        font-size:18px;
    }
    .topic_movie_wrap>h3>span{
        font-size:14px;
    }
}


/*
news
*/

.news_wrap{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    position: absolute;
    width: 90%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    right:5%;
    bottom:5vh;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.news_block{
    display: block;
    position: relative;
    width: 450px;
    height: auto;
    margin: 0 10px;
    padding: 0;
    background:#fff;
    box-shadow:0 3px 6px rgba(0,0,0,.2);
    color:#000;
    text-decoration:none;
    border:5px solid #FDD000;
    transition:all .5s;
    left:0;
    min-height:120px;
}
.news_inner{
    display: block;
    position: relative;
    width: 95%;
    height: 100%;
    margin: 0;
    padding: 15px;
}
.news_ttl{
    font-size:16px;
    font-weight:bold;
    margin-bottom:10px;
}
.news_more{
    display: block;
    position: absolute;
    width: 5%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    background:#FDD000;
    top:0;
    right:0;
}
.news_more:before{
    content:"";
    display: block;
    position: absolute;
    width: 50%;
    height: 2px;
    background:#fff;
    border-radius:1px;
    top:50%;
    right:20%;
    transform-origin:right center;
    transform:rotateZ(45deg);
}
.news_more:after{
    content:"";
    display: block;
    position: absolute;
    width: 50%;
    height: 2px;
    background:#fff;
    border-radius:1px;
    top:50%;
    right:20%;
    transform-origin:right center;
    transform:rotateZ(-45deg);
}
.news_block:hover{
    left:10px;
}


/*
entry
*/

#entry>.secinner{
    background:#FDD000;
    max-width:1000px;
    border-radius:5px;
    padding:50px 10px;
    text-align: center;
}
#entry h2{
    text-align:center;
    font-size:24px;
    margin-bottom:40px;
}
.entry_btn_wrap{
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 50px auto;
    padding: 0;
    text-align:center;
}
.entry_btn_wrap>a{
    display: inline-block;
    position: relative;
    padding: 20px;
    min-width:300px;
    text-decoration:none;
    font-weight:bold;
    border-radius:5px;
    color:#000;
    font-size:18px;
    border:3px solid #000;
    transition:all .5s;
    background:rgba(255,255,255,.0);
}
.entry_btn_wrap>a:hover{
    background:rgba(255,255,255,.8);
}
.entry_block{
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    text-align:left;
    max-width:650px;
}
.entry_block>h3{
    margin-bottom:10px;
}
.entry_block>p:nth-child(2){
    margin-bottom:30px;
}
@media (max-width:600px){
    #entry>.secinner{
        padding:50px 20px;
    }
}


/*
movie
*/

.btn_wrap{
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
}
.btn_wrap>a{
    display: block;
    position: relative;
    width: 95%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    background:#fff;
    box-shadow:0 3px 6px rgba(0,0,0,.2);
    color:#000;
    text-decoration:none;
    border:5px solid #FDD000;
    transition:all .5s;
    left:0;
    border-radius:5px;
    max-width:450px;
}
.btn_wrap>a>p{
    display: block;
    position: relative;
    width: 95%;
    height: 100%;
    margin: 0;
    padding: 20px 15px;
    text-align:center;
    font-weight:bold;
    font-size:16px;
}
.btn_right{
    display: block;
    position: absolute;
    width: 5%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    background:#FDD000;
    top:0;
    right:0;
}
.btn_right:before{
    content:"";
    display: block;
    position: absolute;
    width: 50%;
    height: 2px;
    background:#fff;
    border-radius:1px;
    top:50%;
    right:20%;
    transform-origin:right center;
    transform:rotateZ(45deg);
}
.btn_right:after{
    content:"";
    display: block;
    position: absolute;
    width: 50%;
    height: 2px;
    background:#fff;
    border-radius:1px;
    top:50%;
    right:20%;
    transform-origin:right center;
    transform:rotateZ(-45deg);
}
.btn_wrap>a:hover{
    left:10px;
}
.archive_wrap{
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto 100px;
    padding: 50px;
    background:#fff;
    border:5px solid #aaa;
}
.archive_wrap .doc_wrap{
    margin-bottom:0;
}
.archive_wrap>.topic_doc_wrap{
    margin-bottom:30px;
}


/*
archive page
*/
#archive_landing h1{
    font-size:48px;
    margin:110px auto 70px;
    text-align:center;
}
#archive_landing h1>span{
    font-size:18px;
}
.archive_page .btn_wrap{
    margin-top:70px;
}
.archive_page .archive_wrap{
    margin-bottom:30px;
}
@media (max-width:1200px){
    #archive_landing h1{
        font-size:48px;
    }
}
@media (max-width:900px){
    #archive_landing h1{
        font-size:36px;
    }
}
@media (max-width:600px){
    #archive_landing h1{
        font-size:28px;
    }
    .archive_wrap{
        padding:15px;
    }
}


/*
partner page
*/
#partner_landing h1{
    font-size:48px;
    margin:110px auto 70px;
    text-align:center;
}
#partner_landing h1>span{
    font-size:18px;
}
#partner_landing p{
    max-width:700px;
    margin: 0 auto;
    line-height:1.7;
}
#partner_main .secinner{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    transition:all .5s;
}
#partner_main .secinner.normal{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
#partner_main .secinner.reverse{
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}
.partner_block{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
    padding: 30px 50px;
    background:#fff;
    max-width:1100px;
    overflow: hidden;
    transition:all .5s;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    box-shadow:0 3px 6px rgba(0,0,0,.2);
}
.partner_block.hide{
    display: none;
}
.partner_block dl{
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
}
.partner_block dl dt{
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    font-weight:bold;
}
.partner_block dl dd{
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}
.partner_corner{
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    margin: auto;
    padding: 0;
    border:15px solid transparent;
}
.partner_corner.lt{
    border-left:15px solid #13AE67;
    border-top:15px solid #13AE67;
    top:0;
    left:0;
}
.partner_corner.rt{
    border-right:15px solid #65AADD;
    border-top:15px solid #65AADD;
    top:0;
    right:0;
}
.partner_corner.lb{
    border-left:15px solid #FDD000;
    border-bottom:15px solid #FDD000;
    bottom:0;
    left:0;
}
.partner_corner.rb{
    border-right:15px solid #EE838B;
    border-bottom:15px solid #EE838B;
    bottom:0;
    right:0;
}
.partner_left{
    display: block;
    position: relative;
    width: 60%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    padding-right:40px;
}
.partner_right{
    display: block;
    position: relative;
    width: 40%;
    height: auto;
    margin: 0 auto;
    padding: 30px 30px 20px;
    background:#fafafa;
}
.partner_left>h2{
    font-size:18px;
    margin-bottom:20px;
}
.partner_left>p{
    margin-bottom:40px;
}
.partner_left>dl>dt{
    margin-bottom:10px;
}
.partner_left>dl>dd{
    /*margin-left:20px;*/
}
.partner_right dl{
    margin-bottom:20px;
}
.partner_right dl dt{
    margin-bottom:5px;
}
.partner_right dl:last-child{
    margin-bottom:0;
}
.partner_right dl dd span{
    display: inline-block;
    color:#fff;
    background:#EE838B;
    border-radius:3px;
    padding:5px 10px;
    width: 70px;
    text-align:center;
    margin-right:10px;
    margin-bottom:10px;
}


.partner_filter_wrap{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.partner_filter_block{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    position: relative;
    width: auto;
    margin: 0 20px;
    padding: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.partner_filter_block.sort{
    width: auto;
}
.partner_filter_block>p{
    margin-right:10px;
    font-size:12px;
    font-weight:bold;
}
.partner_filter_block>select{
    padding: 5px 10px;
    background:#fff;
    padding-right:30px;
    border-radius:5px;
}
#filter_block_area>select{
    background:#65AADD;
    color:#fff;
}
#filter_block_business>select{
    background:#13AE67;
    color:#fff;
}
#filter_block_area:before,#filter_block_business:before{
    content:"";
    display: block;
    position: absolute;
    width: 10px;
    height: 2px;
    margin: auto;
    padding: 0;
    top:calc(50% + 2px);
    right:15px;
    transform-origin:right bottom;
    transform:rotateZ(45deg);
    background:#fff;
}
#filter_block_area:after,#filter_block_business:after{
    content:"";
    display: block;
    position: absolute;
    width: 10px;
    height: 2px;
    margin: auto;
    padding: 0;
    top:calc(50% + 2px);
    right:5px;
    transform-origin:left bottom;
    transform:rotateZ(-45deg);
    background:#fff;
}
.partner_sort{
    margin:0 !important;
    padding: 0 10px;
    opacity:.3;
    transition:all .3s;
}
.partner_sort.active{
    opacity:1;
    
}
.partner_sort:hover{
    cursor: pointer;
    opacity:1;
}
.partner_sort:nth-child(1){
    border-right:2px solid #000;
}
.partner_num_wrap{
    display: block;
    position: relative;
    width: 90%;
    height: auto;
    margin: 0 auto 20px;
    padding: 0;
    text-align:center;
}
.partner_num_wrap>p{
    font-size:16px;
}
.partner_num_wrap>p>span{
    font-size:24px;
}
@media (max-width:1200px){
    #partner_landing h1{
        font-size:48px;
    }
}
@media (max-width:900px){
    #partner_landing h1{
        font-size:36px;
    }
    .partner_block{
        display: block;
        padding: 20px 20px;
    }
    .partner_left{
        width: 100%;
        margin: 0 auto 30px;
        padding-right:0;
    }
    .partner_right{
        width: 100%;
        margin: 0 auto;
    }
    .partner_filter_block{
        margin-left:auto;
        margin-right:auto;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        margin-bottom:15px;
    }
    .partner_filter_wrap{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
     -ms-flex-align: start;
        align-items: flex-start;
        font-size:12px;
        max-width:400px;
    }
    .partner_filter_block.sort{
        margin-top:30px;
        width: 100px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .partner_filter_block.sort>p{
        margin-bottom:5px !important;
    }
}
@media (max-width:600px){
    #partner_landing h1{
        font-size:28px;
    }
    .partner_block dl{
        display: block;
    }
    .partner_block dl dt{
        width: 100%;
        margin-bottom:5px;
    }
    .partner_block dl dd{
        width: 100%;
    }
}
section#advisorList ul {
	max-width: 980px;
	padding: 0 20px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	text-align: center;
}
section#advisorList ul li {
	width: 20%;
	list-style-type: none;
	margin-bottom: 10px;
}
@media (max-width:600px){
	section#advisorList ul li {
		width: 50%;
	}
}
#news.secwrap {
    background: rgba(253,208,0,.4);
}
#news.secwrap h2 {
	width: 90%;
	margin: 0 auto 40px;
	text-align: center;
	padding-top: 40px;
}
#news.secwrap ul {
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
	list-style-type: none;
	padding-bottom: 40px;
}
#news.secwrap ul li {
	display: flex;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px dotted #868686;
}
#news.secwrap ul li .date {
	width: 120px;
	margin-right: 20px;
	font-size: 110%;
	font-family: 'Pathway Gothic One', sans-serif;
	color: #666;
}
#news.secwrap ul li a {
	color: #ff4350;
}
#news.secwrap ul li a:hover {
	text-decoration: none;
}
@media (max-width:600px){
	#news.secwrap ul li {
		display: block;
	}
	#news.secwrap ul li .date {
		margin-bottom: 10px;
	}
}
#info.secwrap {
/* 	background: rgba(101, 170, 222, 0.4); */
	padding: 100px 0;
}
#info.secwrap .info_list {
	display: flex;
	list-style-type: none;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 90%;
	margin: 0 auto;
}
#info.secwrap .info_list > li {
	width: 23%;
	text-align: center;
    flex-direction: column;
    display: flex;
}
#info.secwrap .info_list > li .btn_cont {
    margin-top: auto;
    height: 102px;
}
#info.secwrap .info_list > li {
	
}
#info.secwrap .info_list > li > .txt {
	text-align: left;
	margin-bottom: 10px;
}
#info.secwrap .info_list .img a {
	background: rgba(255, 255, 255, 1);
/* 	box-shadow: 5px 5px 10px rgba(86, 146, 189, 0.5), -5px -5px 10px rgb(170 212 244 / 50%); */
	box-shadow: 5px 5px 10px rgba(192, 192, 192, 1), -5px -5px 10px rgba(189, 189, 189, 0.7);
	border-radius: 10px;
	text-align: center;
	padding: 30px;
	margin-bottom: 20px;
	font-weight: bold;
	min-height: 220px;
	display: flex;
	flex-wrap: wrap;
	text-decoration: none;
	color: #000;
	border: 10px solid black;
	border-color: #13AE67 #65AADD #FDD000 #EE838B;
	transition: all .5s;
}
#info.secwrap .info_list .img a:hover {
	box-shadow: 0 0 0 rgba(192, 192, 192, 1), 0 0 0 rgba(189, 189, 189, 0.7);
}
#info.secwrap .info_list .img .txt {
	width: 100%;
}
#info.secwrap .info_list .img small {
	font-size: 80%;
	display: block;
	margin-bottom: 6px;
}
#info.secwrap .info_list img {
	width: 40%;
	display: block;
	margin: 10px auto;
}
#info.secwrap .info_list > li a.link,
#info.secwrap .info_list > li ul.link a {
	border-radius: 25px;
	padding: 8px 10px 8px;
	text-align: center;
	text-decoration: none;
	color: #000;
	margin: 10px auto 0;
	font-weight: bold;
	border: 2px solid #000;
	display: inline-block;
	min-width: 150px;
	font-feature-settings: "palt";
	transition: all .5s;
}
#info.secwrap .info_list > li ul.link {
	list-style-type: none;
}
#info.secwrap .info_list > li a.link:hover,
#info.secwrap .info_list > li ul.link a:hover {
	background: #000;
	color: #65AADD;
}
#info.secwrap .info_list > li ul.link li{
    position: relative;
}
#info.secwrap .info_list > li ul.link a.tel{
    line-height:2;
    position: absolute;
    left:0;
    right:0;
    pointer-events: none;
}
#info.secwrap .info_list > li ul.link a.tel>span>span{
    font-size:18px;
}
@media (max-width:900px){
	#info.secwrap .info_list > li {
		width: 48%;
		margin-bottom: 20px;
	}	
    #info.secwrap .info_list > li ul.link a.tel>span{
        display: none;
    }
    #info.secwrap .info_list > li ul.link a.tel{
        position: relative;
        pointer-events: auto;
        line-height:1.5;
    }
}
@media (max-width:600px){
	#info.secwrap {
		padding-bottom: 0;
	}
	#info.secwrap .info_list > li {
		width: 46%;
		margin-bottom: 30px;
	}
	#info.secwrap .info_list .img a {
		padding: 10px;
		border-width: 6px;
		margin-bottom: 10px;
		display: flex;
		align-items: center;
		min-height: auto;
		height: 160px;
	}
	#info.secwrap .info_list .img {
	}
	#info.secwrap .info_list > li > .txt {
		margin-bottom: 0;
	}
	#info.secwrap .info_list > li > .txt {
		font-size: 13px;
	}
}
#page_gigastudx header {
	opacity: 1;
	background-color: #fff;
	border-bottom: 1px solid #ccc;
}
#page_gigastudx {
	background-image: none;
	background-color: #eee;
}
/*
#page_gigastudx #partner_landing {
	background: #65AADD;
}
*/
#page_gigastudx .secinner {
	max-width: 960px;
	margin: 0 auto;
}
#page_gigastudx.gigastudx_index .secinner {
	max-width: 1200px;
}
#page_gigastudx.gigastudx_index #partner_landing {
	background-color: #fff;
	background: radial-gradient(circle, transparent 20%, #fff 20%, #fff 80%, transparent 80%, transparent), radial-gradient(circle, transparent 20%, #fff 20%, #fff 80%, transparent 80%, transparent) 15px 15px, linear-gradient(#f5f5f5 1.2000000000000002px, transparent 1.2000000000000002px) 0 -0.6000000000000001px, linear-gradient(90deg, #f5f5f5 1.2000000000000002px, #fff 1.2000000000000002px) -0.6000000000000001px 0;
	background-size: 30px 30px, 30px 30px, 15px 15px, 15px 15px;
	position: relative;
}
#page_gigastudx.gigastudx_index #partner_landing .secinner {
	max-width: 600px;
	margin: 120px auto 60px;
/*
	display: flex;
	justify-content: space-between;
	align-items: center;
*/
	position: static;
}
#page_gigastudx ul {
	list-style-type: none;
}
#page_gigastudx h1 {
	text-align: center;
	font-size: 18px;
	margin: 0;
}
#page_gigastudx h1 .ttl {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 84px;
	margin-bottom: 10px;
	color: #459dde;
	font-weight: 400;
	margin-top: -10px;
}
#page_gigastudx h1 .ruby {
	color: #459dde;
}
#page_gigastudx h1 small {
	font-size: 18px;
}
#page_gigastudx h1 small span {
	padding-left: 10px;
}
#page_gigastudx .logo_monkasho img {
	width: 60px;
}
#page_gigastudx .logo_monkasho {
	position: absolute;
	top:76px;
	left: 5%;
}
#page_gigastudx .step_cont {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#page_gigastudx .step_cont p {
	font-size: 20px;
	font-weight: bold;
}
#page_gigastudx .step_cont ul {
	display: flex;
	justify-content: space-between;
	text-align: center;
	width: 40%;
	min-width: 320px;
	max-width: 400px;
}
#page_gigastudx .step_cont ul li {
	position: relative;
	display: block;
	margin-bottom: 24px;
}
#page_gigastudx .step_cont ul li.active .txt {
	color: #ff4350;
}
#page_gigastudx .step_cont ul li.active:after {
	content: "";
	display: block;
	position: absolute;
    left: 50%;
    bottom: -24px;
    box-sizing: border-box;
    width: 12px;
    height: 18px;
    border: 12px solid transparent;
    border-bottom: 18px solid #459dde;
    transform: translate(-50%,0);
}
#page_gigastudx .step_cont ul li.hide .step {
	opacity: 0.65;
}
#page_gigastudx .step_cont ul .step {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #459dde;
	border-radius: 100%;
	margin-top: 8px;
	font-family: 'Pathway Gothic One', sans-serif;
	font-size: 24px;
	color: #fff;
	height: 100px;
	width: 100px;
}
#page_gigastudx .step_cont ul .txt {
	font-size: 13px;
	font-weight: bold;
}
#page_gigastudx .step_cont ul .step .num {
	display: block;
	font-size: 32px;
	margin-top: -10px;
}
#page_gigastudx .anchorlink {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-wrap: wrap;
	border-top: 4px solid #459dde;
	padding: 16px 10px 6px;
	border-bottom: 4px solid #459dde;
	background: #fff;
}
#page_gigastudx .anchorlink li {
	display: block;
	margin-bottom: 10px;
	width: 24%;
	text-align: center;
}
#page_gigastudx .anchorlink a {
	height: 100%;
	color: #fff;
	background: #65aadd;
	border-radius: 8px;
	text-decoration: none;
	font-weight: bold;
	padding: 8px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .5s;
	min-height: 58px;
	font-size: 16px;
}
#page_gigastudx .anchorlink a:hover {
	background: #308acf;
}
#page_gigastudx .anchorlink li.big {
	width: 100%;
}
#page_gigastudx .anchorlink li.purple a {
	background: #8c76c6;
}
#page_gigastudx .anchorlink li.green a {
	background: #13ae67;
}
#page_gigastudx .anchorlink li.pink a {
	background: #ee838b;
}
#page_gigastudx .anchorlink li.purple a:hover {
	background: #775eb9;
}
#page_gigastudx .anchorlink li.green a:hover {
	background: #1a9960;
}
#page_gigastudx .anchorlink li.pink a:hover {
	background: #e85c65;
}
#page_gigastudx .otherslink {
	display: flex;
	justify-content: center;
	width: 80%;
	margin: 40px auto;
	max-width: 600px;
	flex-wrap: wrap;
}
#page_gigastudx .otherslink li {
	width: 100%;
	display: block;
	text-align: center;
	margin-bottom: 10px;
	max-width: 360px;
}
#page_gigastudx .otherslink a {
	width: 100%;
	border: 3px solid #459dde;
	color: #459dde;
	padding: 10px;
	border-radius: 25px;
	text-decoration: none;
	display: block;
	margin-bottom: 10px;
	font-weight: bold;
	background: #fff;
}
#page_gigastudx .otherslink a.hide {
	opacity: .75;
	pointer-events: none;
}
#page_gigastudx .otherslink li span {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
}
#page_gigastudx .otherslink a:hover {
	background: #459dde;
	color: #fff;
}
#page_gigastudx #movie_list {
	display: flex;
	justify-content: space-between;
	margin: 20px auto;
}
#page_gigastudx #movie_list li {
	position: relative;
	width: 32%;
	padding-top: 17.5%;
	display: block;
}
#page_gigastudx #movie_list li iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
#page_gigastudx .articlelist_cont {
	margin-top: 60px;
	margin-bottom: 60px;
}
#page_gigastudx .articlelist_cont h2 {
	font-size: 24px;
	padding-bottom: 8px;
	border-bottom: 3px solid #bbb;
	display: flex;
	align-items: center;
}
#page_gigastudx .articlelist_cont h2:before {
	display: block;
	content: "";
	height: 36px;
	margin-right: 12px;
    border-radius: 4px;
    width: 8px;
    background: linear-gradient(#459dde 50%, #000 50%);
}
#page_gigastudx .articlelist_cont .articlelist {
	display: flex;
	margin-top: 20px;
	flex-wrap: wrap;
}
#page_gigastudx .articlelist_cont .articlelist li {
	width: calc((100% - 20px) / 3);
	background: #fff;
	padding: 16px;
	box-shadow: 0 2.5rem 2rem -2rem hsl(200 50% 20% / 20%);
	box-sizing: border-box;
	border-radius: 10px;
	display: block;
	margin-right: 10px;
	margin-bottom: 20px;
}
#page_gigastudx .articlelist_cont .articlelist li:nth-child(3n) {
	margin-right: 0;
}
#page_gigastudx .articlelist_cont .articlelist li a {
	width: 100%;
	text-decoration: none;
	color: #000;
	transition: opacity .5s;
	display: block;
}
#page_gigastudx .articlelist_cont .articlelist li a:hover {
	opacity: 0.75;
}
#page_gigastudx .articlelist_cont .articlelist li a img {
	width: 100%;
    border: 1px solid #eee;
    box-sizing: border-box;
}
#page_gigastudx .articlelist_cont .articlelist li a .ttl {
	margin-top: 16px;
	font-size: 16px;
	font-weight: bold;
}
#page_gigastudx ul.bnr {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 100px;
}
#page_gigastudx ul.bnr li {
	margin: 0 5px 10px;
}
#page_gigastudx ul.bnr li a {
	transition: all .5s;
}
#page_gigastudx ul.bnr li a:hover {
	opacity: .75;
}
.gigastudx_detail #partner_landing {
	margin-top: 80px;
	margin-bottom: 20px;
}
.gigastudx_detail #partner_landing h1 {
	font-size: 32px;
	text-align: center;
}
.gigastudx_detail #outline table {
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-spacing: 0;
	width: 100%;
}
.gigastudx_detail #outline th {
	background: #d7eeff;
	padding: 20px;
	width: 140px;
	border-bottom: 1px solid #ccc;
}
.gigastudx_detail #outline td {
	border-bottom: 1px solid #ccc;
	padding: 20px;
	background: #fff;
    width: calc(100% - 140px);
}
.gigastudx_detail #flow {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}
.gigastudx_detail #flow li {
	background: #459dde;
	padding: 16px;
	position: relative;
	margin-right: 26px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	font-feature-settings: "palt";
	display: flex;
	align-items: center;
	justify-content: center;
}
.gigastudx_detail #flow li:after {
	content: "";
	display: block;
	position: absolute;
    top: 50%;
    right: -28px;
    box-sizing: border-box;
    width: 12px;
    height: 8px;
    border: 8px solid transparent;
    border-left: 12px solid #459dde;
    transform: translate(0,-50%);
}
.gigastudx_detail #flow li:last-child {
	margin-right: 0;
}
.gigastudx_detail #flow li:last-child:after {
	display: none;
}
.gigastudx_detail #sentence .ttl {
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
	font-size: 20px;
}
.gigastudx_detail #sentence p {
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 2em;
}
.gigastudx_detail #sentence img {
	border: 1px solid #eee;
	box-sizing: border-box;
}
.gigastudx_detail #sentence .img_col1 {
	width: 100%;
	margin-bottom: 20px;
}
.gigastudx_detail #sentence .img_col2 {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.gigastudx_detail #sentence .img_col2 > div {
	width: 48%;
}
.gigastudx_detail #sentence .img_col2 > div p {
	margin-top: 10px;
}
.gigastudx_detail #sentence .img_col2 > div img {
	display: block;
	width: 100%;
}
.gigastudx_detail #sentence .imgin {
	display: flex;
	justify-content: space-between;
}
.gigastudx_detail #sentence .img {
	width: 50%;
}
.gigastudx_detail #sentence .img img {
	width: 100%;
}
.gigastudx_detail #sentence .txt {
	width: calc(50% - 30px);
	font-size: 16px;
	line-height: 2em;
}
.gigastudx_detail h2 {
	position: relative;
	font-size: 20px !important;
	padding-left: 26px;
	margin-bottom: 16px;
	border-bottom: 1px dotted #ccc !important;
	padding-bottom: 10px;
}
.gigastudx_detail h2:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 6px;
    border: solid 4px #459dde;
    border-color: #65AADD #000 #000 #65AADD;
    border-radius: 100% !important;
    width: 20px !important;
    height: 20px !important;
    box-sizing: border-box;
    background: none !important;
}
.gigastudx_detail #advisor_comment .comment_cont {
	display: flex;
	justify-content: space-between;
}
.gigastudx_detail #advisor_comment .comment_cont .name {
	text-align: right;
	margin-top: 10px;
}
.gigastudx_detail #advisor_comment .comment_cont .txt {
	width: calc(100% - 250px);
	font-size: 14px;
	line-height: 1.8em;
}
.gigastudx_detail #advisor_comment .comment_cont .status {
	border: 1px solid #ccc;
	padding: 16px 20px;
	width: 230px;
}
.gigastudx_detail #advisor_comment .comment_cont .status li {
	display: flex;
	align-items: flex-start;
	font-size: 13px;
}
.gigastudx_detail #advisor_comment .comment_cont .status li h3 {
	width: 90px;
	position: relative;
	padding-right: 18px;
	margin-right: 8px;
	font-size: 13px;
}
.gigastudx_detail #advisor_comment .comment_cont .status li h3:after {
	content: "：";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
}
.gigastudx_detail #advisor_comment .comment_cont .status li > div {
	width: calc(100% - 90px);
	font-feature-settings: "palt";
}
.gigastudx_detail .whiteframe {
	background: #fff;
	padding: 40px;
	max-width: 960px;
	margin: 0 auto;
}
#page_gigastudx.gigastudx_detail .articlelist_cont .articlelist li {
	background: #eee;
	box-shadow: none;
	padding: none;
}
.gigastudx_detail .articlelist_cont .articlelist li a .ttl {
	margin-top: 8px;
}
#page_gigastudx.gigastudx_detail .reference ul {
	list-style-type: disc;
	padding-left: 20px;
}
.gigastudx_detail .reference a {
	color: #459dde;
}
.gigastudx_detail .reference a:hover {
	text-decoration: none;
}
.gigastudx_detail #partner_landing .category_tag {
  text-align: center;
  margin-bottom: 16px;
}
.gigastudx_detail #partner_landing .category_tag > div {
  display: inline-block;
  position: relative;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0 30px;
  font-size: 16px;
  font-weight: bold;
  background: #459dde;
  color: #FFF;
  box-sizing: border-box;
}
.gigastudx_detail #partner_landing .category_tag > div:before, .gigastudx_detail #partner_landing .category_tag > div:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}
.gigastudx_detail #partner_landing .category_tag > div:before {
  top: 0;
  left: 0;
  border-width: 25px 0px 25px 15px;
  border-color: transparent transparent transparent #eee;
  border-style: solid;
}
.gigastudx_detail #partner_landing .category_tag > div:after {
  top: 0;
  right: 0;
  border-width: 25px 15px 25px 0px;
  border-color: transparent #eee transparent transparent;
  border-style: solid;
}
#page_gigastudx .link {
    width: 100%;
    border: 3px solid #459dde;
    color: #459dde;
    padding: 10px;
    border-radius: 25px;
    text-decoration: none;
    display: block;
    font-weight: bold;
    background: #fff;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
	transition: all .5s;
}
#page_gigastudx .link:hover {
	background: #459dde;
	color: #fff;
}
.w720 {
	max-width: 720px;
	margin-right: auto;
	margin-left: auto;
}
#page_gigastudx.page_support .secinner {
	max-width: 600px;
	margin-right: auto;
	margin-left: auto;
}
#page_gigastudx.page_support .secinner h2 {
	margin-bottom: 10px;
}
#page_gigastudx.page_support .secinner ul {
	margin-left: 20px;
	list-style-type: disc;
}
#page_gigastudx .outline_ttl {
	font-size: 36px;
	margin-top: 100px;
}
#page_gigastudx.page_agreement .secinner {
	max-width: 720px;
}
#page_gigastudx.page_outline h2 {
	margin-top: 60px;
    position: relative;
    font-size: 20px !important;
    padding-left: 26px;
    margin-bottom: 10px;
}
#page_gigastudx.page_outline h2:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 6px;
    border: solid 4px #459dde;
    border-color: #65AADD #000 #000 #65AADD;
    border-radius: 100% !important;
    width: 20px !important;
    height: 20px !important;
    box-sizing: border-box;
    background: none !important;
}
#page_gigastudx.page_outline .secinner a {
	color: #459dde;
}
#page_gigastudx.page_outline var {
	font-style: normal;
	border-bottom: 1px dotted #666;
}
#page_gigastudx.page_outline .note {
	font-size: 90%;
	padding: 20px;
	border: 1px solid #666;
	margin-top: 40px;
	margin-bottom: 40px;
}
#page_gigastudx.page_outline .secinner p {
	line-height: 2em;
}
.page_casestudy .secinner p img {
	width: 100%;
}
.page_casestudy .secinner .img_right {
	width: 60%;
	margin-left: 16px;
	margin-bottom: 10px;
}
#page_gigastudx ul.sub_footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 60px auto 0;
	text-align: center;
	align-content: center;
	background: #fff;
	border-radius: 50px;
	padding: 10px 20px;
}
#page_gigastudx ul.sub_footer {
	max-width: 1200px;	
}
#page_gigastudx ul.sub_footer li {
	padding-top: 10px;
	padding-bottom: 10px;
}
#page_gigastudx ul.sub_footer a {
	display: block;
	color: #333;
	margin-right: 20px;
	border-right: 1px solid #aaa;
	padding-right: 20px;
	text-decoration: none;
}
#page_gigastudx ul.sub_footer li:last-child a {
	margin-right: 0;
	border-right: none;
	padding-right: 0;
}
#page_gigastudx ul.sub_footer a:hover {
	color: #459dde;
	text-decoration: underline;
}
.gigastudx_detail .whiteframe section var {
	font-style: normal;
}
.gigastudx_detail .whiteframe section .note {
	margin-top: 30px;
	font-size: 90%;
	color: #333;
}
#reccomend-articles .link {
	margin-bottom: 60px;
}
@media (min-width:601px){
	#page_gigastudx .frame_rt {
		display: none;
	}
	#page_gigastudx .otherslink br,
	.gigastudx_detail #partner_landing h1 br {
		display: none;
	}
/*
	#page_gigastudx .otherslink br,
	.gigastudx_detail #partner_landing h1 br {
		padding: 0;
		width: 32%;
		margin-top: 5px;
		margin-bottom: 5px;
	}
*/
	#page_gigastudx .anchorlink a br.sp,
	.intro_text br.sp {
		display: none;
	}
}
@media (max-width:768px){
	#page_gigastudx .anchorlink li {
	    width: calc((100% - 24px) / 4);
	    min-height: 80px;
	    margin-right: 8px;
	}	
	#page_gigastudx .anchorlink li:nth-child(n + 4) {
		margin-right: 0;
	}
	#page_gigastudx .anchorlink li br {
		display: none;
	}
	.gigastudx_detail #flow li br.pc {
		display: none;
	}
}
@media (max-width:600px){
	#page_gigastudx header {
		background: none;
	}
	#page_gigastudx.gigastudx_index h1 .ttl {
		font-size: 14vw;
	}
	#page_gigastudx.gigastudx_index h1 img {
		width: 100%;
	}
	#page_gigastudx h1 span {
		margin-top: 0;
	}
	#page_gigastudx h1 small span {
		display: block;
	}
	#page_gigastudx .logo_monkasho img {
		width: 50px;
	}
	#page_gigastudx.gigastudx_index #partner_landing .secinner {
	    margin: 60px auto 50px;
	}
	#page_gigastudx .step_cont {
		display: block;
		margin-top: 30px;
	}
	#page_gigastudx .step_cont ul {
		width: 100%;
		margin-top: 30px;
		margin-left: auto;
		margin-right: auto;
	}
	#page_gigastudx .anchorlink {
		padding: 10px;
		padding-bottom: 0;
	}
	#page_gigastudx .anchorlink li {
		font-size: 12px;
		min-height: 90px;
	    width: calc((100% - 8px) / 2);
	    min-height: auto;
	}
	#page_gigastudx .anchorlink li:nth-child(2n) {
		margin-right: 0;
	}
	#page_gigastudx .anchorlink li br {
		display: block;
	}
	#page_gigastudx .otherslink {
		width: 100%;
	}
	#page_gigastudx .otherslink a {
		border-radius: 32px;
	}
	#page_gigastudx #movie_list {
		display: block;
	}
	#page_gigastudx #movie_list li {
	    width: 100%;
		padding-top: 56.25%;
		margin-bottom: 16px;
	}
	#page_gigastudx .articlelist_cont .articlelist {
		display: block;
	}
	#page_gigastudx .articlelist_cont .articlelist li {
		width: 100%;
		margin-bottom: 20px;
		margin-right: 0;
	}
	#page_gigastudx ul.bnr img {
		width: 100%;
		height: auto;
	}
	.gigastudx_detail #partner_landing {
		margin-top: 40px;
	}
	.gigastudx_detail #partner_landing .category_tag > div {
	    height: 42px;
		line-height: 42px;
		font-size: 14px;
	}
	.gigastudx_detail #partner_landing .category_tag > div:before {
	    border-width: 21px 0px 21px 15px;
	}
	.gigastudx_detail #partner_landing .category_tag > div:after {
	    border-width: 21px 15px 21px 0px;
	}
	.gigastudx_detail #partner_landing h1 {
		font-size: 24px;
	}
	.gigastudx_detail .whiteframe {
		padding: 30px 0;
	}
	.gigastudx_detail #outline th {
	    display: block;
	    text-align: left;
	    padding-bottom: 0;
	    color: #459dde;
	    font-size: 16px;
	    background: none;
	    border: none;
	    width: 100%;
	}
	.gigastudx_detail #outline td {
	    display: block;
	    padding-top: 10px;
        border-bottom: 1px dotted #ccc;
        width: 100%;
	}
	.gigastudx_detail #flow {
		display: block;
	}
	.gigastudx_detail #flow li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 15px;
	}
	.gigastudx_detail #flow li:after {
	    position: absolute;
	    bottom: -19px;
	    top: auto;
	    right: auto;
	    left: 50%;
	    box-sizing: border-box;
	    width: 12px;
	    height: 8px;
	    border: 8px solid transparent;
	    border-top: 12px solid #459dde;
	    transform: translate(-50%,0);
	}
	.gigastudx_detail #sentence .imgin {
		display: block;
	}
	.gigastudx_detail #sentence .img {
		width: 100%;
		margin-bottom: 20px;
	}
	.gigastudx_detail #sentence .txt {
		width: 100%;
	}
	.gigastudx_detail #advisor_comment .comment_cont {
		display: block;
	}
	.gigastudx_detail #advisor_comment .comment_cont .txt {
		width: 100%;
		margin-bottom: 30px;
	}
	.gigastudx_detail #advisor_comment .comment_cont .status {
		width: 100%;
	}
	.gigastudx_detail #advisor_comment {
		margin-bottom: 40px;
	}
	.gigastudx_detail #sentence .img_col2 {
		display: block;
		margin-bottom: 0;
	}
	.gigastudx_detail #sentence .img_col2 > div {
		width: 100%;
		margin-bottom: 20px;
	}
	#page_gigastudx .outline_ttl {
		font-size: 30px;
		margin-top: 60px;
		margin-bottom: 20px;
	}
	#page_gigastudx h1 .ruby {
		font-size: 90%;
	}
	#page_gigastudx .logo_monkasho {
		top: 10px;
		left: 10px;
	}
	#page_gigastudx ul.sub_footer {
		border-radius: 8px;
	}
	#page_gigastudx ul.sub_footer li {
		width: 100%;
		text-align: center;
		padding-bottom: 5px;
		padding-top: 5px;
	}
	#page_gigastudx ul.sub_footer a {
		margin-right: 0;
		border-right: none;
		padding-right: 0;
		padding-bottom: 10px;
		border-bottom: #ccc 1px solid;
	}
	#page_gigastudx ul.sub_footer li:last-child a {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;
	}
	.page_casestudy .secinner .img_right {
		width: 100%;
		margin-left: 0px;
		margin-bottom: 20px;
	}
	#page_gigastudx .anchorlink .big a {
		display: block;
	}
	.intro_text {
		width: 100%;
	}
}
@media (max-width:320px){
	.subttl {
		font-size: 14px;
		margin-bottom: 10px;
	}
	.icon_ict {
		margin-bottom: 20px;
	}
	#landing h1 {
		font-size: 20px;
	}
	.intro_text br.sp {
		display: none;
	}
	.intro_text {
		padding: 10px 16px;
	}
}