@charset "UTF-8";

@font-face {
    font-family: '851MkPOP';
    src: url(../footage/851MkPOP_101.ttf) format('truetype');
}

/* parts --------------------------------*/

body {
    font-family: "Noto Sans JP", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    line-height: 1.75;
    color: #333;
    overflow-x: hidden;
}

a {
    color: #333;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

li {
    list-style: none;
}

h1 {
    margin: 110px 18px 70px;
    transform: rotate(-5.005deg);
    color: #ff6c00;
    font-family: '851MkPOP';
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
}

h2 {
    margin: 90px 18px 70px;
    transform: rotate(-5.005deg);
    color: #ff6c00;
    font-family: '851MkPOP';
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
}

h3 {
    margin-top: 60px;
    text-align: center;
    color: #333;
    font-family: '851MkPOP';
    font-size: 28px;
    font-weight: 400;
}


p {
    margin: 50px 27px;
}

@media(min-width: 768px) {
    p {
        text-align: center;
    }

    h1 {
        margin: 60px 18px;
    }

    h2 {
        margin: 60px 18px;
    }
}

.main-p {
    margin: 50px auto;
    padding: 0 20px;
}

.fadeup {
    animation-name: fadeUpAnime;
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.button {
    position: relative;
    display: inline-block;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    border-radius: 4rem;
}

.button-icon {
    position: absolute;
    top: 50%;
    right: 1rem;
    line-height: 1;
    transform: translate(0%, -50%);
}

.button:hover .button-icon {
    margin-right: -0.5625rem;
}

/* navy button */
.button-navy {
    padding: .5rem 2.5rem .5rem 1rem;
    margin-right: 1rem;
    margin-top: 32px;
    margin-left: 20px;
    background-color: #0034ab;
    font-size: 1rem;
    color: #fff;
    border: 1.5px solid #000;
}

.button-navy-icon {
    font-size: 2.0625rem;
}

.button-navy:hover {
    background-color: #fff;
    border: 1.5px solid #0034ab;
    color: #0034ab;
    font-weight: 500;
}

/* big button -----------------------*/
.big-buttons {
    margin-top: 70px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    column-gap: 10px;
}

.PnButton {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.PnButton p {
    margin-top: 45px;
    margin-bottom: 13px;
    text-align: center;
    font-family: '851MkPOP';
    font-size: 20px;
    line-height: 19.2px;
    letter-spacing: 2px;
    color: #0034ab;
}

.button-entry {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 20px;
    padding: 26px;
    letter-spacing: 0.853px;
    width: 65vw;
    max-width: 300px;
    height: 70px;
    border: 1.5px solid;
    border-radius: 9999px;
    font-weight: 600;
    background-color: #f9f9f9;
}

.adult::before {
    position: absolute;
    content: '';
    z-index: -1;
    top: 8px;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid;
    border-radius: 9999px;
    background-color: #eb612a;
}

.adult:hover {
    background-color: #eb612a;
}

.teens::before {
    position: absolute;
    content: '';
    z-index: -1;
    top: 8px;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid;
    border-radius: 9999px;
    background-color: #147fbd;
}

.teens:hover {
    background-color: #147fbd;
}


/* header
----------------------------------------------------------- */
.header {
    position: fixed;
    width: 100vw;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    height: 75px;
    /*    padding: 0.812rem 1.25rem 1.187rem; */
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0px 2px 10px 0px rgba(158, 197, 236, 0.35);
}

.header_inner {
    height: auto;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 54px;
}


/* logo */
.header img {
    display: inline-block;
    width: 75px;
    max-width: 60vw;
    vertical-align: middle;
}

.headerP {
    display: inline-block;
    margin: auto auto auto 0;
    padding-top: 10px;
    letter-spacing: 2.3px;
    font-family: '851MkPOP';
    color: #094074
}



.header-insta {
    display: inline-block;
    position: relative;
    font-size: 1.5rem;
    line-height: 50px;
    height: 40px;
    /* padding-left: 5px;*/
    letter-spacing: 0;
    color: #094074;
}

@media(min-width:768px) {
    .header {
        position: absolute;
        opacity: 0;
    }

    .top-header {
        opacity: 1;
    }


    .header-insta {
        display: none;
    }

    .headerP{
        font-size: 20px;
    }
}


/* ハンバーガーメニュー -------------------------------*/
.hamburger-menu {
    visibility: hidden;
}

.hamburger-button {
    position: relative;
    display: inline-block;
    border: none;
    width: 60px;
    height: 55px;
    margin-top: 9px;
}

@media(min-width: 768px) {
    .hamburger-button {
        display: none;
    }
}

.openbtn-area {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .6s;
    width: 60px;
    height: 60px;
}

.hamburger-button-bar {
    display: inline-block;
    position: absolute;
    transition: all .4s;
    width: 45%;
    height: 2px;
    background-color: #094074;
    left: 16px;
}

span.hamburger-button-bar:nth-child(1) {
    top: 1.35rem;
}

span.hamburger-button-bar:nth-child(2) {
    top: 1.85rem;
}

span.hamburger-button-bar:nth-child(3) {
    top: 2.35rem;
}

/*activeクラスが付与されると .openbtn-areaが360度回転し、その中の線が回転して×に*/
.hamburger-button.active .openbtn-area {
    transform: rotate(360deg);
}

.hamburger-button.active .hamburger-button-bar:nth-child(1) {
    top: 1.55rem;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.hamburger-button.active .hamburger-button-bar:nth-child(2) {
    opacity: 0;
}

.hamburger-button.active .hamburger-button-bar:nth-child(3) {
    top: 2.25rem;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.hamburger-menu {
    position: fixed;
    display: flex;
    top: -520px;
    left: 0;
    width: 100%;
    height: 520px;
    padding: 2rem 3rem;
    transition: all 0.6s;
    background-color: rgba(255, 255, 255, 0.8);
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
    z-index: 10;
}

/* when open */
.hamburger-menu-active {
    top: 75px;
    visibility: visible;
}

/*navigation -------------------------------------------*/
.hamburger-nav-first {
    width: 100%;
}

.hamburger-nav-first-list {
    display: flex;
    flex-direction: column;
    row-gap: 1.6rem;
    padding-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: #323232;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 19.2px;
    text-decoration: none;
}

.hamburger-nav-first-list:nth-child(2) {
    color: #eb612a;
}

.hamburger-nav-first-list li {
    padding: 0.4rem;
}

.hamburger-nav-first-list li:hover {
    background-color: #0034ab;
}

.hamburger-nav-first-list li:hover .nl-title {
    color: #fff;
}

.hamburger-nav-second {
    margin: 20px auto;
}

.hamburger-nav-second .button-entry {
    width: 170px;
    height: 40px;
    padding: 0;
    border-bottom: 5px solid;
    font-size: 18px;
}


.hamburger-nav-second .adult {
    margin-bottom: 18px;
}

/* 2 column ------------------------------------*/
.side-nav {
    display: none;
}

.contents {
    width: 100%;
}

@media(min-width: 768px) {
    .main {
        display: flex;
        justify-content: space-evenly;
        width: 100vw;
    }

    /* side-nav ---------------------------*/
    .side-nav {
        display: block;
        width: 20%;
        min-width: 177px;
        margin-top: 100px;
        margin-bottom: 30px;
        padding: 0 20px 30px;
        background-color: #ffdd4a;
        border: 1.5px solid;
        border-radius: 20px;
    }

    .side-header {
        position: sticky;
        top: 0;
        width: 100%;
        box-sizing: border-box;
        font-size: 0.8125rem;
        text-align: center;
    }

    .logoToTop img {
        width: 100%;
        margin: -22px auto;
    }


    /* side-nav-first --------------------------*/
    .side-nav-first-list {
        overflow: hidden;
        border: 1px solid #000;
        border-radius: 10px;
        background: #f5f5f5;
    }

    .side-nav-first-list-item {
        padding: 0.4rem;
        border-top: 1px solid #000;
        text-align: start;
    }

    .side-nav-first-list-item:hover {
        background-color: #0034ab;
    }

    .side-nav-first-list-item:hover .nl-title {
        color: #fff;
    }

    .side-nav-first-list-item:first-child {
        border-top: 0;
    }


    /* side-nav-third -------------------*/

    .side-nav-third {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 1rem;
    }

    .side-nav-third .button-entry {
        max-width: 140px;
        height: 35px;
        margin: 6px auto;
        padding: 3px 15px 0;
        font-size: 12px;
        font-weight: 500;
        background-color: #fff;
    }

    .side-nav-third .button-entry::before {
        top: 5px;
    }

    .side-nav-third .adult:hover {
        background-color: #eb612a;
    }

    .side-nav-third .teens:hover {
        background-color: #147fbd;
    }

    /* side-contact -----------------------*/

    .side-contact-list {
        display: flex;
        justify-content: space-evenly;
        margin-top: 1rem;
    }

    .side-contact-list-item {
        border: none;
        border-radius: 50%;
    }

    .side-contact-list-item .btn-sns {
        width: 50px;
        height: 50px;
    }

    .side-contact-list-item iconify-icon {
        width: 35px;
        height: 35px;
        transform: translate(-1.1875rem, 0.375rem);
        color: #fff;
    }


    .blank {
        height: 1000px;
    }

    /* contents --------------*/
    .contents {
        width: 70%;
    }

}


/* footer -----------------------------*/

footer {
    background-color: #eb612a;
    border-top: 1.5px solid;
}


.contact {
    height: 300px;
}

.contact p {
    font-family: '851MkPOP';
    font-size: 20px;
    line-height: 19.2px;
    letter-spacing: 2px;
    color: #ffdd4a;
    margin: 50px auto 15px;
    text-align: center;
}

.mail-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 163px;
    height: 75px;
    margin: 15px auto 100px;
    border: #222 solid 1.5px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.envelope {
    font-size: 65px;
    color: #333;
}

footer h3 {
    padding-top: 58px;
    margin-top: 0;
    color: #fff;
    text-align: center;
    font-family: '851MkPOP';
    font-size: 32px;
    letter-spacing: 0.853px;
}

.address h3 {
    color: #fff;
    padding-top: 50px;
}

.address p {
    text-align: center;
    color: #FFF;
}

.map {
    display: block;
    width: 80vw;
    height: calc(80vw * 0.7);
    margin-right: auto;
    margin-left: auto;
    border: 1.5px solid;
}

.footer-container2,
.square-container {
    display: none;
}

.footer-container3 {
    padding-top: 30px;
}

.logo-container {
    text-align: center;
}

.logo-container img {
    width: 195px;
}

.logo-container a:hover {
    opacity: .9;
}

.footer-call {
    color: #ffdd4a;
    text-align: center;
    font-size: 25px;
    margin: 100px auto;
}

small {
    display: block;
    padding-bottom: 1.5rem;
    color: #FFF;
    text-align: center;
    font-size: 11px;
}



@media(min-width: 768px) {
    footer {
        margin: min(5vw, 40px) calc(50% - 50vw) 0;
        padding: 35px 50px 20px;
        width: 100vw;
        background-color: #094074;
        color: #fff;
    }

    .contact,
    .footer-call {
        display: none;
    }

    .footer-big-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: min(2vw, 20px);
    }

    .footer-big-container h3 {
        padding: 0;
        margin: 0;
        text-align: start;
        font: 25px 'Noto Sans JP';
    }

    .footer-container1 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 300px;
    }

    .map {
        display: block;
        width: 25vw;
        max-width: 330px;
        height: 17.5vw;
        max-height: 231px;
        padding: 13px 0;
        margin-left: 0;
    }

    .address p {
        text-align: start;
        margin: 0;
        font-size: 16px;
    }

    .footer-container2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        height: 300px;
    }

    .footer-container2 ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        height: 250px;
    }

    .contents-list-item a {
        color: #fff;
    }

    .footer-container3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: 300px;
        padding-top: 0;
    }

    .footer-container3 img {
        width: 114px;
    }

    .square-container {
        display: flex;
    }

    .square-container a {
        width: 140px;
        height: 45px;
        color: #fbfbfb;
        border: 1.5px #fbfbfb solid;
        border-radius: 30px;
        font-size: 17px;
        font-weight: 500;
        text-align: center;
        padding-top: 8px;
    }

    .square-container a:hover {
        background: rgba(255, 255, 255, .4);
    }

    small {
        text-align: center;
        padding: 0;
    }
}



