@charset "utf-8";
/* ------------------------------------------
  mv
------------------------------------------ */


.mv {
  width: 100%;
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.mv video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
}

.mv_txt {
  position: absolute;
  bottom: 39px;
  right: 45px;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 23px;
  letter-spacing: 0.2em;
  line-height: 34px;
  outline: none;
}


.play_btn_inner {
  position: absolute;
  top: 120px;
  right: 20px;
}

.play_txt {
  font-family: "adobe-garamond-pro", serif;
  text-align: center;
  color: #fff;
  margin-bottom: 5px;
  font-size: 16px;
  letter-spacing: 0.19em;
  padding: 17px 0px;
  border: 1px solid #fff;
  border-radius: 47px;
  display: table;
  width: 150px;
  cursor: pointer;
  transition: .5s;
}

.play_txt.active{
  border-color: #6D352C;
  color: #6D352C;
}


@media screen and (max-width: 430px) {
  .mv_txt {
    right: 24px;
    bottom: 100px;
  }

  .mv video {
    height: 100%;
  }

  .play_btn_inner {
    right: 10px;
    top: 80px;
  }

  .play_txt{
    font-size: 16px;
    width: 120px;
    outline: none;
    padding: 15px 0%;
  }
}

/* ------------------------------------------
  news
------------------------------------------ */
.top_news {
  padding-top: 120px;
  padding-bottom: 200px;
  background: #efedea;
  padding-right: 20px;
  padding-left: 20px;
}

.top_news_container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
}

.top_news_sec_ttl {
  text-align: center;
  color: #6d352c;
  font-family: "adobe-garamond-pro", serif;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 42px;
  margin-bottom: 17px;
  font-weight: 400;
}

.top_news_list_inner {
  width: 100%;
  margin-bottom: 27px;
}

.top_news_list_inner ul {
  display: flex;
  width: 100%;
}

.top_news_list_item {
  width: 33.1746%;
}

.top_news_list_item:not(:last-child) {
  margin-right: 10px;
}

.top_news_list_item a {
  background: #6d352c;
  padding: 30px 20px 30px 55px;
  display: block;
  width: 100%;
  height: 100%;
}

.top_news_date {
  color: #fff;
  font-family: "Klee One", cursive;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 18px;
}

.top_news_ttl {
  color: #fff;
  font-family: "Klee One", cursive;
  font-weight: 400;
  font-size: 17px;
  line-height: 27px;
}

.viewall {
  width: 121px;
  margin: 0 auto;
}

.viewall a {
  height: 36px;
  display: block;
  width: 121px;
  text-align: center;
  font-family: "adobe-garamond-pro", serif;
  color: #6d352c;
  font-size: 16px;
  line-height: 11px;
  letter-spacing: 0.24em;
  padding-top: 12px;
  padding-bottom: 12px;
  border: 1px solid #6d352c;
  border-radius: 47px;
  transition: background 0.4s;
  position: relative;
  opacity: 1;
}

