@charset "UTF-8";

/* CSS Setting
---------------------------------------------------------------------------*/

html {
    font-size: 62.5%;
    background: #faf9f8;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'EB Garamond', 'A1 Mincho', 'A1明朝', 'Yu Mincho Medium', '游明朝体 Medium', 'YuMincho', '游明朝体', serif;
    color: #4c5458;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

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

p {
    font-size: 1.3em;
    line-height: 2.4em;
    letter-spacing: .1em;
    font-feature-settings: "pkna";
    text-align: justify;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity .3s ease-out;
}

a:hover {
    opacity: 0.4;
    text-decoration: none;
}

a.txt_link {
    color: inherit;
    border-bottom: solid 0.5px #4c5458;
}

::selection {
    background: rgba(177, 169, 147, 0.2);
    color: inherit;
}

footer ::selection {
    background: rgba(237, 237, 238, 0.1);
    color: inherit;
}


/* Cursor
---------------------------------------------------------------------------*/

html,
body,
a {
    cursor: none;
}

#cursor {
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    top: -4px;
    left: -4px;
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 50%;
    z-index: 9999;
}

#stalker {
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: rgba(177, 169, 147, 0.2);
    border-radius: 50%;
    transition: top, 0.5s, left 0.5s, width .5s, height .5s, background .5s;
    transition: transform 0.2s, top, 0.5s, left 0.5s, width .5s, height .5s, background .5s;
    transition-timing-function: ease-out;
    z-index: 9998;
}

#stalker.active {
    top: -40px;
    left: -40px;
    width: 80px;
    height: 80px;
    transition: .5s;
    background: rgba(177, 169, 147, 0.4);
}


/* Display None
---------------------------------------------------------------------------*/

.pc_none {
    display: none;
}

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

    .pc_none {
        display: block;
    }

    .sp_none {
        display: none;
    }

}


/* Bg_scroll
---------------------------------------------------------------------------*/

#bg_scroll {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-image: url("../images/bg_scroll_logo.svg");
    background-repeat: no-repeat;
    background-size: 200%;
    background-position: center left;
}


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

    #bg_scroll {
        background-size: 500%;
    }

}


/* Wrapper
---------------------------------------------------------------------------*/

#wrapper {
    position: relative;
    max-width: 1360px;
    width: 85vw;
    margin: 0 auto;
    padding: 200px 0 150px 0;
}

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

    #wrapper {
        max-width: 85vw;
        margin: 0 auto;
        padding: 150px 0 100px 0;
    }

}


#scroll_down {
    position: absolute;
    width: 1.4em;
    height: 100vh;
    top: 0;
    left: 0;
}

a.arrow_wrap {
    position: absolute;
    bottom: 0;
    left: -2.8em;
}

.arrow_inner p {
    font-family: 'Cormorant Infant', serif;
    font-size: 1.4em;
    font-weight: 300;
    font-style: normal;
    line-height: 1.0em;
    letter-spacing: .25em;
    font-feature-settings: "palt";
    text-align: end;
    white-space: nowrap;
    transform: rotate(270deg);
}

.arrow {
    width: 1px;
    height: 100px;
    margin: 40px auto 0;
    overflow: hidden;
    background: #ededee;
}

.arrow::before {
    content: "";
    display: block;
    width: 1px;
    border-left: 1px #7d8386 solid;
    animation: scroll 2.5s ease 0s infinite normal;
    margin: 0 auto;
}

@keyframes scroll {
    0% {
        height: 0;
    }

    50% {
        height: 100px;
        margin-top: 0;
    }

    100% {
        margin-top: 100px;
        height: 100px;
    }

}


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

    #scroll_down {
        display: none;
    }

}


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

header {
    position: fixed;
    width: 85vw;
    max-width: 1360px;
    height: auto;
    top: 80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 5000;
    transition: 1s;
}

header.hide {
    opacity: 0;
    transform: translateY(-100%);
}

header .header_logo {
    width: 140px;
    float: left;
}

header h1 {
    text-indent: -9999px;
    background: url("../images/logo_header.svg") no-repeat left top;
    background-size: contain;
    width: 140px;
    height: 20px;
    display: inline-block;
}

nav#menu {
    float: left;
    margin: 0 0 0 10vw;
}

ul.menu_list {
    width: 100%;
    list-style: none;
    margin-top: 1px;
}

ul.menu_list li {
    font-family: 'Cormorant Infant', serif;
    font-size: 1.4em;
    font-style: normal;
    line-height: 1.0em;
    letter-spacing: .25em;
    font-feature-settings: "palt";
    margin: 0 3vw 0 0;
    float: left;
}

