/* スマホ用レイアウト */

@media screen and (max-width: 768px) {
	
/**TOPページオープニング**/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}
html, body {
  width: 100%;
  min-height: 100%;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #FFF;
  background: #000;
}
body.is-opening {
  overflow: hidden;
}
body.is-menu-open .site-header {
  z-index: 10002;
}
/* =========================
       オープニング全体
    ========================= */
.opening {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
}
.opening.is-hide {
  visibility: hidden;
  pointer-events: none;
}
.opening.is-open {
  background: transparent;
}
.opening__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.16);
  transition: opacity 1.4s ease, transform 4.8s ease;
}
.opening__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.opening.is-open .opening__slide {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.opening__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}
.opening__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  text-align: center;
  letter-spacing: 0.18em;
  opacity: 0;
  animation: openingLogo 1.8s ease 0.4s forwards;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.opening.is-white .opening__logo, .opening.is-open .opening__logo {
  opacity: 0;
  visibility: hidden;
}
.opening__logo-main {
  display: block;
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 400;
}
.opening__logo-sub {
  display: block;
  margin-top: 14px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
}
@keyframes openingLogo {
  0% {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
/* =========================
       白レイヤー・白幕演出
    ========================= */
.opening__white {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 2.2s ease-in-out;
}
.opening.is-white .opening__white {
  opacity: 0.9;
}
.opening.is-open .opening__white {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.opening__curtain {
  position: fixed;
  left: 0;
  width: 100%;
  height: 50vh;
  z-index: 10000;
  background: #fff;
  pointer-events: none;
  opacity: 0;
  transform: translateY(0);
  transition:
    opacity 0s ease, transform 1.7s cubic-bezier(0.77, 0, 0.175, 1);
}
.opening.is-open .opening__curtain {
  opacity: 1;
}
.opening__curtain--top {
  top: 0;
}
.opening__curtain--bottom {
  bottom: 0;
}
.opening.is-open .opening__curtain--top {
  transform: translateY(-100%);
}
.opening.is-open .opening__curtain--bottom {
  transform: translateY(100%);
}
/* =========================
       ヒーローエリア
    ========================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}
.hero__bg {
  position: absolute;
  inset: -40px 0 0 0;
  background-image: url("images/erben_hero_back.jpg");
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transform: translateY(0px) scale(1.04);
  transition: opacity 5s ease, transform 2s ease;
}
.hero__bg.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.26) 45%, rgba(0, 0, 0, 0.1) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8vw;
}
.hero__text {
  position: absolute;
  left: 8vw;
  bottom: 8vw;
  max-width: 55%;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.6s ease, transform 3s ease;
  color: #FFF;
}
.hero__text.is-show {
  opacity: 1;
  transform: translateY(0);
}
.hero__text_2 {
  max-width: 100%;
  position: absolute;
  left: 8vw;
  top: 15%;
  z-index: 3;
  opacity: 0;
  transform: translateY(-50px);
  transition:
    opacity 0.5s ease, transform 1.5s ease;
}
.hero__text_2.is-show {
  opacity: 1;
  transform: translateY(0);
}
.hero__text_2 img {
  display: block;
  width: 84vw;
  height: 50vh;
  object-fit: cover;
}
.hero__catch {
  font-size: clamp(1rem, 1.5vw, 2rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.08em;
}
.hero__lead {
  margin-top: 28px;
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: 2.2;
  letter-spacing: 0.08em;
}
.hero__button {
  display: inline-block;
  margin-top: 42px;
  padding: 16px 34px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  transition: background 0.4s ease, color 0.4s ease;
}
.hero__button:hover {
  background: #fff;
  color: #111;
}
/* =========================
       ダミーコンテンツ
    ========================= */
@media (max-width: 767px) {
  .opening__logo-sub {
    font-size: 10px;
  }
  .hero__inner {
    align-items: flex-end;
    padding: 0 8vw 18vh;
  }
  .hero__bg {
    background-position: center center;
  }
  .hero__lead {
    line-height: 2;
  }
}
/* =========================
       ヘッダーメニュー周り
    ========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
  width: 100%;
  height: 86px;
  transform: translateY(-100%);
  opacity: 0;
  transition:
    transform 0.7s ease, opacity 0.7s ease;
}
.site-header.is-show {
  transform: translateY(0);
  opacity: 1;
}
.site-header__bar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 86px;
  padding: 0 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    transform 0.7s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s ease;
}
/* 黒ヘッダー */
.site-header__bar--dark {
  background: rgba(71, 57, 51, 0.8);
  transform: translateY(0);
  opacity: 1;
}
/* 白ヘッダー */
.site-header__bar--light {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-100%);
  opacity: 1;
}
/* スクロール後：黒が上へ引っ込み、白が上から出る */
.site-header.is-scroll .site-header__bar--dark {
  transform: translateY(-100%);
}
.site-header.is-scroll .site-header__bar--light {
  transform: translateY(0);
}
.site-header__logo img {
  display: block;
  height: 42px;
  width: auto;
}
.menu-button {
  width: 44px;
  height: 34px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.menu-button span {
  display: block;
  width: 44px;
  height: 2px;
  position: absolute;
  left: 0;
  transition: transform 0.4s ease;
}
.menu-button span:nth-child(1) {
  top: 10px;
}
.menu-button span:nth-child(2) {
  bottom: 10px;
}
.menu-button--white span {
  background: #fff;
}
.menu-button--black span {
  background: #473933;
}
/* メニューオープン時の× */
body.is-menu-open .menu-button span:nth-child(1) {
  transform: translateY(6px) rotate(20deg);
}
body.is-menu-open .menu-button span:nth-child(2) {
  transform: translateY(-6px) rotate(-20deg);
}
/* メニュー表示中はヘッダーを最前面へ */
body.is-menu-open .site-header {
  z-index: 10002;
}
/* 右から出るメニュー */
.global-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9500;
  width: min(66%, 86vw);
  height: 100vh;
  background: rgba(255, 255, 255, 0.96);
  transform: translateX(100%);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  align-items: center;
  padding: 8vw;
}
.global-menu.is-open {
  transform: translateX(0);
}
.global-menu ul {
  list-style: none;
	padding-left: 0rem!important;
}
.global-menu li {
  overflow: hidden;
}
.global-menu li + li {
  margin-top: 28px;
}
.global-menu a {
  display: inline-block;
  color: #111;
  text-decoration: none;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease, transform 0.7s ease;
}
.global-menu.is-open a {
  opacity: 1;
  transform: translateY(0);
}
.global-menu.is-open li:nth-child(1) a {
  transition-delay: 0.25s;
}
.global-menu.is-open li:nth-child(2) a {
  transition-delay: 0.35s;
}
.global-menu.is-open li:nth-child(3) a {
  transition-delay: 0.45s;
}
.global-menu.is-open li:nth-child(4) a {
  transition-delay: 0.55s;
}
.global-menu.is-open li:nth-child(5) a {
  transition-delay: 0.65s;
}
	.global-menu.is-open li:nth-child(6) a {
  transition-delay: 0.75s;
}
.global-menu.is-open li:nth-child(7) a {
  transition-delay: 0.85s;
}

/* =========================
       フッター
    ========================= */
.erben_pc_footer {
  background: url("images/erben_hero_back.jpg");
}
.erben_pc_footer_inner {
  background-size: cover;
  background-position: center center;
  transition:
    opacity 1s ease, transform 1s ease;
  padding: 3rem 0 8rem;
  background: rgba(71, 57, 51, 0.96);
}
.erben_pc_footer_inner_a {
  transition:
    opacity 1s ease, transform 1s ease;
  transition-delay: 1s;
}
.erben_pc_footer_inner_b {
  transition:
    opacity 1s ease, transform 1s ease;
  transition-delay: 1.5s;
}
.erben_pc_footer_inner_c {
  transition:
    opacity 1s ease, transform 1s ease;
  transition-delay: 1.5s;
	height: 25vh;
	padding-top: 2rem;
}
.erben_pc_footer_inner_d {
	display: none;
}
.erben_pc_footer_inner_e {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 0 8vw;
}
.erben_pc_footer_inner_f {
  height: 25vh;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 8vw;
}
.erben_pc_footer_menu_a {
	width: 100%;
  padding: 0.5rem 0vw;
}
.erben_pc_footer_menu_a_logo {
  margin: 0 auto 2rem;
  text-align: left;
}
.erben_pc_footer_menu_a_add {
  color: #FFF;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.erben_pc_footer_menu_icon {
  color: #FFF;
}
.erben_pc_footer_menu_icon a {
  color: #FFF;
  margin-left: 0.5rem;
}
ul.erben_pc_footer_menu_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.erben_pc_footer_menu_list li {
  padding: 0.5rem;
  margin-bottom: 1rem;
}
ul.erben_pc_footer_menu_list li a {
  display: block;
  color: #FFF;
  text-decoration: none;
}
.erben_pc_footer_link {
  position: relative;
  width: auto;
  height: 100%;
}
.erben_pc_footer_link_a {
  position: inherit;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  text-align: center;
}
.erben_pc_footer_link_a a {
  width: 100%;
  display: block;
  background: #BBB;
  color: #473933;
  text-align: center;
  text-decoration: none;
  padding: 0.5rem 0;
	margin: 0 auto 1rem;
}
.erben_pc_footer_link_a a:hover {
  background: #FFF;
  transition: 0.5s;
}
.erben_pc_footer_link_b {
  position: absolute;
  bottom: 10%;
  right: 0;
  width: 200px;
  text-align: right;
}
.erben_pc_footer_copy {
  padding: 2rem 0 0;
  text-align: center;
  color: #FFF;
  font-size: 0.7rem;
}
.erben_pc_footer_copy span {
  font-size: 0.9rem;
}
.erben_pc_footer_link_b a {
  position: relative;
  color: #FFF;
  text-decoration: none;
  font-size: 0.8rem;
}
/* ベースの細い線 */
.erben_pc_footer_link_b a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16vh;
  height: 1px;
  background-color: #FFF;
  margin-left: -18vh;
}
/* 右側20%だけ太い線 */
.erben_pc_footer_link_b a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2vh;
  height: 2px;
  border-radius: 999px;
  background-color: #FFF;
  left: -4vh;
}
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0px;
  background: #473933;
  opacity: 0.6;
  border-radius: 0%;
  z-index: 10000;
}
#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
/* =========================
       色々な動き
    ========================= */
