@charset "utf-8";

/* common */
.sub {
}
.sub .ttl_box {
    text-align: center;
}
.sub .ttl_box h2 {
    font-family: '62570',sans-serif;
    font-size:42px;
    font-weight: 400;
    color:#333;
    line-height: 1.3;
}
.sub .ttl_box h2 strong {
    font-family: inherit;
    font-weight: 400;
}
.sub .ttl_box .sub {
    display: block;
    margin-bottom: 15px;
    font-size:24px;
    color:#333333;
    line-height: 1;
}
.sub .ttl_box .sub_ttl {
    margin-top: 25px;
    font-size:18px;
    font-weight: 500;
    color:#555555;
    line-height: 1.5;
}
.view_btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
.view_btm .move_btn {
    display: flex;
    align-items: center;
}
.view_btm .move_btn span {
    color:#222222;
}
.view_btm .prev_move span {
    margin-left: 20px;
}
.view_btm .next_move span {
    margin-right: 20px;
}
.view_btm .next_move img {
    transform:rotate(180deg);
}
.view_btm .list_btn {
    width:180px;
    font-size:18px;
    font-weight: 500;
    color:#ffffff;
    line-height: 60px;
    border-radius:30px;
    text-align: center;
    background-color:#d51a1a;
}
.banner_box {
    margin-top: 120px;
    border:1px solid #ef9191;
    background-color:#8e2727;
}
.banner_box a {
    display: flex;
    align-items: center;
    padding:25px 40px;
}
.banner_box strong {
    margin-top: 10px;
    margin-right: 70px;
    font-family: '62570', sans-serif;
    font-size:24px;
    font-weight: 400;
    color:#fff;
    line-height: 1.41;
}
.banner_box i {
    margin-right: 10px;
}
.banner_box .more_link {
    padding-right: 44px;
    margin-left: auto;
    font-size:18px;
    font-weight: 700;
    color:#ffffff;
    background:url('../img/common/ico_arrow_right.png') right center no-repeat;
    white-space: nowrap;
}
.scroll_down {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position:absolute;
    bottom:80px;
    left:50%;
    transform: translateX(-50%);
    z-index: 10;
}
.scroll_down p {
    margin-bottom: 10px;
    font-size:12px;
    color:#eeeeee;
}
.scroll_down.bk_ver p {
    color:#555555;
} 
.scroll_down i {
    font-size:0;
    animation: slide-bottom 1.5s ease-out infinite both;
}
@keyframes slide-bottom {
    0% {
       transform: translateY(0);
    }
    100% {
       transform: translateY(10px);
    }
}

/* menu */
.menu .best {
    position:relative;
    height:100vh;
    padding-top: 160px;
    background:url('../img/sub/menu_best_bg.jpg') no-repeat center / cover;
    box-sizing:border-box;
}
.menu .best h2 {
    color:#fff;
}
.menu .best h2 strong {
    font-size: 44px;
    color:#e61c1c;
}
.menu .best .ttl_box {
    margin-bottom: 120px;
}
.menu .best .tab_box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
}
.menu .best .tab_box button {
    width:180px;
    height:60px;
    font-family: '62570', sans-serif;
    font-size:18px;
    font-weight: 500;
    color:#999999;
    border-radius:30px;
    border:1px solid #cccccc;
    transition:.3s;
}
.menu .best .tab_box button.active,
.menu .best .tab_box button:hover {
    color:#fff;
    border-color:#d51a1a;
    background-color:#d51a1a;
}
.menu .best .tab_box button + button {
    margin-left: 10px;
}
.menu .best .txt_box {
    transform: translateY(50px);
    opacity:0;
    transition: .7s;
}
.menu .best .slide_wrap {
    display: none;
}
.menu .best .slide_wrap.active {
    display: block;
}
.menu .best .slick-list {
    animation: slide-ani .8s ease-out both;
}
@keyframes slide-ani {
    0% {
        opacity:0;
        transform: translateY(50px);
    }
    100% {
        opacity:1;
        transform: translateY(0px);
    }
}
.menu .best .slick-active .txt_box {
    opacity:1;
    transform: translateY(0);
}
.menu .best .txt_box .name {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.menu .best .txt_box .name * {
    font-family: '62570',sans-serif;
    font-weight: 400;
    font-size:32px;
}
.menu .best .txt_box .name .rank {
    font-size:32px;
    color:#e61c1c;
}
.menu .best .txt_box .name span {
    margin-left: 10px;
    color:#fff;
}
.menu .best .txt_box .name_info {
    font-size:20px;
    color:#ffffff;
    line-height: 1.33;
}
.menu .best .img_box {
    margin-left: -50px;
    opacity:0;
    transform: translateY(50px);
    transition: .7s;
}
.menu .best .slick-active .img_box {
    opacity:1;
    transform: translateY(0);
}
.menu .best .slide_box .box_wrap {
    display: flex;
    justify-content: space-between;
}
.menu .best .slick-arrow {
    position:absolute;
    top:50%;
    width:25px;
    height:40px;
    font-size:0;
    background:url('../img/common/btn_slide.png') no-repeat center / cover;
    z-index: 9;
}
.menu .best .slick-arrow.slick-prev {
    left:-65px;
    transform: translateY(-50%);
}
.menu .best .slick-arrow.slick-next {
    right:-65px;
    transform: translateY(-50%) rotate(180deg);
}
.menu .menu_list {
    padding:160px 0;
}
.menu .menu_list .tab_box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin:30px 0 80px;
}
.menu .menu_list .tab_box button {
    width:180px;
    height:60px;
    font-size:18px;
    font-weight: 500;
    color:#999999;
    border-radius:30px;
    border:1px solid #cccccc;
    transition:.3s;
}
.menu .menu_list .tab_box button.active,
.menu .menu_list .tab_box button:hover {
    color:#fff;
    border-color:#d51a1a;
    background-color:#d51a1a;
}
.menu .menu_list .tab_box button + button {
    margin-left: 10px;
}
.menu .menu_list .list_box {
    display: none;
    flex-wrap: wrap;
    align-items: flex-start;
    opacity:0;
    transform:translateY(40px);
    transition:.6s;
}
.menu .menu_list .list_box.active {
    display: flex;
    opacity:1;
    transform:translateY(0);
}
.menu .menu_list .list_box .menu_box {
    position:relative;
    width:calc(50% - 20px);
    margin-right: 40px;
    margin-bottom: 40px;
    overflow:hidden;
}
.menu .menu_list .list_box .menu_box:nth-of-type(2n+0) {
    margin-right: 0;
}
.menu .menu_list .list_box .season_menu:before {
    content:'';
    display:block;
    position:absolute;
    top:0;
    left:0;
    border-top: 175px solid rgba(216,26,26,.8);
    border-right: 184px solid transparent;
}
.menu .menu_list .list_box .season_menu:after {
    content:'계절메뉴';
    display:block;
    position:absolute;
    top:40px;
    left:18px;
    font-family: 'MuseumClassic', serif;
    font-size:24px;
    color:#fff;
}
.menu .menu_list .menu_box .img_box {
    width:100%;
}
.menu .menu_list .menu_box .img_box span {
    display: block;
    width:100%;
    padding-top: 75%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.menu .menu_list .menu_box .txt_box {
    height:165px;
    padding:30px 10px 55px;
    border:1px solid #dddddd;
    border-top: none;
    background-color:#f1f1f1;
    box-sizing:border-box;
    text-align: center;
}
.menu .menu_list .menu_box .txt_box .name {
    display: block;
    margin-bottom: 10px;
    font-family: '62570', sans-serif;
    font-size:24px;
    font-weight: 400;
    color:#333333;
    line-height: 1;
}
.menu .menu_list .menu_box .txt_box .name_info {
    color:#555555;
    line-height: 1.5;
}

/* store */
.store {
    padding:160px 0;
}
.store .list_box a:hover .txt_box {
    border-color:#d51a1a;
} 
.store .list_box .txt_box .store_name {
    padding-left: 38px;
    font-size: 24px;
    font-weight: 700;
    color:#333333;
    background-image:url('../img/common/ico_plate_bk.png');
    background-repeat: no-repeat;
    background-position: left center;
    transition:.3s;
}
.store .list_box .txt_box .store_info {
    margin:40px 0 35px;
}
.store .list_box .txt_box dl {
    display: flex;
    align-items: flex-start;
}
.store .list_box .txt_box dl + dl {
    margin-top: 30px;
}
.store .list_box .txt_box dl dt {
    flex:0 0 auto;
    width:113px;
    font-size:18px;
    font-weight: 500;
    color:#333333;
    line-height: 1.33;
}
.store .list_box .txt_box dl dd {
    font-size:18px;
    color:#999999;
    line-height: 1.33;
}
.store .list_box .txt_box dl dd b {
    font-weight: 400;
    color:#555555;
}
.store .list_box .txt_box .store_service {
    display: flex;
    align-items: flex-start;
}
.store .list_box .txt_box .service_box {
    margin-right: 20px;
    text-align: center;
}
.store .list_box .txt_box .service_box .ico {
    font-size: 0;
}
.store .list_box .txt_box .service_box p {
    margin-top: 10px;
    font-weight: 500;
    color:#333333;
    line-height: 1;
    text-align: center;
}
.store .list_box .txt_box .delivery_list {
    display: flex;
    align-items: center;
    margin-top: 50px;
}
.store .list_box .txt_box .delivery_box + .delivery_box {
    margin-left: 20px;
}
/* store_list */
.store_list .ttl_box {
    margin-bottom: 80px;
}
.store_list .filter_box {
    display: flex;
    align-items: center;
}
.store_list .filter_box .filter_wrap {
    width:calc(20% - 16px);
}
.store_list .filter_box .filter_wrap input {
    display:none !important;
    width:0;
    height:0;
}
.store_list .filter_box .filter_wrap input + label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:98px 0 26px;
    border:1px solid #cccccc;
    border-radius:10px;
    transition:.5s;
    cursor:pointer;
    font-size: 18px;
    font-weight: 500;
    color:#999999;
    line-height: 1;
    background-position: center top 26px;
    background-repeat: no-repeat;
}
.store_list .filter_box .filter_wrap input:checked + label {
    border-color:#000000;
    background-color:#000000;
    color:#fff;
}
.store_list .filter_box .filter_wrap + .filter_wrap {
    margin-left: 20px;
}
.store_list .filter_box .filter_wrap #filter01 + label {
    background-image: url('../img/common/ico_filter01.png');
}
.store_list .filter_box .filter_wrap #filter02 + label {
    background-image: url('../img/common/ico_filter02.png');
}
.store_list .filter_box .filter_wrap #filter03 + label {
    background-image: url('../img/common/ico_filter03.png');
}
.store_list .filter_box .filter_wrap #filter04 + label {
    background-image: url('../img/common/ico_filter04.png');
}
.store_list .filter_box .filter_wrap #filter05 + label {
    background-image: url('../img/common/ico_filter05.png');
}
.store_list .filter_box .filter_wrap #filter01:checked + label {
    background-image: url('../img/common/ico_filter01_active.png');
}
.store_list .filter_box .filter_wrap #filter02:checked + label {
    background-image: url('../img/common/ico_filter02_active.png');
}
.store_list .filter_box .filter_wrap #filter03:checked + label {
    background-image: url('../img/common/ico_filter03_active.png');
}
.store_list .filter_box .filter_wrap #filter04:checked + label {
    background-image: url('../img/common/ico_filter04_active.png');
}
.store_list .filter_box .filter_wrap #filter05:checked + label {
    background-image: url('../img/common/ico_filter05_active.png');
}
.store_list .location_box {
    display: flex;
    align-items: center;
    margin-top: 40px;
}
.store_list .location_box .form_box {
    position:relative;
}
.store_list .location_box .form_box + .form_box {
    margin-left: 10px;
}
.store_list .location_box .loc_btn {
    position:relative;
    width:220px;
    height: 70px;
    padding:0 20px;
    font-size:18px;
    color:#999999;
    border:1px solid #dddddd;
    background:#fff url('../img/common/btn_form_ham.png') no-repeat right 20px center;
    box-shadow: 0px 4px 5.88px 0.12px rgba(0, 0, 0, 0.12);
    text-align: left;
    z-index: 3;
}
.store_list .location_box .loc_btn.active {
    color:#333;
}
.store_list .location_box .result_form {
    width:100%;
}
.store_list .location_box .search_detail {
    position:relative;
    width:100%;
}
.store_list .location_box .search_detail input {
    width:100%;
    height: 70px;
    padding:0 70px 0 20px;
    font-size:18px;
    color:#333;
    border:1px solid #dddddd;
    box-shadow: 0px 4px 5.88px 0.12px rgba(0, 0, 0, 0.12);
}
.store_list .location_box .search_detail .search_btn {
    position:absolute;
    top:0;
    right:0;
    width:70px;
    height:70px;
    font-size:0;
    background:url('../img/common/btn_search.png') no-repeat center;
}
.store_list .location_box .loc_list {
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    height:0px;
    border:1px solid #dddddd;
    border-top: none;
    box-sizing: border-box;
    overflow-y: auto;
    z-index: 2;
    box-shadow: 0px 4px 5.88px 0.12px rgba(0, 0, 0, 0.12);
    background-color:#fff;
    transition:.3s;
}
.store_list .location_box .loc_list.active {
    height:320px;
}
.store_list .location_box .loc_list::-webkit-scrollbar {
    width: 15px;
}
.store_list .location_box .loc_list::-webkit-scrollbar-track {
    box-shadow: inset 0 0 15px 15px #dddddd;
    border: solid 5px #ffffff;
    border-radius: 15px;
}
.store_list .location_box .loc_list::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 15px 15px #333333;
    border: solid 5px transparent;
    border-radius: 15px;
}
.store_list .location_box .loc_list li a {
    display: block;
    padding:0 20px;
    font-size:18px;
    color:#333333;
    line-height: 60px;
}
.store_list .location_box .loc_list li a:hover {
    background-color:#f5f5f5;
}
.store_list .list_box {
    margin:80px 0;
}
.store_list .list_box ul li {
	display:flex;
}
.store_list .list_box ul li a {
	width:100%;
}
.store_list .list_box ul li {
    margin-bottom: 80px;
}
.store_list .list_box .img_box {
    flex:0 0 auto;
    position:relative;
    width:33.33%;
    margin-right: 60px;
}
.store_list .list_box .img_box img {
    width:100%;
    height:100%;
    object-fit: cover;
}
.store_list .list_box .slick-arrow {
    position:absolute;
    top:50%;
    width:45px;
    height:60px;
    font-size:0;
    background:rgba(0,0,0,.6) url('../img/common/btn_slide.png') no-repeat center / 15px;
    z-index: 10;
}
.store_list .list_box .slick-arrow.slick-prev {
    left:0;
    transform:translateY(-50%);
}
.store_list .list_box .slick-arrow.slick-next {
    right:0;
    transform:translateY(-50%) rotate(180deg);
}
.store_list .list_box .txt_box {
    width:100%;
    border-bottom:1px solid #dddddd;
    transition:.3s;
}
.store_list .list_box li:hover .txt_box .store_name {
    color:#d51a1a;
    background-image:url('../img/common/ico_plate_red.png');
}

