@charset "UTF-8";

/* 基本 */
:root {
	--v-space: clamp(90px, 9vw, 120px);
}

body {
	margin: 0 auto;
	background-color:#F2EFE9;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("../image/top/background2.png");
	overflow-x: hidden;
}

/*body * {
  outline: red 1px solid;
}*/
	

h1, h2, h3, h4, h5, h6, p, figure, ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

p {
	line-height: 1.8;
	font-family:  "Yu Gothic", "Hiragino Sans", Meiryo, "sans-serif";
	color: dimgrey;
	font-size: 0.8rem	
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	filter: brightness(90%) contrast(120%);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@font-face {
font-family: 'Bodoni Moda', "serif";
font-style: normal;
font-weight: 400;
src: url("../BodoniModa-Italic-VariableFont_opsz,wght.woff")format('woff'),
}

@font-face {
font-family: 'Bodoni Moda', "serif";
font-style: normal;
font-weight: 400;
src: url("../BodoniModa-VariableFont_opsz,wght.woff")format('woff'),
}

@font-face {
font-family: 'lato', sans-serif;
font-style: normal;
font-weight: 400;
src: url("../Lato-Regular.woff")format('woff'),
}


.wrapper {
  overflow-x: hidden;
}

.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(0px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

.family1{
	font-family: 'Didot', 'Bodoni Moda', "serif";
	font-weight: lighter;
	font-style: italic;
	font-size: 28px;
	text-align: left;
	color: dimgrey;
	line-height: 30px;
}

.family2{
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size: 18px;
	text-align: left;
	color: #878787;
	line-height: 30px;
	letter-spacing: 1.5px;
}

.family3{
	text-align: left;
	vertical-align: top;
	font-family: "Yu Gothic", sans-serif;
	letter-spacing: .5px;
	line-height: 30px;
	line-height: 2;
	color:#ffffff;
	font-size: 0.8rem;
}


/* 横幅と左右の余白 */
.w-container {
	width: min(90%);
    margin: 0 auto;
	position: relative;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 35px 20px;
  box-sizing: border-box;
  z-index: 999;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	
}


/*--------------------------------
 TOP/ ナビメニュー
---------------------------------*/
.nav-text {
	font-family: 'lato', sans-serif;
	letter-spacing: 2px;
	font-size: 0.7rem;
	color: dimgrey;
}


@media (max-width:767px){
  .nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(100,134,133,.9);
    color: #ffffff;
    display: flex;
    justify-content: center;
	text-align: center;
    align-items: center;
    /* 初期：非表示 */
    visibility: hidden;
    opacity: 0;
    /* ふわっと表示 */
    transition: 0.8s ease-in-out;
  }
  .nav ul{
    list-style:none;
  }
  .nav li:not(:last-child){
    margin-bottom: 30px;
  }
  .nav a{
    color: #ffffff;
  }
}


/* ナビゲーションボタン（開く） */
#navbtn{
  position: fixed;
  top: 35px;
  right: 35px;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

#navbtn::before,
#navbtn::after{
  content : '';
  display: block;
  height: 1px;
  background-color: #333333;
  transform: translateY(10px);
  transition: 0.3s ease-in-out;
}

#navbtn::before{
  transform: translateY(-10px);
  box-shadow: 0 10px #333333;
}

/* ナビゲーションボタン（閉じる） */
.open #navbtn{
  z-index: 100;
}
.open #navbtn::before{
  transform: rotate(-45deg);
  box-shadow: none;
}
.open #navbtn::after{
  transform: rotate(45deg);
  box-shadow: none;
}
/* ナビゲーションメニュー 開いた時*/
.open .nav{
  visibility: visible;
  opacity: 1;
}

@media(min-width: 768px){
  /* PCではボタン非表示 */
  #navbtn{
    display:none;
  }
  /* ヘッダーは横並び */
  header{
    display: flex;
    align-items: center;
  }
  /* メニューを右に寄せる */
  .nav{
    /* 右寄せ */
    margin-left: auto;
  }
  .nav ul{
    display: flex;
    list-style:none
  }
  .nav ul li:not(:first-child){
    margin-left:20px;
  }
  .nav ul li a { 
    color: dimgrey;
  }
}