/*cover ---------------------------------------*/

.cover {
    position: relative;
    top: 0;
}


.cover-slick {
    overflow: hidden;
    line-height: 1;
    visibility: hidden;
}

.cover-slick.slick-initialized {
    visibility: visible;
}

.cover-slick-item {
    aspect-ratio: 0.5625;
}

.slick-dots {
    bottom: 0px;
}

.sp {
    object-fit: cover;
    object-position: left;
    height: 100%;
}


@media only screen and (min-width: 768px) {
    .cover h2 {
        margin: 0 15px 0;
        top: 40px;
        font-size: 57px;
        width: 520px;
    }

    .cover-slick-item {
        aspect-ratio: 1.78;
    }

    .pc {
        object-position: center;
    }

}

@media(min-width: 1024px) {
    .cover h2 {
        top: 80px;
        font-size: 68px;
        width: 600px;
    }
}



/* section news ---------------------------------*/
@media(min-width:768px) {
    #news h2 {
        margin-top: 50px;
    }
}


.news-list {
    border-top: .0625rem solid #444;
}

.news-list li {
    padding: 1.21rem .75rem 1rem;
    border-bottom: .0625rem solid #444;
}

.news-badge {
    display: inline-block;
    width: 5rem;
    padding: .35rem 0 .5rem;
    color: #f00;
    line-height: 1;
    font-weight: 500;
    text-align: center;
    background-color: #ffdd4a;
    border-radius: .3125rem;
    margin-left: 1rem;
}

