@charset "utf-8";

/* ****************************************************************************
- MEMO -
--------Overall Setting/共通設定--------
________Font Setting/フォント設定________

--------Overall Layout/共通レイアウト--------
________wrapper________
________area_header________
________article_mainVisual________
________box__row________
________area_main________
________area_footer________

--------Overall Parts/共通パーツ--------
________wrapper________
________area_header________
________article_mainVisual________
________area_main________
________area_side________
________area_footer________

@media screen and (min-width: 769px) { } 【タブレット縦以上】※breakpoint
*****************************************************************************/
/*--------Overall Setting--------*/
/*________Color Setting________*/
:root {
    /*base1*/
    --c_base1: rgb(0, 0, 0);
    /*accent1*/
    --c_accent1: rgb(210, 213, 236);
    /*sub1 */
    --c_sub1: rgb(145, 87, 0);

    /*base2*/
    --c_base2: rgb(39, 39, 39);
    /*accent2*/
    --c_accent2: rgb(206, 226, 223);
    /*sub2*/
    --c_sub2: rgb(0, 0, 0);
}

#box_mainVisual_photo::after {
    content: '';
    background-color: rgba(255, 255, 255, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

/*________Font Setting________*/
html {
    /*基本フォントサイズ*/
    /* font-size: 62.5%; 10px */
    font-size: 100%;
    /*16px*/
}

body {
    font-family: 'Noto Sans JP', 'Roboto', sans-serif;
    font-weight: 300;
}

a:hover {
    opacity: 0.8;
}

a:hover img {
    opacity: 1;
}

/*--Original fontsize--*/

:root {
    --fs_ttl_01: 2.5rem;
    --fs_ct_01: 1rem;
}

@media screen and (min-width: 769px) {
    :root {
        --fs_ttl_01: 5.2rem;
        --fs_ct_01: 1.5rem;
    }
}


/*--------Overall Layout--------*/

/*________wrapper________*/
#wrapper {
    width: 100%;
    overflow: hidden;
}

/*________area_header________*/
#area_header {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    z-index: 3;
    background: var(--c_sub2);
    opacity: 0;
}

#area_header #area_header--in {
    height: 100%;
}

#area_header .logo_site {
    height: 50px;
    width: 10em;
    border-radius: 5px;
    margin: 5px auto;

    display: -webkit-box;
    display: -ms-flexbox;

    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    -ms-flex-line-pack: center;
    align-content: center;

    /* background: var(--c_base1); */
}

@media only screen and (min-width : 769px) {
    #area_header .logo_site {
        margin: 5px;
    }
}

#area_header .logo_site .txt {
    color: var(--c_accent2);
    width: 100%;
    text-align: center;
}





@media only screen and (min-width : 769px) {
    #area_header {
        opacity: 1;
    }
}

/*________article_mainVisual________*/
#article_mainVisual {
    position: relative;
    z-index: 1;
}

#article_mainVisual,
#article_mainVisual #article_mainVisual--in {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

#article_mainVisual #box_mainVisual_contents {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#article_mainVisual #box_mainVisual_contents #ttl_mainVisual {
    position: relative;
    top: -2em;
}

#article_mainVisual #box_mainVisual_contents #ttl_mainVisual .ttl_main {
    display: block;
    /* font-size: var(--fs_ttl); */
    font-size: var(--fs_ttl_01);
    font-family: "M PLUS 1p";
    font-weight: bold;
    margin-bottom: 0.5em;
    text-align: center;
    letter-spacing: -0.1em;
}

@media only screen and (min-width : 769px) {
    #article_mainVisual #box_mainVisual_contents #ttl_mainVisual .ttl_main {
        letter-spacing: unset;
    }
}

#article_mainVisual #box_mainVisual_contents #ttl_mainVisual .txt_sub {
    display: block;
    /* font-size: var(--fs_tl); */
    font-size: var(--fs_ct_01);
    font-family: "M PLUS 1p";
    text-align: center;
}


