@charset "UTF-8";

/*------------------------------------------------------------------
  base
------------------------------------------------------------------*/

:root{
    --primary-color: #26C5FF;
    --accent-color: #FFE100;
    --sub-color: #F4A000;   
    --english-font: "Chakra Petch", sans-serif;
}

html{
    position: relative;
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    z-index: 1;
}

/*------------------------------------------------------------------
  header
------------------------------------------------------------------*/

/* header
------------------------------------------------------------------*/
header{
    position: relative;
    z-index: 1000;
}
/* header-logo
------------------------------------------------------------------*/
.header-logo{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 521px;
    aspect-ratio: 1042 / 481;
    padding-top: 50px;
    padding-left: 60px;
    z-index: 1;
}
.header-logo::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/header-logo-bg.png) no-repeat top left / 100% 100%;
    content: "";
    z-index: -1;
}
.header-logo .inner{
    width: 180px;
    text-align: center;
}
.header-logo .logo{
    margin-bottom: 8px;
}
.header-logo .caption{
    font-size: 18px;
    font-weight: bold;
}
@media screen and (max-width:1110px){
    .header-logo{
        width: 336px;
        aspect-ratio: 336 / 174;
        padding-top: 25px;
        padding-left: 20px;
    }
    .header-logo .inner{
        width: 140px;
    }
    .header-logo .logo{
        margin-bottom: 4px;
    }
    .header-logo .caption{
        font-size: 15px;
    }
}
/* header-contact
------------------------------------------------------------------*/
.header-contact{
    --header-contact-height: 85px;
    position: fixed;
    top: 20px;
    right: 0;
    display: flex;
    z-index: 1;
}
@media screen and (max-width:1110px){
    .header-contact{
        top: 10px;
    }
}
@media screen and (max-width:767px){
    .header-contact{
        top: initial;
        bottom: 0;
        width: 100%;
    }
}
/* header-contact-tel
------------------------------------------------------------------*/
.header-contact-tel{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: var(--header-contact-height);
    background: #fff;
    padding-left: 24px;
    padding-right: 24px;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    border-left: 3px solid var(--primary-color);
    transition: .2s ease-out;
    color: var(--primary-color);
    text-align: center;
    pointer-events: none;
    z-index: 1;
}
.header-contact-tel .phone-number{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    margin-bottom: 4px;
}
.header-contact-tel .num{
    font-size: 31px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 3%;
}
.header-contact-tel .time{
    padding-left: 36px;
    font-size: 11px;
    font-feature-settings: "palt";
    line-height: 1;
}
.header-contact-tel .time > span{
    font-size: 18px;
    font-weight: bold;
}
@media (hover:hover) {
    .header-contact-tel:hover{
        background: var(--primary-color);
        color: #fff;
    }
    .header-contact-tel:hover .icon{
        filter: brightness(0) invert(1);
    }
}
@media (hover:none) {
    .header-contact-tel:active{
        background: var(--primary-color);
        color: #fff;
    }
    .header-contact-tel:active .icon{
        filter: brightness(0) invert(1);
    }
}
@media screen and (max-width:1110px){
    .header-contact-tel{
        padding-left: 12px;
        padding-right: 12px;
    }
    .header-contact-tel .icon{
        width: 22px;
    }
    .header-contact-tel .num{
        font-size: 25px;
    }
    .header-contact-tel .time{
        padding-left: 0;
        font-size: 10px;
    }
    .header-contact-tel .time > span{
        font-size: 16px;
    }
}
@media screen and (max-width:767px){
    .header-contact-tel{
        width: 100%;
        pointer-events: all;
        white-space: nowrap;
    }
}
/* header-contact-mail
------------------------------------------------------------------*/
.header-contact-mail{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: var(--header-contact-height);
    padding: 0 35px;
    background: #fff;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    border-left: 3px solid var(--primary-color);
    transition: .2s ease-out;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.4;
    text-align: center;
    z-index: 1;
}
@media (hover:hover) {
    .header-contact-mail:hover{
        background: var(--primary-color);
        color: #fff;
    }
}
@media (hover:none) {
    .header-contact-mail:active{
        background: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:1110px){
    .header-contact-mail{
        padding: 0 15px;
        font-size: 16px;
    }
}
@media screen and (max-width:767px){
    .header-contact-mail{
        width: 100%;
        padding: 0 4px;
        border-right: 3px solid var(--primary-color);
    }
}

/*------------------------------------------------------------------
  hero
------------------------------------------------------------------*/

/* hero
------------------------------------------------------------------*/
.hero{
    position: relative;
    padding-top: 50px;
    padding-bottom: 30px;
    background-image: url(../images/hero-bg.png) ;
    background-repeat: repeat;
    background-size: 20px;
    z-index: 1;
}
@media screen and (max-width:1110px){
    .hero{
        padding-top: 20px;
    }
}
/* hero-top
------------------------------------------------------------------*/
.hero-top{
    position: relative;
    margin-left: 30px;
    margin-right: 30px;
    padding-bottom: 110px;
    overflow: hidden;
    z-index: 2;
}
.hero-top::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 110px);
    background: linear-gradient(0deg,#26c5ff 43%, #2ba6ff 100%);
    content: "";
    z-index: -2;
}
@media screen and (max-width:767px){
    .hero-top{
        padding-bottom: 20px;
    }
    .hero-top::after{
        height: calc(100% - 20px);
    }
}
/* hero-top-container
------------------------------------------------------------------*/
.hero-top-container{
    position: relative;
    max-width: 1100px;
    padding-top: 150px;
    padding-bottom: 80px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
}
@media screen and (max-width:1110px){
    .hero-top-container{
        padding-top: 120px;
        padding-bottom: 60px;
    }
}
@media screen and (max-width:767px){
    .hero-top-container{
        padding-top: 80px;
        padding-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* hero-top-title
------------------------------------------------------------------*/
.hero-top-title{
    margin-bottom: .7em;
    font-size: 72px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    letter-spacing: .04em;
}
.hero-top-title span{
    display: block;
}
.hero-top-title span:nth-of-type(2){
    margin-left: 1.6em;
}
@media screen and (max-width:1110px){
    .hero-top-title{
        font-size: 60px;
    }
    .hero-top-title span:nth-of-type(2){
        margin-left: 1em;
    }
}
@media screen and (max-width:767px){
    .hero-top-title{
        margin-bottom: 90vw;
        font-size: 9vw;
        text-align: right;
    }
    .hero-top-title span:nth-of-type(2){
        margin-left: 0;
    }
}
/* hero-top-text
------------------------------------------------------------------*/
.hero-top-text{
    width: 450px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    line-height: 1.6666;
}
@media screen and (max-width:1110px){
    .hero-top-text{
        width: 320px;
        font-size: 16px;
    }
}
@media screen and (max-width:767px){
    .hero-top-text{
        width: 90%;
        max-width: 360px;
        font-size: 14px;
    }
}
/* hero-top-image
------------------------------------------------------------------*/
.hero-top-image{
    position: absolute;
    top: 60px;
    right: -300px;
    line-height: 1;
    z-index: 1;
}
.hero-top-image .sp{
    display: none;
}
@media screen and (max-width:1110px){
    .hero-top-image{
        width: 100%;
    }
}
@media screen and (max-width:767px){
    .hero-top-image{
        top: calc(26vw + 60px);
        right: 0;
        width: 100%;
        max-width: initial;
    }
    .hero-top-image .pc{
        display: none;
    }
    .hero-top-image .sp{
        display: block;
        text-align: center;
    }
}
/* hero-top-map
------------------------------------------------------------------*/
.hero-top-map{
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    z-index: -1;
}
@media screen and (max-width:767px){
    .hero-top-map{
        top: 60px;
        width: 180%;
    }
    .hero-top-map img{
        width: 100%;
        height: auto;
    }
}
/* hero-gallery
------------------------------------------------------------------*/
.hero-gallery1,
.hero-gallery2{
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.hero-gallery1{
    margin-bottom: 10px;
}
/* hero-gallery-text
------------------------------------------------------------------*/
.hero-gallery1-text,
.hero-gallery2-text{
    display: flex;
}
.hero-gallery1-text .text,
.hero-gallery2-text .text{
    padding-right: 30px;
    font-family: var(--english-font);
    font-size: 128px;
    font-weight: bold;
    font-style: italic;
    line-height: 1;
    white-space: nowrap;
}
.hero-gallery1-text .text{
    color: #d9d9d9;
    animation: heroGallery1TextLoop 30s infinite linear both;
}
.hero-gallery2-text .text{
    color: #fff;
    text-shadow:1px 1px 0 #d9d9d9, -1px -1px 0 #d9d9d9,
              -1px 1px 0 #d9d9d9, 1px -1px 0 #d9d9d9,
              0px 1px 0 #d9d9d9,  0 -1px 0 #d9d9d9,
              -1px 0 0 #d9d9d9, 1px 0 0 #d9d9d9;
    animation: heroGallery2TextLoop 24s infinite linear both;
}
@keyframes heroGallery1TextLoop {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}
@keyframes heroGallery2TextLoop {
    from{
        transform: translateX(-100%);
    }
    to{
        transform: translateX(0);
    }
}
@media screen and (max-width:1110px){
    .hero-gallery1-text .text,
    .hero-gallery2-text .text{
        font-size: 90px;
    }
}
@media screen and (max-width:767px){
    .hero-gallery1-text .text,
    .hero-gallery2-text .text{
        font-size: 17vw;
    }
}
/* hero-gallery-image
------------------------------------------------------------------*/
.hero-gallery1-image,
.hero-gallery2-image{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
}
.hero-gallery1-image .images,
.hero-gallery2-image .images{
    display: flex;
}
.hero-gallery1-image .images .icon,
.hero-gallery2-image .images .icon{
    height: 128px;
    padding: 0 400px;
}
.hero-gallery1-image .images .icon img,
.hero-gallery2-image .images .icon img{
    width: auto;
    height: 100%;
    object-fit: contain;
}
.hero-gallery1-image .images{
    animation: heroGallery1ImageLoop 30s infinite linear both;
}
.hero-gallery2-image .images{
    animation: heroGallery2ImageLoop 30s infinite linear both;
}
@keyframes heroGallery1ImageLoop {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}
@keyframes heroGallery2ImageLoop {
    from{
        transform: translateX(-100%);
    }
    to{
        transform: translateX(0);
    }
}
@media screen and (max-width:1110px){
    .hero-gallery1-image .images .icon,
    .hero-gallery2-image .images .icon{
        height: 90px;
        padding: 0 240px;
    }
}
@media screen and (max-width:767px){
    .hero-gallery1-image .images .icon,
    .hero-gallery2-image .images .icon{
        height: 17vw;
        padding: 0 30vw;
    }
}

/*------------------------------------------------------------------
  about
------------------------------------------------------------------*/

/* about
------------------------------------------------------------------*/
.about{
    position: relative;
    padding-top: 120px;
    padding-bottom: 210px;
    background: var(--primary-color);
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:767px){
    .about{
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
/* about-caption
------------------------------------------------------------------*/
.about-caption{
    margin-bottom: 100px;
    font-family: var(--english-font);
    font-weight: 600;
    color: #fff;
    letter-spacing: 3px;
}
@media screen and (max-width:767px){
    .about-caption{
        margin-bottom: 30px;
        text-align: center;
    }
}
/* about-inner
------------------------------------------------------------------*/
.about-inner{
    display: flex;
    padding-left: 80px;
    column-gap: 150px;
}
@media screen and (max-width:1110px){
    .about-inner{
        display: flex;
        padding-left: 10px;
        column-gap: 80px;
    }
}
@media screen and (max-width:767px){
    .about-inner{
        flex-direction: column;
        align-items: center;
    }
}
/* about-title
------------------------------------------------------------------*/
.about-title{
    writing-mode: vertical-rl;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    letter-spacing: .4em;
    line-height: 2;
}
@media screen and (max-width:767px){
    .about-title{
        margin-bottom: 30px;
        margin-left: -.5em;
        font-size: 24px;
    }
}
/* about-text
------------------------------------------------------------------*/
.about-text{
    font-weight: bold;
    color: #fff;
    line-height: 2.5;
}
@media screen and (max-width:767px){
    .about-text{
        font-size: 14px;
        line-height: 2.14;
    }
}
@media screen and (max-width:575px){
    .about-text br{
        display: none;
    }
}
/* about-plane
------------------------------------------------------------------*/
.about-plane{
    position: absolute;
    top: 0;
    left: calc(50% + 360px);
    height: 100%;
    z-index: -1;
}
.about-plane .plane{
    position: absolute;
    bottom: 0;
    width: 230px;
}
@media screen and (max-width:1110px){
    .about-plane{
        left: calc(50% + 200px);
    }
}
@media screen and (max-width:767px){
    .about-plane{
        top: 50%;
        left: 50%;
        transform: translate(-50%,calc(-50% + 30px)) rotate(-90deg);
        height: 100vw;
    }
    .about-plane .plane{
        width: 100px;
    }
}

/*------------------------------------------------------------------
  features
------------------------------------------------------------------*/

/* features
------------------------------------------------------------------*/
.features{
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:767px){
    .features{
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
/* features-slider
------------------------------------------------------------------*/
.features-slider{
    position: relative;
    z-index: 1;
}
@media screen and (max-width:1110px){
    .features-slider{
        margin-bottom: 40px;
        cursor: grab;
    }
    .features-slider .swiper-wrapper:active{
        cursor: grabbing;
    }
}
/* features-slider swiper-wrapper
------------------------------------------------------------------*/
.features-slider .swiper-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}
@media screen and (max-width:1110px){
    .features-slider .swiper-wrapper{
        flex-wrap: nowrap;
        justify-content: initial;
        gap: 0;
    }
}
/* features-slider-card
------------------------------------------------------------------*/
.features-slider-card{
    width: 330px;
    height: auto;
    padding: 30px 28px;
    border: 3px solid var(--accent-color);
    border-radius: 10px;
}
.features-slider-card .icon{
    height: 125px;
    margin-bottom: 20px;
    text-align: center;
}
.features-slider-card .icon img{
    width: auto;
    height: 100%;
}
.features-slider-card .title{
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}
.features-slider-card .title span{
    display: block;
    font-size: 26px;
    color: var(--sub-color);
}
.features-slider-card .text{
    font-size: 14px;
    text-align: justify;
}
@media screen and (max-width:575px){
    .features-slider-card{
        width: auto;
    }
}
@media screen and (max-width:389px){
    .features-slider-card .title{
        font-size: 16px;
    }
    .features-slider-card .title span{
        font-size: 24px;
    }
}
/* features-slider-controls
------------------------------------------------------------------*/
.features-slider-controls{
    display: none;
}
@media screen and (max-width:1110px){
    .features-slider-controls{
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 60px;
    }
}
/* features-slider-pagination
------------------------------------------------------------------*/
.features-slider-pagination{
    width: fit-content !important;
}
.features-slider-pagination .swiper-pagination-bullet{
    background: #fff;
    border: 1px solid var(--sub-color);
    opacity: 1;
    vertical-align: middle;
    transition: .2s ease-out;
}
.features-slider-pagination .swiper-pagination-bullet-active{
    width: 15px;
    height: 15px;
    background: var(--sub-color);
}
/* features-slider-button
------------------------------------------------------------------*/
.features-slider-button-prev,
.features-slider-button-next{
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--sub-color);
    cursor: pointer;
    transition: .2s ease-out;
}
.features-slider-button-prev{
    left: 40px;
}
.features-slider-button-next{
    right: 40px;
}
.features-slider-button-prev::after,
.features-slider-button-next::after{
    display: none;
}
.features-slider-button-next img,
.features-slider-button-prev img{
    width: 16px;
    height: auto;
}
.features-slider-button-prev img{
    transform: rotate(180deg);
}
@media (hover:hover) {
    .features-slider-button-prev:hover,
    .features-slider-button-next:hover{
        background: var(--sub-color);
    }
    .features-slider-button-prev:hover img,
    .features-slider-button-next:hover img{
        filter: brightness(0) invert(1);
    }
}
@media (hover:none) {
    .features-slider-button-prev:active,
    .features-slider-button-next:active{
        background: var(--sub-color);
    }
    .features-slider-button-prev:active img,
    .features-slider-button-next:active img{
        filter: brightness(0) invert(1);
    }
}

/*------------------------------------------------------------------
  support
------------------------------------------------------------------*/

/* support
------------------------------------------------------------------*/
.support{
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    background: url(../images/support-bg.png) repeat;
    z-index: 1;
}
@media screen and (max-width:767px){
    .support{
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
/* support-list
------------------------------------------------------------------*/
.support-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 50px;
}
@media screen and (max-width:1110px){
    .support-list{
        row-gap: 30px;
        margin-left: -30px;
        margin-right: -30px;
    }
}
/* support-list-card
------------------------------------------------------------------*/
.support-list-card{
    position: relative;
    display: flex;
    width: 748px;
    border: 3px solid var(--accent-color);
    border-top-right-radius: 30px;
    z-index: 1;
}
.support-list-card .head{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    row-gap: 12px;
    width: 122px;
    padding: 40px 0;
    background: #fff080;
}
.support-list-card .num{
    position: relative;
    font-family: var(--english-font);
    font-size: 80px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    text-shadow:1px 1px 0 #000, -1px -1px 0 #000,
              -1px 1px 0 #000, 1px -1px 0 #000,
              0px 1px 0 #000,  0 -1px 0 #000,
              -1px 0 0 #000, 1px 0 0 #000;
    z-index: 1;
}
.support-list-card .num > span{
    position: absolute;
    top: 3px;
    left: 3px;
    color: var(--accent-color);
    z-index: -1;
}
.support-list-card .caption{
    font-family: var(--english-font);
    font-size: 18px;
    font-style: italic;
    color: #505050;
    text-decoration: underline;
    text-underline-position: left;
    writing-mode: vertical-rl;
    line-height: 1.1;
    z-index: 1;
}
.support-list-card .body{
    padding: 50px 40px;
    background: #fff;
    border-top-right-radius: 30px;
}
.support-list-card .title{
    display: flex;
    align-items: center;
    column-gap: 16px;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: bold;
}
.support-list-card .title .wavy{
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: var(--accent-color);
    text-underline-offset: 4px;
    text-decoration-thickness: 3px;
}
.support-list-card .title .underline{
     background:rgba(0, 0, 0, 0) linear-gradient(transparent 80%, var(--accent-color) 0%) repeat scroll 0 0;
}
.support-list-card .title .icon{
    width: 110px;
}
.support-list-card .text{
    text-align: justify;
}
/* card1 固有スタイル --------------*/
.support-list-card.card1 .body{
    padding-right: 80px;
}
/* card2 固有スタイル --------------*/
.support-list-card.card2 {
    flex-direction: row-reverse;
    border-top-left-radius: 30px;
    border-top-right-radius: 0;
    margin-left: auto;
}
.support-list-card.card2 .body{
    padding-left: 80px;
    border-top-left-radius: 30px;
    border-top-right-radius: 0;
}
.support-list-card.card2 .image{
    position: absolute;
    top: -3px;
    right: 0;
    transform: translateY(-100%);
    width: 360px;
    z-index: 1;
}
/* card3 固有スタイル --------------*/
.support-list-card.card3 .image{
    position: absolute;
    top: -3px;
    left: 0;
    transform: translateY(-100%);
    width: 333px;
    z-index: 1;
}
@media screen and (max-width:1110px){    
    .support-list-card{
        width: calc(100% - 60px);
    }
    .support-list-card .body,
    .support-list-card.card1 .body,
    .support-list-card.card2 .body{
        padding: 40px;
    }
    /* card1 固有スタイル --------------*/
    .support-list-card.card1{
        margin-bottom: 60px;
        margin-right: 60px;
    }
    /* card2 固有スタイル --------------*/
    .support-list-card.card2{
        margin-left: 60px;
    }
    .support-list-card.card2 .image{
        width: 180px;
    }
    /* card3 固有スタイル --------------*/
    .support-list-card.card3{
        margin-bottom: 90px;
        margin-right: 60px;
    }
    .support-list-card.card3 .image{
        position: absolute;
        top: initial;
        bottom: 0;
        left: initial;
        right: -30px;
        transform: translateY(80%);
        width: 170px;
        z-index: 1;
    }
}
@media screen and (max-width:767px){
    .support-list-card,
    .support-list-card.card2{
        flex-direction: column;
    }
    .support-list-card .head{
        flex-direction: row;
        column-gap: 20px;
        width: 100%;
        padding: 20px 30px;
        border-top-right-radius: 30px;
    }
    .support-list-card .num{
        font-size: 60px;
    }
    .support-list-card .num > span{
        top: 2px;
        left: 2px;
    }
    .support-list-card .caption{
        font-size: 14px;
        writing-mode: horizontal-tb;
    }
    .support-list-card .body,
    .support-list-card.card1 .body,
    .support-list-card.card2 .body{
        padding: 30px;
        border-radius: 0;
    }
    .support-list-card .title{
        flex-direction: column;
        text-align: center;
    }
    /* card2 固有スタイル --------------*/
    .support-list-card.card2 .head{
        border-top-right-radius: 0;
        border-top-left-radius: 30px;
    }
}
@media screen and (max-width:389px){
    .support-list-card .title{
        font-size: 22px;
    }
    .support-list-card .text{
        font-size: 14px;
    }
}

/*------------------------------------------------------------------
  service
------------------------------------------------------------------*/

/* service
------------------------------------------------------------------*/
.service{
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
    z-index: 1;
}
.service::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: var(--primary-color);
    content: "";
    z-index: -1;
}
@media screen and (max-width:767px){
    .service{
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
/* service-slider
------------------------------------------------------------------*/
.service-slider{
    position: relative;
    z-index: 1;
}
/* service-slider swiper-wrapper
------------------------------------------------------------------*/
.service-slider .swiper-wrapper{
    gap: 25px;
}
@media screen and (max-width:1110px){
    .service-slider .swiper-wrapper{
        gap: 0;
        cursor: grab;
    }
    .service-slider .swiper-wrapper:active{
        cursor: grabbing;
    }
}
/* service-slider-card
------------------------------------------------------------------*/
.service-slider-card{
    display: flex;
    flex-direction: column;
    flex-shrink: initial;
    row-gap: 20px;
    width: 330px;
    height: auto;
    padding: 40px 30px 28px;
    background: #fff;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
}
.service-slider-card .image{
    width: 180px;
    margin: 0 auto;
}
.service-slider-card .caption{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
}
.service-slider-card .detail{
    width: 100%;
    border-top: 2px solid #93E2FF;
}
.service-slider-card .detail th,
.service-slider-card .detail td{
    padding: 12px 0px;
    border-bottom: 2px solid #93E2FF;
    vertical-align: middle;
    text-align: center;
}
.service-slider-card .detail th{
    font-size: 14px;
    color: var(--primary-color);
    line-height: 1.5;
}
.service-slider-card .detail th small{
    display: block;
    font-size: 12px;
}
.service-slider-card .detail td{
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}
@media screen and (max-width:1110px){
    .service-slider-card{
        width: auto;
        flex-shrink: 0;
    }    
}
/* service-slider-button
------------------------------------------------------------------*/
.service-slider-button-prev,
.service-slider-button-next{
    display: none;
}
@media screen and (max-width:1110px){
    .service-slider-button-prev,
    .service-slider-button-next{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: var(--primary-color);
        border-radius: 50%;
        border: 1px solid #fff;
        transition: .2s ease-out;
        z-index: 1;
    }
    .service-slider-button-next{
        right: 0;
    }
    .service-slider-button-prev{
        left: 0;
    }
    .service-slider-button-next img,
    .service-slider-button-prev img{
        width: 18px;
        height: auto;
    }
    .service-slider-button-prev img{
        transform: rotate(180deg);
    }
    @media (hover:hover) {
        .service-slider-button-prev:hover,
        .service-slider-button-next:hover{
            background: #fff;
            border-color: var(--primary-color);
        }
        .service-slider-button-prev:hover img,
        .service-slider-button-next:hover img{
            filter: brightness(0) saturate(100%) invert(67%) sepia(17%) saturate(6499%) hue-rotate(168deg) brightness(104%) contrast(105%);
        }
    }
    @media (hover:none) {
        .service-slider-button-prev:active,
        .service-slider-button-next:active{
            background: #fff;
            border-color: var(--primary-color);
        }
        .service-slider-button-prev:active img,
        .service-slider-button-next:active img{
            filter: brightness(0) saturate(100%) invert(67%) sepia(17%) saturate(6499%) hue-rotate(168deg) brightness(104%) contrast(105%);
        }
    }
}

/*------------------------------------------------------------------
  case
------------------------------------------------------------------*/

/* case
------------------------------------------------------------------*/
.case{
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
    background: var(--primary-color);
    z-index: 1;
}
@media screen and (max-width:767px){
    .case{
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
/* case-container
------------------------------------------------------------------*/
.case-container{
    max-width: 1760px;
    padding-left: 80px;
    padding-right: 80px;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width:1399px){
    .case-container{
        max-width: 1100px;
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media screen and (max-width:1110px){
    .case-container{
        max-width: 700px;
    }
}
/* case-inner
------------------------------------------------------------------*/
.case-inner{
    display: grid;
    grid-template-columns: 400px 1fr;
    column-gap: 100px;
    margin-right: calc(50% - 50vw);
}
@media screen and (max-width:1110px){
    .case-inner{
        grid-template-columns: 1fr;
        row-gap: 35px;
        margin: 0;
    }
}
/* case-detail
------------------------------------------------------------------*/
.case-detail{
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
}
/* case-slider
------------------------------------------------------------------*/
.case-slider{
    position: relative;
    overflow: hidden;
    padding-bottom: 4px;
    cursor: grab;
    z-index: 1;
}
.case-slider:active{
    cursor: grabbing;
}
@media screen and (max-width:1110px){
    .case-slider{
        margin: 0 calc(50% - 50vw);
        padding-left: 20px;
    }
}
@media screen and (max-width:575px){
    .case-slider{
        margin: 0 -30px;
        padding-left: 0;
    }
}
/* case-slider swiper-wrapper
------------------------------------------------------------------*/
.case-slider .swiper-wrapper{
    cursor: grab;
}
.case-slider .swiper-wrapper:active{
    cursor: grabbing;
}
/* case-slider-controls
------------------------------------------------------------------*/
.case-slider-controls{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 15px;
    margin-top: auto;
}
/* case-slider-button
------------------------------------------------------------------*/
.case-slider-button-prev,
.case-slider-button-next{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 1px solid #fff;
    cursor: pointer;
    transition: .2s ease-out;
}
.case-slider-button-prev img,
.case-slider-button-next img{
    width: 18px;
    height: auto;
}
.case-slider-button-prev img{
    transform: rotate(180deg);
}
@media (hover:hover) {
    .case-slider-button-prev:hover,
    .case-slider-button-next:hover{
        background: #fff;
    }
    .case-slider-button-prev:hover img,
    .case-slider-button-next:hover img{
        filter: brightness(0) saturate(100%) invert(67%) sepia(17%) saturate(6499%) hue-rotate(168deg) brightness(104%) contrast(105%);
    }
}
@media (hover:none) {
    .case-slider-button-prev:active,
    .case-slider-button-next:active{
        background: #fff;
    }
    .case-slider-button-prev:active img,
    .case-slider-button-next:active img{
        filter: brightness(0) saturate(100%) invert(67%) sepia(17%) saturate(6499%) hue-rotate(168deg) brightness(104%) contrast(105%);
    }
}
/* case-slider-card
------------------------------------------------------------------*/
.case-slider-card{
    position: relative;
    width: 430px;
    padding: 40px;
    background: #fff;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 4px 4px 5px 0px #26C5FF;
    z-index: 1;
}
.case-slider-card::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 4px 4px 5px 0px #26C5FF;
    mix-blend-mode: multiply;
    content: "";
    z-index: -1;
}
.case-slider-card .title{
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.2;
}
.case-slider-card .program{
    display: grid;
    grid-template-columns: auto 1fr;
    margin-bottom: 20px;
    font-size: 14px;
}
.case-slider-card .program dt{
    position: relative;
    padding-right: 1em;
    color: var(--primary-color);
}
.case-slider-card .program dt::after{
    position: absolute;
    top: 0;
    right: 0;
    content: "：";
}
.case-slider-card .program dd{
    font-weight: bold;
}
.case-slider-card .request{
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    font-size: 14px;
    padding: 20px 0;
    margin-bottom: 20px;
    background: #f5f5f5;
    z-index: 1;
}
.case-slider-card .request::after{
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 9px;
    background: url(../images/case-arrow.svg) no-repeat center / contain;
    content: "";
}
.case-slider-card .request dt{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-right: 1px solid #d9d9d9;
}
.case-slider-card .request dd{
    padding: 0 16px;
    font-weight: bold;
}
.case-slider-card .detail{
    padding: 15px;
    border: 1px solid var(--primary-color);
}
.case-slider-card .detail-head{
    display: grid;
    align-items: center;
    grid-template-columns: 90px 1fr;
    column-gap: 14px;
    margin-bottom: 8px;
}
.case-slider-card .detail-head-image{
    border: 1px solid transparent;
    line-height: 1;
}
.case-slider-card .detail-head-image.red{
    border-color: #E74357;
}
.case-slider-card .detail-head-image.green{
    border-color: #00A2AD;
}
.case-slider-card .detail-head-image.blue{
    border-color: #2DA4FF;
}
.case-slider-card .detail-head-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: .5em;
    font-size: 14px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.5;
}
.case-slider-card .detail-head-list > li{
    position: relative;
    padding-left: 1em;
}
.case-slider-card .detail-head-list > li::before{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "・";
}
@media screen and (max-width:575px){
    .case-slider-card{
        padding: 40px 30px;
    }
    .case-slider-card .title{
        font-size: 20px;
    }
    .case-slider-card .program{
        display: none;
    }
    .case-slider-card .request{
        font-size: 13px;
    }
    .case-slider-card .request dt{
        padding: 0 8px;
    }
    .case-slider-card .request dd{
        padding: 0 4px;
    }
    .case-slider-card .detail-head{
        justify-content: center;
        grid-template-columns: 100px;
    }
    .case-slider-card .detail-head-list{
        display: none;
    }
}

/*------------------------------------------------------------------
  flow
------------------------------------------------------------------*/

/* flow
------------------------------------------------------------------*/
.flow{
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:767px){
    .flow{
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
/* flow-list
------------------------------------------------------------------*/
.flow-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}
@media screen and (max-width:1110px){
    .flow-list{
        row-gap: 30px;
    }
}
/* flow-list-item
------------------------------------------------------------------*/
.flow-list-item{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 20px;
    z-index: 1;
}
.flow-list-item::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 130%;
    background: #EAFAFF;
    content: "";
    z-index: -1;
}
.flow-list-item:nth-of-type(even){
    flex-direction: row-reverse;
}
.flow-list-item:last-of-type::after{
    display: none;
}
.flow-list-item .num{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    font-family: var(--english-font);
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    z-index: 1;
}
.flow-list-item .body{
    width: 280px;
}
.flow-list-item .image{
    flex-shrink: 0;
    width: 161px;
}
.flow-list-item .title{
    margin-bottom: 8px;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:1110px){
    .flow-list-item{
        position: relative;
        display: flex;
        align-items: initial;
        justify-content: initial;
        column-gap: 20px;
        padding-left: 70px;
        z-index: 1;
    }
    .flow-list-item::after{
        position: absolute;
        top: 0;
        left: 23px;
        transform: initial;
    }
    .flow-list-item:nth-of-type(even){
        flex-direction: row;
    }
    .flow-list-item:last-of-type::after{
        display: none;
    }
    .flow-list-item .num{
        position: absolute;
        top: -12px;
        left: 0;
        transform: initial;
    }
    .flow-list-item:nth-of-type(4) .num{
        top: 8px;
    }
    .flow-list-item .body{
        width: 100%;
    }
}
@media screen and (max-width:575px){
    .flow-list-item,
    .flow-list-item:nth-of-type(even){
        flex-direction: column;
    }
}

/*------------------------------------------------------------------
  voice
------------------------------------------------------------------*/

/* voice
------------------------------------------------------------------*/
.voice{
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    background: #D4F3FF;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:767px){
    .voice{
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
/* voice-slider
------------------------------------------------------------------*/
.voice-slider{
    margin-bottom: 40px;
    cursor: grab;
}
/* voice-slider-card
------------------------------------------------------------------*/
.voice-slider-card{
    width: 340px;
    height: auto;
    padding: 25px 25px 30px;
    background: #fff;
    border-radius: 10px;
}
.voice-slider-card .num{
    display: flex;
    justify-content: center;
    align-items: baseline;
    column-gap: 5px;
    font-family: var(--english-font);
    font-size: 21px;
    font-weight: bold;
    font-style: italic;
    line-height: 1;
}
.voice-slider-card .num > span{
    font-size: 35px;
    color: var(--accent-color);    
    text-shadow:1px 1px 0 #000, -1px -1px 0 #000,
              -1px 1px 0 #000, 1px -1px 0 #000,
              0px 1px 0 #000,  0 -1px 0 #000,
              -1px 0 0 #000, 1px 0 0 #000;
}
.voice-slider-card .head{
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-end;
    column-gap: 8px;
    margin-bottom: 12px;
}
.voice-slider-card .name{
    font-size: 12px;
}
.voice-slider-card .hashtag{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
}
.voice-slider-card .hashtag > li::before{
    content: "#";
}
.voice-slider-card .star{
    display: flex;
}
.voice-slider-card .title{
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 2px solid #333;
    font-size: 17px;
    font-weight: bold;
}
.voice-slider-card .comment{
    font-size: 13px;
}
@media screen and (max-width:575px){
    .voice-slider-card{
        width: auto;
    }
}
/* voice-slider-controls
------------------------------------------------------------------*/
.voice-slider-controls{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 60px;
}
/* voice-slider-pagination
------------------------------------------------------------------*/
.voice-slider-pagination{
    width: fit-content !important;
}
.voice-slider-pagination .swiper-pagination-bullet{
    background: #fff;
    opacity: 1;
    vertical-align: middle;
    transition: .2s ease-out;
}
.voice-slider-pagination .swiper-pagination-bullet-active{
    width: 15px;
    height: 15px;
    background: var(--primary-color);
}
/* voice-slider-button
------------------------------------------------------------------*/
.voice-slider-button-prev,
.voice-slider-button-next{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: .2s ease-out;
}
.voice-slider-button-next img,
.voice-slider-button-prev img{
    width: 16px;
    height: auto;
}
.voice-slider-button-prev img{
    transform: rotate(180deg);
}
@media (hover:hover) {
    .voice-slider-button-prev:hover,
    .voice-slider-button-next:hover{
        background: var(--primary-color);
    }
    .voice-slider-button-prev:hover img,
    .voice-slider-button-next:hover img{
        filter: brightness(0) invert(1);
    }
}
@media (hover:none) {
    .voice-slider-button-prev:active,
    .voice-slider-button-next:active{
        background: var(--primary-color);
    }
    .voice-slider-button-prev:active img,
    .voice-slider-button-next:active img{
        filter: brightness(0) invert(1);
    }
}

/*------------------------------------------------------------------
  faq
------------------------------------------------------------------*/

/* faq
------------------------------------------------------------------*/
.faq{
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:767px){
    .faq{
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
/* faq-contents
------------------------------------------------------------------*/
.faq-contents{
    border-top: 1px solid var(--primary-color);
}
.faq-contents:last-of-type{
    border-bottom: 1px solid var(--primary-color);
}
.faq-contents dt{
    position: relative;
    padding: 30px 72px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.5;
    z-index: 1;
}
.faq-contents dt::before{
    position: absolute;
    top: 27px;
    left: 30px;
    font-family: var(--english-font);
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    content: "Q";
    z-index: 1;
}
.faq-contents dt::after{
    position: absolute;
    top: 34px;
    right: 30px;
    width: 18px;
    height: 18px;
    background: url(../images/faq-plus.svg) no-repeat center / contain;
    content: "";
    z-index: 1;
}
.faq-contents dt.open::after{
    background: url(../images/faq-minus.svg) no-repeat center / contain;
}
.faq-contents dd{
    position: relative;
    display: none;
    top: -18px;
    padding: 0 72px 12px;
    z-index: 1;
}
.faq-contents dd::before{
    position: absolute;
    top: -1px;
    left: 30px;
    font-family: var(--english-font);
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    content: "A";
    z-index: 1;
}
@media screen and (max-width:767px){
    .faq-contents dt{
        padding: 30px 28px 30px 36px;
    }
    .faq-contents dt::before{
        left: 0;
    }
    .faq-contents dt::after{
        right: 0;
    }
    .faq-contents dt.open::after{
        background: url(../images/faq-minus.svg) no-repeat center / contain;
    }
    .faq-contents dd{
        padding: 0 20px 12px 36px;
    }
    .faq-contents dd::before{
        left: 0;
    }
}

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

/* contact
------------------------------------------------------------------*/
.contact{
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    border-radius: 30px 30px 0 0;
    background: var(--primary-color);
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:767px){
    .contact{
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
/* contact-list
------------------------------------------------------------------*/
.contact-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    padding-top: 80px;
}
@media screen and (max-width:1110px){
    .contact-list{
        grid-template-columns: 1fr;
        row-gap: 80px;
    }
}
/* contact-list-item
------------------------------------------------------------------*/
.contact-list-item{
    position: relative;
    padding: 65px 12px 40px;
    text-align: center;
    background: #fff;
    z-index: 1;
}
.contact-list-item .icon{
    width: 122px;
    margin: -120px auto 20px;
}
.contact-list-item .title{
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}
.contact-list-item .text{
    margin-bottom: 20px;
}
.contact-list-item .num{
    margin-bottom: 10px;
    font-size: 40px;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 8%;
    line-height: 1;
}
.contact-list-item .time{
    color: var(--primary-color);
    line-height: 1;
}
.contact-list-item .contact-btn{
    position: relative;
    top: 0;
    display: inline-block;
    width: 100%;
    max-width: 340px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
    z-index: 1;
}
.contact-list-item .contact-btn::before{
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #333;
    border-radius: 35px;
    content: "";
    transition: .2s ease-out;
    z-index: -1;
}
.contact-list-item .contact-btn > .front{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    padding: 0 1em;
    background: var(--accent-color);
    border: 1px solid #333;
    border-radius: 35px;
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .contact-list-item .contact-btn:hover{ top: 4px;}
    .contact-list-item .contact-btn:hover::before{ top: 0;}
}
@media (hover:none) {
    .contact-list-item .contact-btn:active{ top: 4px;}
    .contact-list-item .contact-btn:active::before{ top: 0;}
}
@media screen and (max-width:389px){
    .contact-list-item .title{
        font-size: 20px;
    }
    .contact-list-item .text{
        font-size: 14px;
    }
    .contact-list-item .num{
        font-size: 32px;
    }
    .contact-list-item .time{
        font-size: 14px;
    }
    .contact-list-item .contact-btn{
        font-size: 18px;
    }
    .contact-list-item .contact-btn > .front{
        height: 50px;
    }
}

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

/* footer
------------------------------------------------------------------*/
footer{
    background: #333;
}
/* footer-top
------------------------------------------------------------------*/
.footer-top{
    padding: 48px 0;
}
/* footer-top-inner
------------------------------------------------------------------*/
.footer-top-inner{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 1100px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
}
@media screen and (max-width:1110px){
    .footer-top-inner{
        flex-direction: column;
        align-items: center;
        row-gap: 30px;
    }
}
/* footer-top-left
------------------------------------------------------------------*/
.footer-top-left{
    text-align: center;
}
/* footer-logo
------------------------------------------------------------------*/
.footer-logo{
    margin-bottom: 30px;
}
/* footer-address
------------------------------------------------------------------*/
.footer-address{
    margin-bottom: 30px;
    color: #fff;
}
/* footer-contact
------------------------------------------------------------------*/
.footer-contact{
    position: relative;
    display: inline-flex;
    align-items: center;
    column-gap: 12px;
    padding: 12px 16px 10px;
    border: 1px solid #fff;
    transition: .2s ease-out;
    color: #fff;
    line-height: 1;
}
.footer-contact .icon{
    position: relative;
    top: -2px;
}
@media (hover:hover) {
    .footer-contact:hover{
        background: #505050;
    }
}
/* footer-sns
------------------------------------------------------------------*/
.footer-sns{
    display: flex;
    align-items: center;
    column-gap: 15px;
}
/* footer-bottom
------------------------------------------------------------------*/
.footer-bottom{
    border-top: 1px solid #505050;
}
/* footer-bottom-inner
------------------------------------------------------------------*/
.footer-bottom-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1460px;
    padding: 24px 30px;
    margin: 0 auto;
}
@media screen and (max-width:1399px){
    .footer-bottom-inner{
        flex-direction: column-reverse;
        align-items: initial;
        padding: 0;
    }
}
@media screen and (max-width:767px){
    .footer-bottom-inner{
        margin-bottom: 85px;
    }
}
/* footer-copyright
------------------------------------------------------------------*/
.footer-copyright{
    font-size: 12px;
    color: #fff;
    line-height: 1;
}
@media screen and (max-width:1399px){
    .footer-copyright{
        border-top: 1px solid #505050;
        padding: 24px 30px;
        text-align: center;
    }
}
/* footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.footer-nav > li > a{
    position: relative;
    display: block;
    padding-right: 36px;
    color: #fff;
    line-height: 1;
    z-index: 1;
}
.footer-nav > li > a::after{
    position: absolute;
    top: 0;
    right: 0;
    content: "・";
}
.footer-nav > li:last-of-type > a{
    padding-right: 0;
}
.footer-nav > li:last-of-type > a::after{
    display: none;
}
@media screen and (max-width:1399px){
    .footer-nav{
        justify-content: center;
        padding: 24px 30px;
    }
}
@media screen and (max-width:1110px){
    .footer-nav{
        gap: 12px;
    }
    .footer-nav > li > a{
        padding-right: 24px;
        font-size: 12px;
    }
}
@media screen and (max-width:575px){
    .footer-nav{
        gap: 6px;
    }
    .footer-nav > li > a{
        padding-right: 16px;
        font-size: 10px;
    }
}