@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Noto+Sans+JP:wght@100..900&display=swap');

/*=============================================

common
html {
                scroll-behavior: smooth;
                }

==============================================*/
html, body {
	font-family: -apple-system, 'Lato', 'Noto Sans JP', sans-serif;
	font-weight: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 1em;
	position: relative;
	height: 100%;
	color: #fff;
	background-color: #000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	}
@media screen and (max-width: 768px) {
html, body {
	min-width: 100%;
	}
	}

html, body, svg, p, h1, h2, h3, h4{
	margin: 0;
	padding: 0;
                line-height: 1em;
	}

.anton {
	font-family: 'Anton', sans-serif;
                font-weight: 300;
	}

a:focus, *:focus { outline:none; }

* {
	box-sizing: border-box;
	}

img{
	vertical-align: bottom;
	border: 0;
	}

ul, li{
	list-style-type: none;
	padding: 0;
	margin: 0;
	}

a,
a:hover{
	color: #fff;
	text-decoration: none;
	font-weight: normal;
	}

.telnum a {
                color: #fff !imporntat;
                text-decoration: none !important;
                }

.sp{	display: none !important;	}
@media screen and (max-width: 768px) {
.sp{	display: block !important;	}
	}

.pc{	display: block !important;	}
@media screen and (max-width: 768px) {
.pc{	display: none !important;	}
	}

.spi{	display: none;	}
@media screen and (max-width: 768px) {
.spi{	display: inline;	}
	}

.pci{	display: inline;	}
@media screen and (max-width: 768px) {
.pci{	display: none;	}
	}


/*=============================================

nav

=============================================*/

nav{
	z-index: 2;
	width: 100%;
	height: 80px;
	position: fixed;
                top: 0;
                left: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	-webkit-transition: ease .5s;
	transition: ease .5s;
                background-color: rgba(0, 0, 0, 0.7);
	}
@media screen and (max-width: 768px) {
nav{
	height: 50px;
	min-width: 100%;
	}
	}

/*============

icon

=============*/

nav .icon{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	cursor: pointer;
	background-image: url('../images/dk_logo_dhstore.svg');
	background-position: center;
                background-size: 50%;
                background-repeat: no-repeat;
	}
@media screen and (max-width: 768px) {
nav .icon{
	width: 50px;
	height: 50px;
	padding: 0 1em;
	}
	}

nav .icon a{
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	}

/*============

drawer

=============*/

nav .drawer{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	cursor: pointer;
	}
@media screen and (max-width: 768px) {
nav .drawer{
	width: 50px;
	height: 50px;
	padding: 0 1em;
	}
	}

/*============

nav h1

=============*/

nav p{
                width: calc(100% - 110px);
                text-align: left;
                font-size: 1.2rem;
	}
@media screen and (max-width: 768px) {
nav p{
                width: calc(100% - 50px);
                font-size: 1.1rem;
	}
	}

/*============

sns

=============*/

nav .sns{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
                margin-right: 0;
	}
@media screen and (max-width: 768px) {
nav .sns{
                margin-right: 0;
	}
	}

nav .sns a{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
                margin-left: 10px;
	cursor: pointer;
	width: 40px;
	height: 80px;
	}
@media screen and (max-width: 768px) {
nav .sns a{
	cursor: pointer;
	width: 30px;
	height: 50px;
	}
	}

nav .sns a img{
	width: 100%;
	height: auto;
	}

/*============

navbar_toggle

=============*/

nav .navbar_toggle{
	}

nav .navbar_toggle_icon {
	position: relative;
	display: block;
	height: 2px;
	width: 20px;
	background: #fff;
	-webkit-transition: ease .2s;
	transition: ease .2s;
	}
nav .navbar_toggle_icon:nth-child(1) {
	top: 0;
	}
nav .navbar_toggle_icon:nth-child(2) {
	margin: 4px 0;
	}
nav .navbar_toggle_icon:nth-child(3) {
	top: 0;
	}
@media screen and (max-width: 768px) {
nav .navbar_toggle_icon {
	width: 20px;
	}
nav .navbar_toggle_icon:nth-child(2) {
	margin: 2px 0;
	}
	}

nav .navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
	top: 6px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	}
nav .navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0;
	}
nav .navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
	top: -6px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	}
@media screen and (max-width: 768px) {
nav .navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
	top: 4px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	}
nav .navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
	top: -4px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	}
	}

/*================

menu

=================*/