/* store_view */
.store_view .view_wrap {
    margin:120px 0 160px;
}
.store_view .store_ttl {
    padding:15px 0;
    border-top:1px solid #222222;
    border-bottom:1px solid #cccccc;
}
.store_view .store_ttl p {
    font-family: '62570',sans-serif;
    font-size:32px;
    color:#333333;
    text-align: center;
}
.store_view .slide_box img {
    width:100%;
    height:600px;
    object-fit: contain;
}
.store_view .slide_wrap {
    margin:80px 0;
}
.store_view .slick-arrow {
    position:absolute;
    top:50%;
    width:60px;
    height:80px;
    font-size:0;
    background:rgba(0,0,0,.6) url('../img/common/btn_slide.png') no-repeat center;
    z-index: 10;
}
.store_view .slick-arrow.slick-prev {
    left:0;
    transform:translateY(-50%);
}
.store_view .slick-arrow.slick-next {
    right:0;
    transform:translateY(-50%) rotate(180deg);
}
.store_view .list_box {
    display: flex;
    padding-bottom: 80px;
    border-bottom:1px solid #cccccc;
}
.store_view .list_box .map_box {
    flex:0 0 auto;
    width:43.33%;
    height:550px;
    margin-right: 40px;
    border:1px solid #dddddd;
}
.store_view .list_box .map_box .map_area {
    width: 100%;
    height:100%;
}
.store_view .list_box .txt_box {
    width:100%;
}
.store_view .list_box .txt_box dl dt {
    width: 150px;
}
.store_view .list_box .txt_box .store_info {
    margin-bottom: 0;
}

/* introduce */
.introduce section {
    background-color:#fff;
}
.intro_visual {
    height: 100vh;
    box-sizing: border-box;
    background:url('../img/sub/introduce_visual.jpg') no-repeat center / cover;
}
.intro_visual .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.intro_visual .feature_list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width:100%;
}
.intro_visual .feature_list .box_wrap {
    position:relative;
    width:100%;
    max-width:260px;
    height:260px;
    padding:76px 0 90px;
    text-align: center;
    /* background:url('../img/sub/introduce_prize_deco.png') no-repeat center; */
    transform: translateY(100px);
    opacity:0;
    transition: 1.5s ease-out; 
}
.intro_visual .feature_list .box_wrap:before {
    content:'';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:1px solid rgba(255,255,255,.6);
    border-radius:50%;
}
.intro_visual .feature_list .box_wrap:after {
    content:'';
    display:block;
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width:84.6%;
    height:84.6%;
    border:1px solid rgba(255,255,255,.6);
    border-radius:50%;
}
.intro_visual .feature_list.action .box_wrap {
    transform: translateY(0);
    opacity: 1;
}
.intro_visual .feature_list.action .box_wrap:nth-child(2) {
    transition-delay: .6s;
}
.intro_visual .feature_list.action .box_wrap:nth-child(3) {
    transition-delay: 1.2s;
}
.intro_visual .feature_list .box_wrap + .box_wrap {
    margin-left: 80px;
}
.intro_visual .feature_list p {
    margin-bottom: 20px;
    font-size:24px;
    color:#ffffff;
}
.intro_visual .feature_list strong {
    color:#f0b618;
    font-weight: 400;
}
.intro_visual .feature_list .des {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 63px;
}
.intro_visual .feature_list span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color:#fff;
    line-height: 1.77;
}
.intro_visual .video_wrap {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow: hidden;
}
.intro_visual .video_wrap video {
    width:auto;
    height:100vh;
}
.intro_visual .txt_box {
    text-align: center;
}
.intro_visual .txt_box * {
    color:#fff;
    line-height: 1;
}
.intro_visual .txt_box .hidden_wrap {
    overflow: hidden;
}
.intro_visual .txt_box p {
    margin-bottom: 50px;
    font-size: 62px;
    transform: translateY(150px);
    transition: 1.2s .2s;
}
.intro_visual .txt_box.action p {
    transform: translateY(0);
}
.intro_visual .txt_box strong {
    display: block;
    font-size: 82px;
    font-weight: 400;
    transform: translateY(150px);
    transition: 1.5s .5s;
}
.intro_visual .txt_box.action strong {
    transform: translateY(0);
}

