@charset "UTF-8";
/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */

/* --------------------------------
l-main-visual
----------------------------------- */

.l-main-visual {
    padding: 30px 0 0px;
    background: #F9F8F5;
}

@media only screen and (max-width: 1080px) {
    .l-main-visual {
        padding: 16px 0 0px;
    }
}

.l-main-visual .l-main-visual__items {
    filter: drop-shadow(0px 3px 3px rgba(0,0,0,0.1));
    margin: 0 15px;
}



.l-main-visual .slide-arrow {
    width: 84px;
    height: 84px;
}

@media only screen and (max-width: 1080px) {
    .l-main-visual .slide-arrow {
        width: 40px;
        height: 40px;
    }
}

.l-main-visual .slide-arrow.prev-arrow {
    left: 245px;
}

.l-main-visual .slide-arrow.next-arrow {
    right: 245px;
}

@media only screen and (max-width: 1080px) {
    .l-main-visual .slide-arrow.prev-arrow {
        left: 5px;
    }
    
    .l-main-visual .slide-arrow.next-arrow {
        right: 5px;
    }
}


.l-main-visual .slide-arrow__wrap:before {
    width: 84px;
    height: 84px;
    border-radius: 41px;
    background: #1764AA;
}

@media only screen and (max-width: 1080px) {
    .l-main-visual .slide-arrow__wrap:before {
        width: 100%;
        height: 100%;
    }
}

.l-main-visual .slide-arrow__wrap:after {
    width: 20px;
    height: 20px;
    border-bottom: 4px solid #fff;
    border-left: 4px solid #fff;
    top: 0;
    right: 0;
    bottom: 0;
    left: 35px;
    margin: auto 0;
}

@media only screen and (max-width: 1080px) {
    .l-main-visual .slide-arrow__wrap:after {
        border-bottom: 2px solid #fff;
        border-left: 2px solid #fff;
        width: 10px;
        height: 10px;
        left: 16px;
    }
}

@media only screen and (max-width: 1080px) {

    
    .l-main-visual .next-arrow .slide-arrow__wrap:after {
        left: 14px;
    }
    
}

.fixed__buttons{
    display: block;
    position: fixed;
    bottom: 24px;
    left: 40px;
    z-index: 100;
}

