/*=============================================================
  common.css
---------------------------------------------------------------

01. common layout
02. header
03. footer
04. home
05. media query
06. helper

===============================================================
01. common layout
=============================================================*/

.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    transition: none !important;
}

body {
    /* font-family: 'Noto Sans JP', sans-serif; */
    font-family: "Sawarabi Mincho", sans-serif;
}

#preload-img {
    width: 0;
    height: 0;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
}

img {
    width: 100%;
}

p {
    margin-bottom: 15px;
}

.inner p:last-of-type {
    margin-bottom: 0;
}

.inner p.mb-default {
    margin-bottom: 15px;
}

.inner p.mb-plus {
    margin-bottom: 25px;
}

.pc,
.pc-alt {
	display: inline-block;
}

.sp,
.sp-alt {
	display: none;
}

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

.central {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    -webkit-transform: translateX( -50% ) translateY( -50% );
    -moz-transform: translateX( -50% ) translateY( -50% );
    -ms-transform: translateX( -50% ) translateY( -50% );
    transform: translateX( -50% ) translateY( -50% );
}

#loading-layer {
    width: 100%;
    height: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all ease 1000ms;
}

.loaded #loading-layer {
    opacity: 0;
    visibility: hidden;
}

#wrapper {
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
}

.mass.with-bb {
    border-bottom: solid 1px rgba( 0,0,0,0.1 );
}

.mass.with-white-base {
    background: #fff;
}

.mass.with-white-base-opacity {
    background: rgba( 255,255,255,0.4 );
}

#bg,
#visual {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

#bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

#visual {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

#visual #icon-scroll {
    width: 76px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 1;
    transition: all ease 1000ms;
    transition-delay: 1000ms;
    -webkit-transform: translateX( -50% );
    -moz-transform: translateX( -50% );
    -ms-transform: translateX( -50% );
    transform: translateX( -50% );
    opacity: 0;
}

.loaded #visual #icon-scroll {
    opacity: 0.99999;
}

.inner {
    width: 84%;
    padding: 40px 0 40px;
    margin: 0 auto;
}

a.text-link-01 {
    color: #000;
}

.btn-row {
    margin-bottom: 20px;
    text-align: center;
}

.btn-01 {
    display: inline-block;
    width: 50%;
    max-width: 460px;
    padding: 20px 0;
    -webkit-border-radius: 200px;
    border-radius: 200px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 0 10px rgba( 0,0,0,0 );
    box-shadow: 0 0 10px rgba( 0,0,0,0 );
    color: #000;
    text-decoration: none;
    border: solid 1px #000;
    transition: all ease 300ms;
}

.btn-01:hover {
    color: #000;
    border: solid 1px #fff;
    background: #fff;
    -webkit-box-shadow: 0 0 10px rgba( 0,0,0,0.1 );
    box-shadow: 0 0 10px rgba( 0,0,0,0.1 );
}

.tit-01 {
    margin-bottom: 10px;
    font-size: 36px;
    text-align: center;
    letter-spacing: 4px;
    line-height: 1.7;
}

.tit-01.mb-plus {
    margin-bottom: 30px;
}

.tit-img {
    margin-bottom: 30px;
    text-align: center;
}

.tit-img img {
    width: 25%;
}

#map-01 {
    width: 100%;
    height: 500px;
    margin-bottom: 30px;
}

/*
 * .part-mini
 */

.part-mini {
    margin-bottom: 15px;
}

.part-mini section {
    margin-bottom: 20px;
}

.part-mini section h1 {
    font-size: 18px;
}

/*
 * .sns-set
 */

.sns-set {
    margin-bottom: 30px;
}

.sns-set ul {
    text-align: center;
}

.sns-set ul li {
    display: inline-block;
    width: 46px;
    vertical-align: middle;
}

.sns-set ul li a {
    display: block;
}

.sns-set ul li img {
    padding: 8px;
    border: solid 1px rgba( 0,0,0,0.25 );
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 200px;
    border-radius: 200px;
}

.sns-set ul li.line-btn {
    width: auto;
}

.sns-set ul li.line-btn img {
    width: auto;
    padding: 0;
    margin-left: 3px;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}

/*
 * .box-img
 */