.intro_feature {
    padding: 160px 0 210px;
    background-color:#000 !important;
    background-attachment: fixed;
}
.intro_feature .list_box {
    display: flex;
    align-items: center;
    position:relative;
}
.intro_feature .list_box + .list_box {
    margin-top: 100px;
}
.intro_feature .txt_box {
    flex:0 0 auto;
    position:relative;
    opacity:0;
}
.intro_feature .txt_box strong {
    display: block;
    font-size:42px;
    font-weight: 400;
    color:#fff;
}
.intro_feature .txt_box p {
    font-size:18px;
    color:#fff;
    line-height: 1.77;
}
.intro_feature .txt_box span {
    display: block;
    margin:20px 0;
    font-size: 24px;
    font-weight: 700;
    color:#fff;
}
.intro_feature .txt_box span b {
    color:#d51a1a;
}
.intro_feature .txt_box_wrap {
    display: flex;
    position:relative;
    width: 100%;
    max-width:1200px;
    margin:0 auto;
    z-index: 10;
}
.intro_feature .list_box:nth-child(1) {
    height:680px;
}
.intro_feature .list_box:nth-child(2) {
    height:780px;
}
.intro_feature .list_box:nth-child(3) {
    height:730px;
}
.intro_feature .list_box:nth-child(odd) .txt_box {
    width:41%;
    margin-left: 15%;
    transform: translateX(-100px);
}
.intro_feature .list_box:nth-child(odd) .txt_box_wrap {
    justify-content: flex-end;
}
.intro_feature .list_box:nth-child(even) .txt_box {
    width:45%;
    margin-right: 11%;
    transform: translateX(100px);
    text-align: right;
}
.intro_feature .img_box {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow: hidden;
} 
.intro_feature .img_box img {
    max-width: inherit;
}
.intro_feature .img_box.dom_img3 {
    overflow: inherit;
}
.intro_feature .img_box .img_fog {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
}
.intro_feature .plate_img {
    position: absolute;
    top: 0;
    right: 0;
}
.intro_feature .plate_img .fog_box {
    position:absolute;
    left:71px;
    bottom:128px;
    animation: slide-in-bottom 3s ease-out infinite both;
}
.intro_video {
    position:relative;
}
.intro_video .video_wrap {
    position:relative;
    width:100%;
    padding-top: 44.79%;
    overflow: hidden;
}
.intro_video .video_wrap video {
    position:absolute;
    top:0;
    left:0;
    width:100%;
}
.intro_video .txt_box {
    position:absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    z-index: 2;
}
.intro_video .txt_box p {
    font-size:42px;
    color:rgba(255,255,255,.4);
    line-height: 1.61;
}
.intro_video .txt_box strong {
    font-weight: 400;
    color:#fff;
}
.intro_ceo {
    display: flex;
    align-items: center;
    padding:80px 0 160px;
    background-color:#000 !important;
}
.intro_ceo .img_box {
    opacity:0;
    transform: translateX(50px);
    transition: 1.2s;
}
.intro_ceo.action .img_box {
    opacity:1;
    transform: translateX(0);
}
.intro_ceo .txt_box {
    flex:0 0 auto;
    position:relative;
    width:48.95%;
    padding:0 12.23% 0 3.125%;
    box-sizing: border-box;
    opacity:0;
    transform: translateX(-50px);
    transition: 1.2s;
}
.intro_ceo.action .txt_box {
    opacity:1;
    transform: translateX(0);
}
.intro_ceo .ttl_box {
    margin-bottom: 50px;
}
.intro_ceo .ttl_box h2 {
    text-align: left;
    color:#fff;
}
.intro_ceo .txt_box p {
    line-height: 1.5;
    color:#fff;
}
.intro_ceo .txt_box .ceo_sign {
    position:absolute;
    bottom:-17%;
    right:20%;
}
.intro_effort {
    padding:80px 0;
    background-color:#000 !important;
}
.intro_effort .inner {
    max-width:1300px;
}
.intro_effort .ttl_box {
    position:relative;
    z-index: 10;
}
.intro_effort .ttl_box h2 {
    color:#fff;
}
.intro_effort .ttl_box strong {
    color:#d51a1a;
}
.intro_effort .img_box {
    position:relative;
    opacity:0;
    transition: .8s;
}
.intro_effort .txt_box {
    flex: 0 0 auto;
    position:relative;
    max-width: 45%;
    color:#fff;
    line-height: 1.5;
    opacity:0;
    transition: .8s;
}
.intro_effort .effort_box {
    margin-top: 80px;
}
.intro_effort .effort_box li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position:relative;
    padding:10.417vw 0;
}
.intro_effort .effort_box li + li {
    margin-top: 80px;
}
.intro_effort .effort_box .ltor {
    justify-content: flex-end;
}
.intro_effort .effort_box .rtol {
    justify-content: flex-start;
}
.intro_effort .ltor .img_box {
    position:absolute;
    top:-10.417vw;
    left: calc((100vw - 1200px) / -2);
    transform: translateX(100px);
    width:56.25vw;
}
.intro_effort .ltor .txt_box {
    margin-left: 60px;
    transform: translateX(-100px);
}
.intro_effort .ltor.action .img_box,
.intro_effort .ltor.action .txt_box {
    transform: translateX(0); 
    opacity: 1;
}
.intro_effort .rtol .img_box {
    position:absolute;
    top:-9.896vw;
    right: calc((100vw - 1200px) / -2);
    transform: translateX(100px);
    width:56.25vw;
}
.intro_effort .rtol .txt_box {
    text-align: right;
    margin-right: 60px;
    transform: translateX(100px);
}
.intro_effort .rtol.action .img_box,
.intro_effort .rtol.action .txt_box {
    transform: translateX(0); 
    opacity: 1;
}
.intro_effort .effort_video {
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
    height:100vh;
    margin-top: 30px;
    flex-direction: column;
}
.intro_effort .effort_video .txt_wrap {
    position:relative;
    color: #fff;
    line-height: 1.5;
    text-align: center;
    padding:0 15px;
    opacity: 0;
    transform: translateY(50px); 
    transition: .7s;
    z-index: 10;
}
.intro_effort .effort_video.action .txt_wrap {
    transform: translateY(0); 
    opacity: 1;
}
.intro_effort .effort_video .video_wrap {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
} 
.intro_effort .effort_video .video_wrap:after {
    content:'';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(0,0,0,.5);
}
.intro_effort .effort_video .video_wrap .video_box {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.intro_effort .effort_video .video_wrap video {
    width:100%;
    height:100%;
    object-fit:cover;
}
.intro_effort .lsbox .img_box {
    transform: translateY(-100px);
}
.intro_effort .lsbox .txt_box {
    max-width: 100%;
    margin-top: 40px;
    text-align: center;
    transform: translateY(100px);
}
.intro_effort .lsbox.action .img_box,
.intro_effort .lsbox.action .txt_box {
    transform: translateY(0); 
    opacity: 1;
}
.intro_interior {
    position:relative;
    padding:160px 0;
}
.intro_interior .plate_img {
    position:absolute;
    top:-236px;
    right:-200px;
    opacity: 0;
    font-size: 0;
    transition: 2s;
}
.intro_interior .plate_img.action {
    right:0;
    opacity: 1;
}
.intro_interior .tab_box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px 0;
}
.intro_interior .tab_box .interior_btn {
    width:180px;
    height:60px;
    font-size: 18px;
    font-weight: 500;
    color: #999999;
    border-radius: 30px;
    border:1px solid #cccccc;
    transition:.4s;
}
.intro_interior .tab_box .interior_btn:hover,
.intro_interior .tab_box .interior_btn.active {
    color:#fff;
    background-color: #d51a1a;
    border-color: #d51a1a;
}
.intro_interior .tab_box .interior_btn + .interior_btn {
    margin-left: 10px;
}
.intro_interior .slide_box {
    display: none;
}
.intro_interior .slide_box.active {
    display: block;
}
.intro_interior .slick-arrow {
    position:absolute;
    top:50%;
    width:60px;
    height:80px;
    background:rgba(0,0,0,.6) url('../img/common/btn_slide.png') no-repeat center / 20px;
    z-index: 2;
    font-size: 0;
}
.intro_interior .slick-prev {
    left:0;
    transform: translateY(-50%);
}
.intro_interior .slick-next {
    right:0;
    transform: translateY(-50%) rotate(180deg);
}
.intro_interior .info_box {
    display: flex;
    align-items: center;
    margin-top: 40px;
    background-color:#f1f1f1;
    border:1px solid #dddddd;
}
.intro_interior .info_box .img_box {
    display: flex;
    align-items: center;
    justify-content: center;
    width:50%;
}
.intro_interior .info_box .txt_box {
    padding:40px 35px;
    color:#555555;
    line-height: 1.5;
}
.intro_bi {
    padding:80px 0 160px;
}
.intro_bi .ttl_box .sub {
    margin:0;
    margin-top: 20px;
    font-size:18px;
    font-weight: 700;
}
.intro_bi .bi_txt {
    display: block;
    margin-bottom: 20px;
    color:#999999;
    text-align: center;
    line-height: 1;
}
.intro_bi .color_bg_box {
    margin:80px 0;
}
.intro_bi .color_bg_box .logo_box {
    display: flex;
    align-items: center;
    justify-content: center;
    width:100%;
    padding:94px 0;
}
.intro_bi .color_bg_box .basic_color .logo_box {
    background-color:#fff;
    border:1px solid #cccccc;
    background-size: 17px 17px;
    background-image: 
        linear-gradient(to right, #f8f8f8 1px, transparent 1px),
        linear-gradient(to bottom, #f8f8f8 1px, transparent 1px);
}
.intro_bi .color_bg_box .basic_color .logo_box img {
    width:260px;
}
.intro_bi .palette_box .code_box {
    display: flex;
    align-items: flex-start;
}
.intro_bi .palette_box .code_box .box_wrap {
    display: flex;
    align-items: center;
    width:100%;
}
.intro_bi .palette_box .code_box .box_wrap + .box_wrap {
    margin-left: 40px;
}
.intro_bi .palette_box .color {
    width:72px;
    height:72px;
    margin-right: 20px;
    border-radius:10px;
    border:1px solid transparent;
    font-size: 0;
}
.intro_bi .palette_box .c01 {
    background-color:#fff;
    border-color:#cccccc;
}
.intro_bi .palette_box .c02 {
    background-color:#000000;
    border-color:#000000;
}
.intro_bi .palette_box .c03 {
    background-color:#064621;
    border-color:#064621;
}
.intro_bi .palette_box .c04 {
    background-color:#E9372E;
    border-color:#E9372E;
}
.intro_bi .palette_box .version dl {
    display: flex;
    line-height: 1.5;
}
.intro_bi .palette_box .version dt {
    flex:0 0 auto;
    width:72px;
    font-weight: 700;
    color:#333333;
}
.intro_bi .palette_box .version dd {
    color:#555555;
}
.intro_bi .color_guide {
    margin-top: 80px;
    color:#999999;
    line-height: 1.5;
    text-align: center;
}
.intro_mean {
    padding:80px 0 160px; 
}
.intro_mean .top_area {
    display: flex;
    justify-content: center;
}
.intro_mean .video_box {
    flex: 0 0 auto;
    position:relative;
    width:290px;
    height:650px;
    overflow: hidden;
}
.intro_mean .video_box .video_wrap {
    width:100%;
    height:100%;
} 
.intro_mean .video_box video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.intro_mean .video_box .txt_wrap {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #ffffff;
    mix-blend-mode: screen;
}
.intro_mean .video_box .txt_wrap strong {
    font-weight: 900;
    font-size: 240px;
    text-align: center;
    line-height: 0.91;
    text-transform: uppercase;
}
.intro_mean .mean_txt_box {
    padding:10px 0;
}
.intro_mean .mean_txt_box .txt_wrap {
    padding:80px 0;
    font-size:42px;
    font-weight: 700;
    color:#333333;
    opacity:0;
    transform: translateX(-100px);
    transition: .8s;
}
.intro_mean .mean_txt_box.action .txt_wrap {
    opacity:1;
    transform: translateX(0);
}
.intro_mean .mean_txt_box .txt_wrap:nth-child(2) {
    transition-delay: .3s;
}
.intro_mean .mean_txt_box .txt_wrap:nth-child(3) {
    transition-delay: .6s;
}
.intro_mean .mean_txt_box .txt_wrap strong {
    font-weight: 400;
}
.intro_mean .btm_txt {
    margin-top: 60px;
    font-size:42px;
    color:#333333;
    text-align: center;
    opacity:0;
    transform: translateY(100px);
    transition: .8s;
}
.intro_mean .btm_txt.action {
    opacity:1;
    transform: translateY(0);
}

/* comp */
.comp .hidden_wrap {
    overflow: hidden;
}
.comp_visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
    width:100%;
    height:100vh;
    background-color:#000 !important;
    /* background: url('../img/sub/comp_visual.jpg') no-repeat center / cover; */
}
.comp_visual .inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.comp_visual .txt_box {
    text-align: right;
}
.comp_visual .txt_box strong {
    display: inline-block;
    font-size:42px;
    font-weight: 400;
    color:#fff;
    line-height: 1.61;
    border-bottom:1px solid #fff;
}
.comp_visual .txt_box strong span {
    display: block;
    transform: translateY(100px);
    transition: 1.2s;
}
.comp_visual .txt_box.action strong span {
    transform: translateY(0);
}
.comp_visual .txt_box strong .hidden_wrap:nth-child(2) span {
    transition-delay: .5s;
}
.comp_visual .txt_box p {
    margin-top: 10px;
    font-weight: 300;
    color:#fff;
    line-height: 1.77;
    transform: translateX(100%);
    transition: 1.5s 1.2s;
}
.comp_visual .txt_box.action p {
    transform: translateX(0);
}
.comp_visual .img_box {
    position:absolute;
    top:-13.021vw;
    left:0;
    width:41.354vw;
    z-index:1;
    transform: translateX(-200px);
    opacity: 0;
    transition: 2s;
}
.comp_visual .img_box img {
    height:100%;
    object-fit: cover;
    object-position: right;
}
.comp_visual .img_box.action {
    transform: translateX(0);
    opacity: 1;
}
.comp_info {
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
    width:100%;
    height:100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.comp_info:before {
    content:'';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0) 25%, rgba(0,0,0,1) 100%);
}
.comp_info.info01 {
    background-image:url('../img/sub/comp_info_bg01.jpg');
}
.comp_info.info02 {
    background-image:url('../img/sub/comp_info_bg02.jpg');
}
.comp_info.info03 {
    background-image:url('../img/sub/comp_info_bg03.jpg');
}
.comp_info .txt_box {
    padding:0 30px;
    font-size:42px;
    line-height: 1.61;
    text-align: center;
}
.comp_info .txt_box .info_txt01 {
    display: block;
    color:rgba(255,255,255,.6);
    transform: translateY(100%);
    transition: .8s;
}
.comp_info .txt_box.action .info_txt01 {
    transform: translateY(0);
}
.comp_info .txt_box strong {
    display: block;
    color:#fff;
    font-weight: 400;
}
.comp_info .txt_box strong {
    transform: translateY(100%);
    transition: .8s .5s;
}
.comp_info .txt_box strong b {
    color:#d51a1a;
    font-weight: 400;
}
.comp_info .txt_box.action strong {
    transform: translateY(0);
}

/* foundation */
.foundation .ttl_box {
    opacity: 0;
    transform: translateY(50px);
    transition: .7s;
}
.foundation .ttl_box.action {
    opacity: 1;
    transform: translateY(0);
}

