@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700;800&display=swap');

/* ===========================
1.目次＆ブレークポイント
============================== */
/*
1.目次＆ブレークポイント
2.全体
3.header
4.footer
5.コンテンツ共通
6.main-view

*/
@media screen and (min-width: 35.5em) {
    /* 568px sm */
}

@media screen and (min-width: 48em) {
    /* 768px md */
}

@media screen and (min-width: 64em) {
    /* 1024px lg */
}

@media screen and (min-width: 80em) {
    /* 1280px xl */
}

/* ===========================
2.全体
============================== */
*, *:before, *:after {
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
    scroll-behavior: smooth;
    height: 100%;
}

@keyframes page-fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

body {
    font-family: 'M PLUS Rounded 1c', "游ゴシック体", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    animation: page-fadeIn 1s ease 0s 1 normal;
    position: relative;
    height: 100%;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
}

main {
    margin: 90px 0 0;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

footer {
    position: relative;
    z-index: 1;
    position: sticky;
    top: 100vh;
}

#main-view {
    position: relative;
}

.inner_12 {
    max-width: 1200px;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
}

.inner_10 {
    max-width: 1030px;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
}

.inner_9 {
    max-width: 900px;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
}

.skewX003 {
    transform: skewX(0.03deg);
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

@keyframes hover-scale {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.05, 1.05);
    }
    100% {
        transform: scale(1, 1);
    }
}

.fadeIn {
    opacity: 0.1;
    /* transform: translateY(100px); */
    transition: opacity 0.7s, transform 0.7s;
}

.fadeIn.is-fadeIn {
    opacity: 1;
    /* transform: translateY(0); */
}

.over_sm,
.over_md {
    display: none;
}

@media screen and (min-width: 35.5em) {
    /* 568px sm */
    .under_sm {
        display: none;
    }

    .over_sm {
        display: block;
    }
}

@media screen and (min-width: 48em) {
    /* 768px md */
    .under_md {
        display: none;
    }

    .over_md {
        display: block;
    }
}

/* ===========================
3.header
============================== */
header {
    height: 90px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
}

.header_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 94%;
    margin: 0 auto;
}

.header_logo {
    height: 90px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    z-index: 2;
}

.header_logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 27px;
    margin-right: 17px;
    padding: 0;
    font-size: 0.625rem;
    transform: skewX(0.03deg);
    line-height: 1.2;
    letter-spacing: 0.2em;
    text-decoration: none;
    border-radius: 5px;
    color: #fff;
    border: #0398C2 2px solid;
    background-color: #0398C2;
    transition: all 0.2s;
}

.header_logo div a {
    display: inline-block;
    width: auto;
    height: auto;
    font-size: 0.875rem;
    transform: skewX(0.03deg);
    line-height: 1.6;
    letter-spacing: 0;
    color: #7A7A7A;
    border: none;
    background-color: transparent;
}

.header_logo a.gotoHome {
    display: inline-block;
    width: auto;
    height: auto;
    font-size: 0.625rem;
    transform: skewX(0.03deg);
    line-height: 1.6;
    letter-spacing: 0;
    color: #000;
    border: none;
    background-color: transparent;
}

.header_logo a:hover {
    filter: brightness(1.2);
    animation: hover-scale 0.1s ease forwards;
}

.header_logo a img {
    transform: skewX(0);
    position: relative;
    left: -6px;
}

.header_logo a.gotoHome img {
    width: 168px;
    left: 0;
}

.global_nav {
    position: relative;
    z-index: 1;
}

#menu-btn-check {
    display: none;
}

.menu-btn {
    width: 60px;
    height: 60px;
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    z-index: 900;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 40px;
    border-radius: 3px;
    background-color: #858585;
    position: absolute;
    transition: all 0.3s;
}

.menu-btn span:before {
    bottom: 15px;
}

.menu-btn span:after {
    top: 15px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
}

#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#nav-area {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: fixed;
    top: -100%;
    left: 0;
    transition: all 0.3s;
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 800;
}

#menu-btn-check:checked ~ #nav-area {
    top: 0;
    opacity: 1;
}

