@charset "utf-8";
/*--------------------------------------------------------------------------------
*
*   2016
*   Sketch
*
*   common.css
*
--------------------------------------------------------------------------------*/

/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}/*HTML5display-roleresetforolderbrowsers*/article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}

body{
    font-family:'游ゴシック','YuGothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',Meiryo,メイリオ,sans-serif;
    color: #222;
    font-size : 14px;
    background-color:#fff;
    letter-spacing: .05em;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-break: break-all;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

body, html{
    height: 100%;
}

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

a:link{ color: #aaa; text-decoration: none;}
a:visited{ color: #aaa; text-decoration: none;}
a:hover{ color: #c8141d; text-decoration: none;}
a:active{ color: #c8141d; text-decoration: none;}

#wrap{
    opacity: 0;
    min-height: 100%;
    clear: both;
    z-index: 1;
    position: relative;
}

#contents{
    width: 100%;
    position: absolute;
    top: 100px;
    left: 0;
}

#contents_inner{

}

.pjax_transition{
    opacity: 0;
}

/* --------------------------------------------------------------------------------
    font-face
------------------------------------------------------------------------------- */
.ff_min{ font-family: '游明朝', 'YuMincho', serif !important;}
.ff_min-b{ font-family: '游明朝', 'YuMincho', serif !important; font-weight: bold !important;}

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


/* --------------------------------------------------------------------------------
*
    common style settings
*
-------------------------------------------------------------------------------- */
br{ display: block;}
br.sp{ display: none;}
img.pc{ display: inline-block;}
img.sp{ display: none;}


/* ----------------------------------------
    #header
---------------------------------------- */
#header{
    width: 100%;
    opacity: 0;
    padding: 50px 0 80px 0;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 10;
}

#head_inner{
    margin: 0 100px;
    text-align: center;
    position: relative;
    transition: margin .2s ease;
}

@media screen and (max-width: 960px) {
    #head_inner{
        margin: 0 20px;
    }
}

#head_inner h1{
    line-height: 1em;
    margin: 0 0 30px 0;
}

#head_inner h1 img{
    width: 220px;
    margin: 0 0 5px 0;
    height: auto;
}

#head_inner h1 a{
    width: 220px;
    margin: 0 auto;
    display: block;
}

#head_inner .gnav_ico{
    display: none;
}

#gnav{
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    text-align: left;
}

#gnav li{
    margin: 0 20px 10px 20px;
    float: left;
    position: relative;
    opacity: 0;
}

#gnav li.profile{
    width: 70px;
    margin: 0 0 10px 52px;
    white-space: nowrap;
}

#gnav li.profile:before{
    content: '/';
    display: block;
    color: #aaa;
    position: absolute;
    top: 0;
    left: -40px;
}

#gnav li ul{
    margin: 10px 0 0 0;
}

#gnav li ul li{
    margin: 0 0 10px 0;
    display: block;
    float: none;
}

#gnav a{
    padding: 0 1px;
    display: inline-block;
    position: relative;
    transition: all .1s ease;
    -webkit-transform:perspective(0);
}

#gnav a span.bar{
    width: 100%;
    height: 2px;
    display: block;
    background-color: #c8141d;
    opacity: 0;
    position: absolute;
    left: 0px;
    bottom: -7px;
    transition: all .1s ease;
    -webkit-transform:perspective(0);
}

#gnav li.current a{ color: #c8141d;}
#gnav li.current li a{ color: #aaa;}
#gnav li.current li a:hover{ color: #c8141d;}
#gnav li.current li span.bar{ opacity: 0; bottom: -7px;}

#gnav li.current span.bar,
#gnav a:hover span.bar,
#gnav li.current li a:hover span.bar{
    bottom: -5px;
    opacity: 1;
}

#gnav li span.sp{
    display: none !important;
}

#gnav li.parents ul{
    display: none;
}

/* ----------------------------------------
    #footer
---------------------------------------- */
#footer{
    clear: both;
    position: fixed;
    left: 0;
    bottom: 0;
}

#footer .copyright{
    position: relative;
    left: 5px;
    bottom: 10px;
}

.btn_pagetop{
    width: 30px;
    height: 30px;
    visibility: hidden;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    cursor: pointer;
    transition: right .2s ease;
}

