@charset "UTF-8";
.is_pc{
	display:block !important;
}
.is_sp{
	display:none !important;
}
@media (max-width:767px) {
	.is_pc{
		display:none !important;
	}
	.is_sp{
		display:block !important;
	}
}
html {
  font-size: 100%;
}
body {
  background-color: #FFFFFF;
  color: #262626;
  font-size: 0.875rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
a {
  color: #000;
  font-size: 1.375rem;
  text-decoration: none;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
.logo {}
/*title*/
h2.section-title {
  width: fit-content;
  margin: 0 auto 80px;
}
.section-title .en {
  width: fit-content;
  padding-top: 20px;
  margin: 0 auto;
  display: block;
  font-size: 0.9375rem;
  letter-spacing: 0.3em;
  color: #90B681;
  letter-spacing: 1px;
}
.section-title .ja {
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 18px;
  display: block;
  font-size: 2.25rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  position: relative;
  letter-spacing: 4px;
}
.section-title .ja:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 16px);
  height: 1px;
  background: #262626;
}
.section-title .ja:after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 5px;
  width: 11px;
  height: 11px;
  border-radius: 10px;
  border: 1px solid #262626;
  box-sizing: border-box;
}


/*title*/
.wrapper {
  width: 100%;
  max-width: 1032px;
  padding: 120px 16px 100px;
  margin: 0 auto;
}
.txt {
/*  font-size: 1rem;*//*202307*/
  font-size: 1.125rem;/*202307*/
  line-height: 32px;
}
@media screen and (max-width: 1400px) {
  h2.section-title {
    margin: 0 auto calc(80/1400 * 100vw);
  }
  .section-title .en {
    padding-top: calc(20/1400 * 100vw);
    font-size: calc(15/1400 * 100vw);
  }
  .section-title .ja {
    padding-bottom: calc(18/1400 * 100vw);
    letter-spacing: calc(4/1400 * 100vw);
    font-size: calc(36/1400 * 100vw);
  }
  .section-title .ja:before {
    width: calc(100% - (16/1400 * 100vw));
  }
  .section-title .ja:after {
    bottom: calc(-5/1400 * 100vw);
    right: calc(5/1400 * 100vw);
    width: calc(11/1400 * 100vw);
    height: calc(11/1400 * 100vw);
    border-radius: calc(10/1400 * 100vw);
  }
  /*title*/
  .wrapper {
    max-width: calc(1032/1400 * 100vw);
    padding: calc(120/1400 * 100vw) calc(16/1400 * 100vw) calc(100/1400 * 100vw);
  }
  .txt {
    font-size: calc(16/1400 * 100vw);
    line-height: calc(32/1400 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  h2.section-title {
    margin: 0 auto 10vw;
  }
  .section-title .en {
    padding-top: 3vw;
    font-size: 2.7vw;
  }
  .section-title .ja {
    padding-bottom: 3.4vw;
    letter-spacing: 1vw;
    font-size: 6.6vw;
  }
  .section-title .ja:before {
    width: calc(100% - 3.4vw);
  }
  .section-title .ja:after {
    bottom: -0.9vw;
    right: 1vw;
    width: 2.4vw;
    height: 2.4vw;
    border-radius: 3vw;
  }
  /*title*/
  .wrapper {
    max-width: 90vw;
    padding: 15vw 3vw 12vw;
  }
  .txt {
    font-size: 3.5vw;
    line-height: 4.8vw;
  }
}
/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .inner {
  display: flex;
  align-items: center;
}
#header .inner ul {
  display: flex;
  align-items: center;
}
#header .inner li {
  margin-right: 30px;
}
#header .inner li:last-child {
  margin-right: 0;
}

#header a:hover {
  color: #1D4634;;
  transition : all 0.5s;
}
/* 左からsample2 */
#header  a {
  padding: 10px;
  position: relative;
  display: inline-block;
}
#header a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #1D4634;;
  -webkit-transition: width 0.2s ease;
  -moz-transition: width 0.2s ease;
  -o-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
