@charset "utf-8";

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 0px;
}

.row-reverse {
  flex-direction: row-reverse;
}

.main_area {
  background-color: #292524;
  overflow: hidden;
}

/* グロナビのライン */
.pc_gnav_item.top::before {
  width: 70%;
}

/* mv
===================================== */
.mv {
  position: relative;
}
.mv img {
  width: 100%;
}
.mv .img-caps {
  bottom: 230px;
  bottom: clamp(16.8rem, 9.244rem + 9.826vw, 23rem);
}
.mv_title {
  width: 80%;
  max-width: 1600px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 90px;
  font-size: clamp(3.8rem, -2.537rem + 8.241vw, 9rem);
  letter-spacing: 0.3em;
  line-height: 1.7;
  color: #fff;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3), 0px 0px 10px rgba(0, 0, 0, 0.3),
    0px 0px 10px rgba(0, 0, 0, 0.3), 0px 0px 10px rgba(0, 0, 0, 0.3),
    0px 0px 10px rgba(0, 0, 0, 0.3), 0px 0px 10px rgba(0, 0, 0, 0.3),
    0px 0px 10px rgba(0, 0, 0, 0.3), 0px 0px 10px rgba(0, 0, 0, 0.3),
    0px 0px 10px rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width: 768px) {
  .mv .img-caps {
    bottom: 4px;
  }
  .mv_title {
    width: 80%;
    font-size: 48px;
    text-align: center;
    top: 54%;
  }
}

/* merit_area
===================================== */
.merit_area {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #735e43;
  padding: 30px 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}
.merit_area_img {
  width: calc(100% - 40px);
  max-width: 1350px;
  margin-inline: auto;
}
.merit_area_cap {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #dfd6d6;
}

@media only screen and (max-width: 768px) {
  .merit_area {
    position: static;
    padding-block: 24px;
    background: url(../images/merit_bg_sp.jpg) no-repeat center center / cover;
  }
  .merit_area_cap {
    text-align: left;
    margin-top: 14px;
  }
}