.fdn_visual {
    position:relative;
    width:100%;
    min-height:100vh;
    padding:160px 0 105px;
    background:url('../img/sub/foundation_visual.jpg') no-repeat center / cover;
    box-sizing: border-box;
}
.fdn_visual .top_txt {
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    transition: .7s;
}
.fdn_visual.action .top_txt {
    transform: translateY(0);
    opacity: 1;
}
.fdn_visual .top_txt p {
    font-size:42px;
    color:#fff;
}
.fdn_visual .top_txt strong {
    font-weight: 400;
    color:#d51a1a;
}
.fdn_visual .mid_box {
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
    margin:80px 0 60px;
}
.fdn_visual .mid_box .mid_txt {
    font-size: 24px;
    color:#fff;
    line-height: 1.5;
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    transition: .7s .5s;
}
.fdn_visual.action .mid_box .mid_txt {
    transform: translateY(0);
    opacity: 1;
}
.fdn_visual .btm_txt {
    transform: translateY(30px);
    opacity: 0; 
    transition: .7s 1s;
}
.fdn_visual.action .btm_txt {
    transform: translateY(0);
    opacity: 1;
}
.fdn_visual .btm_txt p {
    font-size:24px;
    color:#fff;
    line-height: 1.41;
    text-align: center;
}
.fdn_visual .img_box {
    position:relative;
    max-width:507px;
    margin:0 60px;
}
.fdn_visual .fog_box .fog {
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
.fdn_visual .fog_box .fog_effect {
    animation: scale-in-center 7s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite both;
}
.fdn_visual .fog_box .fog_effect img {
    width: inherit;
    max-width: 507px;
}
@keyframes scale-in-center {
    0% {
        transform: scale(.7);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(.7);
    }
}
.fdn_interview {
    padding:160px 0 80px;
}
.fdn_interview .tab_box {
    display: flex;
    align-items: center;
    justify-content: center;
	flex-wrap: wrap;
    margin: 60px 0 80px;
    transform: translateY(50px);
    opacity: 0;
    transition: .7s;
}
.fdn_interview .tab_box.action {
    transform: translateY(0);
    opacity: 1;
}
.fdn_interview .tab_box .interview_btn {
    width:180px;
    height:60px;
	margin:5px;
    font-size: 18px;
    font-weight: 500;
    color: #999999;
    border-radius: 30px;
    border:1px solid #cccccc;
    transition:.4s;
}
.fdn_interview .tab_box .interview_btn:hover,
.fdn_interview .tab_box .interview_btn.active {
    color:#fff;
    background-color: #d51a1a;
    border-color: #d51a1a;
}
.fdn_interview .box_wrap {
    display: none;
}
.fdn_interview .box_wrap.active {
    display: block;
}
.fdn_interview .cont_box {
    display: flex;
}
.fdn_interview .intvw_box {
    transform: translateY(50px);
    opacity: 0;
    transition: .7s;
}
.fdn_interview .intvw_box.action {
    transform: translateY(0);
    opacity: 1;
}
.fdn_interview .intvw_box .img_box {
    position:relative;
    width:56.25%;
    box-shadow: 5px 4px 22.8px 1.2px rgba(0, 0, 0, 0.26);
} 
.fdn_interview .intvw_box .active .img_box:after {
    content:'';
    display:block;
    position:absolute;
    top:0;
    right:0;
    height:100%;
    background-color:#fff;
    z-index:2;
    animation: squaremove .7s cubic-bezier(0.550, 0.085, 0.680, 0.530);
}
.fdn_interview .ad_guide_txt {
	position: relative;
	top: -20px;
	right:30px;
	font-size: 15px;
	color: #999;
	text-align: right;
}
@keyframes squaremove {
    from { 
        width: 100%; 
    }
    to { 
        width: 0;      
    }
}
.fdn_interview .intvw_box .flow_wrap {
    display: flex;
    align-items: center;
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:80px;
    overflow-x: hidden;
    overflow-y: hidden;
    background-color:#8e2727;
    z-index:1;
}
.fdn_interview .intvw_box .flow_txt {
    display: flex;
    align-items: center;
    height:100%;
    animation: marquee 60s linear infinite;
}
.fdn_interview .intvw_box .flow_txt dl {
    display: flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    padding:0 20px;
}
.fdn_interview .intvw_box .flow_txt dt {
    font-size:14px;
    color:#ffffff;
}
.fdn_interview .intvw_box .flow_txt dd {
    margin-left: 10px;
    font-size:20px;
    font-weight: 700;
    color:#ffffff;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.fdn_interview .intvw_box .txt_box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position:relative;
    width:43.75%;
    margin:0 30px;
    padding:0 50px;
    box-sizing: border-box;
}
.fdn_interview .intvw_box .txt_box:before {
    content:'';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:160px;
    height:128px;
    background:url('../img/common/ico_quote.png') no-repeat center / cover;
}
.fdn_interview .intvw_box .txt_box:after {
    content:'';
    display:block;
    position:absolute;
    bottom:0;
    right:0;
    transform: rotate(180deg);
    width:160px;
    height:128px;
    background:url('../img/common/ico_quote.png') no-repeat center / cover;
}
.fdn_interview .intvw_box .name {
    font-size:42px;
    font-weight: 400;
    color:#333333;
}
.fdn_interview .intvw_box .summary {
    margin:50px 0 30px;
    font-size:24px;
    color:#333333;
    line-height: 1.3;
}
.fdn_interview .intvw_box .info {
    color:#555555;
    line-height: 1.75;
}
.fdn_seq {
    position:relative;
    padding:160px 0 240px; 
}
.fdn_seq:before {
    content:'';
    display:none;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url('../img/sub/foundation_seq_bg.png') no-repeat center top;
    z-index: -1;
    filter: blur(10px);
    transition: 1.5s;
}
.fdn_seq.action:before {
    filter: blur(0);
}
.fdn_seq .inner {
    max-width: 1500px;
}
.fdn_seq .seq_box {
    margin-top: 60px;
    padding:70px 90px 35px 70px;
    border:1px solid #dddddd;
    background-color:#fff;
    box-shadow: 0px 12px 35px 0px rgba(0, 0, 0, 0.06);
}
.fdn_seq ul {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.fdn_seq .seq_box li {
    position:relative;
    padding:0 55px 0 75px;
    margin-bottom: 60px;
    transform: translateX(-50px);
    opacity:0;
    transition: .4s;
}
.fdn_seq .seq_box li:not(:first-child):before {
    content:'';
    display:block;
    position:absolute;
    top:calc(50% - 33px);
    left:0;
    transform: translateY(-50%);
    width:20px;
    height:18px;
    background:url('../img/common/ico_seq_arrow.png') no-repeat center / cover;
}
.fdn_seq .seq_box.action li {
    transform: translateX(0);
    opacity:1;
}
.fdn_seq .seq_box.action li:nth-child(2) {
    transition-delay: .2s;
}
.fdn_seq .seq_box.action li:nth-child(3) {
    transition-delay: .4s;
}
.fdn_seq .seq_box.action li:nth-child(4) {
    transition-delay: .6s;
}
.fdn_seq .seq_box.action li:nth-child(5) {
    transition-delay: .8s;
}
.fdn_seq .seq_box.action li:nth-child(6) {
    transition-delay: 1.0s;
}
.fdn_seq .seq_box.action li:nth-child(7) {
    transition-delay: 1.2s;
}
.fdn_seq .seq_box.action li:nth-child(8) {
    transition-delay: 1.4s;
}
.fdn_seq .seq_box.action li:nth-child(9) {
    transition-delay: 1.6s;
}
.fdn_seq .txt_box {
    margin-top: 20px;
    text-align: center;
}
.fdn_seq .txt_box .step {
    font-size: 18px;
    font-weight: 700;
    color:#999999;
}
.fdn_seq .txt_box .cont {
    margin-top: 10px;
    font-size:18px;
    font-weight: 700;
    color:#333333;
    /* font-family: 'MuseumClassic', serif; */
}
.fdn_seq .coin_box {
    position: absolute;
    opacity: 0;
} 
.fdn_seq.action .coin_box {
    animation: bounce-in-fwd 1.1s both;
    opacity: 1;
}
.fdn_seq .coin01 {
    top:0;
    left:210px;
}
.fdn_seq.action .coin01 {
    animation-delay: .3s;
}
.fdn_seq .coin02 {
    top:320px;
    left:190px;
}
.fdn_seq.action .coin02 {
    animation-delay: .6s;
}
.fdn_seq .coin03 {
    top:190px;
    right:156px;
}
.fdn_seq.action .coin03 {
    animation-delay: .9s;
}
@keyframes bounce-in-fwd {
    0% {
        transform: scale(0);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    38% {
        transform: scale(1);
        animation-timing-function: ease-out;
        opacity: 1;
    }
    55% {
        transform: scale(0.7);
        animation-timing-function: ease-in;
    }
    72% {
        transform: scale(1);
        animation-timing-function: ease-out;
    }
    81% {
        transform: scale(0.84);
        animation-timing-function: ease-in;
    }
    89% {
        transform: scale(1);
        animation-timing-function: ease-out;
    }
    95% {
        transform: scale(0.95);
        animation-timing-function: ease-in;
    }
    100% {
        transform: scale(1);
        animation-timing-function: ease-out;
    }
  }
  
.fdn_support {
    position:relative;
    padding:60px 0 48px;
    box-sizing: border-box;
}
.fdn_support:before {
    content:'';
    display:block;
    width:81.25%;
    height:100%;
    position:absolute;
    top:0;
    right:0;
    background:url('../img/sub/foundation_support_bg.jpg') no-repeat center center / cover;
    background-attachment: fixed;
    z-index: -1;
}
.fdn_support .ttl_box {
    margin-bottom:10px;
    transform: translateX(-50%);
}
.fdn_support .ttl_box h2 {
    color:#fff;
}
.fdn_support .support_box {
    display: flex;
    align-items: center;
}
.fdn_support .box_wrap {
    display: flex;
    align-items: center;
    opacity: .4;
    cursor:pointer;
}
.fdn_support .box_wrap.active {
    opacity: 1;
}
.fdn_support .box_wrap + .box_wrap {
    margin-top: 60px;
}
.fdn_support .img_box {
    position:relative;
    margin-left: 80px;
    width:29.688vw;
    height: 29.688vw;
}
.fdn_support .img_box img {
    width:100%;
    height:100%;
}
.fdn_support .img_box .plate_box {
    position:absolute;
    top:50%;
    /* left:-100px; */
    transform: translateY(-50%);
    opacity:0;
    transition: .5s;
}
.fdn_support .img_box .plate_box.active {
    /* left:0; */
    opacity:1;
}
.fdn_support .txt_box {
    margin:0 30px 0 60px;
    color:#fff;
}
.fdn_support .txt_box .step {
    display: flex;
    align-items: center;
    width:260px;
    flex:0 0 auto;
}
.fdn_support .txt_box .step span {
    margin-top: 5px;
    font-size:42px;
}
.fdn_support .box_wrap.active .step span {
    color:#f0b618;
}
.fdn_support .txt_box .step p {
    margin-left: 20px;
    font-size:24px;
    font-weight: 700;
}
.fdn_support .txt_box .txt {
    /* font-family: 'MuseumClassic'; */
    font-size:18px;
    font-weight: 500;
    line-height: 1.5;
}
.fdn_care {
    padding:240px 0;
}
.fdn_care .care_box {
    margin-top: 60px;
}
.fdn_care .box_wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position:relative;
    padding:0 200px;
}
.fdn_care .box_wrap:after {
    content:'';
    display:block;
    position:absolute;
    bottom:-80px;
    left:0;
    width:0;
    height:238px;
    background-color:#f1f1f1;
    transition: .8s;
    z-index: -1;
}
.fdn_care .box_wrap.action:after {
    width: 93.75%;
}
.fdn_care .box_wrap:nth-child(even) {
    flex-direction: row-reverse;
}
.fdn_care .box_wrap:nth-child(even):after {
    left:inherit;
    right:0;
}
.fdn_care .box_wrap + .box_wrap {
    margin-top: 160px;
}
.fdn_care .care_box .img_box {
    position:relative;
}
.fdn_care .care_box .img_box:after {
    content:'';
    display:block;
    position:absolute;
    top:0;
    width:100%;
    height:100%;
    background-color:#fff;
    transition: .5s .8s;
}
.fdn_care .care_box .box_wrap.action .img_box:after {
    width: 0;
}
.fdn_care .box_wrap:nth-child(odd) .img_box:after {
    left:0;
}
.fdn_care .box_wrap:nth-child(even) .img_box:after {
    right:0;
}
.fdn_care .care_box .txt_box {
    transform: translateY(100px);
    opacity: 0;
    transition: .5s 1.2s;
}
.fdn_care .care_box .box_wrap.action .txt_box {
    transform: translateY(0);
    opacity: 1;
}
.fdn_care .care_box .txt_box .ttl {
    display: block;
    margin-bottom: 30px;
    font-size:24px;
    font-weight: 400;
    color:#333333;
}
.fdn_care .care_box .txt_box .cont {
    font-family: 'MuseumClassic';
    font-size:18px;
    font-weight: 500;
    line-height: 1.33;
}
.fdn_care .box_wrap:nth-child(odd) .txt_box {
    margin-left: 80px;
}
.fdn_care .box_wrap:nth-child(even) .txt_box {
    margin-right: 80px;
    text-align: right;
}
.fdn_price {
    margin-top: 240px;
    padding:60px 0 125px;
    background:url('../img/sub/foundation_price_bg.jpg') no-repeat center / cover;
}
.fdn_price .ttl_box * {
    color:#fff !important;
}
.fdn_price .price_table {
    margin-top: 60px;
    transform: translateY(50px);
    opacity: 0;
    transition: .7s;
}
.fdn_price .price_table.action {
    transform: translateY(0);
    opacity: 1;
}
.fdn_price .price_table table {
    width:100%;
    table-layout:fixed;
}
.fdn_price .price_table table thead {
    background-color:#8e2727;
}
.fdn_price .price_table table tbody {
    background-color:#fff;
}
.fdn_price .price_table table tbody tr {
    border-bottom: 1px solid #ccc;
}
.fdn_price .price_table table th {
    padding:10px 0;
    font-weight: 500;
    color:#fff;
    vertical-align: middle;
}
.fdn_price .price_table table td {
    padding:25px 10px;
    color:#555555;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
}
.fdn_price .price_table table .type {
    background-color:#d51a1a !important;
    font-weight: 700;
    color:#fff;
}
.fdn_price .price_table table td strong {
    color:#d51a1a;
}
.fdn_price .price_table table td b {
    font-weight: 500;
    color:#333333;
}
.fdn_price .price_table table th + th,
.fdn_price .price_table table td + td {
    border-left: 1px solid #ccc;
}
.fdn_price .price_table .sep {
    background-color:#f1f1f1;
}
.fdn_price .price_table .sep td {
    padding:17px 0;
}
.fdn_price .price_table .unit {
    margin-top: 20px;
    color:#aaaaaa;
    text-align: right;
}
.fdn_price .price_table .guide_txt01 {
    margin-bottom: 10px;
    font-weight: 500;
    color:#fff;
    text-align: right;
}
.fdn_price .price_table .guide_txt02 {
    margin-top: 20px;
    color:#999999;
    line-height: 1.3;
    text-align: center;
}
.fdn_cost {
    padding:40px 0 230px;
    background:url('../img/sub/foundation_cost_bg.jpg') no-repeat center / cover;
}
.fdn_cost .ttl_box .sub_ttl {
    color:#fff;
}
.fdn_cost .ttl_box .glow_txt {
    width: 100%;
    font-size: 82px;
    -webkit-text-stroke:1px #f2c54c;
    letter-spacing: 0.12em;
    color: #fff;
    animation: glow-txt 4s linear infinite;
}
@keyframes glow-txt {
    0%, 100% {
      color: #fff;
      text-shadow: none;
    }
    40% {
      color: #fff;
      text-shadow: 0 0 10px #f2c54c,
                   0 0 20px #f2c54c,
                   0 0 40px #f2c54c,
                   0 0 80px #f2c54c,
                   0 0 120px #f2c54c;
    }
}
.fdn_cost .img_box {
    margin-top: 150px;
}
.fdn_cost .img_box .best_pic {
    display: flex;
    align-items: center;
    justify-content: center;
}
.fdn_cost .img_box .best_pic .pic_box {
    position:relative;
    flex:0 0 auto;
}
.fdn_cost .img_box .best_pic .pic01 {
    right:-260px;
}
.fdn_cost .img_box .best_pic .pic03 {
    left:-260px;
}
.fdn_cost .img_box .best_pic .pic02 {
    top:75px;
    z-index: 1;
}
.fdn_cost .img_box .fog_box {
    position:absolute;
}
.fdn_cost .img_box .pic01 .fog01 {
    left:35px;
    bottom:198px;
    animation: slide-in-bottom 3s ease-out .5s infinite both;
}
.fdn_cost .img_box .pic01 .fog02 {
    left:67px;
    bottom:168px;
    animation: slide-in-bottom 4s ease-out 1s infinite both;
}
.fdn_cost .img_box .pic02 .fog01 {
    left:121px;
    bottom:311px;
    animation: slide-in-bottom 4s ease-out infinite both;
}
.fdn_cost .img_box .pic02 .fog02 {
    left:133px;
    bottom:222px;
    animation: slide-in-bottom 6s ease-out infinite both;
}
.fdn_cost .img_box .pic03 .fog01 {
    left:92px;
    bottom:136px;
    animation: slide-in-bottom 3s ease-out .5s infinite both;
}
.fdn_cost .img_box .pic03 .fog02 {
    left:119px;
    bottom:173px;
    animation: slide-in-bottom 4s ease-out 1s infinite both;
}
@keyframes slide-in-bottom {
    0% {
      -webkit-transform: translateY(70px);
              transform: translateY(70px);
      opacity: 0;
    }
    50% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
      opacity: 1;
    }
    80% {
      opacity: 0.5;
    }
    100% {
      opacity:0;
    }
}
/* fdn_inq */
.fdn_inq {
    padding:150px 0 80px;
    background-color:#000;
}
.fdn_inq .ttl_box h2 {
    width: 100%;
    color: #fff;
    animation: glow-txt 4s linear infinite;
}
.fdn_inq .form_box {
    padding-bottom: 40px;
    border-bottom: 1px solid #8e2727;
}
.fdn_inq .agree_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:20px;
    margin:60px 0 40px;
    background-color:#8e2727;
}
.fdn_inq .agree_box input[type="checkbox"] {
    display:none;
    width:0;
    height:0;
}
.fdn_inq .agree_box input[type="checkbox"] + label {
    display: inline-block;
    padding-left: 36px;
    font-size:18px;
    color:#fff;
    line-height: 1.4;
    background-position: left center;
    background-repeat: no-repeat;
    background-image: url('../img/common/ico_checkbox_off.png');
    cursor:pointer;
}
.fdn_inq .agree_box input[type="checkbox"]:checked + label {
    background-image: url('../img/common/ico_checkbox_on.png');
}
.fdn_inq .agree_box .pop_agree_btn {
    flex:0 0 auto;
    font-weight: 500;
    color:#ffffff;
}
.fdn_inq .form_box .input_box {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.fdn_inq .form_box .input_cont {
    align-items: inherit;
}
.fdn_inq .form_box .input_box .label {
    flex:0 0 auto;
    width:22.72%;
    font-size:18px;
    font-weight: 500;
    color:#fff;
    text-align: left;
}
.fdn_inq .form_box .input_box .label strong {
    font-weight: 500;
    color:#d51a1a;
}
.fdn_inq .form_box .input_wrap {
    display: flex;
    width:100%;
}
.fdn_inq .form_box .input_wrap input {
    width:100%;
    height:70px;
    padding:0 20px;
    box-sizing: border-box;
}
.fdn_inq .form_box .input_wrap textarea {
    width:100%;
    height:140px;
    padding:15px 20px;
    box-sizing: border-box;
    resize:none;
}
.fdn_inq .form_box .check_wrap {
	flex-wrap: wrap;
}
.fdn_inq .form_box .checkbox {
	display: flex;
	align-items: center;
	margin:5px 20px 5px 0;
}
.fdn_inq .form_box .checkbox input[type="checkbox"] {
	display:none !important;
}
.fdn_inq .form_box .checkbox input[type="text"] {
    width: 150px;
	height: 30px;
    padding: 0 10px;
	margin-left: 10px;
    font-size: 13px;
}
.fdn_inq .form_box .checkbox input[type="checkbox"] + label {
	display:inline-block;
	padding-left: 27px;
	font-size:15px;
	color:#fff;
	font-weight: 500;
	line-height: 20px;
	background-image: url('../img/common/ico_checkbox_rec_off.png');
	background-position: left center;
	background-repeat: no-repeat;
	background-size:18px;
	cursor:pointer;
}
.fdn_inq .form_box .checkbox input[type="checkbox"]:checked + label {
	background-image: url('../img/common/ico_checkbox_rec_on.png');
}
.fdn_inq .location_box {
    display: flex;
    align-items: center;
    position:relative;
    width:100%;
}
.fdn_inq .location_box + .location_box {
    margin-left: 10px;
}
.fdn_inq .location_box .loc_btn {
    position:relative;
    width:100%;
    height: 70px;
    padding:0 20px;
    font-size:18px;
    color:#999999;
    border:1px solid #dddddd;
    background:#fff url('../img/common/btn_form_ham.png') no-repeat right 20px center;
    text-align: left;
    z-index: 3;
}
.fdn_inq .location_box .loc_btn.active {
    color:#333;
}
.fdn_inq .location_box .result_form {
    width:100%;
}
.fdn_inq .location_box .search_detail {
    position:relative;
    width:100%;
}
.fdn_inq .location_box .search_detail input {
    width:100%;
    height: 70px;
    padding:0 70px 0 20px;
    font-size:18px;
    color:#333;
    border:1px solid #dddddd;
    box-shadow: 0px 4px 5.88px 0.12px rgba(0, 0, 0, 0.12);
}
.fdn_inq .location_box .search_detail .search_btn {
    position:absolute;
    top:0;
    right:0;
    width:70px;
    height:70px;
    font-size:0;
    background:url('../img/common/btn_search.png') no-repeat center;
}
.fdn_inq .location_box .loc_list {
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    height:0px;
    border:1px solid #dddddd;
    border-top: none;
    box-sizing: border-box;
    overflow-y: auto;
    z-index: 2;
    box-shadow: 0px 4px 5.88px 0.12px rgba(0, 0, 0, 0.12);
    background-color:#fff;
    transition:.3s;
}
.fdn_inq .location_box .loc_list.active {
    height:320px;
}
.fdn_inq .location_box .loc_list::-webkit-scrollbar {
    width: 15px;
}
.fdn_inq .location_box .loc_list::-webkit-scrollbar-track {
    box-shadow: inset 0 0 15px 15px #dddddd;
    border: solid 5px #ffffff;
    border-radius: 15px;
}
.fdn_inq .location_box .loc_list::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 15px 15px #333333;
    border: solid 5px transparent;
    border-radius: 15px;
}
.fdn_inq .location_box .loc_list li a {
    display: block;
    padding:0 20px;
    font-size:18px;
    color:#333333;
    line-height: 60px;
    text-align: left;
}
.fdn_inq .location_box .loc_list li a:hover {
    background-color:#f5f5f5;
}
.fdn_inq .btn_box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}
.fdn_inq .inq_btn {
    width: 180px;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    line-height: 60px;
    background-color: #d51a1a;
    text-align: center;
    border-radius: 30px;
}
.fdn_brand {
    padding:130px 0;
    background: url(../img/sub/introduce_visual.jpg) no-repeat center / cover;
    background-attachment: fixed;
}
.fdn_brand .ttl_box h2 {
    color:#fff;
}
.fdn_brand .btn_box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}
.fdn_brand .btn_box .view_btn {
    width:180px;
    font-size:18px;
    font-weight: 500;
    color:#ffffff;
    line-height: 60px;
    border-radius: 30px;
    text-align: center;
    background-color: #d51a1a;
}