ul.menu_list li:last-child {
    margin: 0;
}


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

    header {
        top: 50px;
    }

    nav#menu {
        display: none;
    }

}


/* Sp_menu
---------------------------------------------------------------------------*/

#sp_menu {
    display: none;
}


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

    #sp_menu {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 5001;
    }

    .trigger,
    .trigger span {
        display: inline-block;
        transition: all .3s;
    }

    .trigger {
        position: relative;
        width: 30px;
        height: 16px;
    }

    .trigger span {
        position: absolute;
        width: 100%;
        height: 1px;
        background: #4c5458;
    }

    .trigger span:nth-of-type(1) {
        top: 0;
    }

    .trigger span:nth-of-type(2) {
        top: 50%;
    }

    .trigger span:nth-of-type(3) {
        top: 15px;
    }

    .trigger.active span:nth-of-type(1) {
        transform: translateY(7.5px) rotate(-45deg);
        background: #7d8386;
    }

    .trigger.active span:nth-of-type(2) {
        opacity: 0;
    }

    .trigger.active span:nth-of-type(3) {
        transform: translateY(-7.5px) rotate(45deg);
        background: #7d8386;
    }

    #sp_menu .menu_btn {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 5003;
    }

    #drawr {
        background: rgba(38, 42, 44, .98);
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: 5002;
    }

    .sp_inner {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        width: 80%;
        display: flex;
        justify-content: space-around;
        align-items: flex-end;
    }

    #drawr ul {
        overflow: hidden;
    }

    #drawr li {
        width: 100%;
    }

    #drawr li a {
        font-family: 'Cormorant Infant', serif;
        font-size: 5.0rem;
        font-weight: 300;
        font-style: normal;
        color: rgba(125, 131, 134, 0.6);
        letter-spacing: -.04em;
        line-height: 6.0rem;
        font-feature-settings: "palt";
        height: 6.0rem;
    }

    #drawr address {
        color: rgba(125, 131, 134, 0.6);
        font-size: 1.2em;
        line-height: 1.6em;
        letter-spacing: .1em;
        font-feature-settings: "palt";
    }

}


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

    .sp_inner {
        display: block;
    }

    #drawr address {
        margin: 30px 0 0 0;
    }

}


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

#main {
    position: relative;
    width: 85%;
    margin: 0 auto;
}

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

    #main {
        width: 100%;
    }

}


/* Message
---------------------------------------------------------------------------*/

#message {
    position: relative;
    margin: 0 0 200px 0;
}

#message .copyright {
    margin: 0 0 40px 0;
}

#message .copyright small {
    font-size: 1.0em;
    line-height: 1.6em;
    letter-spacing: .1em;
    color: #c9cbcc;
    font-feature-settings: "palt";
}

.catch {
    position: relative;
    margin: 0 0 120px 0;
}

.catch h2 {
    font-size: 2.0em;
    line-height: 1.0em;
    letter-spacing: .4em;
    font-feature-settings: "palt";
    white-space: nowrap;
    margin: 0 0 20px 0;
}

.catch h3 {
    font-family: 'Cormorant Infant', serif;
    font-size: 12.0em;
    font-weight: 300;
    font-style: normal;
    line-height: 1.0em;
    letter-spacing: -.06em;
    text-align: left;
    font-feature-settings: "palt";
    white-space: nowrap;
    margin: 0 0 0 -8px;
}

.catch h3 span.italic {
    font-family: 'Cormorant Infant', serif;
    font-style: italic;
}

.catch_text {
    width: 70%;
}

.catch_text p {
    margin: 0 0 20px 0;

}


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

    .catch h3 {
        font-size: 9.0em;
    }

}


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

    .catch h2 {
        font-size: 1.6em;
    }

    .catch h3 {
        font-size: 7.0em;
    }

    .catch_text {
        width: 100%;
    }

}


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

    .catch h3 {
        font-size: 6.8em;
        white-space: normal;
    }

}




/* Common Setting
---------------------------------------------------------------------------*/

p.section_title_en {
    font-family: 'Cormorant Infant', serif;
    font-size: 6.0rem;
    font-weight: 300;
    font-style: normal;
    line-height: 1.0em;
    letter-spacing: -.04em;
    text-align: center;
    font-feature-settings: "palt";
    margin: 0 0 30px 0;
}

