@charset "utf-8";
@import url('https://fonts.googleapis.com/earlyaccess/hannari.css');

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

/*************************************************

 page common

*************************************************/
* {
  font-feature-settings: 'palt';
}

.main {
  background: url(../../limited/img/main_bg.jpg) no-repeat center center / cover;
}

img {
  max-width: 100%;
}

figcaption.left {
  right: auto;
  left: 0;
}

@media only screen and (max-width:768px) {
  figcaption.left {
    right: 0;
  }
}

.concept .inner {
  max-width: 1060px;
  padding: 0 20px;
  margin: 0 auto;
}

/* 
==================================== */
section {
  padding: 100px 0 150px;
}
.section_title {
  text-align: center;
  font-size: 21px;
  letter-spacing: 0.065em;
  line-height: 2.2;
}
.section_title .en {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: #534830;
  font-family: 'EB Garamond', serif !important;
  line-height: 2;
  margin-bottom: 8px;
  display: block;
}
.section_lead {
  text-align: center;
  font-size: 16px;
  font-size: clamp(0.75rem, -0.389rem + 2.222vw, 1rem);
  letter-spacing: 0.065em;
  color: #000;
  line-height: 2.25;
}

@media only screen and (max-width:768px) {
  section {
    padding: 50px 0 80px;
  }
  .section_title {
    font-size: 16px;
  }
  .section_title .en {
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.2em;
    color: #534830;
    font-family: 'EB Garamond', serif !important;
    line-height: 2;
    margin-bottom: 8px;
    display: block;
  }
  .section_lead {
    margin-top: 18px;
    font-size: 10px;
  }
}

/* top_area
==================================== */
.top_area {
  text-align: center;
}
.main_title {
  font-size: 48px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin-top: 40px;
  margin-bottom: 40px;
}
.icon_logo {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: auto;
  }
@media only screen and (max-width:768px) {
  .icon_logo {
    width: 80%;
  }
  .main_title {
    font-size: 34px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/* link_area
================================ */
.link_item_wrap {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}
.link_item {
  display: block;
  width: 300px;
  width: clamp(13.75rem, -1.328rem + 31.373vw, 18.75rem);
  height: 300px;
  height: clamp(13.75rem, -1.328rem + 31.373vw, 18.75rem);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
  font-size: 24px;
  font-size: clamp(1.25rem, 0.496rem + 1.569vw, 1.5rem);
  font-family: 'EB Garamond', serif !important;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: .4s;
}
.link_item:link {
  color: #fff;
}
.link_item:hover {
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  box-shadow: rgba(255, 255, 255, .7) 0px 5px 15px;
}

@media only screen and (max-width:768px) {
  .link_item_wrap {
    margin-top: 60px;
    flex-direction: column;
    row-gap: 20px;
  }
  .link_item {
    margin: auto;
    width: 240px;
    height: 110px;
    font-size: 20px;
  }
}


/* capWrap
================================= */
.capWrap {
  margin: 0 auto ;
  padding: 20px 20px 80px;
  width: 100%;
}

@media only screen and (max-width:768px) {
  .capWrap {
    margin: 0 auto ;
    padding: 0px 20px 40px;
    width: 100%;
  }
}

/* login_box
================================ */
.login_box {
  max-width: 800px;
  margin: auto;
  border: 1px solid #000;
  padding: 60px 10px;
}
.login_area {
  margin-top: 30px;
}
.login_area_pass {
  max-width: 500px;
  margin: auto;
}
.login_wrap {
  position: relative;
  display: flex;
}
#loginForm {
	flex-direction: row;
  justify-content: space-between;
	flex-wrap: nowrap;
	height: 52px;
	align-items: end;
}
#loginForm input {
	font-size: 14px;
	background-color: #fff;
	padding-left: 16px;
	border-radius: 0;
	margin: 0;
	height: 100%;
  width: 70%;
	display: block;
  text-align: left;
	position: relative;
}
#loginForm #login-btn {
  width: 30%;
	display: block;
  line-height: 52px;
	cursor: pointer;
	background: #3A352F;
	color: #fff;
	font-size: 15px;
	font-weight: 500
}
.error_text {
  position: absolute;
  left: 0;
  top: -30px;
  color: #c22828;
  background-color: rgba(255, 255, 255, .7);
  line-height: 2;
  letter-spacing: 1px;
  padding: 0 10px;
  font-size: 12px;
}

@media only screen and (max-width:768px) {
  .login_box {
    padding: 40px 20px;
  }
  .login_area {
    margin-top: 30px;
  }
  #loginForm {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    height: 52px;
    align-items: end;
  }
  #loginForm input {
    padding-left: 10px;
  }
}