@charset "utf-8";

@media screen and (max-width:767px) {

/* 共通
------------------------------------------------------------*/
body {
	background-color: #ffffff;
	font-family: 'Inter', 'Zen Kaku Gothic New', 'Zen Old Mincho', sans-serif;
	font-size: 16px;
	letter-spacing: 0.01em;
	color: #333;
	overflow-wrap:break-word;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}

  /*-- タグリンク --*/
  body a{text-decoration: none; color:#333;}
  body a:link {text-decoration: none; color:#333;}
  body a:visited{text-decoration: none; color:#333;}
  body a:hover{color:#a9a9a9;}
  body a:active{text-decoration: none;}

  img{
  	width: 100%;
  	height: auto;
  }

  section{
  	clear:both;
  }

  .br-sp{
  	display: block;
  }

  /*-- pc電話発信無効 --*/
  @media(min-width: 768px){
    a[href^="tel:"]{
      pointer-events: none;
    }
  }

  #top-main{
  	width: 100%;
  	height: 100vh;
  	position: relative;
  	background: #fff;
  }

}

@media screen and (max-width:1024px) {

  /*============================
   ナビゲーション ===============*/

  #g-nav{
      /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
      position:fixed;
      z-index: 100;
      /*ナビのスタート位置と形状*/
  	top:0;
      right: -120%;
  	width:100%;
      height: 100vh;/*ナビの高さ*/
  	background:#fff;/*ナビ背景色*/
  	opacity: 0.8;
      /*動き*/
  	transition: all 0.6s;
  }

  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive{
      right: 0;
  }

  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list{
      /*ナビの数が増えた場合縦スクロール*/
      position: fixed;
      z-index: 999;
      width: 100%;
      height: 100vh;/*表示する高さ*/
      overflow: auto;
      -webkit-overflow-scrolling: touch;
  }

  /*ナビゲーション*/
  #g-nav ul {
      /*ナビゲーション天地中央揃え*/
      position: absolute;
      z-index: 999;
      top:50%;
      left:50%;
      transform: translate(-50%,-50%);
  }

  /*リストのレイアウト設定*/

  #g-nav li{
  	list-style: none;
      text-align: center;
  }

  #g-nav li a{
  	color: #333;
  	text-decoration: none;
  	padding:10px;
		padding-bottom: 20px;
  	display: block;
  	text-transform: uppercase;
  	letter-spacing: 0.1em;
  	font-weight: bold;
  }

  /*ホバー半透明*/
  #g-nav li a:hover{
  	opacity: 0.5;
  }
.global-nav-list{
  	margin-top: 0px;
  	margin-right: 0px;
  	letter-spacing: 0.1em;
  	transition: 0.5s;
}
  /*========= ボタンのためのCSS ===============*/
  .openbtn{
    display: block;
  }
  .openbtn{
  	position:fixed;
      z-index: 888;/*ボタンを最前面に*/
  	top:10px;
  	right: 10px;
  	cursor: pointer;
      width: 50px;
      height:50px;
  }
  /*×に変化*/
  .openbtn span{
      display: inline-block;
      transition: all .4s;
      position: absolute;
      left: 14px;
      height: 1px;
      border-radius: 2px;
  	background-color: #666;/*カラー*/
    	width: 45%;
    }

  /*三本線の高さ*/
  .openbtn span:nth-of-type(1) {
  	top:15px;
  }
  .openbtn span:nth-of-type(2) {
  	top:23px;
  }
  .openbtn span:nth-of-type(3) {
  	top:31px;
  }
  /*end//三本線の高さ*/

  .openbtn.active span:nth-of-type(1) {
      top: 18px;
      left: 18px;
      transform: translateY(6px) rotate(-45deg);
      width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
  	opacity: 0;
  }
  .openbtn.active span:nth-of-type(3){
      top: 30px;
      left: 18px;
      transform: translateY(-6px) rotate(45deg);
      width: 30%;
  }


  /*========= ロゴ ===============*/
