:root {
  --main-background: #FFFFFF;
  --font-color: #121212;
  --main-font-family: "Noto Sans JP", sans-serif;
  --main-font-optical-sizing: auto;
}

/* aタグのリセット */
a {
  text-decoration: none;
  color: var(--main-background);
}
a:active {
  color: var(--main-background);
}

* {
  user-select: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--main-font-family);
  font-optical-sizing: var(--main-font-optical-sizing);
}

body {
  width: 100%;
  overflow: visible;
}

/* close-contents */
.close-contents {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  height: 120vh;
  opacity: 0;
  z-index: -10;
}

.close-list {
  width: 300px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  background: #000000;
  transform: translateX(-100%);
  z-index: 9998;
  color: #FFFFFF;
}

.close-list-line {
  width: 250px;
  height: 1px;
  position: absolute;
  top: 60px;
  left: 25px;
  background: #ffffff;
}

/* line */
.close-list span:nth-child(1) {
  top: 60px;
}

.close-list span:nth-child(3) {
  top: 125px;
}

.close-list span:nth-child(5) {
  top: 190px;
}

.close-list span:nth-child(7) {
  top: 255px;
}

.close-list span:nth-child(9) {
  top: 320px;
}


.close-list-text {
  position: absolute;
  left: 25px;
  cursor: pointer;
}

/* top */
.close-list span:nth-child(2) {
  top: 80px;
}

/* works */
.close-list span:nth-child(4) {
  top: 145px;
}

/* about */
.close-list span:nth-child(6) {
  top: 210px;
}

/* contact */
.close-list span:nth-child(8) {
  top: 275px;
}

/* note */
.close-list span:nth-child(10) {
  top: 355px;
}

/* x */
.close-list span:nth-child(11) {
  top: 390px;
}

/* face */
.close-list span:nth-child(12) {
  top: 425px;
}





/* ヘッダーのメニューバー */
.header-menu {
  width: 30px;
  height: 20px;
  position: fixed;
  top: 40px;
  right: 40px;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 9999;
}

.menuber-top , .menuber-middle, .menuber-under{
  width: 30px;
  height: 2px;
  background: var(--font-color);
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menuber-top {
  top: 0px;
}

.menuber-middle {
  top: 10px;
}

.menuber-under {
  top: 20px;
}


/* メインコンテンツ調整 */
#open-body {
  opacity: 1;
}



/* ABOUT */
#about-all {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #121212;
  z-index: 9999;
  transform: scale(0);
}

#about-view-backgorund {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #121212;
  z-index: 10000;
  transform: scale(0);
}


.about-close {
  position: fixed;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: lightgray;
  cursor: pointer;
  z-index: 10002;
  display: none;
}

.about-close:hover {
  opacity: 0.8;
}

.about-close span:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  height: 2px;
  width: 16px;
  background: #121212;
}

.about-close span:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  height: 2px;
  width: 16px;
  background: #121212;
}

#about-view {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #121212;
  z-index: 10001;
  transform: scale(0);
}

#about-view-contents {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  text-align: center;
  transform: scale(90%);
  padding:0 16px ;
}


.about-wrap-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 382px;
  width: 100%;
  text-align: center;
  padding: 50px 16px;
}

.about-title {
  display: inline;
  font-size: 36px;
  line-height: 1.7;
  position: relative;
}

.about-title::before {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50px, -50%);
  content: "";
  width: 40px;
  height: 1px;
  background: #121212;
}

.about-title::after {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(50px, -50%);
  content: "";
  width: 40px;
  height: 1px;
  background: #121212;
}

.about-image-wrap {
  margin: 0 auto;
  margin-top: 50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-image: url(img/about.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 200%;
}


.about-text {
  max-width: 350px;
  width: 100%;
  margin-top: 50px;
  text-align: left;
  font-size: 14.4px;
  line-height: 1.7;
  font-weight: bold;
}


/* ヘッダー */

header {
  width: 100%;
  height: 80px;
  background: var(--main-background);
  /* display: flex;
  justify-content: space-between; */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9996;
}

.header-logo {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}

.header-logo h1 {
  font-size: 32px;
  font-weight: bold;
}

.header-hedden-space {
  width: 100%;
  height: 80px;
}

/* メイン画像 */
.main-image {
  width: 100%;
  height: 600px;
  /* background-image: url(img/main.jpg); */
  background-image: url(img/main2.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  /* position: relative; */
}

/* .main-image-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: blue;
} */


/* PICK UP */
main {
  text-align: center;
}




main h1 {
  font-size: 36px;
  line-height: 1.7;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 30px;
}

/* スワイパーを枠で囲みはみ出ない用に設定 */
.slider-wrap {
  width: 100vw;
  /* 枠以外の画像を非表示にする */
  overflow: hidden;
} 


/* スワイパーの設定 */
.swiper {
  width: 1421px;
  height: 271px;
  /* 他の画像が表示される */
  overflow: visible;
  cursor: pointer;
}

.pickup_a {
  display: block;
  width: 100%;
  height: 100%;
}

.slide-images {
  background-repeat: no-repeat;
  background-size: cover;
}

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




/* FEATURE */
.feature-section {
  text-align: center;
}

.feature-section h1 {
  font-size: 36px;
  line-height: 1.7;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 30px;
}

.feature-grid {
  max-width: 1209px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 27px;
  row-gap: 26px;
  place-content: center;
  place-items: center;
  padding: 0 16px;
}

.feature-card {
  max-width: 385px;
  max-height: 424px;
  width: 100%;
  aspect-ratio: 385 / 424;
  box-shadow: 0 0 8px 4px rgba(0,0,0, 25%);
  cursor: pointer;
  position: relative;
}

.feature-atag {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.feature-img-style {
  width: 100%;
  aspect-ratio: 385 / 257;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
}

/* 背景画像の挿入 */

/* .feature-img1 {
  background-image: url(img/photo1.png);
  background-position: center right;
} */


/* 背景画像の終わり */

.feature-text-box {
  width: 100%;
  height: 167px;
  background: var(--main-background);
  position: relative;
  text-align: left;
}

.feature-title {
  font-size: 12px;
  line-height: 1.7;
  font-weight: bold;
  position: absolute;
  top: 30px;
  left: 0px;
  padding: 0 0 0 30px;
}

.feature-text {
  font-size: 14.4px;
  line-height: 1.7;
  font-weight: bold;
  position: absolute;
  top: 60px;
  left: 0px;
  padding: 0 30px 0 30px;
}

.feature-date {
  font-size: 12px;
  line-height: 1.7;
  font-weight: bold;
  position: absolute;
  right: 0px;
  bottom: 30px;
  padding: 0 30px 0 0;
}

#feature-more {
  max-width: 1209px;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  margin-top: 60px;
  padding: 0 16px;
  font-size: 14.4px;
  line-height: 1.7;
  height: 50px;
  cursor: pointer;
}


#feature-more div {
  width: 100%;
  height: 100%;
  border: 1px solid #121212;
  background: #FFFFFF;
  color: #121212;
  position: relative;
}

#feature-more div:hover {
  border: 0px solid #121212;
  background: #121212;
  color: #FFFFFF;
}

