@charset "utf-8";

/*----- Fonts ----*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&family=Roboto&display=swap');

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

     BASE COLOR

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

:root {
    --thema-color: #3C8B86;
}

#loader-bg,
.mv_container,
.body_fix .menu-wrap,
.sub_ttl::before,
.formArea .contact_btnArea input {
    background: #3C8B86;
}

.btn_link_circle {
    border: 1px #3C8B86 solid;
}

.section_ttl_en::after,
.business_wrap .right .text_box .text .nmb span,
.contactTelNum {
    color: #3C8B86;
}
.ttl_bg {
    color: rgba(60,139,134,.05);
}

/*----- Base ----*/

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    min-height: 0;
    min-width: 0;
}

:focus {
    outline: inherit;
}

html,
body {
    width: 100%;
    min-height: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    cursor: none;
}

html,
body,
p {
    font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.8px;
}
p {
    line-height: 215%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

.text_space {
    letter-spacing: .3em;
}

body,
.scroll_wrap {
    background: #fff;
}

main {
    width: 100%;
    position: relative;
    align-items: center;
    overflow: hidden;
}

#page_contents {
    background: #F6F5F1;
}

p {
    line-height: 1.8;
}

a {
    text-decoration: none;
    transition: .3s;
    cursor: none;
}

a:hover {
    cursor: none;
}

img,
video,
object {
    display: block;
    max-width: 100%;
    height: auto;
    border: none;
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.flex {
    display: flex;
}

.flex-full {
    display: flex;
}

.is-between {
    justify-content: space-between;
}

.is-end {
    justify-content: flex-end;
}

.is-center {
    justify-content: center;
}

.flex-reverse {
    flex-direction: row-reverse;
}

.align-center {
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-dr {
    -webkit-box-orient: horizontal;
  	-webkit-box-direction: reverse;
  	-ms-flex-direction: row-reverse;
  	flex-direction: row-reverse;
}

.text-c {
    text-align: center;
}

.bg_black {
    background: #222222;
}

.main_container {
    width: 100%;
    margin: 0 auto;
}

.container {
    position: relative;
    padding-top: 100px;
    padding-bottom: 60px;
}

.container .inner {
    margin-left: 6vw;
    margin-right: 6vw;
}

.container .inner_box {
    margin-left: 6vw;
    margin-right: 6vw;
}

.sub_ttl {
    position: relative;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    line-height: 100%;
    padding-left: 17px;
    margin-bottom: 25px;
}

.sub_ttl::before {
    position: absolute;
    display: block;
    left: 0;
    top: 40%;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.section_ttl_en {
    position: relative;
    font-family: effra, sans-serif;
    font-size: 74px;
    font-weight: bold;
    letter-spacing: -1px;
    line-height: 121%;
    margin-bottom: 30px;
}

.section_ttl_jp {
    font-size: 30px;
    font-weight: 700;
    line-height: 168%;
    letter-spacing: 3px;
    margin-bottom: 21px;
}
.section_ttl_jp::after {
    color: #000;
}
.ttl_bg {
    position: absolute;
    font-size: 25vw;
    font-weight: bold;
    font-family: effra, sans-serif;
}
.btn_wrap {
    margin-top: 4.6875vw;
}

.btn_link {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    position: relative;
    width: auto;
    min-width: 180px;
    height: 60px;
    border: 2px solid #eae6e4;
    padding: 0 30px;
    border-radius: 30px;
    transition: border-color .65s cubic-bezier(.39,.575,.565,1) 0s;
    overflow: hidden;
}
.btn_link .btn_txt {
    position: relative;
    display: inline-block;
    color: #000;
    padding-right: 15px;
    font-weight: bold;
}
.btn_link .btn_circle {
    position: absolute;
    top: 50%;
    right: 17px;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    border-radius: 50%;
}
.btn_link .btn_circle:after,
.btn_link .btn_circle:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #000;
}
.btn_link .btn_circle:before {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.btn_link .btn_circle:after {
    transition: opacity 0s cubic-bezier(.39,.575,.565,1) 0s,-webkit-transform 0s linear 0s;
    transition: opacity 0s cubic-bezier(.39,.575,.565,1) 0s,transform 0s linear 0s;
    transition: opacity 0s cubic-bezier(.39,.575,.565,1) 0s,transform 0s linear 0s,-webkit-transform 0s linear 0s;
}
.btn_link:hover {
    border: 2px solid #000;
}
.btn_link:hover .btn_circle:before {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: opacity .5s cubic-bezier(.39,.575,.565,1) .25s,-webkit-transform .5s cubic-bezier(.215,.61,.355,1) .25s;
    transition: opacity .5s cubic-bezier(.39,.575,.565,1) .25s,transform .5s cubic-bezier(.215,.61,.355,1) .25s;
    transition: opacity .5s cubic-bezier(.39,.575,.565,1) .25s,transform .5s cubic-bezier(.215,.61,.355,1) .25s,-webkit-transform .5s cubic-bezier(.215,.61,.355,1) .25s;
}
.btn_link:hover .btn_circle:after {
    opacity: 0;
    -webkit-transform: scale(28);
    transform: scale(28);
    transition: opacity .5s cubic-bezier(.39,.575,.565,1) 0s,-webkit-transform .65s cubic-bezier(.215,.61,.355,1) 0s;
    transition: opacity .5s cubic-bezier(.39,.575,.565,1) 0s,transform .65s cubic-bezier(.215,.61,.355,1) 0s;
    transition: opacity .5s cubic-bezier(.39,.575,.565,1) 0s,transform .65s cubic-bezier(.215,.61,.355,1) 0s,-webkit-transform .65s cubic-bezier(.215,.61,.355,1) 0s;
}
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    .flex {
        display: block;
    }
    .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .container .inner {
        margin-left: 4vw;
        margin-right: 4vw;
    }
    .section_ttl_en {
        font-size: 42px;
    }
    .section_ttl_jp {
        font-size: 20px;
    }
    .ttl_bg {
        font-size: 50vw;
    }
    .btn_wrap {
        margin-top: 50px;
    }
    .btn_link {
        max-width: none;
    }
    .btn_link_circle {
        width: 50px;
        height: 50px;
    }
}


/*----- Loading -----*/

#loader-bg {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 99999;
    position: fixed;
}

#loader {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.loading_text {
    color: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.loading_text img {
    width: 200px;
}

@media screen and (max-width: 768px) {
    .loading_text {
        font-size: 18px;
    }
}


/*----- cursor -----*/

.page {
    background: #fff;
}

.page,
.page a {
    cursor: none;
}

.cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
}