.js-fadeup {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s ease, transform 0.9s ease;
}
.js-fadeup.is-show {
  opacity: 1;
  transform: translateY(0);
}
.js-delay-1 {
  transition-delay: 0.15s;
}
.js-delay-2 {
  transition-delay: 0.3s;
}
.js-delay-3 {
  transition-delay: 0.45s;
}
/* 共通アニメーション */
.js-diagonal-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1s ease-out, transform 1s ease-out;
}
.js-diagonal-item.is-show {
  opacity: 1;
  transform: translateY(0);
}
.js-footer-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1s ease-out, transform 1s ease-out;
}
.js-footer-item.is-show {
  opacity: 1;
  transform: translateY(0);
}
/* 時間差 */
.delay-1 {
  transition-delay: 2s;
}
.delay-2 {
  transition-delay: 2.35s;
}
.delay-3 {
  transition-delay: 2.65s;
}
.delay-4 {
  transition-delay: 2.95s;
}
.delay-5 {
  transition-delay: 3.95s;
}
.delay-6 {
  transition-delay: 1s;
}
.delay-7 {
  transition-delay: 1.5s;
}
.delay-8 {
  transition-delay: 2s;
}
/* =========================
       TOPページ
    ========================= */
.content {
  padding: 100px 8vw;
  background: #f7f4ef;
  color: #222;
  font-family: "Yu Gothic", "YuGothic", sans-serif;
}
.content h2 {
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 500;
}
.content p {
  max-width: 780px;
  line-height: 2;
}
.erben_index_message {
  background: #473933;
}
.erben_index_message_inner {
	height: 33vh;	
  padding: 4rem 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
h2.erben_index_message_inner_h2 {
  text-align: left;
  font-size: clamp(0.8rem, 1vw, 2.5rem);
  color: #FFF;
  line-height: 2;
  margin-bottom: 0;
	margin-left: 8vw;
}
/* =========================
       動画とメッセージ
    ========================= */
.movie-message-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}
.movie-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.movie-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.movie-filter {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.5);
}
.movie-message {
  position: absolute;
  z-index: 3;
  color: #473933;
  line-height: 1.8;
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1.2s ease, transform 1.2s ease;
}
.movie-message--right {
  right: 8vw;
  top: 34vh;
  text-align: right;
  font-size: clamp(1rem, 2vw, 3rem);
}
.movie-message--left {
  left: 8vw;
  bottom: 24vh;
  text-align: left;
  font-size: clamp(0.8rem, 1vw, 1.2rem);
	margin-right: 8vw;
}
.movie-message.is-show {
  opacity: 1;
  transform: translateY(0);
}
/* =========================
       ラグジュアリーな空間
    ========================= */