.news-date {
    display: inline-block;
    width: 6rem;
    font-weight: 500;
}

.news-heading {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    font-size: large;
}

.news-more {
    text-align: right;
    margin-top: 1rem;
}

/* section aboutKSC -------------------------------*/
.aboutKSC p {
    max-width: 663px;
}

.marker {
    position: relative;
    color: #333;
    font-size: 23px;
    margin: auto 18px;
    background: linear-gradient(transparent 50%, rgba(255, 239, 99, 1)50%);
    display: inline-block;
    /* 背景の繰り返しを停止 */
    background-repeat: no-repeat;
    /* マーカーの横方向を0にして縮める */
    background-size: 0% 100%;
    transition: background-size 1s;
}


@media(min-width:768px) {
    .marker-parent {
        text-align: center;
    }
}

.marker.on {
    /* 横方向を100%にして、マーカーを引く */
    background-size: 100% 100%;
}

.marker br {
    margin-left: 20px;
}


.mask {
    width: 200px;
    height: 200px;
    position: relative;
    background-repeat: no-repeat;
}

#people-peace {
    margin-left: 20px;
    background: url(../images/main/people-peace.jpg);
    background-size: cover;
}

#people-meeting {
    margin-top: -15px;
    margin-left: 45vw;
    background: url(../images/main/10Mask-group.jpg);
    background-size: cover;
}

