@charset "UTF-8";
.start {
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}

.start p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 17.58%;
}
@media only screen and (max-width: 450px) {
  .start p {
    width: 57.3%;
  }
}

.start p img {
  width: 100%;
  height: auto;
}

header {
  background-color: #938355;
}
header #navArea .logo {
  width: 68.7%;
}
header .content_area {
  position: relative;
}
header .content_area::before {
  content: "";
  background: url(../images/main_logo.svg);
  width: 18%;
  height: auto;
  background-repeat: no-repeat;
  aspect-ratio: 1.53/1;
  left: 20px;
  top: 20px;
  position: absolute;
  display: block;
  background-size: cover;
  z-index: 10;
}
@media only screen and (max-width: 900px) {
  header .content_area::before {
    left: 35%;
    top: 30px;
    width: 31.2%;
  }
}
header .content_area .tab-container {
  position: fixed;
  z-index: 100;
  right: 0;
  top: 180px;
  height: calc(100vh - 200px);
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 78px;
}
header .content_area .tab-container.open {
  display: none;
}
@media only screen and (max-width: 900px) {
  header .content_area .tab-container {
    height: calc(100vh - 200px);
    width: 8%;
    top: 113px;
  }
}
header .content_area .tab-container .tab {
  height: calc((100vh - 200px) / 3);
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
  color: #000;
  letter-spacing: 0.3rem;
  padding-top: 7px;
  min-height: 140px;
  cursor: pointer;
  font-size: 15px;
  margin-top: 10px;
}
@media only screen and (max-width: 900px) {
  header .content_area .tab-container .tab {
    min-height: auto;
    letter-spacing: 0.2rem;
  }
}
header .content_area .tab-container .tab:hover {
  background-color: #5a4d26;
  color: #fff;
}
header .content_area .tab-container .tab .flex_wrap span {
  display: none;
}
header .content_area .tab-container .tab.active {
  background: #000;
  width: calc(120% + 4px);
  color: #fff;
  position: relative;
  height: calc((100vh - 200px) / 3 - 15px);
}
@media only screen and (max-width: 900px) {
  header .content_area .tab-container .tab.active {
    height: calc((100vh - 200px) / 3 - 10px);
  }
}
header .content_area .tab-container .tab.active .flex_wrap span {
  display: block;
  font-size: 11px;
  color: #938355;
  line-height: 1em;
  letter-spacing: 0.3rem;
}
header .content_area .tab-container .tab.active::after {
  width: calc(100% - 15px);
  height: 0;
  display: block;
  position: absolute;
  left: 0;
  content: "";
  border-top: solid 15px #000;
  border-left: solid 15px transparent;
  top: 100%;
}
@media only screen and (max-width: 900px) {
  header .content_area .tab-container .tab.active::after {
    width: calc(100% - 10px);
    border-top: solid 10px #000;
    border-left: solid 10px transparent;
  }
}
header .content_area .content-container .content {
  display: none; /*必須*/
}
header .content_area .content-container .content.show {
  display: block; /*必須*/
}
header .content_area .content-container .content.show .slider {
  aspect-ratio: 1.6/1;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider {
    aspect-ratio: unset;
  }
}
header .content_area .content-container .content.show .slider.slide01 .slick-slide:first-of-type {
  background: url(../images/room/slide01_01.jpg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide01 .slick-slide:first-of-type {
    background-size: cover;
    background-position-x: center;
    background-position-y: -142px;
  }
}
header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(2) {
  background: url(../images/room/slide01_02.jpg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(2) {
    background-size: cover;
    background-position-x: center;
    background-position-y: -142px;
  }
}
header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(3) {
  background: url(../images/room/slide01_03.jpg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(3) {
    background-size: cover;
    background-position-x: center;
    background-position-y: -142px;
  }
}
header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(4) {
  background: url(../images/room/slide01_04.jpg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(4) {
    background-size: cover;
    background-position-x: center;
    background-position-y: -142px;
  }
}
header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(5) {
  background: url(../images/room/slide01_05.jpg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(5) {
    background-size: cover;
    background-position-x: center;
    background-position-y: -142px;
  }
}
header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(6) {
  background: url(../images/room/slide01_06.jpg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(6) {
    background-size: cover;
    background-position-x: center;
    background-position-y: -142px;
  }
}
header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(7) {
  background: url(../images/room/slide01_07.jpg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(7) {
    background-size: cover;
    background-position-x: center;
    background-position-y: -142px;
  }
}
header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(8) {
  background: url(../images/room/slide01_08.jpg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(8) {
    background-size: cover;
    background-position-x: center;
    background-position-y: -142px;
  }
}
header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(9) {
  background: url(../images/room/slide01_09.jpg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(9) {
    background-size: cover;
    background-position-x: center;
    background-position-y: -142px;
  }
}
header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(10) {
  background: url(../images/room/slide01_10.jpg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(10) {
    background-size: cover;
    background-position-x: center;
    background-position-y: -142px;
  }
}
header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(11) {
  background: url(../images/room/slide01_11.jpg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(11) {
    background-size: cover;
    background-position-x: center;
    background-position-y: -142px;
  }
}
header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(12) {
  background: url(../images/room/slide01_12.jpg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(12) {
    background-size: cover;
    background-position-x: center;
    background-position-y: -142px;
  }
}
header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(13) {
  background: url(../images/room/slide01_13.jpg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(13) {
    background-size: cover;
    background-position-x: center;
    background-position-y: -142px;
  }
}
header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(14) {
  background: url(../images/room/slide01_14.jpg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide01 .slick-slide:nth-of-type(14) {
    background-size: cover;
    background-position-y: -142px;
    background-position-x: center;
  }
}
header .content_area .content-container .content.show .slider.slide02 .slick-slide:first-of-type {
  background: url(../images/dish/slide02_01.jpg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide02 .slick-slide:first-of-type {
    background: url(../images/dish/slide02_01_sp.jpg) no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: 0;
  }
}
header .content_area .content-container .content.show .slider.slide02 .slick-slide:nth-of-type(2) {
  background: url(../images/dish/slide02_02.jpg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide02 .slick-slide:nth-of-type(2) {
    background: url(../images/dish/slide02_02_sp.jpg) no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: 0;
  }
}
header .content_area .content-container .content.show .slider.slide02 .slick-slide:nth-of-type(3) {
  background: url(../images/dish/slide02_03.jpg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide02 .slick-slide:nth-of-type(3) {
    background: url(../images/dish/slide02_03_sp.jpg) no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: 0;
  }
}
header .content_area .content-container .content.show .slider.slide02 figure .place p {
  margin-bottom: 60px;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide02 figure .place p {
    margin-bottom: 30px;
  }
}
header .content_area .content-container .content.show .slider.slide03 ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  margin: 0;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide03 ul {
    width: 92%;
  }
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide03 ul {
    flex-direction: column;
  }
}
header .content_area .content-container .content.show .slider.slide03 ul li {
  width: calc((100% - 78px) / 3);
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide03 ul li {
    width: 100%;
  }
}
header .content_area .content-container .content.show .slider.slide03 ul li a {
  display: block;
  width: 60%;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide03 ul li a {
    width: 24%;
  }
}
@media only screen and (max-width: 450px) {
  header .content_area .content-container .content.show .slider.slide03 ul li a {
    width: 100%;
  }
}
header .content_area .content-container .content.show .slider.slide03 ul li a img {
  width: 100%;
  height: auto;
}
header .content_area .content-container .content.show .slider.slide03 ul li a img.pc {
  display: block;
}
header .content_area .content-container .content.show .slider.slide03 ul li a img.sp {
  display: none;
}
@media only screen and (max-width: 450px) {
  header .content_area .content-container .content.show .slider.slide03 ul li a img.pc {
    display: none;
  }
  header .content_area .content-container .content.show .slider.slide03 ul li a img.sp {
    display: block;
  }
}
header .content_area .content-container .content.show .slider.slide03 ul li a:hover {
  opacity: 0.9;
}
header .content_area .content-container .content.show .slider.slide03 ul li:first-child {
  background: url(../images/place/bg_toya.jpg);
  background-size: cover;
  background-position-x: 50%;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide03 ul li:first-child {
    background: url(../images/place/bg_toya_sp.jpg);
    background-size: cover;
    background-position-x: 50%;
    background-position-y: top;
  }
}
header .content_area .content-container .content.show .slider.slide03 ul li:nth-child(2) {
  background: url(../images/place/bg_nobo.jpg);
  background-size: cover;
  background-position-x: 50%;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide03 ul li:nth-child(2) {
    background: url(../images/place/bg_nobo_sp.jpg);
    background-size: cover;
    background-position-x: 50%;
    background-position-y: top;
  }
}
header .content_area .content-container .content.show .slider.slide03 ul li:nth-child(3) {
  background: url(../images/place/bg_mili.jpg);
  background-size: cover;
  background-position-x: 50%;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider.slide03 ul li:nth-child(3) {
    background: url(../images/place/bg_mili_sp.jpg);
    background-size: cover;
    background-position-x: 50%;
    background-position-y: top;
  }
}
header .content_area .content-container .content.show .slider figure {
  width: 18%;
  min-width: 218px;
  background: #000;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 15%;
  padding: 54px 0 54px 30px;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider figure {
    height: 182px;
    width: 92%;
    left: 0;
    padding: 30px;
  }
}
@media only screen and (max-width: 450px) {
  header .content_area .content-container .content.show .slider figure {
    padding: 10px;
  }
}
header .content_area .content-container .content.show .slider figure::before {
  width: calc(100% - 15px);
  height: 0;
  display: block;
  position: absolute;
  left: 0;
  content: "";
  border-bottom: solid 15px #000;
  border-left: solid 15px transparent;
  bottom: 100%;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider figure::before {
    content: none;
  }
}
header .content_area .content-container .content.show .slider figure.toya {
  background: url(../images/fig_map_toya.svg) #000;
  background-repeat: no-repeat;
  background-size: calc(100% - 30px);
  background-position-x: 100%;
  background-position-y: 0%;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider figure.toya {
    background: url(../images/fig_map_toya_sp.svg) #000;
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: 0;
    background-position-y: 0%;
  }
}
header .content_area .content-container .content.show .slider figure.nobo {
  background: url(../images/fig_map_nobo.svg) #000;
  background-repeat: no-repeat;
  background-size: calc(100% - 30px);
  background-position-x: 100%;
  background-position-y: 0%;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider figure.nobo {
    background: url(../images/fig_map_nobo_sp.svg) #000;
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: 0;
    background-position-y: 0%;
  }
}
header .content_area .content-container .content.show .slider figure.mili {
  background: url(../images/fig_map_mili.svg) #000;
  background-repeat: no-repeat;
  background-size: calc(100% - 30px);
  background-position-x: 100%;
  background-position-y: 0%;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider figure.mili {
    background: url(../images/fig_map_mili_sp.svg) #000;
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: 0;
    background-position-y: 0%;
  }
}
header .content_area .content-container .content.show .slider figure span {
  color: #938355;
  font-size: 57px;
  font-family: adobe-garamond-pro, serif;
  margin-bottom: 63%;
  display: block;
}
@media only screen and (max-width: 1920px) {
  header .content_area .content-container .content.show .slider figure span {
    margin-bottom: 53%;
  }
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider figure span {
    display: inline-block;
    float: left;
    margin-right: 20px;
    padding: 10px;
  }
}
header .content_area .content-container .content.show .slider figure .place h4 {
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #938355;
  display: inline-block;
  padding-bottom: 5px;
  letter-spacing: 0.3em;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider figure .place h4 {
    font-size: 20px;
    margin: 0 0 5px 0;
    padding-bottom: 0;
  }
}
header .content_area .content-container .content.show .slider figure .place p {
  font-size: 14px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider figure .place p {
    margin-top: 0;
  }
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider figure .btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
header .content_area .content-container .content.show .slider figure .btn .btn_detail,
header .content_area .content-container .content.show .slider figure .btn .btn_reserve {
  font-size: 13.2px;
  display: block;
  width: calc(100% - 30px);
  margin: 0 0 17px;
  padding: 10px 20px;
  position: relative;
  text-decoration: none;
  color: #000;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider figure .btn .btn_detail,
  header .content_area .content-container .content.show .slider figure .btn .btn_reserve {
    padding: 0 15px;
    margin: 0;
    font-size: 11.2px;
  }
}
header .content_area .content-container .content.show .slider figure .btn .btn_detail::after,
header .content_area .content-container .content.show .slider figure .btn .btn_reserve::after {
  content: url(../images/to_site_arrow_b.svg);
  width: 20px;
  height: 6px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 2px);
  right: 20px;
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider figure .btn .btn_detail::after,
  header .content_area .content-container .content.show .slider figure .btn .btn_reserve::after {
    right: 10px;
    width: 15px;
  }
}
header .content_area .content-container .content.show .slider figure .btn .btn_detail:hover,
header .content_area .content-container .content.show .slider figure .btn .btn_reserve:hover {
  opacity: 0.8;
}
header .content_area .content-container .content.show .slider figure .btn .btn_detail {
  background-color: #fff;
}
header .content_area .content-container .content.show .slider figure .btn .btn_reserve {
  background-color: #938355;
}
header .content_area .content-container .content.show .slider .gallery-list {
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  gap: 10px;
  width: calc(100% - 78px);
}
@media only screen and (max-width: 900px) {
  header .content_area .content-container .content.show .slider .gallery-list {
    width: 92%;
    bottom: 182px;
  }
}
header .content_area .content-container .content.show .slider .gallery-list li {
  width: -moz-fit-content;
  width: fit-content;
}
header .content_area .content-container .content.show .slider .gallery-list li a img {
  width: 66px;
}
header .content_area .content-container .content.show .slider .prev-arrow,
header .content_area .content-container .content.show .slider .next-arrow {
  content: "";
  background: url(../images/arrow_r.svg);
  width: 27px;
  height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 20px);
  z-index: 10;
}
header .content_area .content-container .content.show .slider .prev-arrow {
  transform: rotate(180deg);
  margin-right: 20px;
  left: 20px;
}
header .content_area .content-container .content.show .slider .next-arrow {
  right: calc(6.5% + 20px);
}
@media only screen and (max-width: 1200px) {
  header .content_area .content-container .content.show .slider .next-arrow {
    right: 100px;
  }
}

.modaal-container {
  position: relative;
}
.modaal-container #modaal-close {
  right: calc(50% - 100px);
  top: calc(50% + 223px);
  color: #000;
  width: 200px;
  height: auto;
  position: absolute;
}
@media only screen and (max-width: 900px) {
  .modaal-container #modaal-close {
    top: auto;
    bottom: 38px;
  }
}
.modaal-container #modaal-close span {
  height: auto !important;
  width: 200px !important;
  display: block;
  clip: unset;
  color: #fff;
}
.modaal-container #modaal-close::before, .modaal-container #modaal-close::after {
  content: none;
}

@media only screen and (max-width: 900px) {
  .modaal-gallery-control::after {
    margin: 1px 0 0;
  }
  .modaal-gallery-next.modaal-gallery-control::before, .modaal-gallery-next.modaal-gallery-control::after {
    top: 12px;
    left: 16px;
    width: 2px;
    height: 10px;
  }
  .modaal-gallery-control {
    bottom: 10px;
    width: 30px;
    height: 30px;
  }
  .modaal-gallery-prev::before, .modaal-gallery-prev::after {
    left: 13px;
  }
  .modaal-gallery-prev.modaal-gallery-control::before, .modaal-gallery-prev.modaal-gallery-control::after {
    top: 8px;
    width: 2px;
    height: 10px;
  }
  .modaal-gallery-prev::after {
    margin: -1px 0 0;
  }
}
#sec01,
#sec02,
#sec03,
#sec04,
#sec05,
#sec06 {
  width: 93.5%;
}
@media only screen and (max-width: 1200px) {
  #sec01,
  #sec02,
  #sec03,
  #sec04,
  #sec05,
  #sec06 {
    width: calc(100% - 78px);
  }
}

#sec01 {
  padding: 150px 0 90px;
}
@media only screen and (max-width: 900px) {
  #sec01 {
    width: 92%;
    padding: 60px 0;
  }
}
#sec01 .flex_wrap {
  writing-mode: vertical-rl;
  margin: 0 auto;
  padding: 0 160px;
  width: 100%;
  max-width: 1550px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-direction: column;
}
@media only screen and (max-width: 1200px) {
  #sec01 .flex_wrap {
    padding: 0 100px;
  }
}
@media only screen and (max-width: 900px) {
  #sec01 .flex_wrap {
    writing-mode: horizontal-tb;
    padding: 0;
    width: 80%;
    margin: 0 auto;
    align-items: center;
  }
}
#sec01 .flex_wrap h2 {
  line-height: 2em;
  letter-spacing: 0.3em;
  font-size: clamp(1.5rem, 1.25vw + 0.8rem, 3.2rem);
  margin-right: 0;
  position: relative;
}
#sec01 .flex_wrap h2 p {
  position: relative;
  margin: 0 10px;
}
#sec01 .flex_wrap h2 p:first-of-type span {
  letter-spacing: 0.3em;
  background: #897a4c;
  width: 1px;
  height: 4.8em;
  position: absolute;
  top: 0;
  right: -1px;
}
#sec01 .flex_wrap h2 p:nth-of-type(2) span {
  letter-spacing: 0.3em;
  background: #897a4c;
  width: 1px;
  height: 10.24em;
  position: absolute;
  top: 0;
  right: -1px;
}
#sec01 .flex_wrap h2 p:last-of-type span {
  letter-spacing: 0.3em;
  background: #897a4c;
  width: 1px;
  height: 4.32em;
  position: absolute;
  top: 0;
  right: -1px;
}
@media only screen and (max-width: 900px) {
  #sec01 .flex_wrap h2 {
    writing-mode: vertical-rl;
    margin: 0;
  }
}
#sec01 .flex_wrap div {
  line-height: 2.8em;
  letter-spacing: 0.15em;
  font-size: clamp(0.2rem, 0.5vw + 0.6rem, 1.4rem);
}
@media only screen and (max-width: 900px) {
  #sec01 .flex_wrap div {
    writing-mode: horizontal-tb;
    line-height: 2em;
    margin-top: 30px;
    font-size: clamp(0.2rem, 0.5vw + 0.7rem, 1.4rem);
    text-align: justify;
  }
}