/* info_area
===================================== */
.info_area {
  background: url(../images/info_bg.jpg) no-repeat center right / cover;
  border-top: 1px solid #735e43;
  padding-top: 68px;
  padding-bottom: 60px;
}
.info_wrap {
  display: flex;
  align-items: end;
  column-gap: 10%;
  margin-bottom: 20px;
}
.info_body {
  color: #fff;
}
.info_title_en {
  font-size: 16px;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.5em;
}
.info_title {
  margin-top: 30px;
  font-size: 36px;
  letter-spacing: 0.1em;
}
.info_text {
  margin-top: 18px;
  font-size: 23px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.info_text .color {
  color: #c1ad93;
}
.info_text2 {
  color: #fff;
  margin-top: 30px;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.info_btn_wrap {
  width: 100%;
  max-width: 388px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-bottom: 30px;
}
.info_btn {
  display: block;
  max-width: 388px;
  width: 100%;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 25px 10px;
  background: #9F916D;
  background: linear-gradient(90deg, rgba(159, 145, 109, 1) 0%, rgba(226, 206, 155, 1) 50%, rgba(159, 145, 109, 1) 100%);
  transition: all 0.5s ease-out;
}
.info_btn.req {
  color: #fff;
  background: #988e79;
  background: linear-gradient(90deg, #988e79 0%, #d8cbac 50%, #988e79 100%);
  background: rgb(99, 81, 41);
  background: linear-gradient(
    90deg,
    rgba(99, 81, 41, 1) 0%,
    rgba(159, 135, 81, 1) 50%,
    rgba(99, 81, 41, 1) 100%
  );
}
.info_btn:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 768px) {
  .info_area {
    background: url(../images/info_bg_sp.jpg) no-repeat center bottom / cover;
    padding-top: 40px;
    padding-bottom: 130px;
  }
  .info_wrap {
    flex-direction: column;
    align-items: start;
    row-gap: 40px;
  }
  .info_title_en {
    font-size: 12px;
    letter-spacing: 0.5em;
  }
  .info_title {
    margin-top: 20px;
    font-size: 22px;
  }
  .info_text {
    margin-top: 14px;
    font-size: 14px;
    letter-spacing: normal;
  }
  .info_text2 {
    margin-top: 30px;
    font-size: 11px;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
  .info_btn {
    width: 90%;
    margin-inline: auto;
    font-size: 16px;
    padding: 18px 10px;
  }
}

/* entry_area
===================================== */
.entry_area {
  background-color: #000000;
  padding-top: 60px;
  padding-bottom: 60px;
  color: #fff;
}
.entry_title_wrap {
  width: 100%;
  max-width: 300px;
  padding-block: 40px;
  padding-inline: 20px;
  border-top: 1px solid rgba(231, 231, 223, 0.5);
  border-bottom: 1px solid rgba(231, 231, 223, 0.5);
}
.entry_title_inwrap {
  display: flex;
  flex-direction: column;
}
.entry_title {
  width: 100%;
  max-width: 250px;
  margin-inline: auto;
}
.entry_title_s {
  text-align: center;
  margin-top: 14px;
  font-size: 16px;
  letter-spacing: 0.3em;
  color: #e7e7df;
}
.entry_wrap {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.entry_body {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.entry_text {
  font-size: 18px;
  letter-spacing: 0.3em;
  line-height: 1.7;
}
.entry_title_en {
  font-size: 36px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #c1ad93;
  font-family: "EB Garamond", serif;
}
.entry_contents {
  display: flex;
}
.entry_item_wrap {
  display: flex;
  column-gap: 20px;
}
.entry_item {
  display: flex;
  column-gap: 14px;
}
.entry_item_img {
  width: 100%;
  max-width: 260px;
}
.entry_item_body {
  width: 100%;
  max-width: 160px;
}
.entry_item_text {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
  margin-top: 24px;
}

@media only screen and (max-width: 768px) {
  .entry_area {
    padding-top: 30px;
    padding-bottom: 60px;

  }
  .entry_title_wrap {
    margin-inline: calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    padding-block: 12px;
    padding-inline: 0px;
  }
  .entry_title_wrap:before,
  .entry_title_wrap:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: rgba(231, 231, 223, 0.5);
  }
  .entry_title_inwrap {
    width: 65%;
    flex-direction: column;
    align-items: center;
    row-gap: 5px;
  }
  .entry_title_wrap:before {
    margin-right: 5px;
  }
  .entry_title_wrap:after {
    margin-left: 5px;
  }
  .entry_title {
    width: 80%;
    max-width: 250px;
  }
  .entry_wrap {
    margin-top: 16px;
    flex-direction: column;
    row-gap: 30px;
  }
  .entry_body {
    width: 100%;
  }
  .entry_title {
    /* width: 80%; */
  }
  .entry_title_s {
    margin-top: 0;
    font-size: 13px;
    letter-spacing: 0.2em;
  }
  .entry_text {
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }
  .entry_title_en {
    font-size: 24px;
  }
  .entry_body_img {
    margin-inline: calc(50% - 50vw);
    width: 100vw;
  }
  .entry_contents {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-inline: auto;
  }
  .entry_item_wrap {
    flex-direction: column;
    row-gap: 20px;
  }
  .entry_item {
    justify-content: center;
  }
  .entry_item figure {
    width: 50%;
  }
  .entry_item_body {
    width: 48%;
    margin-top: 0;
  }
  .entry_item_text {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: 10px;
  }
}

/* contents_area
===================================== */
.contents_area {
  padding-top: 120px;
  padding-bottom: 110px;
  overflow: hidden;
  border-top: 1px solid #735e43;
}
.contents_wrap {
  display: flex;
  column-gap: 110px;
  align-items: center;
}
.contents_body {
  flex-shrink: 0;
}
.contents_title01 {
  max-width: 270px;
}
.contents_lead {
  margin-top: 48px;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: #c1ad93;
}
.contents_text {
  margin-top: 30px;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2.25;
  color: #fff;
}
.contents_img {
  margin-left: auto;
  margin-right: calc(50% - 50vw);
}
.contents_img_left {
  margin-right: auto;
  margin-left: calc(50% - 50vw);
}

@media only screen and (max-width: 768px) {
  .contents_area {
    padding-top: 50px;
    padding-bottom: 0px;
  }
  .contents_wrap {
    flex-direction: column;
    row-gap: 40px;
  }
  .contents_title01 {
  }
  .contents_title02 {
    width: 76%;
  }
  .contents_lead {
    margin-top: 30px;
    font-size: 16px;
  }
  .contents_text {
    margin-top: 30px;
    font-size: 11px;
    letter-spacing: normal;
    line-height: 2;
    color: #fff;
  }
  .contents_img {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
  .contents_img_left {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}

/* link_area
===================================== */
.link_area {
  position: relative;
  border-top: 1px solid #54432c;
  border-bottom: 1px solid #54432c;
  padding-top: 80px;
}
.link_area01 {
  background: url(../images/link_area_bg01.jpg) no-repeat center center / cover;
  padding-bottom: 60px;
}
.link_area02 {
  background: url(../images/link_area_bg02.jpg) no-repeat center center / cover;
  padding-bottom: 100px;
}
.link_area .inner {
  position: relative;
}
.link_area_title {
  position: absolute;
  left: -10px;
  top: -105px;
  font-family: "EB Garamond", serif;
  font-size: 36px;
  letter-spacing: 0.05em;
  color: #c1ad93;
  background-color: #292524;
  padding-inline: 30px;
}
.link_area_title span {
  font-size: 46px;
  line-height: 0.8;
}
.link_item_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 44px;
}
.link_item_wrap2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 44px;
}
.link_item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.link_item_body {
  margin-top: 14px;
}
.link_item_title {
  font-size: 18px;
  letter-spacing: 0.2em;
  color: #c1ad93;
}
.link_item_text {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.2em;
  color: #fff;
}
.link_item_btn {
  position: relative;
  display: block;
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.2em;
  color: #fff;
  border: 1px solid #54432c;
  padding: 10px 0;
  transition: all 0.5s ease-out;
}
.link_item_btn::before {
  content: "";
  background: url(../assets/images/link_arrow.png) no-repeat center center /
    contain;
  position: absolute;
  top: 16px;
  right: 30px;
  width: 30px;
  height: 7px;
  transition: all 0.5s ease-out;
}
.link_item_btn:hover {
  opacity: 0.7;
}
.link_item_btn:hover::before {
  right: 20px;
}
.link_item_btn2 {
  position: relative;
  display: block;
  max-width: 500px;
  margin-inline: auto;
  margin-top: 60px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: #fff;
  border: 1px solid #54432c;
  padding: 16px 0;
  transition: all 0.5s ease-out;
}
.link_item_btn2::before {
  content: "";
  background: url(../assets/images/link_arrow.png) no-repeat center center /
    contain;
  position: absolute;
  top: 24px;
  right: 30px;
  width: 30px;
  height: 7px;
  transition: all 0.5s ease-out;
}
.link_item_btn2:hover {
  opacity: 0.7;
}
.link_item_btn2:hover::before {
  right: 20px;
}

@media only screen and (max-width: 768px) {
  .link_area {
    position: relative;
    border: 1px solid #54432c;
    padding-top: 40px;
  }
  .link_area01 {
    background: url(../images/link_area_bg01_sp.jpg) no-repeat center center /
      cover;
    padding-bottom: 200px;
  }
  .link_area02 {
    background: url(../images/link_area_bg02_sp.jpg) no-repeat center bottom /
      cover;
    margin-top: 70px;
    padding-bottom: 190px;
  }
  .link_area_title {
    left: 20px;
    top: -60px;
    font-size: 24px;
    padding-inline: 20px;
  }
  .link_area_title span {
    font-size: 32px;
  }
  .link_item_wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 40px;
  }
  .link_item_wrap2 {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 30px;
  }
  .link_item {
    flex-direction: row;
  }
  .link_item_img {
    width: 48%;
  }
  .link_item_body {
    width: 48%;
    margin-top: 0;
  }
  .link_item2 .link_item_body {
    width: 100%;
    margin-top: 10px;
  }
  .link_item_title {
    font-size: 14px;
  }
  .link_item_text {
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: normal;
  }
  .link_item_btn {
    margin-top: 10px;
    font-size: 12px;
    padding: 4px 0;
  }
  .link_item_btn::before {
    top: 12px;
    right: 10px;
    width: 20px;
    height: 5px;
    transition: all 0.5s ease-out;
  }
  .link_item_btn2 {
    margin-top: 40px;
    background-color: #282523;
    text-align: left;
    font-size: 14px;
    letter-spacing: 0.1em;
    padding: 16px 10px 16px 20px;
  }
  .link_item_btn2::before {
    top: 24px;
    right: 20px;
  }
}