p.section_title_jp {
    font-size: 1.6rem;
    line-height: 1.0em;
    letter-spacing: .2em;
    font-feature-settings: "pkna";
    text-align: center;
}

.section_title_line {
    position: relative;
    margin: 40px 0 0 0;
}

.section_title_line .line_light {
    position: absolute;
    display: block;
    width: 50%;
    height: 1px;
    background: #ededee;
    margin: auto;
    top: auto;
    right: 0;
    left: 0;
}

.section_title_line .line_dark {
    position: absolute;
    display: block;
    width: 8%;
    height: 1px;
    background: #635328;
    margin: auto;
    top: auto;
    right: 0;
    left: 0;
}


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

    p.section_title_en {
        font-size: 4.5rem;
    }

    .section_title_line .line_light {
        width: 70vw;
    }

    .section_title_line .line_dark {
        width: 10vw;
    }

}


/* Service
---------------------------------------------------------------------------*/

#service {
    position: relative;
    margin: 0 0 200px 0;
}

.service_content {
    position: relative;
    width: 100%;
    height: auto;
    padding: 70px 0 100px 0;
    border-bottom: solid 1px #ededee;
}

.service_num {
    position: relative;
    margin: -10px 0 0 0;
    width: 8%;
    left: 3.0rem;
    float: left;
    opacity: 0.8;
}

.service_num_short {
    margin: -26px 0 0 0;
}

.service_num p {
    font-family: 'Cormorant Infant', serif;
    font-size: 3.0rem;
    font-weight: 300;
    font-style: normal;
    line-height: 1.0em;
    letter-spacing: .1em;
    color: #e8e6e0;
    font-feature-settings: "palt";
    white-space: nowrap;
    transform: rotate(90deg);
    transform-origin: left top;
}

.service_info {
    width: 37%;
    margin: 5px 5% 0 0;
    float: left;
}

h4.service_title {
    font-size: 1.6rem;
    line-height: 1.6em;
    letter-spacing: .15em;
    font-feature-settings: "pkna";
    white-space: nowrap;
}

.service_title_line {
    position: relative;
    margin: 25px 0 0 0;
}

.service_title_line .line_dark {
    display: block;
    width: 25px;
    height: 1px;
    background: #635328;
}

p.service_detail {
    margin: 0;
    width: 50%;
    float: left;
}


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

    .service_num {
        width: 6%;
    }

    .service_num {
        margin: 8px 0 0 0;
    }

    .service_info {
        width: 42%;
        margin: 5px 5% 0 4%;
    }

    p.service_detail {
        width: 43%;
    }

}


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

    #service {
        margin: 0 0 100px 0;
    }

    .service_content {
        padding: 50px 0 50px 0;
    }

    .service_num {
        position: absolute;
        margin: 5px 0 0 0;
        left: 2.0rem;
    }

    .service_info {
        width: 100%;
        margin: 0;
        padding: 0 0 0 10vw;
        float: none;
    }

    h4.service_title {
        font-size: 1.6rem;
    }

    .service_title_line {
        margin: 15px 0 0 0;
    }

    p.service_detail {
        width: 100%;
        padding: 50px 0 0 10vw;
        float: none;
    }

}


/* Workflow
---------------------------------------------------------------------------*/

#workflow {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 0 200px 0;
    padding: 50px 50px 50px 50px;
    border: solid 1px #ededee;
}

.workflow_content {
    position: relative;
    width: 100%;
    margin: 50px 0 0 0;
    border-top: solid 1px #ededee;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.workflow_item {
    position: relative;
    width: 46%;
    padding: 40px 0 40px 0;
    border-bottom: solid 1px #ededee;
}

.workflow_item:nth-child(3),
.workflow_item:nth-child(4) {
    padding: 40px 0 0 0;
    border: none;
}

.workflow_num {
    position: relative;
    display: flex;
    align-items: center;
}

.workflow_num p {
    font-size: 1.6rem;
    line-height: 1.0em;
    letter-spacing: .1em;
    font-feature-settings: "palt";
}

.workflow_line {
    position: relative;
    margin: 0 0 0 15px;
}

.workflow_line .line_light {
    position: absolute;
    display: block;
    width: 40px;
    height: 1px;
    background: #ededee;
}

.workflow_line .line_dark {
    position: absolute;
    display: block;
    width: 20px;
    height: 1px;
    background: #635328;
}

