@charset "utf-8";
/* CSS Document */

* {
	line-height: 1;
}

html {
	scroll-padding-top:150px;
	scroll-behavior: smooth;
}

img {
    border: 0;
    vertical-align: top;
	object-fit: cover;
}


/*clearfix*/
.clearfix:after{
	content: " ";
	display: block;
	visibility: hidden;
	clear: both;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
}
* html .clearfix{
	display: inline-block;
}
/* no ie mac \*/
* html .clearfix{
	height: 1%;
}
.clearfix{
	display: block;
}
.clearfix{
  overflow:hidden;
}
/* Hides from IE-mac \*/
* html .clearfix{
  height:1%;
	overflow-x : hidden;
}

* {
	box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
word-wrap: break-word;
}

/*body*/

body {
width: 100%;
	-webkit-text-size-adjust: 100%;
	}


li {
	list-style-type: none;
}

a {
	text-decoration: none;
	transition: .5s;
}

a:hover {
	opacity: 0.75;
	transition: .5s;
}

/* basefont */
:root {
  --base-font: "Noto Sans JP", sans-serif;
  --title-font: "Noto Serif JP", serif;
  --subtitle-font: "Poppins", sans-serif;
  --number-font: "Roboto", sans-serif;
	
  --base-font-size: 16px;

  --base-font-weight: 400;
  --base-font-weight2: 500;
  --base-font-weight3: 600;
	
  --color-base: #000;
  --color-main: #29a7de;
  --color-sub: #0071b8;
  --color-sub2: #004c88;
}


.contents-box {
	font-family: var(--base-font);
font-weight: var(--base-font-weight2);
	clear: both;
	margin-right: auto;
	margin-left: auto;
	font-size: var(--base-font-size);
	color : var(--color-base);
	line-height: 1;
}

.contents-box p {
	font-family: var(--base-font);
font-weight: var(--base-font-weight2);
	font-size: var(--base-font-size);
	color : var(--color-base);
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.contents-box p br.sp-view {
	display: none;
}

.contents-box a {
	color : var(--color-base);
	font-weight: var(--base-font-weight2);
}

.contents-box p a {
	color : var(--color-base);
	font-weight: var(--base-font-weight2);
}

/* animation_box */

.animation_box {
  transition: 1s ease;
	opacity: 0;
	transition-delay: .5s;
	transform: translate(0px, 0px);
}

.animation_box2 {
	transition-delay: 1s;
}

.animation_box3 {
	transition-delay: 1.5s;
}

.animation_box4 {
	transition-delay: 2s;
}

.animation_box-top {
	transform: translateY(50px);
}

.animation_box-bottom {
	transform: translateY(-50px);
}

.animation_box-left {
	transform: translateX(-50px);
}

.animation_box-right {
	transform: translateX(50px);
}

.animation_box.effect {
	opacity: 1;
	transform: translate(0px, 0px);
}



/*header*/

.header-wrap {
	z-index: 9999999;
	width: 100%;
position: fixed;
left: 0px;
top: 0px;
}

.header {
	width: 100%;
	display: flex;
  justify-content: space-between;
flex-wrap: wrap;
	position: relative;
    transition: .5s;
    padding: 25px;
}

.header .header-left img {
	height: 30px;
	width: auto;
	transition: .5s;
}

.header .header-right {
	display: flex;
  justify-content: flex-end;
flex-wrap: wrap;
	align-items: flex-start;
	text-align: right;
    flex: 1;
}

.lay-headerguide, .header-right .nav-pc ul {
    display: flex;
  justify-content: flex-end;
flex-wrap: wrap;
    background-color: #FFF;
    border-radius: 10px;
    overflow: hidden;
}

.header-right .nav-pc ul li a {
    color: var(--color-sub2);
    font-size: 18px;
line-height: 1.2;
letter-spacing: 0.05em;
font-weight: var(--base-font-weight2);
    display: inline-block;
    padding: 17px;
}

.header-right .nav-pc ul li:last-child a {
    color: #FFF;
    background-color: var(--color-sub2);
}

.header-right .nav-pc ul li:first-child a, .header-right .nav-pc ul li:last-child a {
    padding: 17px 25px;
}



/*メニュー部分*/
	nav{
		display: none;
		position: absolute;
		top:0;
		width: 100%;
		height: 100vh;
		left: 0;
		overflow: auto;
		background-color: var(--color-sub);
	}
	nav .box-menu {
		width: 100%;
		height: 100%;
		display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
	}

nav .box-menu > h2 {
		position: absolute;
left: 0px;
top: 0px;
}

nav .box-menu > h2 img {
	height: 100px;
	width: auto;
}

nav .box-menu > h2 a:hover {
		opacity: 1;
}

nav .box-menu-wrap {
		width: 100%;
    padding-top: 80px;
	}

nav .box-menu-wrap ul li {
    border-top-style : solid;
border-color : rgba(255, 255, 255, 0.5);
border-width : 1px;
	}

nav .box-menu-wrap ul li:last-child {
    border-bottom-style : solid;
	}

nav .box-menu-wrap ul li a {
    font-size: 20px;
color: #FFF;
line-height: 1.2;
letter-spacing: 0.1em;
font-weight: var(--base-font-weight);
    display: block;
    text-align: left;
    padding: 17px 25px;
	}
	

/*開閉ボタン*/
	#nav_toggle{
		display: inline-block;
		vertical-align: top;
		float: right;
		width: 80px;
		height: 80px;
		position: relative;
		top: 15px;
		right: 15px;
		z-index: 10000000000;
		background-color: var(--color-sub);
		padding: 28px 20px;
		margin-right: 0px;
		margin-top: 0px;
		cursor: pointer;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 1px;
		background: #FFF;
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:12px;
	}
	#nav_toggle span:nth-child(3){
		top:24px;
	}
	
	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
			top: 12px;
		   -webkit-transform: rotate(135deg);
			-moz-transform: rotate(135deg);
			transform: rotate(135deg);
		}
		.open #nav_toggle span:nth-child(2) {
			width: 0;
			left: 50%;
		}
		.open #nav_toggle span:nth-child(3) {
			top: 12px;
			-webkit-transform: rotate(-135deg);
			-moz-transform: rotate(-135deg);
			transform: rotate(-135deg);
		}


