@charset "utf-8";

/* -------------------------------------------- */
/*  ▼ 基本レイアウトCSS ▼
/* -------------------------------------------- */
@import url(common.css);



body {
  background-color: var(--main-color);
  color: var(--font-color);
}


/* ロゴの装飾 */
#header-logo, #footer-logo {
  width: var(--logo-size);
}

#top, footer, h1{
	margin: auto;
	padding-top: 30px;
	text-align: center;
}

/* headerの装飾 */
header, #header-menu {
  margin-left: auto;
	margin-right: auto;
  background-color: var(--header-color);
  color: var(--font-color-3);
  font-weight: bold;
  text-align: center;
}

#header-text {
  font-family: var(--font-EG-default);
  font-size: 150%;
  color: var(--font-color-3);
  line-height: 5rem;
}

#header-menu ul li {
  margin: 50px;
  display: inline-block;
  font-family: var(--font-EG-default);
  font-size: 30px;

}

/* mainの装飾 */

#concept h1, #products h1, #access h1, #contact h1 {
  display: block;
  text-align: left;
  font-size: 50px;
  font-family: var(--font-EG-default);
  color: var(--font-color-3);
  

}

.access-text dt {
  font-family: var(--font-EG-default);
  color: var(--font-color);
}

p, .access-text dd, #form-area dt{
  font-family: var(--font-JP-default);
  color: var(--font-color);

}

/* firstviewエリアの装飾 */
.firstview {
  width: 100%;
  max-width: 100%;
  height: 85vh;
  background-color: var(--firstview-color);
}

.firstview-img {
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  background-image: url(../img/firstview1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  cursor: url(../img/asset/emoji_nature_16dp.png), auto;
  color: #fff;
  animation: slide-show 20s ease-in-out infinite;
}

@keyframes slide-show {
  0% {
    background-image: url(../img/firstview1.jpeg);
  }
  33% {
    background-image: url(../img/firstview2.jpeg);
  }
  66% {
    background-image: url(../img/firstview3\ .jpeg);
  }
  100% {
    background-image: url(../img/firstview1.jpeg);
  }
}

/* conceptエリアの装飾 */

#concept {
  display: block;
  position: relative;
  padding-top: 50px;
}

.concept-title {
  transform-origin: top right;
  transform: rotate(-90deg);
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  position: absolute;
  top: 150px;
  left: -230px;
}

.concept-title .co-title {
  margin-top: 0;
  padding-top: 0;
}

.concept-title span {
  content: "";
  width: 100px;
  height: 2px;
  display: block;
  background: var(--button-list-color) ;
  margin-right: 30px;

}


#concept p {
  display: block;
  text-align: center;
  line-height: 8rem;
  font-size: 25px;
  width: 100%; 
  margin-top: 5%;
  margin-bottom: 15%;
}


/* productsエリアの装飾 */
#products {
  display: block;
  background-color: var(--main-prodcts-color);
  position: relative;
  padding-top: 50px;
}

.products-title {
  transform-origin: top right;
  transform: rotate(-90deg);
  /* background-color: #f36d6d; */
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  position: absolute;
  top: 150px;
  left: -230px;

}
.products-title .p-title {
  margin-top: 0;
  padding-top: 0;
}

.products-title span {
  content: "";
  width: 100px;
  height: 2px;
  display: block;
  background: var(--button-list-color) ;
  margin-right: 30px;

}

.item-list {
  width: 1000px;
  max-width: 100%;
  margin: 75px auto 0;
  padding-top: 50px;
  padding-bottom: 150px;
  /* グリッドにする */
  display: grid;
  grid-template-columns: repeat(auto-fit,240px);
  /* グリッドに余白を空ける */
  column-gap: 30px;
  row-gap: 30px;
  justify-content: center;
  transform: scale(1.3);

}

.item-list li {
  max-width: 100%;
}

/* accessエリアの装飾 */