h4.workflow_title {
    font-size: 1.6rem;
    line-height: 1.0em;
    letter-spacing: .2em;
    margin: 30px 0 30px 0;
}


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

    #workflow {
        margin: 0 0 100px 0;
        padding: 50px 5vw 30px 5vw;
    }

    .workflow_content {
        display: block;
    }

    .workflow_item {
        width: 100%;
        padding: 30px 10px 30px 10px;
    }

    .workflow_item:nth-child(3) {
        padding: 30px 10px 30px 10px;
        border-bottom: solid 1px #ededee;
    }

    .workflow_item:nth-child(4) {
        padding: 30px 10px 0 10px;
        border: none;
    }

    .workflow_num {
        position: relative;
        display: flex;
        align-items: center;
    }

    .workflow_num p {
        font-size: 1.6rem;
        line-height: 1.0em;
        letter-spacing: .1em;
        font-feature-settings: "palt";
    }

    .workflow_line {
        position: relative;
        margin: 0 0 0 15px;
    }

    .workflow_line .line_light {
        position: absolute;
        display: block;
        width: 40px;
        height: 1px;
        background: #ededee;
    }

    .workflow_line .line_dark {
        position: absolute;
        display: block;
        width: 20px;
        height: 1px;
        background: #635328;
    }

    h4.workflow_title {
        font-size: 1.6rem;
        line-height: 1.0em;
        letter-spacing: .2em;
        margin: 30px 0 30px 0;
    }

}


/* Profile
---------------------------------------------------------------------------*/

#profile {
    position: relative;
    width: 100%;
    margin: 0 0 200px 0;
}

#profile p.section_title_en,
#profile p.section_title_jp {
    text-align: left;
    z-index: 101;
}

.profile_content {
    position: relative;
    width: 100%;
    margin: 100px 0 0 0;
    z-index: 101;
}

h5.profile_name {
    font-family: 'EB Garamond', 'A1 Mincho', 'A1明朝', 'Yu Mincho Medium', '游明朝体 Medium', 'YuMincho', '游明朝体', serif;
    font-size: 3.0rem;
    letter-spacing: .4em;
    margin: 0 0 10px 0;
}

p.profile_name_en {
    font-feature-settings: "palt";
}

p.profile_detail {
    position: relative;
    width: 70%;
    margin: 40px 0 0 0;
}

.profile_photo {
    position: absolute;
    width: 800px;
    height: 500px;
    top: 0;
    right: -30%;
    z-index: -100;
}

.photo_inner {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../images/profile_photo.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
}

.profile_sns {
    position: relative;
    margin: 20px 0 0 0;
}

.profile_sns ul {
    font-size: 1.3em;
    line-height: 1.0em;
    letter-spacing: .1em;
    color: #c9cbcc;
    font-feature-settings: "palt";
    list-style: none;
}

.profile_sns ul li {
    margin: 0 20px 0 0;
    float: left;
}

.profile_sns ul li:last-child {
    margin: 0;
}


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

    #profile {
        margin: 0 0 100px 0;
    }

    .profile_content {
        position: relative;
        width: 100%;
        margin: -100px 0 0 0;
    }

    h5.profile_name {
        font-size: 2.5rem;
    }

    p.profile_detail {
        position: relative;
        width: 100%;
    }

    .profile_photo {
        position: relative;
        width: 500px;
        height: 312px;
        margin-top: -60px;
        right: -20%;
    }

    .photo_inner {
        background-position: right 60px center;
    }

}


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

#company {
    position: relative;
    width: 100%;
    margin: 0 0 200px 0;
}

#company table {
    width: 100%;
    margin: 0;
    border-bottom: solid 1px #ededee;
}

#company tr {
    border-top: solid 1px #ededee;
    font-family: 'EB Garamond', 'A1 Mincho', 'A1明朝', 'Yu Mincho Medium', '游明朝体 Medium', 'YuMincho', '游明朝体', serif;
    font-size: 1.3em;
    line-height: 2.4em;
    letter-spacing: .2em;
    font-feature-settings: "palt";
    text-align: justify;
    vertical-align: top;
}

#company th {
    width: 30%;
    font-weight: normal;
    color: #c9cbcc;
    padding: 40px 20px;
}

#company td {
    width: 70%;
    padding: 40px 20px;
}


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

    #company {
        margin: 0 0 100px 0;
    }

    #company tr {
        vertical-align: initial;
    }

    #company th {
        display: block;
        width: 100%;
        padding: 20px 10px 10px 10px;
    }

    #company td {
        display: block;
        width: 100%;
        padding: 0 10px 20px 10px;
        border-top: none;

    }

}


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

#contact {
    position: relative;
    width: 100%;
}

