/*---------------
loading
---------------*/
#loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  background: linear-gradient(to bottom, #3A38A8 0%, #5F70D3 50%, #85A7FF 100%);
}

.panel {
  width: 100%;
  height: 100%;
  opacity: 1;
  /* opacityとtransformの両方を0.5sで変化させる */
  transition: opacity 0.5s ease-in, transform 0.5s ease-in;
}
.panel.p1 {
  position: absolute;
  top: -192px;
  left: -436px;
}
.panel.p2 {
  position: absolute;
  top: 704px;
  left: -368px;
}
.panel.p3 {
  position: absolute;
  top: -192px;
  left: 191px;
}
.panel.p4 {
  position: absolute;
  top: -192px;
  left: 299px;
}
.panel.p5 {
  position: absolute;
  top: -192px;
  left: 844px;
}

.panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 重なり順の設定（1が一番上） */
.p1 { z-index: 500; }
.p2 { z-index: 450; }
.p3 { z-index: 400; }
.p4 { z-index: 350; }
.p5 { z-index: 0; }

/* はける動きの定義 */
/* 1, 2, 3 は左へ500px */
.is-out-left {
  opacity: 0;
  transform: translateX(-500px);
}

/* 4, 5 は右へ500px */
.is-out-right {
  opacity: 0;
  transform: translateX(500px);
}

.loading-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 600;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: opacity;
  width: 70px; /* ロゴの基本サイズ */
}

.loading-logo img {
  width: 70px;
}

/* ロゴ巨大化クラス（5000%） */
.logo-zoom {
  opacity: 0 !important;
}

@media screen and (min-width: 769px) {
  /* 共通設定 */
  .pc-layer01, .pc-layer02{
    opacity: 0;
    transition: opacity 1.5s ease, transform 1.0s ease;
  }
  .pc-layer01 {
    transform: translateX(500px);
  }
  .pc-layer02 {
    transform: translateX(-500px);
  }
  .is-visible {
    opacity: 1;
    transform: translateX(0); /* 元の位置（中央）に戻る */
  }
}
@media screen and (max-width: 768px) {
	.sp-layer01, .sp-layer02 {
    opacity: 0;
    transition: opacity 1.5s ease, transform 1.0s ease;
  }
  .sp-layer01 { transform: translateX(200px); }
  .sp-layer02 { transform: translateX(-200px); }
  .is-visible {
    opacity: 1;
    transform: translateX(0); /* 元の位置（中央）に戻る */
  }
}

/*---------------
MV Section
---------------*/
#hero {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 2003;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg{
	position: relative;
	display: contents;
}
.pc-hero-bg{
	position: absolute;
	top: -256px;
	left: 230px;
	z-index: 10;
	width: 100vw;
	height: auto;
	aspect-ratio: 1442 / 1601;
}
.pc-hero-bg img{
	width: 100vw;
	height: auto;
	aspect-ratio: 1442 / 1601;
	object-fit: cover;
}
.hero-layer{
	position: relative;
	height: 100%;
	width: 100%;
	display: contents;
}
.hero-layer .pc-layer01{
	position: absolute;
	top: -850px;
	left: -90px;
	z-index: 20;
	width: 70vw;
	height: auto;
	aspect-ratio: 1003 / 2863;
}
.hero-layer .pc-layer02{
	position: absolute;
	top: -97px;
	right: 0;
	z-index: 30;
	width: 479px;
	height: auto;
	aspect-ratio: 479 / 1046;
}
.hero-layer .pc-layer03{
	position: absolute;
	top: 801px;
	left: -126px;
	z-index: 40;
	width: 365px;
	height: auto;
	aspect-ratio: 365 / 1211;
}
.hero-layer .pc-layer04{
	position: absolute;
	top: 26vw;
	left: -90px;
	z-index: 1;
	width: 142vw;
	height: auto;
	aspect-ratio: 2046 / 1220;
}
.hero-layer .pc-layer01 img{
	width: 70vw;
	height: auto;
	aspect-ratio: 1003 / 2863;
}
.hero-layer .pc-layer02 img{
	width: 479px;
	height: auto;
	aspect-ratio: 479 / 1046;
}
.hero-layer .pc-layer03 img{
	width: 365px;
	height: auto;
	aspect-ratio: 365 / 1211;
}
.hero-layer .pc-layer04 img{
	width: 142vw;
	height: auto;
	aspect-ratio: 2046 / 1220;
}
.hero-inner {
  position: absolute;
  top: 240px;
  left: 16.6vw;
  z-index: 50;
}
.main-copy {
  font-weight: 700;
  color: var(--text-sub);
  margin-bottom: 60px;
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.hero-nav ul {
  list-style: none;
  padding: 0;
}
.hero-nav li {
  margin-bottom: 20px;
}
.hero-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--text-sub);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.3s ease;
  padding-left: 25px;
}