#sec02,
#sec03,
#sec04 {
  background: #938355;
  position: relative;
  margin-bottom: 160px;
  padding-bottom: 10%;
  width: calc(100% - 158px);
}
@media only screen and (max-width: 900px) {
  #sec02,
  #sec03,
  #sec04 {
    width: calc(92% - 60px);
    padding-bottom: 0;
    margin-bottom: 130px;
  }
}
@media only screen and (max-width: 450px) {
  #sec02,
  #sec03,
  #sec04 {
    width: calc(92% - 20px);
  }
}
#sec02 .flex_wrap,
#sec03 .flex_wrap,
#sec04 .flex_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  padding: 70px 100px 50px 160px;
}
@media only screen and (max-width: 900px) {
  #sec02 .flex_wrap,
  #sec03 .flex_wrap,
  #sec04 .flex_wrap {
    padding: 60px 40px 0 40px;
    flex-direction: column;
  }
}
#sec02 .flex_wrap div,
#sec03 .flex_wrap div,
#sec04 .flex_wrap div {
  color: #000;
}
@media only screen and (max-width: 900px) {
  #sec02 .flex_wrap div,
  #sec03 .flex_wrap div,
  #sec04 .flex_wrap div {
    order: 2;
  }
}
#sec02 .flex_wrap div h3,
#sec03 .flex_wrap div h3,
#sec04 .flex_wrap div h3 {
  position: relative;
  color: #fff;
  font-size: clamp(1.8rem, 1.6vw + 1rem, 3.2rem);
  margin: 0 0 40px;
}
@media only screen and (max-width: 900px) {
  #sec02 .flex_wrap div h3,
  #sec03 .flex_wrap div h3,
  #sec04 .flex_wrap div h3 {
    writing-mode: vertical-rl;
    position: absolute;
    right: 20px;
    top: 140px;
  }
}
#sec02 .flex_wrap div h3 span,
#sec03 .flex_wrap div h3 span,
#sec04 .flex_wrap div h3 span {
  writing-mode: vertical-rl;
  position: absolute;
  top: 5px;
  left: -60px;
  color: #fff;
  font-size: clamp(1rem, 0.5vw + 0.8rem, 1.8rem);
  border-left: 1px solid #fff;
}
@media only screen and (max-width: 900px) {
  #sec02 .flex_wrap div h3 span,
  #sec03 .flex_wrap div h3 span,
  #sec04 .flex_wrap div h3 span {
    top: -140px;
    left: calc(50% - 14px);
    padding-top: 20px;
  }
}
#sec02 .flex_wrap h4,
#sec03 .flex_wrap h4,
#sec04 .flex_wrap h4 {
  writing-mode: vertical-rl;
  font-size: clamp(1rem, 1vw + 1rem, 2.2rem);
  line-height: 2em;
  margin: 0;
  font-weight: 500;
}
@media only screen and (max-width: 900px) {
  #sec02 .flex_wrap h4,
  #sec03 .flex_wrap h4,
  #sec04 .flex_wrap h4 {
    writing-mode: horizontal-tb;
    order: 1;
    margin-bottom: 20px;
  }
}
#sec02 .carousel,
#sec03 .carousel,
#sec04 .carousel {
  width: 57.8%;
  position: absolute;
  right: -80px;
  bottom: -6rem;
}
@media only screen and (max-width: 900px) {
  #sec02 .carousel,
  #sec03 .carousel,
  #sec04 .carousel {
    right: 0;
    width: 120%;
    position: relative;
    bottom: auto;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 450px) {
  #sec02 .carousel,
  #sec03 .carousel,
  #sec04 .carousel {
    width: 130%;
  }
}
#sec02 .carousel ul,
#sec03 .carousel ul,
#sec04 .carousel ul {
  margin: 0;
}
#sec02 .carousel .slick-slide,
#sec03 .carousel .slick-slide,
#sec04 .carousel .slick-slide {
  height: auto;
}
#sec02 .carousel .slick-slide img,
#sec03 .carousel .slick-slide img,
#sec04 .carousel .slick-slide img {
  width: 100%;
}
@media only screen and (max-width: 900px) {
  #sec02 .carousel .slick-slide,
  #sec03 .carousel .slick-slide,
  #sec04 .carousel .slick-slide {
    padding-bottom: 30px;
  }
}
#sec02 .carousel .slick-dots,
#sec03 .carousel .slick-dots,
#sec04 .carousel .slick-dots {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: absolute;
  left: -65%;
  bottom: 0;
  margin: 0;
}
@media only screen and (max-width: 900px) {
  #sec02 .carousel .slick-dots,
  #sec03 .carousel .slick-dots,
  #sec04 .carousel .slick-dots {
    position: absolute;
    width: 90%;
    left: 0;
    margin: 10px 0;
    bottom: -100px;
  }
}
@media only screen and (max-width: 450px) {
  #sec02 .carousel .slick-dots,
  #sec03 .carousel .slick-dots,
  #sec04 .carousel .slick-dots {
    position: absolute;
    width: 90%;
    left: 0;
    margin: 10px 0;
    bottom: -50px;
  }
}
#sec02 .carousel .slick-dots li,
#sec03 .carousel .slick-dots li,
#sec04 .carousel .slick-dots li {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #000;
}
#sec02 .carousel .slick-dots li img,
#sec03 .carousel .slick-dots li img,
#sec04 .carousel .slick-dots li img {
  width: 100%;
}
#sec02 .carousel .slick-dots li.slick-active img,
#sec03 .carousel .slick-dots li.slick-active img,
#sec04 .carousel .slick-dots li.slick-active img {
  opacity: 0.4;
}

