@charset "utf-8";












html {
  visibility: hidden;
}
html.wf-active {
  visibility: visible;
}
html {
	font: normal normal normal 62.5%/1 "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
    font-style: normal;
    font-weight: 300;
}
/*
.ie body {
  font-family:  'brandon-grotesque', 'source-han-sans-japanese','Noto Sans JP', 'メイリオ', 'Meiryo', sans-serif;
}
*/
body {
	margin: 0;
	padding: 0;
	background-color: #FFF;
	background-color: rgba(255, 255, 255, 1);
	position: relative;
	color: #000;
	color: rgba(0, 0, 0,1);
	text-rendering: optimizeLegibility;
	font-feature-settings : "palt" 1;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-kerning: normal;
			font-kerning: normal;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
    letter-spacing: 0.1em;
    
}
button,input, select, textarea {
  font-family : inherit;
  font-size   : 100%;
}
a {
	color:#000;
	text-decoration: none;
	-webkit-transition: all 0.4s cubic-bezier(.25, .46, .45, .94);
    -moz-transition: all 0.4s cubic-bezier(.25, .46, .45, .94);
    -o-transition: all 0.4s cubic-bezier(.25, .46, .45, .94);
    transition: all 0.4s cubic-bezier(.25, .46, .45, .94);
    
}

a:hover {
	-webkit-transition: all 0.4s cubic-bezier(.25, .46, .45, .94);
    -moz-transition: all 0.4s cubic-bezier(.25, .46, .45, .94);
    -o-transition: all 0.4s cubic-bezier(.25, .46, .45, .94);
    transition: all 0.4s cubic-bezier(.25, .46, .45, .94);
}
input,
select,
textarea,
button,
*:before,
*:after {
	-webkit-transition:  opacity 0.4s all cubic-bezier(.25, .46, .45, .94);
	        transition:  opacity 0.4s cubic-bezier(.25, .46, .45, .94);
	-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
}

a:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

img {
	width: 100%;
	vertical-align: bottom;
	-ms-interpolation-mode: bicubic;
		interpolation-mode: bicubic;
	-webkit-backface-visibility: hidden !Important;
}

.pc_off{
	display:none;
	}
.tab_on{
	display:none;
	}
.sp_off{
	display:block;
	}
.onon{
	display:block !important;
}

img.preload{
	display:none;
}
::-moz-selection
{
    background: #f4f7f7;
}
::selection
{
    background: #f4f7f7;
}

/* Safari */
::-moz-selection{
    background: #f4f7f7;
}

.en {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}
.ensb {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}
.enb {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}
.enh{font-family: 'Homemade Apple', cursive;}
.mincho{
    font-family: fot-tsukuaoldmin-pr6n, sans-serif;
    font-style: normal;
    font-weight: 300;
}

.all_wrap{
    position: relative;
    overflow:hidden;
    box-sizing:border-box;
}


.inview.bt{
    opacity:0;
    transform: translateY(60px);
    transition: all 1.5s ease;
    transition-delay: .2s;
}

.inview.bt.move{
     opacity:100;
    transform: translateY(0);
    transition: all 1.5s ease;
    transition-delay: .2s;
}

.load {
    width: 100%;
    height: 100vh;
    z-index:99999999;
    background:#fff;
    position:fixed;
    display: flex;
    align-items: center;
    justify-content: center; 

}
#mv{
    -ms-transform: scale(1.01);
    transform: scale(1.01);
    transition: transform 2s ease;
    /*
    background:#fff;
    */
    z-index:10;
}

