@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@200;300;400;500;600;700;800;900&display=swap');

/* Reset */
html {
  scroll-behavior: smooth;
}
html.no-scroll,
body.no-scroll{
  overflow: hidden;       /* 背景スクロールを止める */
  height: 100%;           /* iOS対策 */
  touch-action: none;     /* 余計な慣性スクロールを抑制 */
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
}
ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: #231815;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
body {
  box-sizing: border-box;
  color: #231815;
  font-family: 'Noto serif JP',serif;
  font-optical-sizing: auto;
}
img {
  vertical-align: middle;
  width: 100%;
}
main {
  width: 100%;
}

/* クリック禁止 */
a.disabled {
  pointer-events: none;   /* クリック禁止 */
  cursor: default;        /* マウスカーソルを通常に */
  opacity: 0.6;           /* 無効っぽく見せる */
}

/* hover時の装飾を消す */
a.disabled:hover {
  border: none !important;
  background: none !important;
  color: inherit !important; /* 必要なら色も変えない */
  opacity: 0.6; /* hoverでも変わらない */
}
/* disabled が付いてる親のサブメニューを非表示 */
li > a.disabled + .sub-menu {
  display: none !important;
}


/* Header */
header {
  align-items: center;
  background: linear-gradient(180deg, rgba(45, 105, 192,1) 0%, rgba(45, 105, 192,0) 100%);
  box-sizing: border-box;
  display: flex;
  height: 150px;
  justify-content: space-between;
  left: 0;
  padding: 0 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  gap: 1rem;
}
h1.logo {
  width: 35%;
  align-items: center;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2000;
}
.logo img {
  width: 100%;
  height: auto;
  max-height: 45px;
}
.nav-wrap,
.subpage .nav-wrap  {
  align-items: center;
  display: flex;
  gap: 2.5vw;
  font-family: "EB Garamond", "Noto Serif JP", serif;
}
nav ul,
.subpage nav ul {
  align-items: center;
  display: flex;
  gap: 2.5vw;
  margin-bottom: 0;
}
nav ul li a,
.subpage nav ul a {
  color: #ffffff;
  display: block;
  font-size: 0.9vw;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
}
a.nav_en,
.subpage a.nav_en  {
  font-size: 1.4vw;
}
/* 共通 */
.nav-wrap nav,.subpage .nav-wrap nav {
  transition: all 0.3s ease;
}

/* PCではナビ表示・ハンバーガー非表示 */
@media (min-width: 1001px) {
  .hamburger_btn_container,
  .subpage .hamburger_btn_container{
    display: none;
  }
  .nav-wrap nav,
  .subpage .nav-wrap nav{
    display: block;
  }
  .hamburger,
  .subpage .hamburger{
    display: none;
  }


  /* サブメニュー（初期非表示） */
nav > ul > li {
  position: relative; 
}

nav > ul > li a:hover {
  border-bottom: 2px solid #9b8a6e;
}

/* サブメニュー：縦並び・内容分だけの高さ */
nav ul li .sub-menu{
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 140px;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1000;
  display: flex;            /* ←縦並び */
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin-bottom: 0;

  /* アニメーション（高さはautoのまま） */
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  pointer-events: none;     /* 閉じてる間はクリック不可 */
}

nav ul li:hover > .sub-menu{
  transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}

/* サブメニュー項目は内容サイズのまま */
nav ul li .sub-menu > li{
  display: block;    
}
nav ul li .sub-menu > li > a,
.subpage nav ul li .sub-menu > li > a{
  display: block;
  padding: 8px 12px;        /* ここで高さが決まる */
  line-height: 1;
  white-space: nowrap;
  color: #3e3e3e;
  text-decoration: none;
}
nav ul li .sub-menu > li > a:hover{
  background: #9b8a6e;
  color: #fff;
}

/* 親リンクの下線 */
nav > ul > li > a:hover { border-bottom: 2px solid #9b8a6e;opacity: 1; }
}

/* 下層ページ用 */
header.subpage {
  background: rgba(255, 255, 255, 0.8); /* 白90%透過 */
  height: 114px;
}

/* 下層ページのナビ文字色を黒に */
header.subpage nav ul li a,
header.subpage h1.logo,
header.subpage h1.logo span {
  color: #3e3e3e;
}


/* PC（1001px以上）だけ通常メニュー */
@media (min-width: 1001px) {
  .nav-wrap nav {
    display: flex;
  }
  .nav-wrap .hamburger {
    display: none;
  }
}

/* タブレット以下（1000px以下）はハンバーガー */
@media (max-width: 1000px) {
  header{
    height: 80px;
    z-index: 1000;
  }
  header.subpage {
    height: 80px;
    z-index: 1000;
  }
  .nav-wrap nav {
    display: none;
  }
    .nav-wrap nav .rp_none{
    display: none;
  }
  .nav-wrap .top-menu {
    display: block;
    width: 50px;
    height: 50px;
    position:absolute;
    top:20px;
    right: 20px;
  }
  
  /* ====== ナビ表示制御 ====== */
  .nav-wrap nav,
  .subpage .nav-wrap nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0; /* top,right,bottom,left:0 */
    background: rgba(255,255,255,.96);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .28s ease, transform .28s ease, visibility 0s linear .28s;
    pointer-events: none;
    z-index: 999;
    padding: 2rem 1rem;
  }
  .nav-wrap.open nav,.subpage .nav-wrap.open nav  {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .28s ease, transform .28s ease;
    pointer-events: auto;
  }

  nav ul,
.subpage nav ul {
  margin-bottom: 1rem;
}

   /* ====== ハンバーガー → X ====== */
/* ハンバーガー：横長ライン＆細線 */
  .hamburger {
    width: 100%;
    height: 100%;
  position: relative;
  cursor: pointer;
  border: none;
  background: none;
}

.hamburger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1px;
  background: #fff;
  color:#fff;
  border-radius: 1px;
  transition: transform .28s ease, top .28s ease, bottom .28s ease, opacity .2s ease;
}