#sec03 {
  background: #000;
  margin-left: 80px;
}
@media only screen and (max-width: 900px) {
  #sec03 {
    width: calc(92% - 60px);
    margin-left: 60px;
  }
}
@media only screen and (max-width: 450px) {
  #sec03 {
    width: calc(92% - 20px);
    margin-left: 20px;
  }
}
#sec03 .flex_wrap {
  padding: 70px 160px 50px 100px;
}
@media only screen and (max-width: 900px) {
  #sec03 .flex_wrap {
    padding: 60px 20px 0 70px;
  }
}
#sec03 .flex_wrap div {
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#sec03 .flex_wrap div h3 {
  color: #938355;
}
@media only screen and (max-width: 900px) {
  #sec03 .flex_wrap div h3 {
    right: auto;
    left: 20px;
  }
}
#sec03 .flex_wrap div h3 span {
  top: 5px;
  right: -60px;
  left: auto;
}
@media only screen and (max-width: 900px) {
  #sec03 .flex_wrap div h3 span {
    top: -140px;
    right: calc(50% - 14px);
    padding-top: 20px;
  }
}
#sec03 .flex_wrap h4 {
  color: #fff;
}
#sec03 .carousel {
  right: auto;
  left: -80px;
}
@media only screen and (max-width: 900px) {
  #sec03 .carousel {
    left: -60px;
    width: 100%;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 450px) {
  #sec03 .carousel {
    left: -20px;
    width: 100%;
    margin-top: 50px;
  }
}
#sec03 .carousel .slick-dots {
  left: auto;
  right: -65%;
}
@media only screen and (max-width: 900px) {
  #sec03 .carousel .slick-dots {
    width: 95%;
    right: 0;
    left: 60px;
    position: absolute;
    bottom: -100px;
  }
}
@media only screen and (max-width: 450px) {
  #sec03 .carousel .slick-dots {
    width: 95%;
    right: 0;
    left: 20px;
    bottom: -80px;
  }
}