.menu{
                opacity: 0;
                position: fixed;
	-webkit-transform: translateX(-100vw);
	transform: translateX(-100vw);
	-webkit-transition:opacity ease .5s;
	transition:opacity ease .5s;
	z-index: 1;
                top: 80px;
                width: 100vw;
                height: auto;
                background-color: #000;
                }
@media screen and (max-width: 768px) {
.menu{
                top: 50px;
	}
	}

.menu.open {
	opacity: 1;
	-webkit-transform:translateX(0);
	transform:translateX(0);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	}

.menu a{
	color: #fff;
	}

.menu ul{
                width: 100%;
                height: auto;
                margin: auto;
	}

.menu ul li{
                width: 100%;
	margin: auto;
                border-bottom: 1px solid #222;
	background-color: #000;
	}

.menu ul li:last-child{
                border-bottom: none;
	}

.menu ul li a{
                display: block;
                position: relative;
                width: 100%;
                height: 100%;
                padding: 1em 80px;
                color: #fff;
                font-size: 1.2rem;
	-webkit-transition:ease .5s;
	transition:ease .5s;
                cursor: pointer;
	}
@media screen and (max-width: 768px) {
.menu ul li a{
                padding: .7em 50px;
	}
	}

.menu ul li a:hover{
                color: #000;
	background-color: #fff;
	}

.menu .address{
                display: block;
                padding: 1.5em;
                color: #111;
                font-size: .9rem;
                line-height: 1.7em;
	}

.menu .address a{
	color: #ff4e19;
	}

.menu .address a:hover{
                text-decoration: underline;
	}


/*=============================================

wrapper

==============================================*/

#wrapper{
                position: relative;
                margin-top: 0;
                background-color: #000;
	-webkit-transition:ease .5s;
	transition:ease .5s;
	}
@media screen and (max-width: 768px) {
#wrapper{
                margin-top: 0;
	}
	}

#wrapper.open{
	pointer-events: none;
                filter: blur(10px);
	}


/*=============================================

main

==============================================*/

main{
	position: relative;
                width: 100%;
                max-width: 1300px;
                height: 100svh;
                min-height: 900px;
                margin: auto;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(../images/mainbg.jpg);
	background-size: 80%;
	}
@media screen and (max-width: 768px) {
main{
                min-width: 100%;
                max-width: 100%;
                min-height: 100svh;
	background-size: 116%;
	}
	}

main .inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: column;
                height: 100%;
                padding: 5% 0;
	}
@media screen and (max-width: 768px) {
main .inner{
                padding: 18% 0;
	}
	}

main .inner p{
                width: 450px;
	}
@media screen and (max-width: 768px) {
main .inner p{
                width: 75%;
                max-width: 370px;
	}
	}

main .inner p img{
                width: 100%;
	}

main .inner h1 {
                width: 800px;
	}
@media screen and (max-width: 768px) {
main .inner h1 {
                width: 90%;
	}
	}

main .inner h1 img{
                width: 100%;
	}


/*=============================================

intro

==============================================*/

#intro{
	position: relative;
                width: 100%;
                margin: auto;
                background:#fff;
                text-align: center;
	}

#intro h2{
                font-size: 2em;
                font-weight: 700;
                line-height: 1.8em;
                color: #000;
                padding: 80px 0;
	}
@media screen and (max-width: 768px) {
#intro h2{
                font-size: 1.3em;
                padding: 50px 0;
	}
	}


/*=============================================

sub

==============================================*/

.sub{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row;
                height: 100%;
	}

.sub img{
	display: block;
                width: 50%;
	}
@media screen and (max-width: 768px) {
.sub img{
                width: 100%;
	}
	}

.sub img:last-child{
                width: 100%;
	}

.sub.under img{
                width: 50%;
	}
@media screen and (max-width: 768px) {
.sub.under img{
                width: 100%;
	}
	}

.sub.under img:first-child{
                width: 100%;
	}


/*=============================================

outline

==============================================*/

#outline{
	position: relative;
                width: 100%;
                margin: auto;
                background:#fff;
                text-align: center;
                padding-bottom: 80px;
                color: #000;
	}

#outline .inner{
	position: relative;
                width: 800px;
                margin: auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break:break-all;
	}
@media screen and (max-width: 768px) {
#outline .inner{
                width: 86%;
	}
	}

#outline h3{
                font-size: 2em;
                font-weight: 700;
                line-height: 1.8em;
                padding: 80px 0;
                text-align: center;
	}
@media screen and (max-width: 768px) {
#outline h3{
                font-size: 1.3em;
                padding: 50px 0;
	}
	}

#outline p.lead{
                font-size: 1em;
                line-height: 1.8em;
	}