/*main-img*/
 
.main-img {
	width: 100%;
	position: relative;
}

.main-img .box-img {
	width: 100%;
}

.main-img img {
	width: 100%;
height: auto;
    max-height: 600px;
}

.main-img .box-text {
	position: absolute;
right: 0px;
top: 0px;
	width: 100%;
	height: 100%;
	display: flex;
  justify-content: flex-end;
align-items: center;
flex-wrap: wrap;
	text-align: center;
}

.main-img .box-text .inner {
	width: 45%;
    max-width: 800px;
    text-align: left;
    background-color: var(--color-sub2);
    display: flex;
  justify-content: flex-start;
flex-wrap: wrap;
    align-items: center;
    gap:0px 20px;
    padding: 35px 7%;
    border-radius: 20px 0px 0px 20px;
}

.main-img h2 {
	font-size: 42px;
	letter-spacing: 0.2em;
color: #FFF;
	line-height: 1.2;
	 font-weight: var(--base-font-weight);
}

.main-img h3 {
	 font-family: var(--subtitle-font);
    font-weight: var(--base-font-weight3);
	font-size: 18px;
	color: #FFF;
	line-height: 0.9;
    padding-top: 5px;
}


/* contents */

.contents {
	width: 100%;
}

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

.maincontents-inner {
	width: 100%;
    position: relative;
    padding-top: 80px;
     padding-bottom: 90px;
}

.maincontents-inner section:not(:last-child) {
	margin-bottom: 120px;
}

.maincontents-inner section > div:not(:last-child) {
	margin-bottom: 60px;
}


/* layout */

.layout-80 {
	width: 80%;
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
}

.layout-85 {
	width: 85%;
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
}