#sec04 {
  padding-bottom: 11%;
}
@media only screen and (max-width: 1300px) {
  #sec04 {
    padding-bottom: 9%;
  }
}
@media only screen and (max-width: 900px) {
  #sec04 {
    padding-bottom: 0;
  }
}
#sec04 .flex_wrap {
  padding: 70px 100px 0 160px;
}
@media only screen and (max-width: 900px) {
  #sec04 .flex_wrap {
    padding: 60px 40px 0 40px;
  }
}
#sec04 .carousel {
  bottom: -9rem;
}
@media only screen and (max-width: 1300px) {
  #sec04 .carousel {
    bottom: -8rem;
  }
}
@media only screen and (max-width: 900px) {
  #sec04 .carousel {
    bottom: 0;
    width: 110%;
    right: -40px;
  }
}
@media only screen and (max-width: 450px) {
  #sec04 .carousel {
    bottom: 0;
    width: 95%;
    right: -40px;
  }
}
#sec04 .carousel .slick-slide {
  font-size: clamp(0.18rem, 0.25vw + 0.5rem, 1.2rem);
}
@media only screen and (max-width: 900px) {
  #sec04 .carousel .slick-slide {
    font-size: clamp(0.4rem, 0.7vw + 0.5rem, 1.2rem);
    line-height: 1rem;
  }
  #sec04 .carousel .slick-slide img {
    margin-bottom: 5px;
  }
}
#sec04 .carousel .slick-dots {
  bottom: 2.5rem;
}
@media only screen and (max-width: 900px) {
  #sec04 .carousel .slick-dots {
    width: 70%;
    bottom: -100px;
    position: absolute;
    left: auto;
    right: 15%;
  }
}
@media only screen and (max-width: 450px) {
  #sec04 .carousel .slick-dots {
    width: 80%;
    bottom: -60px;
    position: absolute;
    left: auto;
    right: 8%;
  }
}