@media screen and (max-width: 960px) {
    .btn_pagetop{ right: 10px; }
}

.btn_pagetop a{
    width: 30px;
    height: 30px;
    display: block;
    background-image:url(../images/btn_pagetop.png);
    background-size: 30px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
}

.btn_pagetop:hover a{
    background-image:url(../images/btn_pagetop_on.png);
}

/* ----------------------------------------
    #portfolio_container
---------------------------------------- */
#portfolio_container{
    margin: 0 auto;
    padding: 135px 100px 40px 100px;
    opacity: 0;
    overflow: hidden;
    transition: padding .2s ease;
    position: relative;
    z-index: 10000;
}

@media screen and (max-width: 960px) {
    #portfolio_container{
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 768px) {
    #portfolio_container{
        padding-top: 0;
        padding-bottom: 20px;
    }
}

#portfolio_container #photo_list{
    padding: 0 0 40px 0;
}

#portfolio_container #photo_list li{
    width: 25%;
    line-height: 0;
    border: 5px solid #fff;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    transition: opacity .15s ease;
    cursor: pointer;
}

@media screen and (min-width: 1280px) {#portfolio_container #photo_list li{ width: 20%;}}
@media screen and (min-width: 1600px) {#portfolio_container #photo_list li{ width: 16.6666%;}}
@media screen and (min-width: 1900px) {#portfolio_container #photo_list li{ width: 14.2857%;}}

@media screen and (max-width: 768px) {#portfolio_container #photo_list li{ width: 33.3333%;}}
@media screen and (max-width: 640px) {#portfolio_container #photo_list li{ width: 50%;}}
/* @media screen and (max-width: 420px) {#portfolio_container #photo_list li{ width: 100%;}} */

#portfolio_container #photo_list li:hover{
    opacity: .7 !important;
}

#portfolio_container #photo_list li img{
    width: 100%;
    height: auto;
    position: relative;
}

.next_load{
    width: 100%;
    text-align: center;
    font-size: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.next_load span{
    width: 0;
    height: 4px;
    background-color: #c8141d;
    display: block;
    transition: all .2s linear;
}

/* ----------------------------------------
    #page_nav
---------------------------------------- */
#page_nav{
    width: auto;
    height: 40px;
    margin: 60px auto 100px auto;
    display: table;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: .1em;
    position: relative;
    color: #c8141d;
}

#page_nav a{
    color: #aaa;
    transition: all .1s ease;
}

#page_nav a:hover{
    color: #c8141d;
}

#page_nav a, #page_nav span{
    width: 50px;
    height: 40px;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    background-repeat: no-repeat;
    background-position: right center;
}

#page_nav .previouspostslink{
    background-image:url(../images/parts_page_nav_arrow_left.png) !important;
    background-position: center;
    position: absolute;
    top: 0;
    left: -50px;
}

#page_nav .nextpostslink{
    background-image:url(../images/parts_page_nav_arrow_right.png) !important;
    background-position: center;
    position: absolute;
    top: 0;
    right: -50px;
}

#page_nav .previouspostslink:hover{ background-image:url(../images/parts_page_nav_arrow_left_on.png) !important;}
#page_nav .nextpostslink:hover{ background-image:url(../images/parts_page_nav_arrow_right_on.png) !important;}


/* --------------------------------------------------
*
    #modal_window
*
-------------------------------------------------- */
#modal_window{
    display: none;
    z-index: 100;
}

#modal_window .overlay{
    width: 100%;
    height: 9999px;
    background-color: #fff;
    opacity: 1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

#modal_window .loading{
    width: 100%;
    height: 100%;
    position: fixed;
    vertical-align: middle;
    text-align: center;
    font-size: 0;
    color: #888;
    top: 0;
    left: 0;
    z-index: 101;
}

#modal_inner{
    width: 80%;
    text-align: center;
    max-width: 720px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 101;
}

#modal_inner img{
    width: 100%;
}

#modal_inner #img_main{
    position: relative;
}

#modal_inner #img_main p{
    width: 100%;
    line-height: 0;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}

#modal_inner #img_main p.vertical img{
    max-height: 640px;
    width: auto;
    display: inline-block;
    position: relative;
}