.layout-1100 {
	width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

/* title-page */

.title-page h2 {
	font-family: var(--subtitle-font);
    color: var(--color-sub);
    font-weight: var(--base-font-weight3);
	font-size: 25px;
line-height: 0.9;
letter-spacing: 0em;
}

.title-page h3 {
	font-size: 36px;
letter-spacing: 0.2em;
    color: var(--color-base);
	font-weight: var(--base-font-weight3);
	padding-top: 15px;
}

.maincontents-inner section > div.title-page {
	margin-bottom: 50px;
}


/* link */

.link01 a, .link01 span {
	color: var(--color-main);
    font-weight: var(--base-font-weight2);
line-height: 1.2;
    display: inline-block;
	position: relative;
    background-color: #FFF;
    padding: 15px 30px;
    padding-right: 50px;
    border-radius: 60px;
    min-width: 300px;
}

.link01 a:hover {
	opacity: 1;
}

.link01 a::before, .link01 span::before {
	content: "";
	position: absolute;
right: 25px;
top: 0px;
	background-image: url("../../common/images/common/link-arrow01.svg");
background-position: right center;
background-repeat: no-repeat;
	background-size: auto 6px;
	width: 40px;
	height: 100%;
	transition: .5s;
}

.link01 a:hover::before, .footer-contact .box:hover .link01 span::before {
right: 15px;
}


/* layout-sell_text */

.layout-sell_text h2, .layout-sell_text h3 {
line-height: 1.2;
font-weight: var(--base-font-weight3);
}

.layout-sell_text h2 {
    font-family: var(--subtitle-font);
    color: var(--color-main);
    font-size: 56px;
    line-height: 1;
    letter-spacing: 0em;
}

.layout-sell_text h3 {
    font-size: 26px;
    letter-spacing: 0.1em;
    padding: 25px 0px 15px;
}

.layout-sell_text h4 {
    font-size: 30px;
    position: relative;
    padding-top: 20px;
}

/* layout-sell_flow */

.layout-sell_flow {
   text-align: center;
}

.layout-sell_flow .box-tab {  
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 50px;
}

.layout-sell_flow .box-tab ul {
   display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
}

.layout-sell_flow .box-tab ul li {
   font-size: 23px;
color: #FFF;
line-height: 1.2;
letter-spacing: 0.05em;
font-weight: var(--base-font-weight3);
    padding: 15px 50px;
    position: relative;
}

.layout-sell_flow .box-tab ul li:nth-child(2), .layout-sell_flow .box-tab ul li:nth-child(3) {
   padding-left: 70px;
}

.layout-sell_flow .box-tab ul li:nth-child(1) {
   background-color:  var(--color-main);
}

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

.layout-sell_flow .box-tab ul li:nth-child(1)::after {
   left: 100%;
	top: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(41, 167, 222, 0);
	border-left-color: #29a7de;
	border-width: 30px;
	margin-top: -30px;
    z-index: 1;
}
    
}

.layout-sell_flow .box-tab ul li:nth-child(2) {
   background-color:  var(--color-sub);
}

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

.layout-sell_flow .box-tab ul li:nth-child(2)::after {
   left: 100%;
	top: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(0, 113, 184, 0);
	border-left-color: #0071b8;
	border-width: 30px;
	margin-top: -30px;
    z-index: 1;
}
    
}

.layout-sell_flow .box-tab ul li:nth-child(3) {
   background-color:  var(--color-sub2);
}

.layout-sell_flow .flow {  
    display: flex;
  justify-content: center;
flex-wrap: wrap;
    gap:0px 45px;
}

.layout-sell_flow .flow .box {  
    flex: 1;
    position: relative;
}

.layout-sell_flow .flow .box::before {  
   content: "";
	position: absolute;
left: 0px;
top: 0px;
background-position: left center;
background-repeat: no-repeat;
	background-size: auto 55px;
	width: 33px;
	height: 100%;
    margin-left: -35px;
}

.layout-sell_flow .f01 .box::before {  
	background-image: url("../images/common/arrow01.svg");
}

.layout-sell_flow .f02 .box::before {  
	background-image: url("../images/common/arrow02.svg");
}

.layout-sell_flow .f03 .box::before {  
	background-image: url("../images/common/arrow03.svg");
}

.layout-sell_flow .flow .box:first-child::before {  
   display: none;
}

.layout-sell_flow .flow .box-img {  
    border-radius: 20px;
    border-style : solid;
border-width : 6px;
    overflow: hidden;
}

.layout-sell_flow .f01 .box-img {  
border-color : var(--color-main);
}

.layout-sell_flow .f02 .box-img {  
border-color : var(--color-sub);
}

.layout-sell_flow .f03 .box-img {  
border-color : var(--color-sub2);
}

.layout-sell_flow .flow .box-text {  
   position: absolute;
left: 0px;
bottom: 0px;
    width: 100%;
}

.layout-sell_flow h6 {  
   width: 70%;
    margin: 0px auto;
    background-color:  var(--color-main);
    height: 100px;
    padding-top: 42px;
    font-size: 18px;
color: #FFF;
line-height: 1.2;
letter-spacing: 0.05em;
    font-weight: var(--base-font-weight2);
    border-radius: 15px 15px 0px 0px;
    position: relative;
}