#sec04-2 {
  width: calc(100% - 78px);
  margin-bottom: 80px;
}
@media only screen and (max-width: 900px) {
  #sec04-2 {
    width: 92%;
  }
}
#sec04-2 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  max-width: 1550px;
  margin: 0 auto;
}
@media only screen and (max-width: 900px) {
  #sec04-2 ul {
    flex-direction: column;
    gap: 20px;
  }
}
#sec04-2 ul li {
  width: 30%;
  position: relative;
}
@media only screen and (max-width: 900px) {
  #sec04-2 ul li {
    width: 100%;
  }
}
#sec04-2 ul li a {
  color: #fff;
  font-size: clamp(0.18rem, 0.25vw + 0.5rem, 1.2rem);
  padding: 0 20px;
  text-decoration: none;
  width: 100%;
  display: block;
}
@media only screen and (max-width: 900px) {
  #sec04-2 ul li a {
    font-size: clamp(0.2rem, 0.5vw + 0.7rem, 1.2rem);
    padding: 4px 20px;
  }
}
#sec04-2 ul li::after {
  content: "";
  background: url(../images/to_site_arrow.svg);
  width: 22px;
  height: 5px;
  position: absolute;
  top: calc(50% - 5px);
  right: 15px;
  background-size: contain;
  background-repeat: no-repeat;
}
#sec04-2 ul li:first-child {
  background: #231842;
}
#sec04-2 ul li:nth-child(2) {
  background: #574d2f;
}
#sec04-2 ul li:last-child {
  background: #591722;
}