/* fdn_compare */
.fdn_compare {
    padding:20px 0 160px;
    background-color:#000;
}
.fdn_compare .ttl_box h2 {
    color:#fff;
}
.fdn_compare .ttl_box h2 strong {
    color:#d51a1a;
}
.fdn_compare .ttl_box .sub_ttl {
    color:#fff;
}
.fdn_compare .feature_list {
    margin-top: 60px;
}
.fdn_compare .feature_list ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.fdn_compare .feature_list li {
    width:100%;
    border:20px solid rgba(255,255,255,.2);
    box-sizing:border-box;
    border-radius: 50%;
    transform: translateY(50px);
    opacity: 0;
    transition: .7s;
}
.fdn_compare .feature_list.action li {
    transform: translateY(0);
    opacity: 1;
} 
.fdn_compare .feature_list li:nth-child(2) {
    transition-delay: .4s;
}
.fdn_compare .feature_list li:nth-child(3) {
    transition-delay: .8s;
}
.fdn_compare .feature_list li + li {
    margin-left: 60px;
}
.fdn_compare .feature_list .txt_wrap {
    position:relative;
    width:100%;
    padding-top:100%;
}
.fdn_compare .feature_list p {
    display: flex;
    align-items: center;
    justify-content: center;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    font-size:32px;
    font-weight: 700;
    color:#fff;
    text-align: center;
    line-height: 1.5;
    text-shadow: 0 0 40px #f2c54c;
    -webkit-text-stroke: 0.5px #f2c54c;
}

/* fdn_delivery */
.fdn_delivery {
    display: flex;
    position:relative;
    padding:80px 0;
    background-color:#000; 
}
.fdn_delivery .capture_box {
    position:relative;
    width:50%;
    min-width:979px;
    transform: translateY(50px);
    opacity: 0;
    transition: .7s;
}
.fdn_delivery .capture_box.action {
    transform: translateY(0);
    opacity: 1;
}
.fdn_delivery .capture_box .swiper {
    padding:80px 60px 80px 20px;
}
.fdn_delivery .capture_box .slide_box {
    position:relative;
    border-radius:40px;
}
.fdn_delivery .capture_box .slide_box:after {
    content:'';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(255,255,255,.6);
    border-radius: 40px;
    transition: .4s;
}
.fdn_delivery .swiper-pagination {
    bottom:120px;
    padding:0 85px;
    font-size: 0;
    text-align: right;
}
.fdn_delivery .swiper-pagination-bullet {
    margin:0 5px;
    background-color:#999999;
}
.fdn_delivery .swiper-pagination-bullet-active {
    background-color:#d51a1a;
}
.fdn_delivery .capture_box .swiper-slide-active {
    box-shadow: 0px 0px 56px 24px rgba(255, 255, 255, 0.28);
}
.fdn_delivery .capture_box .swiper-slide-active:after {
    opacity:0;
}
.fdn_delivery .capture_box .slide_box .img_box img {
    width:100%;
}
.fdn_delivery .app_logo_wrap {
    display: flex;
    align-items: center;
}
.fdn_delivery .app_logo_box {
    font-size: 0;
    margin-right: 20px;
}
.fdn_delivery .info_box {
    position:relative;
    margin-left: -1px;
    margin-top: 105px;
    padding-top: 80px;
    padding-left: 30px;
    background-color: #000;
    z-index: 3;
    transform: translateX(100px);
    opacity: 0;
    transition: .7s .5s;
} 
.fdn_delivery .info_box.action {
    transform: translateX(0);
    opacity: 1;
}
.fdn_delivery .info_txt {
    margin-top: 60px;
}
.fdn_delivery .info_txt * {
    color:#fff;
}
.fdn_delivery .info_txt strong {
    font-size:42px;
    font-weight: 400;
}
.fdn_delivery .info_txt p {
    margin-top: 30px;
    font-size:32px;
    font-weight: 700;
    line-height: 1.5;
}
.fdn_delivery .info_txt p span {
    color:#d51a1a;
}
.fdn_delivery .bg_box {
    position:absolute;
    top:-100px;
    left:0;
    width:100%;
    opacity: 0;
    transition: 2s;
}
.fdn_delivery .bg_box.action {
    top:0;
    opacity: 1; 
}

/* claen */
.fdn_clean {
    padding:40px 0;
    background-color:#8e2727;
}
.fdn_clean .inner {
    display: flex;
    align-items: center;
}
.fdn_clean .img_box {
    flex:0 0 auto;
    margin-right: 60px;
    box-shadow: 4px 7px 9.36px 3.64px rgba(0, 0, 0, 0.23);
}
.fdn_clean .txt_box {
    width:100%;
}
.fdn_clean .txt_box .star {
    font-size:42px;
    font-weight: 700;
    color:#f0b618;
}
.fdn_clean .txt_box strong {
    display: block;
    margin:20px 0 15px;
    font-size:42px;
    font-weight: 400;
    color:#ffffff;
    line-height: 1;
}
.fdn_clean .txt_box .main_cont {
    font-size:32px;
    color:#ffffff;
    line-height: 1.3;
}
.fdn_clean .txt_box .main_cont b {
    color:#f0b618;
}
.fdn_clean .txt_box .sub_cont {
    display: inline-block;
    margin:20px 0 13px;
    padding:5px 20px;
    font-size:18px;
    font-weight: 700;
    color:#333333;
    line-height: 1.3;
    background-color:#fff;
    border-radius:20px;
}
.fdn_clean .txt_box .logo_box {
    text-align: right;
}

/* town */
.fdn_town {
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
    min-height: 900px;
}
.fdn_town:before {
    content:'';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,.5);
    z-index: -8;
}
.fdn_town:after {
    content:'';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 70%, rgba(0,0,0,1) 100%);
    z-index: -9;
}
.fdn_town .video_wrap {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -10;
}
.fdn_town .txt_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateY(50px);
    opacity: 0;
    transition: .7s;
}
.fdn_town .txt_box.action {
    transform: translateY(0);
    opacity: 1;
}
.fdn_town .txt_box * {
    color:#fff;
}
.fdn_town .txt_box strong {
    margin-top: 20px;
    font-size:42px;
    font-weight: 400;
}
.fdn_town .txt_box p {
    margin:30px 0;
    font-size:32px;
}
.fdn_town .txt_box span {
    font-size:18px;
    line-height:1.3;
}