.layout-sell_flow h6::before {  
   content: "";
	position: absolute;
left: 0px;
top: 12px;
	width: 100%;
    font-family: var(--subtitle-font);
    line-height: 1;
    font-size: 24px;
}

.layout-sell_flow .box:nth-child(1) h6::before {  
   content: "STEP01";
}

.layout-sell_flow .box:nth-child(2) h6::before {  
   content: "STEP02";
}

.layout-sell_flow .box:nth-child(3) h6::before {  
   content: "STEP03";
}

.layout-sell_flow .box:nth-child(4) h6::before {  
   content: "STEP04";
}




/*pagetop_btn*/

.pagetop_btn {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 100;
}

.pagetop_btn a {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}

.pagetop_btn a:hover {
    opacity: 0.75;
}

.pagetop_btn img {
   height: 70px;
	width: auto;
}


/*footer*/

footer {
	width: 100%;
	text-align: center;
}

/* footer-map */

.footer-map {
	width: 100%;
	text-align: center;
}

.footer-map .title-page {
	padding: 25px 0px;
    background-image: url("../images/common/title-back-map.svg");
background-position: center top;
background-repeat: repeat-x;
background-size: auto 115px;
}

.footer-map .box-detail {
	padding: 20px 0px;
    background-color: var(--color-main);
}

.footer-map .map-box iframe {
	width: 100%;
	height: 450px;
}

.footer-map h3 img {
    height: 26px;
    width: auto;
}

.footer-map p {
    font-weight: var(--base-font-weight2);
	color: #FFF;
	line-height: 1.2;
}

/*footer-banner*/

.footer-banner {
    width: 100%;
    text-align: center;
    height: 250px;
    display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
    background-color: #f2f2f2;
}

/*footer-contact*/

.footer-contact {
    width: 100%;
    text-align: center;
}

.footer-contact .box-inner {
   display: flex;
  justify-content: space-between;
flex-wrap: wrap;
}

.footer-contact .box {
   flex: 1;
    position: relative;
    overflow: hidden;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}

.footer-contact .box::before {
   content: "";
	position: absolute;
left: 0px;
top: 0px;
background-position: center;
background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 350px;
    transition:.5s all;
    z-index: 0;
}

.footer-contact .box01::before {
    background-image: url("../images/common/banner-footer01.jpg");
}

.footer-contact .box02::before {
    background-image: url("../images/common/banner-footer02.jpg");
}

.footer-contact .box:hover::before {
    transform:scale(1.2,1.2);
  transition:.5s all;
}

.footer-contact .box a {
   display: block;
    width: 100%;
    height: 350px;
    position: relative;
}

.footer-contact .box a:hover {
   opacity: 1;
}

.footer-contact .box a::before {
   content: "";
	position: absolute;
left: 0px;
top: 0px;
	width: 100%;
	height: 100%;
    mix-blend-mode: multiply;
    display: block;
    opacity: 0.9;
    z-index: 1;
}

.footer-contact .box01 a::before {
   background-color: var(--color-main);
}

.footer-contact .box02 a::before {
   background-color: var(--color-sub2);
}

.footer-contact .box .inner {
    width: 100%;
    height: 100%;
   display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
    flex-direction: column;
    z-index: 1;
    position: relative;
}

.footer-contact h4 {
    color: #FFF;
    font-size: 37px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    position: relative;
    padding-top: 65px;
    margin-bottom: 25px;
     font-weight: var(--base-font-weight2);
}

.footer-contact h4::before {
    content: "";
	position: absolute;
left: 0px;
top: 0px;
background-position: center top;
background-repeat: no-repeat;
	background-size: auto 100%;
	width: 100%;
}

.footer-contact .box:nth-child(1) h4::before {
	background-image: url("../images/common/icon-footer01.svg");
	height: 56px;
}

.footer-contact .box:nth-child(2) h4::before {
	background-image: url("../images/common/icon-footer02.svg");
	height: 40px;
    top: 10px;
}


/*footer-guide*/

.footer-guide {
    width: 100%;
	padding: 70px 5% 50px;
	display: flex;
  justify-content: space-between;
flex-wrap: wrap;
     background : rgba(0, 76, 136, 0.9);
}

.footer-guide .lay-guide {
    width: 440px;
    text-align: left;
}

.footer-guide .lay-text {
    width: 60%;
    text-align: center;
}

.footer-guide h2 {
	margin-bottom: 15px;
}

.footer-guide h2 img {
	width: auto;
height: 50px;
}