#feature-more div span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* all-view */
#all-view-all {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #121212;
  z-index: 9999;
  transform: scale(0);
}

#all-view-copy {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #121212;
  z-index: 10000;
  transform: scale(0);
}


.all-view-close {
  position: fixed;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: lightgray;
  cursor: pointer;
  z-index: 10002;
  display: none;
}

.all-view-close:hover {
  opacity: 0.8;
}

.all-view-close span:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  height: 2px;
  width: 16px;
  background: #121212;
}

.all-view-close span:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  height: 2px;
  width: 16px;
  background: #121212;
}

.all-view {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #121212;
  z-index: 10001;
  transform: scale(0%);
}



.all-view-contents {
  transform: scale(90%);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  overflow-y: scroll;
  overflow-x: hidden;
  text-align: center;
}

.all-view-contents h1 {
  width: 100%;
  height: 100px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
}

.all-view-contents h1 span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  line-height: 1.7;
  font-weight: normal;
}

.all-view-contents h1 span::before {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50px, -50%);
  content: "";
  width: 40px;
  height: 1px;
  background: #121212;
}
.all-view-contents h1 span::after {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(50px, -50%);
  content: "";
  width: 40px;
  height: 1px;
  background: #121212;
}



.all-view-bottom-space {
  width: 100%;
  height: 30px;
}


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

.bottom-hedden-space {
  width: 100%;
  height: 60px;
}

/* footer */
footer {
  width: 100vw;
  height: 532px;
  background: var( --font-color);
  position: relative;
}

#contact {
  position: absolute;
  top: -40px;
  left: 0;
}

.footer-contents {
  max-width: 1600px;
  height: 532px;
  margin: 0 auto;
  padding-top: 50px;
  text-align: center;
  color: var(--main-background);
}

.footer-contents h1 {
  font-size: 36px;
  line-height: 1.7;
}

.footer-text-wrap {
  max-width: 1210px;
  height: 340px;
  width: 100%;
  padding-top: 30px;
  margin: 0 auto;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
}

.footer-flex-left {
  text-align: left;
  width: 50%;
  font-size: 14.4px;
  line-height: 1.7;

}

.footer-flex-left p:nth-child(1) {
  max-width: 526px;
}

.footer-flex-left p:nth-child(2) {
  margin-top: 30px;
  max-width: 526px;
}

/* .footer-flex-left p:nth-child(3) {
  margin-top: 30px;
  max-width: 526px;
} */

.footer-flex-right {
  width: 50%;
}

.footer-flex-right div {
  max-width: 544px;
  margin: 0 0 0 auto;
  width: 100%;
  height: 100%;
  text-align: left;
}

.footer-flex-right div p {
  font-size: 14.4px;
  line-height: 1.7;
}

.footer-flex-right div p span {
  margin-left: 1em;
  font-size: 14.4px;
  line-height: 1.7;
}

.footer-flex-right div input {
  width: 100%;
  height: 44px;
  font-size: 14.4px;
  line-height: 1.7;
  background: var(--main-background);
	border: none;
  /* border: 3px solid orangered; */
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
  padding: 1em;
}

.footer-flex-right div textarea {
  width: 100%;
  height: 44px;
  font-size: 14.4px;
  line-height: 1.7;
  background: var(--main-background);
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
  padding: 1em;
}

.footer-flex-right div p:nth-child(3) {
  margin-top: 20px;
}

.footer-flex-right div p:nth-child(5) {
  margin-top: 20px;
}

.footer-flex-right div textarea:nth-child(6) {
  height: 68px;
}

.footer-flex-right div div:nth-child(7){
  font-size: 14.4px;
  line-height: 1.7;
  margin: 0 0 auto 0;
  margin-top: 20px;
  width: 200px;
  height: 50px;
  border: 1px solid var(--main-background);
  background: var(--font-color);
  color: var(--main-background);
  cursor: pointer;
  position: relative;
}

.footer-flex-right div div:nth-child(7):hover {
  background: var(--main-background);
  color: var(--font-color);
}

.footer-btn-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-last-name {
  width: 100%;
  height: 38px;
  position: relative;
  background: var( --font-color);
}

.footer-last-name span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  line-height: 1.7;
  color: var(--main-background);
}