.diagonal-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #473933;
  color: #FFF;
  padding: 8vw;
}
.diagonal-text {
  position: absolute;
  left: 8vw;
  top: 12vh;
  z-index: 3;
  max-width: 100%;
	padding-right: 8vw;
}
.diagonal-text h2 {
  font-size: clamp(1rem, 1.5vw, 2.5rem);
  ;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.08em;
	text-align: center;
}
	.diagonal-text h2 br{
		display: none;}
	
	
	
.diagonal-text p {
  margin-top: 24px;
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: 2.1;
  letter-spacing: 0.06em;
}
	
	.diagonal-text p br{
		display: none;}
	
	
	
.diagonal-images {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.diagonal-image {
  position: absolute;
  width: min(30vw, 420px);
  aspect-ratio: 4 / 7;
  overflow: hidden;
}
.diagonal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 左下 */
.diagonal-image--left {
  left: 8vw;
  bottom: 20vh;
}
/* 真ん中 */
.diagonal-image--center {
  left: 35vw;
  bottom: 30vh;
}
/* 右上寄り */
.diagonal-image--right {
  right: 8vw;
  bottom: 40vh;
}
.diagonal-link {
  position: absolute;
  right: 8vw;
  bottom: 10vh;
  z-index: 4;
}
.diagonal-link a {
  position: relative;
  color: #FFF;
  text-decoration: none;
  font-size: 0.8rem;
}
/* ベースの細い線 */
.diagonal-link a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20vh;
  height: 1px;
  background-color: #FFF;
  margin-left: -22vh;
}
/* 右側20%だけ太い線 */
.diagonal-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5vh;
  height: 3px;
  border-radius: 999px;
  background-color: #FFF;
  left: -4vh;
}
/* =========================
       展示場
    ========================= */