.footer-guide h3, .footer-guide h3 a, .footer-guide h5, .footer-guide h6, .footer-guide p {
    font-weight: var(--base-font-weight2);
    color: #FFF;
	line-height: 1.2;
}

.footer-guide h3, .footer-guide h3 a {
    font-family: var(--number-font);
    font-weight: var(--base-font-weight);
	font-size: 50px;
}

.footer-guide h3 {
    position: relative;
    padding-left: 50px;
    margin: 20px 0px 10px;
}

.footer-guide h3::before {
    content: "";
	position: absolute;
left: 0px;
top: 3px;
	background-image: url("../images/common/tel-footer.svg");
background-position: left top;
background-repeat: no-repeat;
	background-size: auto 100%;
	width: 33px;
	height: 50px;
}


.footer-guide h4 {
    position: relative;
    padding-top: 70px;
}

.footer-guide h4::before {
    content: "";
	position: absolute;
left: 0px;
top: 0px;
	background-image: url("../images/common/icon-footer03.svg");
background-position: center top;
background-repeat: no-repeat;
	background-size: auto 100%;
	width: 100%;
	height: 68px;
    margin-top: -30px;
}

.footer-guide h4 img {
    width: 100%;
height: auto;
}

.footer-guide h5 {
    font-size: 22px;
    padding: 40px 0px 15px;
}

.footer-guide h6 a {
    text-align: center;
    min-width: 360px;
}

.footer-guide .lay-text h6 {
    font-family: var(--subtitle-font);
    font-size: 22px;
}

.f-copy {
    padding-top: 50px;
}

.f-copy p {
    font-size: 12px;
}



/**
 * for SmartPhone
 */
@media screen and (min-width: 768px) {
	
	body {
	min-width: 1300px;
	}
	
a[href^="tel:"] {
    pointer-events: none;
}

#header .sp-view {
	display: none;
}

#nav_toggle{
        display: none;
	}

}
@media screen and (max-width: 768px) {
    
html {
	scroll-padding-top:90px;
}

/* basefont */
:root {
  --base-font-size: 14px;
}


.contents-box p br.sp-view {
	display: inline-block;
}

.header {
    padding: 0px;
}

.header .header-left {
    padding-top: 15px;
    padding-left: 15px;
}
    
.header .header-left img {
	height: 25px;
}


.lay-headerguide {
	display: none;
}


	
/*開閉ボタン*/
	#nav_toggle{
		width: 50px;
		height: 50px;
		padding: 17px 12px 0px;
		margin-right: 0px;
		margin-top: 0px;
		top: 0px;
		right: 0px;
	}
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:8px;
	}
	#nav_toggle span:nth-child(3){
		top:16px;
	}
	
	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
			top: 8px;
		}
		.open #nav_toggle span:nth-child(3) {
			top: 8px;
		}

	
	.nav-pc {
		display: none;
	}
	
nav .box-menu {
	justify-content: center;
align-items: flex-start;
	}
	
nav .box-menu > h2 {
	padding: 15px;
	}
	
nav .box-menu > h2 img{
	height: 25px;
	}

	
/*main-img*/

.main-img img {
    min-height: 200px;
}
    
.main-img .box-text .inner {
	width: 55%;
    gap:10px;
    padding: 20px 7%;
    flex-direction: column;
    align-items: flex-start;
}

.main-img h2 {
	font-size: 22px;
	letter-spacing: 0.15em;
}

.main-img h3 {
	font-size: 14px;
    padding-top: 0px;
}


/* contents */

    
.maincontents-inner {
    padding-top: 50px;
    padding-bottom: 50px;
}
    
.maincontents-inner::before {
left: 0%;
	height: 220px;
    margin-top: -2vw;
}

.maincontents-inner section:not(:last-child) {
	margin-bottom: 70px;
}

.maincontents-inner section > div:not(:last-child) {
	margin-bottom: 50px;
}

.maincontents-inner .box-img {
	text-align: center;
}
    
.maincontents-inner .box-img img {
	max-width: 400px;
}
    
   

/* layout */

.layout-80, .layout-85, .layout-1100 {
	width: 88%;
}
		

/* title-page */

.title-page h2 {
	font-size: 15px;
}

.title-page h3 {
	font-size: 28px;
    letter-spacing: 0.15em;
}

.maincontents-inner section > div.title-page {
	margin-bottom: 35px;
}

/* link */

