@charset "utf-8";
/*
TOPページ 背景設定
------------------------------------------------------------*/
/*背景設定*/
body.home {
    background-color: #FFF;
}
/*
TOPページ H2見出し（共通）
------------------------------------------------------------*/
.home .ttl h2 {
    color: #151a8c;
    margin-bottom: 32px;
    text-align: center;
    font-size: clamp(2.4rem, 1.829rem + 2.86vw, 3.2rem);
}
.home .ttl h2 span {
    font-size: 80%;
}
@media (min-width: 768px) {
    .home .ttl h2 {
        font-size: 50px;
        margin-bottom: 50px;
    }
}
/*　TOPページ セクション 余白設定
------------------------------------------------------------*/
#top-msg {
    padding: 60px 0;
}
#top-window.triangle {
    padding-top: 160px;
    padding-bottom: 60px;
    background: #f7f5ef;
    position: relative;
}
#top-window.triangle:before {
    content: "";
    position: absolute;
    height: 60px;
    width: 100%;
    clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
    background-color: #ffffff;
    left: 0;
    top: 0;
}
#top-news {
    padding: 60px 0;
}
@media screen and (min-width: 768px) {
    #top-msg {
        padding: 80px 0 60px;
    }
    #top-window.triangle {
        padding: 160px 0;
    }
    #top-window.triangle:before, #top-window.triangle:after {
        height: 80px;
    }
    #top-window.triangle:after {
        content: "";
        position: absolute;
        height: 80px;
        width: 100%;
        clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
        clip-path: polygon(50% 1%, 0 100%, 100% 100%);
        background-color: #ffffff;
        left: 0;
        bottom: 0;
    }
    #top-news {
        padding: 20px 0 60px;
    }
}
@media screen and (min-width: 992px) {
    #top-window.triangle {
        padding: 200px 0;
    }
    #top-window.triangle:before, #top-window.triangle:after {
        height: 100px;
    }
}
@media screen and (min-width: 1200px) {
    #top-window.triangle {
        padding: 220px 0;
    }
    #top-window.triangle:before, #top-window.triangle:after {
        height: 140px;
    }
}
/*
TOPページ　ヒーロー
------------------------------------------------------------*/
.hero_sec {
    transition: background 0.5s cubic-bezier(0.4, 0.4, 0, 1);
    background-image: linear-gradient(180deg, #9ed6f2ff 50%, rgba(255, 255, 255, 0) 300px);
}
@media screen and (max-width: 991.98px) {
    .hero_sec {
        background: transparent;
    }
}
/*---------------------------*/
.swiper {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
}
.swiper-slide {
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
@media screen and (min-width: 992px) {
    .swiper-slide {
        background-position: center;
        background-size: cover;
        width: 50%;
        overflow: hidden;
    }
    .swiper-slide img {
        display: block;
        width: 100%;
    }
}
.HeroSwiper .swiper-slide-visible.swiper-slide-active {
    border: 2px solid #EEEEEE;
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.4);
    position: relative;
}
.HeroSwiper .swiper-controller {
    display: flex;
    gap: 1.6rem;
    align-items: center;
    justify-content: flex-end;
    margin-top: 4rem;
    background: transparent;
}
.HeroSwiper .swiper-controller .swiper-pagination-bullet {
    width: 3rem;
    height: 5px;
    transition: .8s cubic-bezier(.2, 1, .2, 1);
    vertical-align: top;
    background-color: #616161;
    border-radius: 0;
}
.HeroSwiper .swiper-controller .swiper-pagination-bullet-active {
    width: 5rem;
    background-color: #9E9E9E;
}
.HeroSwiper .swiper-slide-prev a {
    pointer-events: none
}
.HeroSwiper .swiper-slide-next a {
    pointer-events: none
}
/*
TOPページ　メッセージ
------------------------------------------------------------*/
/*背景*/
#top-msg {
    position: relative;
}
#top-msg:before {
    content: "";
    width: 60vw;
    height: 80%;
    background-color: rgba(255, 255, 255, 0.8);
    background-image: url(../img/TopBack4.png);
    background-repeat: no-repeat;
    background-size: 44%;
    background-blend-mode: lighten;
    position: absolute;
    top: 10px;
    left: 33.5vw;
    z-index: -1;
}
/*コンテンツ*/
#top-msg .ttl {
    margin-bottom: 32px;
    color: #151A8C;
    font-weight: bold;
}
#top-msg .ttl h2 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 5px;
}
#top-msg .ttl h2 span {
    display: block;
}
#top-msg .ttl h2 .span_br1 {
    text-align: left;
}
#top-msg .ttl h2 .span_br2, #top-msg .ttl h2 .span_br3 {
    font-size: clamp(1.6rem, -1.582rem + 12.73vw, 3rem);
    margin-bottom: 5px;
    margin-top: 5px;
}
#top-msg .ttl h2 .span_br4 {
    line-height: 1.4;
}
#top-msg .desc {
    line-height: 1.8;
    max-width: 900px;
    margin: auto;
    font-size: 1.8rem;
    padding: 0 18px;
}
@media (min-width: 768px) {
    #top-msg .ttl h2 {
        display: grid;
        justify-content: center;
        font-size: 2.6rem;
    }
    #top-msg .ttl h2 .span_br1 {
        grid-row: 1/2;
        grid-column: 1/3;
        padding-left: 3rem;
    }
    #top-msg .ttl h2 .span_br2 {
        grid-row: 2/3;
        grid-column: 1/2;
    }
    #top-msg .ttl h2 .span_br3 {
        grid-row: 2 / 3;
        grid-column: 2/3;
    }
    #top-msg .ttl h2 .span_br4 {
        grid-row: 3/4;
        grid-column: 1/3;
        text-align: center;
        margin-top: 3px;
    }
    #top-msg .ttl h2 .span_br2, #top-msg .ttl h2 .span_br3 {
        font-size: 32px;
    }
}
@media (min-width: 992px) {
    #top-msg .ttl h2 {
        font-size: 3.4rem;
    }
    #top-msg .ttl h2 .span_br2, #top-msg .ttl h2 .span_br3 {
        font-size: 43px;
    }
}
@media (min-width: 1200px) {
    #top-msg .ttl h2 {
        font-size: 3.6rem;
        row-gap: 16px;
    }
    #top-msg .ttl h2 .span_br2, #top-msg .ttl h2 .span_br3 {
        font-size: 50px;
    }
}
/*
TOPページ　5つのトビラ
------------------------------------------------------------*/
#top-window {
    background-color: #f7f5ef;
}
.TopWinBox {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 24px;
    width: 100%;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.TopWinIitem {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 300px;
    color: #fff;
}
.TopWinImg img {
    width: 100%;
}
.TopWinCont {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    grid-template-rows: 90px 1fr 134px;
    height: 100%;
    padding: 20px 38px 34px 20px;
}
.TopWinIitemTtl {
    align-self: center;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
    padding-left: 10px;
    text-shadow: 2px 2px black;
}
.TopWinIitemMsg {
    padding-right: 20px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
}
.TopWinIitemLinkBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 16px;
}
.TopWinIitemLinkBox a {
    position: relative;
    padding: 10px 23px 10px 10px;
    background-color: #fff;
    border-radius: 0 36px 36px 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}