#modal_inner .btn_close{
    width: 35px;
    height: 35px;
    position: fixed;
    top: 20px;
    right: 20px;
    background-image:url(../images/parts_modal_close.png);
    background-size: 35px;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity .1s ease;
    z-index: 10;
}

#modal_inner .btn_close:hover{
    opacity: .7;
    cursor: pointer;
}

#modal_inner .post_num{
    font-size: 12px;
    position: fixed;
    top: 20px;
    left: 20px;
}

#modal_inner .btn_arrow_left{
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    left: -70px;
}

#modal_inner .btn_arrow_right{
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    right: -70px;
}

#modal_inner .btn_arrow_left a,
#modal_inner .btn_arrow_right a{
    display: block;
}

#modal_inner .btn_arrow_left img,
#modal_inner .btn_arrow_right img{
    transition: all .15s ease;
    cursor: pointer;
}

#modal_inner .btn_arrow_left:hover img{ margin: 0 0 0 -5px; opacity: .7;}
#modal_inner .btn_arrow_right:hover img{ margin: 0 0 0 5px; opacity: .7;}


/* --------------------------------------------------------------------------------
*
    Home
*
-------------------------------------------------------------------------------- */
#photo_list.home{
    overflow: hidden !important;
}

#photo_list.home ul{
    overflow: hidden !important;
}

#photo_list.home li{
    overflow: hidden;
    height: 160px;
    border: none !important;
    float: left;
}

#photo_list.home li img{
    width: auto !important;
    height: 160px !important;
    border: none !important;
}

@media screen and (max-width: 768px) {
    #photo_list.home li{
        overflow: hidden;
        height: 140px !important;
        border: none !important;
        float: left;
    }
    
    #photo_list.home li img{
        width: auto !important;
        height: 140px !important;
        border: none !important;
    }
}

@media screen and (max-width: 460px) {
    #photo_list.home li{
        overflow: hidden;
        height: 100px !important;
        border: none !important;
        float: left;
    }
    
    #photo_list.home li img{
        width: auto !important;
        height: 100px !important;
        border: none !important;
    }
}


/* --------------------------------------------------------------------------------
*
    About
*
-------------------------------------------------------------------------------- */
#page_about{
    padding: 0 0 30px 0;
    text-align: center;
}

#page_about h2{
    padding: 30px 0 0 0;
    margin: 0 0 80px 0;
    text-align: center;
    font-family:Helvetica, Arial, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
    color: #222;
    font-size: 18px;
    letter-spacing: .15em;
    position: relative;
}

#page_about h2:after{
    content: '';
    width: 100%;
    height: 2px;
    background-image:url(../images/parts_title_btm_border.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: -10px;
    left: 0;
}

#page_about #section_profile{
    width: 100%;
    max-width: 960px;
    margin: 0 auto 30px auto;
    padding: 0 0 60px 0;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    text-align: left !important;
}

#page_about #section_profile h2{
    padding: 0;
}

#page_about #section_profile .pic{
    max-width: 580px;
    margin: 0 auto -40px auto;
    text-align: left;
}

#page_about #section_profile .pic p{
    width: 100px;
    display: inline-block;
}

#page_about #section_profile .pic img{
    width: 100%;
    height: auto;
}

#page_about #section_profile .col_right dl{
    text-align: left;
}

#page_about #section_profile .photographer{
    font-size: 12px;
    margin: 0 0 15px 0;
}

#page_about #section_profile h3{
    max-width: 580px;
    margin: 60px auto 40px auto;
    font-size: 25px;
}

#page_about #section_profile h4{
    margin: 0 0 15px 0;
    font-size: 18px;
}

#page_about #section_profile h3 .en{
    margin: 5px 0 0 2px;
    font-size: 12px;
    font-style: italic;
    font-family: inherit;
    display: block;
}
    
#page_about #section_profile dl:after{
    content: '';
    display: block;
    clear: both;
}

#page_about #section_profile dt{
    width: 60px;
    clear: both;
    margin: 0 0 5px 0;
    line-height: 1.8em;
    float: left;
}

#page_about #section_profile dd{
    width: 80%;
    margin: 0 0 5px 0;
    line-height: 1.8em;
    float: left;
}

