@charset "utf-8";

body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    color: #333;
    margin: 0 auto;
    width: 100%;
    max-width: 1536px;
}

a {
    color: #333;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* header */
#header{
    height: 0;
    width:100%;
    display: none;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, .95);
    color:#16213E;
    text-align: center;
    padding: 20px;
    font-weight: bold;
}

#header.HeightMax{
    display: flex;
    position: fixed;
    z-index: 999;
    height:85px;
    animation: slideAnime 1s forwards;
}

@keyframes slideAnime {
  from {
    opacity: 0;
    transform: translateY(-85px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#header img {
    width: 140px;
}

/* kv */
#kv {
    position: relative;
    height: 100vh;
    max-height: 1100px;
}

#video-area{
    position: absolute;
    z-index: -1;
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}

.pc-video, .sp-video {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100%;
    min-width: 100%;
    background-color: rgba(47, 89, 162);
}

.sp-video {
  display: block;
}

.pc-video {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp-video {
    display: none;
  }
  .pc-video {
    display: block;
  }
}

#kv p {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.kv-start {
    position: absolute;
    font-size: 2.6rem;
    top: 25%;
    left: 0;
    font-weight: bold;
}

.kv-opt-txt {
    padding: 18px 18px 6px 10px;
}

.kv-x {
    background-color: #fff;
    font-size: 3rem;
    padding-left: 20px;
    position:absolute;
    top: 0;
    right: 0;
    padding: 20px 10px 20px 20px;
    line-height: 1;
}

.kv-y {
    background-color: #fff;
    font-size: 3rem;
    padding: 32px 20px 30px 20px;
    position:absolute;
    top: 4rem;
    right: 0;
    text-align: right;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    line-height: 1;
}

.kv-pt {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 2rem;
}

.kv-txt-large {
    font-size: 2.2rem;
}

.kv-pt p {
    margin: 10px 0;
    text-align: right;
    font-weight: bold;
}

.kv-x span{
    display: none;
}

@media (min-width: 1536px) {
    .kv-x {
        font-size: 6rem;
	}
    .kv-y {
        font-size: 6rem;
    	top: 7rem;
	}
	.kv-start {
        font-size: 4rem;
	}
	.kv-pt {
	    font-size: 4rem;
	}
	.kv-txt-large {
	    font-size: 4.2rem;
	}
}

@media (max-width: 768px) {
    .kv-x {
        font-size: 1.5rem;
        padding: 5px 0 15px 0;
        position: relative;
    }
    .kv-x span {
        display: inline;
    }
    .kv-y {
        display: none;
    }
    #video-area h1 {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
        transform: scaleY(2);
    }
    .kv-pt {
        font-size: 1.8rem;
        bottom: 20%;
    }
    .kv-start {
        top: 5%;
        font-size: 1.8rem;
    }
    .kv-txt-large {
        font-size: 2rem;
    }
    .kv-opt-txt {
    	padding: 12px 18px 4px 10px;
    }
}

@media (max-width: 460px) {
    .kv-x {
        display: none;
    }
    #video-area h1 {
        display: none;
    }
    .kv-pt {
        bottom: 0;
    }
    #kv {
        height: auto;
    }
    .kv-pt {
        font-size: 1.6rem;
    }
    .kv-start {
        font-size: 1.6rem;
    }
    .kv-txt-large {
        font-size: 2rem;
    }
    .pc-video, .sp-video {
        position: relative;
        z-index: -1;
        width: 100%;
        height: 100%;
        top:0;
        left: 0;
        transform: none;
    }
    #video-area{
        position: relative;
    }
}

/* message */
.message-main {
    padding-top: 90px;
}

.message-title {
    margin: 0 10px 40px 10px;
    font-size: 2.3rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
}

.message-title span {
    font-size: 3.5rem;
    padding: 0 12px;
    color: #2F59A2;
    border-bottom: 4px dotted;
}

.message-txt {
    margin: 0 10px;
    text-align: center;
    font-weight: bold;
    line-height: 1.6;
    font-size: 1.2rem;
}