.viewall a:hover {
  border: 1px solid #6d352c;
  opacity: 1;
  background-image: linear-gradient(72deg, #6d352c 45%, #fff 60%, #6d352c 45%);
  background-size: 500% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 4s ease-out;
  animation-delay: -0.6s;
}

/* .viewall::after {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 20px;
  height: 2px;
  background-color: rgba(239, 237, 234, 0.7);
  transition: 1.4s;
  transition-delay: -0.3s;
}

.viewall:hover::after {
  left: 155px;
}

.viewall::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -30px;
  width: 20px;
  height: 2px;
  background-color: rgba(239, 237, 234, 0.7);
  transition: 1.4s;
  transition-delay: -0.3s;
}

.viewall:hover::before {
  left: 155px;
}

.viewall3 {
  width: 121px;
  margin: 0 auto;
} */

.viewall3 a {
  display: block;
  width: 121px;
  text-align: center;
  font-family: "adobe-garamond-pro", serif;
  color: #6d352c;
  font-size: 16px;
  line-height: 11px;
  letter-spacing: 0.24em;
  padding-top: 12px;
  padding-bottom: 12px;
  border: 1px solid #6d352c;
  border-radius: 47px;
  transition: border 0.4s;
}

.viewall3 a:hover {
  border: 1px solid #502200;
  opacity: 1;
  background-image: linear-gradient(72deg, #6d352c 45%, #fff 60%, #6d352c 45%);
  background-size: 500% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 4s ease-out;
  animation-delay: -0.7s;
}

@media screen and (max-width: 430px) {
  .top_news {
    padding-top: 80px;
    padding-bottom: 74px;
  }

  .top_news_list_inner ul {
    display: block;
  }

  .top_news_list_item {
    width: 100%;
    margin-bottom: 20px;
  }

  .top_news_list_item:not(:last-child){
    margin-right: 0;
  }

  .top_news_list_item a {
    padding: 33px 15px 33px 39px;
  }

  .top_news_date {
    margin-bottom: 10px;
  }

  .top_news_ttl {
    font-size: 14px;
    line-height: 20px;
  }

  .viewall a {
    height: auto;
    padding-top: 18.5px;
    padding-bottom: 18.5px;
  }
}

/* ------------------------------------------
  interview
------------------------------------------ */
.top_interview {
  background: #efedea;
  padding-bottom: 200px;
  padding-left: 20px;
}

.top_interview_container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.top_interview_inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 0 0 0 auto;
}

.top_interview_ttl {
  font-family: "adobe-garamond-pro", serif;
  font-size: 40px;
  letter-spacing: 0.1em;
  line-height: 42px;
  font-weight: 400;
  color: #6d352c;
  margin-right: 120px;
}

.top_interview_video_inner {
  max-width: 840px;
  width: 100%;
}

.top_interview_video_pc {
  position: relative;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  font-family: "adobe-garamond-pro", serif;
}


.top_interview_video,
.top_interview_video2 {
  width: 100%;
  height: 100%;
  opacity: 1 !important;
  visibility: visible !important;
}

.top_interview_play {
  width: 80px;
  height: 80px;
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  display: block;
  cursor: pointer;
  transition: border 0.4s;
}

.top_interview_play:hover {
  opacity: 0.8;
}

.top_interview_play.playActive {
  display: none;
}

@media screen and (max-width: 1160px) {
  .top_interview_ttl {
    margin-right: 40px;
  }
}

@media screen and (max-width: 430px) {
  .top_interview {
    padding-bottom: 80px;
    padding-left: 0;
  }

  .top_interview_inner {
    display: block;
  }

  .top_interview_ttl {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
    font-size: 40px;
    letter-spacing: 0.1em;
    line-height: 56px;
  }

  .top_interview_play {
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
  }
}

/* ------------------------------------------
  top_contract
------------------------------------------ */
.top_contract {
  background: #efedea;
  padding-bottom: 201px;
}

.top_contract_container {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  height: 501px;
}

.top_contract_inner img {
  display: block;
  max-width: 840px;
  width: 100%;
}

.top_contract_txt_inner {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 541px;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  padding-top: 68.5px;
  padding-bottom: 39px;
  padding-left: 52px;
  padding-right: 23px;
}

.top_contract_ttl {
  font-family: "adobe-garamond-pro", serif;
  font-size: 40px;
  letter-spacing: 0.1em;
  line-height: 56px;
  color: #6d352c;
  font-weight: 400;
  margin-bottom: 20px;
}

.top_contract_txt {
  color: #6d352c;
  font-family: "Klee One", cursive;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.19em;
}

.top_contract_txt:nth-of-type(1) {
  margin-bottom: 10px;
}

.top_contract_txt:nth-of-type(2) {
  margin-bottom: 44.5px;
}

.viewall2 {
  margin-left: auto;
  margin-right: 0;
  width: 121px;
}

.viewall2 a {
  height: 36px;
  display: block;
  width: 100%;
  font-family: "adobe-garamond-pro", serif;
  color: #6d352c;
  font-size: 16px;
  line-height: 11px;
  letter-spacing: 0.24em;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 32px;
  padding-right: 30px;
  border: 1px solid #6d352c;
  border-radius: 47px;
  position: relative;
  transition: border 0.4s;
}

.viewall2 a:hover {
  opacity: 1;
  background-image: linear-gradient(72deg, #6d352c 45%, #fff 60%, #6d352c 45%);
  background-size: 500% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 4s ease-out;
  animation-delay: -0.8s;
  border: 1px solid #502200;
}

.viewall2 span {
  display: inline;
  position: absolute;
  right: 20px;
  bottom: 12px;
  font-size: 17px;
  transform: rotate(-50deg);
}

.viewall2 a:hover span {
  background-image: linear-gradient(72deg, #6d352c 45%, #fff 60%, #6d352c 45%);
  animation: shine 2s ease-out;
  background-size: 500% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  opacity: 1;
}

@media screen and (max-width: 430px) {
  .top_contract_inner img {
    height: 267px;
  }

  .top_contract_txt_inner {
    padding-top: 21px;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 15px;
    max-width: 308px;
    bottom: 77px;
  }

  .top_contract_ttl {
    font-size: 26px;
    line-height: 36px;
  }

  .top_contract_txt:nth-of-type(1) {
    margin-bottom: 0;
  }

  .top_contract_txt:nth-of-type(2) {
    margin-bottom: 40px;
  }

  .viewall2 a {
    height: auto;
    padding-top: 18.5px;
    padding-bottom: 18.5px;
    color: #6d352c;
    border-color: #6d352c;
  }

  .viewall2 span {
    bottom: 15px;
  }
}

/* ------------------------------------------
  oneframe
------------------------------------------ */
.top_oneframe {
  padding-bottom: 216px;
  background: #efedea;
  padding-left: 20px;
}

.top_oneframe .top_oneframe_container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.top_oneframe .top_oneframe.top_oneframe_inner {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
}

.top_oneframe .top_oneframe_ttl {
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
  letter-spacing: 0.2em;
  line-height: 58px;
  color: #4b4b4b;
  font-weight: 300;
  margin-bottom: 53.7px;
}

.top_oneframe .oneframe_item_inner {
  display: flex;
  align-items: center;
  padding-left: 50px;
}

.top_oneframe .onefra .oneframe_content {
  display: flex;
}

.top_oneframe .oneframe_item {
  padding-right: 40px;
}

.top_oneframe .oneframe_item:nth-child(odd) a {
  display: block;
  margin-top: 58px;
}

.top_oneframe .slick-slider {
  overflow: hidden;
}

.top_oneframe .oneframe_item:not(:first-child) {
  padding-left: 40px;
  border-left: 1px solid #707070;
}

.top_oneframe .oneframe_item:nth-child(even) {
  padding-bottom: 58px;
}

.top_oneframe .oneframe_item img {
  width: 270px;
  height: 400px;
  display: block;
  margin-bottom: 20px;
}

.top_oneframe .oneframe_date {
  font-size: 12px;
  line-height: 20px;
  font-family: "Klee One", cursive;
  font-weight: 400;
  margin-bottom: 20px;
}

.top_oneframe .oneframe_txt {
  font-size: 14px;
  line-height: 17px;
  font-family: "Klee One", cursive;
  font-weight: 400;
}

.top_oneframe .oneframe_item_inner .viewall {
  margin-right: 58.8px;
}

@media screen and (max-width: 430px) {
  .top_oneframe .oneframe_content {
    margin-bottom: 40px;
  }

  .top_oneframe .top_contract {
    padding-bottom: 0px;
  }

  .top_oneframe .top_oneframe {
    padding-bottom: 80px;
  }

  .top_oneframe .top_oneframe_ttl {
    text-align: center;
    font-size: 26px;
    letter-spacing: 0.2em;
    line-height: 37px;
    margin-bottom: 41px;
  }

  .top_oneframe .oneframe_item_inner {
    padding-left: 0;
    display: block;
  }

  .top_oneframe .oneframe_item_inner .viewall {
    margin: 0 auto;
  }

  .top_oneframe .oneframe_item:nth-child(odd) a {
    max-width: 375px !important;
    width: 100%;
  }
 
  .top_oneframe .oneframe_item {
    padding-right: 0px;
    margin: 0 auto;
    max-width: 270px;
    margin-right: 15px;
  }

  .top_oneframe .oneframe_item:not(:first-child) {
    padding-left: 0px;
    border: none;
    margin-left: 15px;
  }

  .top_oneframe .oneframe_item:nth-child(odd) a {
    margin-top: 20px; 
  }
  .top_oneframe .oneframe_item img {
    width: 100%;
  }
}

/* ------------------------------------------
  accordion
------------------------------------------ */
.top_ac {
  padding-bottom: 192px;
  background: #fff;
}

.border_bg {
  width: 100%;
  height: 240px;
  background: linear-gradient(to right top, transparent 50%, #efedea 50%);
  transform: rotate(0deg); /* 必要に応じて回転角度を調整 */
  transform-origin: top left;
  margin-bottom: 58px;
}

.top_ac_container {
  max-width: 1028px;
  width: 100%;
  margin: 0 auto;
}

.ac_inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.ac_item {
  border-bottom: 1px solid #707070;
  cursor: pointer;
}

.ac_item:nth-of-type(1) {
  border-top: 1px solid #707070;
}

.ac_ttl {
  position: relative;
  color: #4b4b4b;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 18px;
  font-family: "Klee One", cursive;
  font-weight: 400;
  padding: 57px 20px 57px 102px;
}

.ac_ttl:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/top_page/ac_open.svg) center / cover;
  left: 46px;
  top: calc(50% - 7px);
}

.ac_txt {
  width: 100%;
  background: linear-gradient(to bottom right, #fdfcfb, #e2d1c3);
  display: none;
  margin-top: 50px;
  padding: 62px 53px 67px 102px;
}

.ac_ttl.close::before {
  background: url(../img/top_page/ac_close.svg) center / cover;
  top: calc(50% - 4px);
}

.ac_txt1 {
  font-family: "Klee One", cursive;
  font-weight: 400;
  color: #4b4b4b;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 40px;
  margin-bottom: 60px;
}

.ac_txt2 {
  font-family: "Klee One", cursive;
  font-weight: 400;
  color: #4b4b4b;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 30px;
}

@media screen and (max-width: 430px) {
  .top_ac {
    padding-bottom: 100px;
  }

  .ac_inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .ac_ttl {
    font-size: 14px;
    line-height: 20px;
    padding: 29px 20px 29px 70px;
  }

  .ac_ttl:before {
    left: 30px;
    width: 12px;
    height: 12px;
  }

  .ac_txt {
    padding: 40px;
    margin-top: 30px;
  }

  .ac_txt1 {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
  }

  .ac_txt2 {
    font-size: 14px;
    line-height: 30px;
  }

  .border_bg {
    height: 220px;
  }
}

/* ------------------------------------------
  flow
------------------------------------------ */
.top_flow {
  margin-left: 20px;
  margin-right: 20px;
}

.top_flow_container {
  max-width: 1028px;
  width: 100%;
  margin: 0 auto;
}

.top_flow_ttl {
  text-align: center;
  color: #4b4b4b;
  font-family: "Klee One", cursive;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.1em;
  line-height: 30px;
  margin-bottom: 40px;
}

.top_flow_ttl_inner {
  max-width: 498px;
  width: 100%;
  margin: 0 auto 208px;
  position: relative;
}

.top_flow_content_inner {
  width: 100%;
  margin: 0 auto;
}

.top_flow_content_item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top_flow_content_item:not(:last-child) {
  margin-bottom: 200px;
}

.top_flow_content_item1 .top_flow_content_item_txt_inner {
  width: 66.3%;
  padding-left: 196px;
  position: relative;
}

.top_flow_content_item2 .top_flow_content_item_txt_inner {
  width: 66.3%;
  padding-left: 0px;
  position: relative;
}

.top_flow_content_item_txt_inner::before {
  position: absolute;
  color: #6d352c;
  opacity: 0.1;
  font-size: 300px;
  line-height: 300px;
  font-family: "adobe-garamond-pro", serif;
  letter-spacing: -0.05em;
}

.top_flow_content_item_txt_inner1:before {
  content: "01";
  top: -30px;
  left: -5px;
}

.top_flow_content_item_txt_inner2:before {
  content: "02";
  top: -61px;
  right: 30px;
}

.top_flow_content_item_txt_inner3:before {
  content: "03";
  top: -49px;
  left: -5px;
}

.top_flow_content_item_txt_inner4:before {
  content: "04";
  top: -25px;
  right: 69px;
}

.top_flow_content_item_txt_inner5:before {
  content: "05";
  top: -45px;
  left: -20px;
}

.top_flow_content_item_ttl {
  font-size: 26px;
  line-height: 44px;
  margin-bottom: 30px;
  font-family: "Klee One", cursive;
  font-weight: 600;
  color: #4b4b4b;
}

.top_flow_content_item_txt {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 24px;
  margin-bottom: 16px;
  font-family: "Klee One", cursive;
  font-weight: 400;
  color: #4b4b4b;
}

.top_flow_content_item_txt2 {
  font-family: "Klee One", cursive;
  font-weight: 400;
  color: #000;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 20px;
}

.top_flow_content_item_img {
  width: 32%;
}

.top_flow_content_item_img img {
  width: 100%;
}

.top_flow_content_item_img1 {
  margin-left: 27px;
}

.top_flow_content_item_img2 {
  margin-right: 33.5px;
}

.top_flow_content_item_img3 {
  margin-left: 28px;
}

.top_flow_content_item_img4 {
  margin-right: 70px;
}

.border_bg2 {
  width: 100%;
  height: 240px;
  background: linear-gradient(to right top, #efedea 50%, #fff 50%);
  transform: rotate(0deg);
  transform-origin: top left;
}

@media screen and (max-width: 430px) {
  .top_flow {
    padding-bottom: 60px;
  }

  .top_flow_ttl_inner {
    margin-bottom: 40px;
  }

  .top_flow_ttl {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20.5px;
  }

  .top_flow_content_item {
    flex-direction: column;
  }

  .top_flow_content_item:nth-child(even) {
    flex-direction: column-reverse;
  }

  .top_flow_content_item1 .top_flow_content_item_txt_inner {
    padding-left: 56px;
    width: 100%;
    margin-bottom: 21px;
  }

  .top_flow_content_item2 .top_flow_content_item_txt_inner {
    padding-right: 47px;
    width: 100%;
    margin-bottom: 21px;
  }

  .top_flow_content_item_img {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .top_flow_content_item_ttl {
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 16px;
  }

  .top_flow_content_item_txt {
    font-size: 14px;
    margin-bottom: 17px;
  }

  .top_flow_content_item_img {
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
  }

  .top_flow_content_item:not(:last-child) {
    margin-bottom: 72px;
  }

  .top_flow_content_item_txt_inner::before {
    font-size: 180px;
    letter-spacing: -0.05em;
  }

  .top_flow_content_item_txt_inner1:before {
    top: -81px;
    left: 0px;
  }

  .top_flow_content_item_txt_inner2:before {
    top: -71px;
    right: 17px;
  }

  .top_flow_content_item_txt_inner3:before {
    top: -38px;
    left: 10px;
  }

  .top_flow_content_item_txt_inner4:before {
    top: -70px;
    right: 12px;
  }

  .top_flow_content_item_txt_inner5:before {
    top: -63px;
    left: -3px;
  }
}

/* ------------------------------------------
  interior
------------------------------------------ */
.top_interior {
  padding-top: 196px;
  padding-bottom: 200px;
  background: #efedea;
}

.top_interior_container {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
}

.top_interior_ttl {
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
  letter-spacing: 0.2em;
  line-height: 58px;
  color: #4b4b4b;
  margin-bottom: 30px;
  font-weight: 400;
}

.top_interior_txt {
  font-size: 14px;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.2em;
  line-height: 24px;
  color: #4b4b4b;
  margin-bottom: 104px;
  font-weight: 400;
  position: relative;
  z-index: 10;
}

.top_interior_txt span {
  position: relative;
}

.top_interior_txt span:before {
  position: absolute;
  width: 100%;
  height: 10px;
  background: #fff;
  content: "";
  bottom: 0px;
  left: -3px;
  z-index: -1;
}

.interior_tbl_inner {
  margin-bottom: 200px;
  margin: 0 auto 200px;
  max-width: 1000px;
  width: 100%;
}

.interior_tbl_inner table {
  width: 100%;
  font-family: "Klee One", cursive;
  font-weight: 400;
}

.non {
  width: 20%;
  background: #efedea;
}

.col {
  background: #6d352c;
  border-left: 10px solid #efedea;
  border-right: 10px solid #efedea;
  border-bottom: 1px solid #fff;
  padding: 27px 10px;
  color: #fff;
  font-size: 26px;
  line-height: 44px;
  font-weight: 400;
  width: 40%;
}

.col2 {
  background: rgba(109, 53, 44, 0.1);
  color: #4b4b4b;
  font-size: 26px;
  line-height: 44px;
  width: 40%;
}

.tbl_ttl {
  background: #fff;
  border-right: 10px solid #efedea;
  text-align: center;
  padding: 33px 10px;
  color: #4b4b4b;
  font-size: 15px;
  line-height: 24px;
  border-bottom: 1px solid rgba(75, 75, 75, 0.2);
  font-weight: 400;
}

.txt {
  text-align: left;
  border-right: 10px solid #efedea;
  text-align: center;
  background: rgba(109, 53, 44, 0.9);
  padding: 30px 10px;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.txt2 {
  text-align: center;
  background: #fff;
  padding: 30px 10px;
  font-size: 15px;
  line-height: 24px;
  color: #4b4b4b;
  border-bottom: 1px solid rgba(75, 75, 75, 0.2);
}

tbody tr:last-child .tbl_ttl,
tbody tr:last-child .txt,
tbody tr:last-child .txt2 {
  border-bottom: none;
}

@media screen and (max-width: 430px) {
  .top_interior_container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .top_interior {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .top_interior_ttl {
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 20px;
  }

  .top_interior_txt {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 61px;
  }

  .interior_tbl_inner {
    max-width: 400px;
    margin: 0 auto 80px;
  }

  .non {
    width: 16%;
  }

  .col {
    font-size: 20px;
    line-height: 34px;
    border-left: 5px solid #efedea;
    border-right: none;
  }

  .txt {
    font-size: 16px;
    line-height: 27px;
    padding: 20px 10px;
    border-right: none;
    vertical-align: middle;
  }

  .tbl_ttl {
    vertical-align: middle;
    border-right: 5px solid #efedea;
  }

  .interior_tbl_sp1 {
    margin-bottom: 20px;
  }

  .interior_tbl_sp2 .col {
    background: rgba(109, 53, 44, 0.1);
    color: #4b4b4b;
  }

  .interior_tbl_sp2 .txt {
    background: #fff;
    color: #4b4b4b;
    border-bottom: 1px solid rgba(75, 75, 75, 0.2);
  }
}

.howtobuy_img {
  max-width: 840px;
  width: 100%;
  margin-top: 60px;
}

.howtobuy_txt_inner {
  background: #fff;
  padding: 40px 15px 40px 40px;
  max-width: 645px;
  width: 100%;
  margin-right: 0;
  margin-left: auto;
  margin-top: -134px;
  position: relative;
  z-index: 3;
}

.howtobuy_ttl {
  font-family: "Klee One", cursive;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 36px;
  color: #000;
  margin-bottom: 10px;
}

.howtobuy_card {
  display: flex;
  margin-bottom: 30.5px;
}

.howtobuy_card img {
  display: block;
}

.card1 {
  width: 62px;
  margin-right: 5px;
}

.card2 {
  width: 53px;
  margin-right: 5px;
}

.card3 {
  width: 48px;
  margin-right: 5px;
}
.card4 {
  width: 37px;
  margin-right: 5px;
}
.card5 {
  width: 49px;
}

.howtobuy_txt {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 26px;
  font-family: "Klee One", cursive;
}

.howtobuy_inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 430px) {
  .howtobuy_img {
    margin-top: 0;
    margin-bottom: 32px;
  }

  .howtobuy_txt_inner {
    margin-top: 0;
    padding: 40px 18px;
  }

  .howtobuy_inner {
    max-width: 100%;
  }

  .howtobuy_txt_container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .howtobuy_ttl {
    margin-bottom: 20px;
  }

  .howtobuy_card {
    justify-content: center;
  }

  .card1 {
    width: 52px;
    margin-right: 10px;
  }
  .card2 {
    width: 44px;
    margin-right: 10px;
  }

  .card3 {
    width: 40px;
    margin-right: 10px;
  }

  .card4 {
    width: 31px;
    margin-right: 10px;
  }

  .card5 {
    width: 40px;
  }
}

/* ------------------------------------------
  brand
------------------------------------------ */
.brand_img {
  transform: scale(0.6); /* 初期スケールを設定 */
  transition: transform 0.8s ease-out; /* 必
.brand_global {
  /* display: none; */
  /* transform: translateY(100px); */
  /* margin-top: -100px; */
}

.brand_japan {
  background: #502200;
  width: 100%;
  height: 100vh;
}

.brand_japan_link_inner {
  width: 100%;
  position: relative;
  margin: 0 auto;
  display: grid;
  place-content: center;
  height: 100%;
}

.brand_ttl {
  font-size: 70px;
  letter-spacing: 0.2em;
  line-height: 130px;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  position: absolute;
  top: 65px;
  left: 48px;
}

.brand_japan_link_inner .viewall4 {
  position: absolute;
  bottom: 60px;
  right: 100px;
}

.brand_japan_link_inner .viewall4 a {
  color: #fff;
  border: 1px solid #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 153px;
  transition: border 0.4s;
}

.brand_global {
  position: relative;
  z-index: 600;
}

.brand_global_link_inner {
  position: relative;
  width: 100%;
}

.viewall4 a {
  display: block;
  width: 121px;
  text-align: center;
  font-family: "adobe-garamond-pro", serif;
  color: #4b4b4b;
  font-size: 16px;
  line-height: 11px;
  letter-spacing: 0.24em;
  padding-top: 12px;
  padding-bottom: 12px;
  border: 1px solid #4b4b4b;
  border-radius: 47px;
  transition: border 0.4s;
  cursor: pointer;
}

.brand_global_link_inner .viewall4 {
  position: absolute;
  bottom: 60px;
  right: 100px;
}

.brand_japan_link_inner a:hover {
  opacity: 1 !important;
}

.brand_japan_link_inner a:hover * {
  opacity: 1;
}

.brand_global_link_inner a:hover {
  opacity: 1 !important;
}

.brand_global_link_inner a:hover * {
  opacity: 1;
}

.brand_global_link_inner .viewall4 a {
  color: #fff;
  border: 1px solid #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 153px;
  transition: border 0.4s;
}

.brand_japan_link_inner .viewall4 a:hover {
  opacity: 1;
  background-image: linear-gradient(72deg, #6d352c 45%, #fff 60%, #6d352c 45%);
  background-size: 500% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 4s ease-out;
  animation-delay: -0.6s;
  border: 1px solid #6d352c;
}
*/ @keyframes shine {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.brand_global_link_inner .viewall4 a:hover {
  opacity: 1;
  background-image: linear-gradient(72deg, #6d352c 45%, #fff 60%, #6d352c 45%);
  background-size: 500% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 4s ease-out;
  animation-delay: -0.6s;
  border: 1px solid#6d352c;
}

@keyframes shine {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media screen and (max-width: 1024px) {
  .brand_img {
    transform: scale(1);
    display: block;
  }

  .brand_img2 {
    display: block;
  }

  .brand_japan {
    height: 100%;
  }

  .brand_japan_link_inner {
    width: 100%;
    height: 100%;
  }

  .top_item {
    margin-top: 0 !important;
  }

  .brand_japan_link_inner .viewall3 {
    right: 132px;
  }
}

@media screen and (max-width: 430px) {
  .brand_ttl {
    font-size: 26px;
    line-height: 37px;
    left: 11px;
    top: 10px;
  }

  .brand_japan {
    background: none;
  }

  .brand_japan_link_inner .viewall4 {
    bottom: 20px;
    right: 25px;
  }

  .brand_global_link_inner .viewall4 {
    bottom: 20px;
    right: 25px;
  }
}

/* ------------------------------------------
  brand
------------------------------------------ */
/* ------------------------------------------
  brand
------------------------------------------ */
/* ------------------------------------------
  brand
------------------------------------------ */

/* ------------------------------------------
  item
------------------------------------------ */
.top_item {
  margin-top: -750px;
  padding-top: 400px;
  padding-bottom: 400px;
  background: #efedea;
  position: relative;
  z-index: 555;
}

.item_container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.item_menu_content {
  width: 728px;
  height: 728px;
  border-radius: 50%;
  border: 1px solid #707070;
  display: grid;
  place-content: center;
  margin-left: -100px;
}

.top_item_ttl {
  font-family: "adobe-garamond-pro", serif;
  font-size: 40px;
  letter-spacing: 0.1em;
  line-height: 50px;
  color: #4b4b4b;
  margin-bottom: 56px;
  font-weight: 400;
}

.item_menu_inner {
  margin-left: 90px;
}

.item_menu_list_inner {
  display: flex;
}

.item_menu_list:nth-of-type(1) {
  margin-right: 73px;
}

.item_menu_inner_item {
  margin-bottom: 34.5px;
  padding-left: 70px;
  font-family: "adobe-garamond-pro", serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 22px;
  position: relative;
}

.item_menu_inner_item::before {
  content: "";
  position: absolute;
  width: 47px;
  height: 1px;
  background: #4b4b4b;
  left: 0;
  top: calc(50% - 0.5px);
}

.item_menu_inner_item a {
  transition: background-image 0.4s;
}

.item_menu_inner_item a:hover {
  opacity: 1;
  background-image: linear-gradient(72deg, #6d352c 45%, #fff 60%, #6d352c 45%);
  background-size: 500% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 4s ease-out;
  animation-delay: -0.7s;
}

@keyframes shine {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.item_img {
  width: 586px;
  height: 400px;
  margin-right: 115px;
  margin-left: auto;
  margin-top: -22%;
  background: url(../img/Item/Table/table_tokyo.jpg) center / cover;
  transition: 0.5s;
}

@media screen and (max-width: 430px) {
  .top_item {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
    margin-top: 0;
  }

  .item_menu_inner {
    max-width: 375px;
    width: 100%;
    margin: 0 auto;
  }

  .item_menu_content {
    width: 500px;
    height: 500px;
    position: relative;
    left: calc(50% - 250px);
    margin-left: 0;
  }

  .item_menu_inner_item {
    font-size: 14px;
    padding-left: 24px;
  }

  .item_menu_inner_item::before {
    width: 30px;
    top: 40%;
    left: -23px;
  }

  .item_img {
    width: 286px;
    height: 195px;
    margin-right: 20px;
    position: relative;
    z-index: 10;
  }

  .item_menu_list:nth-of-type(1) {
    margin-right: 35px;
  }
}

@media screen and (max-width: 320px) {
  .item_img {
    margin-right: 7px;
  }
}

/* ------------------------------------------
  gallery
------------------------------------------ */
.top_gallery {
  position: relative;
  z-index: 556;
}

.top_gallery_container {
  overflow: hidden;
  position: relative;
}

.top_gallery_img img {
  position: relative;
  width: 100%;
  filter: brightness(70%);
}

.top_gallery_img img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

/* .top_gallery_item:not(:last-of-type) {
  margin-right: 300px;
} */

.top_gallery_inner {
  color: #fff;
  position: absolute;
  top: 45%;
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear 0s infinite both;
  /* transform: translateX(100%); */
}

.top_gallery_item {
  width: 100%;
  margin-left: 8vw;
}

@keyframes marquee {
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
/* 
.top_gallery_item {
  width: 100%;
  animation: marquee 25s linear 0s infinite both;
  animation-delay: -10s;
} */

.top_gallery_txt {
  font-size: 87px;
  letter-spacing: 0.1em;
  line-height: 90px;
  margin-bottom: 40px;
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
}

.top_gallery > a {
  display: block;
}

.top_gallery > a:hover {
  opacity: 1 !important;
}

.top_gallery > a:hover * {
  opacity: 1 !important;
}

.top_gallery_sub_txt {
  font-family: "Klee One", cursive;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 34px;
}

.top_gallery_container .viewall {
  position: absolute;
  bottom: 100px;
  left: calc(50% - 75px);
  width: 153px;
}

.top_gallery_container .viewall a {
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  transition: border 0.4s;
  height: 36px;
}

.top_gallery_container .viewall a:hover {
  opacity: 1;
  background-image: linear-gradient(72deg, #6d352c 45%, #fff 60%, #6d352c 45%);
  background-size: 500% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 4s ease-out;
  animation-delay: -0.6s;
  border: 1px solid #6d352c;
}

@keyframes shine {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.top_banner {
  padding-top: 100px;
  padding-bottom: 150px;
  background: #efedea;
}

@media screen and (max-width: 430px) {
  .top_gallery_container .viewall {
    bottom: 30px;
  }

  .top_gallery_container .viewall a {
    height: 50px;
  }

  .top_gallery_txt {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
  }

  .top_gallery_sub_txt {
    font-size: 14px;
    line-height: 24px;
  }

  .top_gallery_inner {
    top: 33%;
  }

  .viewall a {
    color: #6d352c;
    border-color: #6d352c;
  }
}

@media screen and (min-width: 1920px) {
  .top_gallery_inner {
    width: 2800px;
  }

  .top_item {
    margin-top: -1000px;
  }
}

/* ------------------------------------------
  top_banner
------------------------------------------ */
.top_banner {
  position: relative;
  z-index: 557;
}

.top_banner_inner {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.top_banner_inner a {
  display: block;
  width: 100%;
}

.top_banner_inner img {
  width: 100%;
}

.top_banner_txt_inner {
  position: absolute;
  width: 281px;
  bottom: 60px;
  right: 133px;
}

.top_banner_ttl {
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 37px;
  margin-bottom: 19px;
  position: relative;
}

.top_banner_ttl::after {
  position: absolute;
  content: "";
  width: 140px;
  height: 1px;
  background: #fff;
  right: 0;
  top: 50%;
}

.top_banner_txt {
  font-family: "Klee One", cursive;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.18em;
  line-height: 24px;
}

@media screen and (max-width: 430px) {
  .top_banner {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .top_banner_inner {
    max-width: 328px;
  }

  .top_banner_ttl::after {
    content: none;
  }

  .top_banner_txt_inner {
    width: 150px;
    right: 16px;
    bottom: 33px;
  }

  .top_banner_ttl {
    margin-bottom: 9px;
  }

  .top_banner_txt {
    line-height: 21px;
  }
}

.pagenation_item.hidden {
  opacity: 0;
  pointer-events: none; /* Prevent clicks */
}