#page_about #section_profile .sec{
    max-width: 580px;
    margin: 60px auto 0 auto;
}

#page_about #section_profile .sec p{
    line-height: 1.8em;
}

#page_about #section_studio{
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
    clear: both;
    line-height: 1.8em;
}

#page_about #section_studio h3.logo{
    margin: -50px 0 60px 0;
}

#page_about #section_studio #gmap{
    width: 100%;
    height: 460px;
}

#page_about #section_studio .studio_info{
    width: 100%;
    max-width: 960px;
    display: inline-block;
}

#page_about #section_studio .address{
    text-align: left;
    margin: 0 20px 40px 0;
    display: inline-block;
    vertical-align: top;
}

#page_about #section_studio .address h3{
    margin: 0 0 5px 0;
    font-size: 18px;
    letter-spacing: .1em;
}

#page_about #section_studio .contact{
    margin: 0 0 20px 20px;
    display: inline-block;
}

#page_about #section_studio .contact dl{
    width: 100%;
    text-align: left;
}

#page_about #section_studio .contact dt{
    width: 80px;
    margin: 0 0 5px 0;
    clear: both;
    float: left;
}

#page_about #section_studio .contact dd{
    width: auto;
    margin: 0 0 5px 0;
    float: left;
}

#page_about #section_studio .contact a{
    color: #c8141d;
    text-decoration: underline;
    transition: opacity .1s ease;
}

#page_about #section_studio .contact .email_address a:hover{
    opacity: .7;
}

/* -----------------------------------------------------------------------------------------------
*
    for 768px;
*
----------------------------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {

/* ---------- common setup ---------- */
body{
    z-index: 10;
}

body, html{
    width: 100%;
    min-width: 100%;
}

/* --------------------------------------------------------------------------------
*
    common style settings
*
-------------------------------------------------------------------------------- */
br{ display: none;}
br.sp{ display: block;}
img.pc{ display: none;}
img.sp{ display: inline-block;}


#contents{
    top: 70px;
    left: 0;
}
/* ----------------------------------------
    #header
---------------------------------------- */
#header{
    width: 100%;
    padding: 0;
    height: 50px;
    background-color: #fff !important;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 100;
}

#head_inner{
    margin: 0 100px;
    position: relative;
    transition: margin .2s ease;
}

@media screen and (max-width: 960px) {
    #head_inner{
        margin: 0 0;
    }
}

#head_inner h1{
    width: 100%;
    height: 42px;
    padding: 8px 0 0 0;
    background-color: #fff;
    z-index: 10;
    position: relative;
}

#head_inner h1 br{
    display: block;
}

#head_inner h1 img{
    width: 160px;
    margin: 2px 0 0 0;
}

#head_inner h1 a{
    width: 160px;
    margin: 0 auto;
    display: block;
}

#head_inner .gnav_ico{
    display: none;
}

#gnav li.profile:before{
    content: '/';
    display: none;
    color: #aaa;
    position: absolute;
    top: 0;
    left: 0;
}

#head_inner .gnav_ico{
    width: 44px;
    height: 55px;
    position: fixed;
    display: block;
    top: -1px;
    right: 5px;
    cursor: pointer;
    z-index: 10000;
}

#head_inner .gnav_ico span{
    transition: all .4s ease;
}

#head_inner .gnav_ico span.top{
    width: 22px;
    border-top: 2px solid #c8141d;
    position: absolute;
    top: 17px;
    left: 12px;
}

#head_inner .gnav_ico span.mid{
    content: '';
    display: block;
    width: 22px;
    border-top: 2px solid #c8141d;
    position: absolute;
    top: 25px;
    left: 12px;
}

#head_inner .gnav_ico span.btm{
    content: '';
    display: block;
    width: 22px;
    border-top: 2px solid #c8141d;
    position: absolute;
    top: 33px;
    left: 12px;
}

#head_inner .gnav_ico.on span{
    border-color: #c8141d;
}

#head_inner .gnav_ico.on span.mid{
    margin: 0 0 0 10px;
    opacity: 0;
    -webkit-transform: scale(.8);
    transform: scale(.8);
}

#head_inner .gnav_ico.on span.top{
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    margin: 8px 0 0 0;
}

#head_inner .gnav_ico.on span.btm{
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
    margin: -8px 0 0 0;
}