.hero-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.hero-nav a:hover {
  opacity: 0.7;
}

.hero-nav a:hover::before {
  transform: translateY(-50%) scale(1.5);
}

@media all and (max-width: 786px) {
	#hero {
	  position: relative;
	  width: 100%;
	  min-height: 1300px;
	}
	.hero-bg{
		overflow: hidden;
	}
	.sp-hero-bg{
		position: absolute;
		top: -96px;
		left: -353px;
		z-index: 10;
		height: 1407px;
		width: 1267px;
	}
	.sp-hero-bg img{
		height: 1407px;
		width: 1267px;
		object-fit: cover;
	}
	.hero-layer{
	}
	.hero-layer .sp-layer01{
		position: absolute;
		top: 0;
		left: -38px;
		z-index: 10;
		height: 690px;
		width: 242px;
	}
	.hero-layer .sp-layer02{
		position: absolute;
		top: 0;
		left: 66px;
		z-index: 10;
		height: 1046px;
		width: 479px;
	}
	.hero-layer .sp-layer01 img{
		height: 690px;
		width: 242px;
	}
	.hero-layer .sp-layer02 img{
		height: 1046px;
		width: 479px;
	}
	.hero-inner {
	  position: absolute;
	  top: 175px;
	  left: 20px;
	}
	.main-copy {
	  margin-bottom: auto;
	}
	.hero-nav ul {
	  display: none;
	}
	.hero-nav li {
	}
	.hero-nav a {
	}
	.hero-nav a::before {
	}
	.hero-nav a:hover {
	}
	.hero-nav a:hover::before {
	}
}