.TopWinIitemLinkBox a:hover {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 1;
}
.TopWinIitemLink p {
    position: absolute;
    right: 8px;
    font-size: 12px;
    color: #fff;
}
.TopWinIitemLinkBox .ColLink2 {
    padding: 6px 23px 2px 10px;
}
.TopWinIitemLinkBox .ColLink2 span {
    font-size: 12px;
    display: block;
    line-height: 1;
}
.TopWinIitemLinkBox .ColLink2 p {
    top: 10px;
}
.TopWinIitem .TopWinIitemLink, .TopWinIitem .TopWinIitemLink .fa-circle {
    color: #555555;
}
/*ドアノブ*/
.TopWinImg img:last-child {
    position: absolute;
    width: 36px;
    right: 36px;
    top: 46%;
}
/*とびら個別*/
.TopWinIitem.TopWinIitem4 .TopWinIitemMsg, .TopWinIitem.TopWinIitem5 .TopWinIitemMsg {
    padding-top: 40px;
}
.TopWinIitem1 .TopWinIitemLink2 {
    font-size: 15px;
}
.TopWinIitem4 .TopWinIitemTtl {
    font-size: 28px;
}
@media (min-width: 768px) {
    .TopWinBox {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .TopWinBox {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .TopWinBox {
        max-width: 1140px;
    }
}
/*
TOPページ　お知らせ
------------------------------------------------------------*/
.cat_list {
    max-width: 768px;
    margin-bottom: 50px;
}
.cat_list_item {
    position: relative;
    margin-bottom: 20px;
    padding: 20px 70px 20px 20px;
    text-align: left;
    background-color: #f7f5ef;
    border: 1px solid #EEEEEE;
    border-radius: 1.25rem;
}
.cat_list_item .fa-stack {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    color: #c5c5c5;
    font-size: 18px;
}
.cat_list_item .fa-play {
    color: #fcfcfc;
}
.tagList_cat {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}
.tagList_cat li {
    padding: 0 6px;
    font-size: 12px;
    border: 1px solid #151a8c;
    color: #151a8c;
    border-radius: 5px;
}
.catList_date {
    margin-bottom: 4px;
}
.catList_ttl a {
    color: #333;
    font-weight: bold;
    transition: 0.3s;
}
.catList_ttl a:hover {
    text-decoration: underline;
    color: #151a8c;
}
@media (min-width: 768px) {
    .cat_list {
        margin: 0 auto 70px;
    }
    .cat_list_item {
        display: grid;
        grid-template-columns: 16ch 1fr;
        row-gap: 5px;
    }
    .catList_date {
        margin-bottom: 0;
    }
    .tag_list {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        align-items: flex-start;
    }
    .tagList_cat {
        margin-bottom: 0;
    }
    .tagList_cat li {
        white-space: nowrap;
    }
    .catList_ttl {
        grid-column: 1 / 3;
        font-size: 1.6rem;
        display: flex;
        align-items: center;
    }
    .catList_ttl span.new {
        margin-right: 1rem;
        padding: 0 10px;
        font-size: 1.4rem;
        letter-spacing: 0.07rem;
        color: #fff;
        background-color: #C62828;
        border-radius: 5px;
    }
    .catList_ttl a {
        font-size: 2.0rem;
    }
}
/*TOPお知らせ一覧ボタン*/
#top-news .nav_link a {
    position: relative;
    display: block;
    width: 405px;
    margin: auto;
    padding: 18px 0;
    background-color: #fff;
    border: #151A8C 1px solid;
    box-shadow: 5px 5px 0px 0px #151A8C;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #151A8C;
}
#top-news .nav_link a span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 13px;
}
@media screen and (max-width: 767.98px) {
    #top-news .nav_link a {
        width: 284px;
        padding: 10px 0;
        font-size: 18px;
    }
}