/* qna */
.fdn_qna {
    padding-bottom: 160px;
    background-color:#000;
}
.fdn_qna .qna_list li {
    margin-bottom: 10px;
}
.fdn_qna .question {
    display: flex;
    align-items: flex-start;
    width:100%;
    padding:23px 40px;
    border:1px solid #cccccc;
    box-sizing:border-box;
    transition: .5s;
}
.fdn_qna .question:hover {
    background-color:#999999;
    border-color:#999999;
}
.fdn_qna .question .ico {
    flex:0 0 auto;
    margin-right: 12px;
    font-size: 0;
}
.fdn_qna .question p {
    font-size:18px;
    font-weight: 700;
    color:#fff;
    line-height: 1.33;
    text-align: left;
}
.fdn_qna .answer {
    display: none;
    align-items: flex-start;
    margin-top: 10px;
    padding:23px 40px;
    background-color:#fff;
    border:1px solid #cccccc;
}
.fdn_qna .answer.active {
    display: flex;
}
.fdn_qna .answer .ico {
    flex:0 0 auto;
    margin-right: 12px;
    font-size: 0;
}
.fdn_qna .answer p {
    font-size:18px;
    color:#555555;
    line-height: 1.5;
}


/* board */
.board {
    padding:160px 0;
}
.board .tab_box {
    margin:30px 0 80px;
}
.board .tab_box ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.board .tab_box li + li {
    margin-left: 10px;
}
.board .tab_box a {
    display: block;
    width:180px;
    font-size:18px;
    font-weight: 500;
    color:#999999;
    line-height: 58px;
    border:1px solid #cccccc;
    border-radius:30px;
    text-align: center;
    transition:.5s;
}
.board .tab_box .active a,
.board .tab_box li:hover a {
    color:#ffffff;
    border-color:#d51a1a;
    background-color:#d51a1a;
}
.board .sns_tab ul {
    display: flex;
}
.board .sns_tab li {
    width:50%;
    border-bottom:2px solid #cccccc;
    transition:.5s;
}
.board .sns_tab li.active,
.board .sns_tab li:hover {
    border-color:#d51a1a;
}
.board .sns_tab a {
    display: block;
    padding:10px;
    font-size:18px;
    font-weight: 500;
    color:#999999;
    text-align: center;
    transition:.5s;
}
.board .sns_tab li.active a,
.board .sns_tab li:hover a {
    color:#333333;
}

/* list_type */
.board .list_type ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.board .list_type li {
    width:calc(33.33% - 28px);
    margin-right: 42px;
    margin-bottom: 60px;
    transition:.5s;
}
.board .list_type ul li:nth-of-type(3n+0) {
    margin-right: 0;
}
.board .list_type .img_box {
    position:relative;
    overflow:hidden;
    width:100%;
    /* height:320px; */
}
.board .list_type .img_box img {
    /* position:absolute;
    top:0;
    left:0;
    object-fit:cover; */
    width:100%;
    height:100%;
    object-fit: cover;
    transition:.5s;
}
.board .list_type .txt_box {
    padding:30px;
    border:1px solid #dddddd;
    border-top: none;
}
.board .list_type .txt_box .title {
    display: block;
    font-size:18px;
    font-weight: 700;
    color:#999999;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.board .list_type .txt_box .content {
    min-height:48px;
    margin:15px 0 25px;
    color:#999999;
    line-height: 1.5;
    display:-webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.board .list_type .txt_box .date {
    display: block;
    font-size:14px;
    color:#999999;
    text-align: right;
}
.board .list_type li:hover {
    box-shadow: 3px 5px 8.64px 0.36px rgba(0, 0, 0, 0.12);
}
.board .list_type li:hover .title {
    color:#d51a1a;
}
.board .list_type li:hover .content {
    color:#555555;
}
.board .list_type li:hover .img_box img {
    transform:scale(1.4);
}

/* list_type02 */
.board .list_type02 ul {
    margin-bottom: 80px;
}
.board .list_type02 li {
    margin-bottom: 40px;
    transition:.5s;
}
.board .list_type02 li a {
    display: flex;
}
.board .list_type02 .img_box {
    flex:0 0 auto;
    position:relative;
    overflow:hidden;
    width:280px;
    height:200px;
}
.board .list_type02 .img_box img {
    position:absolute;
    top:0;
    left:0;
    object-fit: cover;
    transition:.5s;
}
.board .list_type02 .txt_box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width:calc(100% - 320px);
    margin-left: 40px;
    padding-bottom: 40px;
    border-bottom:1px solid #dddddd;
}
.board .list_type02 .txt_box .title {
    display: block;
    font-size:24px;
    font-weight: 700;
    color:#999999;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.board .list_type02 .txt_box .content {
    min-height:48px;
    color:#999999;
    line-height: 1.5;
    display:-webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.board .list_type02 .txt_box .date {
    display: block;
    font-size:16px;
    color:#999999;
}
.board .list_type02 li:hover .txt_box {
    border-color:#d51a1a;
}
.board .list_type02 li:hover .title {
    color:#d51a1a;
}
.board .list_type02 li:hover .content {
    color:#555555;
}
.board .list_type02 li:hover .img_box img {
    transform:scale(1.4);
}

/* list_type03 */
.board .list_type03 ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin:68px 0 80px;
}
.board .list_type03 li {
    width:calc(25% - 15px);
    margin-right: 20px;
    margin-bottom: 20px;
    transition:.5s;
}
.board .list_type03 li:nth-of-type(4n+0) {
    margin-right: 0;
}
.board .list_type03 li a {
    position:relative;
}
.board .list_type03 .img_box {
    flex:0 0 auto;
    position:relative;
    overflow:hidden;
    width:100%;
    padding-top: 100%;
}
.board .list_type03 .img_box img {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit: cover;
    transition:.5s;
}
.board .list_type03 .txt_box {
    display: flex;
    align-items: center;
    justify-content: center;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    padding:30px;
    box-sizing:border-box;
    opacity:0;
    transition:.5s;
}
.board .list_type03 .txt_box .content {
    min-height:72px;
    font-weight: 500;
    color:#ffffff;
    line-height: 1.5;
    display:-webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.board .list_type03 .txt_box .icon {
    position:absolute;
    top:30px;
    left:30px;
}
.board .list_type03 li:hover .txt_box {
    opacity:1;
}
.board .list_type03.insta_list .txt_box {
    background:linear-gradient(60deg, rgba(255,246,0,.6) 0%, rgba(255,0,96,.6) 51%, rgba(108,0,255,.6) 90%);
}
.board .list_type03.blog_list .txt_box {
    background-color:rgba(3,199,90,.6);
}
.board .sns_list_wrap .sns_list {
    display: none;
}
.board .sns_list_wrap .sns_list.active {
    display:block;
}

/* view_type */
.board .view_type .view_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom:40px;
    border-bottom:1px solid #222222;
}
.board .view_type .view_top .title {
    font-size:24px;
    font-weight: 500;
    color:#333333;
    line-height: 1.3;
}
.board .view_type .view_top .date {
    flex:0 0 auto;
    margin-left: 20px;
    font-size:20px;
    color:#999999;
}
.board .view_type .view_file {
    padding:20px 40px;
    margin-top: 40px;
    background-color:#f5f5f5;
}
.board .view_type .view_file dl {
    display: flex;
    align-items: flex-start;
}
.board .view_type .view_file dt {
    margin-right: 40px;
    font-size:18px;
    font-weight: 700;
    color:#333333;
    line-height: 1.5;
}
.board .view_type .view_file dd {
    display: flex;
    flex-direction: column;
}
.board .view_type .view_file span {
    font-size: 18px;
    color:#999999;
    line-height: 1.5;
}
.board .view_type .view_file a {
    font-size: 18px;
    color:#333;
    line-height: 1.5;
}
.board .view_type .view_mid {
    padding:80px 0;
    border-bottom:1px solid #cccccc;
}
.board .view_type .view_mid .content {
    font-size:18px;
    color:#333333;
    line-height: 1.5;
}