/* 上の線 */
.hamburger span:first-child {
  top: 5px;
}
.hamburger span:nth-child(2) {
  top: 13px;
}
.hamburger span:nth-child(3) {
  top: 21px;
}
/* menuラベル */
.hamburger .label {
  top:23px;
  display: block;
  font-size: 0.7rem;
  text-align: center;
  background: none;
  color: #fff;
  transition: opacity 0.3s ease;
}

.subpage .hamburger span {
  background: #000;
  color:#000;
}

/* menuラベル */
.subpage .hamburger .label {
  background: none!important;
  color: #000;
}



/* 開いた時（Xに変化） */
.nav-wrap.open .hamburger span:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
  background: #3c3c3c;
  z-index: 1000;
}

.nav-wrap.open .hamburger span:nth-child(2) {
  opacity: 0; /* 真ん中の線は消える */
}

.nav-wrap.open .hamburger span:nth-child(3) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-20deg);
  background: #3c3c3c;
  z-index: 1000;
}

.nav-wrap.open .hamburger .label {
  opacity: 0; /* menu文字も消す */
}


  /* ====== メニューリスト ====== */
  nav ul,
  .subpage nav ul  {
    flex-direction: column;
    gap: 1.5rem;
  }
   nav ul li,
   .subpage nav ul li{
    margin-bottom: 0;
  }
  nav ul li a,
  .subpage nav ul li a  {
    text-decoration: none;
    color: #3c3c3c;
    font-size: 1rem;
  }
  
  a.nav_en,
  .subpage a.nav_en {
    font-size: 2rem;
    line-height: 1;
    text-align: center;
  }
  a.nav_en span,
  .subpage a.nav_en span {
    font-size: 1rem;
    display: block;
    margin-top: 8px;
  }
  
  .nav_outline,
  .subpage .nav_outline{
    border: 1px solid #9b8a6e;
    background: #ffffff;
    padding: 1rem;
    margin-top: 20px;
  }
  .nav_outline_icon,
  .subpage .nav_outline_icon{
    border: 1px solid #9b8a6e;
    background: #ebebeb;
    padding: 1rem;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:space-between;
    gap:0.5rem;
  }
.nav_outline_icon .icon,
.subpage .nav_outline_icon .icon{
  width: 20%;
}
.nav_outline_icon .icon img,
.subpage .nav_outline_icon .icon img{
  width: 80%;
  margin: 0 auto;
}
.nav_outline_icon .text
.subpage .nav_outline_icon .text{
  flex: 1;
}

  .sub-menu,
  .subpage .sub-menu {
    display: flex;               /* 横並び */
    flex-direction: row;
    justify-content: center;
    gap: 0;                      /* スペース無し */
    background: none;
    border: none;
    position: static;            /* ドロップダウン解除 */
    padding: 0;
  }

  .sub-menu li ,
  .subpage .sub-menu li{
    display: flex;  
    flex-wrap: wrap; 
    font-size: 1rem;
    color: #3c3c3c;
    margin-bottom: 0;
    padding: 0;
    letter-spacing: 0;
  }

  /* 区切り用スラッシュを挿入 */
  .sub-menu li:not(:last-child)::after,
  .subpage .sub-menu li:not(:last-child)::after {
    content: "／";
    margin: 0 4px;
    color: #3c3c3c;
  }

  .sub-menu li a,
  .subpage .sub-menu li a {
    color: #3c3c3c;
    text-decoration: none;
  font-size: 0.9rem;
  }