#about {
  position: absolute;
  z-index: 100;
  top: 800px;
  left: 33.3vw;
  overflow: hidden;
}
.about-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.about-head h2, .about-head p {
	color: var(--text-sub);
	font-weight: bold;
}
.about-lead-wrap.pc {
	margin: 54px 0;
	display: block;
}
.about-lead-wrap.sp {
	margin: 40px 0;
	display: none;
}
.lead-line {
  overflow: hidden;
  margin-bottom: 8px;
}
.lead-line:nth-child(2) {
  overflow: hidden;
  margin-bottom: 60px;
}
.lead-line span {
  display: inline-block;
  background: #fff;
  color: var(--main-color);
  padding: 0 15px;
  transform: translateX(-101%);
  transition: transform 2.0s cubic-bezier(0.25, 1, 0.5, 1);
}
.lead-line.is-active span {
  transform: translateX(0);
}
.top-about-forward {
  height: 60px;
  width: 432px;
  display: flex;
  background: rgba(255, 255, 255, 0.8);
  filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.12));
  overflow: hidden;
}
.top-about-forward .top-about-forward-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  width: 100%;
  padding: 0 45px 0 24px;
  position: relative;
  text-decoration: none;
}
.top-about-forward .top-about-forward-inner img {
  transition: transform 0.3s ease-out;
  height: 5px;
  width: 51.5px;
}
.top-about-forward .top-about-forward-inner p {
  color: var(--main-color);
  font-weight: bold;
  margin: 0;
}
.top-about-forward .top-about-forward-inner:hover img {
  transform: translateX(10px);
}
@media all and (max-width: 786px) {
	#about {
	  top: 495px;
	  left: 0;
	  width: 100%;
	}
	.about-container {
	  position: relative;
	  z-index: 10;
	  max-width: calc(100% - 40px);
	  margin: 0 auto;
	  padding: 0;
	}
	.about-head h2, .about-head p {
	}
	.about-lead-wrap.pc {
		margin: 40px 0;
		display: none;
	}
	.about-lead-wrap.sp {
		margin: 40px 0;
		display: block;
	}
	.lead-line {
	  margin-bottom: 4px;
	}
	.lead-line:nth-child(2) {
	  margin-bottom: 4px;
	}
	.lead-line:nth-child(3) {
	  overflow: hidden;
	  margin-bottom: 40px;
	}
	.lead-line:nth-child(6) {
	  overflow: hidden;
	  margin-bottom: 40px;
	}
	.lead-line span {
	  display: inline-block;
	}
	.lead-line.is-active span {
	}
	.top-about-forward {
	  height: 48px;
	  width: 240px;
	  display: flex;
	}
	.top-about-forward .top-about-forward-inner {
		height: 48px;
		padding: 0 16px 0;
	}
	.top-about-forward .top-about-forward-inner img {
	}
	.top-about-forward .top-about-forward-inner p {
	}
	.top-about-forward .top-about-forward-inner:hover img {
	}
}

/*---------------
News Section
---------------*/
#top-news-list{
	min-height: 120px;
	width: 100vw;
	position: fixed;
	bottom: 0;
	z-index: 999;
	background: rgba(255, 255, 255, 0.8);
	transition: transform 1.0s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.0s ease;
  transform: translateY(0);
  opacity: 1;
}
#top-news-list.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.top-news-head{
	position: absolute;
	top: -30px;
	left: 16.6vw;
	height: 20px;
}
.top-news-head h2{
	font-weight: bold;
	color: var(--text-sub);
}
.top-news-list{
	min-height: 130px;
	width: 100%;
	padding: 35px 16.6vw;
}
.top-news-wrap > ul > li{
}
.top-news-wrap > ul > li:not(:last-child) {
    margin-bottom: 20px;
}
.latest-news-item{
	display: flex;
	align-items: center;
	height: 51.5px;
}
.latest-news-item p{
	font-weight: bold;
}
.latest-news-item span{
	height: 51.5px;
	color: var(--main-color);
	margin: 0 24px;
	border: 1px solid;
}
.latest-news-item h3{
}
.top-news-forward{
	position: absolute;
	top: -30px;
	right: 30px;
	height: 20px;
  width: 130px;
  display: flex;
}
.top-news-forward .top-news-forward-inner{
  display: flex;
  justify-content: space-between;
  height: 20px;
  width: 130px;
}
.top-news-forward .top-news-forward-inner img{
  transition: transform 0.3s ease-out;
  height: 5px;
  width: 51.5px;
  margin: 7.5px 0;
}
.top-news-forward .top-news-forward-inner p{
 	color: var(--text-sub);
  font-weight: bold;
  margin: 0;
}
.top-news-forward .top-news-forward-inner:hover img {
  transform: translateX(10px);
}
@media all and (max-width: 768px) {
	#top-news-list{
		width: 100%;
		position: relative;
	}
	#top-news-list.is-hidden {
	}
	.top-news-head{
		position: absolute;
		top: -40px;
		left: 20px;
		height: 30px;
	}
	.top-news-head h2{
		font-weight: bold;
		color: var(--text-sub);
	}
	.top-news-list{
		padding: 20px 24px;
	}
	.top-news-wrap > ul > li{
	}
	.top-news-wrap > ul > li:not(:last-child) {
	   margin-bottom: 20px;
	}
	.latest-news-item{
		display: block;
	}
	.latest-news-item p{
	}
	.latest-news-item span{
		height: auto;
		margin: 24px 0;
    border-bottom: 1px solid;
    display: block;
    width: 50px;
	}
	.latest-news-item h3{
	}
	.top-news-forward{
		position: absolute;
		top: -30px;
		right: 15px;
		height: 20px;
	  display: flex;
	}
	.top-news-forward .top-news-forward-inner{
	}
	.top-news-forward .top-news-forward-inner img{
	}
	.top-news-forward .top-news-forward-inner p{
	}
	.top-news-forward .top-news-forward-inner:hover img {
	}
}