#mv.on{
    -ms-transform: scale(1);
    transform: scale(1);    
    transition: transform 2s ease;
}
/* ==========================================================================
	メニュー
========================================================================== */
.menu_wrap{
    position: relative;
    z-index:500;
}
#header{
    position: absolute;
    width: 100%;
    height:auto;
    left: 0;
    right: 0;
    margin:auto;
    top:0;
}
#header h1{
    position:absolute;
    width: 110px;
    height: 141px;
    left: 4.86vw;
    top:40px;
}
#header h1 a{
    display: block;
}
#header h1 a:hover{
    opacity:.6;
}
#header .menu_list{
    position: absolute;
	-js-display: flex;
	display:-webkit-box;
	display: -webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
    justify-content: space-between;
	-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
			flex-wrap: wrap;
    width:630px;
    width: clamp(540px,42vw,650px);
    top:70px;
    left:calc(4.86vw + 110px + 5.55vw);
    z-index:15;
}


#header .menu_list a{
    position:relative;
    font-size: 15px;
    letter-spacing: 0.1em;
    color:#000;
}
#header .menu_list a:after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #222;
    bottom: -11px;
    transform: scale(0, 1);
    transform-origin: right top; 
    transition: transform 0.4s cubic-bezier(.25, .46, .45, .94); 
}
#header .menu_list a:hover::after {
    transform: scale(1, 1);     
    transform-origin: left top;
    transition: transform 0.4s cubic-bezier(.25, .46, .45, .94); 
}




#header .online{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 40px;
    right: 4.16vw;
    top: 60px;
    border:1px solid #222;
    /*
    background: rgba(255,255,255,0.1);
    */
    border-radius:20px;
    font-size: 16px;
    overflow: hidden;
    padding-bottom: 3px;
    padding-right: 15px;
    box-sizing: border-box;
}
#header .online:before{
    content:"";
    display: block;
    width: 10px;
    height: 9px;
    position: absolute;
    right: 30px;
    top: 16px;
    z-index:10;
    background:url(../image/common/online_ar.png);
    background-size:cover;
	transition:all .4s cubic-bezier(.25, .46, .45, .94);

}
#header .online:hover:before{
    background-image:url(../image/common/online_ar_af.png);
	transition:all .4s cubic-bezier(.25, .46, .45, .94);
}
#header .online:after {
	content: '';
	z-index: -1;
	bottom: 0;
	left: 0;
	width: 0;
	height:100%;
	background:#222;
	transition:all .4s cubic-bezier(.25, .46, .45, .94);
	opacity: 0;
    position: absolute;
}

#header .online:hover:after {
	width: 100%;
	opacity: 1;
	transition:all .4s cubic-bezier(.25, .46, .45, .94);;
}

#header .online:hover{
    color:#fff;
}
/*
.global-nav,
.hamburger{display:none;}
*/
.global-nav {
    display: block;
    position: fixed;    
    top: 0;
    width: 100%;
    /*
    height: 850px;
    top:-850px;
    */
    height: 100vh;
    right:-100vw;

    background-color:#fff;
    box-sizing: border-box;
    transition: all .6s;
    z-index: 9998;
    /*
    opacity: 0;
    visibility: hidden;
    */
    overflow-y: auto;
}

.hamburger {
    display: block;
    position: absolute;
    right: 4.16vw;
    top: 65px;
    width: 40px;
    height: 35px;
    cursor: pointer;
    z-index: 99999;
    visibility: hidden;
    opacity:0;
    transition: all .4s;
}
.hamburger_line {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    background-color: #333;
    transition: all .4s cubic-bezier(.25, .46, .45, .94);
}
.hamburger_line-2 {
    top: 10px;
    width: 25px;
    left:auto;
}
.hamburger:after{
    content:"menu";
    font-family: fot-tsukuaoldmin-pr6n, sans-serif;
    font-size: 16px;
    display: block;
    position: absolute;
    left: 0;
    bottom:0;
    width:100%;
    text-align: center;
    letter-spacing: 0.06em;
}