.hamburger_btn_container,
.subpage .hamburger_btn_container {
  width: 90%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;          /* 折り返し可能にする */
  justify-content: center;
  align-items: stretch; 
  gap: 1rem;
}

.hamburger_btn_container li,
.subpage .hamburger_btn_container li  {
  flex: 1 1 180px;  
  line-height: 1.1;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
}
@media (max-width: 1000px) {
  /* サブメニューを親と同じ高さに収める */
  .sub-menu,
  .subpage .sub-menu {
    margin: 0;            /* 余白リセット */
    padding: 0;
    line-height: 1.4;     /* 適度に揃える */
  }

  .sub-menu li,
  .subpage .sub-menu li {
    margin: 0;            /* li余白リセット */
    padding: 0;
  }

  .sub-menu li a,
  .subpage .sub-menu li a {
    font-size: 0.9rem!important;    /* 親と揃える */
    line-height: 1.4;
    padding: 0;           /* 余白リセット */
  }

  /* サブメニューが横並びで高さを押し広げないようにする */
  .sub-menu,
  .subpage .sub-menu {
    display: inline-flex;   /* ← inline-flexにすると高さが縮む */
    flex-direction: row;
    gap: .5rem;             /* 適度な間隔 */
    align-items: center;    /* 縦位置揃える */
  }
}
/* スマホではナビ非表示・ハンバーガー表示 */
@media (max-width: 767px) {
header{
  height: 70px;
}

  /* 下層ページ用 */
header.subpage {
  background: linear-gradient(180deg, rgba(0, 0, 0,1) 0%,rgba(0, 0, 0,1) 50%, rgba(0, 0, 0,0) 100%);
  height: 70px;
}

.logo{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img {
  width: auto;
  height: auto;
  max-height: 35px;
}

  .nav-wrap{
    position: relative;
    z-index: 11;
  }
  .nav-wrap .top-menu {
    display: none;
  }
  .sp_nav_wrap {
    align-items: center;
    background: #000;
    border-top: 1px solid #c8c8c8;
    bottom: 0;
    box-sizing: border-box;
    display: grid;
    /* gap: 2.5vw; */
    grid-template-columns: 1fr auto;
    height: 50px;
    left: 0;
    /* padding: 5px 20px; */
    position: fixed;
    width: 100%;
    z-index: 1000; /* ← navより前面に */
  }

    .nav_outline {
    flex: initial; 
    width: 70%;
    max-width: 400px;
  }
  .nav_outline_icon{
    display: none!important;
  }

   .sub-menu,
  .subpage .sub-menu {
    justify-content: center;
    align-items: center;
  }
    /* 区切り用スラッシュを挿入 */
  .sub-menu li:not(:last-child)::after,
  .subpage .sub-menu li:not(:last-child)::after {
    font-size: 0.8rem;
    margin: 1px 2px 0;
  }

  .sub-menu li a,
  .subpage .sub-menu li a {
    text-decoration: none;
  font-size: 0.8rem;
  }

  /* ====== 下部固定のショートカット ====== */
.sp_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sp_nav li {
  flex: 1; /* 均等配置したい場合 */
  text-align: center;
}
.sp_nav li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 5px;
  box-sizing: border-box;
}
  .sp_nav li a {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: clamp(0.5rem, 0.058rem + 1.97vw, 0.8rem);
    line-height: 1.1;
    height: 100%;
    justify-content: space-around;
    text-align: center;
    text-decoration: none;
  }
  .sp_nav li a::before {
    content: "";
    display: block;
    height: 16px;
    width: 16px;
  }
  .sp_nav li a.icon_tel::before {
    background: url(../img/icon_tel.png) no-repeat;
    background-size: 100%;
  }
  .sp_nav li a.icon_entry::before {
    background: url(../img/icon_pc.png) no-repeat;
    background-size: 100%;
  }
  .sp_nav li a.icon_request::before {
    background: url(../img/icon_mail.png) no-repeat;
    background-size: 100%;
  }
  .sp_nav li a.icon_reserve::before {
    background: url(../img/icon_cal.png) no-repeat;
    background-size: 100%;
  }
  /* --- TEL --- */
.sp_nav li:nth-child(1) {
  background: #e6e6e6;  /* 白グレー */
}
.sp_nav li:nth-child(1) a{
  color:#000;
}

/* --- エントリー専用ページ --- */
.sp_nav li:nth-child(2) {
  background: #9b8a6e;  /* ゴールド */
}
.sp_nav li:nth-child(2) a{
  color:#fff;
}


/* --- 資料請求エントリー --- */
.sp_nav li:nth-child(3) {
  background: #e6e6e6;
}
.sp_nav li:nth-child(3) a{
  color:#000;
}


/* --- 来場予約 --- */
.sp_nav li:nth-child(4) {
  background: #646464;     /* 濃いグレー */
}
.sp_nav li:nth-child(4) a{
  color:#fff;
}

.subpage .hamburger span {
  background: #fff;
  color:#fff;
}
.subpage .hamburger .label {
  color:#fff;
}

}