form#mail_form {
    width: 100%;
    margin: 0 auto;
    padding: 70px 0 0 0;
}

form#mail_form dl {
    width: 100%;
    margin: 0 0 30px 0;
}

form#mail_form .form_inner {
    font-family: 'EB Garamond', 'A1 Mincho', 'A1明朝', 'Yu Mincho Medium', '游明朝体 Medium', 'YuMincho', '游明朝体', serif;
    font-size: 1.3em;
    line-height: 2.4em;
    letter-spacing: .2em;
    font-feature-settings: "palt";
    text-align: justify;
    vertical-align: top;
    display: flex;
}

form#mail_form dt {
    width: 30%;
    font-weight: normal;
    color: #c9cbcc;
    padding: 20px 20px 0 0;
}

form#mail_form dd {
    width: 70%;
    padding: 20px 0 0 0;
}

form#mailform ul {
    list-style: none;
}

form#mail_form input[type=radio] {
    display: none;
}

form#mail_form label {
    line-height: 1;
    position: relative;
    display: inline-block;
    padding: 0 0 0 2em;
    cursor: none;
    transition: all 0.15s ease;
}

form#mail_form label:focus,
form#mail_form label:hover {
    color: #d0cbbe;
}

form#mail_form label::before {
    position: absolute;
    top: -1px;
    left: 0;
    width: 15px;
    height: 15px;
    content: '';
    border: 3px solid #ededee;
    border-radius: 50%;
}

form#mail_form label:focus::before,
form#mail_form label:hover::before {
    color: #d0cbbe;
    border: 3px solid #d0cbbe;
}

form#mail_form input[type="radio"]:checked+label::before {
    border: 3px solid #d0cbbe;
    background: #d0cbbe;
}

form#mail_form input[type="radio"]:checked+label {
    color: #d0cbbe;
}

form#mail_form .text_input,
form#mail_form .text_area {
    font-family: 'EB Garamond', 'A1 Mincho', 'A1明朝', 'Yu Mincho Medium', '游明朝体 Medium', 'YuMincho', '游明朝体', serif;
    font-size: 1.2em;
    line-height: 2.4em;
    letter-spacing: .2em;
    color: #4c5458;
    font-feature-settings: "palt";
    text-align: justify;
    width: 100%;
    padding: 30px;
    background: #ffffff;
    border: solid 1px #ededee;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

form#mail_form .text_input:focus,
form#mail_form .text_area:focus {
    background: #f8f7f6;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

form#mail_form .text_area {
    resize: vertical;
}

form#mail_form dl dt span.required {
    display: inline-block;
    color: #d0cbbe;
    font-size: 1.0em;
    float: right;
}

form#mail_form span.error_blank,
form#mail_form span.error_format,
form#mail_form span.error_match {
    display: block;
    color: #d0cbbe;
    margin-top: 3px;
}

p#form_submit {
    position: relative;
    height: 60px;
}

form#mail_form input[type="button"] {
    position: relative;
    display: block;
    font-family: 'EB Garamond', 'A1 Mincho', 'A1明朝', 'Yu Mincho Medium', '游明朝体 Medium', 'YuMincho', '游明朝体', serif;
    font-size: 1.2em;
    line-height: 60px;
    letter-spacing: .2em;
    text-align: center;
    color: #faf9f8;
    font-feature-settings: "palt";
    float: right;
    width: 70%;
    height: 60px;
    background: #d0cbbe;
    border: 1px solid #d0cbbe;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all .3s ease-out;
}

form#mail_form input[type="button"]:hover {
    background: #faf9f8;
    border-color: #d0cbbe;
    color: #d0cbbe;
}


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

    form#mail_form {
        padding: 30px 0 0 0;
    }

    form#mail_form dl {
        margin: 0
    }

    form#mail_form .form_inner {
        vertical-align: initial;
        flex-direction: column;
    }

    form#mail_form dt {
        display: block;
        width: 100%;
        padding: 0 0 10px 0;
    }

    form#mail_form dd {
        display: block;
        width: 100%;
        padding: 0 0 20px 0;
        border-top: none;
    }

    form#mail_form .text_input,
    form#mail_form .text_area {
        padding: 15px 15px;
    }

    form#mail_form input[type="button"] {
        width: 100%;
    }

}


/* Thanks
---------------------------------------------------------------------------*/

#thanks {
    position: relative;
}

.thanks_content {
    position: relative;
    width: 100%;
    margin: 100px 0 0 0;
}