/* 表示された時用のCSS */
.nav-open .global-nav {
    /*
    visibility: inherit;
    opacity:100;
    */
    right:0;
}
.global-nav {
	-js-display: flex;
	display:-webkit-box;
	display: -webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
    justify-content: space-between;
	-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
			flex-wrap: wrap;
}
.global-nav .img_area {
    width: 26.38%;
    background:url(../image/common/menu_bg.jpg) center center;
    background-size:cover;
}
.global-nav .navi_area {
    width: 73.62%;
    padding:10px 0 0 7.98vw;
    box-sizing:border-box;

    display: flex;
    align-items: center;
    justify-content: center; 
}
.global-nav .navi_inr {
    width: 100%;
    
}
.global-nav a {
    display: block;
    margin-bottom: 43px;
}
.global-nav .mincho {
    position: relative;
    display:inline-block;
    font-size: 24px;
    padding-bottom: 11px;
    letter-spacing: 0.1em;
    box-sizing:border-box;

}
.global-nav .mincho:after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #222;
    bottom: 0;
    transform: scale(0, 1);
    transform-origin: right top; 
    transition: transform 0.4s cubic-bezier(.25, .46, .45, .94); 
}
.global-nav a:hover .mincho:hover::after {
    transform: scale(1, 1);     
    transform-origin: left top;
    transition: transform 0.4s cubic-bezier(.25, .46, .45, .94); 
}
.global-nav a:last-child{
    margin-bottom: 0;
    margin-top: 90px;
}
.global-nav a:last-child .mincho:before{
    content:"";
    display: block;
    width: 11px;
    height: 11px;
    position: absolute;
    left: 155px;
    top: 10px;
    background:url(../image/common/menu_online_ar.png);
    background-size:cover;
    
}
.global-nav .copy {
    display: block;
    position: absolute;
    right: 3.819vw;
    bottom: 60px;
    text-align:right;
    font-size: 11px;
    color:#bfc9c9;
}
/* 表示された時用のCSS */

.nav-open .hamburger { position:fixed; opacity: 100; visibility: visible;}

.nav-open .hamburger_line-1 {transform: rotate(-45deg);top:0px;}
.nav-open .hamburger_line-2 {width: 100%;transform: rotate(45deg);top:0px;bottom:auto;}
.nav-open .hamburger:after{content:"close";}
.global-nav {transition: all .4s cubic-bezier(.25, .46, .45, .94); ;}
    


/* 追従 */

.fixed .hamburger{
   position:fixed;
   opacity:100;
   transition: all .4s;
    visibility: visible;
}
   
@media screen and (max-width : 980px ){
    #header .online{display:none;}
}
@media screen and (max-width : 800px ){
    
    #header h1{
        width: 60px;
        left: 5.875vw;
        top:22px;
    }
    #header .menu_list{display:none;}

    .hamburger {
        right: 6vw;
        top: 44px;
        width: 31px;
        height:29px;
        visibility: inherit;
        opacity:100;
    }

    .hamburger_line-2 {
        top: 11px;
    }
    .hamburger:after{
        font-size: 12px;
    }

    .global-nav .img_area {
        width: 20.125%;
    }
    .global-nav .navi_area {
        width: 79.875%;
        padding:40px 0 0 11.75vw;
    }
    .global-nav a {
        display: block;
        margin-bottom: 35px;
    }
    .global-nav .mincho {
        font-size: 16px;
        padding-bottom: 10px;
    }
    .global-nav a:last-child{
        margin-bottom: 0;
        margin-top: 82px;
        font-size: 19px;
    }
    .global-nav a:last-child .mincho:before{
        width: 8px;
        height: 8px;
        left: 110px;
        top: 7px;

    }
    .global-nav .copy {
        display:none;
        right: 3.819vw;
        bottom: 30px;
        font-size: 11px;
    }

}

/* ==========================================================================
	hasei_main
========================================================================== */
.hasei_main {
    position: relative;
    z-index:300;
    padding-top: 260px;
}
.hasei_main h2 {
    font-size: 54px;
    text-align: center;
    letter-spacing: 0.15em;
}
.hasei_main h3 {
    font-size: 18px;
    color:#919f9f;
    text-align: center;
    margin:27px auto 110px;
    letter-spacing: 0.1em;
}
@media screen and (max-width : 800px ){
    .hasei_main {
        padding-top: 165px;
    }
    .hasei_main h2 {
        font-size: 32px;
    }
    .hasei_main h3 {
        font-size: 11px;
        margin:15px auto 65px;
    }


}