/* footer */
.notice_content{
  width: 100%;
  padding:1rem 0;
  border-bottom: #9b8a6e 0.5px solid;
  background-color: #fff;
}
.notice_inner{
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  font-size: 0.7rem;
  letter-spacing: 0.03rem;
  line-height: 1.5;
  color: #787878;
    padding: 0 1rem;
  box-sizing: border-box;
}

.footer_container{
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
}
.footer_content{
  width: 100%;
  padding:1rem 0;
  border-bottom: #9b8a6e 0.5px solid;
}
.footer_inner{
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}
.footer_notice{
  font-size: 0.7rem;
  letter-spacing: 0.03rem;
  line-height: 1.5;
  color: #787878;
}
.link-container{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem auto;
}
.sns-box{
  width: 40%;
  display: flex;
  flex-wrap: wrap;
  gap:1rem;
}
.sns-box a {
  font-size: 0.8rem;
  display: inline-flex;      
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #000;
}

.sns-box a::after{
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url('../img/Instagram_icon.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.entry-box_pc {
  width: 60%;
  display: flex;
  flex-wrap: wrap;      /* 横幅が狭いとき折り返し */
  justify-content: center;
  gap: 0.8rem;          /* ボタン間隔 */
  margin: 1.5rem 0;
    align-items: stretch;
}


.entry-box_pc div {
  flex: 1 1 auto;         /* 🔑 各ボタンを同じ高さに広げる */
  display: flex;
}

.entry-box_pc div a {
  font-family: 'Noto Serif JP',serif;
  flex: 1; 
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 12px 20px;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}
.entry-box_pc div a::after {
  border: 1px solid #fff;
  content: "";
  display: block;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
}

/* 各ボタンのバリエーション */
.entry-box_pc div:nth-child(1) a {
  background: #9b8a6e;   /* ゴールド系 */
  border-color: #9b8a6e;
  color: #fff;
}

.entry-box_pc div:nth-child(2) a {
  background: #ebebeb;
  border-color: #9b8a6e;
  color: #000;
}
.entry-box_pc div:nth-child(2) a::after {
  border: 1px solid #9b8a6e;
}

.entry-box_pc div:nth-child(3) a,
.entry-box_pc div:nth-child(4) a  {
  background: #646464;
  border-color: #646464;
  color: #fff;
}
.entry-box_pc div:nth-child(3) a::after,
.entry-box_pc div:nth-child(4) a::after  {
  border: 1px solid #fff;
}

/* ホバーで少し明るくする */
.entry-box_pc a:hover {
  opacity: 0.85;
}

.contact_area{
   background-color: #f4f4f4;
}
.contact-container{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
}
.contact-box{
  width: 1fr;
  font-size: 0.9rem;
}
.tel img{
  width: 100%;
  max-width: 400px;
}
.business-days{
  font-size: 0.7rem;
  line-height: 1.5;
  letter-spacing: 0.03rem;
}
.company-box{
  display: flex;
  flex-direction: row;
  gap:2rem;
}
.company-item{
  width: auto;
}
.company-item a{
  text-decoration: none;
}
.company-item p{
  font-size: 1rem;
}
.company-item img{
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}
.company-item div{
  font-size: 0.7rem;
  line-height: 1.5;
  letter-spacing: 0.03rem;
}

.copyright{
  background-color: #f4f4f4;
  width: 100%;
  text-align: center;
  font-family: 'Noto Serif JP',serif;
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  padding: 1.5rem 0;
}

/* --- トップに戻るボタン --- */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #9b8a6e; /* ゴールド */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  outline: none;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* 矢印アイコン（CSSで作成） */
.back-to-top span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg); /* ↑矢印 */
  margin-bottom: -2px;      /* 中央に調整 */
}

