@charset "utf-8";


/* ----------------------------------------------------------------------
	
	 dot design　css
	
---------------------------------------------------------------------- */


/* - 共通内容
---------------------------- */


html {
	/*-webkit-font-smoothing: antialiased;*/
	font-size: 62.5%;
}


body {
	font-size: 100%;
	font-family: 'Montserrat','Noto Sans JP', 'Yu Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
	color:#010101;
  color: #444;
	/*-webkit-font-smoothing: subpixel-antialiased;*/
	word-wrap: break-word;
  overflow-wrap: break-word;
  position: relative;
  background-color: #e9e9e9;
  backface-visibility:hidden;
}

body * { box-sizing: border-box; }

body.off {
  overflow-y: hidden;
}


a {
	text-decoration:none;
	color:#010101;
}

img {
	max-width: 100%;
  /*width: 100%;*/
	height: auto;
	border: 0;
	vertical-align: top;
}

br.sp {
	display:none;
}


i {
  margin-right: 0.4em;
}

#wrapper {
	width:100%;
	position:relative;
	font-size: 1.5rem;
}

#wrapper * { box-sizing: border-box; }


.note > li {
  display: table;
  font-size: 1.2rem;
}

.note > li + li {
  margin-top: 8px;
}

.note > li > span {
  display: table-cell;
}

.note > li > span.cap {
  white-space: nowrap;
}

.center {
  text-align: center;
}

.dot_list > li {
  padding-left: 1em;
  text-indent: -1em;
}

.dot_list > li + li {
  margin-top: 3px;
}


.fade-pre {
	opacity: 0;
	transform: translateY(20px);
	-moz-transform: translateY(20px);
	
	transition:all .5s ease 0.5s;
	-moz-transition: all .5s ease 0.5s;
}

.pagetop {
	 display: none;
	 position: fixed;
	 bottom: 30px;
	 right: 30px;
	 z-index:100;
	 font-size: 1.6rem;
	 line-height:0;
     -webkit-transition:0.3s ease;
  	 -moz-transition:0.3s ease;
  	 transition:0.3s ease;
}


.pagetop > a {
	 display: block;
     width: 50px;
}

.pagetop > p img {
    width: 50px;
}

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

	slickの設定など

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

.slick-arrow {
  display: block;
  position: absolute;
  top: 0;
  top: 50%;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 20px;
  /*height: 20px;*/
  color: transparent;
  transition: opacity 0.5s;
  z-index: 10;
  color: #000;
  font-size: 3.2rem;
	
}
.slick-arrow:hover {
  opacity: 0.7;
}

/* 共通設定 */

/*.slick-next::before,
.slick-next::after,
.slick-prev::before,
.slick-prev::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}*/
/*.slick-next::after,
.slick-prev::after {
  width: 36px;
  height: 36px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}*/

/* next */

.slick-next {
  right: 31px;
}
/*.slick-next::after {
  right: 4px;
  right: 10px;
  transform: rotate(45deg);
}
*/
/* prev */

.slick-prev {
  left: 40px;
}

/*.slick-prev::after {
  left: 4px;
  left: 10px;
  transform: rotate(-135deg);
}*/

/* dot */

.slick-dots li button:before {
    font-size: 50px;
    content: '•';
    color: #000;
}

.slick-dots li.slick-active button:before {
    color: #000;
}

.slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
  justify-content: center;
  align-items: center;
}

.overlay,
.overlay_staff{
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  /*height: 100vh;*/
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 100;
  padding: 30px 15px;
  overflow-y: scroll;
  width: 100vw;
  height: 100%;
  /*display: none;*/
  
}
.overlay.active,
.overlay_staff.active{
  opacity: 1;
  visibility: visible;
  /*display: block;
  animation: detail_modal_fade_in 0.3s ease-in-out;
  animation-fill-mode: forwards;*/
}

@keyframes detail_modal_fade_in {
	from { opacity: 0; }
	to { opacity: 1; }
}


.overlay > .content_inner,
.overlay_staff > .content_inner{
  display: flex;
  justify-content: center;
  align-items: center;
  /*height: 100%;*/
}

.-vertical .overlay > .content_inner,
.-vertical .overlay_staff > .content_inner{
  /*position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);*/
  height: 100%;
}

