@charset "UTF-8";
/* CSS Document */

/*===================================
    Common
===================================*/

html, body {
    height: 100%;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    /* font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif; */
    font-size: 14px;
	color: #fff;
	line-height: 1.8em;
	position: relative;
    background-color: #000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}
/*body {
  min-width: 1040px;
}
@media screen and (max-width: 750px){
  body {
    min-width: initial;
  }
}*/
@media only screen and ( max-width : 736px ) {
    body {
        font-size: 14px;
    }
}
@media only screen and ( min-width : 737px ) {
  a[href^="tel:"]{
    pointer-events: none;
  }
}

/*-----------------------------------
    tools
-----------------------------------*/

.mb5 { margin-bottom: 5px;}
.mb10 { margin-bottom: 10px;}
.mb15 { margin-bottom: 15px;}
.mb20 { margin-bottom: 20px;}
.mb30 { margin-bottom: 30px;}
.mb40 { margin-bottom: 40px;}
.mb50 { margin-bottom: 50px;}
.mb60 { margin-bottom: 60px;}
.mb70 { margin-bottom: 70px;}
.mb80 { margin-bottom: 80px;}
.mb90 { margin-bottom: 90px;}
.mb100 { margin-bottom: 100px;}
.mt5 { margin-top: 5px;}
.mt10 { margin-top: 10px;}
.mt15 { margin-top: 15px;}
.mt20 { margin-top: 20px;}
.mt30 { margin-top: 30px;}
.mt40 { margin-top: 40px;}
.mt50 { margin-top: 50px;}
.mt60 { margin-top: 60px;}
.mt70 { margin-top: 70px;}
.mt80 { margin-top: 80px;}
.mt90 { margin-top: 90px;}
.mt100 { margin-top: 100px;}
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}
a {
    text-decoration: none;
	color: #fff;
	transition: all 0.3s ease;
    word-break: break-all;
}
a:hover {
    text-decoration: none;
	opacity: 0.5;
}
a.underline {
    border-bottom: 1px solid #999;
	padding-bottom: 2px;
	transition: all 0.3s ease;
}
a.underline:hover {
    border-bottom: none;
}
a.anchor_about {
    display: block;
    /* padding-top: 50px;
    margin-top: -50px; */
}
a.anchor {
    display: block;
    padding-top: 150px;
    margin-top: -150px;
}
.txt_r {
    text-align: right;
}
.txt_c {
    text-align: center;
}
.list_disc {
    margin-left: 1.5em;
    padding: 0;
	list-style-type: disc;
}
.list_decimal {
    margin-left: 1.5em;
    padding: 0;
	list-style-type: decimal;
}
.br_pc_non {
	display: none;
}
.br_sp_non {
	display: block;
}
@media only screen and ( max-width : 736px ) {
    a.anchor {
        padding-top: 100px;
        margin-top: -100px;
    }
    
    .br_pc_non {
        display: block;
    }
    .br_sp_non {
        display: none;
    }
}

/*-----------------------------------
    inview
-----------------------------------*/

.inview_main_img {
    opacity: 0;
	transform: translate(0,50px);
    filter: blur(20px);
	transition: 1s;
}
.fade_main_img {
    opacity: 1;
	transform: translate(0,0);
    filter: blur(0);
	transition-delay: 0.8s;
}

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

.inview_main_txt_01, .inview_main_txt_02, .inview_main_txt_03 {
    opacity: 0;
	transform: translate(0,50px);
    filter: blur(20px);
	transition: 1s;
}
.fade_main_txt_01 {
    opacity: 1;
	transform: translate(0,0);
    filter: blur(0);
	transition-delay: 1.5s;
}
.fade_main_txt_02 {
    opacity: 1;
	transform: translate(0,0);
    filter: blur(0);
	transition-delay: 2s;
}
.fade_main_txt_03 {
    opacity: 1;
	transform: translate(0,0);
    filter: blur(0);
	transition-delay: 2.5s;
}

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