.erben_index_show {
  background: #000;
}
ul.erben_index_show_list {
  padding: 0;
  margin: 0;
  list-style: none;
  height: 100%;
  background: #333;
  overflow: hidden;
}
li.erben_index_show_list_li {
  height: clamp(20vh, 30vh, 40vh);
  position: relative;
  transition:
    opacity 1s ease, transform 1s ease;
	overflow: hidden;
}
.erben_index_show_list_li_a {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.erben_index_show_list_li_b {
  position: absolute;
  inset: 0;
  filter: grayscale(100%) brightness(90%);
  transition: filter 0.5s ease;
}
.erben_index_show_list_li_a:hover .erben_index_show_list_li_b {
  filter: grayscale(0%) brightness(100%);
}
.erben_index_show_list_li_b {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.erben_index_show_list_li_b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.erben_index_show_list_li_title {
  position: absolute;
  z-index: 2;
  top: 10%;
  right: 0;
  color: #fff;
  padding-right: 1rem;	
	background-color: rgba(0,0,0,0.7);
	width: 100%;
	height: 20vw;
	padding-top: 5vw;
	
}
li.erben_index_show_list_li:nth-child(odd) {
  transition-delay: 0.5s;
}
li.erben_index_show_list_li:nth-child(even) {
  transition-delay: 1s;
}
li.erben_index_show_list_li:nth-child(odd) .erben_index_show_list_li_title {
  position: absolute;
  top: 10%;
  right: 0%;
  color: #FFF;
  padding-right: 1rem;
	
}
li.erben_index_show_list_li:nth-child(odd) .erben_index_show_list_li_title p {
  position: relative;
  color: #FFF;
  font-size: 0.8rem;
  text-align: right;
}
/* ベースの細い線 */
li.erben_index_show_list_li:nth-child(odd) .erben_index_show_list_li_title p::before {
  content: "";
  position: absolute;
  right: -1rem;
  top: 180%;
  transform: translateY(-50%);
  width: 50vh;
  height: 1px;
  background-color: #FFF;
  margin-left: -0vh;
}
/* 右側20%だけ太い線 */
li.erben_index_show_list_li:nth-child(odd) .erben_index_show_list_li_title p::after {
  content: "";
  position: absolute;
  top: 180%;
  transform: translateY(-50%);
  width: 6.25vh;
  height: 2px;
  border-radius: 999px;
  background-color: #FFF;
  right: -1rem;
}
li.erben_index_show_list_li:nth-child(even) .erben_index_show_list_li_title {
  position: absolute;
  top: 10%;
  right: 0%;
  color: #FFF;
  padding-right: 1rem;
}
li.erben_index_show_list_li:nth-child(even) .erben_index_show_list_li_title p {
  position: relative;
  color: #FFF;
  font-size: 1rem;
  text-align: right;
}
/* ベースの細い線 */
li.erben_index_show_list_li:nth-child(even) .erben_index_show_list_li_title p::before {
   content: "";
  position: absolute;
  right: -1rem;
  top: 180%;
  transform: translateY(-50%);
  width: 50vh;
  height: 1px;
  background-color: #FFF;
  margin-left: -0vh;
}
/* 右側20%だけ太い線 */
li.erben_index_show_list_li:nth-child(even) .erben_index_show_list_li_title p::after {
  content: "";
  position: absolute;
  top: 180%;
  transform: translateY(-50%);
  width: 10vh;
  height: 3px;
  border-radius: 999px;
  background-color: #FFF;
  right: -1rem;
}
p.erben_index_show_list_li_text {
  color: #FFF;
  font-size: clamp(1rem, 1.2rem, 1.6rem);
}
/* =========================
       施工実績
    ========================= */
.erben_index_works_inner {
  background: #000;
}
.erben_index_works_inner {
  height: clamp(20vh, 30vh, 40vh);
  background: #473933;
  background: url("images/erben_index_works_back.jpg");
  filter: grayscale(100%) brightness(100%);
  background-size: cover;
  background-position: center center;
  transform: translateY(0%);
  transition:
    opacity 1s ease, transform 1s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
h2.erben_index_works_h2 {
  color: #FFF;
	font-size: clamp(1.2rem, 1.6rem, 2rem);
  margin: 0;
  padding: 0;
}
/* =========================
       固定ページ
    ========================= */
.site-header {
  transform: translateY(-100%);
  opacity: 0;
}
.site-header.is-show {
  transform: translateY(0);
  opacity: 1;
}
.sub-page .site-header {
  transform: translateY(0);
  opacity: 1;
}
#page {
  margin-top: 86px;
  background: #473933;
	padding-bottom: 5vw;
}
#page_contents {
  padding: 8vw;
}
h2.page_title {
  color: #FFF;
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  margin: 0 0 8vw 0vw;
  padding: 0;
}
.back_home {
  width: 40%;
  float: right;
  padding: 3vw 0vw 0 0 ;
  text-align: right;
}
.back_home a {
  position: relative;
  color: #FFF;
  text-decoration: none;
  font-size: 0.8rem;
}
/* ベースの細い線 */
.back_home a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8vh;
  height: 1px;
  background-color: #FFF;
  margin-left: -10vh;
}
/* 右側20%だけ太い線 */
.back_home a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5vh;
  height: 2px;
  border-radius: 999px;
  background-color: #FFF;
  left: -2vh;
}
.back_archive {
  width: 40%;
  float: left;
  padding: 3vw 0 0 0vw;
  text-align: left;
}
.back_archive a {
  position: relative;
  color: #FFF;
  text-decoration: none;
  font-size: 0.8rem;
}
/* ベースの細い線 */
.back_archive a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 9vh;
  height: 1px;
  background-color: #FFF;
  margin-left: 5vh;
}
/* 右側20%だけ太い線 */
.back_archive a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.4vh;
  height: 2px;
  border-radius: 999px;
  background-color: #FFF;
  left: 5vh;
}
.page_arc_title {
  margin-bottom: 4vw;
	padding-left: 0vw;
}
.page_arc_title p {
  position: relative;
  color: #FFF;
  font-size: clamp(1rem, 1vw, 1.2vw);
  text-align: left;
  display: block;
  width: 100%;
}
/* ベースの細い線 */
.page_arc_title p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 150%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #FFF;
  margin-left: 0%;
}
/* 右側20%だけ太い線 */
.page_arc_title p::after {
  content: "";
  position: absolute;
  top: 150%;
  transform: translateY(-50%);
  width: 12.5%;
  height: 2px;
  border-radius: 999px;
  background-color: #FFF;
  right: 0;
}
/* =========================
      新着情報
    ========================= */