/* ==========================================================================
	
========================================================================== */
.con_inr{
    width:100%;
    max-width:1940px;
    margin:0 auto;
    padding-left:6.94vw;    
    padding-right:6.94vw;    
    box-sizing:border-box;
}

.area_tit{
    position: relative;    
    padding-left: 120px;
    box-sizing:border-box;
}

.area_tit:before{
    content:"";
    display: block;
    width: 90px;
    height: 1px;
    background:#222;
    position: absolute;
    left: 0;
    top: 8px;
}
.area_tit h2{
    position: relative;
    font-size: 16px;
}
.area_tit h2 span{
    position: relative;
     font-size: 16px;
    padding-left: 28px;
}
.area_tit .view_link{
     position: absolute; 
    right: 0;
    top:0;
    font-size: 14px;
    padding-right: 32px;
}
.area_tit .view_link::before{
    content:"";
    display: block;
    position: absolute;
    right: 0;
    top:5px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #222;
    border-right: 1px solid #222;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: right 0.4s cubic-bezier(.25, .46, .45, .94); 
}

.area_tit .view_link:hover:before{
    right: -3px;
    transition: right 0.4s cubic-bezier(.25, .46, .45, .94); 
}

@media screen and (min-width : 1940px ){
    .con_inr{
        padding-left:100px;    
        padding-right:100px;
    }
    
}
@media screen and (max-width : 800px ){

    .con_inr{
        padding-left:6vw;    
        padding-right:6vw;    
    }

    .con_inr.sppr{  
        padding-right:0;    
    }

    .area_tit{
        padding-left: 52px;
    }

    .area_tit:before{
        width: 37px;
        top: 6px;
    }
    .area_tit h2{
        font-size: 12px;
    }
    .area_tit h2 span{
         font-size: 12px;
        padding-left: 15px;
    }
    .sppr .area_tit .view_link{
         right: 6vw;   
    }
    .area_tit .view_link{
        font-size: 12px;
        padding-right: 18px;
    }
    .area_tit .view_link::before{
        top:4px;
        width: 3px;
        height: 3px;
    }
}


/* ==========================================================================
	foot_movie
========================================================================== */
.foot_movie {
    display: block;
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    z-index:50;
}
.foot_movie span {
    display: block;
    width: 119px;
    height: 119px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin:auto;
    border:1px solid #fff;
    border-radius:119px;
    z-index:10;
}

.foot_movie:before{
    content:"";
    display: block;
    width: 100%;
    height: 100%;
    z-index:1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin:auto;
    background:url(../image/common/movie_bg.jpg) center center;
    background-size:cover;
    transition: transform 0.6s cubic-bezier(.25, .46, .45, .94); 
}
.foot_movie:hover:before{ 
    transform: scale(1.05);
    transition: transform 0.6s cubic-bezier(.25, .46, .45, .94); 
}

@media screen and (max-width : 800px ){

    .foot_movie {height: 70vw;}    
    .foot_movie span {width: 64px;height: 64px;}
}


/* ==========================================================================
	footer
========================================================================== */


#footer {
    position: relative;
    padding:80px 0;
}
#footer h2 {
    display: block;
    width: 126px;
    margin:0 auto 80px;
}
#footer h2 a{
    display: block;
}
#footer .menu_list {
    position: relative;
	-js-display: flex;
	display:-webkit-box;
	display: -webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
    justify-content: space-between;
	-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
			flex-wrap: wrap;
    width: 696px;
    margin:0 auto;
}

#footer .menu_list a{
    position:relative;
    font-size: 14px;
    letter-spacing: 0.1em;
    color:#000;
}
#footer .menu_list a:first-child,
#footer .menu_list a:nth-child(3){
    padding-right: 5px;
}
#footer .menu_list a:after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #222;
    bottom: -11px;
    transform: scale(0, 1);
    transform-origin: right top; 
    transition: transform 0.4s cubic-bezier(.25, .46, .45, .94); 
}
#footer .menu_list a:hover::after {
    transform: scale(1, 1);     
    transform-origin: left top;
    transition: transform 0.4s cubic-bezier(.25, .46, .45, .94); 
}

