@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&family=Noto+Sans:wght@200;300;400&family=Roboto:wght@300;400;500;700;900&display=swap');

body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 2.0;
    position: relative;
    min-height: 100vh;

}

.sp_only {
    display: block;
}

.sp_plus_only {
    display: block;
}

.sp_big {
    display: block;
}

.pc_only {
    display: none;
}

.pc_big {
    display: none;
}

@media screen and (min-width: 576px) {
    .sp_only {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .sp_only {
        display: none;
    }

    .sp_plus_only {
        display: none;
    }

    .pc_only {
        display: block;
    }
}

@media screen and (min-width: 993px) {
    .sp_big {
        display: none;
    }

    .pc_big {
        display: block;
    }
}

#firstarea {
    height: 100vh;
    width: 100%;
    position: relative;
    background: whitesmoke;
    z-index: -10;
    overflow: hidden;
}

#firstarea img {
    max-width: 100%;
}

.top_text {
    position: absolute;
    top: 21vh;
    left: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.top_text h2.main_title {
    background: #0068b7;
    color: #fff;
    width: fit-content;
    padding: 0.2em 0.5em 0.2em;
    font-size: 2.0rem;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1.3;
}

.top_text h2.sub_title {
    color: #0068b7;
    font-size: 1.5rem;
    letter-spacing: -0.1em;
    line-height: 1.5;
}

#logo {
    position: absolute;
    bottom: 10vh;
    left: 0;
    z-index: 10;
    font-family: 'Roboto', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    margin: 0;
    padding: 0 5% 0 0;
    line-height: 1.0;
    color: #0072c9;
}

#logo img {
    width: 43vw;
}

#logo.sp_big img {
    width: 60vw;
}

#logo span {
    padding-left: 8%;
}

@media screen and (min-width: 576px) {
    #logo {
        font-size: 8rem;
        bottom: 10vh;
    }

    #logo.sp_big img {
        width: 45vw;
    }
}

@media screen and (min-width: 768px) {

    .top_text h2.main_title {
        font-size: 2.7rem;
        padding: 0em 0.5em 0em;
        line-height: 1.7;
    }

    .top_text h2.sub_title {
        font-size: 2.0rem;
        line-height: 1.0;
    }

    #logo {
        font-size: 10rem;
    }

    .top_text {
        top: 24vh;
    }
}

@media screen and (min-width: 1200px) {
    #logo {
        font-size: 13rem;
        bottom: 5vh;
    }
}

#text {
    position: absolute;
    top: 23vh;
    left: 5vw;
    z-index: 10;
    max-width: 40%;
}

#map {
    position: absolute;
    top: inherit;
    right: -4vw;
    z-index: -10;
    width: 110%;
    bottom: 0;
}

.illsutbox {
    position: absolute;
    top: 0;
    width: 100vw;
    right: 0;
    bottom: 0;
    height: 100%;
}

.illsutbox img {
    height: min-content;
    width: min-content;
}

#illust1 {
    animation: anim1 8s infinite;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    height: fit-content;
}

#illust2 {
    animation: anim2 10s infinite;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

#illust3 {
    animation: anim3 8s infinite;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

#illust1 img {
    max-width: 30px;
}

#illust2 img,
#illust3 img {
    max-width: 120px;
}

#cargo1 {
    animation: cargo1 20s infinite;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    z-index: 0;
}

#cargo1 img {
    width: 40px;
}

#cargo2 {
    animation: cargo2 25s infinite;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    z-index: 0;
}

#cargo2 img {
    width: 35px;
    opacity: 0;
}

#cargo3 {
    animation: cargo3 30s infinite;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    z-index: 0;
}

#cargo3 img {
    width: 28px;
}

#cloud {
    animation: cloud 20s infinite;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    z-index: 0;
    opacity: 0;
}

#cloud img {
    width: 43%;
}

#wave {
    animation: wave 10s infinite;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    z-index: 0;
    opacity: 0;
}

#wave img {
    width: 43%;
}

@media screen and (min-width: 768px) {

    #illust1 img,
    #illust2 img,
    #illust3 img {
        max-width: 100%;
    }

    #cargo1 img {
        width: 65px;
    }

    #cargo2 img {
        width: 52px;
        opacity: 1;
    }

    #cargo3 img {
        width: 40px;
    }

    #cloud,
    #wave {
        opacity: 1;
    }
}

@media screen and (min-width: 1200px) {
    #map {
        top: 16vh;
        bottom: auto;
        width: 59%;
    }
}

section {
    padding: 5rem 0 0;
}

.container {
    width: 80%;
    margin: auto;
    padding: 0 15px;
}