/*main image*/
.words {
	z-index:20;
	position: relative;
    padding-top: 160px;
	margin-bottom: 30px;
	font-family: 'Didot', 'Bodoni Moda', "serif";
	font-weight: lighter;
	font-style: italic;
	color: #93B2B1;
	font-size: 55px;
	letter-spacing: 2px;
}

.words-color {
	color: #EFC2A8;
	padding-left: 70px;
}

#w1 {
	
}
#w1,#w2 {
padding-bottom: 10px;	
display:inline-block;
overflow:hidden;
white-space:nowrap;
width:0%;
height: 100%;
}


#w1 {
animation:s1 6s forwards;
}
@keyframes s1 {
      from { width:0em; }
      100% { width: 8em; }
      to { width: 8em; }
}
#w2 {
animation:s2 6s forwards;
}
@keyframes s2 {
      0% { width:0em; }
      50% { width:0em; }
      100% { width:8em; }
      to { width:8em; }
}

video {
	width: 85%;
	height: 370px;
	object-fit: cover;
	display: block;
	margin: auto;
	justify-content: center;
    background: #000;
	margin-bottom: 70px;
	margin-top: 190px;
	border-radius: 20px;

  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}


.main-img {
	width: min(90%);
    margin: 0 auto;
	position: relative;	
}


/* ナビゲーションメニュー：モバイル */
@media (min-width : 768px ){
.words {
	z-index:20;
	position: relative;
    margin-top: -290px;
	margin-bottom: 50px;
	font-family: 'Didot', 'Bodoni Moda', "serif";
	font-weight: lighter;
	font-style: italic;
	color: #93B2B1;
	font-size: 80px;
	line-height:  80px;
	letter-spacing: 2px;
}

.words-color {
	color: #EFC2A8;
	padding-left: 100px;
}

.main-img {
	width: min(90%);
    margin: 0 auto;
	position: relative;	
}
}


/* ナビゲーションメニュー：モバイル */
@media (max-width : 540px ){
.words {
	z-index:1;
    position: absolute;
    left: 5%;
    top: 200px;
	font-family: 'Didot', 'Bodoni Moda', "serif";
	font-weight: lighter;
	font-style: italic;
	color: #93B2B1;
	font-size: 35px;
	line-height: 55px;
	letter-spacing: 2px;
	box-sizing: border-box;
}
	
.words-color {
	color: rgba(239,194,168,1.00);
	box-sizing: border-box;
	padding-top: -30px;
}


.main-img {
		width: 100%;
		height: 100vh;
		padding: 100px;
		justify-content: space-between;
	}
	
video {
	position: absolute;
	margin: 0 auto;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	object-fit: cover;
	border-radius: 0;
}
}


/* CONCEPT */
.concept {
	padding: var(--v-space) 0;
	margin: 120px 0 270px 0;
}

.concept p {
	line-height: 2;
}

.concept  + .concept  {
	padding-top: 0;
}

.concept-container {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 50px;
}

.text_ja {
	letter-spacing: 1.5px;
}

.text_en {
	letter-spacing: 0px;
}

@media (min-width : 768px ){
	.concept-container {
		flex-direction: row;
		align-items: center;
		gap: 50px;
	}
	}

@media (max-width : 540px ){
		.concept-container {
		width: 100%;
		flex-direction: column;
		justify-content: space-between;
		gap: 100px;
		padding: 70px 40px;;
		box-sizing: border-box;
	}
	
.text_ja {
	letter-spacing: 1.1px;
	font-size: 11px;	
}

.text_en {
	letter-spacing: 0px;
	font-size: 10px;
}		
}

/* 横スクロール(右) */

.area{
	width: 100%;
	margin:200px 0 320px 0;
}


.works-title {
	position: absolute;
	margin-top: -120px;
	margin-left: 200px;
	font-family: 'Didot', 'Bodoni Moda', "serif";
	font-weight: lighter;
	font-style: italic;
	color: #648685;
	font-size: 45px;
	line-height: 55px;
	letter-spacing: 1px;
	z-index: 100;
}


.area2{
	width: 100%;
	margin:200px 0 200px 0;
}