.overlay_staff > .content_inner {
  /*position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);*/
  height: 100%;
  padding: 15px;
}

.overlay > .content_inner .modal_content,
.overlay_staff > .content_inner .modal_content{
  /*position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;*/
  padding: 60px;
  position: relative;
  transition: .3s;
  width: 100%;
  max-width: 880px;
  z-index: 200;
  background: #f9f6ea;

  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.overlay_staff > .content_inner .modal_content {
  width: 100%;
}

.overlay > .content_inner .modal_content a {
  display: block;
  -webkit-transition:0.3s ease;
  -moz-transition:0.3s ease;
  transition:0.3s ease;
}

.overlay > .content_inner .modal_content a img {
  display: block;
  -webkit-transition:0.3s ease;
  -moz-transition:0.3s ease;
  transition:0.3s ease;
  opacity: 1;
}

.overlay > .content_inner .modal_content a:hover img {
  opacity: 0.7;
}

.overlay > .content_inner .modal_content img {
  max-width: 600px;
  width: 100%;
}

.overlay > .content_inner .modal_content img.-v {
  max-width: 420px;
}

.overlay > .content_inner .modal_content img.-w {
  max-width: 760px;
}
/*.modal_content.active {
  opacity: 1;
  visibility: visible;
}*/

.overlay > .content_inner .modal_content .slider {
  text-align: center;
}

.caption_area {
  font-size: 1.3rem;
}

.caption_area p + p {
  margin-top: 7px;
}

.caption_area p.link {
  margin-bottom: 20px;
}

.caption_area p.link a {
  text-decoration: underline;
}

.close_area {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.overlay_staff .close_area {
  margin-top: 40px;
}

.close_area .close,
.close_area .close_staff{
  cursor: pointer;
  font-size: 1.2rem;;
  line-height: 1;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close_area .close span.icon,
.close_area .close_staff span.icon{
  background-color: #FFF;
  border-radius: 20px;
  padding: 5px;
  font-size: 1.1rem;
  color: #939393;
}

.close_area .close span.txt,
.close_area .close_staff span.txt{
  font-size: 1.3rem;
  margin-left: 7px;
}


#contentsbody {
  padding: 60px 15px 60px;
}


/* - メニュー
---------------------------- */

nav {
  font-family: 'Noto Sans JP', 'Yu Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
  text-align: right;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 15px;
  padding: 0 30px;
}


nav ul {
  display: inline-block;
}

nav ul > li {
  display: inline-block;
  letter-spacing: 0.08em;
}

nav ul > li + li {
  margin-left: 30px;
}

nav ul > li a {
  font-size: 1.4rem;
  font-weight: bold;
}

/* - KV
---------------------------- */

#kv {
  max-width: 1000px;
  padding: 0 30px;
  width: 100%;
  margin: 0 auto;
  /*margin-top: 60px;*/
  text-align: center;
}

#kv .logo img {
  max-width: 220px;
  width: 100%;
}

#kv .intro {
  /*margin-top: 50px;*/
  font-weight: bold;
}

#kv .intro p.main {
  font-size: 4.4rem;
  letter-spacing: 0.15em;
  line-height: 1.6;
}

#kv .intro p.main span {
  display: block;
}


#kv .intro p.sub {
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: normal;
}

#kv .intro p.sub br {
  display: none;
}



.-ttl {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 0.1em;
}


/* - vis
---------------------------- */

#vis {
  margin-top: 60px;
}

#vis > .content {
  max-width: 980px;
  margin: 0 auto;
}

/* - gal
---------------------------- */

#gal {
  margin-top: 120px;
}


#gal > .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

#gal > .content > div {
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  width: calc(50% - 10px/2);
  margin-right: 5px;
}

#gal > .content > div:nth-child(2n) {
  margin-right: 0;
}

#gal > .content > div:nth-child(n+3) {
  margin-top: 5px;
}




/* - works
---------------------------- */

#works {
  margin-top: 100px;
}


.works_list {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  max-width: 980px;
  margin: 0 auto;
}

.works_list > li {
  margin-right: 20px;
  width: calc(20% - 80px/5);
}

.works_list > li:nth-child(5n) {
  margin-right: 0;
}

.works_list > li:nth-child(n+6) {
  margin-top: 20px;
}

