@charset "UTF-8";
/*
Theme Name: original-theme
Author:
Description: original-theme
version:1.0.0
*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

/*====================================================================
全ページ共通CSS
====================================================================*/
*, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   background-color: #fff;
   font-size: 18px;
   font-weight: 500;
   font-family: sans-serif;
}

@font-face {
    font-family: 'johnston100';
    src: url(../font/johnston100-subset.woff);
}

/*====================================================================
ヘッダー
====================================================================*/


/*====================================================================
フッター
====================================================================*/



body .body_bg {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
    filter: brightness(60.8%);
}

/*====================================================================
top-page
====================================================================*/
.top_hero {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.top_hero .top_hero-title {
    padding-left: 10%;
    width: 62%;
}

.top_hero .top_hero-title h1 {
    font-size: 8.6vw;
    font-family: 'johnston100';
    font-weight: 500;
    letter-spacing: -.04em;
    text-align: center;
    color: #fff;
}

.top_hero .top_nav_area {
    position: relative;
    width: 38%;
}

.top_hero .top_nav_area::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    background-color: #fff;
    top: 0;
    left: 14%;
}

.top_hero .top_nav_area .top_nav .top_nav_ul {
    padding-left: 24%;
}

.top_hero .top_nav_area .top_nav .top_nav_ul li p a {
    font-size: 2.02vw;
    line-height: 1.618;
    font-weight: 500;
    color: #fff;
}

/*====================================================================
page-共通
====================================================================*/
.page-bg {
    background-color: #00000055;
    width: 80%;
    height: 90vh;

}