.header-block{
	width: 100%;
	height: 70px;
	background-color: #fff;
}
  .header-contact-block{
    display: none;
  }
  .header-container{
  	width: 100%;
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
  	justify-content: space-between;
  	margin: 0 auto;
  }
  .main-logo {
  	z-index: 100;
	width: 90%;
  }
.main-logo_txt{
	font-size: 10px;
	padding: 10px 20px 4px;
}
  .main-mark{
  	width: 140px;
  	padding: 2px 20px 10px 20px;
  }

  .global-nav-container{
  	display: none;
  }





/*--------------------------------------------------------
  メインビジュアル
--------------------------------------------------------*/

/* メインキャッチコピー */
.main-catch{
	z-index: 10;
	position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%); /* 横方向だけ中央寄せ */
	width: 100%;

	font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  padding-left: 0%;
  margin-bottom: 100px;

}
.main-catch img{
	opacity: 0.9;
	width: 70%;
	max-width: 400px;
}
.main-catch-text{
	margin-left: 40px;
	line-height: 1.6em;
}
.main-catch-eg{
	margin-top: 40px;
}


/*pcブロック*/
.main-pc{
	display: block;
	width: 100%;
	height: 90vh;
		position: relative;
}

.hero{
  position: relative;
	width: 100%;
	height: 95vh;
}
.video-top{
    width: 100%;
    height:95vh;
    object-fit: cover;
}
}


@media screen and (max-width:768px) {

/*--------------------------------------------------------
売却実績　取引業者一覧
--------------------------------------------------------*/
#results-trader-area{
	margin-top: 0px;
	padding-top: 100px;
}
.results-trader-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* 両端揃え */
  margin: 0;
  padding: 0;
}
.results-trader-banner {
  width: 100%;     
  height: 200px;         /* 2枚で100%ちょうど */
  position: relative;
  margin: 0;               /* 隙間なし */
}
.results-trader-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* 縦横比を維持して全体をカバー */

}
.results-trader-ttl{
	position: absolute;
	top: 38%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);

	letter-spacing: 0.3em;
	padding: 15px 25px;
	background: #333;
	text-align: center;
	color: #fff;
	opacity: 0.7;
	width: 300px;
	font-family: "Zen Old Mincho", serif;
  	font-weight: 700;
  	font-size: 16px;
}

/*--------------------------------------------------------
	  ビジネス
--------------------------------------------------------*/

/*---タイトル---*/
.sec_ttl-left{
	width: 94%;
	margin: 0 auto;
	margin-top: -400px;
}

.ttl-eg-left{
	text-align: left;
	margin: 0 auto;
	font-size: 50px;
	font-weight: 700;
}
.ttl-jp-left{
	text-align: left;
	letter-spacing: 0.1em;
	padding-top: 10px;
  font-size: 18px;
  padding-left: 1%;
  margin-top: -10px;
}

#business-area{
	margin-top: 30px;
}
.backgroud-circle{
	width: 550px;
	margin-left: -150px;
}

.business_body{
	text-align: left;
	line-height: 2.2em;
	margin-top: 20px;
	padding-left: 6px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 14px;
}

.business_body_sp{
	display: none;
}
.business_container{
	width: 94%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px auto;
}
.business_item{
	width: 46%;
}
.business_box{
  width: 100%;
  aspect-ratio: 1 / 1;           /* 正方形にする（対応していない環境では下のmin-heightも併用） */
  border: 2px solid #0E357F;     /* 枠線 */
  display: flex;                 /* 中央揃え */
  align-items: center;
  justify-content: center;
  background-color: #fff;        /* 背景（任意） */
  box-sizing: border-box;
}
.business_box img{
	width: 60%;
	
}
.business_icon_cp{
	font-family: "Zen Kaku Gothic New", sans-serif;
  	font-weight: 700;
	text-align: center;
	padding-bottom: 20px;
	font-size: 16px;
	font-weight: 700;
	margin-top: 8px;
}

/*--------------------------------------------------------
  COMPANY
--------------------------------------------------------*/

#company-area{
	margin-top: 0px;
}

/*---タイトル---*/

