/* ====================================
	main
==================================== */
.main__flex {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #fed02f;
}

/* --------------------
	main__fixed
-------------------- */
.main__fixed {
    width: 15%;
    padding: 0 0 0 25px;
}

.main__fixed img {
    width: 100%;
    margin: 0 auto;
}

/* --------------------
	main__slider
-------------------- */
.main__slider {
    width: calc(100% - 15%);
    margin: 0;
    padding: 0;
    line-height: 0;
    position: relative;
    overflow: hidden;
}

.main__slider::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    content: "";
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50vh 5vw 0 0;
    border-color: #fed02f transparent transparent transparent;
}

.main__slider .slick-dots {
    bottom: 20px;
}

.main__slider .slick-slide {
    background-color: #ffffff;
}

.main__slider .slick-slide figure {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.main__slider .slick-slide img {
    transform: scale(1.1);
    animation: fadeOut 1s 1 forwards;
}

@keyframes fadeOut {
    0% {
        filter: blur(0);
        opacity: 1;
    }

    100% {
        filter: blur(7px);
        opacity: 0.4;
    }
}

.main__slider .slick-slide.slick-active img {
    animation: fadeIn 1s 1 forwards;
}

@keyframes fadeIn {
    0% {
        filter: blur(7px);
        opacity: 0.4;
    }

    100% {
        filter: blur(0);
        opacity: 1;
    }
}

.main__slider .slick-dots li button:before {
    color: #ffffff;
}

.main__slider .slick-dots li.slick-active button:before {
    color: #ffffff;
}

.main__slider.slick-dotted.slick-slider {
    margin: 0;
}

@media only screen and (max-width: 768px) {
    .main__flex {
        background-color: #45b035;
    }

    .main__fixed {
        width: 30%;
        padding: 0 0 0 0;
    }

    .main__slider {
        width: calc(100% - 30%);
    }

    .main__slider::before {
        border-width: 20vh 10vw 0 0;
        border-color: #45b035 transparent transparent transparent;
    }
}

/* ====================================
	link
==================================== */
.link__area {
    max-width: 740px;
    margin: 0 auto 200px auto;
}
.link__area h2 {
    text-align: center;
    font-weight: bold;
    margin: 40px 0 20px 0;
    line-height: 1;
    font-size: 3.2rem;
    color: #45b035;
}
.link__flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.link__item {
    padding: 10px;
}

@media only screen and (max-width: 767px) {
}
/* ====================================
	news
==================================== */
.news__area {
    position: relative;
    background-color: #45b035;
    margin: 100px 0;
    background-image: url("../index/news__sub.svg");
    background-repeat: no-repeat;
    background-position: 30px 0px;
    background-size: 18px 360px;
    padding: 0 75px;
}

.news__area::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 100px 0 0 100vw;
    border-color: transparent transparent transparent #45b035;
}

.news__area::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100vw 100px 0;
    border-color: transparent #45b035 transparent transparent;
}

.news__wrap {
    max-width: 1080px;
    margin: 0 auto;
}
.news__wrap h2 {
    color: #ffffff;
}

.news__flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 0 50px 0;
}

.news__flex > div {
    position: relative;
    width: calc(50% - 10px);
    height: 500px;
    background-color: #ffffff;
}

.news__flex h3 {
    font-family: "Roboto", sans-serif;
    font-size: 3.2rem;
    font-weight: bold;
    padding: 0 0 8px 0;
    background-color: #45b035;
    color: #ffffff;
}

.news__flex hr {
    display: block;
    border: 0;
    border-top: 2px solid #45b035;
    width: calc(100% - 40px);
    margin: 20px auto;
}

.news__scroll--twitter {
    overflow-y: scroll;
    height: calc(100% - 40px);
}

.news__scroll--topics {
    overflow-y: scroll;
    height: calc(100% - 130px);
    padding: 0 20px;
}

.news__scroll--topics ul {
    padding: 20px 0 20px 0;
}

.news__scroll--topics li {
    margin: 0 0 20px 0;
}

.news__scroll--topics a {
    display: block;
    color: #333333;
    border-bottom: 2px dotted #333333;
    padding: 0 0 10px 0;
}

.news__scroll--topics span {
    display: inline-block;
    background-color: #45b035;
    color: #ffffff;
    font-size: 1.4rem;
    padding: 5px 10px;
    margin: 0 0 10px 0;
}

.news__scroll--topics p {
    font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
    .news__area {
        background-image: none;
        padding: 0 20px;
    }

    .news__flex {
        display: block;
    }

    .news__flex > div {
        width: 100%;
        margin: 0 0 30px 0;
    }
}

/* ====================================
	info
==================================== */
.info__deco {
    background-color: #fed02f;
    background-image: url("../index/info__sub.svg");
    background-repeat: no-repeat;
    background-position: 30px 100px;
    background-size: 18px 360px;
    padding: 100px 75px;
}

.info__area {
    padding: 100px 0;
}

.info__area::before {
    display: block;
    width: 100%;
    height: 50px;
    content: "";
    background-image: url("../index/info__bg--top.svg");
    background-repeat: repeat-x;
    background-position: center bottom;
}

.info__area::after {
    display: block;
    width: 100%;
    height: 50px;
    content: "";
    background-image: url("../index/info__bg--bottom.svg");
    background-repeat: repeat-x;
    background-position: center top;
}

.info__wrap {
    max-width: 1080px;
    margin: 0 auto;
}

.info__list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.info__list li {
    background-color: #ffffff;
    margin: 0 15px 30px 0;
    padding: 0 0 75px 0;
    position: relative;
}


.info__list li a {
    display: block;
    color: #333333;
}

.info__list li div {
    padding: 30px 10px 10px 10px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.info__list li strong {
    display: block;
    color: #45b035;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.info__list li p {
    font-size: 1.6rem;
    line-height: 1.5;
}

.info__btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    margin: 0 0 0 auto;
}

@media only screen and (max-width: 1023px) {
    .info__list li {
        max-width: none;
        width: calc(100% / 2 - 10px);
        margin: 0 15px 30px 0;
    }

    .info__list li:nth-child(3n) {
        margin: 0 15px 30px 0;
    }

    .info__list li:nth-child(2n) {
        margin: 0 0 30px 0;
    }
}

@media only screen and (max-width: 767px) {
    .info__deco {
        background-image: none;
        padding: 40px 20px 100px 20px;
    }

    .info__list li {
        width: 100%;
        margin: 0 0 30px 0;
    }

    .info__list li:nth-child(3n),
    .info__list li:nth-child(2n) {
        margin: 0 0 30px 0;
    }
}

/* ====================================
	access
==================================== */
.access__area {
    background-image: url("../index/access__sub.svg");
    background-repeat: no-repeat;
    background-position: 30px 100px;
    background-size: 18px 360px;
    padding: 100px 75px;
}

.access__wrap {
    max-width: 1080px;
    margin: 0 auto 0 auto;
}

.access__table {
    width: 100%;
    margin: 0 0 30px 0;
}

.access__table th {
    width: 120px;
    text-align: left;
}

.access__table th,
.access__table td {
    font-size: 1.6rem;
    padding: 0 0 20px 0;
    line-height: 2;
}

.access__table td a {
    color: #45b035;
    text-decoration: underline;
}

.access__wrap iframe {
    width: 100%;
    height: 480px;
}

@media only screen and (max-width: 767px) {
    .access__area {
        background-image: none;
        padding: 40px 20px 100px 20px;
    }
}

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

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

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

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