#article_mainVisual #box_mainVisual_photo {
    z-index: 0;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
}

#article_mainVisual #box_mainVisual_photo img {
    object-fit: cover;
    object-position: right;
    width: 100%;
    height: 100vh;
}

@media only screen and (min-width : 769px) {
    #article_mainVisual #box_mainVisual_photo {
        min-height: 600px;
    }

    #article_mainVisual #box_mainVisual_photo img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100vh;
    }
}


/*________area_main________*/
#area_main {
    position: relative;
    z-index: 2;
}

/* #area_main {
    width: 100%;
}

#area_main--in {
    width: 100%;
} */

/*________section_main________*/
.section_main {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 0.75em;
    padding-bottom: 0.75em;

    min-height: 50vh;
}


@media only screen and (min-width : 769px) {

    .section_about,
    .section_studio {
        min-height: 80vh;
    }

    .section_about .section_inner,
    .section_studio .section_inner {
        min-height: 80vh;

        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}


.section_about .box_bg_in {
    width: 100%;
    height: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.section_about .box_bg_in img {
    object-fit: contain;
}


.section_main.bg_c_base2 {
    background: var(--c_base2);
    color: var(--c_accent2);
}

.section_main.bg_c_white {
    background: rgb(255, 255, 255, 0.5);
    color: var(--c_sub2);
}

@media only screen and (min-width : 769px) {
    .section_main {
        padding-top: 2em;
        padding-bottom: 2em;
    }
}

.section_main .section_inner {
    position: relative;
    width: 94%;
    max-width: none;
    margin: 0 auto;
    z-index: 3;
}

@media only screen and (min-width : 769px) {
    .section_main .section_inner {
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
    }
}

.section_main .ttl {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    margin-bottom: 0.5em;
}

.section_main .ttl_2 {
    font-weight: bold;
    margin-bottom: 0.75em;
}

@media only screen and (min-width : 769px) {
    .section_main .ttl_2 {
        margin-bottom: 2em;
    }
}

.section_main .ttl_2 .txt_main {
    /* font-size: var(--fs_lx); */
    font-size: var(--fs_ttl_01);
    font-family: "M PLUS 1p";
    font-weight: bold;
}

@media only screen and (min-width : 769px) {
    .section_main .ttl_2 .txt_main {
        margin-right: 0.5em;
    }
}

.section_main .ttl_2 .txt_sub {
    /* font-size: var(--fs_l); */
    font-size: var(--fs_ct_01);
    font-family: "M PLUS 1p";
}

.section_main .ttl_3 {
    /* font-size: var(--fs_lb); */
    font-weight: bold;
    font-size: var(--fs_ct_01);
    font-family: "M PLUS 1p";
}

.section_main .txt {
    font-size: var(--fs_n);
    line-height: 1.5em;
}

.section_main .contents {
    margin-bottom: 2em;
}

.section_main .box_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.section_main .box_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

/** CONTENTS 事業内容**/
.section_contents .contents_02 .ttl {
    font-size: var(--fs_lb);
    font-weight: bold;
    text-align: center;
}

.section_contents .contents_02 .list_biz {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.section_contents .contents_02 .li_biz {
    position: relative;
    width: 45%;
    box-shadow: 0px 4px 2px 0px rgba(0, 0, 0, 0.6);
    margin-bottom: 1em;
}

@media only screen and (min-width : 769px) {
    .section_contents .contents_02 .li_biz {
        width: 30%;
        margin-bottom: 0;
    }
}

.section_contents .contents_02 .li_biz .ttl {
    position: absolute;
    top: 50%;
    margin-top: -0.5em;
    font-size: var(--fs_l);
    width: 100%;
    text-align: center;
    color: rgb(0, 33, 59);
    /* text-shadow: 0 0 3px var(--c_sub2), 0 0 3px var(--c_sub2), 0 0 3px var(--c_sub2), 0 0 3px var(--c_sub2), 0 0 3px var(--c_sub2), 0 0 3px var(--c_sub2), 0 0 3px var(--c_sub2), 0 0 3px var(--c_sub2), 0 0 3px var(--c_sub2), 0 0 3px var(--c_sub2), 0 0 3px var(--c_sub2), 0 0 3px var(--c_sub2), 0 0 3px var(--c_sub2), 0 0 3px var(--c_sub2), 0 0 3px var(--c_sub2), 0 0 3px var(--c_sub2);
     */
     text-shadow: 0 0 3px rgb(255,255,255,0.4), 0 0 5px rgb(255,255,255,0.4), 0 0 5px rgb(255,255,255,0.4), 0 0 5px rgb(255,255,255,0.4), 0 0 5px rgb(255,255,255,0.4), 0 0 5px rgb(255,255,255,0.4), 0 0 5px rgb(255,255,255,0.4), 0 0 5px rgb(255,255,255,0.4), 0 0 5px rgb(255,255,255,0.4), 0 0 5px rgb(255,255,255,0.4), 0 0 5px rgb(255,255,255,0.4), 0 0 5px rgb(255,255,255,0.4), 0 0 5px rgb(255,255,255,0.4), 0 0 5px rgb(255,255,255,0.4), 0 0 5px rgb(255,255,255,0.4), 0 0 5px rgb(255,255,255,0.2);
    }

.section_contents .contents_02 .li_biz .box_photo,
.section_contents .contents_02 .li_biz .box_photo img {
    width: 100%;
    height: 100%;
}

.section_contents .contents_02 .li_biz .box_photo img {
    object-fit: cover;
}


/**  STUDIO スタジオ **/
.section_studio .contents .ttl {
    font-size: var(--fs_lb);
    font-weight: bold;
    text-align: center;
}

/**  PRICE 料金 **/
.section_price .contents .ttl {
    font-size: var(--fs_lb);
    font-weight: bold;
    text-align: center;
}

.section_price .contents .dl_price {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    margin: 0 auto;
    width: 90%;

    border-bottom: solid var(--c_sub2) 2px;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
}

.section_price .contents .dl_price .txt {
    font-size: var(--fs_l);
    line-height: var(--fs_lb);
    line-height: 1.5em;
}

.section_price .contents .dl_price .fas {
    font-size: var(--fs_lb);
    line-height: var(--fs_lb);
}

.section_price .contents .dl_price .dt {
    width: 40%;
}

.section_price .contents .dl_price .dd {
    width: 60%;
}

@media only screen and (min-width : 769px) {
    .section_price .contents .dl_price .dt {
        width: 30%;
    }

    .section_price .contents .dl_price .dd {
        width: 70%;
    }
}

.section_price .contents_01 {
    margin-bottom: 3em;
}

/**  COMPANY 法人概要 **/
.section_company .contents .dl_company {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    margin: 0 auto;
    width: 90%;
    padding-bottom: 0.5em;
}

.section_company .contents .dl_company .txt {
    font-size: var(--fs_l);
    line-height: var(--fs_lb);
    line-height: 1.5em;
}

.section_company .contents .dl_company i {
    font-size: var(--fs_lb);
    line-height: var(--fs_lb);
    margin-right: 0.25em;
}

.section_company .contents .dl_company .dt {
    width: 100%;
}

.section_company .contents .dl_company .dd {
    width: 95%;
    margin-left: 5%
}

@media only screen and (min-width : 769px) {
    .section_company .contents .dl_company .dt {
        width: 30%;
    }

    .section_company .contents .dl_company .dd {
        width: 70%;
        margin-left: 0;
    }
}


/**   CONTACT お問い合わせ  **/
.section_contact .txt_01 {
    margin-bottom: 1em;
}

.section_contact .contents .dl_contact {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    margin: 0 auto;
    width: 90%;
    padding-bottom: 0.5em;
}

.section_contact .contents .dl_contact .txt {
    font-size: var(--fs_lb);
    line-height: var(--fs_lb);
    line-height: 1.5em;
}

.section_contact .contents .dl_contact i {
    font-size: var(--fs_lb);
    line-height: var(--fs_lb);
    margin-right: 0.25em;
}

.section_contact .contents .dl_contact .dt {
    width: 100%;
    margin-bottom: 0.25em;
}

.section_contact .contents .dl_contact .dd {
    width: 95%;
    margin-left: 5%;
}

.section_contact .contents .btn_tel {
    background-color: var(--c_sub2);
    border-radius: 0.5em;
    display: inline-block;
    color: #ffffff;
    padding-left: 1em;
    padding-right: 1em;
}

.section_contact .contents .btn_up:hover {
    -webkit-animation-name: btn_Up;
    animation-name: btn_Up;
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
    transition-timing-function: ease-out;
}


@-webkit-keyframes btn_Up {
    from {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    80% {
        opacity: 0.8;
        -webkit-transform: scale3d(1.2, 1.2, 1.2);
        transform: scale3d(1.2, 1.2, 1.2);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

@keyframes btn_Up {
    from {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    80% {
        opacity: 0.8;
        -webkit-transform: scale3d(1.4, 1.4, 1.4);
        transform: scale3d(1.4, 1.4, 1.4);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1.2, 1.2, 1.2);
        transform: scale3d(1.2, 1.2, 1.2);
    }
}



@media only screen and (min-width : 769px) {
    .section_contact .contents_01 .dl_contact .dt {
        width: 30%;
        margin-bottom: 0;
    }

    .section_contact .contents_01 .dl_contact .dd {
        width: 70%;
        margin-left: 0;
    }
}

/*Mail Form*/
.section_contact .contents_02 .box_form {
    width: 90%;
    margin: 0 auto;

    font-size: var(--fs_l);
}

.section_contact .contents_02 .dl {
    margin-bottom: 1em;
}

.section_contact .contents_02 .dl .dt {
    width: 100%;
    margin-bottom: 0.25em;
}

.section_contact .contents_02 .dl .dd {
    width: 95%;
    margin-left: 5%;
}

@media only screen and (min-width : 769px) {
    .section_contact .contents_02 .dl .dt {
        width: 30%;
        margin-bottom: 0;
    }

    .section_contact .contents_02 .dl .dd {
        width: 70%;
        margin-left: 0;
    }
}

.section_contact .contents_02 .dl .dd .txt_input,
.section_contact .contents_02 .dl .dd .txtArea_input {
    box-sizing: border-box;
    width: 100%;
    padding: 0.3em;
    transition: 0.3s;
    letter-spacing: 1px;
    color: #333333;
    border: 1px solid #ffffff;
    box-shadow: 1px 1px 2px 0 #707070 inset;
    border-radius: 4px;
    background: #ffffff;
}

.section_contact .contents_02 .dl .dd .txt_input:focus,
.section_contact .contents_02 .dl .dd .txtArea_input {
    outline: none;
    box-shadow: inset 1px 1px 2px 0 #c9c9c9;
}

.section_contact .contents_02 .dl .dd .txtArea_input {
    height: 10em;
}

.section_contact .contents_02 .dl .dd .job_select {
    width: 100%;
    padding-right: 1em;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    padding: 8px 38px 8px 8px;
}

.section_contact .contents_02 .dl .dd .job_select::-ms-expand {
    display: none;
}

.section_contact .contents_02 .dl .dd .box_select {
    position: relative;
    border: 1px solid #bbbbbb;
    border-radius: 2px;
    background: #ffffff;
}

.section_contact .contents_02 .dl .dd .box_select::before {
    position: absolute;
    top: 0.8em;
    right: 0.9em;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666666;
    pointer-events: none;
}

.section_contact .contents_02 .dl .dd .box_select:after {
    position: absolute;
    top: 0;
    right: 2.5em;
    bottom: 0;
    width: 1px;
    content: '';
    border-left: 1px solid #bbbbbb;
}

.section_contact .contents_02 .btn_submit {
    display: block;
    width: 4em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    background: var(--c_sub2);
    color: var(--c_accent2);
    border-radius: 0.5em;
    text-align: center;
    margin: 0 auto;
    -webkit-box-shadow: 0 2px 0 #bbbbbb;
    box-shadow: 0 2px 0 #bbbbbb;
}

.section_contact .contents_02 .btn_submit:hover {
    -webkit-transform: translate(0, 3px);
    transform: translate(0, 3px);
    -webkit-box-shadow: 0 1px 0 #bbbbbb;
    box-shadow: 0 1px 0 #bbbbbb;
}

.section_contact .contents_02 .err_message {
    font-size: var(--fs_s);
    font-weight: bold;
    color: rgba(255, 72, 0, 0.932)
}

.section_thanks .contents {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    min-height: 50vh;
}

@media only screen and (min-width : 769px) {
    .section_thanks .contents {
        min-height: 60vh;
    }
}

.section_thanks .contents txt {
    font-size: var(--fs_lb);
}

.section_thanks .contents .txt_thanks01 {
    font-size: var(--fs_lx);
    margin-bottom: 0.5em;
}

.section_thanks .contents .txt_thanks02 {
    margin-bottom: 2em;
}

.section_thanks .contents .txt_thanks03 {
    display: block;
    width: 14em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    background: var(--c_sub2);
    color: var(--c_accent2);
    border-radius: 0.5em;
    text-align: center;
    margin: 0 auto;
    -webkit-box-shadow: 0 2px 0 #bbbbbb;
    box-shadow: 0 2px 0 #bbbbbb;
}

.section_thanks .contents .txt_thanks03:hover {
    -webkit-transform: translate(0, 3px);
    transform: translate(0, 3px);
    -webkit-box-shadow: 0 1px 0 #bbbbbb;
    box-shadow: 0 1px 0 #bbbbbb;
}


/**    ACCESS 所在地   **/
.section_access .contents_01 .box_inf {
    width: 90%;
    margin: 0 auto 2em;
}

.section_access .contents_01 .box_inf .txt {
    font-size: var(--fs_l);
    text-align: center;
}

.section_access .contents_01 .box_inf i {
    margin-right: 0.25em;
}


.section_access .contents_01 .box_map {
    width: 90%;
    margin: 0 auto;
}




.section_access .contents_01 .box_map .box_ifGmap {
    position: relative;
    /* padding-bottom: 56.25%; */
    padding-bottom: 60vh;
    height: 0;
    overflow: hidden;
    width: 100%;
}

@media only screen and (min-width : 769px) {
    .section_access .contents_01 .box_map .box_ifGmap {
        padding-bottom: 56.25%;
        width: 100%;
        height: 0;
    }
}

.section_access .contents_01 .box_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}





/*________area_footer________*/

#area_footer {
    position: relative;
    z-index: 2;
    width: 100%;
    background: var(--c_sub2);
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

#area_footer #area_footer--in {
    position: relative;
    width: 94%;
    max-width: none;
    margin: 0 auto;
    z-index: 3;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

}

@media only screen and (min-width : 769px) {
    #area_footer #area_footer--in {
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
    }
}

#area_footer .txt {
    font-size: var(--fs_s);
    color: var(--c_accent2);
    text-align: center;

    display: inline-block;
    margin-bottom: 0.25em;
    margin-right: 1em;
}

#area_footer i {
    margin-right: 0.25em;
}


/*--------Overall Parts--------*/

/*________wrapper________*/



/*________article_mainVisual________*/
/*________area_main________*/

/*________section_main________*/




/*________area_side________*/
/*________area_footer________*/