.mask::before,
.mask::after {
    content: '';
    position: absolute;
    display: inline-block;
    border-radius: 100%;
    background-color: #a6d9ff;
}

#people-peace::before {
    top: -30px;
    left: -10px;
    width: 40px;
    height: 40px;
}

#people-peace::after {
    top: 186px;
    left: 170px;
    width: 30px;
    height: 30px;
}

#people-meeting::before {
    top: 190px;
    left: -35px;
    width: 60px;
    height: 60px;
}

.merit-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.box {
    width: 90%;
    height: auto;
    opacity: 0;
    margin-top: 20px;
}

.BfadeUp {
    animation-name: BfadeUpAnime;
    animation-duration: 1.3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes BfadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2:has(#first-hand) {
    margin-top: 140px;
}

#first-hand {
    position: relative;
    padding-top: 100px;
    padding-bottom: 10px;
    margin-bottom: 40px;
    background-image: url('../images/main/-24.jpg');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    mix-blend-mode: plus-darker;
}

#first-hand::before{
        content: "";
        position: absolute;
        top: 0;  bottom: 0;
        left: 0;  right: 0;
        background: black;
        opacity:0.2;
}

#first-hand p {
    color: #fff;
    text-shadow: 0px 2px 4.5px rgba(0, 0, 0, 0.55);
}

.underMarker-parent {
    margin-left: 15px;
    margin-right: 15px;
}

.underMarker {
    margin: 50px 0;
    background: linear-gradient(transparent 11%, rgba(255, 239, 99, 1)11%);
    font-size: 23px;
    transition: background-size 1s;
    color: #333;
}

.fes-link img {
    display: block;
    margin: auto;
    width: 80%;
}

.fes-link img:hover {
    opacity: 0.7;
}

@media(min-width:768px) {
    .box {
        width: 32%;
    }

    .underMarker-parent {
        margin-left: 0;
        text-align: center;
    }

    .fes-link img {
        width: 60%;
    }
}