.message-txt span.usr-txt-marker {
    font-size: 1.8rem;
}

.message-txt p {
    margin: 20px 5px;
}

#message .message-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#message .message-list li {
    width: 25%;
}

#message .message-list li img {
    width: 100%;
    vertical-align:top;
}
#message .message-btn {
    margin: 50px 10px 70px 10px;
    text-align: center;
}

@media (max-width: 640px) {
    .message-title {
        font-size: 1.7rem;
    }
    .message-txt {
        font-size: 1.1rem;
        margin: 0;
    }
}

@media (max-width: 460px) {
    #message .message-list li {
        width: 50%;
    }
}

/* interview */
#interview {
    margin: 100px 0;
}

#interview .interview-area{
    width: 100%;
}

#interview img {
    width: 100%;
    vertical-align:top;
}

.interview-img {
    position: relative;
    cursor: pointer;
    transition: all .5s ease;
}

.interview-img img:hover{
    opacity:0.5;
    transition:0.3s;
}

.interview-img.close::before{
    transform: rotate(45deg);
}

.interview-img.close::after{
    transform: rotate(-45deg);
}

.interview-box {
    display: none;
    margin: 50px;
}

.interview-title.top {
    position: absolute;
    top: 30%;
    left: 5%;
}

.interview-title.bottom {
    position: absolute;
    top: 30%;
    right: 5%;
    text-align: right;
}


.interview-message {
    font-size: 1.2rem;
    font-weight: bold;
}

.interview-title p {
    line-height: 2;
    margin: 20px;
}

.interview-ans-title {
    margin-top: 20px;
    font-size: 1.6rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    color: #2F59A2;
    font-weight: bold;
}

.interview-time-title {
    font-size: 1.3rem;
    color: #2F59A2;
    font-weight: bold;
}

.interview-ans {
    margin-top: 20px;
}

.interview-box ul .interview-ans-list {
    margin-bottom: 50px;
}

.interview-time {
    display: inline-block;
    line-height: 1;
    font-weight: bold;
    font-size: .9rem;
    border: 2px solid #333;
    border-radius: 50px;
    padding: 5px 10px;
    margin-right: 10px;
}

.interview-flow-list li {
    margin: 15px 0;
}

.interview-flow-list li p {
    margin-top: 6px;
}

.interview-bg {
    padding: 10px 20px;
}

@media (max-width: 640px) {
    .interview-title.top {
        top: 10%;
        left: 0;
    }
    .interview-title.bottom {
        top: 10%;
        right: 0;
    }
    .interview-message {
        font-size: 1rem;
    }
    .interview-title p {
        margin: 10px 0;
    }
    .interview-bg {
        padding: 6px 8px;
    }
    .interview-small {
        font-size: .8rem;
    }
    .interview-box {
        margin: 50px 15px;
    }
    .under-line-title {
        font-size: 1.2rem;
    }
    .interview-ans-title {
        font-size: 1.4rem;
    }
}

/* analytics */
#analytics ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#analytics .analytics-box {
    display: flex;
    justify-content: right;
    transform: translate3d(0, 0, 0);
}

#analytics .analytics-box > div {
    background-color: #fff;
    text-align: center;
    padding: 20px;
    margin: 10px;
    width: 25%;
}

#analytics .analytics-ratio {
    display: flex;
    justify-content: center;
}

#analytics .analytics-ratio img {
    width: 50%;
    margin-top: 10px;
}

#analytics .analytics-ratio div {
    padding: 0 10px;
}

#analytics ul li {
    width: 23%;
    margin: 10px 0;
    text-align: center;
    align-items: center;
}

#analytics ul li div {
    background-color: #fff;
    padding: 20px 0;
}

#analytics section {
    margin: 50px;
    padding: 20px 40px;
    background-color: #f2f2f2;
    background-image: url(../img/analytics-bg.svg);
    background-position: 5% 15%;
    background-repeat: no-repeat;
    background-size: 50%;
    color: rgba(47, 89, 162);
}