.box-img {
    width: 100%;
    padding-top: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

/*
 * .row-simple
 */

.row-simple .box-img {
    margin-bottom: 40px;
}

/*
 * .basic motion
 */

.elem-01,
.elem-02,
.elem-03,
.elem-04,
.elem-05,
.elem-06 {
    transition: all ease 600ms;
    transform: translateY( 40px );
    opacity: 0;
}

.elem-02 {
    transition-delay: 200ms;
}

.elem-03 {
    transition-delay: 400ms;
}

.elem-04 {
    transition-delay: 600ms;
}

.elem-05 {
    transition-delay: 800ms;
}

.active .elem-01,
.active .elem-02,
.active .elem-03,
.active .elem-04 {
    transform: translateY( 0 );
    opacity: 0.99999;
}

/*
 * .simple-menu
 */

.simple-menu {
    padding-top: 30px;
}

.simple-menu .lefter,
.simple-menu .righter {
    width: 48%;
}

.simple-menu .lefter {
    float: left;
}

.simple-menu .righter {
    float: right;
}

.simple-menu dl {
    border-top: solid 1px rgba( 0,0,0,0.1 );
    padding-top: 23px;
}

.simple-menu dl dt,
.simple-menu dl dd {
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.simple-menu dl dt {
    width: calc( 100% - 8em );
    float: left;
}

.simple-menu dl dd.with-bb {
    border-bottom: solid 1px rgba( 0,0,0,0.1 );
    padding-bottom: 23px;
    margin-bottom: 23px;
}

.simple-menu dl dd.price {
    text-align: right;
}

/*
 * .photo-menu
 */

.photo-menu ul {
    margin-bottom: 50px;
    text-align: center;
}

.photo-menu ul:last-of-type {
    margin-bottom: 10px;
}

.photo-menu ul li {
    display: inline-block;
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: top;
}

.photo-menu ul li:nth-of-type( 1 ),
.photo-menu ul li:nth-of-type( 3 ){
    padding-right: 24px;
}

.photo-menu ul li:nth-of-type( 2 ),
.photo-menu ul li:nth-of-type( 4 ){
    padding-left: 24px;
}

.photo-menu ul li section img {
    margin-bottom: 22px;
    box-shadow: 0 0 8px rgba( 0,0,0,0.025 );
}

.photo-menu ul li section h1 {
    margin-bottom: 6px;
    font-size: 24px;
    line-height: 1.6;
}

.photo-menu ul li section p.price {
    margin-bottom: 15px;
}

.photo-menu ul li section .box-desc.ta-l {
    text-align: left;
}

.photo-menu02 {
	margin-top: 40px;
}

/*
 * .gallery-wrapper
 */

.gallery-wrapper ul {
    margin-bottom: 40px;
    text-align: center;
}

.gallery-wrapper ul li {
    display: inline-block;
    width: 25%;
    padding: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.gallery-wrapper ul li a {
    display: block;
}

/*=============================================================
02. header
=============================================================*/

#main-header > h1 {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

/*=============================================================
03. footer
=============================================================*/

#main-footer {
    padding: 60px 0;
    text-align: center;
}

#main-footer p {
    margin-bottom: 0;
    font-size: 14px;
}

/*=============================================================
04. home
=============================================================*/

#home #main-header > h1 {
    display: none;
}

#home #visual {
    background-image: url( /common/img/home/visual.png?v0 );
}

#home #bg {
    background-image: url( /common/img/home/bg.jpg?v0 );
}

#home #visual #logo-landscape {
    width: 64%;
    padding-top: 44%;
    top: 44%;
}

#home #visual #logo-portrait {
    width: 74%;
    padding-top: 102%;
    top: 46%;
}

#home #visual #box-logo .visual-contents img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    vertical-align: top;
    background: rgba( 255,255,255,0.0000001 );
}

#home #visual #box-logo .visual-contents .ojizousama {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

#home #visual #box-logo #logo-landscape > img:nth-of-type( 1 ),
#home #visual #box-logo #logo-landscape .ojizousama {
    transition: all ease 700ms;
    transform: translateY( 15% );
    opacity: 0;
}

