@charset "UTF-8";
/* Foundation (まとめファイル) */
/* CSS Document */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
* {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/*要素のフォントサイズやマージン・パディングをリセットしています*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, p, q, samp,
small, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th,
section, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

body {
  font-size: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 400;
  width: 100%;
  height: 100%;
}

img {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  border: none;
  vertical-align: bottom;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
section, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, nav {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
ul,
li {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote, q {
  quotes: none;
}

a {
  outline: none;
  text-decoration: none;
  color: inherit;
}

a:focus {
  outline: none;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

.clearfix:after {
  content: "."; /* 新しい要素を作る */
  display: block; /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  /*min-height: 1px;*/
}

* html .clearfix {
  height: 1px;
  /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

/*box-sizingを全ブラウザに対応*/
*, *:before, *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

svg {
  width: 100%;
  height: 100%;
}

html {
  font-size: 62.5%; /* 16px × 62.5% = 10px → 1rem = 10px */
}

body {
  line-height: 1;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-style: normal;
  font-size: 1.6rem;
  font-feature-settings: "palt" 1;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 1025px) {
  body {
    font-size: 1.4rem;
  }
}

/* Layout */
.l_ctns {
  max-width: 800px;
  margin: 0 auto;
  display: block;
  width: 88%;
}

.l_inner {
  max-width: 1000px;
  width: 88%;
  margin: 0 auto;
  display: block;
}

.l_flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.__rowReverse {
  flex-direction: row-reverse;
}

.l_pc {
  display: block;
}
@media (max-width: 600px) {
  .l_pc {
    display: none;
  }
}

.l_sp {
  display: none;
}
@media (max-width: 600px) {
  .l_sp {
    display: block;
  }
}

.l_2clmn {
  justify-content: space-between;
}
.l_2clmn li {
  display: block;
  width: 48%;
}
@media (max-width: 600px) {
  .l_2clmn li {
    width: 90%;
  }
}
.l_2clmn-item {
  width: 49% !important;
}
@media (max-width: 600px) {
  .l_2clmn-item {
    width: 100% !important;
  }
}

.l_3clmn {
  justify-content: space-between;
}
.l_3clmn li {
  display: block;
  width: 31%;
}
@media (max-width: 600px) {
  .l_3clmn li {
    width: 100%;
  }
}

.l_4clmn {
  justify-content: space-between;
}
.l_4clmn li {
  display: block;
  width: 24%;
}
@media (max-width: 600px) {
  .l_4clmn li {
    width: 49%;
  }
}

/*フォントカラー*/
.l_clrBlack {
  color: black;
}

.l_clrWht {
  color: white;
}

.l_clrBrwn {
  color: #40220f;
}

/*グラデーションフォントカラー*/
.l_clrGrdtnGold {
  background: linear-gradient(to right, #59523b, #a79b77, #59523b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*背景カラー*/
.l_bgClrBlack {
  background-color: black;
}

.l_bgClrWhite {
  background-color: white;
}

/*背景グラデーションカラー*/
.l_bgGrdtnGold {
  background-image: linear-gradient(to right, #59523b, #a79b77, #59523b);
}

.l_bgGrdtnGold2 {
  background-image: linear-gradient(to right, #b79d62, #785029);
}

.l_bgGrdtnWhtGold45 {
  background-image: linear-gradient(45deg, #59523b, #a79b77, #59523b);
}

/*フォントシャドウ*/
.l_txtShadow {
  text-shadow: 4px 0px 3px black;
}

/*ボーダーグラデーション*/
.l_brdrGrdtnGold {
  border: 2px solid;
  -o-border-image: linear-gradient(to right, #59523b, #a79b77, #59523b) 1;
     border-image: linear-gradient(to right, #59523b, #a79b77, #59523b) 1;
}

/* Parts */
figure {
  position: relative;
}
figure figcaption {
  letter-spacing: 0.05rem;
  font-size: 1.1rem;
}
figure .p_fgcptnTopLeft {
  position: absolute;
  top: 5px;
  left: 5px;
}
figure .p_fgcptnLeft {
  position: absolute;
  bottom: 5px;
  left: 5px;
}
figure .p_fgcptnLeft-rspnsv {
  position: absolute;
  bottom: 5px;
  left: 5px;
}
@media (max-width: 600px) {
  figure .p_fgcptnLeft-rspnsv {
    left: auto;
    right: 5px;
  }
}
figure .p_fgcptnRight-out {
  display: block;
  text-align: right;
  margin: 5px 0 0;
}
figure .p_fgcptnRight {
  position: absolute;
  bottom: 5px;
  right: 5px;
}
figure .p_fgcptnRightBg {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px 10px;
}
figure .p_fgcptnRight-rspnsv {
  position: absolute;
  bottom: 5px;
  right: 5px;
}
@media (max-width: 600px) {
  figure .p_fgcptnRight-rspnsv {
    left: 5px;
    right: auto;
  }
}

.p_recommend {
  background-color: white;
  padding: 5rem 0;
}

.p_arrow {
  position: fixed;
  width: 20px;
  height: 150px;
  top: 10%;
  right: 3rem;
  z-index: 2;
  transition: 0.3s;
}
.p_arrow-scroll {
  display: block;
  width: 9px;
  height: 73px;
  transition: 0.3s;
}
.p_arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -15px;
  width: 100%;
  height: 114px;
  background-image: url("../images/common/arrow_black.svg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(0deg);
  transform-origin: top center;
  animation: verticalMaskAnim 3s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@media (max-width: 600px) {
  .p_arrow {
    display: none;
  }
}

.is-hidden {
  opacity: 0;
  transition: 0.3s;
}

@keyframes verticalMaskAnim {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  25% {
    clip-path: inset(0 0 0 0);
  }
  50% {
    clip-path: inset(0 0 0 0);
  }
  75% {
    clip-path: inset(100% 0 0 0);
  }
  100% {
    clip-path: inset(100% 0 0 0);
  }
}
.sa {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.sa--up {
  transform: translate(0, 20px);
}

.sa.show {
  opacity: 1;
  transform: none;
  animation-name: fadein;
  animation-delay: 0;
  animation-duration: 1.3s;
}

.p_txtCenter {
  text-align: center;
}

sup {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  top: -5px;
}

.p_mv {
  display: block;
  border-bottom: 20px solid black;
}
@media (max-width: 600px) {
  .p_mv {
    border-bottom: 15px solid black;
  }
}

.p_kv {
  display: block;
  border-top: 20px solid black;
  border-bottom: 20px solid black;
}
@media (max-width: 600px) {
  .p_kv {
    border-top: 15px solid black;
    border-bottom: 15px solid black;
  }
}

.p_lead {
  letter-spacing: 1px;
  margin-bottom: 4rem;
}
.p_lead h2 {
  line-height: 1.5;
  font-size: 2.5rem;
}
@media (max-width: 600px) {
  .p_lead h2 {
    font-size: 2rem;
  }
}
.p_lead h2 span {
  margin-left: auto;
  margin-right: auto;
}
.p_lead p {
  display: block;
  line-height: 1.7;
  margin-top: 3rem;
  font-size: 1.4rem;
}

/* Component */
.header {
  position: fixed;
  z-index: 10;
  transition: 0.3s;
  width: 100%;
  height: 75px;
}
@media (max-width: 600px) {
  .header {
    height: 50px;
  }
}

.header_logo {
  position: fixed;
  top: 1.9rem;
  left: 3rem;
  z-index: 2;
  width: 100%;
  display: block;
  width: 443px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .header_logo {
    top: 15px;
    left: 9px;
    width: 250px;
  }
}

.navBtn {
  position: fixed;
  top: 2.4rem;
  right: 3rem;
  z-index: 4;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  display: flex;
  align-items: center;
  color: white;
}
@media (max-width: 600px) {
  .navBtn {
    top: 14px;
    right: 15px;
  }
}
.navBtn i {
  position: relative;
  display: block;
  width: 30px;
  height: 20px;
}
@media (max-width: 600px) {
  .navBtn i {
    width: 20px;
    height: 15px;
  }
}
.navBtn i span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: 0.3s;
}
.navBtn i span::before, .navBtn i span::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  position: absolute;
  transition: 0.3s;
}
.navBtn i span::before {
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
}
.navBtn i span::after {
  bottom: 0;
  left: 0;
}
.navBtn p {
  transition: 0.3s;
  font-size: 2rem;
  margin: 0 0 0 10px;
}
@media (max-width: 600px) {
  .navBtn p {
    font-size: 1.5rem;
  }
}

.header_nav {
  background-color: rgba(122, 106, 86, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3;
  right: -300px;
  width: 300px;
  height: auto;
  transition: 0.5s;
  overflow-y: scroll;
}
@media (max-width: 1025px) {
  .header_nav {
    right: -100%;
    width: 100%;
    height: 100dvh;
  }
}
@media (max-width: 600px) {
  .header_nav {
    top: 0;
  }
}
.header_nav-list {
  margin: 0 0 0 auto;
  padding: 10rem 0 2rem;
  width: 100%;
}
@media (max-width: 600px) {
  .header_nav-list {
    padding: 8rem 0 2rem;
  }
}
.header_nav-list li {
  display: block;
  border-bottom: 0.25px solid white;
  padding: 0 0 2rem;
  margin: 0 0 2rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 600px) {
  .header_nav-list li {
    padding: 0 0 1.5rem;
    margin: 0 0 1.5rem;
    font-size: 1rem;
  }
}
.header_nav-list li a {
  display: block;
  text-align: center;
  color: white;
  transition: 0.3s;
  font-size: 1.4rem;
}
.header_nav-list li a span {
  display: block;
  letter-spacing: 0.2rem;
  font-size: 2rem;
  margin: 0 0 0.8rem;
}
@media (max-width: 600px) {
  .header_nav-list li a {
    font-size: 1.3rem;
  }
  .header_nav-list li a span {
    font-size: 1.8rem;
  }
}
.header_nav-list li a:hover {
  opacity: 0.5;
}
.header_nav-list li:last-child {
  border-bottom: none;
  margin: 2rem 0 0;
}
.header_nav-list .new {
  position: relative;
}
.header_nav-list .new::after {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translate(-50%, 0);
  content: "NEW";
  display: block;
  background-color: #e60012;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 10px;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .header_nav-list .new::after {
    top: -1.5rem;
    left: 0;
    transform: translate(0, 0);
  }
}

.navBtn_close i span {
  width: 100%;
  background-color: transparent;
}
.navBtn_close i span::before, .navBtn_close i span::after {
  top: 50%;
  left: 50%;
  background-color: white;
}
.navBtn_close i span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.navBtn_close i span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.navBtn_close p {
  opacity: 0;
  display: none;
}

.nav_open {
  right: 0;
}

.hdrScroll, .hdrBg {
  background-color: black;
}

@media (max-width: 1025px) {
  .stopScroll {
    overflow: hidden;
  }
}

main {
  width: 100%;
  padding-top: 75px;
}
@media (max-width: 600px) {
  main {
    padding-top: 50px;
  }
}

.top, .plan, .map, .outline, .sttn, .rsdnc, .kmymlf, .acs {
  background-image: url("../images/common/bg.jpg");
  background-size: cover;
}
@media (max-width: 600px) {
  .top, .plan, .map, .outline, .sttn, .rsdnc, .kmymlf, .acs {
    background-image: url("../images/common/sp/bg.jpg");
  }
}

.top, .plan, .sttn, .rsdnc, .kmymlf, .acs {
  background-size: 100%;
  background-repeat: repeat-y;
}

.aside {
  display: block;
  line-height: 1.3;
  padding: 3rem 0 5rem;
  font-size: 1.2rem;
}

.footer_right {
  display: block;
  text-align: center;
  width: 100%;
  letter-spacing: 0.1rem;
  padding: 8rem 0 3rem;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .footer_right {
    padding: 1rem 0;
  }
}
.footer_contact {
  display: block;
  max-width: 760px;
  width: 90%;
  margin: 0 auto;
  padding: 4rem 0;
  font-size: 1.6rem;
}
.footer_contact-inner {
  justify-content: space-between;
}
.footer_contact-logo {
  font-size: 3rem;
  margin: 0.8rem 0 0;
}
@media (max-width: 600px) {
  .footer_contact-logo {
    text-align: center;
    width: 100%;
    font-size: 2.5rem;
    margin: 0 0 3rem;
  }
}
.footer_contact-tell-link {
  justify-content: space-between;
  align-items: center;
  font-size: 4.5rem;
}
.footer_contact-tell-link i {
  font-size: 4.5rem;
  margin: 0 1rem 0 0;
}
.footer_contact-tell-link p {
  line-height: 1.5;
  letter-spacing: 0.1rem;
  font-size: 1.5rem;
}
.footer_contact-tell small {
  line-height: 1.3;
  font-size: 0.95rem;
}
@media (max-width: 600px) {
  .footer_contact-tell {
    width: 100%;
  }
  .footer_contact-tell-link {
    justify-content: center;
    font-size: 4.2rem;
    margin: 0 0 1rem;
  }
  .footer_contact-tell-link i {
    font-size: 4.2rem;
    margin: 0 1rem 0 0;
  }
  .footer_contact-tell-link p {
    font-size: 1.5rem;
    margin: 0 0 1rem;
  }
  .footer_contact-tell small {
    line-height: 1.3;
    font-size: 1rem;
  }
}

/* Pages */
.top {
  padding: 0 0 10rem;
}
@media (max-width: 600px) {
  .top {
    padding: 0 0 5rem;
  }
}

.top_prmtn {
  text-align: center;
  color: white;
  background-color: black;
  padding: 2rem 0;
  font-size: 4rem;
}
@media (max-width: 600px) {
  .top_prmtn {
    line-height: 1.5;
    font-size: 2.5rem;
  }
}

.top_request {
  background-image: linear-gradient(to right, #f5da78, #c9b386, #b2946e);
  color: white;
  transition: 0.3s;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
  font-size: 4rem;
}
.top_request small {
  font-size: 2rem;
  position: relative;
  margin: 0 0 0 20px;
}
.top_request small::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url("../images/common/btn_01.svg");
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translate(0, -50%);
  transition: 0.6s;
}
.top_request:hover {
  opacity: 0.5;
}
.top_request:hover small::after {
  right: -50px;
}
@media (max-width: 600px) {
  .top_request {
    font-size: 2rem;
  }
  .top_request small {
    font-size: 1.3rem;
    margin: 0 0 0 10px;
    padding: 0 20px 0 0;
  }
  .top_request small::after {
    width: 20px;
    height: 20px;
    right: -10px;
  }
  .top_request:hover small::after {
    right: -20px;
  }
}

.top_point {
  padding: 4rem 0 8rem;
}
.top_point-list {
  justify-content: space-between;
  align-items: stretch;
}
.top_point-list-item {
  justify-content: center;
  align-items: center;
  background-color: rgba(212, 202, 180, 0.7);
  color: #40220f;
  text-align: center;
  letter-spacing: 0.1rem;
  width: 49.5%;
  font-size: 2.5rem;
  margin: 1rem 0 0;
}
.top_point-list-item:first-child {
  background-image: linear-gradient(to bottom, #604c3f, #a48b78, #604c3f);
  color: white;
  width: 100%;
  margin: 0;
}
.top_point-list-item-txt {
  justify-content: center;
  align-items: center;
}
.top_point-list-item p {
  display: block;
  padding: 1.5rem 0;
}
.top_point-list-item p b {
  font-weight: 400;
  font-size: 4rem;
}
.top_point-list-item p span {
  font-size: 1.5rem;
}
.top_point small {
  display: block;
  line-height: 1.3;
  margin: 20px 0 0;
  font-size: 1.2rem;
}
@media (max-width: 600px) {
  .top_point {
    padding: 3rem 0 5rem;
  }
  .top_point-list-item {
    width: 100%;
    font-size: 1.8rem;
    margin: 1rem 0 0;
  }
  .top_point-list-item:first-child {
    line-height: 1.5;
  }
  .top_point-list-item p {
    padding: 1.5rem 0;
  }
  .top_point-list-item p b {
    font-size: 3rem;
  }
  .top_point-list-item p span {
    font-size: 1.2rem;
  }
  .top_point small {
    font-size: 1rem;
  }
}

.top_info {
  margin: 4rem auto 0;
  padding: 20px 30px;
  height: 200px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .top_info {
    padding: 15px 20px;
    height: 300px;
  }
}
.top_info-ttl {
  border-bottom: 2px solid #d4cab4;
  letter-spacing: 0.5px;
  padding: 0 0 10px;
  margin: 0 0 20px;
  font-size: 2.4rem;
}
@media (max-width: 600px) {
  .top_info-ttl {
    font-size: 2rem;
  }
}
.top_info-list {
  overflow-y: scroll;
}
.top_info-list li {
  display: block;
  margin: 0 0 10px;
}
.top_info-list dl {
  justify-content: space-between;
  line-height: 1.5;
}
.top_info-list dl dt {
  position: relative;
  align-items: center;
  padding-left: 60px;
}
@media (max-width: 600px) {
  .top_info-list dl dt {
    margin: 0 0 5px;
    padding-left: 0;
  }
}
.top_info-list dl dt span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  display: block;
  background-color: #e60012;
  color: white;
  padding: 1px 10px;
  font-size: 12px;
}
@media (max-width: 600px) {
  .top_info-list dl dt span {
    position: inherit;
    padding: 1px 8px;
    font-size: 10px;
    top: auto;
    left: auto;
    transform: translate(0, 0);
    margin-right: 10px;
  }
}
.top_info-list dl dd {
  display: block;
  width: calc(100% - 160px);
}
@media (max-width: 600px) {
  .top_info-list dl dd {
    width: 100%;
  }
}

.top_ctns {
  margin: 0 auto 8rem;
}
.top_ctns:last-of-type {
  margin: 0 auto 4rem;
}
@media (max-width: 600px) {
  .top_ctns {
    margin: 0 auto 4rem;
  }
  .top_ctns:last-of-type {
    margin: 0 auto 2rem;
  }
}
.top_ctns-kv {
  border-top: 20px solid black;
  border-bottom: 20px solid black;
}
@media (max-width: 600px) {
  .top_ctns-kv {
    border-top: 10px solid black;
    border-bottom: 10px solid black;
  }
}
.top_ctns-list {
  border-bottom: 10px solid black;
}
.top_ctns-list li {
  display: block;
  width: 33.3333333333%;
  font-size: 1.5rem;
}
@media (max-width: 600px) {
  .top_ctns-list li {
    width: 100%;
  }
}
.top_ctns-list li figure {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
}
.top_ctns-list li figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 600px) {
  .top_ctns-list li figure {
    aspect-ratio: 2/1;
  }
}
.top_ctns-list-txt {
  line-height: 1.8;
  padding: 3rem 0 0;
  margin: 0 auto 2rem;
  width: 90%;
}
.top_ctns-list-txt p {
  display: block;
  letter-spacing: -0.3px;
  margin: 0 auto 2rem;
}
.top_ctns-btn {
  position: relative;
  display: flex;
  justify-content: center;
  color: white;
  text-align: center;
  cursor: pointer;
  background-image: linear-gradient(to right, #59523b, #a79b77, #59523b);
  width: 100%;
  font-size: 1.4rem;
  padding: 1rem 0;
  margin: 0 0 1rem;
  transition: 0.3s;
}
.top_ctns-btn:last-of-type {
  margin: 0;
}
.top_ctns-btn::before, .top_ctns-btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: white;
}
.top_ctns-btn::before {
  top: 3px;
}
.top_ctns-btn::after {
  bottom: 3px;
}
.top_ctns-btn span {
  position: relative;
  text-align: center;
  padding: 0 20px 0 0;
}
.top_ctns-btn span::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../images/common/btn_01.svg");
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translate(0, -50%);
  transition: 0.3s;
}
.top_ctns-btn:hover {
  opacity: 0.5;
}
.top_ctns-btn:hover span::after {
  right: -20px;
}
.top_ctns .__nopage {
  cursor: auto;
  pointer-events: none;
}
.top_ctns .__nopage span {
  opacity: 0.3;
}

.top_mv {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3/2;
}
@media (max-width: 600px) {
  .top_mv {
    aspect-ratio: 1/1.5;
  }
}
.top_mv-img {
  display: block;
  width: 100%;
  height: 100%;
}
.top_mv-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.top_mv-caption {
  display: block;
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 12px;
}
@media (max-width: 600px) {
  .top_mv-caption {
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
    right: 0;
    padding: 5px 5px 5px 10px;
  }
}
.top_mv-copy {
  display: block;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 560px;
}
@media (max-width: 600px) {
  .top_mv-copy {
    top: 10%;
    width: 90%;
  }
}
.top_mv-txt {
  display: none;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 70%;
}
@media (max-width: 600px) {
  .top_mv-txt {
    display: block;
    top: 35%;
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
    left: auto;
  }
  100% {
    transform: scale(1.4);
    left: 0;
  }
}
@media (max-width: 600px) {
  @keyframes zoomIn {
    0% {
      transform: scale(1);
      left: auto;
    }
    100% {
      transform: scale(1.3);
      left: 0;
    }
  }
}
.rsdnc {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media (max-width: 600px) {
  .rsdnc {
    padding-bottom: 5rem;
  }
}

.rsdnc_enTtl {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 1px;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
}

.rsdnc_design-txt dd {
  display: block;
  line-height: 1.7;
  margin-top: -0.5rem;
  font-size: 1.4rem;
}
.rsdnc_design-inner {
  max-width: 1350px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5rem;
  container-type: inline-size;
  container-name: cards;
}
.rsdnc_design-list {
  position: relative;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 0 auto;
}
.rsdnc_design-list-txt {
  display: block;
  position: absolute;
  top: 0;
  left: 20%;
  transform: translate(-20%, 0);
  width: 30%;
  z-index: 2;
}
@container cards (max-width: 1340px) {
  .rsdnc_design-list-txt {
    width: 32%;
  }
}
@media (max-width: 1025px) {
  .rsdnc_design-list-txt {
    position: inherit;
    top: auto;
    left: auto;
    transform: translate(0, 0);
    width: 88%;
    margin: 0 auto;
  }
}
.rsdnc_design-list-txt-ctns:first-of-type {
  margin-bottom: 4rem;
}
.rsdnc_design-list-txt-ctns dl dd {
  line-height: 1.7;
  font-size: 1.4rem;
}
.rsdnc_design-list-txt-ctns dl dd i {
  display: block;
  margin: 0 0 1rem;
}
.rsdnc_design-list-txt-ctns figure {
  margin-top: 1.5rem;
}
.rsdnc_design-list-txt-ctns p {
  padding: 1.5rem 0;
  margin-top: 1.5rem;
  font-size: 2.5rem;
}
.rsdnc_design-list-img {
  display: block;
  margin: 0 0 0 auto;
  width: 883px;
}
@container cards (max-width: 1340px) {
  .rsdnc_design-list-img {
    width: 70%;
  }
}
@media (max-width: 1025px) {
  .rsdnc_design-list-img {
    width: 100%;
    margin: 3rem auto 0;
  }
}

.rsdnc_area {
  padding-bottom: 8rem;
}
.rsdnc_area-img {
  display: block;
  margin-bottom: 4rem;
}

.rsdnc_plan-ctns {
  padding: 5rem 0 8rem;
}
.rsdnc_plan-list {
  margin: 0 0 2rem;
}
.rsdnc_plan-list li {
  display: block;
  width: 50%;
}
@media (max-width: 1025px) {
  .rsdnc_plan-list li {
    width: 100%;
  }
}
.rsdnc_plan-ev {
  justify-content: center;
  align-items: center;
  margin: 0 0 8rem;
}
.rsdnc_plan-ev dt {
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  margin-right: 2rem;
  font-size: 2rem;
}
@media (max-width: 1025px) {
  .rsdnc_plan-ev dt {
    font-size: 1.7rem;
    padding: 1rem 1.5rem;
    margin-right: 1.5rem;
  }
}
.rsdnc_plan-ev dd {
  line-height: 1.5;
}
.rsdnc_plan-comfort {
  margin: 8rem 0;
}
.rsdnc_plan-comfort-img {
  margin: 0 auto 3rem;
  width: 80%;
}
.rsdnc_plan-comfort-list {
  justify-content: space-between;
}
.rsdnc_plan-comfort-list li {
  display: block;
  width: 49%;
  margin: 0 0 1.5rem;
}
@media (max-width: 1025px) {
  .rsdnc_plan-comfort-list li {
    width: 100%;
  }
}
.rsdnc_plan-comfort-list li p {
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  width: 45%;
  font-size: 2.2rem;
}
@media (max-width: 1025px) {
  .rsdnc_plan-comfort-list li p {
    font-size: 1.8rem;
  }
}
.rsdnc_plan-comfort-list li figure {
  width: 55%;
}
.rsdnc_plan-planting-list {
  justify-content: space-between;
}
.rsdnc_plan-planting-list li {
  display: block;
  width: 24%;
  margin: 0 0 1.5rem;
}
@media (max-width: 1025px) {
  .rsdnc_plan-planting-list li {
    width: 48%;
  }
}
.rsdnc_plan-planting-list li p {
  font-size: 1.4rem;
  margin: 0.5rem 0 0;
}

.rsdnc_service-ctns {
  padding: 6rem 0;
}
.rsdnc_service-list {
  justify-content: space-between;
  align-items: stretch;
}
.rsdnc_service-list li {
  position: relative;
  display: block;
  width: 49%;
  margin: 0 0 2.5rem;
}
@media (max-width: 1025px) {
  .rsdnc_service-list li {
    width: 100%;
  }
}
.rsdnc_service-list li small {
  display: block;
  text-align: right;
  font-size: 1rem;
  position: absolute;
  right: 0;
  bottom: -1.3rem;
  z-index: 1;
}
.rsdnc_service-about {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 2rem;
}
.rsdnc_service-about dl {
  display: block;
  line-height: 1.5;
  width: 55%;
}
@media (max-width: 1025px) {
  .rsdnc_service-about dl {
    width: 100%;
  }
}
.rsdnc_service-about dl dt {
  font-size: 1.5rem;
  margin: 0 0 1rem;
}
.rsdnc_service-about dl dd {
  font-size: 1.2rem;
}
.rsdnc_service-about figure {
  display: block;
  width: 40%;
}
@media (max-width: 1025px) {
  .rsdnc_service-about figure {
    margin: 2rem auto 0;
  }
}
.rsdnc_service-security {
  display: block;
  margin: 8rem auto 0;
  padding: 4rem 4rem 3rem;
}
@media (max-width: 1025px) {
  .rsdnc_service-security {
    margin: 5rem auto 0;
    padding: 3rem 3rem 2rem;
  }
}
.rsdnc_service-security h6 {
  letter-spacing: 1px;
  font-size: 2.5rem;
  margin: 0 auto 3rem;
}
@media (max-width: 1025px) {
  .rsdnc_service-security h6 {
    line-height: 1.5;
    font-size: 2rem;
    margin: 0 auto 2rem;
  }
}
.rsdnc_service-security-list {
  justify-content: space-between;
}
.rsdnc_service-security-list li {
  display: block;
}
.rsdnc_service-security-list-txt {
  line-height: 1.5;
  width: 67%;
}
@media (max-width: 1025px) {
  .rsdnc_service-security-list-txt {
    width: 100%;
  }
}
.rsdnc_service-security-list-img {
  width: 30%;
}
@media (max-width: 1025px) {
  .rsdnc_service-security-list-img {
    width: 80%;
    margin: 2rem auto 0;
  }
}

.sttn_kv {
  border-top: 20px solid black;
  border-bottom: 20px solid black;
  margin: 0 0 3rem;
}
.sttn_kv-img {
  justify-content: space-between;
}
.sttn_kv-img li {
  display: block;
  width: 50%;
}
@media (max-width: 600px) {
  .sttn_kv-img li {
    width: 100%;
  }
}

.sttn_ctns {
  padding: 0 0 4rem;
}
.sttn_ctns-spot {
  text-align: center;
  font-size: 2.4rem;
  margin: 0 auto 3rem;
}
.sttn_ctns-spot small {
  font-size: 1.4rem;
}
.sttn_ctns-spot b {
  font-weight: 400;
  font-size: 4rem;
  margin: 0 3px;
}
.sttn_ctns-lead {
  display: block;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  font-size: 2.5rem;
  margin: 0 auto 3rem;
}
@media (max-width: 600px) {
  .sttn_ctns-lead {
    font-size: 1.7rem;
  }
}
.sttn_ctns-lead sup {
  font-size: 1.4rem;
}
@media (max-width: 600px) {
  .sttn_ctns-lead sup {
    font-size: 1.2rem;
  }
}
.sttn_ctns-intro {
  display: block;
  text-align: center;
  letter-spacing: 0.03rem;
  line-height: 1.7;
  margin: 0 auto 3rem;
  font-size: 1.5rem;
}
@media (max-width: 600px) {
  .sttn_ctns-intro {
    font-size: 1.25rem;
  }
}
.sttn_ctns-list {
  justify-content: space-between;
}
.sttn_ctns-list li {
  display: block;
  width: 24%;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .sttn_ctns-list li {
    width: 48%;
  }
}
.sttn_ctns-list .__mrgnBtm0 {
  margin: 0;
}
.sttn_ctns-list .__mrgnTp {
  margin: -0.5rem 0 0;
}
.sttn_ctns-itemImg {
  display: block;
  width: 100%;
  margin: 0 0 1rem;
}
.sttn_ctns-dtl {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.sttn_ctns-dtl dt {
  display: block;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #40220f;
  line-height: 1.3;
  text-align: center;
  padding: 0 0 1.4rem;
  font-size: 1.4rem;
}
.sttn_ctns-dtl dt small {
  display: block;
  width: 100%;
  padding: 0 0 0.5rem;
  margin: 0 0 1.4rem;
  border-bottom: 1px solid #40220f;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .sttn_ctns-dtl dt small {
    margin: 0 0 1.2rem;
  }
}
@media (max-width: 600px) {
  .sttn_ctns-dtl dt {
    padding: 0 0 1.2rem;
    font-size: 1.3rem;
  }
}
.sttn_ctns-dtl-budge {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
}
@media (max-width: 600px) {
  .sttn_ctns-dtl-budge {
    width: 48px;
  }
}
.sttn_ctns-dtl-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 188/136;
  margin: 0 0 1rem;
}
.sttn_ctns-dtl-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sttn_ctns-dtl .__pddng {
  padding: 0 0 0.5rem;
}
.sttn_ctns-dtl .__pddng small {
  padding: 0 0 0.5rem;
  margin: 0 0 0.5rem;
}
.sttn_ctns-dtl .daiso {
  font-size: 1.2rem;
  padding: 0 0 0.5rem;
}
.sttn_ctns-dtl .daiso .sttn_ctns-dtl-logo {
  margin: 1.4rem 0 0.6rem;
}
.sttn_ctns-dtl dd {
  display: block;
  line-height: 1.4;
  width: 100%;
  margin: 1rem 0 0;
  font-size: 1.2rem;
}
@media (max-width: 600px) {
  .sttn_ctns-dtl dd {
    font-size: 1.1rem;
  }
}

.sttn_lead {
  padding: 6rem 0 0;
}
.sttn_lead-ttl {
  display: block;
  width: 24rem;
  margin: 0 auto 2rem;
}
.sttn_lead-img {
  display: block;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}

.sttn_uplat-list-item {
  position: relative;
  top: -11px;
}

.sttn_bishu-list {
  justify-content: center !important;
}
@media (max-width: 600px) {
  .sttn_bishu-list {
    justify-content: space-between !important;
  }
}
.sttn_bishu-list li {
  width: 23%;
  margin: 0 3% 3rem 0;
}
@media (max-width: 600px) {
  .sttn_bishu-list li {
    width: 48%;
    margin: 0 0 2rem;
  }
}

.acs_lead {
  padding: 6rem 0;
}
@media (max-width: 600px) {
  .acs_lead {
    padding: 2rem 0;
  }
}
.acs_lead-icon {
  display: block;
  width: 572px;
  margin: 0 auto 2rem;
}
@media (max-width: 1025px) {
  .acs_lead-icon {
    width: 100%;
  }
}

.acs_sctn-ctns {
  padding: 6rem 0 4rem;
}
.acs_sctn-linear {
  position: relative;
  padding: 2rem 0 4rem;
}
.acs_sctn-linear .p_lead {
  position: relative;
  z-index: 2;
}
@media (max-width: 600px) {
  .acs_sctn-linear .p_lead p {
    text-align: left;
  }
}
.acs_sctn-linear-img {
  position: relative;
  z-index: 2;
  display: block;
  width: 490px;
  margin: 0 0 0 auto;
}
@media (max-width: 600px) {
  .acs_sctn-linear-img {
    width: 100%;
    margin: 0 auto 10rem;
  }
}
.acs_sctn-linear-item {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 565px;
  z-index: 1;
}
@media (max-width: 600px) {
  .acs_sctn-linear-item {
    width: 100%;
  }
}
.acs_sctn-figure {
  display: block;
  margin: 3rem auto 5rem;
  width: 564px;
}
@media (max-width: 600px) {
  .acs_sctn-figure {
    width: 100%;
  }
}
.acs_sctn-list li {
  margin: 0 0 3rem;
}
.acs_drive {
  margin: 0 0 10rem;
}
.acs_bus {
  padding: 0 0 5rem;
}
.acs_bus-caption {
  display: block;
  text-align: center;
  margin: 1rem auto 0;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .acs_bus-caption {
    width: 95%;
    line-height: 1.3;
    text-align: left;
  }
}
.acs_bus-list {
  display: block;
}
.acs_bus-list li {
  display: block;
  margin: 0 0 5rem;
}
.l_2clmn .kmymlf_dl dt, .kmymlf_edctn-list .kmymlf_dl dt {
  font-size: 1.6rem;
}
@media (max-width: 600px) {
  .l_2clmn .kmymlf_dl dt, .kmymlf_edctn-list .kmymlf_dl dt {
    font-size: 1.4rem;
  }
}
.l_2clmn .kmymlf_dl dd, .kmymlf_edctn-list .kmymlf_dl dd {
  font-size: 2rem;
}
@media (max-width: 600px) {
  .l_2clmn .kmymlf_dl dd, .kmymlf_edctn-list .kmymlf_dl dd {
    font-size: 1.8rem;
  }
}
.l_2clmn .kmymlf_dl dd b, .kmymlf_edctn-list .kmymlf_dl dd b {
  font-weight: 400;
  font-size: 2.6rem;
  margin: 0 2px;
}
.l_2clmn .kmymlf_dl dd small, .kmymlf_edctn-list .kmymlf_dl dd small {
  font-size: 1.2rem;
}
@media (max-width: 600px) {
  .l_2clmn .kmymlf_dl dd small, .kmymlf_edctn-list .kmymlf_dl dd small {
    font-size: 1.2rem;
  }
}

.l_4clmn .kmymlf_dl dt {
  font-size: 1.4rem;
}
.l_4clmn .kmymlf_dl dd {
  font-size: 1.8rem;
}
@media (max-width: 600px) {
  .l_4clmn .kmymlf_dl dd {
    font-size: 1.6rem;
  }
}
.l_4clmn .kmymlf_dl dd b {
  font-weight: 400;
  font-size: 2.6rem;
  margin: 0 2px;
}
@media (max-width: 600px) {
  .l_4clmn .kmymlf_dl dd b {
    font-size: 2.3rem;
  }
}
.l_4clmn .kmymlf_dl dd small {
  font-size: 1.2rem;
}
@media (max-width: 600px) {
  .l_4clmn .kmymlf_dl dd small {
    font-size: 1.1rem;
  }
}

.kmymlf_dl {
  letter-spacing: 1px;
  line-height: 1.3;
  text-align: center;
}

.kmymlf_thumb {
  display: block;
  margin: 0 0 1rem;
}

.kmymlf_sctnTtl {
  display: block;
  width: 100%;
  margin: 0 0 3rem;
}

.kmymlf_lead-ctns {
  padding: 5rem 0;
}
.kmymlf_lead-map {
  display: block;
  margin: 5rem auto 0;
}

.kmymlf_edctn-ctns {
  padding: 5rem 0 8rem;
}
.kmymlf_edctn-list {
  justify-content: space-between;
  margin: 0 0 5rem;
}
.kmymlf_edctn-list li {
  display: block;
  box-shadow: 3px 5px 18px -9px #777777;
  width: 49%;
}
@media (max-width: 1025px) {
  .kmymlf_edctn-list li {
    width: 100% !important;
    margin: 0 0 3rem;
  }
}
.kmymlf_edctn-about {
  line-height: 1.5;
  padding: 0 3.5rem 3rem;
}
@media (max-width: 1025px) {
  .kmymlf_edctn-about {
    padding: 0 3rem 3rem;
  }
}
.kmymlf_edctn-about-lead {
  margin: 2rem auto 0;
  font-size: 1.4rem;
}
.kmymlf_edctn-about-lead small {
  display: block;
  margin: 1rem 0 0;
  font-size: 1.1rem;
}
.kmymlf_edctn-about h3 {
  text-align: center;
  font-size: 1.8rem;
  margin: 3rem auto 0;
}
@media (max-width: 1025px) {
  .kmymlf_edctn-about h3 {
    font-size: 1.5rem;
  }
}
.kmymlf_edctn-about h3 i {
  display: block;
}
.kmymlf_edctn-item {
  margin: 0 0 4rem;
}
.kmymlf_edctn-item li {
  margin: 0 0 4rem;
}
.kmymlf_edctn-spot li {
  margin: 0 0 2rem;
}

.kmymlf_lctn-ctns {
  padding: 5rem 0 8rem;
}
.kmymlf_lctn-item {
  margin: 0 0 4rem;
}
@media (max-width: 1025px) {
  .kmymlf_lctn-item li {
    margin: 0 0 4rem;
  }
  .kmymlf_lctn-item li:last-child {
    margin: 0;
  }
}
@media (max-width: 1025px) {
  .kmymlf_lctn-list li {
    margin: 0 0 3rem;
  }
}

.kmymlf_cnvnnt-ctns {
  padding: 5rem 0 8rem;
}
@media (max-width: 1025px) {
  .kmymlf_cnvnnt-ctns {
    padding: 5rem 0 0;
  }
}
.kmymlf_cnvnnt-shpng-list li {
  margin: 0 0 4rem;
}
.kmymlf_cnvnnt-mdcl-list li {
  margin: 0 0 4rem;
}
.kmymlf_cnvnnt-mdcl-item {
  margin: 0 0 6rem;
}
.kmymlf_cnvnnt-mdcl-item li {
  border-top: 1px solid #40220f;
  border-bottom: 1px solid #40220f;
  padding: 1rem 0;
}
@media (max-width: 1025px) {
  .kmymlf_cnvnnt-mdcl-item li {
    margin: 0 0 2rem;
  }
}
.kmymlf_cnvnnt-fnnc li {
  margin: 0 0 4rem;
}
.kmymlf_cnvnnt-other-list li {
  margin: 0 0 4rem;
}

.kmymlf_info {
  padding: 0 0 8rem;
}
@media (max-width: 1025px) {
  .kmymlf_info {
    padding: 0 0 3rem;
  }
}
.kmymlf_info-ttl {
  margin-top: 5rem;
}
.kmymlf_info-ctns {
  justify-content: space-between;
}
.kmymlf_info-ctns li {
  display: block;
  width: 48.5%;
}
@media (max-width: 1025px) {
  .kmymlf_info-ctns li {
    width: 100%;
  }
}
.kmymlf_info-ctns-item {
  margin: 0 0 3rem;
}
.kmymlf_info-ctns-item h6 {
  display: block;
  margin: 0 0 1rem;
}
.kmymlf_info-ctns-item dl {
  justify-content: space-between;
  align-items: end;
  letter-spacing: 0.3px;
  line-height: 1.3;
  font-size: 1.25rem;
  margin: 0 0 1rem;
}
@media (max-width: 1025px) {
  .kmymlf_info-ctns-item dl {
    font-size: 1rem;
  }
}

.plan {
  padding-bottom: 8rem;
}
@media (max-width: 600px) {
  .plan {
    padding-bottom: 5rem;
  }
}

.plan_intro {
  padding: 5rem 0 2rem;
}
.plan_intro-txt {
  display: block;
  line-height: 1.7;
  margin: 0 auto 5rem;
}
.plan_intro-item {
  display: block;
  line-height: 1.5;
  margin: 0 auto 4rem;
}
.plan_intro-item h2 {
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
}
@media (max-width: 600px) {
  .plan_intro-item h2 {
    font-size: 1.8rem;
  }
}
.plan_intro-item figure {
  display: block;
  margin: 0 auto 1rem;
}
.plan_intro-ttl {
  display: block;
  font-size: 2rem;
  margin: 0 auto 2rem;
}
@media (max-width: 600px) {
  .plan_intro-ttl {
    line-height: 1.3;
    font-size: 1.8rem;
  }
}
.plan_intro-list {
  width: 90%;
  justify-content: space-between;
  margin: 0 auto 5rem;
}
.plan_intro-list li {
  display: block;
  width: 24%;
}
.plan_intro-list li p {
  display: block;
  text-align: center;
  margin: 1rem 0 0;
  font-size: 1.4rem;
}
@media (max-width: 600px) {
  .plan_intro-list {
    width: 90%;
    margin: 0 auto 4rem;
  }
  .plan_intro-list li {
    width: 48%;
    margin: 0 0 1.5rem;
  }
  .plan_intro-list li p {
    font-size: 1.1rem;
  }
}

.plan_flr-ttl {
  display: block;
  width: 120px;
  margin: 0 auto 3rem;
}
.plan_flr-txt {
  display: block;
  letter-spacing: 1px;
  line-height: 1.5;
  font-size: 2rem;
  margin: 0 auto 5rem;
}
.plan_flr-elv {
  display: block;
  max-width: 327px;
  margin: 0 auto 10rem;
  position: relative;
}
@media (max-width: 600px) {
  .plan_flr-elv {
    width: 90%;
    margin: 0 auto 4rem;
  }
}
.plan_flr-elv-btn li {
  display: block;
  position: absolute;
  width: 30%;
}
.plan_flr-elv-btn li a {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
}
.plan_flr-elv-btn .elvA {
  top: 0;
  left: 8%;
  height: 93%;
}
.plan_flr-elv-btn .elvAg {
  bottom: 0;
  left: 8%;
  height: 7%;
}
.plan_flr-elv-btn .elvB {
  top: 0;
  left: 39%;
  height: 93%;
}
.plan_flr-elv-btn .elvC {
  top: 0;
  right: 0;
  height: 93%;
}
.plan_flr-btn {
  display: block;
  width: 50%;
  margin: 0 auto;
}
.plan_flr-btn li {
  display: block;
  width: 100%;
  margin: 0 0 1rem;
}
.plan_flr-btn li a {
  cursor: pointer;
}
@media (max-width: 600px) {
  .plan_flr-btn {
    width: 100%;
  }
}

.plan_ctns {
  position: relative;
  text-align: center;
  padding: 16rem 0 0;
}
@media (max-width: 600px) {
  .plan_ctns {
    padding: 10rem 0 0;
  }
}
.plan_ctns::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.85px;
  background-color: #595757;
  position: absolute;
  top: 20.8rem;
  left: 0;
}
@media (max-width: 600px) {
  .plan_ctns::before {
    top: 13.8rem;
  }
}
.plan_ctns-ttl {
  display: block;
  max-width: 450px;
  width: 100%;
  margin: 0 auto 1rem;
}
.plan_ctns-about {
  letter-spacing: 0.1rem;
  font-size: 2.8rem;
  margin: 0 0 0.5rem;
}
.plan_ctns-about b {
  font-weight: 500;
  font-size: 4.2rem;
  margin: 0 0 0 0.5rem;
}
.plan_ctns-about b i {
  font-style: normal;
  font-size: 3rem;
}
@media (max-width: 600px) {
  .plan_ctns-about {
    font-size: 1.4rem;
  }
  .plan_ctns-about b {
    font-weight: 400;
    font-size: 3rem;
  }
  .plan_ctns-about b i {
    font-size: 1.6rem;
  }
}
.plan_ctns-abbreviation {
  display: block;
  margin: 0 0 2rem;
  font-size: 12px;
}
.plan_ctns-note {
  display: block;
  font-size: 1.2rem;
  margin: 0 0 1rem;
}
.plan_ctns-txt {
  display: block;
  letter-spacing: 0.05rem;
  font-size: 1.6rem;
  margin: 0 0 4rem;
}
@media (max-width: 600px) {
  .plan_ctns-txt {
    line-height: 1.5;
    font-size: 1.3rem;
    margin: 0 0 2rem;
  }
}
.plan_ctns-detail {
  justify-content: space-between;
  align-items: flex-end;
  max-width: 730px;
  width: 100%;
  margin: 0 auto 4rem;
}
.plan_ctns-detail-txt {
  width: 43%;
}
.plan_ctns-detail-txt li {
  display: block;
  background-color: white;
  border: 0.5px solid #595757;
  font-size: 1.4rem;
  padding: 1rem 0;
  margin: 0 0 1rem;
}
@media (max-width: 600px) {
  .plan_ctns-detail-txt {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 0 2rem;
  }
  .plan_ctns-detail-txt li {
    width: 49%;
    font-size: 1.1rem;
    margin: 0 0 0.8rem;
  }
}
.plan_ctns-detail-type {
  width: 53%;
}
@media (max-width: 600px) {
  .plan_ctns-detail-type {
    width: 90%;
    margin: 0 auto;
  }
}
.plan_ctns-caption {
  justify-content: space-between;
  align-items: center;
  max-width: 730px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 0;
  border-top: 1px solid #595757;
  border-bottom: 1px solid #595757;
}
.plan_ctns-caption li {
  text-align: left;
  line-height: 1.5;
  font-size: 1rem;
  width: 36%;
}
.plan_ctns-caption li:last-child {
  display: block;
  width: 62%;
}
@media (max-width: 600px) {
  .plan_ctns-caption li {
    width: 100%;
  }
  .plan_ctns-caption li:last-child {
    width: 100%;
    margin: 1rem 0 0;
  }
}

.notLinkPlan {
  cursor: auto;
  pointer-events: none;
}

.comingSoon {
  position: relative;
}
.comingSoon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.map_ctns {
  display: block;
  padding: 17rem 0 8rem;
}
@media (max-width: 1025px) {
  .map_ctns {
    padding: 10rem 0 5rem;
  }
}
.map_ctns h1 {
  display: block;
  text-align: center;
  color: #6a6452;
  letter-spacing: 0.2rem;
  margin: 0 auto 2rem;
  font-size: 2rem;
}
@media (max-width: 600px) {
  .map_ctns h1 {
    font-size: 1.8rem;
  }
}
.map_ctns-img {
  display: block;
  width: 100%;
  margin: 0 auto 7rem;
}
@media (max-width: 600px) {
  .map_ctns-img {
    margin: 0 auto 5rem;
  }
}
.map_ctns dl {
  display: block;
  text-align: center;
  letter-spacing: 0.3rem;
  margin: 0 auto 3rem;
  font-size: 2rem;
}
.map_ctns dl dt {
  margin: 0 0 1rem;
}
@media (max-width: 600px) {
  .map_ctns dl {
    font-size: 1.6rem;
  }
}
.map_ctns small {
  display: block;
  text-align: center;
  line-height: 1.5;
  margin: 0 auto 4rem;
  font-size: 1.2rem;
}
@media (max-width: 600px) {
  .map_ctns small {
    font-size: 1rem;
  }
}
.map_ctns-list {
  width: 60%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  .map_ctns-list {
    width: 100%;
  }
}
.map_ctns-list li {
  width: 26%;
}
.map_ctns-list li:nth-child(2) {
  width: 43%;
}
.map_ctns-list li button, .map_ctns-list li a {
  display: block;
  text-align: center;
  transition: 0.3s;
  color: white;
  line-height: 1;
  text-shadow: 1px 1px 3px black;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  width: 100%;
  padding: 1.5rem 0;
  font-size: 1.4rem;
}
.map_ctns-list li button:hover, .map_ctns-list li a:hover {
  opacity: 0.5;
}
@media (max-width: 600px) {
  .map_ctns-list li {
    width: 100%;
    margin: 0 0 1rem;
  }
  .map_ctns-list li:nth-child(2) {
    width: 100%;
  }
  .map_ctns-list li:last-child {
    margin: 0;
  }
}
.map_ctns-list-close button, .map_ctns-list-close a {
  background-color: #898989;
}
.map_ctns-list-map button, .map_ctns-list-map a {
  background-color: #a48b78;
}
.map_ctns-list-print button, .map_ctns-list-print a {
  background-color: #0e9b94;
}

@media print {
  .header, .p_lineUp, .footer {
    display: none;
  }
  #main {
    padding: 30px 0 0;
  }
  .map {
    padding: 0;
  }
  .map_ctns-list, a, button, .p_recommend {
    display: none;
  }
}
.outline {
  padding: 20rem 0 8rem;
}
@media (max-width: 600px) {
  .outline {
    padding: 13rem 0 5rem;
  }
}

.outline_ctns {
  margin: 0 0 4rem;
}
.outline_ctns:last-of-type {
  margin: 0;
}
.outline_ctns-ttl {
  font-size: 1.6rem;
  margin: 0 0 1.5rem;
}
@media (max-width: 600px) {
  .outline_ctns-ttl {
    font-size: 1.5rem;
  }
}
.outline_ctns table {
  width: 100%;
  border-top: 1px solid #595857;
}
.outline_ctns table tr {
  width: 100%;
}
.outline_ctns table tr th {
  font-weight: 400;
  text-align: left;
  line-height: 1.5;
  border-bottom: 1px solid #595857;
  border-right: 1px solid #595857;
  width: 27%;
  padding: 1.3rem 0;
  font-size: 1.3rem;
}
@media (max-width: 1025px) {
  .outline_ctns table tr th {
    width: 32%;
  }
}
@media (max-width: 600px) {
  .outline_ctns table tr th {
    line-height: 1.3;
    width: 38%;
    font-size: 2.8vw;
  }
}
.outline_ctns table tr td {
  border-bottom: 1px solid #595857;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  width: 73%;
  padding: 1.3rem 0 1.3rem 2rem;
  font-size: 1.3rem;
}
.outline_ctns table tr td small {
  display: block;
  line-height: 1.5;
  margin: 1.5rem 0 0;
  font-size: 1.3rem;
}
@media (max-width: 1025px) {
  .outline_ctns table tr td {
    width: 68%;
    line-height: 1.5;
    padding: 1.5rem 0 1.5rem 1.5rem;
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  .outline_ctns table tr td {
    width: 62%;
    font-size: 3vw;
    padding: 1.5rem 0 1.5rem 1rem;
  }
}
.outline_ctns-yokoku {
  margin: 3rem 0 0;
}
.outline_ctns-yokoku dt {
  letter-spacing: 0.1rem;
  font-size: 2rem;
  margin: 0 0 1rem;
}
.outline_ctns-yokoku dd {
  line-height: 1.5;
  font-size: 1.2rem;
}
@media (max-width: 600px) {
  .outline_ctns-yokoku dt {
    margin: 0 0 1rem;
    font-size: 1.5rem;
  }
  .outline_ctns-yokoku dd {
    font-size: 1.1rem;
  }
}/*# sourceMappingURL=app.css.map */