/*---------------
Service Section
---------------*/
#service{
  position: relative;
  background: linear-gradient(to bottom, #f5f5f5 50%, #333333 50%);
}
.service-container {
	padding-top: 120px;
  max-width: 960px;
  margin: 0 auto;
}
.service-header {
  margin-bottom: 60px;
}
.service-header h2 {
	color: var(--main-color);
	margin-bottom: 10px;
	font-weight: 700;
}
.service-header p {
	color: var(--main-color);
}
.service-content {
  position: relative;
}
.service-visual {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
}
.visual-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.visual-item.active {
  opacity: 1;
  z-index: 2;
}
.visual-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 画像の上の文字（不動産売買仲介など） */
.visual-overlay h3 {
  position: absolute;
  top: 50px;
  left: 50px;
  color: var(--text-sub);
  font-weight: 700;
}
/* メニューリスト */
.service-menu {
  list-style: none;
  padding: 40px 0;
}
.service-menu li {
  color: #999;
  font-size: 16px;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  transition: color 0.3s;
}
.service-menu li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 15px; height: 1px;
  background: #999;
}
.service-menu li.active {
  color: var(--text-sub);
}
.service-menu li.active::before {
  background: #fff;
}

@media all and (max-width: 768px) {
	#service{
	}
	.service-container {
		padding-top: 80px;
	  max-width: 100%;
	  margin: 0 20px;
	}
	.service-header {
	}
	.service-header h2 {
		margin-bottom: 8px;
	}
	.service-header p {
	}
	.service-content {
	}
	.service-visual {
	  position: relative;
	  width: 100%;
	  height: 170px;
	}
	.visual-item {
	}
	.visual-item.active {
	}
	.visual-item img {
	}
	/* 画像の上の文字（不動産売買仲介など） */
	.visual-overlay h3 {
	  position: absolute;
	  top: 20px;
	  left: 12px;
	  color: var(--text-sub);
	}
	.service-menu {
	  list-style: none;
	  padding: 40px 0;
	}
	.service-menu li {
	  color: #999;
	  font-size: 16px;
	  margin-bottom: 15px;
	  cursor: pointer;
	  position: relative;
	  padding-left: 30px;
	  transition: color 0.3s;
	}

	.service-menu li::before {
	  content: "";
	  position: absolute;
	  left: 0; top: 50%;
	  width: 15px; height: 1px;
	  background: #999;
	}
	.service-menu li.active {
	  color: var(--text-sub);
	}
	.service-menu li.active::before {
	  background: #fff;
	}
}

/*---------------
Works Section
---------------*/
#works{
	display: flex;
	position: relative;
	width: 100vw;
	height: 1000px;
	overflow: hidden;
}
.top-works-bg-container{
	position: absolute;
	top: 0;
  left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	display: flex;
}
.bg-panel {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
    
    /* 初期状態：下に配置 + 透明 */
    transform: translateY(100%);
    opacity: 0;
    
    /* 滑らかさを生むベジェ曲線 */
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);

    /* 画像パス：style.cssから見た画像フォルダへの相対パスに変更してください */
    background-image: url('https://test.landall.jp/wp-content/themes/jinr-child/images/top/works-bg.jpg'); 
    background-size: 100vw 100%;
    background-repeat: no-repeat;
    
    /* 6分割を1枚の絵に見せるための位置計算 */
    background-position: calc(var(--i) * (100% / 5)) center;
}