.inview_01, .inview_02, .inview_03 {
    opacity: 0;
	transform: translate(0,50px);
    /* filter: blur(20px); */
	transition: 1s;
}
.fade_in_01 {
	opacity: 1;
	transform: translate(0,0); 
    /* filter: blur(0); */
	transition-delay: 0.5s;
}
.fade_in_02 {
	opacity: 1;
	transform: translate(0,0); 
    /* filter: blur(0); */
	transition-delay: 0.8s;
}
.fade_in_03 {
	opacity: 1;
	transform: translate(0,0); 
    /* filter: blur(0); */
	transition-delay: 1.1s;
}

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

.inview_home_master_img {
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translateY(-20%) translateX(-50%);
	transition: 1s;
}
.fade_home_master_img {
    opacity: 1;
    transform: translateY(-40%) translateX(-50%);
	transition-delay: 1.3s;
}
.inview_home_brand_txt {
    opacity: 0;
	transform: translate(0,0);
    filter: blur(100px);
	transition: 1s;
}
.fade_home_brand_txt {
    opacity: 1;
	transform: translate(0,0);
    filter: blur(0);
	transition-delay: 0.5s;
}

/*===================================
    Home
===================================*/

/*-----------------------------------
    Header
-----------------------------------*/

header {
    position: absolute;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10000;
}
header.scroll {
	position: fixed;
	top: 0;
	left: 0;
    background-color: rgba(20, 20, 20, .9);
}
.margin_top {
    margin-top: 100px;
}
.logo {
    margin: 20px 0 20px 20px;
}

@media only screen and ( max-width : 736px ) {
    .logo {
        margin: 10px 0 10px 10px;
    }
    .logo img {
        width: 50px;
    }
}

/*-----------------------------------
    Main
-----------------------------------*/