#sec05 {
  width: calc(100% - 78px);
  background: #000;
  padding: 80px 50px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}
@media only screen and (max-width: 1300px) {
  #sec05 {
    padding: 50px;
  }
}
@media only screen and (max-width: 900px) {
  #sec05 {
    width: 92%;
    flex-direction: column;
    padding: 50px;
  }
}
@media only screen and (max-width: 450px) {
  #sec05 {
    width: 92%;
    flex-direction: column;
    padding: 30px 30px 30px;
  }
}
#sec05 h3 {
  margin-top: 0;
  font-size: clamp(1.2rem, 1vw + 1.2rem, 2rem);
  color: #938355;
}
@media only screen and (max-width: 900px) {
  #sec05 h3 {
    font-size: clamp(1.2rem, 4vw + 1.2rem, 2rem);
    line-height: 1.3em;
    text-align: center;
  }
}
#sec05 h3 span {
  font-size: clamp(0.18rem, 0.25vw + 0.5rem, 1.2rem);
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  padding: 0 5px;
  line-height: 1.5rem;
  margin-top: 5px;
}
@media only screen and (max-width: 900px) {
  #sec05 h3 span {
    font-size: clamp(0.18rem, 1vw + 0.5rem, 1.2rem);
  }
}
#sec05 div {
  color: #fff;
}
@media only screen and (max-width: 900px) {
  #sec05 div {
    text-align: justify;
  }
}
#sec05 .carousel {
  width: 54%;
}
@media only screen and (max-width: 900px) {
  #sec05 .carousel {
    width: 100%;
  }
}
#sec05 .carousel ul {
  margin: 0;
}
#sec05 .carousel .slick-slide {
  height: auto;
}
#sec05 .carousel .slick-slide img {
  width: 100%;
}
#sec05 .carousel .slick-dots {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: absolute;
  left: -85%;
  bottom: 0;
  margin: 0;
}
@media only screen and (max-width: 1300px) {
  #sec05 .carousel .slick-dots {
    position: relative;
    gap: 10px;
    left: auto;
    bottom: auto;
    margin-top: 10px;
    width: 100%;
  }
}
#sec05 .carousel .slick-dots li {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #000;
}
#sec05 .carousel .slick-dots li img {
  width: 100%;
}
#sec05 .carousel .slick-dots li.slick-active img {
  opacity: 0.4;
}