/* クラス付与でスライドアップ */
.bg-panel.is-visible {
  transform: translateY(0);
  opacity: 1 !important;
}
.top-works-head {
  width: 50%;
  padding: 51px 0 25px 16.6vw;
}
.top-works-head h2 {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-sub);
}
.top-works-head h3 {
  font-weight: 700;
  color: var(--text-sub);
}
.top-works-list{
	position: absolute;
	top: 300px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 1000px;
	max-width: 1000px;
}
.top-works-wrap{
	margin-bottom: 150px;
}
.top-works-wrap > ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.top-works-wrap > ul > li{
	position: relative;
	height: 370px;
	width: calc((100% - 60px) / 3);
	margin-bottom: 24px;
	background: rgba(255, 255, 255, 0.8);
}
.top-works-wrap > ul > li .top-works-img{
	margin-bottom: 24px;
}
.top-works-wrap > ul > li .top-works-img img{
	width: 100%;
}
.top-works-wrap > ul > li .top-works-address{
	color: var(--text-main);
	margin-bottom: 16px;
	letter-spacing: 0.2em;
	text-align: center;
}
.top-works-wrap > ul > li .top-works-cat{
	color: var(--text-main);
	letter-spacing: 0.2em;
	text-align: center;
}
@media all and (max-width: 768px) {
  #works {
    flex-direction: column;
    height: auto;
    min-height: 800px;
    padding-bottom: 60px;
  }
  .top-works-bg-container{
    height: 100%; /* 親の#works全体をカバーするように変更 */
    position: absolute; /* 背景として背面に固定 */
    top: 0;
    left: 0;
    width: 100%;
  }
  .bg-panel {
    background-position: calc(var(--i) * (100% / 5)) center;
		min-width: calc(100vw / 6);
		background-image: url('https://test.landall.jp/wp-content/themes/jinr-child/images/top/works-bg-sp.jpg'); 
  }
  .top-works-head {
    width: 100%;
    padding: 154px 20px 0;
  }
  .top-works-list {
    position: relative;
    top: 0;
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
  }
  .top-works-wrap {
    margin-bottom: 40px;
  }
  /* スライダー本体の構築 */
  .top-works-wrap > ul {
    display: flex;
    flex-wrap: nowrap; /* 折り返さない */
    overflow-x: auto; /* 横スクロール許可 */
    scroll-snap-type: x mandatory; /* スナップ効果 */
    -webkit-overflow-scrolling: touch;
    padding: 0 20px 20px;
    gap: 15px;
  }

  /* スクロールバーを非表示にする（任意） */
  .top-works-wrap > ul::-webkit-scrollbar {
    display: none;
  }

  .top-works-wrap > ul > li {
    flex: 0 0 80%; /* 1枚の幅を80%にして右端を少し見せる */
    height: auto;
    width: auto;
    margin-bottom: 0;
    scroll-snap-align: center; /* 中央で止まる */
    background: rgba(255, 255, 255, 0.9);
    padding-bottom: 24px;
  }
}

/*----- works-forward -----*/
.top-works-forward {
  height: 60px;
  width: 432px;
  display: flex;
  background: rgba(255, 255, 255, 0.8);
  filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.12));
  overflow: hidden;
  float: right;
}

.top-works-forward .top-works-forward-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  width: 100%;
  padding: 0 45px 0 24px;
  position: relative;
  text-decoration: none;
}

.top-works-forward .top-works-forward-inner img {
  transition: transform 0.3s ease-out;
  height: 5px;
  width: 51.5px;
}

.top-works-forward .top-works-forward-inner p {
  color: var(--main-color);
  font-weight: bold;
  margin: 0;
}

