@charset "UTF-8";

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

header

------------------------*/
.header {
    width: 100%;
    height: 44px;
    background-color: var(--bg-color);
    position: fixed;
    font-size: 14px;
    z-index: 9;
}

.header-inner {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    line-height: 1;
}

.header-inner .main-nav {
    width: 100%;
}

.header-inner .logo {
    margin-left: 16px;
    display: flex;
    align-items: center;
}

.header-inner .logo a {
    display: block;
}

.header-inner .logo img {
    width: calc(169px / 1.8);
    height: calc(29px / 1.8);
}

.header .main-nav__list {
    display: flex;
}

.header .main-nav__item {
    display: none;
}

.header .signin__item {
    margin-right: 48px;
    margin-left: auto;
}

.header .signin__btn {
    width: 124px;
    height: 44px;
    padding: 0 0 0 24px;
    background: linear-gradient(90deg, #f63 10%, #f99d24 40%, #f99d24 70%, #f63 90%);
    background-size: 200% auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    transition: .4s cubic-bezier(.6, 0, .3, 1) 25ms;
}

.header .signin__btn:before {
    width: 20px;
    height: 20px;
    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: 2px;
    left: 20px;
}

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

グローバルナビ

------------------------*/
.menu-wrap {
    width: 44px;
    height: 44px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
}

.menu-wrap:hover {
    cursor: pointer;
}

.toggle-menu {
    width: 24px;
    height: 16px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
}

.menu__line {
    width: 100%;
    height: 2px;
    background: var(--nav-color);
    position: absolute;
    display: block;
    transition: transform .3s;
}

.menu__line--center {
    top: 7px;
}

.menu__line--bottom {
    bottom: 0;
}

.menu__line--top.active {
    top: 7px;
    transform: rotate(45deg);
}

.menu__line--center.active {
    transform: scaleX(0);
}

.menu__line--bottom.active {
    bottom: 7px;
    transform: rotate(135deg);
}

.gnav {
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 98;
}

.gnav-inner {
    height: 100%;
    max-height: 100%;
    overflow: visible;
    overflow-y: auto;
}

.gnav-contents {
    width: 100%;
    padding: 54px 0;
}

.gnav .main-nav__list:last-child:after {
    display: none;
}

.gnav .main-nav__list {
    width: calc(100% - 24vw);
    margin: auto;
}

.gnav .main-nav__list .main-nav__item {
    cursor: pointer;
    display: block;
    font-size: 14px;
    color: var(--nav-color);
}

.gnav .main-nav__list .main-nav__item .main-nav__link {
    display: block;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

.gnav .main-nav__list .main-nav__item .main-nav__link span {
    margin-right: 16px;
    font-family: "Quicksand", "游ゴシック Medium", "YuGothic,YuGothicM", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #f63;
}

.gnav .main-nav__list.second-list {
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
}

.gnav .main-nav__list.second-list .main-nav__item {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 12px;
}

.gnav .main-nav__list.second-list .main-nav__item .main-nav__link {
    padding: 13px 0;
    color: #787878;
}

.gnav .signin__item {
    margin-top: 8px;
}

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

.gnav .signin__btn:before {
    width: 24px;
    height: 24px;
    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");
    position: absolute;
    top: 0;
    bottom: 1px;
    left: 40px;
}

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

inner mv

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

.mv:after {
    width: 100%;
    height: 16vh;
    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;
    justify-content: center;
    align-items: center;
}

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

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

main-contents

------------------------*/
.main-contents {
    padding-top: 44px;
}

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

共通コンテンツ

------------------------*/
.section-wrap {
    padding: 8vw 0;
    background-color: #fff;
}

.section-wrap__inner {
    padding: 8vw 4vw;
}

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

footer

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

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

.footer .footer-top .main-nav__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer .footer-top .main-nav__list .logo {
    margin-bottom: 40px;
}

.footer .footer-top .main-nav__list .main-nav__item,
.footer .footer-top .main-nav__list .signin__item {
    width: 100%;
}

.footer .footer-top .main-nav__list .main-nav__link {
    width: 100%;
    padding: 16px;
    border-bottom: 1px solid var(--footer-color);
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--nav-color);
}

.footer .footer-top .main-nav__list .main-nav__link:before {
    width: 24px;
    height: 24px;
    margin: auto;
    content: "";
    opacity: .5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23747886' d='M10.6 15.8l-.7-.7 3.2-3.2-3.2-3.2.7-.7 3.9 3.9z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 32px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
}

.footer .signin__item {
    margin-top: 32px;
}

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

.footer .signin__item .signin__btn:before {
    width: 24px;
    height: 24px;
    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");
    position: absolute;
    top: 0;
    bottom: 1px;
    left: 40px;
}

.footer .footer-middle {
    width: calc(100% - 48px);
    margin: 40px auto;
}

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

.footer .footer-middle .main-nav__list {
    display: flex;
    flex-wrap: wrap;
}

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

.footer .footer-middle .main-nav__list .main-nav__link {
    width: 100%;
    padding: 16px 0;
    display: block;
    color: var(--nav-color);
}

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

.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: 48px;
    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: 20px;
}

.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: 40px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    position: relative;
    font-family: "Quicksand", "游ゴシック Medium", "YuGothic,YuGothicM", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 16px;
    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%);
}