.page_news_catch {
  height: 15vh;
  background: url("images/erben_news_back.jpg");
  background-size: cover;
  background-position: center center;
}
.page_archive_news_list {
	padding-top: 10vw;
	margin-top: 5vw;
  margin-bottom: 10vw;
}
ul.page_archive_news_ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.page_archive_news_ul li {
  margin: 0 0 2rem;
  padding: 0 0 8vw;
}
ul.page_archive_news_ul li a {
  display: block;
  text-decoration: none;
  color: #FFF;
  filter: grayscale(0%) brightness(100%);
	border-bottom: #DDD 1px dotted;
}
ul.page_archive_news_ul li a:hover {
  transition: 0.5s;
  filter: grayscale(0%) brightness(100%);
}
/* 時間差 */
ul.page_archive_news_ul li:nth-child(1) {
  transition-delay: 0.1s;
}
ul.page_archive_news_ul li:nth-child(2) {
  transition-delay: 0.15s;
}
ul.page_archive_news_ul li:nth-child(3) {
  transition-delay: 0.2s;
}
ul.page_archive_news_ul li:nth-child(4) {
  transition-delay: 0.25s;
}
ul.page_archive_news_ul li:nth-child(5) {
  transition-delay: 0.3s;
}
ul.page_archive_news_ul li:nth-child(7) {
  transition-delay: 0.35s;
}
ul.page_archive_news_ul li:nth-child(7) {
  transition-delay: 0.4s;
}
ul.page_archive_news_ul li:nth-child(8) {
  transition-delay: 0.45s;
}
ul.page_archive_news_ul li:nth-child(9) {
  transition-delay: 0.5s;
}
ul.page_archive_news_ul li:nth-child(10) {
  transition-delay: 0.55s;
}
.page_archive_news_list_inner {}
.page_archive_news_list_inner_a {
  height: 100%;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  ;
}
.page_archive_news_list_inner_a_date {
  position: absolute;
  bottom: 20%;
  left: 0%;
  width: 100%;
  color: #FFF;
  padding-right: 0rem;
}
.page_archive_news_list_inner_a_date p {
  position: relative;
  color: #FFF;
  font-size: clamp(0.8rem, 1vw, 1rem);
  text-align: left;
  display: block;
  width: 100%;
  margin-bottom: 3vw;
	padding-left: 3vw;
}
/* ベースの細い線 */
.page_archive_news_list_inner_a_date p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 150%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #FFF;
  margin-left: 0%;
}
/* 右側20%だけ太い線 */
.page_archive_news_list_inner_a_date p::after {
  content: "";
  position: absolute;
  top: 150%;
  transform: translateY(-50%);
  width: 12.5%;
  height: 2px;
  border-radius: 999px;
  background-color: #FFF;
  right: 0;
}
.page_archive_news_list_inner_b {
  padding: 4vw 1rem 4vw;
	text-align: center;
}
.page_archive_news_list_inner_b img {
  width: 80%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
	margin: 0 auto;
}
.page_archive_news_list_inner_c {
  padding: 0 0 8vw;
}
p.page_archive_news_list_inner_tag {
  font-size: clamp(0.7rem, 0.8vw, 0.8rem);
}
p.page_archive_news_list_inner_title {
  font-size: clamp(1rem, 1.2vw, 1.5rem);
  margin-bottom: 1rem;
}
p.page_archive_news_list_inner_text {
  font-size: clamp(0.8rem, 1vw, 1rem);
}
.page_archive_news_article {
  margin-bottom: 15vw;
}
.page_archive_news_article_inner {
  margin-bottom: 3vw;
}
.page_archive_news_article_title {
  padding: 2rem 0rem 1rem;
  font-size: clamp(1rem, 1.6vw, 1.5rem);
}
.page_archive_news_article_title span {
  display: block;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}
.page_archive_news_article_contents {
  padding: 0rem 0rem 2rem;
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: 2;
}
.page_archive_news_article_contents img {
  max-width: 100%;
  display: block;
  margin-bottom: 1rem;
}
/* =========================
      施工実績
    ========================= */
.page_archive_works_list {
  margin-bottom: 10vw;
}
ul.page_archive_works_ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.page_archive_works_ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.page_archive_works_ul li {
  margin: 0 0 2vw;
  padding: 0.5rem;
  list-style: none;
  height: 100%;
}
ul.page_archive_works_ul li a {
  color: #FFF;
  text-decoration: none;
  filter: grayscale(100%) brightness(100%);
  height: 100%;
}
ul.page_archive_works_ul li a:hover {
  transition: 0.5s;
  filter: grayscale(0%) brightness(100%);
}
/* 時間差 */
ul.page_archive_works_ul li:nth-child(1) {
  transition-delay: 0.1s;
}
ul.page_archive_works_ul li:nth-child(2) {
  transition-delay: 0.2s;
}
ul.page_archive_works_ul li:nth-child(3) {
  transition-delay: 0.3s;
}
ul.page_archive_works_ul li:nth-child(4) {
  transition-delay: 0.4s;
}
ul.page_archive_works_ul li:nth-child(5) {
  transition-delay: 0.5s;
}
ul.page_archive_works_ul li:nth-child(6) {
  transition-delay: 0.6s;
}
ul.page_archive_works_ul li:nth-child(7) {
  transition-delay: 0.7s;
}
ul.page_archive_works_ul li:nth-child(8) {
  transition-delay: 0.8s;
}
ul.page_archive_works_ul li:nth-child(9) {
  transition-delay: 0.9s;
}
ul.page_archive_works_ul li:nth-child(10) {
  transition-delay: 1.0s;
}
.page_archive_works_list_a {
  margin-bottom: 0rem;
	padding: 0.5rem;
}
.page_archive_works_list_a img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  overflow: hidden;
}
.page_archive_works_list_b {
  margin-bottom: 2vw;
}
.page_archive_works_list_c {
  font-size: clamp(0.8rem, 1vw, 1.2rem);
}
.page_archive_works_list_b p {
  position: relative;
  color: #FFF;
  font-size: clamp(0.8rem, 1vw, 1rem);
  text-align: left;
  display: block;
  width: 100%;
	margin-bottom: 0.5rem;
}
/* ベースの細い線 */
.page_archive_works_list_b p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 120%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #FFF;
  margin-left: 0%;
}
/* 右側20%だけ太い線 */
.page_archive_works_list_b p::after {
  content: "";
  position: absolute;
  top: 120%;
  transform: translateY(-50%);
  width: 12.5%;
  height: 2px;
  border-radius: 999px;
  background-color: #FFF;
  right: 0;
}
.page_works_catch {
  height: auto;
}
.page_works_catch img {
  width: 100%;
  height: auto;
  object-fit: cover;
  overflow: hidden;
}
.page_archive_works_b {
  background: #D5D5D5;
  padding: 6vw;
}
#works_contents {
  padding: 6vw 0vw 2vw;
}
#works_contents_2, #works_contents_3 {
  padding: 8vw 8vw 2vw;
}
	#works_contents_4{
	padding: 6vw 8vw 2vw;
}
	

	
.page_archive_works_article {
  padding: 0 0vw;
  margin-bottom: 2vw;
}
.page_archive_works_article_a {
  color: #473933;
}
.page_archive_works_article_b {
	padding: 0.5rem;
	}