.top-works-forward .top-works-forward-inner:hover img {
  transform: translateX(10px);
}
@media all and (max-width: 768px) {
	.top-works-forward {
	  height: 48px;
	  width: 240px;
	  float: left;
	  margin-left: 20px;
	}
	.top-works-forward .top-works-forward-inner {
	  height: 48px;
	  width: 100%;
	  padding: 0 16px 0;
	}
	.top-works-forward .top-works-forward-inner img {
	}
	.top-works-forward .top-works-forward-inner p {
	}
	.top-works-forward .top-works-forward-inner:hover img {
	}
}

/*---------------
Contact Section
---------------*/
.top-contact-wrap{
	position: relative;
	min-height: 1600px;
}
.top-contact-block01{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 66.9vw;
	background-color: var(--main-color);
	color: var(--text-sub);
	padding: 70px 0 0 16.6vw;
}
.top-contact-block01 .contact-header{
	margin-top: 720px
}
.top-contact-block01 h2 {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-sub);
}
.top-contact-block01 h3 {
  font-weight: 700;
  color: var(--text-sub);
}
.top-contact-block02{
	position: absolute;
	bottom: 0;
	right: 0;
	height: 1000px;
	width: 58vw;
	background-color: #f5f5f5;
	color: var(--text-main);
}
.top-contact-block02 .container{
	margin: 80px 0 0 115px;
}
.top-contact-block02 .contact-header{
	display: none;
}
.top-contact-block02 .contact-header h2 {
}
.top-contact-block02 .contact-header h3 {
}
.top-contact-block03 {
  position: absolute;
  top: 133px;
  right: 0;
  width: calc(100% - 16.6vw);
  color: var(--text-main);
}
.top-contact-block03 h2{
	margin-top: -38px;
	height: 34px;
	font-weight: 700;
	color: var(--text-sub);
}
.member-info {
  background: rgba(255, 255, 255, 0.8);
  padding: 60px 64px;
  display: flex;
  gap: 80px;
}
.member-left {
  flex: 0 0 300px;
  border-right: 2px solid #3A38A8;
}
.member-left h3 {
}
.member-left h3 span {
  margin-left: 20px;
}
.member-description {
  line-height: 24px;
  margin-top: 80px;
}
.member-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.member-detail {
  display: flex;
  gap: 22px;
  align-items: center;
}

.member-detail .label {
	font-weight: 700;
}