.main_wrapp {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
@supports (-webkit-touch-callout: none) {
    .main_wrapp {
        height: -webkit-fill-available;
    }
}
.main_txt_wrapp {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 7%;
    z-index: 2000;
}
.main_txt_01 {
    font-family: 'EB Garamond', serif;
    font-size: 6vw;
    font-weight: 400;
    line-height: 1em;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}
.main_txt_02 {
    font-family: 'EB Garamond', serif;
    font-size: 1.8vw;
    font-weight: 400;
    line-height: 1em;
    letter-spacing: 0.03em;
    margin-bottom: 40px;
}
.main_txt_03 {
    font-size: 2vw;
    font-weight: normal;
    line-height: 1.6em;
    letter-spacing: 0.03em;
}

/*----- Slick -----*/

/* .slick_01 {
    position: relative;
    z-index: 1000;
}
.slick_01 div {
    width: 100%;
    height: 100vh;
} */
.slick_01 li {
    width: 100%;
    height: 100vh;
}
.slick_01 li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@supports (-webkit-touch-callout: none) {
    .slick_01 li img {
        height: -webkit-fill-available;
    }
}

@media only screen and ( max-width : 736px ) {
    .main_txt_wrapp {
        margin-left: 5%;
    }
    .main_txt_01 {
        font-size: 9vw;
        margin-bottom: 10px;
    }
    .main_txt_02 {
        font-size: 4vw;
        margin-bottom: 20px;
    }
    .main_txt_03 {
        font-size: 5vw;
    }

    /* .main_txt_wrapp p {
        font-size: 9vw;
    }
    .main_txt_wrapp h2 {
        font-size: 5vw;
    } */
}

/*-----------------------------------
    About
-----------------------------------*/

.about_wrapp {
    width: 1200px;
    margin: 150px auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.about_img {
    margin-top: 200px;
}
.about_txt_wrapp {
    width: 510px;
}
.h3_01 {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 80px;
}
.h3_01 span {
    font-size: 16px;
    position: relative;
    top: -3px;
}
.h3_01 span::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: #fff;
    vertical-align: middle;
    margin: -2px 10px 0 10px;
}
.h3_02 {
    font-size: 50px;
    line-height: 1.2em;
    margin-bottom: 30px;
}

@media only screen and ( max-width : 736px ) {
    .about_wrapp {
        width: 90%;
        margin: 80px auto;
        display: block;
    }
    .about_img {
        margin-top: 40px;
    }
    .about_img img {
        width: 100%;
    }
    .about_txt_wrapp {
        width: 100%;
    }
    .h3_01 {
        font-size: 20px;
        margin-bottom: 40px;
    }
    .h3_02 {
        font-size: 25px;
        line-height: 1.3em;
        margin-bottom: 20px;
    }
}

/*-----------------------------------
    Phirosophy
-----------------------------------*/

.philosophy_wrapp {
    width: 1200px;
    margin: 0 auto 150px;
    display: flex;
    justify-content: space-between;
}
.philosophy_img {
    margin-top: 270px;
}
.philosophy_txt_wrapp {
    width: 510px;
}

@media only screen and ( max-width : 736px ) {
    .philosophy_wrapp {
        width: 90%;
        margin: 0 auto 80px;
        display: block;
    }
    .philosophy_img img {
        width: 100%;
    }
    .philosophy_img {
        margin-top: 40px;
    }
    .philosophy_txt_wrapp {
        width: 100%;
    }
}

/*-----------------------------------
    Flow
-----------------------------------*/

.flow_wrapp {
    width: 1200px;
    margin: 0 auto 150px;
}
.flow_inner {
    width: 900px;
    margin: 50px auto 0;
}
.flow_box {
    background-color: #1f1f1f;
    padding: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.flow_number {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    width: 80px;
    height: 80px;
    background-color: #323232;
    font-size: 40px;
    font-weight: 400;
    border-radius: 50%;
    text-align: center;
    padding-top: 25px;
    box-sizing: border-box;
}
.flow_box_inner {
    margin-left: 20px;
}
.flow_box_inner h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

@media only screen and ( max-width : 736px ) {
    .flow_wrapp {
        width: 90%;
        margin: 0 auto 80px;
    }
    .flow_inner {
        width: 100%;
        margin: 40px auto 0;
    }
    .flow_number {
        width: 50px;
        height: 50px;
        font-size: 30px;
        text-align: center;
        padding-top: 12px;
    }
    .flow_box_inner {
        width: calc(100% - 70px);
    }
    .flow_box_inner h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }
}

/*-----------------------------------
    Rules
-----------------------------------*/

.rules_wrapp {
    width: 1200px;
    margin: 0 auto 150px;
    display: flex;
}
.rules_left {
    margin-right: 130px;
}
.rules_right h4 {
    font-size: 24px;
    margin-bottom: 10px;
}
.rules_right p {
    margin-bottom: 30px;
}
.rules_right p:last-child {
    margin-bottom: 0;
}

@media only screen and ( max-width : 736px ) {
    .rules_wrapp {
        width: 90%;
        margin: 0 auto 80px;
        display: block;
    }
    .rules_left {
        margin: 0 0 30px 0;
    }
    .rules_right h4 {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .rules_right p {
        margin-bottom: 25px;
    }
}

/*-----------------------------------
    Cases
-----------------------------------*/

.cases_wrapp {
    margin-bottom: 150px;
}
.cases_inner_01 {
    width: 1200px;
    margin: 0 auto 50px;
}
.cases_slide {
    margin-bottom: 60px;
}
.cases_slide div {
    margin: 0 15px;
}
.cases_inner_02 {
    width: 1200px;
    margin: 0 auto;
}
.cases_inner_02 h4 {
    font-size: 18px;
    margin: 30px 0 15px;
}

@media only screen and ( max-width : 736px ) {
    .cases_wrapp {
        margin-bottom: 80px;
    }
    .cases_inner_01 {
        width: 90%;
        margin: 0 auto 40px;
    }
    .cases_slide {
        margin-bottom: 40px;
    }
    .cases_slide div {
        margin: 0 5px;
    }
    .cases_slide div img {
        width: 200px;
    }
    .cases_inner_02 {
        width: 90%;
    }
    .cases_inner_02 h4 {
        margin: 30px 0 10px;
    }
}

/*-----------------------------------
    Company History
-----------------------------------*/

.company_history_wrapp {
    background-color: #1f1f1f;
    margin-bottom: 150px;
}
.company_history_inner {
    width: 1200px;
    margin: 0 auto;
    padding: 150px 0;
}
.company_wrapp {
    display: flex;
    margin-bottom: 150px;
}
.history_wrapp {
    display: flex;
}
.company_history_l {
    width: 25%;
}
.company_history_r {
    width: 75%;
}
.dl_01 {
    border-top: 1px solid #323232;
    margin-bottom: 10px;
}
.dl_01 dt {
    float: left;
    width: 6em;
	padding: 15px 0;
}
.dl_01 dd {
	padding: 15px 0 15px 7em;
    border-bottom: 1px solid #323232;
}

@media only screen and ( max-width : 736px ) {
    .company_history_wrapp {
        margin-bottom: 80px;
    }
    .company_history_inner {
        width: 90%;
        padding: 80px 0;
    }
    .company_wrapp {
        display: block;
        margin-bottom: 80px;
    }
    .history_wrapp {
        display: block;
    }
    .company_history_l {
        width: 100%;
    }
    .company_history_r {
        width: 100%;
    }
    .dl_01 {
        border-top: 1px solid #323232;
        margin-bottom: 10px;
    }
    .dl_01 dt {
        float: left;
        width: 6em;
        padding: 15px 0;
    }
    .dl_01 dd {
        padding: 15px 0 15px 7em;
        border-bottom: 1px solid #323232;
    }
}

/*-----------------------------------
    Support
-----------------------------------*/

.support_wrapp {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 150px;
}
.support_img {
    margin-top: 270px;
}
.support_txt_wrapp {
    width: 510px;
}
.h3_02 span {
    letter-spacing: -0.15em;
}

@media only screen and ( max-width : 736px ) {
    .support_wrapp {
        width: 90%;
        display: block;
        margin-bottom: 80px;
    }
    .support_img {
        margin-top: 40px;
    }
    .support_img img {
        width: 100%;
    }
    .support_txt_wrapp {
        width: 100%;
    }
}

/*-----------------------------------
    Contact
-----------------------------------*/

.contact_bnr_wrapp {
    width: 1200px;
    height: 520px;
    margin: 0 auto 150px;
    overflow: hidden;
    position: relative;
}
.contact_bnr_wrapp a {
    display: block;
    height: 100%;
}
.contact_bnr_wrapp a:hover {
    opacity: 1;
}
.contact_bnr_txt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
    margin-left: 100px;
}
.contact_bnr_txt h3 {
    font-family: 'EB Garamond', serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1em;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.contact_bnr_txt p {
    font-size: 20px;
}
/* .contact_bnr_arrow {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    z-index: 200;
} */
.yazirusi {
    display: flex;
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    z-index: 200;
} 
.yazirusi::after {
    content: "";
    width: 200px;
    height: 15px;
    border-bottom: solid 1px;
    border-right: solid 1px;
    transform: skew(45deg);
}  
.contact_bnr_wrapp a .contact_bnr_bg {
	transition: all 0.5s ease;
    position: relative;
    z-index: 100;
}
.contact_bnr_wrapp a:hover .contact_bnr_bg {
    transform: scale(1.1);
}

@media only screen and ( max-width : 736px ) {
    .contact_bnr_wrapp {
        width: 90%;
        height: auto;
        margin: 0 auto 80px;
        overflow: hidden;
    }
    .contact_bnr_txt {
        margin-left: 20px;
    }
    .contact_bnr_txt h3 {
        font-size: 30px;
        letter-spacing: 0.02em;
        margin-bottom: 5px;
    }
    .contact_bnr_txt p {
        font-size: 14px;
    }
    /* .contact_bnr_arrow {
        right: 20px;
    }
    .contact_bnr_arrow img {
        width: 80px;
    } */
    .yazirusi {
        right: 20px;
    } 
    .yazirusi::after {
        width: 70px;
        height: 10px;
    } 
    .contact_bnr_bg {
        width: 100%;
        object-fit: cover;
    }
}

/*-----------------------------------
    Footer
-----------------------------------*/

footer {
    font-family: 'EB Garamond', serif;
    font-weight: 400;
}
.group_bnr_wrapp {
    background-color: #1f1f1f;
    padding: 40px 0;
}
.group_bnr_inner {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    font-size: 24px;
}
.group_bnr_inner a:hover {
    opacity: 1;
}
.group_bnr_nagisa {
    width: calc(33.33% - 15px);
    position: relative;
    overflow: hidden;
}
.group_bnr_nagisa h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 200;
}
.group_bnr_nagisa h2.uc {
    color: #999;
}
.group_bnr_nagisa a {
    display: block;
}
.group_bnr_nagisa img {
    width: 100%;
	transition: all 0.5s ease;
    position: relative;
    z-index: 100;
}
.group_bnr_nagisa a:hover img {
    transform: scale(1.1);
}

.ftr_wrapp {
    padding: 20px;
    display: flex;
    justify-content: space-between;
}
.copyright {
    color: #4f4f4f;
}

@media only screen and ( max-width : 736px ) {
    .group_bnr_wrapp {
        padding: 20px 0;
    }
    .group_bnr_inner {
        width: 90%;
        display: block;
    }
    .group_bnr_nagisa {
        width: 100%;
        height: 150px;
        overflow: hidden;
        margin-bottom: 20px;
    }
    .group_bnr_nagisa:last-child {
        margin-bottom: 0;
    }
    .group_bnr_nagisa a img {
        object-fit: cover;
    }
    
    .ftr_wrapp {
        padding: 10px 20px;
    }
}

/*===================================
    Contact
===================================*/

.title_wrapp {
    height: 520px;
    background: url(../images/img_title@2x.jpg) center no-repeat;
    background-size: cover;
    position: relative;
}
.title_wrapp h2 {
    font-family: 'EB Garamond', serif;
    font-weight: 400;
    font-size: 80px;
    line-height: 1em;
    letter-spacing: 0.05em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    text-align: center;
}
.contact_wrapp {
	width: 1000px;
	margin: 150px auto;
}
.form_top_txt {
	font-size: 12px;
    margin-bottom: 10px;
}
.required {
	color: #F00;
}
.table_form {
	width: 100%;
    border-top: 1px solid #323232;
    margin-bottom: 50px;
}
.table_form th {
	width: 20%;
    padding: 25px 0;
	vertical-align: middle;
	text-align: left;
    border-bottom: 1px solid #323232;
	box-sizing: border-box;
	font-weight: normal;
}
.table_form td {
	width: 80%;
    padding: 25px 0;
    border-bottom: 1px solid #323232;
	box-sizing: border-box;
}
.table_form input, .table_form textarea {
    color: #000;
}
.table_form input[type=text] {
    width: 300px;
    background-color: #fff;
    padding: 3px 10px;
	box-sizing: border-box;
}
/* .input_01 {
    width: 300px;
} */
.table_form textarea {
    background-color: #fff;
    padding: 3px 10px;
	resize: none;
	width: 600px;
	height: 200px;
	box-sizing: border-box;
}
.form_btm_txt {
    text-align: center;
    margin-bottom: 50px;
}
.btn_submit {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    width: 320px;
    height: 70px;
    display: block;
    margin: 0 auto;
    border: 1px solid #fff;
    box-sizing: border-box;
    text-align: center;
    line-height: 70px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    background: transparent;
}
.btn_submit:hover {
    opacity: 0.7;
}

@media only screen and ( max-width : 736px ) {
    .title_wrapp {
        height: 250px;
    }
    .title_wrapp h2 {
        font-size: 45px;
    }

    .contact_wrapp {
        width: 90%;
        margin: 80px auto;
    }
    .table_form {
        margin-bottom: 40px;
    }
    .table_form th {
        display: block;
        width: 100%;
        padding: 15px 0 10px;
        vertical-align: top;
        border-bottom: none;
        font-size: 16px;
    }
    .table_form td {
        display: block;
        width: 100%;
        padding: 0 0 20px;
    }
    .table_form input[type=checkbox], .table_form input[type=radio] {
        vertical-align: -1px;
    }
    .table_form input[type=text] {
        width: 100%;
    }
    .table_form textarea {
        width: 100%;
    }
    .how_other_txt {
        margin: 10px 0 10px;
    }
    .form_btm_txt {
        margin: 20px 0 30px;
    }
    .btn_submit {
        width: 100%;
    }
}

/*===================================
    Privacy Policy
===================================*/

.h3_03 {
    font-size: 20px;
    line-height: 1.4em;
    margin-bottom: 10px;
}
.privacy_txt_01 {
    margin-bottom: 30px;
}
.privacy_list_01 {
    margin: 5px 0 5px 1.5em;
    padding: 0;
	list-style-type: disc;
}

@media only screen and ( max-width : 736px ) {
    .h3_03 {
        font-size: 18px;
    }
    .privacy_txt_01 {
        margin-bottom: 20px;
    }
}