/* section process -----------------------------------*/

.process {
    position: relative;
}

.process-wrap {
    position: relative;
}

.vertical-line {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    /* 左右０、margin: autoで、absoluteでも中央ぞろえ */
    width: 1.8px;
    height: 100%;
    /* .process-wrap の100% */
    background-color: #333;
    z-index: -1;
}

.process-item {
    position: relative;
    /* z-indexを適用するため */
    text-align: center;
    font-weight: 600;
    z-index: 4;
    background-color: #ffdd4a;
    padding: 1.5rem 2rem;
    border: 1.8px solid #333;
    border-radius: 50px;
    margin: 40px auto;
    width: fit-content;
}

.process-item:nth-child(3)::before {
    content: '随時';
    color: #eb612a;
}

.process-item:nth-child(4)::before {
    content: '4/24 or 4/27';
    color: #eb612a;
}

.process-item:nth-child(5)::before {
    content: '4/27-';
    color: #eb612a;
}

.process-item:last-child {
    background-color: #fe9000;
    font-size: 18px;
}

.process-item:last-child::before {
    content: '5/25-26 ';
    color: yellow;
}

.flipLeft {
    animation-name: flipLeftAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    perspective-origin: left center;
    opacity: 0;
}

@keyframes flipLeftAnime {
    from {
        transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
        opacity: 0;
    }

    to {
        transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
        opacity: 1;
    }
}

/*section video ----------------------------------------------*/

.video {
    display: none;
}

.video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10.667px;
    border: 2px solid #333;
    margin: auto 20px;
    padding: 25px 10px;
}

iframe {
    margin-top: 20px;
    width: 80vw;
    height: calc(80vw * 9 / 16);
}

@media(min-width: 768px) {
    .video-container {
        width: 50vw;
        margin-left: auto;
        margin-right: auto;
    }

    iframe {
        width: 40vw;
        max-width: 550px;
        height: calc(40vw * 9 / 16);
        max-height: 340px;
        margin-top: 10px;
    }
}

.video-container p {
    color: #000;
    text-align: center;
    margin: 0;
    font-family: '851MkPOP';
    font-size: 20px;
    line-height: 19.2px;
}


/* section structure ------------------------------------------*/

.structure h2{
    margin-bottom: 20px;
}

.structure-container {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 550px;
}

.vertical2{
    height: 360px;
}

.sItem{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    padding: .5rem 1rem .5rem 1rem;
}

.sItem:nth-child(2) {
    border-radius: 5px;
    border: 2px solid #333;
    background: #fff;
    max-width: 80%;
    height: auto;
}

.sItem:nth-child(3){
    border-radius: 5px;
    border: 2px solid #333;
    background: #fff;
    max-width: 60%;
}

.sItem:nth-child(4){
    background: #FFDD4A;
    border:#333 2.5px solid;
    border-radius: 20px;
    max-width: 80%;
    box-shadow: inset 3px 3px 0px 0px rgba(255, 255, 255, .5),
    inset -4px -6px 0px 0px #d65b0073,
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
}