/* 表示状態 */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.c-asterisk {
  font-family:  "Noto Serif JP", serif;
    margin: 0 auto;
}
.c-asterisk .text_yokoku {
    font-family:  "Noto Serif JP", serif;
    font-size: 0.7rem;
    font-weight: normal;
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.3rem;
}
.c-asterisk .text_yokoku dt {
    font-size: 0.7rem;
    border: 1px solid #4B4B4B;
    padding: .3rem .2rem;
    width: 4.5rem;
    text-align: center;
    line-height: 1;
}
.c-asterisk .text_yokoku dd {
    padding-top: .15rem;
    padding-left: 0.5rem;
    width: calc(100% - 4.5rem);
    margin-left: 0;
}
.c-asterisk ul li{
  margin-bottom: .3rem;
}
/* Responsive */
@media screen and (min-width: 768px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 1040px) {}
@media screen and (max-width: 767px) {
  .sp_none {
    display: none;
  }
  header {
    max-width: 100%;
				height: 64px;
				justify-content: center;
        box-sizing: border-box;
  }
  h1.logo {
			font-size: 3.5vw;
  }

  /* footer */
.notice_content{
  width: 100%;
  padding:1rem;
  box-sizing: border-box;
}

.footer_notice{
  font-size: 0.7rem;
  letter-spacing: 0.03rem;
  line-height: 1.5;
  color: #787878;
}

.sns-box{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  gap:1rem;
}
.sns-box a {
  font-size: 0.7rem;

}

.sns-box a::after{
  width: 30px;
  height: 30px;
}

.entry-box_pc {
  display: none;
}

.contact_area{
   background-color: #f4f4f4;
}
.contact-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.contact-box{
  font-size: 0.8rem;  
}
.tel img{
  width: 90%;
  max-width: none;
  margin: 0 auto;
}
.business-days{
  font-size: 0.7rem;
  line-height: 1.5;
  letter-spacing: 0.03rem;
}
.company-box{
  display: flex;
  flex-direction: column;
  gap:2rem;
}
.company-item{
  width: auto;
  text-align: center;
}
.company-item img{
  margin: 0 auto;
}
.copyright{
  margin-bottom: 50px;
}

.back-to-top {
  position: fixed;
  right: 10px;
  bottom: 60px;
}
  .c-asterisk .text_yokoku {
    flex-direction: column;
  }
  .c-asterisk .text_yokoku dt {
    width: auto;
  }
  .c-asterisk .text_yokoku dd {
    width: 100%;
    padding-left: 0; /* 左余白をリセット */
    padding-top: .3rem; /* 下に少し余白 */
  }
}


/* 資料請求 */
.request{
   width: 100%;
   box-sizing: border-box;
}
.request_header{
  width: 100%;
  height: 300px;
  padding:2rem 1rem;
  box-sizing: border-box;
  background-color: #000;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.request_header_inner{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 114px;
  text-align: center;
  color: #fff;
}
.request .content_container{
   width: 100%;
   max-width: 1000px;
   margin: 0 auto;
   padding: 1rem;
   box-sizing: border-box;
}

.rquestend_content{
  text-align: center;
}
.rquestend_content_text{
  font-size: 1rem;
  letter-spacing: 0.05rem;
  line-height: 2;
  margin: 3rem 0;
}
.rquestend_notice{
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.03rem;
  line-height: 2;
  margin: 3rem 0;
}

@media screen and (max-width: 767px) {
.rquestend_notice{
  text-align: left;
}
}
/* 物件概要 */
.outline_header{
  width: 100%;
  height: 300px;
  padding:2rem 1rem;
  box-sizing: border-box;
  background-color: #000;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.outline_header_inner{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 114px;
  text-align: center;
  color: #fff;
}
.outline .content_container{
   width: 100%;
   max-width: 1000px;
   margin: 0 auto;
   padding: 1rem;
   box-sizing: border-box;
}