#sec06 {
  width: calc(100% - 78px);
  padding: 100px 0;
}
@media only screen and (max-width: 900px) {
  #sec06 {
    width: 92%;
  }
}
#sec06 div {
  position: relative;
  width: 90%;
  border: 1px solid #000;
  padding: 60px 100px;
  margin: 0 auto;
}
@media only screen and (max-width: 900px) {
  #sec06 div {
    width: 92%;
    padding: 60px 40px 40px 20px;
    margin: 0 -1px auto auto;
  }
}
#sec06 div::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  background: url(../images/sec06_corner.png);
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: cover;
}
#sec06 div h3 {
  position: absolute;
  writing-mode: vertical-rl;
  font-size: clamp(1rem, 1vw + 0.8rem, 1.8rem);
  line-height: 2em;
  margin: 0;
  background: #fff;
  top: -50px;
  left: 25px;
  padding-right: 20px;
}
#sec06 div h3 span {
  position: absolute;
  top: 3px;
  left: 2em;
  font-size: clamp(0.18rem, 0.25vw + 0.5rem, 1.2rem);
  line-height: 5em;
}
#sec06 div ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}
@media only screen and (max-width: 900px) {
  #sec06 div ul {
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
  }
}
#sec06 div ul li {
  width: 30%;
}
@media only screen and (max-width: 900px) {
  #sec06 div ul li {
    width: 100%;
    margin-bottom: 30px;
  }
  #sec06 div ul li:last-child {
    margin-bottom: 0;
  }
}
#sec06 div ul li h4 {
  margin-top: 0;
}
@media only screen and (max-width: 900px) {
  #sec06 div ul li h4 {
    text-align: right;
    margin-bottom: 5px;
    font-size: clamp(1rem, 1vw + 1rem, 2.2rem);
  }
}
#sec06 div ul li div {
  border: none;
  padding: 0;
  text-align: justify;
  letter-spacing: 0;
  margin: 0;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 1300px) {
  #sec06 div ul li div {
    line-height: 1.5rem;
    font-size: clamp(0.2rem, 0.5vw + 0.5rem, 1.4rem);
  }
}
@media only screen and (max-width: 900px) {
  #sec06 div ul li div {
    font-size: clamp(0.2rem, 0.5vw + 0.6rem, 1.4rem);
  }
}
#sec06 div ul li div::before {
  content: none;
}
#sec06 div ul li div span {
  font-size: 1em;
  text-align: left;
  display: block;
  margin-top: 1em;
  line-height: 1em;
}
@media only screen and (max-width: 900px) {
  #sec06 div ul li div span {
    font-size: clamp(0.18rem, 0.5vw + 0.8rem, 1.2rem);
  }
}
#sec06 div ul li div a {
  font-size: 0.8em;
  color: #000;
  line-height: 1.8em;
}
#sec06 div ul li img {
  width: 100%;
  margin-bottom: 10px;
}/*# sourceMappingURL=style.css.map */