.artworks-title {
	position: absolute;
	margin-top: -100px;
	margin-left: 200px;
	font-family: 'Didot', 'Bodoni Moda', "serif";
	font-weight: lighter;
	font-style: italic;
	color: #EFC2A8;
	font-size: 45px;
	line-height: 55px;
	letter-spacing: 1px;
	z-index: 100;
	/*text-shadow: 10px 30px 5px rgba(100,134,133,.3);*/
}
.item {
	padding: 0 0 0 15px;
}

.item img{
	margin-left: 100px;
	border-radius: 20px;
	object-fit: cover;
	z-index: -100;	
    }



@media (min-width : 768px ){

.area{
	width: 100%;
	margin:140px 0 320px 0;
}


.works-title {
	position: absolute;
	padding-top: 20px;
	margin-left: 200px;
	font-family: 'Didot', 'Bodoni Moda', "serif";
	font-weight: lighter;
	font-style: italic;
	color: #648685;
	font-size: 45px;
	line-height: 55px;
	letter-spacing: 1px;
	z-index: 100
}

	
.area2{
	width: 100%;
	margin:200px 0 200px 0;
}
	
.artworks-title {
	position: absolute;
	padding-top: -10px;
	margin-left: 200px;
	font-family: 'Didot', 'Bodoni Moda', "serif";
	font-weight: lighter;
	font-style: italic;
	color: #EFC2A8;
	font-size: 45px;
	line-height: 55px;
	letter-spacing: 1px;
	z-index: 100
}

.item {
	padding: 0 0 0 15px;	
}

.item img{
	border-radius:20px;
	object-fit: cover;
	z-index: -100;	
    }}




@media (max-width : 540px ){

.area{
	width: 100%;
	margin:140px 0 200px 0;
}


.works-title {
	position: absolute;
	margin-top: -40px;
	margin-left: 150px;
	font-family: 'Didot', 'Bodoni Moda', "serif";
	font-weight: lighter;
	font-style: italic;
	color: #648685;
	font-size: 70px;
	line-height: 55px;
	letter-spacing: 1px;
	z-index: 100
}

.artworks-title {
	position: absolute;
	margin-top: -30px;
	margin-left: 150px;
	font-family: 'Didot', 'Bodoni Moda', "serif";
	font-weight: lighter;
	font-style: italic;
	color: #EFC2A8;
	font-size: 70px;
	line-height: 55px;
	letter-spacing: 1px;
	z-index: 100
}

.item {
	padding: 0 0 0 0px;
}	 


.item img{
	border-radius: 20px;
	object-fit: cover;
	height: 400px;
	width: 100%;
	z-index: -100;	
    }
	
	
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
}
	
	
	



/*ABOUT*/

.about:before {
	padding: var(--v-space) 0;
	background-color:rgba(91,134,128,0.50);
    mix-blend-mode: multiply;
	height: 650px;
	margin: 0 calc(50% - 50vw);
	width: 100vw;
	z-index: 1;
	position: relative;
}

.about p {
	vertical-align:top;
	color: #ffffff;
	line-height: 24px;
	letter-spacing: 0.5px;
}

.about img {
		width: 350px;
		height: 350px;
	    z-index: 2;
	}


.about + .about {
	padding-top: 0;
}

.about-container {
	display: flex;
	justify-content: center;
	column-gap: 30px;
	align-items: stretch;
	margin-top: 60px;
}

.about-text {
	width: 40%;
}

.about-italic {
	font-family: 'Didot', 'Bodoni Moda', "serif";
	font-weight: lighter;
	font-style: italic;
	color: #ffffff;
	font-size: 16px;
	column-gap: 20px;
	line-height: 36px;
	letter-spacing: 1px;	
}

.profile {
	padding-bottom: 60px;
}

.news {
	padding-top: 60px;
	border-top: .5px solid #ffffff;
}



