@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700..900&family=Outfit:wght@100..900&display=swap');

.outfit{
    font-family: 'Outfit', sans-serif;
}
:root {
    --main: #3C45A5;
    --main-rgb: 60, 69, 165;
    --text: #131313;
    --ls: 0.05em;
}
/* 検証用
* {
	outline: 1px solid magenta;
}
*/
/*---------------------------------

  追加リセット

---------------------------------*/

html, body {
    min-width: 375px;
    min-height: 100vh;
}
html{
    scroll-behavior: smooth;
}
body{
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.8;
}
a{
    text-decoration: none;
}

ul{
    list-style: none;
}

img {
    max-width: 100%;
}

/*---------------------------------

  基本設定

---------------------------------*/

.inner{
    width: 90%;
    max-width: 1280px;
    margin: auto;
}
.pc{
    display: inline-block;
}
.sp{
    display: none;
}

@media screen and (max-width:767px) {
    .pc{
        display: none;
    }
    .sp{
        display: inline-block;
    } 
}

/* モーダル開時に背景のスクロールを防ぐ */
body:has(.overlay.open){
  overflow: hidden;
}
body:has(.overlay.open) main{
  overflow: auto;
  scrollbar-gutter: stable;
}

.flex{
    display: flex;
    flex-wrap: wrap;
}


/*---------------------------------

  共通

---------------------------------*/