.member-detail .text {
	line-height: 200%;
}
@media all and (max-width: 786px){
	.top-contact-wrap{
		min-height: 1700px;
	}
	.top-contact-block01{
		height: 1200px;
		width: 100%;
		padding: 70px 20px 0;
		background: linear-gradient(to bottom, #4644AD 0%, #5F70D3 100%);
	}
	.top-contact-block01 .contact-header{
		display: none;
	}
	.top-contact-block01 h2 {
	}
	.top-contact-block01 h3 {
	}
	.top-contact-block02{
		position: absolute;
		bottom: auto;
		top: 529px;
		right: 0;
		left: 0;
		width: 100%;
		padding: 80px 20px 0;
		background: transparent;
	}
	.top-contact-block02 .container{
		margin: 35px 0 0;
	}
	.top-contact-block01 .contact-header{
		margin-top: 0;
	}
	.top-contact-block02 .contact-header h2 {
	  margin-bottom: 8px;
	  color: var(--text-sub);
	  font-weight: 700;
	}
	.top-contact-block02 .contact-header h3 {
	  color: var(--text-sub);
	  font-weight: 700;
	}
	.top-contact-block02 .contact-header{
		display: block;
	}
	.top-contact-block03 {
	  position: absolute;
	  top: 0;
	  right: 0;
	  left: 0;
	  width: calc(100% - 40px);
	  margin: 70px auto 0;
	}
	.top-contact-block03 h2{
		margin-top: -38px;
		height: 31px;
	}
	.member-info {
	  padding: 32px;
	  display: block;
	}
	.member-left {
	  border-right: 0;
	}
	.member-left h3 {
	}
	.member-left h3 span {
	  margin-left: 20px;
	}
	.member-description {
	  margin-top: 36px;
	}
	.member-right {
		margin-top: 25px;
	  flex: 1;
	  display: flex;
	  flex-direction: column;
	  gap: 24px;
	  border-left: 2px solid #3A38A8;
	}
	.member-detail {
	  display: grid;
	  gap: 18px;
	  margin-left: 16px;
	}
	.member-detail .label {
	}
	.member-detail .text {
		line-height: 100%;
	}
}

/*---------------
Map Section
---------------*/
.map-section {
  height: 576px;
  width: 100%;
  display: inline-table;
}
.map-section-wrap{
	display: flex;
	padding-bottom: 800px;
}
.map-placeholder {
  position: relative;
  width: 70%;
  height: 100%;
}
.map-placeholder iframe {
  width: 100%;
  filter: grayscale(100%);
}
.map-overview{
  background: linear-gradient(to right, #3A38A8 0%, #5F70D3 50%, #85A7FF 100%);
  height: 318px;
  width: 30%;
  color: white;
  position: relative;
}
.overview-wrap{
	padding: 24px;
	width: 100%;
	height: 100%;
}
.info-box {
  margin-bottom: 80px;
}
.info-box h2 {
  font-weight: 700;
  margin-bottom: 14px;
}
.info-box h3 {
}
.info-items {
  display: flex;
}
.info-item{
	display: block;
}
.info-item:first-child{
	margin-right: 50px;
}
.info-label{
  font-weight: 700;
  display: block;
}
.info-line{
  height: 1px;
  width: 43px;
  margin: 16px 0;
  background: #fff;
  display: block;
}
.info-value {
	display: block;
}
.google-map-link {
	position: absolute;
	bottom: 0;
	right: 0;
  height: 60px;
  width: 100%;
  display: flex;
  background: rgba(255, 255, 255, 1);
  overflow: hidden;
}

.google-map-link .google-map-link-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  width: 100%;
  padding: 0 45px 0 24px;
  position: relative;
  text-decoration: none;
}

.google-map-link .google-map-link-inner img {
  transition: transform 0.3s ease-out;
  height: 5px;
  width: 51.5px;
}

.google-map-link .google-map-link-inner p {
  color: var(--main-color);
  font-weight: bold;
  margin: 0;
}

.google-map-link .google-map-link-inner:hover img {
  transform: translateX(10px);
}
@media all and (max-width: 786px){
	.map-section {
	  height: 496px;
	  width: 100%;
	  display: inline-table;
	}
	.map-section-wrap{
		display: block;
		padding-bottom: 900px;
	}
	.map-placeholder {
	  width: 100%;
	  height: 224px;
	}
	.map-placeholder iframe {
		height: 224px;
	}
	.map-overview{
	  height: 272px;
	  width: 100%;
	}
	.overview-wrap{
		padding: 24px 20px;
	}
	.info-box {
	  margin-bottom: 40px;
	}
	.info-box h2 {
	}
	.info-box h3 {
	}
	.info-items {
	}
	.info-item{
	}
	.info-item:first-child{
		margin-right: 80px;
	}
	.info-label{
	}
	.info-line{
	}
	.info-value {
	}
	.google-map-link {
		position: absolute;
		bottom: auto;
		top: -48px;
		right: 0;
	  height: 48px;
	  width: 240px;
	}
	.google-map-link .google-map-link-inner {
	  height: 48px;
	  width: 100%;
	  padding: 0 16px 0;
	}
	.google-map-link .google-map-link-inner img {
	}
	.google-map-link .google-map-link-inner p {
	}
	.google-map-link .google-map-link-inner:hover img {
	}
}