#footer .menu_list a:hover{
    color:var(--base-link-color);
}
#footer .online{
    padding-right: 20px;
}
#footer .online:before{
    content:"";
    display: block;
    width: 10px;
    height: 9px;
    position: absolute;
    right: 0;
    top: 2px;
    z-index:10;
    background:url(../image/common/online_ar.png);
    background-size:cover;
}
#footer .top_link{
    display: block;
    position: absolute;
    bottom:0;
    right: 4.51vw;
    padding-bottom:80px;
    font-size: 13px;
    letter-spacing: 0.1em;
}
#footer .top_link:after{
    content:"";
    display: block;
    width: 1px;
    height: 60px;
    background:#2f2f2f;
    position: absolute;
    left: 0;
    right: 0;
    bottom:0;
    margin:auto;
	-webkit-transition: all 0.4s cubic-bezier(.25, .46, .45, .94);
    -moz-transition: all 0.4s cubic-bezier(.25, .46, .45, .94);
    -o-transition: all 0.4s cubic-bezier(.25, .46, .45, .94);
    transition: all 0.4s cubic-bezier(.25, .46, .45, .94);
}
#footer .top_link:hover{
    padding-bottom:90px;
}
#footer .top_link:hover:after{
    height:70px;
	-webkit-transition: all 0.4s cubic-bezier(.25, .46, .45, .94);
    -moz-transition: all 0.4s cubic-bezier(.25, .46, .45, .94);
    -o-transition: all 0.4s cubic-bezier(.25, .46, .45, .94);
    transition: all 0.4s cubic-bezier(.25, .46, .45, .94);
}


@media screen and (max-width : 900px ){
    
    #footer .top_link{right: 3vw;}
    
}
@media screen and (max-width : 800px ){
    
    #footer {
        padding:50px 0 38px;
        box-sizing:border-box;
    }
    #footer h2{
        width: 67px;
        margin-bottom: 40px;
    }
    #footer .menu_list {
        width: 85%;
    }

    #footer .menu_list a{
        font-size: 12px;
    }
}
@media screen and (max-width : 570px ){
    

    .footer_inr{
        position: relative;
        display: block;
        width: 80%;
        max-width: 500px;
        margin:0 auto;
    }
    #footer h2{
        width: 67px;
        position: absolute;
        left: 0;
        top: 0;

    }

    #footer .menu_list {
        width: 100%;
        padding-left:calc(67px + 13.43%);
        box-sizing:border-box;
    }

    #footer .menu_list a{
        display: block;
        width: 50%;
        font-size: 12px;
        margin-bottom: 16px;
    }
    #footer .menu_list a:first-child,
    #footer .menu_list a:nth-child(3){
        padding-right: 0;
    }

    #footer .menu_list a:after{display:none;}
    #footer .online{
        padding-right: 0;
    }
    #footer .online:before{
        width: 7px;
        height: 6px;
        top: 5px;
        left: 75px;
    }
    #footer .menu_list .online:after{
        display: block;
        transform: scale(1, 1);
        width: 84px;
        bottom:-7px;
    }
    #footer .top_link{
        right: 5vw;
        padding-bottom:43px;
        font-size: 10px;
        letter-spacing: 0.1em;
    }
    #footer .top_link:after{
        height: 32px;
    }
    #footer .top_link:hover{
        padding-bottom:53px;
    }
    #footer .top_link:hover:after{
        height:43px;
    }
}
/* ==========================================================================
	parts
========================================================================== */

.link_btn{
    position: relative;
    display: block;
    width: 500px;
    padding:26px 0 27px 38px;
    box-sizing:border-box;
    background:var(--base-text-color);
    color:#fff;
    font-size: 15px;
    border-radius:3px;    
    z-index:10;
}
.ab_link_btn{
    position: absolute;
    bottom:0;
    right:var(--rt-pd);
}
.link_btn:hover{
    background:var(--base-link-color);
}

