@charset "utf-8";

.home {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
}
.home .mv {
    display: grid;
    grid-template-columns: 320px 1fr;
    width: 100%;
    margin-bottom: 120px;
}
.home .mv-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 32px 40px 0;
    border-left: 8px solid #333377;
}
.home .mv-left__logo {
    margin: 0 0 104px 32px;
    width: 100%;
}
.home .mv-left__nav {
    margin: 0 0 80px 0;
    list-style: none;
}
.home .mv-left__nav__link {
    display: block;
    padding: 16px 16px 16px 24px;
    border-bottom: 1px solid #333377;
    font-weight: bold;
    text-decoration: none;
    color: #333377;
    background: #fff;
}
.home .mv-left__nav__link:hover {
    background: #33337720;
}
.home .mv-left__btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    margin: 0 0 40px 32px;
}
.home .mv-left__btn__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 9px;
    font-size: 14px;
    border: 1px solid transparent;
    color: #333;
    background: #EEEEEE;
    text-decoration: none;
}
.home .mv-left__btn__link:hover {
    border: 1px solid #333377;
    background-color: #fff;
    opacity: 1;
}
.home .mv-left__btn__link--dark {
    grid-column: 1 / 3;
    gap: 6px;
    color: #fff;
    background: #333377;
}
.home .mv-left__btn__link--dark:hover {
    color: #333;
}
.home .mv-left__btn__link--dark .mv-left__btn__icon {
    color: #fff;
}
.home .mv-left__btn__link--dark:hover .mv-left__btn__icon {
    color: #333377;
}
.home .mv-left__search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 32px;
    padding: 8px;
    border: 1px solid #333;
}
.home .mv-left__search::after {
    content: "\f002";
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 16px;
    color: #333377;
}
.home .mv-left__search__input {
    outline: none;
    border: none;
    font-size: 16px;
}

.home .mv-right {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 700px;
    overflow: hidden;
}
.home .mv-right__bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}
.home .mv-right__bg img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.home .mv-right__bg::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: url("/images/mv_deco.svg") no-repeat right bottom;
}
.home .mv-right__inner {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 86%;
    max-width: 928px;
}
.home .mv-right__inner__text {
    position: relative;
    margin-bottom: 32px;
    font-size: 18px;
    text-align: center;
    text-shadow: 0 0 4px #fff;
    line-height: 1.9;
}
.home .mv-right__inner__text::after {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 150%;
    content: "";
    background: radial-gradient(
        ellipse at center,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.7) 35%,
        rgba(255,255,255,0.2) 55%,
        rgba(255,255,255,0) 70%
    );
    pointer-events: none;
}
.home .mv-right__inner__text__copy {
    margin-bottom: 24px;
}
.home .mv-right__inner__nav__list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
}
.home .mv-right__inner__nav__link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    font-size: 14px;
    gap: 6px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #333377;
    background: #ffffff80;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px #00000020;
    text-decoration: none;
    text-align: center;
    line-height: 1.6;
}
.home .mv-right__inner__nav__link:hover {
    background: #333377;
    border: 1px solid #333377;
    color: #fff;
}
.home .mv-right__inner__nav__link::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0px 0px 33px 22px;
	border-color: transparent transparent #333377 transparent;
    opacity: 1;
}
.home .mv-right__inner__nav__link:hover::after {
	border-color: transparent transparent #fff transparent;
}
.home .mv-right__inner__nav__link__icon {
    color: #333377;
    aspect-ratio: 1 / 1;
    height: auto;
}
.home .mv-right__inner__nav__link:hover .mv-right__inner__nav__link__icon {
    color: #fff;
}

@media (max-width:1120px) {
    .home .mv-right__inner__nav__link__icon {
        width: 60px;
    }
}
@media (max-width:768px) {
    .home .mv {
        display: block;
        /*grid-template-columns: 320px 1fr;*/
        width: 100%;
        margin-bottom: 64px;
    }
    .home .mv-left {
        display: none;
    }
    .home .mv-right {
        position: inherit;
        overflow: visible;
        max-height: none;
    }
    .home .mv-right__inner {
        position: inherit;
        transform: translate(0, 0);
        width: auto;
    }
    .home .mv-right__inner__text {
        margin: 32px 20px;
        text-align: start;
    }
    .home .mv-right__inner__nav {
        position: relative;
        width: auto;
        padding: 30px;
    }
    .home .mv-right__inner__nav__list{
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 1fr);
    }
    .home .mv-right__inner__nav__link {
        padding: 8px;
    }
    .home .mv-right__bg {
        object-position: 30%;
    }
}

