@charset "UTF-8";

/*------------------------

header

------------------------*/
.header .main-nav {
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: var(--bg-color);
}

.header .main-nav__list {
    width: 100%;
    display: flex;
    align-items: center;
}

.header .main-nav__list .logo {
    margin-right: 24px;
    margin-left: 24px;
}

.header .main-nav__list .logo a {
    display: block;
    line-height: 0;
}

.header .main-nav__list .logo a img {
    width: calc(169px / 1.5);
    height: calc(29px / 1.5);
}

.header .main-nav__item {
    margin-left: 16px;
    line-height: 1;
}

.header .main-nav__link {
    height: 38px;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: var(--nav-color);
    transition: transform .4s cubic-bezier(.6, 0, .3, 1) 25ms;
}

.header .main-nav__link:after {
    width: 100%;
    height: 2px;
    margin: 0 auto;
    content: "";
    opacity: 0;
    border-radius: 1px;
    background: linear-gradient(90deg, #f63 10%, #f99d24 40%, #f99d24 70%, #f63 90%);
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    transition: transform .4s cubic-bezier(.6, 0, .3, 1) 25ms, background-color .15s linear, opacity 0s linear .425s;
    transform: translate3d(0, 3px, 0) scaleX(0);
}

.header .main-nav__link:hover {
    transition: transform .65s cubic-bezier(.25, .9, .3, 1.15) 25ms;
    transform: translate3d(0, 0, 0);
}

.header .main-nav__link:hover:after {
    opacity: 1;
    transition: transform .3s cubic-bezier(.25, .9, .3, 1.15), background-color .15s linear, opacity .15s linear;
    transform: translateZ(0) scaleX(1);
}

.signin__item {
    margin-left: auto;
}

.signin__btn {
    padding: 8px 32px 8px 56px;
    background: linear-gradient(90deg, #f63 10%, #f99d24 40%, #f99d24 70%, #f63 90%);
    background-size: 200% auto;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: .4s cubic-bezier(.6, 0, .3, 1) 25ms;
}

.signin__btn:before {
    width: 18px;
    height: 18px;
    margin: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M4 15h2v5h12V4H6v5H4V3a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-6zm6-4V8l5 4-5 4v-3H2v-2h8z' fill='rgba(255,255,255,1)'/%3E%3C/svg%3E");
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 1px;
    left: 32px;
}

.signin__btn:hover {
    background-position: right center;
}

/*------------------------

mv

------------------------*/
.mv {
    height: 20vh;
    min-height: 200px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.mv:after {
    width: 100%;
    height: 20vh;
    min-height: 200px;
    content: "";
    background: linear-gradient(transparent 0, rgba(0, 0, 0, .5) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.mv:before {
    content: "";
    filter: blur(5px);
    -ms-filter: blur(5px);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    background: inherit;
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    z-index: -1;
}

.mv .wrap {
    height: 100%;
    position: relative;
}

.mv .mv__inner {
    height: 100%;
}

.mv .mv-contents {
    height: 100%;
    display: flex;
    align-items: baseline;
}

.mv .title {
    margin-top: auto;
    margin-bottom: 24px;
    position: relative;
    font-family: "Quicksand", "游ゴシック Medium", "YuGothic,YuGothicM", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    z-index: 1;
}

/*------------------------

共通コンテンツ

------------------------*/
.section-wrap {
    padding: 40px 0;
    background-color: var(--theme-color);
    background-image: url(../../common/img/contents-back.png);
    background-repeat: no-repeat;
    background-position: center top;
}

.section-wrap__inner {
    padding: 8vw 16vw;
    border-radius: 16px;
    background-color: #fff;
}

/*------------------------

footer

------------------------*/
footer {
    padding: 80px 0;
    background-color: var(--bg-color);
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
}

.footer {
    padding: 100px 0;
}

.footer .footer-top .main-nav {
    width: 100%;
}

.footer .footer-top .main-nav__list {
    border-top: 1px solid var(--footer-color);
    display: flex;
    align-items: center;
}

.footer .footer-top .main-nav__list .logo {
    margin-right: 80px;
}

.footer .footer-top .main-nav__list .main-nav__link {
    width: 100%;
    padding: 0;
    padding: 80px 64px 80px 0;
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--nav-color);
}

.footer .footer-top .main-nav__list .main-nav__link::after {
    width: 0;
    height: 1px;
    margin: auto;
    content: "";
    background: linear-gradient(90deg, #f63 10%, #f99d24 40%, #f99d24 70%, #f63 90%);
    position: absolute;
    top: -1px;
    left: 0;
    display: block;
    transition: all .2s cubic-bezier(.455, .03, .515, .955);
}

.footer .footer-top .main-nav__list .main-nav__link:hover {
    color: var(--hover-color);
}

.footer .footer-top .main-nav__list .main-nav__link:hover::after {
    width: 64px;
}

.footer .footer-middle .main-nav {
    width: 100%;
}

.footer .footer-middle .main-nav__list {
    display: flex;
    justify-content: flex-end;
}

.footer .footer-middle .main-nav__list .main-nav__item+.main-nav__item {
    margin-left: 32px;
}

.footer .footer-middle .main-nav__list .main-nav__link:hover {
    color: #fff;
}

.footer .footer-bottom {
    margin-top: 80px;
    align-items: flex-end;
    font-size: 14px;
    color: #808080;
}

.copyrights {
    margin-left: auto;
    font-family: "Quicksand", "游ゴシック Medium", "YuGothic,YuGothicM", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 12px;
}

/*------------------------

headlines

------------------------*/
.headlines01 {
    margin-top: 64px;
    margin-bottom: 32px;
    padding: 1em 1em 1em 1.6em;
    background: var(--light-theme-color);
    position: relative;
    font-family: "Quicksand", "游ゴシック Medium", "YuGothic,YuGothicM", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 24px;
}

.headlines01:before {
    width: 32px;
    height: 2px;
    margin: auto;
    content: "";
    background-color: var(--theme-color);
    position: absolute;
    top: 0;
    bottom: 0;
    left: -16px;
}

.headlines01:first-child {
    margin-top: 0;
}

.headlines02 {
    margin-top: 64px;
    margin-bottom: 32px;
    padding-bottom: 25px;
    position: relative;
    font-family: "Quicksand", "游ゴシック Medium", "YuGothic,YuGothicM", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.headlines02::before,
.headlines02::after {
    width: 100%;
    height: 1px;
    content: "";
    background-color: #eaeaea;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    vertical-align: middle;
}

.headlines02::after {
    width: 100px;
    background: -webkit-gradient(linear, left top, right top, color-stop(20%, #f93), color-stop(80%, #ff7166));
    background: linear-gradient(90deg, #f93 20%, #ff7166 80%);
}