#home.loaded #visual #box-logo #logo-landscape > img:nth-of-type( 1 ),
#home.loaded #visual #box-logo #logo-landscape .ojizousama {
    transform: translateY( 0 );
    opacity: 0.99999;
}

#home #visual #box-logo #logo-portrait > img:nth-of-type( 1 ),
#home #visual #box-logo #logo-portrait .ojizousama {
    transition: all ease 700ms;
    transform: scale( 0.9 );
    opacity: 0;
}

#home.loaded #visual #box-logo #logo-portrait > img:nth-of-type( 1 ),
#home.loaded #visual #box-logo #logo-portrait .ojizousama {
    transform: scale( 0.99999 );
    opacity: 0.99999;
}

#home #visual #box-logo #logo-landscape > img:nth-of-type( 1 ),
#home #visual #box-logo #logo-portrait > img:nth-of-type( 1 ) {
    display: block;
    transition-delay: 400ms;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#home #visual #box-logo #logo-landscape .ojizousama {
    transition-delay: 600ms;
}

#home #visual #box-logo #logo-portrait .ojizousama {
    transition-delay: 700ms;
}

#home #visual #box-logo .visual-contents > img.stamp {
    display: block;
    position: absolute;
    left: auto;
    z-index: 1;
    transition: all ease-out 800ms;
    transition-delay: 1100ms;
    transform: translateY( 0 ) scale( 2 ) rotate( -15deg );
    opacity: 0;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#home #visual #box-logo #logo-landscape > img.stamp {
    width: 7%;
    top: 87%;
    right: -6%;
}

#home #visual #box-logo #logo-portrait > img.stamp {
    width: 9%;
    top: 91%;
    right: 4%;
}

#home.loaded #visual #box-logo .visual-contents > img.stamp {
    transform: translateY( 0 ) scale( 0.99999 ) rotate( 0 );
    opacity: 0.99999;
}

#home #visual .simple-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

#home #visual .simple-slide img {
    display: block;
    position: absolute;
    opacity: 0;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
 
#home.loaded #visual .simple-slide img:nth-of-type( 1 ) {
    -webkit-animation: simpleSlide01 12000ms ease infinite;
    animation: simpleSlide01 12000ms ease infinite;
}

#home.loaded #visual .simple-slide img:nth-of-type( 2 ) {
    -webkit-animation: simpleSlide02 12000ms ease infinite;
    animation: simpleSlide02 12000ms ease infinite;
}

#home.loaded #visual .simple-slide img:nth-of-type( 3 ) {
    -webkit-animation: simpleSlide03 12000ms ease infinite;
    animation: simpleSlide03 12000ms ease infinite;
}

#home.loaded #visual .simple-slide img:nth-of-type( 4 ) {
    -webkit-animation: simpleSlide04 12000ms ease infinite;
    animation: simpleSlide04 12000ms ease infinite;
}

@keyframes simpleSlide01 {
    0% { opacity: 0; }
    10% { opacity: 0; }
    14% { opacity: 1; }
    25% { opacity: 1; }
    35% { opacity: 1; }
    39% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes simpleSlide02 {
    0% { opacity: 0; }
    35% { opacity: 0; }
    39% { opacity: 1; }
    50% { opacity: 1; }
    60% { opacity: 1; }
    64% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes simpleSlide03 {
    0% { opacity: 0; }
    60% { opacity: 0; }
    64% { opacity: 1; }
    75% { opacity: 1; }
    85% { opacity: 1; }
    89% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes simpleSlide04 {
    0% { opacity: 1; }
    10% { opacity: 1; }
    14% { opacity: 0; }
    85% { opacity: 0; }
    89% { opacity: 1; }
    100% { opacity: 1; }
}

#home #part-info .line-stamp {
    width: 800px;
    margin-bottom: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
}

#home #part-about .box-img {
    background-image: url( /common/img/home/img-about.jpg?v1 );
    background-position: top center;
}

#home #part-profile {
    text-align: center;
}

#home #part-profile .box-img {
    width: 70%;
    padding-top: 60%;
    margin-left: auto;
    margin-right: auto;
    background-image: url( /common/img/home/img-profile.jpg?v1 );
    background-position: center top;
}

#home #part-info {
    background-image: url( /common/img/home/bg-info.jpg );
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    text-align: center;
}