.main_nav, .sub_nav {
    width: 100%;
    margin: 0;
    padding: 0 3%;
    list-style: none;
}

.main_nav {
    margin-top: 90px;
}

/* .main_nav > * {
	width: 100%;
	height: 35px;
	margin-bottom: 20px;
} */
.main_nav button {
    padding: 0;
    outline: none;
    border: none;
    font: inherit;
    color: inherit;
    background: none;
    cursor: pointer;
}

.main_nav > *,
.main_nav button {
    width: 100%;
    /* height: 60px; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    padding: 8px 0;
    max-width: 280px;
    width: 100%;
    height: 100%;
    font-size: 1rem;
    transform: skewX(0.03deg);
    line-height: 1;
    letter-spacing: 0.2em;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.2s;
}

.main_nav > * img {
    position: relative;
    left: -12px;
}

.main_nav .blue {
    color: #fff;
    border: #0398C2 2px solid;
    background-color: #0398C2;
}

.main_nav .orange {
    color: #fff;
    border: #F29400 2px solid;
    background-color: #F29400;
}

.main_nav .white {
    color: #0398C2;
    border: #0398C2 2px solid;
    background-color: #fff;
}

.sub_nav li {
    margin-bottom: 20px;
}

.sub_nav li a {
    display: block;
    max-width: 280px;
    margin: 0 auto;
    font-size: 1rem;
    transform: skewX(0.03deg);
    line-height: 1.8;
    text-decoration: none;
    text-align: center;
    color: #000;
    transition: all 0.2s;
    border-bottom: #bdbdbd 1px solid;
}

@media screen and (min-width: 48em) {
    /* 768px md */
    .menu-btn {
        display: none;
    }

    #nav-area {
        position: relative;
        top: 0;
        opacity: 1;
        background-color: transparent;
    }

    .main_nav, .sub_nav {
        width: 350px;
        padding: 0;
        display: flex;
    }

    .main_nav {
        margin-top: 7px;
        justify-content: center;
    }

    .main_nav > *,
    .main_nav button {
        padding: 0;
    }

    .main_nav > * {
        max-width: none;
        width: 31%;
        height: 27px;
        margin: 0 5px 0;
        font-size: 0.625rem;
        transform: skewX(0.03deg);
    }

    .main_nav button {
        max-width: none;
        width: 100%;
        height: 27px;
        margin: 0;
        font-size: 0.625rem;
        transform: skewX(0.03deg);
    }

    .main_nav > *:hover {
        filter: brightness(1.2);
        animation: hover-scale 0.1s ease;
    }

    .sub_nav {
        margin-top: 7px;
        justify-content: space-between;
    }

    .sub_nav li {
        margin-bottom: 0;
        flex-grow: 1;
        border-left: #bdbdbd 1px solid;
    }

    .sub_nav li:first-child {
        border-left: none;
    }

    .sub_nav li a {
        max-width: none;
        font-size: 0.75rem;
        transform: skewX(0.03deg);
        border-bottom: none;
    }

    .sub_nav li a:hover {
        color: #0398C2;
        animation: hover-scale 0.1s ease forwards;
    }
}

/* ===========================
4.footer
============================== */
footer {
    background-color: #F5F5F7;
}

.footer_wrap {
    padding: 50px 0 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    width: 94%;
    margin: 0 auto;
}

.footer_logo {
    width: 100%;
    text-align: center;
}

.footer_logo img {
    width: 221px;
}

.footer_logo a {
    display: inline-block;
}

.footer_logo a:hover {
    animation: hover-scale 0.1s ease forwards;
}