/* ニュースエリア */
.home .news {
    max-width: 1000px;
    margin: 0 auto 120px auto;
    padding: 0 20px;
}
.home .news__ttl {
    position: relative;
    padding: 0;
    padding-top: 12px;
    margin: 0;
    margin-bottom: 40px;
    border-top: 2px solid #333;
    border-bottom: none;
}
.home .news__ttl__jp {
    display: block;
    font-family: "Zen Old Mincho", serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.6;
}
.home .news__ttl__en {
    display: block;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-optical-sizing: auto;
    font-weight: 400;
    line-height: 1.2;
    color: #333377;
}
.home .news__ttl__deco {
    position: absolute;
    top: 0;
    right: 100%;
    transform: translate(43%, -50%);
}
.home .news__inner {
    display: grid;
    grid-template-columns: max(160px, 26%) 1fr;
}
.home .news-tab {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.home .news-tab__link {
    position: relative;
    display: block;
    padding: 4px 0 4px 22px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #666666;
}
.home .news-tab__link::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-37%) skewX(-34deg);
    width: 6px;
    height: 9px;
    background: #6b6b6b;
}
.home .news-tab__item.active .news-tab__link {
    color: #333377;
}
.home .news-tab__item.active .news-tab__link::before {
    background: #333377;
}
.home .news-contents__list {
}
.home .news-contents__item {
    display: none;
    margin-bottom: 12px;
}
.home .news-contents__item.active {
    display: block;
    margin-bottom: 12px;
}
.home .news-contents__item:last-child {
    margin-bottom: 0;
}
.home .news-contents__link {
    position: relative;
    display: block;
    padding: 8px 16px;
    background-color: #EEEEEE;
    text-decoration: none;
}
.home .news-contents__link::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 0px 23px 16px;
    border-color: transparent transparent #333377 transparent;
    opacity: 1;
}
.home .news-contents__link:hover {
    background-color: #33337720;
}
.home .news-contents__link__info {
    display: flex;
    align-items: center;;
    gap: 24px;
    margin-bottom: 4px;
}
.home .news-contents__link__info__date {
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #333377;
}
.home .news-contents__link__info__category {
    display: flex;
    align-items: center;
    gap: 4px;
}
.home .news-contents__link__info__category span {
    display: inline;
    padding: 4px 8px;
    border: 1px solid #CCCCCC;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}
.home .news-contents__link__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.9;
    color: #333;
}
.home .marquee {
    margin-bottom: 53px;
}
.home .marquee__text {
    margin: 0;
    font-family: "Jost", sans-serif;
    color: #333377;
    font-size: 3.6vw; /*画面いっぱいになるよう。デザインでは52px指定*/
    font-weight: 400;
    opacity: 0.2;
    line-height: 1;
}
.home .banner__wrap {
    position: relative;
    padding: 60px 0;
    background:
    linear-gradient(
      rgba(255,255,255,0.7),
      rgba(255,255,255,0.7)
    ),
     url("/images/bg_bnr_pc.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}
.home .banner__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.home .banner__link {
    text-decoration: none;
    box-shadow: 0px 0px 4px  #33333320;
}
.home .banner__link img {
    display: block;
    width: 100%;
    height: 100%;
}
.home .address {
    margin-top: 0 !important;
    padding: 40px;
    font-weight: 400;
    line-height: 1.9;
}
.home .address__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
}
.home .footer {
    font-weight: 400;
}


@media (max-width:768px) {
    .home .news__ttl {
        margin-bottom: 49px;
    }
    .home .news__ttl__jp {
        font-size: 24px;
    }
    .home .news__ttl__en {
        font-size: 14px;
    }
    .home .news__ttl__deco {
        width: 42px;
    }
    .home .news__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .home .news-tab {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }
    .home .marquee__text {
        font-size: 30px;
        line-height: 1.3;
    }
    .home .banner__wrap {
        padding: 40px 0;
        background:
            linear-gradient(
            rgba(255,255,255,0.7),
            rgba(255,255,255,0.7)
            ),
            url("/images/bg_bnr_sp.jpg");
    }
    .home .banner__list {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 20px;
    }
    .home .address__inner {
        grid-template-columns: 1fr;
        gap: 24px;
        flex-direction: column;
    }
}