#home #part-contact {
    overflow-wrap: break-word;
}

/*=============================================================
05. media query
=============================================================*/

@media screen and (orientation: landscape) {

    #home #visual #logo-landscape {
        display: block;
    }

    #home #visual #logo-portrait {
        display: none;
    }

}

@media screen and (orientation: portrait) {

    #home #visual #logo-landscape {
        display: none;
    }

    #home #visual #logo-portrait {
        display: block;
    }

    #home #visual {
        background-image: url( /common/img/home/visual-portrait.png?v1 );
    }

    #home #bg {
        background-image: url( /common/img/home/bg-portrait.jpg );
    }

    #home #part-info {
        background-image: url( /common/img/home/bg-info-portrait.jpg );
    }

}

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

    body {
        font-size: 16px;
    }

}

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

    .box-img {
        padding-top: 100%;
    }

    #home #part-about .box-img {
        padding-top: 64%;
    }

}

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

    #home #visual #logo-landscape {
        width: 74%;
        padding-top: 51%;
        top: 45%;
    }

    #home #part-info .line-stamp {
        width: 100%;
        padding: 10px;
    }

}

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

	.pc {
		display: none;
    }

	.sp {
		display: inline-block;
    }

    .tit-img img {
        width: 32%;
    }

    .simple-menu .lefter,
    .simple-menu .righter {
        width: 100%;
        float: none;
    }

    .simple-menu .lefter dl dd.price:last-of-type {
        border-bottom: none;
        margin-bottom: 0;
    }

    .photo-menu ul {
        margin-bottom: 0 !important;
    }

    .photo-menu ul li {
        width: 100%;
        padding: 0 !important;
        margin-bottom: 50px;
    }

    .photo-menu ul:last-of-type li:last-of-type {
        margin-bottom: 10px;
    }

}

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

	.pc-alt {
		display: none;
    }

	.sp-alt {
		display: inline-block;
    }

    #main-footer {
        padding: 30px 0;
    }

    #visual #icon-scroll {
        width: 60px;
    }

    .inner {
        padding: 30px 0;
    }

    .btn-01 {
        width: 100%;
        max-width: initial;
    }

    .sns-set {
        margin-bottom: 20px;
    }

    .tit-01 {
        font-size: 28px;
    }

    .tit-01.mb-plus {
        margin-bottom: 25px;
    }

    .tit-img {
        margin-bottom: 23px;
    }

    .tit-img img {
        width: 66%;
    }

    .box-img {
        padding-top: 120%;
    }

    .row-simple .box-img {
        margin-bottom: 30px;
    }

    .photo-menu ul li {
        margin-bottom: 40px;
    }

    .photo-menu ul:last-of-type li:last-of-type {
        margin-bottom: 5px;
    }

    .gallery-wrapper ul {
        margin-bottom: 25px;
        text-align: left;
    }

    .gallery-wrapper ul li {
        width: 50%;
        padding: 2px;
    }

    .indent {
        text-align: left;
    }

    .indent li {
        margin-left: 1em;
        text-indent: -1em;
    }

    #home #visual {
        background-image: url( /common/img/home/visual-portrait-s.png?v1 );
    }

    #home #visual #logo-portrait {
        width: 82%;
        padding-top: 113%;
        top: 46%;
    }

    #home #part-about .ta-c {
        text-align: left;
    }

    #home #part-profile .box-img {
        width: 100%;
        padding-top: 100%;
    }

    #home #part-profile,
    #home #part-profile .part-mini h1.tit-01 {
        text-align: left;
    }

    #home #part-profile .part-mini h1.tit-01 {
        font-size: 22px;
    }

    #home #part-profile .part-mini section ul.indent li {
        margin-left: 1.4em;
        text-indent: -1.1em;
    }

}

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

    .tit-01 {
        letter-spacing: 2px;
        line-height: 1.5;
    }

    #home #visual #logo-portrait {
        width: 76%;
        padding-top: 105%;
        top: 45%;
    }

}

/*=============================================================
06. helper
=============================================================*/

.clr {
	clear: both;
}

/*
* clear fix
*/

.cf:before,
.cf:after {
	content:"";
	display: block;
	height: 0;
	overflow: hidden;
}

.cf:after {
	clear: both;
}