.sec_ttl-company{
	width: 100%;
	margin: 0 auto;
	margin-top: -450px;
	margin-bottom: 750px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ttl-eg-right{
	text-align: right;
	margin: 0 auto;
	font-size: 50px;
	font-weight: 700;
	color: #0E357F;
	letter-spacing: 0.02em;
	padding-right: 0%;
}
.ttl-jp-right{
	text-align: right;
	letter-spacing: 0.1em;
	padding-top: 15px;
		font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  padding-left: 6px;
  margin-top: -10px;
  	padding-right: 0%;
}

.company-left{
	width: 90%;
}
.company-right{
		width: 94%;
		margin: 20px auto;
}
.company_body{
	text-align: right;
	line-height: 2.2em;
	margin-top: 40px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size:14px;

}
.company_body {
  width: 100%;
  text-align: right;
  padding-right: 0%;
  margin-top: 20px;
}
.backgroud-circle-right{
	width: 100%;
	margin-right: 0;
	margin-left: auto;

}
/*--------------------------------------------------------
  お客様の声
--------------------------------------------------------*/
#voice-area{
	margin: 200px auto 0px;
		width: 100%;
	background-image:url("../images/voice-back.jpg");
	background-size: cover;
	background-position: center center;
	height: 340px;
}

/*----タイトル----*/
.sec_ttl-center{
	width: 100%;
	margin: 0 auto;
	margin-top: -680px;
}

.ttl-eg-center{
	text-align: center;
	margin: 0 auto;
	font-size: 50px;
	font-weight: 700;
	color: #0E357F;
	letter-spacing: 0.02em;
}
.ttl-jp-center{
	text-align: center;
	letter-spacing: 0.1em;
	padding-top: 15px;
		font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  padding-left: 6px;
  margin-top: -10px;
}
.voice_body{
	width: 90%;
	margin: 30px auto;
	text-align: left;
	line-height: 2.2em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 14px;
}

/*--------------------------------------------------------
  blog
--------------------------------------------------------*/
.blog_section{
	width: 100%;
	background-color: #0E357F;
}
/*--- タイトル ---*/
.sec_ttl-blog{
	width: 86%;
	margin: 0 auto;
}

.ttl-eg-blog{
	text-align: left;
	margin: 0 auto;
	font-size: 50px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.02em;
		padding-top: 40px;
}
.ttl-jp-blog{
	text-align: left;
	letter-spacing: 0.1em;
	padding-top: 15px;
		font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  padding-left: 2px;
  margin-top: -10px;
  color: #fff;
}
.blog_contents{
	width: 100%;
	margin-bottom: 20px;
}
.blog_container{
	width: 86%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
	padding-top: 30px;
}
.blog_container_item{
	width: 100%;
	margin-bottom: 30px;
}


/*--------------------------------------------------------
recruit
--------------------------------------------------------*/
#recruit-area{
	width: 100%;
	background-image:url("../images/recruit-back.jpg");
	background-size: cover;
	height: 320px;
}

.recruit_bnnr{
	position: relative;
}
.recruit-style{
	position: relative;
}
.recruit-style img{
	opacity: 1;
	transition: 1.0s ;
}
.recruit-style img:hover{
	opacity: 0.5;
}
.recruit_pic{
	margin: 0 auto;
	width: 92%;
	height: 260px;
	padding-top: 30px;
}
.recruit_pic img{
	height: 260px;
	object-fit: cover;
	background-position: center center;
}

.recruit_ttl{
	position: absolute;
	z-index: 10;
	top: 42%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.ttl-rec_eg{
	text-align: center;
	margin: 0 auto;
	font-size: 50px;
	font-weight: 700;
	color: #0E357F;
	letter-spacing: 0.02em;
		padding-top: 120px;
}
.ttl-rec_jp{
	text-align: center;
	letter-spacing: 0.1em;
	padding-top: 15px;
		font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  padding-left: 6px;
  margin-top: -10px;
  color: #333;
}

.more_style_recruit{
	margin: 60px auto 10px;
	width: 100%;
	padding: 20px 40px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.1em;
	background-color: #555;
}


/*--------------------------------------------------------
アクセス
--------------------------------------------------------*/
#access-area{
	margin-top: 40px;
}