.button{
    position: relative;
    display: block;
    width: 306px;
    height: 72px;
    padding: 20px 0 0 50px;
    background: linear-gradient(273.17deg, #FF3E9C 0%, #FF44D0 50%, #FF3E9C 100% );
    background-size: 200%;
    border-radius: 36px;
    box-shadow: 0 0 20px 0 #FC299066;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    transition: .5s;
}
.button::before{
    content: '';
    position: absolute;
    right: 14px;
    top: 12px;
    display: block;
    width: 48px;
    height: 48px;
    background: url(../images/common/ico_search.png) no-repeat;
    background-size: 48px;
}
.button:hover {
    background-position: right center; 
}

.title{
    display: block;
    padding: 30px 5% 0;
    width: fit-content;
    margin: auto;
    background: url(../images/common/ico_title.png) no-repeat top center;
    background-size: 24px;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .05em;
}
.title .en{
    display: block;
    color: #FFC4CC;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}




@media screen and (max-width:1024px){
    

}

@media screen and (max-width:767px){

    .title{
        font-size: 28px;
        line-height: 1.3;
    }
    .title .en{
        font-size: 15px;
    }
    
}

/*---------------------------------

  中身

---------------------------------*/

.main{
    margin: 109px 0 0;
}


@media screen and (max-width:1024px){
    
    
}

@media screen and (max-width:767px){

    .main{
        margin: 90px 0 0;
    }

    
}

/*---------------------------------

  ヘッダー

---------------------------------*/

.header{
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    height: 109px;
    padding: 15px 5% 0;
    background: #FFF;
    z-index: 150;
    
}
.header .logo{
    width: 296px;
}

.header .header_nav{
    padding: 14px 0;
}
.header .header_nav .flex{
    align-items: center;
}
.header .header_nav li a{
    display: block;
    height: 52px;
    padding: 12px 16px 0;
    font-size: 16px;
    font-weight: 800;
}
.header .header_nav li.signup_btn a{
    width: 120px;
    margin: 0 8px;
    background: #fff;
    border: 2px solid #FF3E9C;
    border-radius: 90px;
    color: #FF3E9C;
    font-size: 13px;
    text-align: center;
}
.login .header .header_nav li.signup_btn{
    display: none;
}
.header .header_nav li.login_btn a{
    min-width: 120px;
    background: #ECECEC;
    border: 2px solid #ECECEC;
    border-radius: 90px;
    font-size: 13px;
    text-align: center;
}
.header .header_nav li.login_btn a::before{
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 3px 0 0;
    background: url(../images/common/ico_login.png) no-repeat;
    background-size: 20px;
    vertical-align: -5px;
}
.login .header .header_nav li.login_btn a::before{
    content: '';
    display: none;
}

@media screen and (max-width:1200px){
    
    .header .header_nav{
        display: none;
    }
    
}

@media screen and (max-width:1024px){




}
@media screen and (max-width:767px){

    .header{
        height: 90px;
    }
    .header .logo{
        width: 227px;
    }
    
}

/*---------------------------------

  ハンバーガー周り

---------------------------------*/

.header_nav_sp{
    display: none;
}

.header .nav_trigger {
    display: none;
}

@media screen and (max-width:1200px){
    
    .header_nav_sp{
        display: block;
        position: fixed;
        top: 100px;
        right: -375px;
        width: 375px;
        max-height: calc(100% - 68px);
        background: #fff;
        border-radius: 0 0 0 30px;
        z-index: 100;
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
        overflow-y: scroll;
    }

    /* サイドメニューオープン */
    .side_open .header_nav_sp{
        -webkit-transform: translate3d(-375px, 0, 0);
        transform: translate3d(-375px, 0, 0);
    }

    .header_nav_sp > ul.nav_list{
        padding: 50px 20px 40px;
        background: #fff;
    }

    .header_nav_sp > ul.nav_list > li > a{
        display: block;
        width: 100%;
        padding: 15px 30px;

        color: var(--text);
        font-size: 16px;
        font-weight: 800;
        text-align: center;
    }

    .header_nav_sp > ul.nav_list > li.signup_btn > a{
        min-height: 72px;
        padding: 19px 30px 0;
        margin-top: 40px;
        background: #fff;
        border: 3px solid #FF3E9C;
        border-radius: 90px;
        color: #FF3E9C;
    }
    .login .header_nav_sp > ul.nav_list > li.signup_btn > a{
        display: none;
    }
    .header_nav_sp > ul.nav_list > li.login_btn > a{
        position: relative;
        min-height: 72px;
        margin-top: 15px;
        padding: 19px 30px 0;
        background: #ECECEC;
        border: 3px solid #ECECEC;
        border-radius: 90px;
    }
    .header_nav_sp > ul.nav_list > li.login_btn > a::before{
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        margin: 0 3px 0 0;
        background: url(../images/common/ico_login.png) no-repeat;
        background-size: 20px;
        vertical-align: -5px;
    }
    .login .header_nav_sp > ul.nav_list > li.login_btn > a::before{
        content: '';
        display: none;
    }
    .header .nav_trigger {
        position: fixed;
        right: 16px;
        top: 14px;
        display: block;
        width: 70px;
        height: 70px;
        background: #131313;
        border-radius: 50%;
        cursor: pointer;
        z-index: 150;
        transition: all .5s;
    }

    .header .nav_trigger span{
        position: absolute;
        top: 41px;
        right: 25px;
        display: block;
        width: 20px;
        height: 3px;
        background: rgba(255,255,255,1);
        border-radius: 2px;
        color: #73654F;
        font-size: 13px;
        letter-spacing: 0.01em;
        line-height: 28px;
        text-align: center;
        transition: all .5s;
    }
    .header .nav_trigger span::before,
    .header .nav_trigger span::after {
        position: absolute;
        display: block;    
        height: 3px;
        margin: auto;
        background: rgba(255,255,255,1);
        border-radius: 2px;
        transition: all .5s;
    }
    .header .nav_trigger span::before {
        content: '';
        top: -7px;
        width: 20px;
    }
    .header .nav_trigger span::after {
        content: '';
        top: -14px;
        width: 20px;
    }
    .nav_trigger.active{
        width: 70px;
        height: 70px;
    }
    .nav_trigger.active span::before {
        top: -5px;
        width: 20px;
        height: 3px;
        -webkit-transform: translateY(-3px) rotate(-45deg);
        transform: translateY(-3px) rotate(-45deg);
    }
    .nav_trigger.active span {
        background: rgba( 0, 0, 0, 0);
    }
    .nav_trigger.active span::after {
        width: 20px;
        height: 3px;
        -webkit-transform: translateY(6px) rotate(45deg);
        transform: translateY(6px) rotate(45deg);
    }
    
}

@media screen and (max-width:767px){

    .header_nav_sp{
        top: 90px;
    }
    .header .nav_trigger {
        width: 56px;
        height: 56px;
    }
    .header .nav_trigger span{
        top: 34px;
        right: 18px;
    }
    
}

/*---------------------------------

  aside

---------------------------------*/




/*---------------------------------

  フッダー

---------------------------------*/

.footer{
    position: sticky;
    top: 100vh;
    min-height: 117px;
    padding: 40px 0 16px;
    background: #39384D;
    color: #fff;
}
.footer .flex{
    gap: 20px 40px;
    justify-content: center;
}
.footer .flex li::after{
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 0 0 8px;
    background: url(../images/common/ico_arrow_01.png) no-repeat;
    background-size: 16px;
    vertical-align: -2px;
}

.footer .copy{
    display: block;
    width: 100%;
    margin: 14px 0 0;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    opacity: .2;
}

@media screen and (max-width:767px){

}

/*---------------------------------

  フォーム

---------------------------------*/



/*---------------------------------

  その他

---------------------------------*/



/* utility
--------------------------------------------------------------*/

.bg-black {
    background: #333;
}

.bg-gray {
    background: #8D8D8D;
}
.bg-green {
    background: #0C7947;
}
.ta-center {
    text-align: center;
}
.px12 {
    font-size: 12px;
}
.px18 {
    font-size: 18px;
}
.fw-light {
   font-weight: 300; 
}
.fw-bold {
   font-weight: 700; 
}
.fw-black {
   font-weight: 900; 
}
.mt10 {
    margin-top: 10px;
}
.mt50 {
    margin-top: 50px;
}
.mb10 {
    margin-bottom: 10px;
}
.mb50 {
    margin-bottom: 50px;
}
.mb80 {
    margin-bottom: 80px;
}
.mb100 {
    margin-bottom: 100px;
}
.ml10 {
    margin-left: 10px;
}
.mr10 {
    margin-right: 10px;
}