#header a:hover:before {
  width: 100%;
}
#header .contact {
  width: 100px;
  height: 100px;
  line-height: 80px;
  background-color: #E8A471;
  color: #fff;
  font-size: 0.75rem;
  display: inline-block;
  text-align: center;
}
#header .contact:hover {
  background-color: #333;
}
#header h1 {
  color: #1D4634;
  font-weight: bold;
  font-size: 1.375rem;
  margin: 0 60px 0 40px;
}
.inner .is_pc{
	margin-left: 60px;
}
@media screen and (max-width: 1400px) {
  #header {
    height: calc(100/1400 * 100vw);
  }
  #header .inner li {
    margin-right: calc(30/1400 * 100vw);
  }
  /* 左からsample2 */
  #header  a {
    padding: calc(10/1400 * 100vw);
  }
  #header a:before {
    height: calc(2/1400 * 100vw);
  }
  #header .contact {
    width: calc(100/1400 * 100vw);
    height: calc(100/1400 * 100vw);
    line-height: calc(80/1400 * 100vw);
  }
  #header h1 {
    margin: 0 calc(60/1400 * 100vw) 0 calc(40/1400 * 100vw);
  }
}
@media screen and (max-width: 1100px) {
  #header  a {
    font-size: calc(14/1100 * 100vw);
  }
  #header h1 {
    font-size: calc(22/1100 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  #header {
    height: 20vw;
    align-items: flex-start;
  }
  #header h1 {
    margin: 5.8vw 0 0 3vw;
    font-size: 4.4vw;
    width: 60vw;
  }


  /*========= SPナビゲーションのためのCSS ===============*/

	header .linkarea.panelactive{
		position:fixed;
		z-index: 999;
		top: 0;
    left: 0;
		width:100vw;
		height: 100vh;
	}
	header.fixed.open{
		background: none;
	}
	.circle-bg{
		position: fixed;
		z-index:3;
		width: 100%;
		height: 100px;
		background: rgba(255,255,255,0.95);
		top:-150px;
		left:0;
		transition: all .4s;
	}
	.circle-bg.circleactive{
		height: 150%;
	}
	#g-nav-list{
		display: none;
		position: fixed;
		z-index: 999; 
		width: 100%;
		height: 100vh;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	header .linkarea.panelactive #g-nav-list{
		 display: block;
	}
	header .linkarea ul {
		opacity: 0;
	}
	header .linkarea.panelactive ul {
		opacity:1;
	}
	/*========= ボタンのためのCSS ===============*/
	.openbtn{
		position:absolute;
		top:3vw;
		right: 10px;
		z-index: 9999;
		cursor: pointer;
		width: 50px;
		height:50px;
	}
	.openbtn span{
		display: inline-block;
		transition: all .3s;
		position: absolute;
		right: 0%;
		height: 3px;
		width: 70%;
		background: #E8A471;
	  }
	.openbtn span:nth-of-type(1) {
		top:12px;
	}
	.openbtn span:nth-of-type(2) {
		top:23px;
	}
	.openbtn span:nth-of-type(3) {
		top:34px;
	}
	.openbtn.active span:nth-of-type(1) {
		top: 18px;
		right: 0%;
		transform: translateY(6px) rotate(-45deg);
		width: 60%;
	}
	.openbtn.active span:nth-of-type(2) {
		opacity: 0;
	}
	.openbtn.active span:nth-of-type(3){
		top: 30px;
		right: 0%;
		transform: translateY(-6px) rotate(45deg);
		width: 60%;
	}
  .linkarea{
    top: -60px;
    position: absolute;
  }
  #header .linkarea > div{
    height: 100%;
  }
  #header .linkarea ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 50%;
    margin-top: 25vh;
  }
  #header .linkarea ul li{
    width: 100%;
    text-align: center;
  }
  #header .linkarea ul li a{
    font-size: 6vw;
  }
  #header a:before {
    display: none;
  }
}
/*-------------------------------------------
Mainvisual
-------------------------------------------*/
#mainvisual {
  height: 650px;
  background: url(../image/main.png) no-repeat center 0 #FFF;
  background-size: cover;
  position: relative;/** 小林 **/
  background-position: center center;/** 小林 **/
}
#mainvisual img {
  width: 100%;
  position: relative;
}
.catch_top{
	width:  85.7%;
	position: absolute;
	top :228px;
	left:200px;

  width: 1300px;/** 小林 **/
  top: 140px;/** 小林 **/
  left: calc(50% - 650px);/** 小林 **/
}
.catch_top02{
	width:18.2%;
	position: absolute;
	right:77px;
	bottom:140px;

  width: 300px;/** 小林 **/
	bottom:150px;/** 小林 **/
  /*right: calc(50% - 650px);*//** 小林 **/
  right: calc(50% - 600px);/*202307*/
}
@media screen and (max-width: 1400px) {
  #mainvisual {
    height: calc(650/1400 * 100vw);
  }
  .catch_top{
    width: calc(1300/1400 * 100vw);
    top: calc(140/1400 * 100vw);
    left: calc(50% - (650/1400 * 100vw));
  }
  .catch_top02{
    right:calc(77/1400 * 100vw);
    bottom:calc(140/1400 * 100vw);
  
    width: calc(300/1400 * 100vw);
    bottom:calc(150/1400 * 100vw);
    /*right: calc(50% - (650/1400 * 100vw));*/
    right: calc(50% - (600/1400 * 100vw));/*202307*/
  }
}
@media screen and (max-width: 800px) {
  #mainvisual {
    height: 90vh;
    background-position: left top;
  }
  .catch_top{
    width: 94%;
    top: 20vw;
    left: 3%;
  }
  .catch_top02{
    width: 43vw;
    bottom:24vw;
    right: 3vw;
  }
}
/*-------------------------------------------
about
-------------------------------------------*/
#about {
  margin-top: -100px;
  margin-top: -46px;
  position: relative;
  z-index: 1;
}
/*202307*/
.about_m{
padding: 120px 16px 0px;}
#about .article_about {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: top;
  margin: 0 auto 100px;
  max-width: 1200px;
  color: #fff;
}
#about .g_box{
  background-color: rgba(144, 182, 129, 0.95);	
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  padding:20px;
  margin-right: 20px;
  width:20%;
}
#about .g_box:last-child{
  margin-right: 0;
}
#about .about_ttl {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
#about .g_box h3 a{
  font-size: 1.5rem;
  margin-left: 17px;
  color: #fff;