@media (min-width : 768px ){
.about {
	padding: var(--v-space) 0;
	background-color:rgba(91,134,128,0.50);
	margin: 0 calc(50% - 50vw);
	z-index: -9999;
	width: 100vw;
	height: 700px;
}

.about-container {
	display: flex;
	justify-content: center;
	column-gap: 100px;
	align-items: flex-start;
	margin-top: 60px;
}
	
.about img {
	width: 350px;
	height: 350px;
	z-index: 1;
}	

.about + .about {
	padding-top: 0;
}

/*テキスト部分*/
.about p {
	vertical-align:top;
	color: #ffffff;
	line-height: 24px;
	letter-spacing: 0.5px;
}	
	
.about-text {
	width: 40%;
}

.about-italic {
	font-family: 'Didot', 'Bodoni Moda', "serif";
	font-weight: lighter;
	font-style: italic;
	color: #ffffff;
	font-size: 18px;
	column-gap: 20px;
	line-height: 36px;
	letter-spacing: 1px;	
}



.news {
	padding-top: 40px;
	border-top: .5px solid #ffffff;
	width: 65%;
}
	}


@media (max-width : 540px ){
.about {
	padding: var(--v-space) 0;
	background-color:rgba(91,134,128,0.50);
	height: 800px;
	margin: 0 calc(50% - 50vw);
}
	
.about-container  {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	column-gap: 10px;
	align-items: center;
	margin-top: -10px;
}

	
.about p {
	font-size: 12px;	
	color: #ffffff;
	line-height: 24px;
	letter-spacing: 0.5px;
}
	
.about li {
	font-size: 12px;
	line-height: 24px;
	letter-spacing: .5px;
}
	
	
.about img {
		margin-top: 50px;
		width: 250px;
		height: 250px;
	}
	
.about-text {
	 width: 100%;
}
	
.news {
	padding-top: 40px;
	border-top: 1px solid #ffffff;
	width: 100%;
}

	}



/*CONTACT*/
.contact {
	text-align: center;
	padding-top: 130px;
}

.contact-title {
	font-family: 'Didot', 'Bodoni Moda', "serif";
	font-weight: lighter;
	font-style: italic;
	color: #648685;
	font-size: 61px;
	line-height: 55px;
	letter-spacing: 1px;
}

.contact p {
	padding-top: 50px;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.5px;
	font-family: "Yu Gothic", "Hiragino Sans", Meiryo, "sans-serif";
}

.contact-link {
	color: dimgray;
	display: inline-block;
	border-bottom:.5px solid dimgray;
	padding:0.1em;
}


@media (min-width : 768px ){
.contact {
	text-align: center;
	padding-top: 130px;
}

.contact-title {
	font-family: 'Didot', 'Bodoni Moda', "serif";
	font-weight: lighter;
	font-style: italic;
	color: #648685;
	font-size: 61px;
	line-height: 55px;
	letter-spacing: 1px;
}

.contact p {
	padding-top: 50px;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.5px;
	font-family: "Yu Gothic", "Hiragino Sans", Meiryo, "sans-serif";
}

.contact-link {
	color: dimgray;
	display: inline-block;
	border-bottom:.5px solid dimgray;
	padding:0.1em;
	
}}	
	
	
	
/**/
@media (max-width : 540px ){
.contact {
	text-align: center;
	padding: 130px 0;
}

.contact-title {
	font-family: 'Didot', 'Bodoni Moda', "serif";
	font-weight: lighter;
	font-style: italic;
	color: #648685;
	font-size: 61px;
	line-height: 55px;
	letter-spacing: 1px;
}
	
.contact p, h3{
	padding-top: 50px;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.5px;
	font-family: "Yu Gothic", "Hiragino Sans", Meiryo, "sans-serif";
}

.contact-link {
	color: dimgray;
	display: inline-block;
	border-bottom:.5px solid dimgray;
	padding:0.1em;
}		
	}

	



/*footter */

.footer-nav {
	display: flex;
	justify-content: center;
	font-size: 0.7rem;
	text-transform: uppercase;
	gap:70px;
	margin-top: 200px;
	list-style: none;
	font-family: 'Lato', sans-serif;
	letter-spacing: 2px;
	color:  dimgrey;
}

@media (max-width : 767px ){
.footer-nav {
 visibility:hidden;
}
	}

.footer-container {
	margin-bottom: 50px;
}


.footer-copy {
	text-align: center;
	padding:60px 0 60px 0;
	left: 0;
	width: 100%;
	font-family: 'lato', YuGothic, "Yu Gothic light", sans-serif;
	font-size:0.7rem;
	color: dimgrey;
}