.link_btn:before{
    content:'';
  position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    margin:auto;
    width: 50px;
    height: 1px;
    background:#fff;
    transition:all .3s var(--easeInOutCubic);
}
.link_btn:after{
    content: '';
    position: absolute;
    top: 31px;
    right: 30px;
    width: 10px;
    height: 1px;
    transform: rotate(35deg);
    background:#fff;
    transition:all .3s var(--easeInOutCubic);
}


.link_btn:hover:before{
    transform: translateX(8px);
    width: 58px;
}
.link_btn:hover:after{
    right: 22px;
}
.sub_tit{
    position: relative;
    display:inline-block;
    padding-left: 80px;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 45px;
}
.sub_tit:before{
    content:"";
    display: block;
    width: 50px;
    height: 1px;
    position: absolute;
    left: 0;
    top: 15px;
    background:#222;
}
.sub_tit .en{
    display:inline-block;
    font-size: 13px;
    margin-left: 22px;
    font-weight: 400;
    transform: translateY(-5px);
}
.s_tit{
    display: block;
    font-weight: 700;
    color:#ff7a59;
    font-size: 15px;
    margin-top: 25px;
    text-transform: uppercase;
}
.s_link{
    display: inline-block;
    padding-right: 50px;
}
.s_link p{
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color:#000;
    
}
.s_link:hover{
    color:#ff7a59;
}

.s_link span{
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius:50%;
    right: 0;
    top: -10px;
    background:#000;
    transition: background .3s ease, transform .3s ease;
}
.s_link:hover span{
     background:#ff7a59;
    transform: scale(1.1);
}
.s_link span:before{
    content:"";
    display: block;
    width: 10px;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin:auto;
    background:url(../image/common/s_link_icon.png);
    background-size:cover;
}
.fit_img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin:auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position:center center;
    background-size:cover;
    z-index:1;
    transition: transform ease .3s;
    font-family: 'object-fit: cover;'; /*IE対策*/
}

.img_area{z-index:10;}

.v_txt{
    writing-mode: vertical-rl;
    font-feature-settings: normal;
    vertical-align: top;
    display: inline-block;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -o-writing-mode: vertical-rl;
    writing-mode: vertical-rl;

    
}






@media screen and ( max-width: 800px ) {

    .oc,.oc2{
            pointer-events: all;
        }

    .pc_off{
        display:block;
        }
    .sp_off{
        display:none !important;
        }

    .link_btn{
        width: calc(100% - 12.125vw);
        padding:20px 0 22px 20px;
        font-size: 12px;
    }
    .ab_link_btn{
        position: absolute;
        bottom:0;
    }

    .link_btn:before{
        right: 35px;
        width: 27px;
    }
    .link_btn:after{
        top: 24px;
        right: 35px;
        width: 6px;
    }


    .link_btn:hover:before{
        transform: translateX(0)!Important;
        width: 27px!Important;
    }
    .link_btn:hover:after{
        right: 35px !Important;
    }

    .sub_tit{
        padding-left: 40px;
        font-size: 17px;
        margin-bottom: 23px;
    }
    .sub_tit:before{
        width: 26px;
        top: 8px;
    }
    .sub_tit .en{
        font-size: 10px;
        margin-left: 15px;
        transform: translateY(-3px);
    }
    
    .tit{
        font-size: 24px;
        font-size:clamp(22px,6.4vw,26px);
    }
    .s_tit{
        font-size: 14px;
        font-size:clamp(12px,3.7vw,16px);
        margin-top: 15px;
    }
    .s_link{
        padding-right:0;
        top: 0;
    }
    .s_link p{
        display: none;

    }
    .s_link:hover{
        color:#ff7a59;
    }

    .s_link span{
        top: -5px;
    }
    .sp_move_off{
        transform: translate(0) !important;
    }
}


.slick-slide{outline:none;}








	