.link01 a, .link01 span {
    padding-right: 40px;
    min-width: 260px;
}

.link01 a::before, .link01 span::before {
right: 20px;
	background-size: auto 5px;
}

.link01 a:hover::before, .footer-contact .box:hover .link01 span::before {
right: 20px;
}

	
/* layout-sell_text */

.layout-sell_text h2 {
    font-size: 30px;
    line-height: 1.2;
}

.layout-sell_text h3 {
    padding: 20px 0px 15px;
}

/* layout-sell_flow */

.layout-sell_flow .box-tab {  
    margin-bottom: 50px;
}

.layout-sell_flow .box-tab ul {
   display: flex;
  justify-content: center;
flex-wrap: wrap;
}

.layout-sell_flow .box-tab ul li {
   font-size: 18px;
    padding: 15px 0px;
    width: 100%;
}

.layout-sell_flow .box-tab ul li:nth-child(2), .layout-sell_flow .box-tab ul li:nth-child(3) {
   padding-left: 0px;
    padding-top: 20px;
}

.layout-sell_flow .box-tab ul li:nth-child(1)::after {
   top: 100%;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(41, 167, 222, 0);
	border-top-color: #29a7de;
	border-width: 15px;
	margin-left: -15px;
    z-index: 1;
}

.layout-sell_flow .box-tab ul li:nth-child(2)::after {
   top: 100%;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(0, 113, 184, 0);
	border-top-color: #0071b8;
	border-width: 15px;
	margin-left: -15px;
    z-index: 1;
}

.layout-sell_flow .flow {  
    gap:20px 8%;
}

.layout-sell_flow .flow .box {  
    flex: auto;
    width: 46%;
}

.layout-sell_flow .flow .box::before {  
	background-size: auto 30px;
    margin-left: -5vw;
}

.layout-sell_flow .flow .box:nth-child(odd)::before {  
   display: none;
}

.layout-sell_flow .flow .box-img {  
    border-radius: 15px;
border-width : 4px;
}

.layout-sell_flow h6 {  
   width: 80%;
    height: 70px;
    padding-top: 28px;
    font-size: 14px;
}

.layout-sell_flow h6::before {  
top: 10px;
    font-size: 15px;
}

    
    
/*btn-top*/
	
.pagetop_btn {
/*    bottom: 10%;*/
	 bottom: 10px;
    right: 10px;
}

.pagetop_btn img {
    height: 50px;
}


/*footer*/

/* footer-map */

.footer-map .title-page {
	padding: 20px 0px 25px;
background-size: auto 60px;
    background-position: center bottom 10px;
}

.footer-map .box-detail {
	padding: 15px 0px;
    background-color: var(--color-main);
}

.footer-map .map-box iframe {
	width: 100%;
	height: 200px;
}

/*footer-contact*/

.footer-contact .box-inner {
  justify-content: center;
}

.footer-contact .box {
   flex: auto;
    width: 100%;
}

.footer-contact .box::before {
	height: 200px;
}

.footer-contact .box a {
    height: 200px;
}

.footer-contact h4 {
    font-size: 20px;
    padding-top: 45px;
    margin-bottom: 15px;
}

.footer-contact .box:nth-child(1) h4::before {
	height: 35px;
}

.footer-contact .box:nth-child(2) h4::before {
	height: 26px;
    top: 5px;
}


/*footer-guide*/

.footer-guide {
	padding: 50px 6% 30px;
    text-align: center;
  justify-content: center;
    gap:60px;
    flex-direction: column-reverse;
}

.footer-guide .lay-guide {
    width: 100%;
    text-align: center;
}

.footer-guide .lay-text {
    width: 100%;
}


.footer-guide h2 img {
height: 35px;
}

.footer-guide h3, .footer-guide h3 a {
	font-size: 35px;
}

.footer-guide h3 {
    padding-left: 35px;
    margin: 20px 0px 10px;
    display: inline-block;
}

.footer-guide h3::before {
top: 3px;
	height: 40px;
}


.footer-guide h4 {
    padding-top: 50px;
}

.footer-guide h4::before {
	height: 40px;
    margin-top: -10px;
}

.footer-guide h4 img {
height: 100px;
    width: auto;
}

.footer-guide h5 {
    font-size: 18px;
    line-height: 1.6;
    padding: 20px 0px 15px;
}

.footer-guide h6 a {
    min-width: 260px;
}

.footer-guide .lay-text h6 {
    font-size: 10px;
}

}