.sItem:nth-child(4):hover{
    box-shadow: 3px 3px 1px 0 rgba(255, 255, 255, .3),
    -3px -3px 1px 0 rgba(46, 66, 90, .2),
    inset -4px -4px 6px 0 rgba(255, 255, 255, .2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}

.fourth-items-parent{
    border:#333 2px solid;
    border-radius: 5px;
    padding: 1rem .5rem;
    width: 95%;
    background-color: #fff;
    text-align: center;
}

.to-line-text{
    display: block;
    margin-bottom: .5rem;
}

.lines-parent{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.lines-items{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 46%;
    height: 105px;
    border-radius: 20px;
    padding: .5rem;
}


.adult-line{
    border: #333 2.5px solid;
    box-shadow: 3px 3px #eb612a;
}

.adult-line:hover{
    color: #fff;
    background-color: #eb612a;
}

.teens-line{
    border: #333 2.5px solid;
    box-shadow: 3px 3px #147fbd;
}

.teens-line:hover{
    color: #fff;
    background-color:#147fbd;
}

.seal{
    display: block;
}

.seal1{
    font-weight: 600;
}

.seal2{
    font-size: 11px;
}


@media(min-width: 768px){
    .vertical2{
        height: 400px;
    }

    .fourth-items-parent{
        width: 75%;
    }

    .lines-items{
        width: 40%;
    }
}

@media(min-width: 1280px){
    .fourth-items-parent{
        width: 60%;
    }

    .lines-items{
        width: 30%;
    }
}


/*section member --------------------------------------------*/
.member-card-slick {
    overflow: hidden;
    visibility: hidden;
}

.member-card-slick.slick-initialized {
    visibility: visible;
}

.member-card-box {
    min-height: 268px;
    border-radius: 5px;
    border: 2px solid #000;
    margin: auto 7px;
}


.member-card-face {
    aspect-ratio: 2;
    border-radius: 5px;
    width: 90%;
    margin: 12px auto auto;
}

.member-card-face img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    border-radius: 5px;
}

.member-card-name h4 {
    margin-left: 35px;
    font-size: 17px;
    font-weight: 600;
    line-height: 25.5px;
}

.member-short .member-card-name h4 {
    margin-top: 20px;
}

@media(min-width:768px) {
    .member-card-name h4 {
        margin-left: 20px;
    }
}

.member-card-name p {
    font-size: 16px;
    line-height: 25.5px;
    margin: 18px 30px;
}

.member .button-navy {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 14px;
    margin-left: 0;
}

.insert {
    margin-bottom: 16px;
}

.down-arrow {
    text-align: center;
}

.down-arrow p {
    margin: 16px auto 0;
}

.for-member {
    text-align: center;
}

.for-member .button-navy {
    margin: 14px 0 0;

}

/*section SNS --------------------------------------------*/
.SNS {
    margin-top: 100px;
    padding-bottom: 60px;
}

.SNS-box p {
    color: #ff6c00;
    text-align: center;
    font-family: '851MkPOP';
    font-size: 18px;
    line-height: 19.2px;
    letter-spacing: 1px;
    background-color: #fff;
    position: relative;
    width: 275px;
    margin-left: auto;
    margin-right: auto;
}

.SNS-container {
    display: flex;
    width: 60vw;
    min-width: 300px;
    height: 148px;
    margin-right: auto;
    margin-left: auto;
    margin-top: -56px;
    max-width: 1000px;
    border-radius: 3px;
    border: 2px solid #000;
    justify-content: space-evenly;
    align-items: center;
}

@media(min-width: 768px) {
    .SNS-container {
        width: 35vw;
    }
}

a.btn-sns {
    position: relative;
    display: inline-block;
    font-size: 2.4rem;
    line-height: 50px;
    width: 55px;
    height: 55px;
    padding: 0;
    letter-spacing: 0;
    color: #fff;
    border-radius: 50%;
    border: 1px solid #000;
}

a.btn-sns:hover {
    color: #fff;
    -webkit-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    transform: rotateX(360deg);
}

a.btn-sns--instagram {
    background: #d6249f;
    background: -webkit-linear-gradient(45deg, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    background: linear-gradient(45deg, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

a.btn-sns--line {
    background: #06c755;
}

iconify-icon {
    position: absolute;
    color: #fff;
    width: 50px;
    height: 50px;
    transform: translate(7.5px, 7.5px);
}


/* go-to -----------------------------*/

.go-to-guideline {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    z-index: 10;
    cursor: pointer;
    text-align: right;
}

.go-to-guideline a img {
    width: 105px;
    height: 105px;
}

@media(min-width:768px) {
    .go-to-guideline {
        bottom: 30px;
        right: 30px;
    }

    .go-to-guideline a img {
        width: 120px;
        height: 120px;
    }
}

.go-to-guideline:hover {
    animation: poyon 1.1s linear 0s 1;
}

@keyframes poyon {
    0% {
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }

    5% {
        transform: scale(1.1, 0.9) translate(0%, 5%);
    }

    10% {
        transform: scale(1.2, 0.8) translate(0%, 15%);
    }

    20% {
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }

    30% {
        transform: scale(0.9, 1.2) translate(0%, -70%);
    }

    40% {
        transform: scale(1.4, 0.6) translate(0%, 30%);
    }

    50% {
        transform: scale(0.9, 1.1) translate(0%, -10%);
    }

    60% {
        transform: scale(0.95, 1.2) translate(0%, -30%);
    }

    70% {
        transform: scale(0.95, 1.2) translate(0%, -10%);
    }

    80% {
        transform: scale(1.1, 0.9) translate(0%, 5%);
    }

    90% {
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }

    100% {
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }
}