#access {
  margin-top: 100px;
  display: block;
  position: relative;
  padding-top: 50px;
}

.access-title {
  transform-origin: top right;
  transform: rotate(-90deg);
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  position: absolute;
  top: 150px;
  left: -230px;
}

.access-title .a-title {
  margin-top: 0;
  padding-top: 0;
}

.access-title span {
  content: "";
  width: 100px;
  height: 2px;
  display: block;
  background: var(--button-list-color) ;
  margin-right: 30px;

}

#h2-access {
  margin-bottom: 50px;
  color: red;
  font-size: 1.5rem;
  display: block;
  text-align: left;
}

.access-text {
  font-size: 1.5rem;
}

.access-text dl {
  width: 400px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px; 
}

.access-text dt {
  margin-bottom: 30px;
  width: 100px; 
}

.access-text dd {
  margin-left: 15px; 
  text-align: left;
}

#ad {
  margin-bottom: 50px;
}


.access-contents {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  width: 100%;
  margin-left: 35%;
}

.map1 img {
  float: right;
  max-width: 90%;
  max-height: 90%;
  
}

.map2 {
  text-align: center;
  margin-top: 80px;
  transform: scale(1.25);
  margin-bottom: 150px;
}



/* contactエリアの装飾 */
#contact {
  display: block;
  background-color: var(--main-contact-color);
  position: relative;
  padding-top: 50px;
}

.contact-title {
  transform-origin: top right;
  transform: rotate(-90deg);
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  position: absolute;
  top: 150px;
  left: -230px;
}

.contact-title .c-title {
  margin-top: 0;
  padding-top: 0;
}

.contact-title span {
  content: "";
  width: 100px;
  height: 2px;
  display: block;
  background: var(--button-list-color) ;
  margin-right: 30px;

}

.contact-top .contact-text {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}


.button-area {
  margin-top:40px;
  margin-left: 47%;
}


#form-area {
  display: flex;
  width: 500px;
  flex-direction: column; /* 各ペアを縦並びに */
  gap: 15px; /* 各ペアの間隔を調整 */
  margin-top: 45px;
  margin-left: 35%;
}

.form-row {
  display: flex;
  margin: 25px;
}

.form-row dt {
  width: 300px; /* ラベル部分の幅 */
  font-weight: bold;
  flex-shrink: 0; /* ラベルの幅を固定 */
  font-size: 1.4rem;
}

.form-row dd {
  flex: 1; /* 入力欄の幅を可変に */
  gap: 10px;
}

.form-row dd input,
.form-row dd textarea {
  width: 500px; /* 入力欄の幅を調整 */
  padding: 15px;
  height: 50px;
  border: none;
}

.form-row dd textarea {
  width: 500px; /* 入力欄の幅を調整 */
  padding: 5px;
  height: 300px;
  border: none;
}


.button-area {
  display: block;
  text-align: left;
  margin-top: 20px;  
}

.submit-button {
  background-color: var(--button-submit-color);
  width: 10rem;
  height: 5rem;
  color: var(--font-color);
  font-size: 25px;
  font-weight: bold;
  border: none;
  margin-bottom: 30px;
}

/* footerの装飾 */
footer {
  background-color: var(--footer-color);
  color: var(--font-color-sub);
}

#footer-logo {
  padding-top: 100px;
}

#footer-text{
  font-family: var(--font-EG-default);
  color:var(--font-color-sub);
  font-size: 150%;
  line-height: 5rem;
}

#footer-menu {
  padding-top: 25px;
  font-size: 30px;
  font-weight: bold;
  font-family: var(--font-EG-default);
}

#footer-menu2 {
  font-size: 20px;
  font-weight: bold;
  font-family: var(--font-JP-default);
}

#footer-menu ul li, #footer-menu2 li{
  margin: 35px;
  display: inline-block;
  line-height: 2.5rem
}

#copyright {
  font-family: var(--font-EG-default);
  font-weight: bold;
  font-size: 20px;
}