.fixed__list {
    display: flex;
    gap: 8px;
}
.fixed__item {
    opacity: 0;
}
.fixed__list .fadeIn {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-name: fadeInAnime;
    opacity: 0;
}
@-webkit-keyframes fadeInAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeInAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes rotate {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotate {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes rotateReverse {
    to {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}
@keyframes rotateReverse {
    to {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

/* NEWS */
.info {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 32px 0;
}
.info__content {
    background-color: #fff;
    max-width: 1024px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:40px;
    position: relative;
}

@media only screen and (max-width:768px) {
    .info__content {
        flex-direction: column;
        padding: 20px;
        margin: 0 20px;
        gap:24px;
    }
}

.info__content h3{
    font-size: 40px;
    font-weight: bold;
    white-space: nowrap;
    flex: 0 0 200px;
}

@media only screen and (max-width:768px) {
    .info__content h3 {
        text-align: center;
        font-size: 32px;
        flex: 0 0 0px;
    }
}

.info__content h3 span{
    font-size: 20px;
    display: block;
    letter-spacing: 2px;
}

@media only screen and (max-width:768px) {
    .info__content h3 span {
        font-size: 16px;
    }
}

.info__content + .info__content{
    margin-top: 32px;
}
.info__content.-note h3{
    font-size: initial;
}
.info__title{
    width: 100%;
    display: flex;
}

.info__list {
    height: 252px;
    overflow-y: scroll;
}

@media only screen and (max-width:768px) {
    .info__list {
        width: 100%;
    }
}

.info__list__wrap{
    display: flex;
    flex-direction: column;
    gap:48px;
}

@media only screen and (max-width:768px) {
    .info__list__wrap{
        display: block;
        width: 100%;
        gap:0px;
    }
}

.info__type__thumb{
    display: flex;
    gap:16px;
}

@media only screen and (max-width:768px) {
    .info__type__thumb{
        display: flex;              /* 横並びにする */
        overflow-x: auto;           /* 横スクロールを許可 */
        scroll-snap-type: x mandatory; /* 任意：スナップで気持ちよく止まる */
        gap: 16px;                  /* 任意：アイテム間の余白 */
        padding: 16px;
        -webkit-overflow-scrolling: touch; 
    }
}

.info__type__thumb p{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: calc(1.5em * 2);
    font-weight: bold;
}

.info__type__thumb__item{
    background-color: #F9F8F5;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap:12px;
	max-width:320px;
}

@media only screen and (max-width:768px) {
    .info__type__thumb__item{
        width: 137px;
        flex-shrink: 0; 
        scroll-snap-align: start;
    }
}

.info__list.-note {
	min-height:320px;
    max-height: 400px;
    overflow-y: scroll;
}

.info__list li {
    -webkit-align-items: flex-start;
    align-items: flex-start;
    display: flex;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 24px;
}

.info__list li:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.info__list li time {
    font-size: 16px;
    margin-right: 24px;
    white-space: nowrap;
}
.info__list li h4 {
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 586px;
}
.info__list li p {
    font-size: 16px;
    line-height: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; 
    text-overflow: ellipsis;
    width: 100%;
    max-width: 704px;
}

/* about */
.about{
    margin: -260px auto -270px;
    /* padding: 180px 0; */
    background: url(../img/home/img-about-bg.png) no-repeat center center;
    background-size: contain;
    width: 100%;
    height: 1334px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
}

.about__text{
    max-width: 1024px;
    width: 100%;
}

.about__text h4{
    font-size: 40px;
    line-height: 56px;
    display: inline-block;
    font-weight: bold;
    background: linear-gradient(90deg, #3D79C9 0%, #004381 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    padding-top: 150px;
}

.about__text span{
    display: block;
    color: #313131;
    letter-spacing: 2px;
}

.about p{
    font-size: 20px;
    line-height: 36px;
    writing-mode: vertical-rl;
    letter-spacing: 8px;
    margin-bottom: 64px;
}

/* page nav */

.page-nav__inner {
    display: flex;
    width: 100%;
    background-color: #ffffff;
}
.page-nav__info__logo {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: bold;
    padding: 16px 32px;
    display: flex;
    background-color: #F9F8F5;
    justify-content: space-between;
}
.page-nav__info__logo .member {
    background: linear-gradient(90deg, #3D79C9 0%, #004381 100%);
    border-radius: 24px;
    color: #fff;
    padding: 12px 48px 12px 24px;
    position: relative;
    font-size: 16px;
}
.page-nav__info__logo .member::after {
    content: "";
    background: url(../img/home/img-icon-member.svg);
    width: 24px;
    height: 24px;
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 24px;
}
.page-nav__wrap {
    width: 100%;
}

.page-nav__list {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    max-width: 1100px;
    width: 100%;
    font-size: 20px;
    line-height: 24px;
    font-weight: bold;
    flex-wrap: wrap;
    padding: 50px 0;
    margin: auto;
}

@media only screen and (max-width:768px) {
    .page-nav__list {
        grid-template-columns: 50% 50%;
        padding: 32px 16px;
    }
}

.page-nav__list li{
    display: flex;
    justify-content: center;
    position: relative;
    margin: 8px;
    background: #1764AA;
}

.page-nav__list li a {
    width: 100%;
    font-size: 18px;
    color: #ffffff;
    padding: 13px 15px 10px 15px;
}

@media only screen and (max-width:768px) {
    .page-nav__list li a {
        font-size: 14px;
        padding: 8px 4px 8px 4px;
    }
}

.page-nav__list li span{
    font-size: 14px;
    font-weight: normal;
}

@media only screen and (max-width:768px) {
    .page-nav__list li span{
        font-size: 12px;
    }
}

/* ourservice */
.ourservice{
    padding: 0px 0 40px;
    background-color: #F9F8F5;
}

.ourservice__img{
    margin-bottom: 64px;
    padding-right: 120px;
}

@media only screen and (max-width:768px) {
    .ourservice__img{
        margin-bottom: 24px;
        padding-right: 0px;
    }
}

.ourservice__list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1024px;
    width: 100%;
    gap: 25px 40px;
    margin: auto;
    padding: 0 16px;
}

@media only screen and (max-width:768px) {
    .ourservice__list{
        justify-content: left;
        gap: inherit;
    }
}

.ourservice__block{
    width: calc((100% / 4) - 75px);
}

@media only screen and (max-width:768px) {
    .ourservice__block{
        width: calc((100% - 16px) / 2);
        margin-right: 16px;
        margin-bottom: 16px;
    }

    .ourservice__block:nth-child(even) {
        margin-right: 0px;
    }
}

.ourservice__block p{
    margin-top: 12.8px;
    font-size: 22px;
/*
    font-size: 12.8px;
*/
    font-weight: bold;
}
@media only screen and (max-width: 1080px) {
	.ourservice__block p{
		font-size: 18px;
	}
}
	
.ourservice__block p + p{
    margin-top: 0;
}

.ourservice__block p span{
    font-size: 12px;
}

/* banner area */

.banner-section {
    background-size: contain;
    background-repeat: no-repeat;
    padding: 0 0 15px;
    background-position: bottom center;
    position: relative;
    z-index: 2;
}

.banner-block{
    margin-bottom: 80px;
}

@media only screen and (max-width:768px) {
    .banner-block{
        margin-bottom: 20px;
    }
    
}

.banner-block-inner{
    display: flex;
    background-color: #fff;
    border-radius: 20px;
    justify-content: center;
    border: 1px solid #D9D9D9;
    flex-wrap: wrap;
    margin-top: -110px !important;
    padding: 0 !important;
}

@media only screen and (max-width:768px) {
    .banner-block-inner{
        flex-direction: column;
        margin-top: -28px !important;
        margin-right: 20px;
        margin-left: 20px;
        padding: 30px 20px !important;
    }
}

.banner-block-inner .tel{
    border-top: 1px solid #D9D9D9;
    padding: 32px 0;
    width: 100%;
    display: grid;
    place-items: center;
}

@media only screen and (max-width:768px) {
    .banner-block-inner .tel{
        padding: 12px 0;
    }
}

.banner-block-content{
    padding: 48px 0 32px;
    width: 50%;
    display: grid;
    place-items: center;
}

@media only screen and (max-width:768px) {
    .banner-block-content{
        padding: 0px 0 30px;
        width: 100%;
        display: grid;
        place-items: center;
    }
    .banner-block-content:last-child {
        padding: 0px;
    }
}

.banner-block-content p{
    font-weight: bold;
}

@media only screen and (max-width:768px) {
    .banner-block-content p{
        text-align: center;
        margin-bottom: 5px;
    }
}

.banner-block-content .name{
    font-weight: bold;
    font-size: 24px;
    color: #1764AA;
    margin-bottom: 16px;
}

@media only screen and (max-width:768px) {
    .banner-block-content .name{
        font-weight: normal;
        font-size: 16px;
        margin-top: 5px;
        margin-bottom: 0px;
    }
}

.banner-list{
    display: flex;
    flex-direction: column;
    gap:40px;
}

@media only screen and (max-width:768px) {
    .banner-list{
        gap:20px;
    }
    
    
}

/* sns */
.sns {
    background-image: url(../img/home/img-sns-bg.png);
    background-color: #F9F8F5;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    height: auto;
    position: relative;
    z-index: 3;
    padding: 120px 0 40px;
}

@media only screen and (max-width:768px) {
    .sns {
        background-image: none;
        z-index: 3;
        padding: 31px 0 32px;
    }
}

.sns__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1024px;
    width: 100%;
    margin: 0 auto 40px;
    ;
}

@media only screen and (max-width:768px) {
    .sns__inner {
        justify-content: center;
        margin: 0 auto;
        padding: 0px;
    }
}

.sns__title {
    display: inline-block;
    background: linear-gradient(90deg, #3D79C9 0%, #004381 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 64px;
    font-weight: bold;
    letter-spacing: 5px;
}
.sns__list{
    display: flex;
    margin-right: 95px;
}

@media only screen and (max-width:768px) {
    .sns__list{
        margin-right: 0px;
    }
}

.sns__block {
    max-width: 240px;
/*
    width: 170px;
*/
    padding-right: 25px;
}

@media only screen and (max-width:768px) {
    .sns__block {
/*
        width: 115px;
*/
        padding-right: 9px;
    }
}

/* link */

.link {
    background: url(../img/home/img-link-bg.png) no-repeat;
    background-position: center;
    background-size: cover;
    height: auto;
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}
.link__inner {
    padding:80px 0;
    backdrop-filter: blur(54px);
}
.link__title {
    display: inline-block;
    background: linear-gradient(90deg, #3D79C9 0%, #004381 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;    font-size: 64px;
    font-weight: bold;
    margin-bottom: 40px;
    letter-spacing: 5px;
}
.link__list__inner {
    max-width: 1024px;
    margin: 0 auto;
}

.link__list{
    display: flex;
    flex-wrap: wrap;
    gap: 32px 40px;
}
.link__item{
    width: calc((100% / 3) - 28px);
    display: grid;
    align-items: stretch;
    text-align: left;
}

.link__item a{
    display: block;
    background-color: #fff;
    border-radius: 78px;
    padding: 14px 16px;
    width: 100%;
    display: grid;
    place-items: center;
    font-size: 20px;
    line-height: 28px;
}

.link__item a:hover{
    transition: none;
    color: #fff;
    background: linear-gradient(90deg, #3D79C9 0%, #004381 100%);
}

/* access */
.access{
    padding-top: 40px;
    background: url(../img/home/img-access-bg.png) no-repeat;
    background-position: bottom center;
    margin-bottom: -8px;
}

@media only screen and (max-width:768px) {
    .access {
        padding-top: 32px;
    }
}

.access__titleArea{
    display: flex;
    max-width: 1024px;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 40px;
}

@media only screen and (max-width:768px) {
    .access__titleArea{
        flex-direction: column;
        max-width: 1024px;
        align-items: flex-start;
        justify-content: left;
        margin: 0 16px 24px;
    }
}

.access__title{
    display: inline-block;
    background: linear-gradient(90deg, #3D79C9 0%, #004381 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 64px;
    font-weight: bold;
    letter-spacing: 5px;
    line-height: 64px;
}

@media only screen and (max-width:768px) {
    .access__title{
        font-size: 32px;
    }
}


.p-home .bgextend {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-name: bgextendAnimeBase;
    opacity: 0;
    overflow: hidden; /*　はみ出た色要素を隠す　*/
    position: relative;
}
@-webkit-keyframes bgextendAnimeBase {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes bgextendAnimeBase {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.p-home .bgappear {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-name: bgextendAnimeSecond;
    animation-name: bgextendAnimeSecond;
    opacity: 0;
    padding: 0 24px;
}
@-webkit-keyframes bgextendAnimeSecond {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes bgextendAnimeSecond {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.p-home .bgLRextend::before {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-name: bgLRextendAnime;
    animation-name: bgLRextendAnime;
    background: linear-gradient(340deg, rgb(111, 209, 154) 20%, rgb(43, 172, 201) 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
}
@-webkit-keyframes bgLRextendAnime {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: left;
        transform-origin: left;
    }
    50% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: left;
        transform-origin: left;
    }
    50.001% {
        -webkit-transform-origin: right;
        transform-origin: right;
    }
    100% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: right;
        transform-origin: right;
    }
}
@keyframes bgLRextendAnime {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: left;
        transform-origin: left;
    }
    50% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: left;
        transform-origin: left;
    }
    50.001% {
        -webkit-transform-origin: right;
        transform-origin: right;
    }
    100% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: right;
        transform-origin: right;
    }
}

.fadeUp {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-name: fadeUpAnime;
    animation-name: fadeUpAnime;
    opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
    from {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.fadeUpTrigger {
    opacity: 0;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */

@media only screen and (min-width: 1081px) {
    a:hover {
        opacity: 0.8;
    }
    .inner-block {
        margin: 0 auto;
    }
    .sp {
        display: none !important;
    }

    .fixed__buttons {
        display: none !important;
    }

    a,
    a::before,
    a::after,
    button {
        -webkit-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
}

@media only screen and (max-width: 1080px) {
    body {
        -webkit-appearance: none;
        font-size: 14px;
        position: relative;
        -webkit-text-size-adjust: 100%;
    }
    #wrapper {
        min-width: 320px;
        overflow: hidden;
        position: relative;
    }
    input[type=submit] {
        -webkit-text-size-adjust: 100%;
    }
    input,
    select,
    textarea {
        font-size: 16px !important;
    }
    .pc {
        display: none !important;
    }
    .l-wrapper {
        min-width: initial;
    }
    .c-button.-small {
        padding: 10px 0;
        text-align: center;
        width: 100%;
    }
    .c-title {
        font-size: 30px;
        padding: 8px 12px;
    }
    .c-pagetop {
        display: none !important;
    }
    .c-contactButton {
        background-color: #fff;
        bottom: 0;
        display: block;
        left: 0;
        padding: 10px 0;
        position: fixed;
        width: 100%;
        z-index: 10;
    }
    .c-contactButton button {
        width: 100%;
    }
    .c-contactButton button a {
        background: linear-gradient(316deg, #6fd19a 0%, #4cbeb2 48%, #2bacc9 100%) 0 0 no-repeat padding-box;
        color: #f0ff49;
        display: block;
        font-size: 16px;
        font-weight: bold;
        margin: 0 16px;
        padding: 8px 0;
        position: relative;
    }
    .p-home__contact__block {
        -webkit-box-direction: normal;
        -webkit-box-orient: vertical;
        -webkit-box-pack: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        min-height: 216px;
        padding: 16px 0;
    }
}

