@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;600&family=Roboto:wght@100;300;400;700&family=Taviraj:ital,wght@1,100;1,200;1,300&display=swap');

/* CSS Document */
/* ==================================================
    BASE (RESET)FONT
================================================== */
html { font-size: 90%;}
body {
    background-color: #e5e5db;
	color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
	font-size: 14px;
	font-feature-settings: "palt" 1;
	line-height: 190%;
	text-align: center;
	letter-spacing: 0.02em;
	-webkit-font-smoothing: antialiased; /* WebKitブラウザサポート */
	text-rendering: optimizeLegibility; /* Chrome、Safariサポート */
	-moz-osx-font-smoothing: grayscale; /* Firefoxサポート */
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%; /* iPhoneの文字サイズバグの回避 */
    overflow-x: hidden;
}
img {
    display: block;
    width: 100%;
}


/* ==================================================
    LINK
================================================== */
a { 
    line-height: 1.25;
    color:#333;
    text-decoration:none;
    transition: .2s ease-in-out;
}
a:link {
    color:#333;
    text-decoration:none;
    transition: .2s ease-in-out;
    border-bottom: 0px solid #333;
}
a:visited {
    color:#333;
}
a:hover { 
    color:#000;
    border-bottom: 1px solid #000; 
}
a:active { 
    color:#333;
}
a img { 
    opacity:1.0;
    transition: .3s ease-in-out;
}
a img:hover { 
    opacity: .7 !important;
}


/* ==================================================
    PC/SP 表示切り替え
================================================== */
.sp_only { display:inherit }
.pc_only { display:none }
.common-w {
    width:88%;
    margin: 0 auto;
}
@media screen and (min-width:1024px){
    .sp_only { display:none }
    .pc_only { display:block }
    .common-w {
       width:95%;
       max-width: 1280px;
    }
}


/* ==================================================
   header
================================================== */
header {
    width: 100%;
    margin: 0 0 8em;
}
header .top {
	width: 100%;
}
header .header_img {
}
header .header_logo {
	width: 65%;
	margin: 3em auto 0;
    max-width: 300px;
}
@media screen and (min-width:1024px){
    header {
    width: 100%;
    margin: 1em 0 8em;
}
    header .top {
        max-width: 1280px;
        height: auto;
        display: flex;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 0 auto;
        padding: 3em 0;
        width: 92%;
    }
    header .header_img {
        width: 52%;
    }
    header .header_logo {
        width: 25%;
        margin: 0;
        padding-left: 10em
    }
}

/* ==================================================
   section / gallery
================================================== */
section.gallery ul {}
section.gallery li {
    margin-bottom: 6em;
}
section.gallery li .gallery-img {
    margin-bottom: 0em
}
section.gallery li .gallery-img img {
    margin-bottom: 3em;
}
section.gallery .credit-item {
    line-height: 2;
    color: #000;
}
section.gallery li#gallery-01 .gallery-img:nth-child(1) {
        width: 75%;
    margin: 0 auto;
    }
section.gallery li#gallery-03 .gallery-img:nth-child(2) {
        width: 75%;
    margin: 0 auto;
    }
section.gallery li#gallery-05 .gallery-img:nth-child(1) {
        width: 75%;
    margin: 0 auto;
    }

@media screen and (min-width:1024px){
    section.gallery li {
        display:flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content:space-between;
    }
    section.gallery li#gallery-03 {
        justify-content:center;
    }
    section.gallery li .gallery-img,
    section.gallery li#gallery-03 .gallery-img {
        width: 50%;
        margin-bottom: 0em;
    }
    section.gallery li#gallery-01 .gallery-img:nth-child(1) {
        width: 38%;
        margin:0 3% 0em 6%;
    }
    section.gallery li#gallery-03 .gallery-img:nth-child(2) {
        width: 38%;
        margin:0 3% 0em 6%;
    }
    section.gallery li#gallery-05 .gallery-img:nth-child(1) {
        width: 38%;
        margin:0 3% 0em 6%;
    }
    section.gallery li#gallery-02 {
        display: block;
        width: 100%;
    }
    section.gallery li#gallery-02 .gallery-img {
        width: 50%;
        margin:0 auto 2em ;
    }
    section.gallery li#gallery-04 {
        display: block;
        width: 100%;
    }
    section.gallery li#gallery-04 .gallery-img {
        width: 50%;
        margin:0 auto 2em ;
    }
    section.gallery li .credit-item {
        margin: 2em auto 0;
        color: #000;
    }
}