　　　position: relative;
}

#about .g_box h3 a:hover{
  color: #E6EFE2;
  transition : all 0.5s;
}
/* 下にフェイードイン上に */
#about .g_box h3 a {
  padding: 10px;
  position: relative;
  display: inline-block;
}
#about .g_box h3 a:before {
   content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #E6EFE2;
  -webkit-transition: width 0.2s ease;
  -moz-transition: width 0.2s ease;
  -o-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
#about .g_box h3 a:hover:before {
  width: 100%;
}

#about .about_explanation{
  width: 100%;
  max-width: 1032px;
  padding: 0 16px 40px;
  margin: 0 auto;
}
#about .about_explanation h3
 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
#about .about_explanation p
 {
	line-height: 32px;
	font-size: 16px;
	margin-bottom: 60px;
}

#about .about_list li{
	line-height: 32px;
	font-size: 16px;
}

@media screen and (max-width: 1400px) {
  #about {
    margin-top: calc(-46/1400 * 100vw);
  }
  #about .article_about {
    margin: 0 auto calc(100/1400 * 100vw);
    max-width: calc(1200/1400 * 100vw);
  }
  #about .g_box{
    box-shadow: 0 calc(3/1400 * 100vw) calc(6/1400 * 100vw) rgba(0,0,0,0.2);
    padding:calc(20/1400 * 100vw);
    margin-right: calc(20/1400 * 100vw);
  }
  #about .about_ttl {
    margin-bottom: calc(30/1400 * 100vw);
  }
  #about .about_ttl .icon{
    width: calc(80/1400 * 100vw);
    height: calc(80/1400 * 100vw);
  }
  #about .g_box h3 a{
    margin-left: calc(17/1400 * 100vw);
  }
  #about .g_box h3 a {
    padding: calc(10/1400 * 100vw);
    font-size: calc(24/1400 * 100vw);
  }
  #about .g_box h3 a:before {
    height: calc(2/1400 * 100vw);
  }
  #about .about_explanation{
    max-width: calc(1032/1400 * 100vw);
    padding: 0 calc(16/1400 * 100vw) calc(40/1400 * 100vw);
  }
  #about .about_explanation h3{
    margin-bottom: calc(20/1400 * 100vw);
    font-size: calc(24/1400 * 100vw);
  }
  #about .about_explanation p{
    line-height: calc(32/1400 * 100vw);
    font-size: calc(16/1400 * 100vw);
    margin-bottom: calc(60/1400 * 100vw);
  }
  #about .about_list li{
    line-height: calc(32/1400 * 100vw);
    font-size: calc(16/1400 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  #about {
    margin-top: -15vw;
  }
  #about .about_m {
    margin-top: 0vw;
  }
  #about .article_about {
    margin: 0 auto 10vw;
    max-width: 94vw;
    width: 94vw;
    display: block;
  }
  #about .g_box{
    padding:4vw;
    margin-right: 0;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 4vw;
    padding: 10vw 16vw;
  }
  #about .about_ttl {
    margin-bottom: 8vw;
  }
  #about .about_ttl .icon{
    width: 18vw;
    height: 18vw;
  }
  #about .g_box h3 a{
    margin-left: 3vw;
  }
  #about .g_box h3 a {
    padding: 0;
    font-size: 5vw;
  }
  #about .about_explanation{
    max-width: 80vw;
    padding: 0 0 8vw;
  }
  #about .about_explanation h3{
    margin-bottom: 5vw;
    font-size: 5vw;
  }
  #about .about_explanation p{
    line-height: 5.5vw;
    font-size: 4vw;
    margin-bottom: 10vw;
  }
  #about .about_list li{
    line-height: 5.5vw;
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
/*-------------------------------------------
news
-------------------------------------------*/
#news{
margin-top: -100px;
}
#news .wrapper{padding: 120px 0px 146px;
}
.bg_pattern {
  /*background-color: #F8F8F8;*//*202307*/
}
.Boxes {
  background-image: linear-gradient(#F2F2F2 1px, transparent 1px), linear-gradient(to right, #F2F2F2 1px, #F8F8F8 1px);
  background-size: 15px 15px;
}
#news .list li {
  padding: 10px 20px;
}
#news .list li .date-area span {
  width: 50px;
  height: 20px;
  line-height: 20px;
  background-color: #E8A471;
  color: #fff;
  display: inline-block;
  font-size: 0.750rem;
  margin-left: 10px;
  text-align: center;
}
/*
#news .list li .date-area {
  margin-bottom: 16px;
}*/
@media screen and (max-width: 1400px) {
  .Boxes {
    background-size: calc(15/1400 * 100vw) calc(15/1400 * 100vw);
  }
  #news .list li {
    padding: calc(10/1400 * 100vw) calc(20/1400 * 100vw);
  }
  #news .list li .date-area span {
    width: calc(50/1400 * 100vw);
    height: calc(20/1400 * 100vw);
    line-height: calc(20/1400 * 100vw);
    margin-left: calc(10/1400 * 100vw);
    font-size: calc(12/1400 * 100vw);
  }
  #news time{
    font-size: calc(14/1400 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  .Boxes {
    background-size: 3vw 3vw;
  }
  #news .list li {
    padding: 0;
    margin-bottom: 9vw;
  }
  #news .list li:last-child {
    margin-bottom: 0;
  }
  #news .list li .date-area{
    margin-bottom: 2vw;
  }
  #news .list li .date-area span {
    width: 11vw;
    height: 4.4vw;
    line-height: 4.4vw;
    margin-left: 3vw;
    font-size: 3vw;
  }
  #news time{
    font-size: 3.3vw;
  }
}
/*-------------------------------------------
Attorney’s fee
-------------------------------------------*/
.table {
  margin-top: 43px;
  position: relative;
}
.table_ttl {
  position: absolute;
  top: 15px;
}
table {
  border-collapse: collapse;
  font-size: 1rem;
  line-height: 32px;
  width: 100%;
  margin-bottom: 20px;
}
td {
  border: #E1E6E4 solid 1px;
  padding: 15px;
  text-align: left;
  vertical-align:middle;
}
th {
  background-color: #90B681;
  border: #E1E6E4 solid 1px;
  padding: 5px;
  text-align: center;
  color: #fff;
}
tr:first-child td:first-child {
  border: none;
}
td.gtd {
  background-color: #90B681;
  color: #fff;
}
td.td1 {}
td.td2 {
  width: 45%;
}
td.td3 {
  width: 34%;
}
.green {
  font-size: 1.375rem;
  color: #90B681;
  font-weight: bold;
}
.caution {
  font-size: 0.875rem;
  line-height: 18px;
}
h3.greenttl {
  margin: 60px 0 16px;
}
@media screen and (max-width: 1400px) {
  .table {
    margin-top: calc(43/1400 * 100vw);
  }
  .table_ttl {
    top: calc(15/1400 * 100vw);
    font-size: calc(22/1400 * 100vw);
  }
  table {
    line-height: calc(32/1400 * 100vw);
    margin-bottom: calc(20/1400 * 100vw);
    font-size: calc(16/1400 * 100vw);
  }
  td {
    padding: calc(15/1400 * 100vw);
  }
  th {
    padding: calc(5/1400 * 100vw);
  }
  .caution {
    line-height: calc(18/1400 * 100vw);
    font-size: calc(14/1400 * 100vw);
  }
  h3.greenttl {
    margin: calc(60/1400 * 100vw) 0 calc(16/1400 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  .table {
    margin-top: 5vw;
  }
  .table_ttl {
    top: 0;
    font-size: 4.3vw;
    position: static;
    margin-top: 10vw;
    margin-bottom: 3vw;
  }
  table {
    margin-bottom: 4vw;
    font-size: 3.3vw;
    line-height: 4.8vw;
  }
  td:first-child {
    width: 30%;
  }
  td {
    padding: 3vw;
  }
  td.gtd {
    text-align: center;
  }
  th {
    padding: 1vw;
  }
  .caution {
    line-height: 4.5vw;
    font-size: 3vw;
  }
  h3.greenttl {
    margin: 10vw 0 3vw;
    font-size: 4.3vw;
  }
}
/*-------------------------------------------
Attorney referral
-------------------------------------------*/
.Boxes2 {
  background-image: linear-gradient(#EBF2E9 1px, transparent 1px), linear-gradient(to right, #EBF2E9 1px, #F8F8F8 1px);
  background-size: 15px 15px;
}
.Boxes3 {
  background-image: linear-gradient(#EFE9E4 1px, transparent 1px), linear-gradient(to right, #EFE9E4 1px, #F8F8F8 1px);
  background-size: 15px 15px;
}
#referral .article {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: top;
  margin-left: 52px;
}
#referral h3{
  font-size: 2.875rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
#referral .suga h3{
  color: #1D4634;
}
#referral .suzuki h3{
  color: #845835;
}
p.gbd{
  color: #1D4634;
  font-weight: bold;
  font-size: 1.375rem;
 margin-bottom:  28px;
}
p.obd{
  color: #845835;
  font-weight: bold;
  font-size: 1.375rem;
 margin-bottom:  28px;
}



.photo01,.photo02{
  position: relative;
	margin-right: 100px;
}
.photo01{
	margin-right: 100px;
}
.photo02{
	margin-left: 100px;
}
.photo01::before,
.photo02::before{
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 78px;
  height: 78px;
	border-top: 2px solid #90B681;
	border-left: 2px solid #90B681;
}
.photo02::before{
	border-top: 2px solid #E8A471;
	border-left: 2px solid #E8A471;
}


#referral .article p{
	margin-top: 60px;
}
#referral li{
/*	font-size: 1rem;*/
	font-size: 1.125rem;
    line-height: 32px;
}
.inquiry{
	text-align: right;
	color: #262626;
	margin-right: 60px;
}
.inquiry p{
	margin-top: 12px;
}
.inquiry img{
	max-width: 100%;
	height: auto;
}
@media screen and (max-width: 1400px) {
  .Boxes2 {
    background-size: calc(15/1400 * 100vw) calc(15/1400 * 100vw);
  }
  .Boxes3 {
    background-size: calc(15/1400 * 100vw) calc(15/1400 * 100vw);
  }
  #referral .article {
    margin-left: calc(52/1400 * 100vw);
  }
  #referral h3{
    font-size: calc(46/1400 * 100vw);
  }
  p.gbd{
    font-size: calc(22/1400 * 100vw);
   margin-bottom:  calc(28/1400 * 100vw);
  }
  p.obd{
    font-size: calc(22/1400 * 100vw);
   margin-bottom:  calc(28/1400 * 100vw);
  }
  .photo01,.photo02{
    margin-right: calc(100/1400 * 100vw);
    width: calc(400/1400 * 100vw);
  }
  .photo01{
    margin-right: calc(100/1400 * 100vw);
  }
  .photo02{
    margin-left: calc(100/1400 * 100vw);
  }
  .photo01::before,
  .photo02::before{
    top: calc(-2/1400 * 100vw);
    left: calc(-2/1400 * 100vw);
    width: calc(78/1400 * 100vw);
    height: calc(78/1400 * 100vw);
    border-top: calc(2/1400 * 100vw) solid #90B681;
    border-left: calc(2/1400 * 100vw) solid #90B681;
  }
  .photo02::before{
    border-top: calc(2/1400 * 100vw) solid #E8A471;
    border-left: calc(2/1400 * 100vw) solid #E8A471;
  }
  #referral .article p{
    margin-top: calc(60/1400 * 100vw);
  }
  #referral li{
    font-size:calc(16/1400 * 100vw);
      line-height: calc(32/1400 * 100vw);
  }
  .inquiry{
    margin-right: calc(60/1400 * 100vw);
  }
  .inquiry p{
    margin-top: calc(12/1400 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  .Boxes2 {
    background-size: 3vw 3vw;
  }
  .Boxes3 {
    background-size: 3vw 3vw;
  }
  #referral .article {
    margin-left: auto;
    display: flex;
    flex-flow: column;
    position: relative;
  }
  #referral .suzuki .article {
    flex-direction:column-reverse;
  }
  #referral .article .right,#referral .article .left{
    width: 60vw;
    margin: 0 auto;
  }
  #referral h3{
    font-size: 6vw;
    position: absolute;
    top: 0;
    left: 20vw;
  }
  p.gbd{
    font-size: 4vw;
   margin-bottom:  3vw;
   margin-top: 5vw !important;
  }
  p.obd{
    font-size: 4vw;
   margin-bottom:  3vw;
  }
  .suzuki p.obd{
    margin-top: 5vw !important;
  }
  .photo01,.photo02{
    margin-right: auto;
    margin-left: auto;
    width: 60vw;
    margin-top: 10vw;
  }
  .photo01{
    margin-right: auto;
    margin-left: auto;
    width: 60vw;
  }
  .photo02{
    margin-left: auto;
  }
  .photo01::before,
  .photo02::before{
    top: -1px;
    left: -1px;
    width: 14vw;
    height: 14vw;
    border-top: 1px solid #90B681;
    border-left: 1px solid #90B681;
  }
  .photo02::before{
    border-top: 2px solid #E8A471;
    border-left: 2px solid #E8A471;
  }
  #referral .article p{
    margin-top: 10vw;
  }
  #referral li{
    font-size:3.3vw;
      line-height: 4.5vw;
  }
  header{
    position: relative;
  }
  .inquiry{
    margin-right: 500px;
    display: flex;
    align-items: center;
    width: 97%;
    position: absolute;
    top: 13vw;
    left: 3%;
  }
  .inquiry img{
    height: 3.4vw;
  }
  .inquiry p{
    margin-top: 0;
    font-size: 3vw;
	margin-left: 10px;
  }
}
/*-------------------------------------------
Access
-------------------------------------------*/
#access h3{
  color: #1D4634;
  font-weight: bold;
  font-size: 1.375rem;
 margin-bottom:  28px;
}
#access dl{
	margin-top: 10px;
    font-size: 1rem;
    line-height: 32px;
}
#access dt{
	font-weight: bold;

}
.access{
	margin-bottom: 16px;
}
.bold{
	font-weight: bold;
}