#analytics .analytics-txt {
    font-size: 3rem;
    font-weight: bold;
}

@media (max-width: 1200px) {
    #analytics section{
        margin: 50px 20px;
        padding: 20px;
    }
    #analytics ul li {
        width: 24%;
    }
    #analytics .analytics-txt {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    #analytics ul li {
        width: 48%;
    }
    #analytics .analytics-box > div {
        width: 48%;
        margin: 150px 0 10px 0;
    }
    #analytics section {
        background-position: 35% 3%;
    }
    #analytics .analytics-box {
        justify-content: space-between;
    }
}

@media (max-width: 640px) {
    #analytics .analytics-box > div {
        margin: 80px 0 10px 0;
    }
    #analytics .analytics-txt {
        font-size: 2.4rem;
    }
    #analytics section{
        margin: 40px 5px;
        padding: 5px;
    }
}

/* sammary */
#sammary {
    margin: 100px 0;
}

#sammary table {
    width: 60%;
    margin: 0 auto;
}

#sammary table tr td,#sammary table tr th {
    padding: 20px 15px;
    border-bottom: 1px dashed #333;
}

#sammary table tr th {
    text-align: left;
    vertical-align: top;
    font-weight: normal;
    width: 25%;
}

#sammary table tr td {
    font-size: 0.9rem;
}

@media (max-width: 960px) {
    #sammary table {
        width: 80%;
    }
    #sammary table tr th {
        width: 22%;
    }
}

@media (max-width: 640px) {
    #sammary table {
        width: 92%;
    }
    #sammary table th,
    #sammary table td{
        display: block;
        text-align: left;
    }
    #sammary table tr th {
        border: none;
        font-weight: bold;
        padding: 23px 15px 0 15px;
        width: 100%;
    }
}

/* flow */
#flow {
    background-color: #2F59A2;
    color: #fff;
    padding: 100px 0;
}

#flow ul {
    width: 80%;
    margin: 0 auto;
}

#flow ul li {
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 20px 20px 20px 0;
    position: relative;
}

#flow ul li:not(:last-child):after {
    content: "";
    width: 14px;
    height: 48px;
    position: absolute;
    left: 50%;
    bottom: -30px;
    margin-left: -7px;
    background-color: #fff;
    clip-path: polygon(47% 85%, 47% 0, 53% 0, 53% 85%, 90% 70%, 50% 100%, 10% 70%);
}

#flow ul li small {
    font-size: .8rem;
}

#flow .flow-step {
    text-align: center;
    width: 8%;
}

#flow .flow-step-num {
    font-size: 2rem;
    font-family: 'Yu Gothic UI';
    vertical-align: baseline;
}

#flow .flow-content {
    width: 92%;
}

#flow .flow-title {
    font-size: 1.5rem;
    line-height: 1;
    padding:15px 0 15px 15px;
    width: 25%;
    border-left: 1px solid #fff;
}

#flow .flow-txt {
    width: 75%;
}

#flow .flow-txt-title {
    border-bottom: 1px dotted; #fff;
    display: inline-block;
    margin-bottom: 7px;
}

#flow .flow-entry-btn {
    text-align: center;
    margin-top: 50px;
}

#flow .flow-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 960px) {
    #flow ul {
        width: 92%;
    }
}

@media (max-width: 768px) {
    #flow .flow-content {
        display: block;
        width: 86%;
    }
    #flow .flow-txt {
        border-left: 1px solid #fff;
        padding: 15px 0 15px 25px;
        width: 100%;
    }
    #flow .flow-title {
        font-size: 1.2rem;
        padding: 15px 0 0 25px;
        width: 100%;
        font-weight: bold;
    }
    #flow .flow-step {
        width: 14%;
    }
}

/* training */
#training {
    margin: 100px 0 50px 0;
    text-align: center;
}

#training .movie-img {
    width: 35px;
}

#training #youtube-movie-content {
    margin-top: 60px;
}

@media (max-width: 640px) {
    #training #youtube-movie-content #player {
        width: 95%;
        height: 280px;
    }
}