.works_list > li > div,
.works_list > li > a{
  display: block;
  position: relative;
  -webkit-transition:0.3s ease;
  -moz-transition:0.3s ease;
  transition:0.3s ease;
}

.works_list > li > div .thumb img,
.works_list > li > a .thumb img{
  width: 100%;
}

.works_list > li > div .cat,
.works_list > li > a .cat{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  color: #FFF;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
  opacity: 0;
  -webkit-transition:0.3s ease;
  -moz-transition:0.3s ease;
  transition:0.3s ease;
}

.works_list > li > div:hover .cat,
.works_list > li > a:hover .cat{
  opacity: 1;
  cursor: pointer;
}

.works_list > li .slider_wrap,
.works_list > li .slider_caption{
  display: none;
}

/* - ABOUT
---------------------------- */

#about {
  margin-top: 120px;
}

#about .content .detail {
  line-height: 1.8;
  /*text-align: center;*/
  font-weight: 400;
  letter-spacing: 0.05em;
  max-width: 630px;
  margin: 0 auto;
}

.map_unit {
  margin-top: 50px;
}

.map_unit > .grid {
  display: flex;
  justify-content: space-between;
  max-width: 980px;
  margin: 0 auto;
}

.map_unit > .grid > div {
  width: 50%;
}

.map_unit > .grid > div.left {
  margin-right: 25px;
}

.map_unit > .grid > div.right {
  margin-left: 25px;
}

.map_unit > .grid > div .if_inner {
    position: relative;
}

.map_unit > .grid > div .if_inner > .if_wrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.map_unit > .grid > div .if_inner > .if_wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map_unit > .grid > div h3 {
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.map_unit > .grid > div .cap p {
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
}


/* - CONTACT
---------------------------- */

#contact {
  margin-top: 120px;
}

#contact > .content {
  max-width: 980px;
  margin: 0 auto;
}

#contact > .content .contact_intro {
  text-align: center;
}

#contact > .content .contact_intro .sub {
  /*font-weight: bold;*/
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

#contact > .content .contact_intro .sub br{
  display: none;
}

#contact > .content .contact_intro .main {
  font-weight: bold;
  font-size: 2.8rem;
  margin-top: 15px;
  letter-spacing: 0.08em;
}


/* - contact
---------------------------- */

.contact_block {
  text-align: center;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
  font-size: 1.6rem;
  line-height: 1.7;
}


input[type="text"],
input[type="button"],
input[type="email"]{
    padding: 0;
    border: none;
    border-radius: 0;
    outline: none;
    background: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}

textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none;
    padding: 0;
    border: 0;
    outline: none;
    background: transparent;
}

button,
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
}

input[type="button"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
}


.contact_block input[type=text],
.contact_block input[type=email],
.contact_block input[type=tel],
.contact_block input[type=select],
.contact_block input[type=textarea] {
  font-size: 1.5rem;
  background-color: #FFF;
  padding: 15px;
  display: block;
  width: 100%;
  font-family: 'Noto Sans JP', 'Yu Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
}

input::placeholder {
  color: #aaa;
}

.input_unit {
  margin-top: 40px;
}

.contact_block textarea {
  padding: 15px;
  width: 100%;
  font-size: 1.5rem;
  font-family: 'Noto Sans JP', 'Yu Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
	color:#555;
  background-color: #FFF;
  border-radius: 0;
}

.contact_block label {
  display: block;
}

.contact_block label + label {
  margin-top: 25px;
}

.contact_block label .inner > span {
  display: block;
}

.contact_block label .inner > span.-label {
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  font-size: 1.6rem;
}

.contact_block input[type=submit] {
  color: #FFF;
  background-color: #000;
  display: block;
  width: 100%;
  max-width: 160px;
  margin: 0 auto;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  padding: 15px 5px;
  border-radius: 0;
  font-family: 'Noto Sans JP', 'Yu Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
}

.contact_block input.wpcf7-submit {
  display: inline-block;
  width: 100%;
}


.contact_block input[type=button] {
  font-family: 'Noto Sans JP', 'Yu Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
  margin: 0 auto;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 1.6rem;
  padding: 15px 10px;
  background-color: #efefef;
  color: #333;
  
}

.wpcf7-submit {
  transition: all .2s ease;
  -webkit-transition: all .2s ease;
  opacity: 1;
}