.sec_ttl_access{
	text-align: right;
	font-size: 50px;
	font-weight: 700;
	color: #0E357F;
	letter-spacing: 0.02em;
	margin-right: 4%;
	margin-left: auto;
}

.ttl-jp_access{
	padding-top: 15px;
	text-align: right;
	font-family: "Zen Old Mincho", serif;
  	font-weight: 700;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.02em;

  	padding-right: 1%;

	color: #333;
  	margin-top: -10px;
	margin-left: auto;
}

.access_contents{
	margin-top: 20px;
	margin-bottom: 30px;
}
.access_address{
	margin: 30px auto;
	width: 90%;
	line-height: 2em;
	text-align: center;
}
.access_company{
	font-family: "Zen Kaku Gothic New", sans-serif;
  	font-weight: 700;
	font-size: 20px;
	margin-bottom: 10px;
	margin-top: 20px;
}
.access_address p{
	font-family: "Zen Kaku Gothic New", sans-serif;
  	font-weight: 700;
	font-size: 14px;
	margin-bottom: 20px;
	margin-top: 10px;
	letter-spacing: 0.05em;
	line-height: 1.8em;
}
.access_phone{
	font-family: "Inter", sans-serif;
  	font-weight: 700;
	font-size: 24px;
	letter-spacing: 0.08em;
	margin-top: 20px;
}
.access_metro{
	width: 90%;
	margin: 0 auto;
	font-size: 14px;
	font-weight: bold;
	border: solid 1px #555;
	margin-top: 20px;
	padding: 10px ;
}
.access_bottom{
	margin-bottom: 100px;
}
.access_bottom_sp{
	display: none;
}



/*--------------------------------------------------------
コンタクト
--------------------------------------------------------*/
#contact_sec{
	margin-top: 30px;
	background: #F6F6F6;
}
.sec_ttl_contact{
	margin: 20px auto 10px;
	padding-top: 30px;
}

.ttl-eg_contact{
	text-align: center;
	font-size: 50px;
	font-weight: 700;
	color: #0E357F;
	letter-spacing: 0.02em;
}

.ttl-jp_contact{
	padding-top: 10px;
	text-align: center;
	font-family: "Zen Old Mincho", serif;
  	font-weight: 700;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.02em;

  	padding-right: 1%;

	color: #333;
  	margin-top: -10px;
	margin-left: auto;
}

.ttl_back_contact{
	position: absolute;
	z-index: 10;
	top: 5px;
	right: -15px;
	width: 90px;
	opacity: 0.5;
}
.ttl-border_contact{
	border: solid 1px #00bfff;
	width: 360px;
	margin: 0 auto;
}

.contact_container{
	width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding-bottom: 40px;
}
.contact_phone{
	width: 100%;
	background: #0E357F;
	margin: 20px auto 0;
	padding-top: 20px;
}
.contact_mail{
	width: 100%;
	background: #0E357F;
	margin: 20px auto 0;
	padding-top: 20px;
}
.contact_icon{
	margin: 0 auto;
	width: 100px;
	padding: 20px;
}
.contact_number{
	font-family: "Inter", sans-serif;
  	font-weight: 700;
	font-size: 24px;
	text-align: center;
	padding-bottom: 20px;
		letter-spacing: 0.1em;
			color: #fff;
}

.contact_mail_txt{
	font-family: "Zen Kaku Gothic New", sans-serif;
  	font-weight: 700;
	text-align: center;
	padding-top: 10px;
	color: #fff;
	padding-bottom: 20px;
}

.contact_mail_link:hover{
	opacity: 0.5;
	transition: 0.5s ;
}
.contact_mail_link img:hover{
	opacity: 0.5;
	transition: 0.5s ;
}


/*--------------------------------------------------------
フッター
--------------------------------------------------------*/
.footer-pc{
	width: 100%;
}
.footer_nav-block{
	width: 100%;
	background-color: #555;
}
.footer_nav{
		width: 90%;
		margin: 0 auto;
		padding-top: 20px;
		padding-bottom: 20px;
}
.footer_nav a{
   text-decoration: none;
   color: #fff;
		transition: 0.5s;
}
.footer_nav nav{
   margin: 0 0 0 auto;
}
.footer_nav ul{
   list-style: none;
   margin: 0;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   justify-content: left;
}
.footer_nav li{
   margin: 0 auto;
   font-size: 14px;
	line-height: 3em;
	
	  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}