#gnav{
    width: 100%;
    height: 100% !important;
    float: none;
    visibility: hidden;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
}

#gnav .overlay{
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    top: 50px;
    left: 0;
    z-index: 1;
}

#gnav_inner{
    height: 100%;
    display: none;
    overflow-y: scroll;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 10000;
}

#gnav .gnav_list{
    top: 50px;
    position: relative;
    z-index: 10;
}

#gnav ul{
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #eee;
}

#gnav ul ul{
    border: none;
}

#gnav li{
    clear: both;
    width: 100% !important;
    height: auto;
    margin: 0 !important;
    padding: 0 !important;
    float: none;
    background-color: #fff;
    border-top: 1px solid #eee;
}

#gnav li a{
    display: block;
    margin: 0 !important;
    padding: 15px 0 14px 0 !important;
    font-size: 12px !important;
    font-weight: normal !important;
}

#gnav li.current a{ color: #aaa;}
#gnav li.current a:hover{ color: #c8141d;}

#gnav li span{
    display: none !important;
}

#gnav li span.sp{
    display: block !important;
}

#gnav li.parents ul{
    display: block !important;
}

/* ----------------------------------------
    #page_nav
---------------------------------------- */
#page_nav{
    width: auto;
    height: 40px;
    margin: 30px auto 80px auto;
    display: table;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: .1em;
    position: relative;
    color: #c8141d;
    letter-spacing: 0;
}

#page_nav a{
    color: #aaa;
    transition: all .1s ease;
}

#page_nav a:hover{
    color: #c8141d;
}

#page_nav a, #page_nav span{
    width: 40px;
    height: 40px;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    background-repeat: no-repeat;
    background-position: right center;
}

#page_nav .previouspostslink{
    background-image:url(../images/parts_page_nav_arrow_left.png) !important;
    background-position: center;
    background-size: 15px;
    position: absolute;
    top: 0;
    left: -40px;
}

#page_nav .nextpostslink{
    background-image:url(../images/parts_page_nav_arrow_right.png) !important;
    background-position: center;
    background-size: 15px;
    position: absolute;
    top: 0;
    right: -40px;
}

#page_nav .previouspostslink:hover{ background-image:url(../images/parts_page_nav_arrow_left_on.png) !important;}
#page_nav .nextpostslink:hover{ background-image:url(../images/parts_page_nav_arrow_right_on.png) !important;}


/* --------------------------------------------------
*
    #modal_window
*
-------------------------------------------------- */
#modal_window{
    display: none;
    z-index: 100;
}

#modal_window .overlay{
    width: 100%;
    height: 9999px;
    background-color: #fff;
    opacity: 1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

#modal_window .loading{
    width: 100%;
    height: 100%;
    position: fixed;
    vertical-align: middle;
    text-align: center;
    font-size: 0;
    color: #888;
    top: 0;
    left: 0;
    z-index: 101;
}

#modal_inner{
    width: 80%;
    text-align: center;
    max-width: 720px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 101;
}

#modal_inner img{
    width: 100%;
}

#modal_inner #img_main{
    position: relative;
}

#modal_inner #img_main p{
    width: 100%;
    line-height: 0;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}

#modal_inner #img_main p.vertical img{
    width: 100% !important;
    max-width: 480px !important;
    max-height: inherit !important;
    height: auto !important;
    display: inline-block;
    position: relative;
}

#modal_inner .btn_close{
    width: 25px;
    height: 25px;
    position: fixed;
    top: 10px;
    right: 10px;
    background-image:url(../images/parts_modal_close.png);
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity .1s ease;
    z-index: 10;
}

#modal_inner .btn_close:hover{
    opacity: .7;
    cursor: pointer;
}

#modal_inner .post_num{
    font-size: 10px;
    position: fixed;
    top: 10px;
    left: 10px;
}

#modal_inner .btn_arrow_left{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: -55px;
}

#modal_inner .btn_arrow_right{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: -55px;
}

@media screen and (max-width: 460px) {
    #modal_inner .btn_arrow_left{ width: 35px; height: 35px; left: -35px; }
    #modal_inner .btn_arrow_right{ width: 35px; height: 35px; right: -35px; }
}