#outline p.name{
                margin-top: 40px;
                font-size: 1.3em;
                line-height: 1.8em;
                font-weight: 700;
	}

#outline p.photographer{
                font-size: .9em;
                line-height: 1.8em;
                font-weight: 700;
	}

#outline p.prof{
                margin-top: 40px;
                font-size: .9em;
                line-height: 1.8em;
	}


/*=============================================

photobook

==============================================*/

#photobook{
	position: relative;
                width: 800px;
                margin: auto;
                padding: 80px 0;
                text-align: center;
	}
@media screen and (max-width: 768px) {
#photobook{
                width: 86%;
	}
	}

#photobook .title{
                width: 600px;
                margin: auto;
	}
@media screen and (max-width: 768px) {
#photobook .title{
                width: 100%;
	}
	}

#photobook .title img{
                width: 100%;
	}

#photobook .photo{
                width: 100%;
                margin: auto;
                margin-top: 80px;
                text-align: center;
                background: #fff;
	}

#photobook .photo img{
                width: 100%;
	}

#photobook h3{
                margin-top: 40px;
                font-size: 2em;
                line-height: 1em;
	}
@media screen and (max-width: 768px) {
#photobook h3{
                font-size: 1.6em;
	}
	}

#photobook p.spec{
                margin-top: 40px;
                font-size: 1em;
                line-height: 1.8em;
	}
@media screen and (max-width: 768px) {
#photobook p.spec{
                margin-top: 30px;
	}
	}

#photobook p.text{
                margin-top: 40px;
                padding: 40px 0 0;
                font-size: 1em;
                line-height: 1.8em;
                border-top: 1px solid #333;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break:break-all;
	}
@media screen and (max-width: 768px) {
#photobook p.text{
                margin-top: 30px;
                font-size: .8em;
                line-height: 1.6em;
	}
	}

#photobook p.text span{
                font-size: 1em;
                line-height: 1em;
                font-weight: 700;
                display: block;
                text-align: center;
	}

#photobook .buy{
                width: 300px;
                height: auto;
                margin: auto;
                margin-top: 40px;
	}
@media screen and (max-width: 768px) {
#photobook .buy{
                width: 100%;
	}
	}

#photobook .buy a{
                display: block;
                width: 100%;
                height: 100%;
                padding: 20px 0;
                font-size: 1em;
                text-align: center;
                font-weight: 700;
                color: #fff;
                background-color: #d00;
	-webkit-transition: all .6s;
	-ms-transition: all .6s;
	transition: all .6s;
	}

#photobook .buy a:hover{
                color: #fff;
                background-color: #a00;
	}


/*=============================================

photoprint

==============================================*/

#photoprint{
	position: relative;
                width: 100%;
                margin: auto;
                padding: 80px 0;
                border-top: 1px solid #333;
	}

#photoprint .inner{
	position: relative;
                width: 800px;
                margin: auto;
                text-align: center;
	}
@media screen and (max-width: 768px) {
#photoprint .inner{
                width: 86%;
	}
	}

#photoprint h3.title{
                font-size: 1.8em;
                font-weight: 800;
                line-height: 1em;
	}
@media screen and (max-width: 768px) {
#photoprint h3.title{
                font-size: 1.3em;
	}
	}

#photoprint p.lead{
                margin-top: 30px;
                font-size: 1em;
                line-height: 1.8em;
                font-weight: 700;
	}
@media screen and (max-width: 768px) {
#photoprint p.lead{
                font-size: .9em;
	}
	}

#photoprint p.text{
                margin-top: 40px;
                font-size: 1em;
                line-height: 1.8em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break:break-all;
	}
@media screen and (max-width: 768px) {
#photoprint p.text{
                margin-top: 30px;
	}
	}

#photoprint .title img{
                width: 100%;
	}

#photoprint .photo{
                width: 100%;
                margin: auto;
                margin-top: 80px;
                text-align: center;
                background: #fff;
	}

#photoprint .photo img{
                width: 400px;
	}
@media screen and (max-width: 768px) {
#photoprint .photo img{
                width: 100%;
	}
	}

#photoprint p.spec{
                margin-top: 40px;
                padding: 40px 0;
                font-size: 1em;
                line-height: 1.8em;
                border-top: 1px solid #333;
                border-bottom: 1px solid #333;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break:break-all;
	}
@media screen and (max-width: 768px) {
#photoprint p.spec{
                margin-top: 30px;
	}
	}

#photoprint .buy{
                width: 300px;
                height: auto;
                margin: auto;
                margin-top: 40px;
	}
@media screen and (max-width: 768px) {
#photoprint .buy{
                width: 100%;
	}
	}