p.thanks_detail {
    position: relative;
    width: 70%;
    margin: 0 auto
}


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

    p.thanks_detail {
        width: 100%;
    }

}


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

footer {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 400px;
    color: #7d8386;
    background: #4c5458;
    display: flex;
    align-items: center;
}

.footer_content {
    position: relative;
    max-width: 1360px;
    width: 85vw;
    margin: 0 auto;
}

footer .copyright {
    position: absolute;
    left: 29px;
    transform: rotateZ(90deg);
    transform-origin: left top;
}

footer .copyright small {
    font-size: 1.0rem;
    line-height: 1.6rem;
    letter-spacing: .1em;
    font-feature-settings: "palt";
    white-space: nowrap;
}

.footer_inner {
    position: relative;
    left: 7.5%;
    display: flex;
}

.footer_info {
    position: relative;
    margin: 0 100px 0 0;
}

.footer_logo {
    text-indent: -9999px;
    background: url("../images/logo_footer.svg") no-repeat left top;
    background-size: contain;
    width: 210px;
    height: 30px;
    display: inline-block;
}

.footer_inner address {
    font-size: 1.2em;
    line-height: 1.6em;
    letter-spacing: .1em;
    font-feature-settings: "palt";
    text-align: justify;
}

ul.footer_menu {
    position: relative;
    list-style: none;
}

ul.footer_menu_right {
    margin: 0 0 0 100px;
}

ul.footer_menu li {
    font-family: 'Cormorant Infant', serif;
    font-size: 1.5em;
    font-style: normal;
    line-height: 1.0em;
    letter-spacing: .2em;
    font-feature-settings: "palt";
    margin: 0 0 20px 0;
}

ul.footer_menu li:last-child {
    margin: 0;
}

ul.footer_menu li.dot {
    font-family: 'EB Garamond', 'A1 Mincho', 'A1明朝', 'Yu Mincho Medium', '游明朝体 Medium', 'YuMincho', '游明朝体', serif;
    font-size: 1.1em;
}

ul.footer_menu li.dot::before {
    content: '・';
    margin: 0 5px 0 0;
}

.column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


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

    footer {
        height: 700px;
    }

    .footer_inner {
        position: relative;
        left: 13vw;
        display: block;
        padding: 0 0 0 0;
    }

    .footer_info {
        position: relative;
        margin: 0;
    }

    .footer_inner address {
        margin: 50px 0 0 0;
    }

    ul.footer_menu {
        margin: 30px 0 0 0;
    }

    ul.footer_menu_right {
        margin: 20px 0 0 0;
    }

    ul.footer_menu li {
        margin: 0 0 15px 0;
    }

    ul.footer_menu li:last-child {
        margin: 0;
    }

    ul.footer_menu li.dot {
        line-height: 2.0em;
        margin: 0;
    }

    .column {
        display: block;
    }

}


/* Reveal
---------------------------------------------------------------------------*/

.rv_fade {
    opacity: 0;
    transition: all 1.0s ease .5s;
}

.rv_fade.scroll {
    opacity: 1;
}

.rv_xway {
    transform: translateY(0);
    overflow: hidden
}

.rv_xway {
    transition: transform .6s cubic-bezier(.75, .15, .15, .85) .4s;
    transform: translateX(-10px)
}

.rv_xway:before {
    transition: transform .6s cubic-bezier(.75, .15, .15, .85) .2s;
    background: #faf9f8;
    content: '';
    display: block;
    width: calc(100% + 10px);
    height: 100%;
    position: absolute;
    top: 0;
    right: -10px;
    z-index: 1
}

.rv_xway:after {
    transition: width .6s cubic-bezier(.75, .15, .15, .85) .8s;
    background: #f4f4f4;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0
}

.rv_xway.scroll {
    transform: translateX(0)
}

.rv_xway.scroll:before {
    transform: translateX(100%)
}

.rv_xway.scroll:after {
    width: 0
}

.rv_yway {
    opacity: 0;
    transform: translate(0, 20px);
    transition: all 1.5s ease .5s;
}

.rv_yway.scroll {
    opacity: 1;
    transform: translate(0, 0);
}

.rv_yway_delay {
    opacity: 0;
    transform: translate(0, 20px);
    transition: all 1.5s ease 1.5s;
}

.rv_yway_delay.scroll {
    opacity: 1;
    transform: translate(0, 0);
}

.rv_line {
    transform: scale(0, 1);
    transform-origin: center top;
    transition: all .5s ease .8s;
}

.rv_line.scroll {
    transform: scale(1, 1);
}