.page_archive_works_article_c {
  position: static;
  width: 100%;
  height: 100%;
  padding: 0 1vw;
}
.page_archive_works_article_c_text {
   position: static;
  left: 1vw;
  bottom: 0;
  font-size: clamp(0.8rem, 1vw, 1.2vw);
	margin: 3vw 0;
}
.page_archive_works_c {
  background: #473933;
  padding: 6vw;
}
ul.page_archive_works_d {
  margin: 0;
  padding: 2vw 0;
  list-style: none;
}
ul.page_archive_works_d li {
  margin: 0 0 1rem;
  padding: 0vw 0;
  list-style: none;

}
ul.page_archive_works_d li img {
	aspect-ratio: 16 / 9;
  width: 100%;
   height:auto;
  object-fit: cover;
}
/* =========================
      会社案内
    ========================= */
		
.page_company_title_a p {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  color: #FFF;
  font-size: 1rem;
  text-align: right;
	margin-bottom: 8vw;
}
.page_company_title_a p::before {
  content: "";
  display: block;
  width: clamp(70px, 14vw, 180px);
  height: 3px;
  background: linear-gradient(to right, #FFF 0%, #FFF 80%, #FFF 80%, #FFF 100%);
  clip-path: polygon(0 33%, 80% 33%, 80% 0, 100% 0, 100% 100%, 80% 100%, 80% 66%, 0 66%);
}
.page_company_title_a-2 {
  margin-bottom: 2vw;
}
.page_company_title_a-2 p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(12px, 2vw, 28px);
  color: #FFF;
  font-size: 1rem;
  text-align: right;
}
/* 線 */
.page_company_title_a-2 p::after {
  content: "";
  display: block;
  width: clamp(70px, 14vw, 180px);
  height: 2px;
  background: linear-gradient(to right, #FFF 0%, #FFF 80%, #FFF 80%, #FFF 100%);
  clip-path: polygon(0 33%, 80% 33%, 80% 0, 100% 0, 100% 100%, 80% 100%, 80% 66%, 0 66%);
}
.page_company_title_a-3 {
  margin-bottom: 1.5vw;
  margin-bottom: 2vw;
}
.page_company_title_a-3 p {
  position: relative;
  color: #FFF;
  text-decoration: none;
  font-size: 1rem;
  text-align: right;
}
/* ベースの細い線 */
.page_company_title_a-3 p::before {
  content: "";
  position: absolute;
  right: 30%;
  top: 50%;
  transform: translateY(-50%);
  width: 16vh;
  height: 1px;
  background-color: #FFF;
  margin-left: -18vh;
}
/* 右側20%だけ太い線 */
.page_company_title_a-3 p::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2vh;
  height: 2px;
  border-radius: 999px;
  background-color: #FFF;
  right: 30%;
}
.page_company_title_b {
  margin-bottom: 1.5vw;
}
.page_company_title_b p {
  margin-bottom: 6vw;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
}
.page_company_message {
	height: 100%;
  padding: 0 0vw 0 0;
}
.page_company_message p {
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: 2;
	padding: 0vw;
	margin-bottom: 6vw;
}
.page_company_ceo {
  position: static;
  height: 100%;
  width: 100%;
}
.page_company_ceo_image {
  position: static;
  top: 0;
  left: 0;
	 width: 100%;
	height: auto;
	text-align: left;
	
}
.page_company_ceo_image img {
	width: 60%;
	margin: 0 auto 3vw;
	height: auto;
	object-fit: scale-down;
	
}
.page_company_ceo_text {
  position: static;
  bottom: 0;
  left: 1rem;
  font-size: clamp(1rem, 1vw, 1.2rem);
	margin-left: 2vw;
}
.page_company_ceo_text span {
  font-size: clamp(0.7rem, 1vw, 0.8rem);
}
.page_company_photo {
  width: 100%;
  height: 100%;
  padding: 0.5rem;
}
.page_company_photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  overflow: hidden;
}
ul.page_company_hyo {
  margin: 2vw 0 3vw;
  padding: 0 2vw 6vw;;
  list-style: none;
  padding-top: 1.5vw;
}
ul.page_company_hyo::before {
	display: none;
	/*
  content: "";
  position: absolute;
  right: 0%;
  top: 0%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #FFF;
  margin-left: -18vh;
	*/
}
ul.page_company_hyo::after {
	display: none;
	/*
  content: "";
  position: absolute;
  top: 0%;
  transform: translateY(-50%);
  width: 3vh;
  height: 3px;
  border-radius: 999px;
  background-color: #FFF;
  right: 0%;
	*/
}
li.page_company_hyo_li {
  position: relative;
  color: #FFF;
  text-decoration: none;
  font-size: clamp(0.6rem, 1vw, 1rem);
  text-align: left;
  width: 100%;
  margin-bottom: 2.5vw;
}
li.page_company_hyo_li::before {
  content: "";
  position: absolute;
  right: 0%;
  top: 130%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #FFF;
  margin-left: -18vh;
}
li.page_company_hyo_li::after {
  content: "";
  position: absolute;
  top: 130%;
  transform: translateY(-50%);
  width: 3vh;
  height: 3px;
  border-radius: 999px;
  background-color: #FFF;
  right: 0%;
}
dl.page_company_hyo_inner {}
dl.page_company_hyo_inner dt {
  text-align: center;
}
dl.page_company_hyo_inner dd {}
.page_company_map {
  width: 100%;
  height: 400px;
  padding: 0rem;
  filter: grayscale(100%) brightness(90%);
	margin: 2vw auto 6vw;
	}
/* =========================
      ERBENの家
    ========================= */