/* responsive */

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

    /* introduce */
    .intro_interior .plate_img {
        max-width:300px;
    }

    .intro_feature .list_box {
        flex-direction: column;
        height:auto !important;
    }
    .intro_feature .list_box + .list_box {
        margin-top:50px;
    }
    .intro_feature .img_box {
        position:relative;
        top:inherit;
        left:inherit;
    }
    .intro_feature .txt_box {
        padding:0 30px;
    }
    .intro_feature .txt_box span {
        margin:15px 0;
    }
    .intro_feature .list_box:nth-child(odd) .txt_box_wrap {
        justify-content: inherit;
    }
    .intro_feature .list_box:nth-child(odd) .txt_box {
        width:100%;
        margin:0;
    }
    .intro_feature .list_box:nth-child(even) .txt_box {
        width:100%;
        margin:0;
        text-align: left;
    }
    .intro_feature .list_box:nth-child(even) {
        flex-direction: column-reverse;
    }
    .intro_feature .txt_box_wrap {
        position:initial;
    }
    .intro_feature .plate_img {
        top:inherit;
        bottom:200px;
        left:0;
    }

    .intro_bi .palette_box .code_box {
        flex-wrap: wrap;
    }
    .intro_bi .palette_box .code_box .box_wrap {
        width:calc(50% - 20px);
        margin-right: 40px;
        margin-bottom: 20px;
    }
    .intro_bi .palette_box .code_box .box_wrap + .box_wrap {
        margin-left: 0;
    }
    .intro_bi .palette_box .code_box .box_wrap:nth-of-type(2n+0) {
        margin-right: 0;
    }

    .intro_effort .ltor .img_box {
        left:-15px;
    }
    .intro_effort .rtol .img_box {
        right:-15px;
    }

}

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

    /* introduce */
    .intro_ceo {
        flex-direction: column;
    }
    .intro_ceo .txt_box {
        width: 100%;
        padding-top: 20px;
        padding-right: 3.125%;
    }
    .intro_interior .plate_img {
        top:-186px;
    }

    /* foundation */
    .fdn_support .img_box {
        width:40vw;
        height:40vw;
    }
    .fdn_support .txt_box {
        margin: 0 20px 0 40px;
    }
    .fdn_support .txt_box .step {
        width:220px;
    }
    .fdn_support .txt_box .step p {
        margin-left: 15px;
        font-size:22px;
    }
    .fdn_support .txt_box .txt {
        font-size:16px;
    }

    .fdn_compare .feature_list li + li {
        margin-left: 30px;
    }
    .fdn_compare .feature_list p {
        font-size:27px;
    }

}

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

    /* common */
    .sub .ttl_box h2 {
        font-size: 31px;
    }
    .sub .ttl_box .sub_ttl {
        margin-top:20px;
        font-size: 16px;
    }

    .scroll_down p {
        font-size: 11px;
    }

    /* banner */
    .banner .inner {
        width:100%;
    }
    .banner_box {
        margin-top: 80px;
    }
    .banner_box a {
        flex-direction: column;
        padding:30px 15px;
    }
    .banner_box strong {
        margin: 0;
        text-align: center;
    }
    .banner_box i {
        /* width:270px; */
        margin: 30px 0;
    }
    .banner_box .more_link {
        margin: 0;
        padding:14px 49px 14px 12px;
        font-size: 14px;
        color:#d51a1a;
        border-radius:20px;
        background:#fff url(../img/common/ico_arrow_right_red.png) no-repeat right 16px center / 12px;
    }

    /* store */
    .store {
        padding:130px 0;
    }
    .store_list .ttl_box {
        margin-bottom: 40px; 
    }
    .store_list .filter_box {
        flex-wrap: wrap;
        justify-content: center;
    }
    .store_list .filter_box .filter_wrap + .filter_wrap {
        margin-left: 0;
    }
    .store_list .filter_box .filter_wrap {
        width: calc(33.33% - 6px);
        margin-right: 9px;
        margin-bottom: 15px;
    }
    .store_list .filter_box .filter_wrap:nth-child(3n+0) {
        margin-right: 0;
    }
    .store_list .filter_box .filter_wrap input + label {
        padding: 70px 0 25px;
        border-radius: 8px;
        font-size: 14px;
        background-size: 36px;
    }
    .store_list .location_box {
        flex-wrap: wrap;
        margin-top: 25px;
    }
    .store_list .location_box .form_box {
        width:calc(50% - 5px);
        margin-bottom: 10px;
    }
    .store_list .location_box .form_box:first-of-type {
        margin-right: 10px;
    }
    .store_list .location_box .form_box + .form_box {
        margin-left: 0;
    }
    .store_list .location_box .loc_btn {
        width: 100%;
        height: 45px;
        background-size: 16px;
    }
    .store_list .location_box .loc_list li a {
        font-size: 14px;
        line-height: 40px;
    }
    .store_list .location_box .result_form {
        width:100%;
    }
    .store_list .location_box .search_detail input {
        height:45px;
        padding:0 60px 0 15px;
    }
    .store_list .location_box .search_detail .search_btn {
        width:45px;
        height:45px;
        background-size:16px;
    }
    .store_list .list_box {
        margin:70px 0;
    }
    .store_list .list_box ul li {
		flex-direction: column;
        margin-bottom: 60px;
    }
    .store_list .list_box .img_box {
        width:100%;
        margin-right: 0;
        margin-bottom: 40px;
    }
    .store_list .list_box .img_box img {
        position: inherit;
    }

    .store .list_box .txt_box .store_name {
        padding-left: 34px;
        background-size: 24px;
    }
    .store .list_box .txt_box dl {
        flex-direction: column;
    }
    .store .list_box .txt_box dl + dl {
        margin-top: 15px;
    }
    .store .list_box .txt_box dl dt {
        width: 100%;
        margin-bottom: 5px;
    }
    .store .list_box .txt_box .store_service {
        margin-top: 5px;
    }
    .store .list_box .txt_box .delivery_list {
        margin-top: 20px;
    }

    .store_view .store_ttl p {
        font-size: 26px;
    }
    .store_view .slide_wrap {
        margin:40px 0;
    }
    .store_view .slick-track {
        display: flex;
        align-items: center;
    }
    .store_view .slide_box img {
        height:auto;
    }
    .store_view .view_wrap {
        margin-top: 80px;
    }
    .store_view .list_box {
        flex-direction: column;
    }
    .store_view .list_box .map_box {
        width:100%;
        height:160px;
        margin-bottom: 40px;
        margin-right: 0;
    }
    .store_view .slick-arrow {
        width:30px;
        height:40px;
        background-size: 10px;
    }

    /* menu */
    .menu .best {
        height:auto;
        min-height:100vh;
        padding:130px 0 40px;
    }
    .menu .best .ttl_box {
        margin-bottom: 60px;
    }
    .menu .best h2 strong {
        font-size: 30px;
    }
    .menu .best .tab_box {
        margin-bottom: 40px;
    }
    .menu .best .tab_box button {
        width:130px;
        height:40px;
        font-size:14px;
    }
    .menu .best .slide_box .box_wrap {
        flex-direction: column;
    }
    .menu .best .txt_box {
        margin-bottom: 30px;
    }
    .menu .best .txt_box .name * {
        font-size: 26px;
    }
    .menu .best .txt_box .name .rank {
        font-size: 26px;
    }
    .menu .best .txt_box .name_info {
        font-size: 18px;
    }
    .menu .best .img_box {
        max-width: 500px;
        margin:0 auto;
    }
    .menu .scroll_down {
        display: none;
    }
    .menu .slick-dots {
        display: flex;
        justify-content: center;
    }
    .menu .slick-dots li + li {
        margin-left: 10px;
    }
    .menu .slick-dots li button {
        width:12px;
        height:12px;
        font-size: 0;
        border-radius: 50%;
        background-color:#fff;
        transition: .5s;
    }
    .menu .slick-dots .slick-active button {
        width:40px;
        border-radius: 6px;
        background-color:#d51a1a;
    }
    .menu .menu_list {
        padding:80px 0 120px
    }
    .menu .menu_list .tab_box {
        flex-wrap: wrap;
        margin-bottom: 70px;
    }
    .menu .menu_list .tab_box button + button {
        margin-left: 0;
    }
    .menu .menu_list .tab_box button {
        width:130px;
        height:40px;
        margin-right: 10px;
        margin-bottom: 10px;
        font-size: 14px;
    }
    .menu .menu_list .list_box {
        flex-direction: column;
    }
    .menu .menu_list .list_box .menu_box {
        width:100%;
        margin-right: 0;
    }
    .menu .menu_list .menu_box .txt_box {
        height:auto;
        padding-bottom: 30px;
    }
    .menu .menu_list .list_box .season_menu:before {
        border-top-width: 128px;
        border-right-width: 130px;
    }
    .menu .menu_list .list_box .season_menu:after {
        content:'계절\A메뉴';
        white-space: pre;
        line-height: 1.16;
        top:14px;
        left:13px;
    }


    /* introduce */
    .comp_visual .txt_box {
        position:relative;
        z-index: 1;
    }
	.intro_visual {
		position:relative;
		height:80vh;
		background:url('../img/sub/introduce_visual_mo.jpg') no-repeat center / cover;
	}
    .intro_visual .txt_box p {
        font-size: 31px;
    }
	.intro_visual .scroll_down {
		bottom:0;
	}
    .intro_visual .txt_box strong {
        font-size: 41px;
    }
    .comp_visual {
        align-items: flex-start;
        flex-direction: column-reverse;
        /* height:auto; */
    }
    .comp_visual .txt_box strong {
        font-size: 31px;
        line-height: 1.41;
    }
    .comp_visual .txt_box strong {
        padding-bottom: 10px;
    }
    .comp_visual .txt_box p {
        margin-top: 15px;
        font-size: 18px;
        line-height:1.5;
    }
    .comp_visual .img_box {
        position:relative;
        top:inherit;
        left:inherit;
        transform: translateX(-150px);
        width:62.133vw;
        margin-top:-10vw;
    }
    .comp_visual .img_box img {
        height: auto;
    }

    .intro_feature {
        padding:50px 0 180px;
    }
    .intro_feature .list_box:nth-child(odd) {
        align-items: flex-start;
        flex-direction: column;
    }
    .intro_feature .list_box:nth-child(even) {
        align-items: flex-end;
        flex-direction: column-reverse;
    }
    .intro_feature .list_box:nth-child(odd) .txt_box {
        width:100%;
        margin-left: 0;
        margin-top: 40px;
    }
    .intro_feature .list_box:nth-child(even) .txt_box {
        width:100%;
        margin-right: 0;
        margin-top: 40px;
    }
    .intro_feature .txt_box strong {
        font-size: 31px;
    }
    .intro_feature .plate_img {
        width:100%;
    }
    .intro_feature .plate_img .plate {
        width:76vw;
        margin:0 auto;
    }
    .intro_feature .plate_img .fog_box {
        left:17.333vw;
        bottom:17.067vw;
    }
    .intro_feature .img_box {
        width:100%;
    }
    .intro_feature .img_box img {
        width:100%;
    }
    .intro_feature .list_box + .list_box {
        margin-top:150px;
    }

    .comp_info .txt_box {
        padding:0 15px;
        font-size: 31px;
        line-height: 1.41;
        word-break: keep-all;
    }

    .intro_effort {
        padding-bottom: 40px;
    }
    .intro_effort .inner {
        width:100%;
    }
    .intro_effort .txt_box {
        max-width: 100%;
        margin:30px 15px 0;
    }
    .intro_effort .effort_box {
        margin-top:40px;
    }
    .intro_effort .effort_box li {
        padding:8.333vw 0;
    }
    .intro_effort .effort_box .ltor {
        flex-direction: column;
        align-items: flex-start;
    }
    .intro_effort .effort_box .rtol {
        flex-direction: column-reverse;
        align-items: flex-end;
    }
    .intro_effort .ltor .img_box {
        position: relative;
        top: inherit;
        width: calc(100% + 30px);
    }
    .intro_effort .ltor .txt_box {
        margin-left: 15px;
    }
    .intro_effort .rtol .img_box {
        position: relative;
        top: inherit;
        width: calc(100% + 30px);
    }
    .intro_effort .rtol .txt_box {
        margin-right: 15px;
    }
    .intro_effort .lsbox .txt_box {
        margin:40px 15px 0;
    }
	.intro_effort .effort_video {
		height:60vh;
	}

    .intro_ceo {
        padding-top: 40px;
    }
    .intro_ceo .ttl_box {
        margin-bottom: 30px;
    }
    .intro_ceo .txt_box {
        padding:40px 15px 0;
    }
    .intro_ceo .txt_box .ceo_sign {
        bottom:0;
        right:15px;
        width:250px;
    }

    .intro_interior .plate_img {
        top:-125px;
        max-width: 224px;
        right:-100px;
    }
    .intro_interior .tab_box {
        margin:30px 0 40px;
    }
    .intro_interior .tab_box .interior_btn {
        width:130px;
        height:40px;
        font-size: 14px;
    }
    .intro_interior .slick-arrow {
        width:30px;
        height:50px;
        background-size: 15px;
    }
    .intro_interior .info_box {
        flex-direction: column;
        padding:40px 15px;
    }
    .intro_interior .info_box .img_box {
        width:170px;
    }
    .intro_interior .info_box .txt_box {
        padding:0;
        padding-top: 40px;
        text-align: center;
    }

    .intro_video .video_wrap {
        padding-top: 70vh;
    }
    .intro_video .video_wrap video {
        height:100%;
        object-fit: cover;
    }
    .intro_video .txt_box {
        width:calc(100% - 30px);
    }
    .intro_video .txt_box p {
        font-size: 31px;
    }

    .intro_bi {
        padding-bottom:100px;
    }
    .intro_bi .color_bg_box {
        margin:40px 0;
    }
    .intro_bi .color_bg_box .logo_box {
        padding:70px 0;
    }
    .intro_bi .color_bg_box .basic_color .logo_box {
        background-size:9px 9px;
    }
    .intro_bi .color_bg_box .basic_color .logo_box img {
        width:160px;
    }
    .intro_bi .palette_box .code_box .box_wrap {
        align-items: flex-start;
        flex-direction: column;
        width:calc(50% - 10px);
        margin-right:20px;
        margin-bottom: 30px;
    }
    .intro_bi .palette_box .code_box .version {
        margin-top:15px;
    }
    .intro_bi .color_guide {
        margin-top:30px;
    }
    .intro_bi .palette_box .color {
        width:50px;
        height:50px;
    }


    .intro_mean {
        padding:0 0 90px;
    }
    .intro_mean .video_box {
        width:43%;
        height:auto;
    }
    .intro_mean .video_box .txt_wrap {
        align-items: flex-start;
    }
    .intro_mean .video_box .txt_wrap strong {
        padding:10px 0;
        font-size: 140px;
    }
    .intro_mean .mean_txt_box .txt_wrap {
        padding:32px 0;
        font-size: 31px;
        line-height: 1.41;
    }
    .intro_mean .mean_txt_box .txt_wrap strong {
        display: block;
    }
    .intro_mean .btm_txt {
        font-size: 31px;
    }

    /* foundation */
    .fdn_visual {
        padding: 29.333vw 0 24vw;
        background: url(../img/sub/foundation_visual_mo.jpg) no-repeat center / cover;
    }
    .fdn_visual .top_txt p {
        font-size: 31px;
        line-height: 1.3;
    }
    .fdn_visual .btm_box {
        position:inherit;
    }
    .fdn_visual .btw_txt p {
        display: none;
    }
    .fdn_visual .btm_txt p {
        font-size:20px;
    }
    .fdn_visual .mid_box {
        margin:30px 0;
    }
    .fdn_visual .slick-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        position:absolute;
        bottom:-10.667vw;
        left:50%;
        transform: translateX(-50%);
        width:100%;
    }
    .fdn_visual .slick-dots li {
        margin:0 5px;
        font-size:0;
    }
    .fdn_visual .slick-dots button {
        width:12px;
        height:12px;
        font-size: 0;
        background-color:#fff;
        border-radius: 50%;
        transition: .5s;
    }
    .fdn_visual .slick-dots .slick-active button {
        width:40px;
        background-color:#d51a1a;
        border-radius:6px;
    }
    .fdn_visual .img_box {
        max-width:62vw;
        margin:0;
    }
    .fdn_visual .fog_box .fog_effect img {
        max-width: 40vw;
    }

    .fdn_interview {
        padding-top:80px;
    }
    .fdn_interview .tab_box {
        margin:30px 0 40px;
    }
    .fdn_interview .tab_box .interview_btn {
        width:130px;
        height:40px;
        font-size:14px;
        margin: 0 5px 10px;
    }
    .fdn_interview .cont_box {
        flex-direction: column;
    }
    .fdn_interview .intvw_box .img_box {
        width:100%;
        height:340px;
    }
    .fdn_interview .intvw_box .img_box .store_img {
        width:100%;
        height:100%;
    }
    .fdn_interview .intvw_box .img_box .store_img img {
        width:100%;
        height:100%;
        object-fit: cover;
    }
    .fdn_interview .intvw_box .flow_wrap {
        height:60px;
    }
    .fdn_interview .intvw_box .txt_box {
        width:100%;
        margin: 0;
        margin-top: 30px;
        padding: 95px 15px 50px;
    }
    .fdn_interview .intvw_box .name {
        font-size: 31px;
    }
    .fdn_interview .intvw_box .summary {
        margin: 20px 0;
        line-height: 1.3;
    }
    .fdn_interview .intvw_box .txt_box:before {
        width:80px;
        height:64px;
        left:-8px;
    }
    .fdn_interview .intvw_box .txt_box:after {
        width:80px;
        height:64px;
        right:-8px;
    }
	.fdn_interview .ad_guide_txt {
		right:20px;
		font-size: 13px;
	}

    .fdn_seq {
        padding:40px 0 120px;
    }
    .fdn_seq .seq_box {
        margin-top:50px;
        padding:30px 15px;
    }
    .fdn_seq .seq_box li {
        width:50%;
        padding:0;
        margin-bottom:40px;
    }
    .fdn_seq .seq_box .ico {
        display: block;
        max-width:120px;
        margin:0 auto;
    }
    .fdn_seq .seq_box li:not(:first-child):before {
        top: calc(50% - 26px);
        left:-7px;
        width:15px;
        height:12px;
    }
    .fdn_seq .seq_box li:nth-child(odd):before {
        display: none;
    }
    .fdn_seq .txt_box {
        margin-top:10px;
    }
    .fdn_seq .txt_box .step {
        font-size: 16px;
    }
    .fdn_seq .txt_box .cont {
        font-size:16px;
    }

    .fdn_support {
        padding:80px 0 130px;
    }
    .fdn_support:before {
        width:100%;
        height:100%;
        background: url(../img/sub/foundation_support_bg_mo.jpg) no-repeat center center / cover;
        z-index: 0;
    }
    .fdn_support .ttl_box {
        margin-bottom: 30px;
    }
    .fdn_support .support_box {
        display: block;
    }
    .fdn_support .img_box {
        width:auto;
        height:auto;
        margin:0 auto;
    }
    .fdn_support .img_box .plate_box {
        position:relative;
        top:inherit;
        transform: inherit;
        opacity:1 !important;
    }
    .fdn_support .img_box img {
        display: block;
        max-width:265px;
        margin:0 auto;
    }
    .fdn_support .slick-active .box_wrap {
        opacity: 1;
    }
    .fdn_support .txt_box .step {
        justify-content: center;
        width:auto;
    }
    .fdn_support .txt_box {
        margin:40px 0 0 0;
    }
    .fdn_support .txt_box .step span {
        font-size:31px;
    }
    .fdn_support .txt_box .txt {
        margin-top: 20px;
        padding: 0 15px;
        text-align: center;
    }
    .fdn_support .slick-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        position:absolute;
        bottom:-40px;
        left:50%;
        transform: translateX(-50%);
        width:100%;
    }
    .fdn_support .slick-dots li {
        margin:0 5px;
        font-size:0;
    }
    .fdn_support .slick-dots button {
        width:12px;
        height:12px;
        font-size: 0;
        background-color:#fff;
        border-radius: 50%;
        transition: .5s;
    }
    .fdn_support .slick-dots .slick-active button {
        width:40px;
        background-color:#d51a1a;
        border-radius:6px;
    }

    .fdn_price {
        margin-top:120px;
        background: url(../img/sub/foundation_price_bg_mo.jpg) no-repeat center bottom / cover;
    }
    .fdn_price .price_table {
        margin-top:40px;
    }
    .fdn_price .price_table .table_wrap {
        position:relative;
    }
    .fdn_price .price_table .mobile_scroll_area {
        position:absolute;
        top:0;
        left:-15px;
        width:calc(100% + 30px);
        height:100%;
        background-color: rgba(0,0,0,.5);
        opacity:1;
    }
    .fdn_price .price_table .mobile_scroll_area.hide {
        opacity: 0;
        z-index: -2;
        transition: all 1s ease;
    }
    .fdn_price .price_table .mobile_scroll_area .area_inner {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width:100%;
        height:100%;
    }
    .fdn_price .price_table .mobile_scroll_area .ico {
        width:35px;
    }
    .fdn_price .price_table .mobile_scroll_area p {
        margin-top: 15px;
        font-size: 14px;
        font-weight: 500;
        color: #fff;
    }
    .fdn_price .price_table .table_inner {
        position: relative;
        left: -15px;
        width: calc(100% + 30px);
        padding: 0 15px;
        white-space: nowrap;
        overflow-x: auto;
    }
    .fdn_price .price_table table {
        min-width:850px;
    }
    .fdn_price .price_table table th {
        padding:10px 0;
        font-size:13px;
    }
    .fdn_price .price_table table td {
        padding:15px 7px;
        font-size:13px;
    }

    .fdn_cost {
        padding-top: 0;
        margin-top: -30px;
    }
    .fdn_cost .ttl_box .glow_txt {
        font-size:61px;
    }
    .fdn_cost .img_box {
        margin-top: 70px;
    }
    .fdn_cost .img_box .best_pic .pic_box {
        width:58.667vw;
    }
    .fdn_cost .img_box .best_pic .pic_box.pic01,
    .fdn_cost .img_box .best_pic .pic_box.pic03 {
        width:45.267vw;
    }
    .fdn_cost .img_box .best_pic .pic01 {
        right:-20vw;
    }
    .fdn_cost .img_box .best_pic .pic02 {
        top:10vw;
    }
    .fdn_cost .img_box .best_pic .pic03 {
        left:-20vw;
    }
    .fdn_cost .img_box .pic01 .fog01 {left:6.013vw; bottom:8.463vw;}
    .fdn_cost .img_box .pic01 .fog02 {left:6.013vw; bottom:21.826vw;}
    .fdn_cost .img_box .pic02 .fog01 {left:9.131vw; bottom:15.813vw;}
    .fdn_cost .img_box .pic02 .fog02 {left:11.804vw; bottom:18.263vw;}
    .fdn_cost .img_box .pic03 .fog01 {left:11.581vw; bottom:12.472vw;}
    .fdn_cost .img_box .pic03 .fog02 {left:10.913vw; bottom:25.167vw;}
    @keyframes slide-in-bottom {
        0% {
            transform: translateY(10px);
            opacity: 0;
        }
        50% {
            transform: translateY(0px);
            opacity: 1;
        }
        80% {
            opacity: 0.5;
        }
        100% {
            opacity:0;
        }
    }

    .fdn_compare {
        padding-bottom: 80px;
    }
    .fdn_compare .feature_list {
        margin-top: 40px;
    }
    .fdn_compare .feature_list ul {
        flex-direction: column;
    }
    .fdn_compare .feature_list li {
        max-width: 220px;
        border-width: 10px;
    }
    .fdn_compare .feature_list p {
        font-size: 24px;
    }
    .fdn_compare .feature_list li + li {
        margin-left: 0;
        margin-top: 30px;
    }

    .fdn_delivery {
        flex-direction: column;
        padding:0 0 80px;
    }
    .fdn_delivery .capture_box {
        width:100%;
        min-width: inherit;
    }
    .fdn_delivery .capture_box .swiper {
        padding:80px 0;
    }
    .fdn_delivery .swiper-pagination {
        bottom:110px;
        padding:0;
        text-align: center;
    }
    .fdn_delivery .info_box {
        margin:0;
        padding:0;
        padding:0 15px;
    }
    .fdn_delivery .app_logo_wrap {
        justify-content: center;
    }
    .fdn_delivery .app_logo_box {
        width:44px;
        margin-right: 10px;
    }
    .fdn_delivery .info_txt {
        margin-top: 20px;
        text-align: center;
    }
    .fdn_delivery .info_txt strong {
        font-size: 31px;
    }
    .fdn_delivery .info_txt p {
        margin-top: 20px;
        font-size: 24px;
    }

    .fdn_town {
        min-height: inherit;
        padding:110px 0;
        background: url('../img/sub/foundation_town_bg_mo.jpg') no-repeat center bottom / cover;
    }
    .fdn_town .video_wrap {
        display: none;
    }
    .fdn_town .txt_box .ico {
        width:46px;
    }
    .fdn_town .txt_box strong {
        font-size:31px;
    }
    .fdn_town .txt_box p {
        font-size:24px;
    }
    .fdn_town .txt_box span {
        font-size:16px;
    }

    .fdn_inq {
        padding-top: 30px;
    }
    .fdn_inq .agree_box {
        padding:15px;
        margin:40px 0 20px;
    }
    .fdn_inq .agree_box input[type="checkbox"] + label {
        font-size:16px;
        line-height: 1.5;
        background-size:24px;
    }
    .fdn_inq .agree_box .pop_agree_btn {
        padding-left: 15px;
        font-size:14px;
    }
    .fdn_inq .form_box {
        padding-bottom: 30px;
    }
    .fdn_inq .form_box .input_box.input_cont_mo {
        align-items: flex-start;
    }
    .fdn_inq .form_box .input_box .label {
        font-size:16px;
        line-height: 45px;
    }
    .fdn_inq .form_box .input_wrap {
        flex-wrap: wrap;
    }
    .fdn_inq .form_box .input_wrap input {
        height:45px;
        padding:0 10px;
        font-size:15px;
    }
    .fdn_inq .location_box + .location_box {
        margin-left: 0;
        margin-top: 10px;
    }
    .fdn_inq .location_box .loc_btn {
        height:45px;
        font-size:15px;
        padding:0 10px;
        background-size:18px;
        background-position: right 10px center;
    }
    .fdn_inq .location_box .loc_list li a {
        padding:0 10px;
        font-size:15px;
        line-height: 45px;
    }
    .fdn_inq .location_box .loc_list.active {
        z-index: 9;
    }
    .fdn_inq .form_box .input_wrap textarea {
        height:90px;
        padding:10px 15px;
    }
    .fdn_inq .btn_box {
        margin-top: 40px;
    }
    .fdn_inq .inq_btn {
        width:130px;
        font-size:14px;
        line-height: 45px;
    }

    .fdn_clean {
        padding:20px 0;
    }
    .fdn_clean .inner {
        flex-direction: column;
    }
    .fdn_clean .img_box {
        width:150px;
        margin-right: 0;
        margin-bottom: 30px;
    }
    .fdn_clean .txt_box {
        text-align: center;
    }
    .fdn_clean .txt_box .star {
        font-size:31px;
    }
    .fdn_clean .txt_box strong {
        font-size: 31px;
    }
    .fdn_clean .txt_box .main_cont {
        font-size:24px;
    }
    .fdn_clean .txt_box .main_cont b {
        display: block;
    }
    .fdn_clean .txt_box .sub_cont {
        margin-bottom: 60px;
        padding:5px 15px;
        font-size:16px;
        border-radius: 30px;
    }
    .fdn_clean .txt_box .logo_box {
        width:110px;
        margin:0 auto;
    }

    .fdn_qna {
        padding-bottom: 80px;
    }
    .fdn_qna .question {
        padding:15px 20px;
    }
    .fdn_qna .question .ico {
        width:20px;
    }
    .fdn_qna .question p {
        font-size: 16px;
    }
    .fdn_qna .answer {
        padding:15px 20px;
    }
    .fdn_qna .answer .ico {
        width:20px;
    }
    .fdn_qna .answer p {
        font-size: 16px;
    }


    /* board */
    .board {
        padding:130px 0 90px;
    }
    .board .tab_box {
        margin:25px 0 80px;
    }
    .board .tab_box ul {
        flex-wrap: wrap;
    }
    .board .tab_box li {
        margin: 5px;
    }
    .board .tab_box li + li {
        margin-left: 5px;
    }
    .board .tab_box a {
        width:130px;
        font-size: 14px;
        line-height: 42px;
        border-radius: 30px;
    }

    .board .sns_tab li {
        border-width: 1px;
    }
    .board .sns_tab a {
        font-size: 14px;
    }

    .board .list_type li {
        margin-right: 0;
        margin-bottom: 70px;
        width:100%;
    }
    .board .list_type .img_box {
        height:240px;
    }
    .board .list_type .txt_box {
        padding:30px 15px 15px;
    }

    .board .list_type02 .img_box {
        display: none;
    }
    .board .list_type02 .txt_box {
        width:100%;
        margin-left: 0;
    }
    .board .list_type02 .txt_box .title {
        color:#000;
    }
    .board .list_type02 .txt_box .content {
        margin:40px 0;
        color:#555;
    }
    .board .list_type02 .txt_box .date {
        text-align: right;
    }

    .board .list_type03 ul {
        margin-top: 60px;
    }
    .board .list_type03 li {
        width:calc(50% - 10px);
    }
    .board .list_type03 li:nth-of-type(2n+0) {
        margin-right: 0;
    }

    .board .view_type .view_top {
        align-items: flex-end;
        flex-direction: column;
    }
    .board .view_type .view_top .date {
        margin-left: 0;
        margin-top: 10px;
    }
    .board .view_type .view_file {
        padding:15px;
        margin-top:20px;
    }
    .board .view_type .view_file dt {
        margin-right:20px;
        font-size:15px;
    }
    .board .view_type .view_file span,
    .board .view_type .view_file a {
        font-size:16px;
    }

    .view_btm .list_btn {
        width: 130px;
        font-size: 14px;
        line-height: 40px;
        border-radius: 20px;
    }
    .view_btm .prev_move span {
        margin-left: 10px;
    }
    .view_btm .next_move span {
        margin-right: 10px;
    }
    .view_btm .move_btn img {
        width:8px;
    }

}