.footer_nav {
    width: 100%;
    padding: 0 20px 40px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

.footer_nav dl {
    width: 100%;
    margin: 35px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

.footer_nav dl dt {
    width: 100%;
    margin: 0 0 25px;
    font-size: 0.9375rem;
    transform: skewX(0.03deg);
    font-weight: bold;
    line-height: 1.4;
    color: #3a3a3a;
}

.footer_nav dl dd {
    width: 100%;
    margin: 20px 0 0;
    padding: 0 0 0 1em;
    font-size: 0.9375rem;
    transform: skewX(0.03deg);
    line-height: 1.4;
    position: relative;
}

.footer_nav dl dd::before {
    content: '・';
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
}

.footer_nav dl dd a {
    display: inline-block;
    color: #3a3a3a;
    text-decoration: none;
    transition: color 0.2s;
}

.footer_nav dl dd a:hover {
    color: #00A0E9;
    animation: hover-scale 0.1s ease forwards;
}

.footer_copy {
    width: 100%;
}

.footer_copy small {
    display: block;
    width: 100%;
    font-size: 0.75rem;
    transform: skewX(0.03deg);
    text-align: center;
}

@media screen and (min-width: 35.5em) {
    /* 568px sm */
    .footer_nav dl dd {
        width: 50%;
    }

    .footer_copy small {
        font-size: 0.8125rem;
        transform: skewX(0.03deg);
    }
}

@media screen and (min-width: 48em) {
    /* 768px md */
    .footer_nav dl {
        width: 33.3%;
    }

    .footer_nav dl dd {
        width: 100%;
    }
}

@media screen and (min-width: 64em) {
    /* 1024px lg */
    .footer_wrap {
        padding: 70px 0 30px;
    }

    .footer_logo {
        width: 25%;
    }

    .footer_nav {
        width: 70%;
    }

    .footer_nav dl {
        margin: 0;
    }

    .footer_copy small {
        padding-left: 8.3%;
        font-size: 0.8125rem;
        transform: skewX(0.03deg);
        text-align: left;
    }
}

/* ===========================
5.コンテンツ共通
============================== */
#page-ttl {
    position: relative;
}

#page-ttl::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 50%;
    position: relative;
    top: 0;
    left: 0;
    background: url(../../img/common/page-ttl_back.jpg) center center no-repeat;
    background-size: cover;
}

#page-ttl h1 {
    margin: 0;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    text-align: center;
}

@media screen and (min-width: 35.5em) {
    /* 568px sm */
    #page-ttl::before {
        padding-top: 22.8%;
    }

    #page-ttl h1 {
        font-size: 2rem;
        letter-spacing: 0.4em;
        text-indent: 0.4em;
    }
}

@media screen and (min-width: 48em) {
    /* 768px md */
    #page-ttl h1 {
        font-size: 2.625rem;
    }
}

/* ===========================
6.main-view
============================== */
#main-view {
    width: 100%;
    overflow: hidden;
}

#main-view .mv_back {
    width: 100%;
    position: relative;
    z-index: -1;
}

#main-view .mv_back video {
    vertical-align: top;
    transform: translateX(-25%);
    width: 200%;
    filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
    border: none;
    outline: none;
}

#main-view .mv_inner {
    width: 100%;
    margin-top: -45.7%;
    background-color: rgba(255, 255, 255, 0.8);
}

#main-view .mv_content {
    max-width: none;
    width: 94%;
    height: 100%;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-items: center;
}

#main-view .mv_content .mv_img {
    width: 80%;
    margin: 40px auto 0;
    position: relative;
}

#main-view .mv_content .mv_img .laptop_screen {
    width: 75%;
    height: 78%;
    position: absolute;
    top: 8%;
    left: 13%;
    overflow: hidden;
}

#main-view .mv_content .mv_img .laptop_screen img,
#main-view .mv_content .mv_img .laptop_screen video {
    vertical-align: top;
    width: 100%;
    filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
    border: none;
    outline: none;
    z-index: 1;
    position: relative;
    top: 0;
    left: 0;
    /* 以下だみー */
    animation: dummy-screen 7s ease infinite;
}

@keyframes dummy-screen {
    0% {
        top: 0;
    }
    15% {
        top: 0;
    }
    25% {
        top: -30%;
    }
    40% {
        top: -30%;
    }
    55% {
        top: -55%;
    }
    60% {
        top: -55%;
    }
    70% {
        top: -95%;
    }
    80% {
        top: -95%;
        transform: scale(1, 1);
    }
    81% {
        top: -105%;
        transform: scale(1.1, 1.1);
    }
    82% {
        top: -95%;
        transform: scale(1, 1);
    }
    90% {
        top: -95%;
    }
    100% {
        top: 0;
    }
}