.contents-y {
  /*
  height: 100vh;
	*/
  overflow-y: scroll;
  scroll-snap-type: y;
}
.contents-y::-webkit-scrollbar {
  display: none;
}
.item {
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 86px);
}
.contents-y .item {
  width: 100%;
  height: calc(100vh - 86px);
  position: relative;
  top: 0;
  left: 0;
}
	.contents-y .item_mushi {
  width: 100%;
  height: auto;
  position: relative;
  top: 0;
  left: 0;
}
.item:nth-child(1) {}
.item:nth-child(2) {}
.item:nth-child(3) {}
.item:nth-child(4) {
  ;
}
.item:nth-child(5) {
  ;
}
.page_phy_a {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
  position: relative;
}
.page_phy_b {
  position: static;
  width: 100%;
  height: 10vh;
  top: 0;
  left: 0;
}
.page_phy_b h2 {
  color: #FFF;
  font-size: clamp(1.5rem, 2rem, 2.5vw);
  display: flex;
  align-items: center;
  height: 10vh;
  margin: 0;
  padding: 0 0 0 8vw;
}
.page_phy_c {
  position:static;
  width: 100%;
  height: calc(100vh - 86px);
  top: 0;
  left: 0;
  background: url("images/erben_phy_back01.jpg");
  background-size: cover;
  background-position: center center;
}
.page_phy_c_inner {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.page_phy_c_inner_a {
  position: relative;
  width: 100%;
   height: calc(100vh - 86px);
  bottom: 0px;
  left: 0;
}
.page_phy_d {
  position: absolute;
	top:25%;
  right: 8vw;
  height: auto;
  width: 80vw;
}
p.page_phy_d_p01 {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  margin-bottom: 8vw;
	margin-left: 8vw;
	padding-top: 8vw;
}
p.page_phy_d_p02 {
  font-size: clamp(0.8rem, 1vw, 1rem);
	margin: 0 4vw 8vw 8vw;
  line-height: 2;
}
.page_phy_e {
  position: relative;
  width: 100%;
  height: calc(100vh - 86px);
  overflow: hidden;
  background: #000;
}
.movie-bg_2 {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.movie-bg_2 video {
  width: 100%;
  height: calc(100vh - 86px);
  object-fit: cover;
}
.movie-filter_2 {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.5);
  height: calc(100vh - 86px);
}
.page_phy_f-a {
  position: relative;
  top: 0;
  left: 0;
  height: calc(100vh - 86px);
  width: 100%;
}
.page_phy_f {
  position: absolute;
	top:30%;
  left: 8vw;
  height: auto;
  width: 80vw;
  color: #473933;
}
.page_phy_g {
  background: url("images/erben_phy_back02.jpg");
  background-size: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page_phy_h {
  width: 100%;
  height:100%;
  background: url("images/erben_phy_h_back.png");
  background-size: cover;
  background-position: center center;
}
.page_phy_h-3 {
  width: 100%;
  height: auto;
  position: relative;
}
.page_phy_h-text {
  position: static;
  top: 0;
  left: 0;
  height: auto;
  width: 100%;
	padding-right: 2vw;
}
.page_phy_h_image {
  position: static;
  height: auto;
  width: 100%;
  top: 18%;
  left: 0;
}
.page_phy_h_image_inner {
  max-width: 100%;
  height: auto;
  display: inherit;
  justify-content: center;
  margin: 0 auto;
}
.page_phy_h_image-a {
  width: 100%;
  height: auto;
}
.page_phy_h_image-a-1 {
  width: 100%;
  height: 20vw;
  position: static;
	margin-bottom: 6vw;
}
.page_phy_h_image-a-1_p01 {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  font-size: clamp(1.8rem, 1.5vw, 2rem);
  text-align: center;
}
.page_phy_h_image-a-1_p01 p {
  position: relative;
  color: #FFF;
  text-decoration: none;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  text-align: left;
padding-left: 8vw;
}
/* ベースの細い線 */
.page_phy_h_image-a-1_p01 p::before {
  content: "";
  position: absolute;
  left: 00%;
  top: 120%;
  transform: translateY(-50%);
  width: 48%;
  height: 1px;
  background-color: #FFF;
  margin-left: 8vw;
}
/* 右側20%だけ太い線 */
.page_phy_h_image-a-1_p01 p::after {
  content: "";
  position: absolute;
  top: 120%;
  transform: translateY(-50%);
  width: 6%;
  height: 2px;
  border-radius: 999px;
  background-color: #FFF;
  left: 58%;
}
.page_phy_h_image-a-1_p01 {
  position: absolute;
  top: 10%;
  left: 0%;
  width: 100%;
  font-size: clamp(1.5rem, 1.5vw, 1.8rem);
  text-align: left;
}
.page_phy_h_image-a-1_p02 {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  font-size: clamp(0.8em, 1vw, 1rem);
  text-align: left;
  padding-left: 8vw;
}
.page_phy_h_image-a-1_p03 {
  position: absolute;
  top: 10%;
  right: 0%;
  width: 100%;
  text-align: center;
	
}
.page_phy_h_image-a-1_p03 p {
  position: relative;
  color: #FFF;
  text-decoration: none;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  text-align: right;
	margin-right: 8vw;
}
/* ベースの細い線 */
.page_phy_h_image-a-1_p03 p::before {
  content: "";
  position: absolute;
  right: 8vw;
  top: 120%;
  transform: translateY(-50%);
  width: 58%;
  height: 1px;
  background-color: #FFF;
  margin-left: 42%;
}
/* 右側20%だけ太い線 */
.page_phy_h_image-a-1_p03 p::after {
  content: "";
  position: absolute;
  top: 120%;
  transform: translateY(-50%);
  width: 6%;
  height: 2px;
  border-radius: 999px;
  background-color: #FFF;
  left: 43%;
}
.page_phy_h_image-a-1_p04 {
  position: absolute;
  top: 50%;
  left: 18%;
  width: auto;
  font-size: clamp(0.8em, 1vw, 1rem);
  text-align: left;
  padding-right: 8vw;
	
}
.page_phy_h_image-a-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(12.5vh, 15vh, 17.5vh);
  width: 100%;
  padding: 0vw 0;
	position:relative;
	
	opacity: 0.6;
	margin-bottom:30vw;
}
.page_phy_h_image-a-2 img {
	position: absolute;
	top: 0vw;
	left: 10%;
	height: auto;
  width: 60%;
	margin:0 10%;
}
.page_phy_i {
  position: static;
  left: 0;
  bottom: 5vw;
  padding: 0 8vw 8vw;
}
.page_phy_i p {
  font-size: clamp(0.6rem, 0.7rem, 0.8rem);
}
.page_phy_j {
  background: url("images/erben_phy_back03.jpg");
  background-size: cover;
  width: 100%;
  height: calc(100vh - 86px);
  overflow: hidden;
}
.page_phy_k {
  background: rgba(175, 172, 158, 0.6);
  width: 100%;
  height: calc(100vh - 86px);
  overflow: hidden;
}
.page_phy_m {
  width: 100%;
  height: auto;
	padding: 20vw 8vw;
	display: flex;
	align-items: center;
	
	background-color: rgba(71,57,51,0.4);
}
.page_phy_n {
  width: 100%;
  height:auto;
  position: static;
  margin: 0rem auto;
}
.page_phy_o {
  position: static;
  height: auto;
  width: 100%;
  bottom: 0;
  left: 0;
  border-top: none;
	border-bottom: #FFF 1px solid;
  padding: 1vw 0 3vw;
	
	margin-bottom: 5vw;
}
.page_phy_o-1 {
  height:auto;
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  margin-bottom: 0.5vw;
	padding: 2vw;
}
.page_phy_o-2 {
  font-size: clamp(0.8rem, 1.3vw, 0.8rem);
	padding: 0 2vw;
}
/* 時間差 */
.page_phy_n_1 {
  transition-delay: 0.1s;
}
.page_phy_n_2 {
  transition-delay: 0.3s;
}
.page_phy_n_3 {
  transition-delay: 0.5s;
}
.page_phy_n_4 {
  transition-delay: 0.7s;
}
.page_phy_n_5 {
  transition-delay: 0.9s;
}
.page_phy_n_6 {
  transition-delay: 1.1s;
}
.page_phy_j {
  background: url("images/erben_phy_back03.jpg");
  background-size: cover;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.page_phy_k {
  background: rgba(175, 172, 158, 0.6);
  width: 100%;
  height: auto;
  overflow: hidden;
}
.page_phy_p {
  background: url("images/erben_phy_back04.jpg");
  background-size: cover;
  width: 100%;
  height: auto;
}
.page_phy_r {
  background: rgba(71, 72, 55, 0.4);
  width: 100%;
  height:auto;
  overflow: hidden;
}
	
	.page_phy_w {
  width: 100%;
  height: auto;
  position: relative;
}
	
	
	
	
.page_phy_s {
  position: static;
  height: auto;
  width: 100%;
  bottom: 0;
  left: 0;
  border-top: none;
	border-bottom: #FFF 1px solid;
  padding: 1vw 0 3vw;
	margin-bottom: 5vw;
}

.page_phy_s span {
  display: block;
  margin-top: 1vw;
  font-size: clamp(0.7rem, 1vw, 0.8rem);
}
.page_phy_t {
  width: 100%;
  height: calc(100vh - 86px);
}
.page_phy_u {
  background: url("images/erben_phy_back05.jpg");
  background-size: cover;
  width: 100%;
  height: calc(50vh - 43px);
  overflow: hidden;
}
.page_phy_u-2 {
  background: rgba(71, 72, 55, 0.4);
  width: 100%;
  height: calc(50vh - 43px);
  overflow: hidden;
}
.page_phy_u-3 {
  width: 100%;
  height: calc(50vh - 43px);
  display: flex;
  align-items: center;
}
.page_phy_u-4 {
  height: auto;
  width: 70vw;
	padding-left: 8vw;
}
p.page_phy_u_p01 {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  margin-bottom: 4vw;
}
p.page_phy_u_p02 {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  line-height: 2;
}
.page_phy_v {
  background: url("images/erben_phy_back06.jpg");
  background-size: cover;
  width: 100%;
  height: calc(50vh - 43px);
  overflow: hidden;
}
.page_phy_v-2 {
  height: auto;
  width: 70vw;
  margin-left: 22vw;
	margin-right: 8vw;
}

/* =========================
      問い合わせ
    ========================= */

.page_contact_catch {
  height: 15vh;
  background: url("images/erben_phy_back05.jpg");
  background-size: cover;
  background-position: center center;
}

.page_contact {
  margin-bottom: 5vw;
}

ul.page_contact_hyo {
  margin: 0 0 2vw;
  padding: 0 2vw;
  list-style: none;
  padding-top: 1.8vw;
}
ul.page_contact_hyo::before {
  content: "";
  position: absolute;
  right: 0%;
  top: 0%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #FFF;
  margin-left: -18vh;
}
ul.page_contact_hyo::after {
  content: "";
  position: absolute;
  top: 0%;
  transform: translateY(-50%);
  width: 3vh;
  height: 3px;
  border-radius: 999px;
  background-color: #FFF;
  right: 0%;
}
li.page_contact_hyo_li {
  position: relative;
  color: #FFF;
  text-decoration: none;
  font-size: clamp(1rem, 1vw, 1.2rem);
  text-align: left;
  width: 100%;
  margin-bottom:4vw;
	padding-top: 6vw;
}
li.page_contact_hyo_li::before {
  content: "";
  position: absolute;
  right: 0%;
  top: 110%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #FFF;
  margin-left: -18vh;
}
li.page_contact_hyo_li::after {
  content: "";
  position: absolute;
  top: 110%;
  transform: translateY(-50%);
  width: 3vh;
  height: 3px;
  border-radius: 999px;
  background-color: #FFF;
  right: 0%;
}
dl.page_contact_hyo_inner {}
dl.page_contact_hyo_inner dt {
  text-align: left;
	padding-bottom: 3vw;
}
dl.page_contact_hyo_inner dd {}
	


p.page_contact_p01{
	font-size: clamp(0.8rem, 1vw, 1rem);
	padding: 0 2vw;
}
	
	}