.access .add{
  position: relative;
}
.speech{
	background-color: #E8A471;
	font-size: 0.875rem;
	line-height: 18px;
	color: #fff;
	padding: 15px 30px;
	position: absolute;
  top: -24px;
  right: -300px;
}
.speech:before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  left: -9px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 9px 4px 0;
  border-color: transparent #e8a471 transparent transparent;
}

@media screen and (max-width: 1400px) {
  #access h3{
    font-size: calc(22/1400 * 100vw);
   margin-bottom:  calc(28/1400 * 100vw);
  }
  #access dl{
    margin-top: calc(10/1400 * 100vw);
      font-size: calc(16/1400 * 100vw);
      line-height: calc(32/1400 * 100vw);
  }
  .access{
    margin-bottom: calc(30/1400 * 100vw);
  }
  .speech{
    font-size: calc(14/1400 * 100vw);
    line-height: calc(18/1400 * 100vw);
    padding: calc(15/1400 * 100vw) calc(30/1400 * 100vw);
    top: calc(-24/1400 * 100vw);
    right: calc(-300/1400 * 100vw);
  }
  .speech:before {
    top: calc(50% - (4/1400 * 100vw));
    left: calc(-8/1400 * 100vw);
    border-width: calc(4/1400 * 100vw) calc(9/1400 * 100vw) calc(4/1400 * 100vw) 0;
  }
  .map{
    width: calc(1000/1400 * 100vw);
  }
  .map iframe{
    width: 100%;
    height: calc(386/1400 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  #access h3{
    font-size: 5vw;
    margin-bottom:4vw;
  }
  #access dl{
      margin-top: 2vw;
      font-size: 3.3vw;
      line-height: 4.5vw;
margin-bottom:12vw;

  }
  .access{
      margin-bottom: 5vw;
  }
  .access .caution{
    margin-bottom: 12vw;
    display: block;
  }
  #access dt {
    margin-top: 3vw;
  }
  .speech{
    font-size: 3vw;
    line-height: 4.2vw;
    padding: 2vw 4vw;
    top: 14vw;
    right: auto;
    left: 0;
    width: auto;
    box-sizing: border-box;
  }
  .speech:before {
    display: none;
  }
  .map{
    width: 100%;
  }
  .map iframe{
    width: 100%;
    height: 50vw;
  }
}
/*-------------------------------------------
 footer
-------------------------------------------*/
#footer {
	padding: 50px 0;
	text-align: center;
	background-color: #F2F2F2;
	color: #959595;
	font-size: 14px;
}
@media screen and (max-width: 1400px) {
  #footer {
    padding: calc(50/1400 * 100vw) 0;
    font-size: calc(14/1400 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  #footer {
    padding: 10vw 0;
    font-size: 2.7vw;
  }
}

#scroll-to-top-btn{
z-index:10000;
	cursor : pointer;
	position: fixed;
	bottom: 15px;
	right: 15px;
	height: 50px;
	width: 50px;
	color: #FFF;
	font-size:30px;
	font-weight: bold;
	background-color:#90B681;
	border: none;
	border-radius: 8%;
	transform: rotate(-90deg);
	opacity: 0;
	transition-duration: 0.5s;
}