.footer_nav li a{
   color: #fff;
   margin-left: 20px;
   margin-right: 20px;
}
.footer_nav li a:link { color: #fff; }
.footer_nav li a:visited { color: #fff; }
.footer_nav li a:hover { color: #80C8EF; }
.footer_nav li a:active { color: #fff; }

.footer-logo-area{
	margin: 30px auto 10px;
	width: 100%;
}
.footer_logo-block{
	width: 160px;
	margin: 0 auto;
}

.footer_company{
	width:90%;
	margin: 0 auto;
	padding-bottom: 30px;
	font-size: 20px;
	font-family: "Zen Kaku Gothic New", sans-serif;
  	font-weight: 900;
	padding-left: 20px;
	padding-top: 10px;
	letter-spacing: 0.1em;
	text-align: center;
}
.footer_company_inner{
	width: 100%;
	margin: 0 auto 0;
}
.footer_company_catch{
	font-size: 16px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
	padding-top: 10px;
	letter-spacing: 0.1em;
	text-align: center;
	margin-bottom: 20px;
}
.footer_add{
	line-height: 1.8em;
	padding-bottom: 5px;
	font-size: 14px;
	margin-top: 20px;
	letter-spacing: 0.05em;
}
.footer_tel{
	font-size: 24px;
	letter-spacing: 0.05em;
	  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-top: 20px;
  line-height: 1.4em;
  
}
.footer_tel span{
	font-size: 24px;
}
/*-- クレジット --*/
.footer_cr{
	font-family: "Inter", sans-serif;
  	font-weight: 700;
	font-size: 14px;
	padding-bottom: 30px;
	text-align: center;
	width: 100%;
	color: #333;
	letter-spacing: 0.1em;
}






/*--------------------------------------------------------
ボタン
--------------------------------------------------------*/
/* 査定ボタン-PC */
.Satei_button {
  position: absolute;
  bottom: 2vh;
  left: 55%;
  transform: translateX(-55%);
  width: 80%;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.1em;
  z-index: 10;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  
}

/* ボタン本体 */
.btnshine2 {
  position: relative;
    width: 100%;
  display: inline-block;
  overflow: hidden;
  background: #0E357F; /* ボタン色（お好みで変更可） */
  color: #fff;
  padding: 20px 40px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.4s ease;
  z-index: 0;
}


/*円エフェクト-moreボタン*/
.more-center {
  text-align: center;
  width: 92%;
	margin: 20px auto;
}
.more-right{
	text-align: center;
  width: 96%;
  	margin: 20px auto 0;
}
.more-blog {
  text-align: center;
  width: 90%;
	margin: 20px auto 0;
	padding-bottom: 30px;
}

/* ボタン本体 */
.more_style {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #555;
  color: #fff;
  padding: 18px 60px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  transition: background-color 0.4s ease, color 0.4s ease;
  z-index: 0; /* スタッキング文脈を明確化 */
}

/* リンク */
.more_style > a {
  position: relative;
  display: inline-block; /* 必須：インラインだと重なり判定が不安定なことがある */
  color: #fff; /* 常に白文字 */
  text-decoration: none;
  z-index: 2;            /* テキストが円より上 */
}

/* 円 */
.more_style .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  pointer-events: none;
  z-index: 1; /* 背景より上、テキストより下 */
}

/* hover時のエフェクト */
.more_style:hover .circle {
  transform: translate(-50%, -50%) scale(5);
  opacity: 1;
}

.more_style:hover {
  background: #555;
  color: #fff;
}

/* リンクの状態別指定 */
.more_style > a:link,
.more_style > a:visited {
  color: #fff; /* 通常も訪問済みも白 */
  text-decoration: none;
}

.more_style > a:hover,
.more_style > a:active {
  color: #fff; /* hover/クリック中も白のまま */
  text-decoration: none;
}


} /**** END media screen *****/