.cursor--small {
    width: 5px;
    height: 5px;
    left: -2.5px;
    top: -2.5px;
    border-radius: 50%;
    z-index: 11000;
    background: #000;
}

.cursor--canvas {
    width: 100vw;
    height: 100vh;
    z-index: 12000;
}

@media screen and (max-width: 768px) {
    .cursor--small,
    .cursor--canvas {
        display: none;
    }
}


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

.header .menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 30px 4vw;
    position: fixed;
    z-index: 1001;
    transition: .3s;
}

.menu-mobile>.menu-icon {
    width: 16px;
    max-width: 16px;
    height: 16px;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.menu-wrap {
    transition: .2s;
    position: fixed;
    top: 0;
    width: 100%;
    min-height: 100vh;
    z-index: 1000;
}

.body_scroll .menu-wrap {
    visibility: hidden;
}
.body_fix .menu-wrap {
    visibility: visible;
}

.navi_open {
    display: none;
    margin: 0 auto;
    width: 100%;
    height: 100vh;
    transition: .5s;
}

.body_fix .navi_open {
    display: block;
}

.header_logo {
    position: fixed;
    left: 4vw;
    top: 50px;
    z-index: 1002;
    mix-blend-mode: difference;
    opacity: 0;
}

.header_logo img {
    height: 35px;
}

.header_link a {
    font-size: 12px;
    letter-spacing: .2em;
    color: #222;
    font-weight: bold;
}

.body_fix .header_logo,
.body_fix .header_link a {
    color: #fff;
}

.menu .show-on-mobile {
    display: block;
    position: fixed;
    top: 50px;
    height: 100vh;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 65px;
    background: url(img/nav_bg.jpg) no-repeat;
    background-position: bottom;
    background-size: cover;
    padding-top: 20px;
}

.menu-mobile {
    position: fixed;
    right: 4vw;
    top: 30px;
    text-indent: 100%;
    white-space: nowrap;
    background: #fff;
    border-radius: 50%;
    padding: 28px;
    border: 2px solid rgba(17, 20, 25, 0.1);
    z-index: 1002;
    opacity: 0;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.menu-mobile span {
    background-color: #303030;
    bottom: auto;
    display: inline-block;
    height: 2px;
    width: 18px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10001;
}

.menu-mobile span:before,
.menu-mobile span:after {
    background-color: #222;
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 18px;
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transition: -moz-transform 0.3s;
    -o-transition: -o-transform 0.3s;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

.menu-mobile span:before {
    -moz-transform: translateY(-7px) rotate(0deg);
    -ms-transform: translateY(-7px) rotate(0deg);
    -webkit-transform: translateY(-7px) rotate(0deg);
    transform: translateY(-7px) rotate(0deg);
}

.menu-mobile span:after {
    -moz-transform: translateY(7px) rotate(0deg);
    -ms-transform: translateY(7px) rotate(0deg);
    -webkit-transform: translateY(7px) rotate(0deg);
    transform: translateY(7px) rotate(0deg);
}

.menu-mobile.close-nav:before {
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
}

.menu-mobile.close-nav:after {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.menu-mobile.close-nav span {
    background-color: rgba(255, 255, 255, 0);
}


.menu-mobile.close-nav span:before {
    -moz-transform: translateY(0) rotate(45deg);
    -ms-transform: translateY(0) rotate(45deg);
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
}

.menu-mobile.close-nav span:after {
    -moz-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    -webkit-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
}

.menu-wrap .left_img {
    position: relative;
    width: 36%;
    height: 100vh;
    background-image: url(../images/navi_left_img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}
.menu-wrap .globalMenu {
    position: relative;
    width: 64%;
}
.menu-wrap .globalMenu .cnt {
    position: absolute;
    overflow-y: scroll;
    left: 10%;
    bottom: 0;
    width: 90%;
    padding-right: 5%;
}
.menu-wrap .globalMenu ul.list {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 120px;
}
.menu-wrap .globalMenu ul.list li {
    width: 33.333%;
    margin-bottom: 7.2%;
    user-select: none;
}
.menu-wrap .globalMenu ul.list li a {
    display: inline-block;
    color: #fff;
    font-family: effra, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 38px;
}
.menu-wrap .globalMenu a:hover {
    opacity: 0.7;
}
.menu-wrap .globalMenu .bottom {
    width: 100%;
    padding-bottom: 5%;
}
.menu-wrap .globalMenu ul.bottom_sns_link li {
    margin-right: 35px;
}
.menu-wrap .globalMenu ul.bottom_sns_link li a {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #fff;
}
.bottom_copy {
    font-size: 12px;
    color: #fff;
}
.body_start,
.body_fix,
body.fixed {
    overflow: hidden;
    height: 100%;
}


@media screen and (max-width: 768px) {
    .header_logo {
        top: 35px;
    }
    .header_logo img {
        width: 140px;
    }
    .menu-mobile {
        top: 25px;
        padding: 25px;
    }
    .menu-wrap .left_img {
        display: none;
    }
    .menu-wrap .globalMenu {
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        padding: 100px 5% 30px;
        box-sizing: border-box;
    }
    .menu-wrap .globalMenu .cnt {
        position: static;
        padding: 0;
        width: 100%;
    }
    .menu-wrap .globalMenu ul.list {
        margin-bottom: 60px;
    }
    .menu-wrap .globalMenu ul.list li {
        width: 100%;
        margin: 0;
    }
    .menu-wrap .globalMenu ul.list li a {
        position: relative;
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding: 22px 0 22px 0;
        box-sizing: border-box;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        line-height: 120%;
        margin-bottom: 0;
    }
    .bottom_sns_link {
        margin-bottom: 40px;
    }
}


/*----- Parallax-----*/

.simpleParallax {
    width: 100%;
    height: 100%;
}

.parallax {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
}


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

     TOP

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


/*----- MV -----*/

.mv_container {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.mv_img_box {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.mv_img_box {
    background: url(../images/mv_img.jpg) center / cover no-repeat;
    width: 100%;
    height: 100%;
}
.mv_text_box {
    position: absolute;
    z-index: 2;
    left: 80px;
    bottom: 80px;
    width: 60%;
    color: #fff;
}

.mv_text_box h1 {
    font-family: effra, sans-serif;
    font-size: 5vw;
    font-weight: 700;
    line-height: 115%;
    letter-spacing: 0;
    margin-bottom: 38px;
}
.mv_text_box h1 span {
    display: block;
}
.mv_text_box h1 span::after,
.mv_text_box .text::after{
    color: #fff;
}
.mv_text_box .text {
    font-size: 1.6vw;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 120%;
}

@media screen and (max-width: 768px) {
    .mv_container {
        width: 100vw;
        max-height: 630px;
    }
    .mv_text_box {
        width: 90%;
        left: 0;
        right: 0;
        bottom: 10%;
        margin: 0 auto;
    }
    .mv_text_box h1 {
        font-size: 40px;
    }
    .mv_text_box h1::after {
        color: #fff;
    }
    .mv_text_box .text {
        font-size: 14px;
    }
}


/*----- VISION -----*/

.vision_wrap {
    width: 100%;
    height: 800px;
    justify-content: flex-start;
    box-sizing: border-box;
}

.vision_wrap .left {
    position: relative;
    z-index: 2;
    width: 43%;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.vision_wrap .left .left_img {
    background: url(../images/vision_img.jpg) center / cover no-repeat;
    width: 100%;
    height: 100%;
}

.vision_wrap .right {
    position: relative;
    z-index: 2;
    background-color: #fafafa;
    width: 57%;
    height: 100%;
    box-sizing: border-box;
    padding: 200px 0 0 7.3%;
    overflow: hidden;
}

.vision_wrap .ttl_bg {
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
    .vision_wrap {
        height: auto;
    }
    .vision_wrap .left {
        width: 100%;
        height: 300px;
    }
    .vision_wrap .right {
        width: 100%;
        padding: 50px 5% 70px;
        height: auto;
    }
}


/*----- BUSINESS -----*/

.business_wrap {
    width: 100%;
}
.business_wrap .ttl_bg {
    left: -5vw;
    top: -100px;
}
.business_wrap .sticky-wrap {
    flex-wrap: nowrap;
    position: relative;
}


.business_wrap .left {
    width: 400px;
    position: relative;
}

.business_wrap .left .sticky {
    padding-top: 100px;
    padding-bottom: 150px;
}

.business_wrap .right {
    z-index: 1;
    width: 55%;
    max-width: 667px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.business_wrap .right .box {
    margin-bottom: 50px;
}

.business_wrap .right .box a {
    display: block;
    width: 100%;
    height: 100%;
}

.business_wrap .right .text_box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding-top: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E0E0E0;
}

.business_wrap .right .text_box .text {
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.business_wrap .right .text_box .text img {
    max-height: 101px;
}
.business_wrap .right .text_box .text .nmb span {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 6vw;
    font-weight: bold;
    width: 6vw;
}
.business_wrap .right .text_box .text div.t {
    width: calc(100% - 6vw);
    padding: 22px 0 0 40px;
    font-size: 1.4rem;
    letter-spacing: 1.2px;
}

.business_wrap .right .text_box .text div.t span {
    display: block;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 100%;
    padding-bottom: 12px;
}
.imgWrap {
    overflow: hidden;
}
.modal_grid .imgWrap img {
    transition: all 1s cubic-bezier(0.32, 0.94, 0.6, 1) 0s;
}
.modal_grid:hover .imgWrap img {
    transform: scale(1.1);
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 10000;
}

.modal_bg {
    position: absolute;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0);
}

.modal_content {
    position: absolute;
    overflow: scroll;
    height: 100%;
    width: 100%;
    background: #fff;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}

.modal_itemImg {
    position: fixed;
    width: 45%;
    height: 100vh;
}

#modal01 .modal_itemImg_bg {
    background: url(../images/modal_img01.jpg) center / cover no-repeat;
    width: 45vw;
    height: 100vh;
}

#modal02 .modal_itemImg_bg {
    background: url(../images/modal_img02.jpg) center / cover no-repeat;
    width: 45vw;
    height: 100vh;
}

#modal03 .modal_itemImg_bg {
    background: url(../images/modal_img03.jpg) center / cover no-repeat;
    width: 45vw;
    height: 100vh;
}

.modal_itemContent {
    position: relative;
    width: 55%;
    height: 100vh;
    padding: 15vh 12vw 0 8vw;
    margin-left: 45%;
}

.modal_item_subTtl {
    font-family: 'Roboto', sans-serif;
    font-size: 1vw;
    margin-bottom: 3vh;
}

.modal_item_enTtl {
    font-family: effra, sans-serif;
    font-size: 5vw;
    margin-bottom: 2vh;
}

.modal_item_jpTtl {
    font-size: 1vw;
}

.modal_item_desc {
    margin-top: 10vh;
}

.js_modal_close {
    display: inline-block;
    color: #000;
    padding-bottom: 8px;
    margin: 10vh 0 15vh;
    border-bottom: 1px #000 solid;
}

@media screen and (max-width: 768px) {
    .business_wrap .left {
        width: 100%;
    }
    .business_wrap .left .sticky {
        padding: 0;
    }
    .business_wrap .ttl_bg {
        top: 0;
    }
    .business_wrap .right {
        width: 100%;
        padding: 50px 0 0;
    }
    .business_wrap .right .box {
        margin-bottom: 40px;
    }
    .business_wrap .right .text_box {
        padding-bottom: 30px;
    }
    .business_wrap .right .text_box .text .nmb span {
        font-size: 16px;
        width: 100%;
        margin-top: 10px;
    }
    .business_wrap .right .text_box .text div.t {
        width: 100%;
        padding: 15px 0 0;
    }
    .business_wrap .right .text_box .text div.t span {
        font-size: 24px;
        padding-bottom: 22px;
    }
    .business_wrap .right .text_box .text div.t p {
        font-size: 12px;
    }
    .modal_grid_img_wrap {
        height: 56vw;
    }
    .modal_grid_subTtl,
    .modal_grid_jpTtl {
        font-size: 12px;
    }
    .modal_grid_enTtl {
        font-size: 28px;
    }
    .modal_itemImg {
        position: relative;
        width: 100%;
        height: 250px;
    }
    .modal_itemImg_bg {
        width: 100%!important;
        height: 100%!important;
    }
    .modal_itemContent {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 50px 4vw 20vh;
    }
    .modal_item_subTtl,
    .modal_item_jpTtl {
        font-size: 12px;
    }
    .modal_item_subTtl {
        margin-bottom: 20px;
    }
    .modal_item_enTtl {
        font-size: 38px;
    }
    .modal_item_desc {
        margin-top: 40px;
        font-size: 12px;
        line-height: 2.4;
    }
    .js_modal_close {
        margin: 50px 0 0;
    }
}

/*----- Jounal -----*/
#journal {
    background: #FAFAFA;
}
.journal_wrap .ttl_bg {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.news_ttlWrap {
    margin-bottom: 30px;
}
#news .section_ttl_en {
    margin-bottom: 0;
}
.newsWrap li {
    width: 33.333%;
    padding: 1%;
    opacity: 0;
}

.newsWrap .newsDay {
    font-family: 'Roboto', sans-serif;
    color: #666666;
    letter-spacing: 0;
    line-height: 1;
    margin: 20px 0 5px;
}

.newsTxt {
    font-weight: bold;
    line-height: 1.8;
}

@media screen and (max-width:768px) {
    .news {
        padding: 103px 0;
    }
    .newsWrap {
        display: block;
        overflow: hidden;
    }
    .newsWrap li {
        width: 100%;
        margin-bottom: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .newsWrap li>p {
        width: 48%;
    }
    .newsWrap>li>div {
        padding-left: 20px;
        width: 52%;
    }
    .newsWrap .newsDay {
        margin: 0px 0 10px;
    }
    .newsTxt {
        font-size: 12px;
    }
}


/*----- IMG WRAP -----*/

.img_cover .item__img-wrap {
    overflow: hidden;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    will-change: transform;
}

.img_cover .item__img-wrap .item__img {
    height: 100%;
    width: 100%;
    background-image: url(../images/img_cover.jpg);
    background-size: cover;
    background-position: 50% 0%;
}

@media screen and (max-width:768px) {
    .img_cover .item__img-wrap {
        height: 250px;
        position: relative;
    }
    .img_cover .item__img-wrap .item__img {
        height: 100%;
        top: 0;
    }
}


/*----- Company -----*/
.company_wrap .ttl_bg {
    top: -.15em;
}
.company_wrap .left {
    width: 400px;
}
.company_wrap .right {
    z-index: 1;
    width: 55%;
    max-width: 667px;
}
#shop_info .section_left_item {
    padding-right: 5vw;
}

.g_map {
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
    position: relative;
}

.g_map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.shop_list {
    width: 100%;
}

.shop_list dl {
    padding: 30px 0;
    border-bottom: 1px solid #ECECEC;
}

.shop_list dl:first-child {
    border-top: 1px solid #ECECEC;
}

.shop_list dt {
    font-size: 12px;
    font-weight: bold;
    width: 18%;
    color: #333;
    line-height: 1.6;
}

.shop_list dd {
    width: 82%;
    line-height: 1.6
}

@media screen and (max-width:768px) {
    .company_wrap .ttl_bg {
        top: 0;
    }
    .company_wrap .right {
        width: 100%;
    }
    .shop_list dl {
        padding: 20px 0;
        display: block;
    }
    .shop_list dt {
        font-size: 12px;
        width: 100%;
        margin-bottom: 10px;
    }
    .shop_list dd {
        width: 100%;
    }
}


/*----- CONTACT -----*/
.contact_wrap .ttl_bg {
    top: -.08em;
}
.contactInner {
    width: 100%;
    border: 2px solid #f0f0f0;
    box-sizing: border-box;
    padding: 75px 85px 70px;
    margin-bottom: 70px;
}

.contactInner .top_title {
    margin-bottom: 55px;
    padding-bottom: 50px;
    border-bottom: 1px solid #E0E0E0;
}
.contactInner .top_title .left {
    width: 36%;
}
.contactInner .top_title .right {
    width: 63%;
    padding-top: 5px;
}

.contactInner>p {
    line-height: 1.5;
}

.contactTel {
    position: relative;
    padding: 0 0 25px;
}

.contactTelNum {
    font-family: 'Roboto', sans-serif;
    font-size: 26px;
    font-weight: bold;
}

.contactTel p {
    font-size: 12px;
    line-height: 1.5;
    margin-top: 20px;
}

.formArea {
    padding-top: 60px;
}

.formArea .form_item dt {
    position: relative;
    width: 100%;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    box-sizing: border-box;
    padding-bottom: 20px;
}

.formArea .form_item dt::after {
    content: '*';
    display: inline-block;
    color: #E60012;
    font-size: 14px;
}

.formArea input,
.formArea textarea {
    outline: none;
    border: none;
    border: 2px solid #fafafa;
    background: #fafafa;
    padding: 36px 35px 36px;
    width: 100%;
    font-weight: 400;
    letter-spacing: 1px;
    box-sizing: border-box;
    font-family: inherit;
}

.form_item {
    margin-bottom: 70px;
}

.formArea .form_item:nth-last-child(2) {
    margin-bottom: 20px;
}

.contact_btnArea {
    width: 60%;
    color: #fff;
    text-align: center;
    margin: 90px auto 0;
    overflow: hidden;
}

.contact_btnArea input {
    position: relative;
    border: none;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 36px 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: #fff;
    width: 100%;
    cursor: pointer;
}

.contact_btnArea:hover {
    color: #fff;
}

.input_wrap {
    width: 100%;
    position: relative;
    transition: all .65s cubic-bezier(.39,.575,.565,1) 0s;
}
.input_wrap:hover {
    opacity: .8;
}

@media screen and (max-width:768px) {
    .contactInner {
        padding: 0;
        border: none;
    }
    .contactInner .top_title .left,
    .contactInner .top_title .right {
        width: 100%;
    }
    .contactInner .top_title {
        margin-bottom: 20px;
        padding-bottom: 40px;
    }
    .contactTel {
        padding: 20px 0;
    }
    .contactInner>p {
        font-size: 12px;
        line-height: 1.8;
        margin-top: 30px;
    }
    .formArea input, .formArea textarea {
        padding: 18px;
    }
    .formArea {
        padding-top: 15px;
    }
    .formArea .form_item {
        font-size: 12px;
        display: block;
    }
    .formArea .form_item dt {
        font-size: 14px;
        margin-bottom: 0;
    }
    .formArea .form_item dd {
        width: 100%;
        padding-top: 15px;
    }
    .form_item {
        margin-bottom: 35px;
    }
    .formArea .form_item:nth-last-child(2) {
        margin-bottom: 30px;
    }
    .contact_btnArea {
        width: 100%;;
        margin: 0 auto;
    }
    .contact_btnArea input {
        padding: 20px;
        font-size: 16px;
    }
}


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

     FOOTER

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

.footer {
    background: #000;
    color: #fff;
    padding: 30px 0 45px;
}

.footer h2 {
    font-weight: 700;
    font-size: 21px;
    line-height: 1.4;
}

.footer ul li a {
    margin-right: 52px;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 14px;
}

.small {
    text-align: right;
    color: #fff;
    font-size: 12px;
}

@media screen and (max-width:768px) {
    .footer {
        padding: 0px 0 20px;
    }
    .footer>div {
        display: block;
    }
    .footer ul {
        padding: 30px 0 40px;
    }
    .footer ul li {
        text-align: center;
    }
    .footer ul li a {
        margin-right: 0;
        padding: 10px;
        display: block;
    }
    .small {
        text-align: center;
        font-size: 10px;
    }
}