#modal_inner .btn_arrow_left a,
#modal_inner .btn_arrow_right a{
    display: block;
}

#modal_inner .btn_arrow_left img,
#modal_inner .btn_arrow_right img{
    transition: all .15s ease;
    cursor: pointer;
}

#modal_inner .btn_arrow_left:hover img{ margin: 0 0 0 -5px; opacity: .7;}
#modal_inner .btn_arrow_right:hover img{ margin: 0 0 0 5px; opacity: .7;}



/* --------------------------------------------------------------------------------
*
    About
*
-------------------------------------------------------------------------------- */
#page_about{
    padding: 0 0 50px 0;
    text-align: center;
    font-size: 12px;
}

#page_about h2{
    margin: 0 0 40px 0;
    padding: 15px 0 0 0;
    text-align: center;
    font-family:Helvetica, Arial, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
    color: #222;
    font-size: 14px;
    letter-spacing: .15em;
    position: relative;
}

#page_about h2:after{
    content: '';
    width: 100%;
    height: 2px;
    background-image:url(../images/parts_title_btm_border.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: -10px;
    left: 0;
}

#page_about #section_profile{
    width: 100%;
    max-width: 960px;
    margin: 0 0 15px 0;
    padding: 0 0 30px 0;
    overflow: hidden;
    text-align: left;
}

#page_about #section_profile .pic{
    width: 100% !important;
    max-width: 580px;
    margin: 0 auto -10px auto;
    float: none;
}

#page_about #section_profile .pic p{
    width: 100% !important;
    float: none;
}

#page_about #section_profile .pic img{
    width: 80px;
    height: auto;
}

#page_about #section_profile .col_right{
    padding: 10px 0 0 0;
    width: 100%;
    float: none;
}

#page_about #section_profile .col_inner{
    width: 100%;
    box-sizing: border-box;
    padding: 0;
}

#page_about #section_profile h3{
    margin: 0 0 20px 0;
    font-size: 15px;
}

#page_about #section_profile h4{
    font-size: 15px;
}

#page_about #section_profile .sec{
    margin: 30px auto 0 auto;
    padding: 0;
}

#page_about #section_profile .sec.desc br{
    display: inherit !important;
}

#page_about #section_profile .sec p{
    font-size: calc(3 * ((100vw - 320px) / 320) + 9px);
    letter-spacing: 0;
}

#page_about #section_profile dl{
    font-size: calc(3 * ((100vw - 320px) / 320) + 9px);
}

#page_about #section_profile dt{
    width: 15%;
    clear: both;
    margin: 0 0 5px 0;
    box-sizing: border-box;
    padding: 0 10px 0 0;
    line-height: 1.8em;
    float: left;
    text-align: left;
}

#page_about #section_profile dd{
    width: 85%;
    margin: 0 0 5px 0;
    box-sizing: border-box;
    padding: 0 0 0 10px;
    line-height: 1.8em;
    float: left;
}

#page_about #section_studio{
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
    clear: both;
    line-height: 1.8em;
}

#page_about #section_studio #gmap{
    width: 100%;
    height: 320px;
}

#page_about #section_studio h3.logo{
    margin: -15px 0 30px 0;
}

#page_about #section_studio h3.logo img{
    width: 130px;
    height: auto;
}

#page_about #section_studio .studio_info{
    width: 100%;
    max-width: 960px;
    display: block;
}

#page_about #section_studio .address{
    text-align: center;
    margin: 0 0 20px 0;
    display: block;
    vertical-align: top;
}

#page_about #section_studio .address h3{
    margin: 0 0 5px 0;
    font-size: 15px;
    letter-spacing: .1em;
}

#page_about #section_studio .contact{
    margin: 0 0 20px 0;
    display: inline-block;
}

#page_about #section_studio .contact dl{
    width: 100%;
    text-align: left;
}

#page_about #section_studio .contact dt{
    width: 70px;
    margin: 0;
    clear: both;
    float: left;
}

#page_about #section_studio .contact dd{
    width: auto;
    margin: 0;
    float: left;
}

#page_about #section_studio .contact a{
    color: #c8141d;
    text-decoration: underline;
    transition: opacity .1s ease;
}

#page_about #section_studio .contact .email_address a:hover{
    opacity: .7;
}



}