.section_title {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 2.4rem;
    border-bottom: 1px solid #545454;
    padding-bottom: 1.5rem;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.section_title .ja_title {
    font-size: 1.05rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    margin-top: 1rem;
}

.section_title.group {
    padding-top: 2rem;
}

.flexbox {
    display: flex;
    flex-direction: column;
}

.flexbox .img_box {
    width: 100%;
}

.flexbox .text_box {
    width: 100%;
    margin-left: 0%;
}

.flexbox .img_box img {
    max-width: 100%;
}

@media screen and (min-width: 768px) {
    .flexbox {
        flex-direction: row;
    }

    .flexbox .img_box {
        width: 40%;
    }

    .flexbox .text_box {
        width: 57%;
        margin-left: 3%;
    }

    .section_title.group {
        padding-top: 4rem;
    }
}

.main_p {
    font-size: 1.1rem;
}

.sub_p {
    color: #858585;
    font-size: 0.85rem;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
}

#profile table {
    font-weight: normal;
    margin-left: 0%;
    border-spacing: 0;
    font-size: 0.9rem;
    width: 100%;
}

#profile table tr {
    display: flex;
    flex-direction: column;
}

#profile table td {
    border-bottom: 1px solid #e4e4e4;
    padding: 0.3rem 0;
    width: 100%;
}

#profile table th {
    font-weight: normal;
    text-align: left;
    width: 8rem;
    letter-spacing: 0.1em;
    border-bottom: none;
    padding: 2rem 0 0 0;
}

@media screen and (min-width: 768px) {
    #profile table {
        margin-left: 10%;
        width: fit-content;
    }

    #profile table tr {
        flex-direction: row;
    }

    #profile table th {
        border-bottom: 1px solid #e4e4e4;
        padding: 0.8rem;
    }

    #profile table td {
        padding: 0.8rem 1rem;
    }
}

footer {
    background: #2b4166;
    text-align: center;
    color: #d8d8d8;
    padding: 0.8rem 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
}

.group_btn {
    text-align: center;
    padding: 7em 0;
    position: relative;
    overflow: hidden;
    margin-top: 6rem;
}

.group_btn::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../img/groupimg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-animation: mooving 90s infinite;
    animation: mooving 90s infinite;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

@keyframes mooving {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.group_btn .mask {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgb(255 255 255 / 40%);
}

@keyframes bggradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/*== ボタン共通設定 */
.groupbtn {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #90c4e3;
    padding: 0.7rem 4rem 0.7rem 4.5rem;
    text-align: center;
    outline: none;
    transition: ease .2s;
    background: #333;
    font-size: 1.2rem;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;

}

/*ボタン内spanの形状*/
.groupbtn span {
    position: relative;
    z-index: 3;
    /*z-indexの数値をあげて文字を背景よりも手前に表示*/
    color: #fff;
    position: relative;
    white-space: nowrap;
}

.groupbtn:hover span {
    color: #fff;
}

.groupbtn span::before {
    content: '';
    position: absolute;
    bottom: 9px;
    left: -55px;
    width: 33px;
    height: 1px;
    background: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.groupbtn span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    -webkit-transition: all .3s;
    transition: all .3s;
    left: -30px;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 4px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 5px solid #ffffff;
    border-top: 0;
    transform: rotate(225deg);
}

.groupbtn:hover span::before {
    left: -40px;
}

.groupbtn:hover span::after {
    left: -15px;
}

/*== group一覧ページ */
#logoarea {
    font-family: 'Roboto', sans-serif;
    font-size: 3.7rem;
    font-weight: 800;
    margin: 0;
    color: #0072c9;
    background: whitesmoke;
    height: 90px;
    display: flex;
    align-items: center;
}

#top_logo {
    margin: 0 3%;
    line-height: 1.0;
    height: auto;
}

#top_logo img {
    height: auto;
    width: 60vw;
    display: block;
}

#top_logo a {
    text-decoration: none;
    color: #0072c9;
}

#grouparea {
    background-image: url(../img/worldmap_bg.svg);
    text-align: center;
    margin: 0;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 300%;
    background-color: #fff;
    padding: 0;
}

#grouparea svg {
    width: 150%;
    margin: 1rem 1rem 7rem;
    padding: 0;
    filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.15));
}

@media screen and (min-width: 576px) {

    #top_logo img {
        height: auto;
        width: 50vw;
    }
}

@media screen and (min-width: 768px) {
    #logoarea {
        height: 120px;
    }

    #top_logo img {
        height: 80px;
        width: auto;
    }

    #grouparea svg {
        width: 82%;
        margin: 1rem 0 10rem;
    }

    #grouparea {
        background-size: 86%;
    }
}

.svgwrapper {
    overflow-x: scroll;
}

#grouparea svg a:link .fill_red,
#grouparea svg a:visited .fill_red {
    fill: #EF3D39;
    transition: fill, 0s, 0.5s;
    -webkit-transition: fill, 0s, 0.5s;
}

#grouparea svg a:hover .fill_red,
#grouparea svg a:active .fill_red {
    fill: #ff7a7a;
}

#grouparea svg a:link .fill_red_border,
#grouparea svg a:visited .fill_red_border {
    fill: #F34B47;
    transition: fill, 0s, 0.3s;
    -webkit-transition: fill, 0s, 0.3s;
}