#photoprint .buy a{
                display: block;
                width: 100%;
                height: 100%;
                padding: 20px 0;
                font-size: 1em;
                text-align: center;
                font-weight: 700;
                color: #fff;
                background-color: #d00;
	-webkit-transition: all .6s;
	-ms-transition: all .6s;
	transition: all .6s;
	}

#photoprint .buy a:hover{
                color: #fff;
                background-color: #a00;
	}


/*=============================================

contact

==============================================*/

#contact{
	position: relative;
                width: 100%;
                margin: auto;
                padding: 80px 0;
                background: #fff;
                text-align: center;
	}

#contact h3{
                font-size: 1em;
                font-weight: 700;
                line-height: 1em;
                color: #000;
	}

#contact p{
                margin-top: 30px;
                font-size: 1em;
                line-height: 1.8em;
                color: #000;
	}


/*================================

pagetop

================================*/

#pagetop {
	position: fixed;
	width: 40px;
	height: 40px;
	right: -1px;
	bottom: -40px;
	*display: none;
	z-index: 999;
	opacity: 1;
	filter: alpha(opacity=100);
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background-color: #000;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(../images/dk_arrow_up.svg);
	background-size: cover;
                border-top: 1px solid #333;
                border-left: 1px solid #333;
	}

#pagetop a{
                display: block;
	width: 100%;
	height: 100%;
                cursor: pointer;
	}

#pagetop img {
	width: 100%;
	height: 100%;
	}


/*=============================================

footer

=============================================*/

footer{
	width: 100%;
	height: auto;
	position: relative;
                margin: auto;
                font-size: 1em;
                text-align: center;
                padding: 0 0 80px 0;
                background: #fff;
                color: #000;
	}

footer img{
	width: 500px;
	height: auto;
	}

footer p.dh{
                font-size: 1.5em;
                line-height: 1em;
                font-weight: 700;
	}
@media screen and (max-width: 768px) {
footer p.dh{
                font-size: 1.3em;
	}
	}

footer p.dh a{
                color: #000 !important;
	}


footer p.copyright{
                margin-top: 30px;
                font-size: .7em;
	}





/*=============================================

topic

==============================================*/

#topic{
	position: relative;
                width: 100%;
                margin: auto;
                padding-top: 80px;
                padding-bottom: 60px;
                color: #fff;
                text-align: center;
	}
@media screen and (max-width: 768px) {
#topic{
                width: 85%;
                padding-top: 60px;
                padding-bottom: 60px;
	}
	}

#topic h2{
                font-size: 3em;
                line-height: 1em;
                font-weight: 900;
	}
@media screen and (max-width: 768px) {
#topic h2{
                font-size: 2em;
                line-height: 1.3em;
	}
	}

#topic .sub{
                margin-top: 30px;
                font-size: 2.5em;
                line-height: 1em;
	}
@media screen and (max-width: 768px) {
#topic .sub{
                font-size: 1.6em;
	}
	}

#topic .date{
                margin-top: 10px;
                font-size: 1.8em;
                line-height: 1em;
	}
@media screen and (max-width: 768px) {
#topic .date{
                font-size: 1.3em;
	}
	}

#topic p.comment{
                margin: auto;
                margin-top: 30px;
                font-size: 1em;
                line-height: 1em;
                display: inline-block;
	cursor: pointer;
	}
@media screen and (max-width: 768px) {
#topic p.comment{
                margin-top: 30px;
                font-size: 1em;
                line-height: 1em;
	}
	}

#topic p.comment a{
                display: block;
                width: 100%;
                height: 100%;
                padding: 1em 3em;
                background-color: #c00;
	-webkit-transition: all .6s;
	-ms-transition: all .6s;
	transition: all .6s;
                font-weight: 600;
	}

#topic p.comment a:hover{
                color: #000;
                background-color: #fff;
	}

/*=============================================

fixedbuy

==============================================*/


#fixedbuy .buy{
                width: 300px;
                margin: 0 auto;
                padding-bottom: 50px;
	}
@media screen and (max-width: 768px) {
#fixedbuy .buy{
                width: 86%;
	}
	}

#fixedbuy .buy a{
                display: flex;
	align-items: center;
	justify-content: center;
                width: 100%;
                height: 100%;
                padding: 20px 0;
                font-size: 1em;
                text-align: center;
                font-weight: 700;
                color: #fff;
                background-color: #d00;
	-webkit-transition: all .6s;
	-ms-transition: all .6s;
	transition: all .6s;
	}

#fixedbuy .buy a:hover{
                color: #fff;
                background-color: #a00;
	}