/* ==================================================
   section / credit
================================================== */
section.credit .credit-logo {
     margin-bottom: 2em;
}
section.credit .credit-logo .img {
    width: 70%;
    margin:0 auto 3em;
}
section.credit .credit-logo .lg {
    width: 50%;
    max-width: 300px;
    margin:0 auto;
}
section.credit .credit-staff {
    margin:0 auto 6em;
    line-height: 2.2;
    font-size: 14px;
    color:#333;
}
@media screen and (min-width:1024px){
    section.credit .credit-logo .img {
        width: 40%;
    }
    section.credit .credit-logo .lg {
        width:23%;
        max-width: 300px;
    }
}

/* ==================================================
   section / share-button
================================================== */
section.share-button ul {
    display: flex;
    justify-content:center;
    margin-bottom: 5em;
}
section.share-button ul li a {
    margin: 0 0.25em;
    display: flex;
    align-items:center;
    justify-content: center;
    border-radius: 50%;
    border:#666 1px solid;
    line-height:1;
    width: 2.25em;
    height: 2.25em;
    background-color: transparent!important;
    text-decoration: none;
    transition: 0.3s;
}
section.share-button ul li
section.share-button ul li a,
section.share-button ul li i {
    color:#666;
    transition: 0.3s;
}
section.share-button .fab,
section.share-button .fa {
    text-align: center;
    font-size: 1.1em;
}
section.share-button ul li a:hover {
    border:#fff 1px solid;
}
section.share-button ul li a:hover i {
    color: #fff;
}
@media screen and (min-width:1024px){
    section.share-button ul li a {
        font-size:17px !important;
        width: 2.5em;
        height: 2.5em;
    }
}    


/* ==================================================
   footer - store_address
================================================== */
footer {
    background-color:#979788;
    color: #fff;
}
footer .store>div {
    padding: 5em 0;
}
footer .store h4 {
    font-size: 1.35em;
    margin-bottom: 0.5em;
}
footer .store p {
    font-size:0.85em;
}
footer .store .store-list {
    margin: 3em 0;
}
footer .store .store-list li {
    margin-bottom:1.5em;
}
footer .store .store-list h5 {}
footer .store .store-list a {
    margin-left: .75em;
    color: #fff;
}
footer .store .store-list h5 {}
footer .store .store-list a:hover {
    margin-left: .75em;
    color: #ccc;
    text-decoration: underline;
}
footer .copyright {}
footer .copyright h6 {    
    line-height: 1;
    font-family:helvetica;
    font-size: 12px;
    padding: 0 0 5em;
}


/* ==================================================
    SCROLL UP
================================================== */
.scroll-up {
    width: 3em;
    height: 3em;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    background-color: rgba(0,0,0,0.1);
    transition: 0.3s;
    overflow: hidden;
    position: fixed;
    z-index:100;
	right: 1.25em; 
	top:  1.25em;
    opacity: 0;
    }
.scroll-up:hover {
    border: 1px solid rgba(255,255,255,0.3);
    background-color:rgba(255,255,255,0.3);
    opacity: 0.5;
}
.scroll-up a {
    width:100%;
    height: 100%;
	background-color:rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    }
.scroll-up a:after {
    content:"";
    display:block;
    transform: rotate(45deg);
    width: 1em;
    height: 1em;
    margin-top: .5em;
    border-top: 1px solid #FFFFFF;
    border-left: 1px solid #FFFFFF;
}