#grouparea svg a:hover .fill_red_border,
#grouparea svg a:active .fill_red_border {
    fill: #ffa8a8;
}

#grouparea svg a:link .fill_green,
#grouparea svg a:visited .fill_green {
    fill: #3FAB79;
    transition: fill, 0s, 0.3s;
    -webkit-transition: fill, 0s, 0.3s;
}

#grouparea svg a:hover .fill_green,
#grouparea svg a:active .fill_green {
    fill: #7fcf7e;
}

#grouparea svg a:link .fill_green_border,
#grouparea svg a:visited .fill_green_border {
    fill: #4EB585;
    transition: fill, 0s, 0.3s;
    -webkit-transition: fill, 0s, 0.3s;
}

#grouparea svg a:hover .fill_green_border,
#grouparea svg a:active .fill_green_border {
    fill: #84e19c;
}

#grouparea svg a:link .fill_orange,
#grouparea svg a:visited .fill_orange {
    fill: #FFA333;
    transition: fill, 0s, 0.3s;
    -webkit-transition: fill, 0s, 0.3s;
}

#grouparea svg a:hover .fill_orange,
#grouparea svg a:active .fill_orange {
    fill: #ffbe86;
}

#grouparea svg a:link .fill_orange_border,
#grouparea svg a:visited .fill_orange_border {
    fill: #FFB152;
    transition: fill, 0s, 0.3s;
    -webkit-transition: fill, 0s, 0.3s;
}

#grouparea svg a:hover .fill_orange_border,
#grouparea svg a:active .fill_orange_border {
    fill: #ffd8a8;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
    content: '';
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /*色や形状*/
    background: #146595;
    /*背景色*/
    width: 100%;
    height: 100%;
    /*アニメーション*/
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

/* X 軸（縦へ） */
.rotateX {
    animation-name: rotateXAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes rotateXAnime {
    from {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
    }

    to {
        -webkit-transform: rotateX(-360deg);
        transform: rotateX(-360deg);
    }
}

/*========= 背景色の動きのCSS ===============*/

/*背景色が伸びて出現 共通*/
.bgextend {
    animation-name: bgextendAnimeBase;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    position: relative;
    overflow: hidden;
    /*　はみ出た色要素を隠す　*/
    opacity: 0;
}

@keyframes bgextendAnimeBase {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*中の要素*/
.bgappear {
    animation-name: bgextendAnimeSecond;
    animation-duration: 1s;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes bgextendAnimeSecond {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*--------- 左から --------*/
.bgLRextend::before {
    animation-name: bgLRextendAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0068b7;
    /*伸びる背景色の設定*/
}

@keyframes bgLRextendAnime {
    0% {
        -webkit-transform-origin: left;
        transform-origin: left;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }

    50% {
        -webkit-transform-origin: left;
        transform-origin: left;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    50.001% {
        -webkit-transform-origin: right;
        transform-origin: right;
    }

    100% {
        -webkit-transform-origin: right;
        transform-origin: right;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
}

/* 点滅 */
.blinking {
    -webkit-animation: blink 1.5s ease-in-out infinite alternate;
    -moz-animation: blink 1.5s ease-in-out infinite alternate;
    animation: blink 1.5s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

/*テスト*/


#video-area #video{
    width: 45%;
    box-shadow: 0px 0px 12px rgb(0 0 0 / 12%);
    background-color: #fff;
}
#video-area{
    position: relative;
    padding-left: 1rem;
}
.video-area{ 
    position: relative;
    background-image: url(../img/score-letter_bg.png);
    background-repeat: no-repeat;
    width: 45%;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center right;
    background-size: 50%;
    padding-top: 15rem;
    padding-bottom: 9rem;
    transition-property: background-position;
    transition-duration: .7s;
    transition-delay: .035s;
}
/*
#video-area:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 200%;
    background-color: #e60012;
    top: -30%;
    right: -50%;
    z-index: -1;
    overflow: hidden;
}
*/
.video-area h1{
    margin-bottom: 3rem;
    line-height: 1.5;
}
.video-area .lead{
    padding-right: 3rem;
}
.video-area .row{
    align-items: center;
}
@media screen and (max-width:768px){
    .video-area h1 {
        font-size: 2.2rem;
    }
    #video-area #video{
        margin-top: 2.5rem;
    }
    #video-area{
        padding-left: 0;
    }
}
@media screen and (max-width:576px){
    .video-area {
        background-size: 45%;
        padding-top: 10rem;
        padding-bottom: 6rem;
    }
    .video-area .lead {
        padding-right: 0rem;
    }
    .video-area h1 {
        font-size: 1.8rem;
        line-height: 1.5;
    }
    .video-area .row .col-lg-6:last-child{
        padding: 0;
    }
    #video-area:after{
        top: -10%;   
    }
}

.video {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9のアスペクト比 */
    height: 0;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}