/* だみーここまで */
#main-view .mv_content .mv_img .speech {
    width: 113px;
    position: absolute;
    top: -15%;
    left: -3%;
    z-index: 2;
}

#main-view .mv_content .mv_img .speech a {
    transition: all 0.2s;
    display: inline-block;
}

#main-view .mv_content .mv_img .speech a:hover {
    filter: brightness(1.2);
    animation: hover-scale 0.1s ease forwards;
}

#main-view .mv_content .mv_gotopictswitch {
    width: 100%;
}

#main-view .mv_content .mv_gotopictswitch p {
    margin: 0 0 20px;
    max-width: 328px;
    font-size: 0.8125rem;
    transform: skewX(0.03deg);
    text-shadow: 1px 1px 0px #fff, -1px -1px 0px #fff,
    -1px 1px 0px #fff, 1px -1px 0px #fff,
    1px 0px 0px #fff, -1px -0px 0px #fff,
    0px 1px 0px #fff, 0px -1px 0px #fff;
}

#main-view .mv_content .mv_gotopictswitch .mv_link {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#main-view .mv_content .mv_gotopictswitch .mv_link a {
    display: inline-block;
    width: 48%;
    padding: 0.6em 1em 0.6em 0;
    position: relative;
    top: 0;
    left: 0;
    font-size: 0.8125rem;
    transform: skewX(0.03deg);
    text-align: center;
    line-height: 1;
    text-decoration: none;
    letter-spacing: 0;
    color: #fff;
    background: #F29400;
    border: #F29400 1px solid;
    border-radius: 1.4em;
    filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.4));
    transition: all 0.1s;
}

#main-view .mv_content .mv_gotopictswitch .mv_link a:nth-child(2) {
    color: #0398C2;
    background: #fff;
    border: #0398C2 1px solid;
}

#main-view .mv_content .mv_gotopictswitch .mv_link a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0.4em;
    transform: translateY(-50%);
    width: 1.6em;
    height: 1.6em;
    background-color: #fff;
    border-radius: 50%;
}

#main-view .mv_content .mv_gotopictswitch .mv_link a:nth-child(2)::before {
    background-color: #0398C2;
}

#main-view .mv_content .mv_gotopictswitch .mv_link a::after {
    content: '';
    position: absolute;
    top: 46%;
    right: 1.2em;
    transform: rotate(45deg) translateY(-50%);
    width: 8px;
    height: 8px;
    border-top: #F29400 3px solid;
    border-right: #F29400 3px solid;
}

#main-view .mv_content .mv_gotopictswitch .mv_link a:nth-child(2)::after {
    border-top: #fff 3px solid;
    border-right: #fff 3px solid;
}

#main-view .mv_content .mv_gotopictswitch .mv_link a:hover {
    top: 3px;
    left: 1px;
    filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.6)) brightness(1.2);
}

@media screen and (min-width: 35.5em) {
    /* 568px sm */
    #main-view .mv_back {
        overflow: hidden;
    }

    #main-view .mv_inner {
        width: 100%;
        height: 100%;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(255, 255, 255, 0.8);
    }

    #main-view .mv_content {
        max-width: 730px;
        padding: 0;
    }

    #main-view .mv_content .mv_img {
        width: 50%;
        margin: 0;
    }

    #main-view .mv_content .mv_img .speech {
        top: 0;
        left: -6%;
    }

    #main-view .mv_content .mv_gotopictswitch {
        width: 49%;
        padding-left: 1%;
    }
}

@media screen and (min-width: 48em) {
    /* 768px md */
    #main-view .mv_back video {
        transform: translateX(-16.7%);
        width: 152%;
    }

    #main-view .mv_content .mv_img .speech {
        top: 35px;
    }

    #main-view .mv_content .mv_gotopictswitch .mv_link a {
        letter-spacing: 0.3em;
    }
}

@media screen and (min-width: 64em) {
    /* 1024px lg */
    #main-view .mv_back video {
        transform: translateX(0%);
        width: 100%;
    }

    #main-view .mv_content .mv_img .speech {
        left: -45px;
    }
}