.wpcf7-submit:hover {
  cursor: pointer;
  opacity: 0.6;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 10px 2px;
    font-size: 1.5rem;
    margin-top: 30px;
}

/* - FOOTER
---------------------------- */

#footer {
  padding-top: 20px;
  padding-bottom: 60px;
}

#footer .copy {
  letter-spacing: 0.05em;
  font-size: 1.3rem;
  text-align: center;
}

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



}

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


#kv .intro p.sub br {
  display: block;
}

.slick-prev {
    left: 12px;
}

.slick-next {
    right: 4px;
}

.overlay_staff > .content_inner .modal_content {
    padding: 50px 30px;
}

.overlay > .content_inner .modal_content {
  padding: 50px 40px;
}


.overlay, .overlay_staff {
  padding: 15px;
}

.overlay_staff > .content_inner {
    height: auto;
    padding: 0;
}

.staff_content {
  display: block;
}

.staff_content > div {
  width: 100%;
}

.staff_content > div.left {
  margin-right: 0;
}


.staff_content > div.right {
  margin-left: 0;
  margin-top: 35px;
}

.works_list > li {
  margin-right: 20px;
  width: calc(33.33% - 40px / 3);
}

.works_list > li:nth-child(5n) {
  margin-right: 20px;
}

.works_list > li:nth-child(3n) {
  margin-right: 0;
}

.works_list > li:nth-child(n+4) {
  margin-top: 20px;
}


}

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

#contentsbody {
  padding-top: 40px;
}

nav {
  text-align: center;
}

nav ul > li + li {
  margin-left: 20px;
}

#kv {
  padding: 0;
  /*margin-top: 40px;*/
}


#kv .logo img {
  max-width: 160px;
}

#kv .intro {
  /*margin-top: 30px;*/
}

#kv .intro p.main {
    font-size: 3.2rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

#kv .intro p.sub {
  font-size: 1.3rem;
  margin-top: 20px;
}

#gal {
  margin-top: 80px;
}

#staff > .content {
  flex-wrap: wrap;
  padding: 0 15px;
}

#staff > .content > div {
  width: 100%;
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#staff > .content > div + div {
  margin-top: 35px;
}

#staff > .content > div .fig {
  width: 160px;
}

#staff > .content > div .caption {
  flex: 1;
  text-align: left;
  margin-left: 25px;
  margin-top: 0;
}


#works {
  margin-top: 80px;
}

.works_list > li {
  margin-right: 10px;
  width: calc(33.33% - 20px / 3);
}

.works_list > li:nth-child(5n) {
  margin-right: 10px;
}

.works_list > li:nth-child(3n) {
  margin-right: 0;
}

.works_list > li:nth-child(n+4) {
  margin-top: 10px;
}

#about {
    margin-top: 80px;
}

.map_unit > .grid {
  display: block;
}

.map_unit > .grid > div {
  width: 100%;
}

.map_unit > .grid > div.left {
  margin-right: 0;
}

.map_unit > .grid > div.right {
  margin-left: 0;
  margin-top: 60px;
}

#contact {
  margin-top: 80px;
}

#footer {
  padding-top: 0;
  padding-bottom: 50px;
}


}

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

#contact > .content .contact_intro .sub {
  font-size: 1.4rem;
}

#contact > .content .contact_intro .sub br{
  display: block;
}

#contact > .content .contact_intro .main {
  font-size: 2rem;
  letter-spacing: 0.05em;
}


}


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

.pagetop {
	 bottom: 20px;
	 right: 20px;
}


.pagetop > a {
  width: 40px;
}

.pagetop > p img {
    width: 40px;
}


nav {
  padding: 0;
}

.overlay_staff > .content_inner .modal_content {
    padding: 30px;
}

.overlay > .content_inner .modal_content {
  padding: 30px 40px;
  
}

.slick-dots {
  bottom: -35px;
}


#gal > .content > div {
  width: 100%;
  margin-right: 0;
}

#gal > .content > div:nth-child(2n) {
  margin-right: 0;
}

#gal > .content > div:nth-child(n+3) {
  margin-top: 0;
}

#gal > .content > div:nth-child(n+2) {
  margin-top: 5px;
}

/* - vis
---------------------------- */

#vis {
  margin-top: 40px;
}

}


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

nav ul > li + li {
    margin-left: 15px;
}

}




