@charset "UTF-8";
@import url("https://use.typekit.net/uwf8ujc.css");/* DIN 2014 Adobe Font*/

/* common */
/* body { padding-top: 80px;}
@media screen and (max-width: 768px) {
  body { padding-top: 60px;}
} */
.bl_sellHead {
  background-color: #fff;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  height: 50px;
  /* opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 0;
  z-index: 1000;
  width: 100%;
  top: 0;
  transition: all .3s;
  transform: translateY(-100%); */
}
/* .bl_sellHead.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
} */
.bl_sellHead_list {
  color: #424245;
  font-size: 1.2rem;
}
.bl_sellHead_list a::after {
  background-color: #424245;
}
@media screen and (max-width: 768px) {
  .spContentsNavi .btnContents {
    background-color: #fff;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    color: #424245;
  }
  .spContentsNavi .btnContents::after {
    background-image: url(image/spContentsNaviArrow.svg);
  }
  .spContentsNavi .item {
    border-bottom: 1px solid #dddddd;
    border-top: none
  }
  .spContentsNavi .linkItem {
    background-color: #fff;
    color: #424245;
  }
  .spContentsNavi .linkItem.active {
    background-color: #f5f5f5;
  }
}

.din2014 { font-family: "din-2014", sans-serif;}
.btn-style a,
.btn-style button {
  background-color: #eec740;
  border: 1px solid #eec740;
  border-radius: 4px;
  color: #424245;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2;
  width: 100%;
  padding: 17px 0;
  position: relative;
  transition: all ease-in-out 0.3s;
  text-align: center;
}
.btn-style a:hover,
.btn-style button:hover {
  background-color: #009ba5;
  border-color: #009ba5;
  border-radius: 40px;
  color: #fff;
}
.btn-style .lg, .btn-style .lg { font-size: calc(28/25*100%); position: relative; }
.btn-style .md, .btn-style .md { font-size: calc(25/25*100%); }
.btn-style .sm, .btn-style .sm { font-size: calc(18/25*100%); }
.btn-style a .arrow:after,
.btn-style button .arrow:after {
  background: url(image/arrow_black.png) no-repeat 0 0 / cover;
  content: "";
  display: inline-block;
  height: 22px;
  width: 22px;
  margin-left: 1rem;
  vertical-align: middle;
  transition: all ease-in-out 0.3s;
}
.btn-style a:hover .arrow:after,
.btn-style button:hover .arrow:after {
  background: url(image/arrow_white.png) no-repeat 0 0 / cover;
}
@media screen and (max-width: 768px) {
  .btn-style a,
  .btn-style button {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    min-height: 35px;
    padding: 3px 0;
  }
  .btn-style .arrow, .btn-style .arrow { position: relative;}
  .btn-style a .arrow:after,
  .btn-style button .arrow:after {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 6px;
    right: -20px;
  }
}
/* HEADER */
#Header {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 20px 40px;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
}
#Header .logo img {
  width: auto;
  height: 40px;
}
#Header .description {
  font-size: 1rem;
  line-height: 1.7;
  padding: 4px 0 0 14px;
}
@media screen and (max-width: 1024px) {
  #Header { padding-left: 20px; }
}
@media screen and (max-width: 768px) {
  #Header { padding: 15px 4%; }
  #Header .logo img { height: 30px; width: auto; }
  #Header .description { line-height: 1.5; padding: 0 0 0 10px; }
}

/* NAVS */
#Navs {
  margin-left: auto;
  padding: 14px 0 6px;
}
#Navs .nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
#Navs .nav-link {
  display: block;
  font-size: 1.2rem;
  padding-bottom: 6px;
  position: relative;
}
#Navs .nav-link:after {
  background-color: #424245;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all cubic-bezier(0.99, 0.14, 0.16, 0.93) 0.4s;
  transform: scale(0);
}
#Navs .nav-link:hover:after,
#Navs .nav-link.active:after {
  opacity: 1;
  transform: scale(1);
}
@media screen and (max-width: 1024px) {
  #Navs .nav-list { gap: 10px; }
}
@media screen and (max-width: 768px) {
  #Navs { display: none; }
}

/* MV */
.mv-wrap {
	min-height: 430px;
	width: 100%;
	position: relative;
	padding: 70px 0 15px;
	height: auto;
}
.mv-wrap > div {
  position: relative;
  z-index: 2;
}
.mv-wrap:before,
.mv-wrap:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all cubic-bezier(0.99, 0.14, 0.16, 0.93) 0.4s;
}
.mv-wrap:before {
  background-color: #dfeff0;
  left: 0;
  top: 35px;
  width: 65%;
  z-index: 1;
}
.mv-wrap:after {
  background-color: #c1dedf;
  right: 0;
  top: 0;
  width: 53%;
}

/* FORM */
*:active, *:focus { outline: none; }
.hidden { display: none; }
.form-block {
  background: #fff;
  padding: 35px 45px;
}
.form-block .box-head {
  color: #424245;
  display: grid;
  grid-template-columns: 208px auto;
  align-items: center;
  gap: 30px;
  margin: 0 0 20px;
}
.form-block .box-head .b-right {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.form-block .box-head .lbl {
  background: url(image/bg_arrow.png) no-repeat bottom right / auto 100%;
  font-size: 1.9rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 22px 30px 22px 5px;
}
.form-block .box-head .lbl .large { font-size: 146%; }
.form-block .box-head .cont {
	font-size: 3.2rem;
	letter-spacing: 0.15em;
	line-height: 1;
	font-weight: bold;
	display: flex;
	align-items: flex-end;
  flex-wrap: wrap;
	width: 100%;
}
.form-block .box-head .cont .ttl {
	font-size: 118%;
	line-height: 1;
	margin-bottom: -3px;
}
.form-block .box-head .cont .large {
  font-size: 131%;
  line-height: 1;
}
.form-block .box-head .cont .ttl .med .num { font-size: 157%; }
.form-block .box-head .cont .sub {
  font-size: 75%;
  display: inline-block;
  margin-left: 10px;
}
.form-block .box-head .note {
	background: #424245;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 0.15em;
	padding: 10px 30px;
	text-align: center;
	margin-left: auto;
}
.form-block .box-cont {
  background: #f7f7f7;
  display: grid;
  grid-template-columns: 208px auto;
  gap: 30px;
  margin-bottom: 25px;
}
.form-block .box-cont .lbl {
	background: #009ba5;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.38;
	padding: 16px 28px;
	width: calc(100% - 30px);
	max-width: 161px;
	position: relative;
	z-index: 0;
	display: flex;
	align-items: center;
  flex-flow: column;
  justify-content: center;
}
.form-block .box-cont .lbl span{
  font-size: 0.7em;
  padding-top: 6px;
  display: inline-block;
}
.form-block .box-cont .lbl::after {
	content: "";
	width: 60px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background: #009ba5;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0 50%);
	z-index: -1;
	right: -30px;
}
.form-block .box-cont .c-right { padding: 15px 40px 15px 0; }
.form-block .box-cont .c-right .box {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 10px;
	align-items: center;
}
.form-block .box-cont .c-right .box-hidden { grid-template-columns: repeat(3, 1fr); }
.form-block .inp-row {
  padding: 15px 0;
  position: relative;
  z-index: 0;
}
.form-block .inp-lbl { padding: 0; }
.form-block .inp-row .err {
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: .05em;
  line-height: 1.7;
  color: #f00;
  text-align: left;
  position: absolute;
  top: -3px;
  left: 0;
}
.form-block .frm-item {
  background: #ffffff;
  border: 2px solid #424245;
  border-radius: 5px;
  color: #424245;
  font-size: 1.4rem;
  padding: 10px 12px;
  display: block;
  width: 100%;
  height: 44px;
}
.form-block select.frm-item {
	background: #fff url(image/icon_select_down.png) no-repeat right 20px center / 16px 8px;
}
.form-block .frm-lbl {
  font-size: 2rem;
  letter-spacing: 0.07em;
  line-height: 2.2;
  font-weight: 500;
  text-align: center;
}
.form-block .box-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}
.form-block .box-name p span {
  display: inline-block;
}
.form-block .box-btn .btn-style { padding: 0; }
.form-block .box-btn .disabled a {
  background-color: #b4b4b4;
  border-color: #b4b4b4;
  color: #fff;
  pointer-events: none;
}
.form-block .box-btn .disabled a .lg:after {
  background-image: url(image/arrow_white.png);
}
@media screen and (max-width: 1024px) {
  .form-block .box-head .cont { align-items: center; }
  .form-block .box-head .cont .sub { margin-left: 0; }
  .form-block .box-head .cont .ttl { margin: 0; width: 100%; }
  .form-block .box-head .note { margin-left: 15px; }
}
@media screen and (max-width: 991px) {
  .form-block .box-cont { grid-template-columns: auto; }
  .form-block .box-cont .lbl {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 25px 15px 0;
  }
  .form-block .box-cont .lbl br { display: none; }
  .form-block .box-cont .lbl::after {
    content: "";
    width: 100%;
    height: 48px;
    position: absolute;
    top: auto;
    right: 0;
    background: #009ba5;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0 50%);
    z-index: -1;
    right: 0;
    bottom: -24px;
  }
  .form-block .box-cont .c-right { padding: 0 15px 15px; }
}
@media screen and (max-width: 768px) {
  .mv-wrap { margin-top: 20px; padding: 30px 0 15px; }
  .mv-wrap::before { top: 15px; }
  .form-block { padding: 15px; }
  .form-block .box-cont .c-right .box {
    grid-template-columns: auto;
    gap: 0;
    align-items: center;
  }
  .form-block .box-head {
    grid-template-columns: 95px auto;
    gap: 15px;
    margin: 0 0 10px;
  }
  .form-block .box-head .lbl {
    font-size: 1.3rem;
    padding: 10px 20px 10px 0px;
  }
  .form-block .box-head .cont {
    font-size: 2rem;
    letter-spacing: -0.05em;
  }
  .form-block .box-head .note {
    margin-left: 10px;
    font-size: 1.2rem;
    padding: 6px 10px;
    letter-spacing: 0;
  }
  .form-block .box-cont {
    gap: 15px;
    margin: 0 0 15px;
  }
  .form-block .box-cont .lbl {
    padding: 15px 15px 0;
    font-size: 1.4rem;
  }
  .form-block .box-cont .lbl::after {
    height: 24px;
    bottom: -12px;
  }
  .form-block .box-cont .c-right { padding: 0 15px; }
  .form-block .frm-lbl { font-size: 1.5rem; }
  .form-block .inp-lbl { margin: -10px 0; }
  .form-block .box-name { font-size: 1.4rem; flex-wrap: wrap;}
  .form-block .box-name p:first-child { width: 100%;}
  .form-block .box-btn a, .form-block .box-btn button { font-size: 1.2rem; letter-spacing: 0.05em; line-height: 1.9;}
}

/* ANCHORS */
.navs-anchors {
  padding-right: 12px;
  padding-bottom: 12px;
  position: fixed;
  right: 0;
  top: 10%;
  width: 125px;
  z-index: 99;
  text-align: right;
  transition: all 0.5s ease-out;
  transform: translateX(100%);
  top: 80px;
}
.navs-anchors.active { transform: translateX(0); }
.navs-anchors li { margin-top: 15px; }
.navs-anchors li.active-white { color: #fff;}
.navs-anchors a {
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 0;
  padding-bottom: 5px;
  position: relative;
}
.navs-anchors a:after {
  background-color: #424245;
  content: "";
  display: block;
  height: 2px;
  width: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: width linear 0.3s;
}
.navs-anchors li.active-white a:after { background-color: #fff;}
.navs-anchors a:hover:after { width: 100%; }
.navs-anchors a.active { font-weight: bold; }
.navs-anchors a.active:after { width: 100%; }
@media screen and (max-width: 768px) {
  .navs-anchors {
    background-color: rgba(255,255,255,0.9);
    bottom: 5px;
    top: auto;
    width: 120px;
  }
  .navs-anchors.active { transform: translateX(100%); }
  .navs-anchors.show { transform: translateX(0); }
  .navs-anchors > span {
    background: rgba(0,155,165,0.75) url(image/arrow_open.png) no-repeat center center / 10px;
    border-radius: 8px 0 0 8px;
    display: block;
    height: 33px;
    width: 30px;
    position: absolute;
    top: 0;
    right: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 0.3s;
  }
  .navs-anchors.show > span {
    background-image: url(image/arrow_close.png);
    background-size: 25px;
    opacity: 1;
    visibility: visible;
  }
  .navs-anchors li { margin-top: 12px;}
  .navs-anchors a { color: #424245;}
  .navs-anchors a:after { background-color: #424245;}
  body.is-scrolling .navs-anchors > span { opacity: 1; visibility: visible;}
}

/* MAIN */
.section {
  padding: 40px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section { padding: 40px 0; }
}
@media screen and (min-width: 769px) {
  .wrap-1200 {
    max-width: 1200px;
    width: calc(100% - 250px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  .wrap-1060 {
    max-width: 1060px;
    width: calc(100% - 250px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  .wrap-1000 {
    max-width: 1000px;
    width: calc(100% - 250px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 768px) {
  .wrap-1200,
  .wrap-1000,
  .wrap-1060 {
    margin: 0 auto;
    width: 92%;
  }
}
.area-gray { background-color: #f1f1f1;}
.area-white { background-color: #fff;}
.d-block { display: block;}
.d-in-block { display: inline-block;}

.mt80 { margin-top: 80px;}
.mt70 { margin-top: 70px;}
.mt60 { margin-top: 60px;}
.mt50 { margin-top: 50px;}
.mt40 { margin-top: 40px;}
.mt30 { margin-top: 30px;}
.mt20 { margin-top: 20px;}
.mt10 { margin-top: 10px;}
.mt00 { margin-top: 00px;}

.mb120 { margin-bottom:120px;}
.mb100 { margin-bottom:110px;}
.mb100 { margin-bottom:100px;}
.mb90  { margin-bottom: 90px;}
.mb80  { margin-bottom: 80px;}
.mb70  { margin-bottom: 70px;}
.mb60  { margin-bottom: 60px;}
.mb50  { margin-bottom: 50px;}
.mb40  { margin-bottom: 40px;}
.mb30  { margin-bottom: 30px;}
.mb20  { margin-bottom: 20px;}
.mb10  { margin-bottom: 10px;}
.mb00  { margin-bottom: 00px;}

@media screen and (max-width: 768px) {
  .mb05SP { margin-bottom: 5px;}
  .mb10SP { margin-bottom: 10px;}
  .mb15SP { margin-bottom: 15px;}
  .mb20SP { margin-bottom: 20px;}
  .mb25SP { margin-bottom: 25px;}
  .mb30SP { margin-bottom: 30px;}
  .mb35SP { margin-bottom: 35px;}
  .mb40SP { margin-bottom: 40px;}
  .mb45SP { margin-bottom: 45px;}
  .mb50SP { margin-bottom: 50px;}
  .mb55SP { margin-bottom: 55px;}
  .mb60SP { margin-bottom: 60px;}
}

.c-white  { color: #ffffff;}
.c-blue   { color: #009ba5;}
.c-yellow { color: #eec760;}
.fw400 { font-weight: 400;}
.fw500 { font-weight: 500;}
.fbold { font-weight: bold;}

@media screen and (max-width: 768px) {
  h2 > span,
  h2 > small,
  h3 > span,
  h3 > small,
  h4 > span,
  h4 > small {
    line-height: 1.3;
  }
}
.headline01 {
  font-size: 3.5rem;
  font-weight: bold;
  text-align: center;
}
.headline01 .sm { font-size: calc(23/35*100%); }
.headline01 .sm_2 { font-size: calc(28/35*100%); }
.headline01 .md { font-size: calc(43/35*100%); }
.headline01 .lg { font-size: calc(60/35*100%); }
@media screen and (max-width: 768px) {
  .headline01 { font-size: 2.2rem;}
}

.headline02 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
}
.headline02:before,
.headline02:after {
  background-color: #424245;
  content: "";
  display: block;
  height: 1px;
  width: auto;
  flex: 1;
}
.headline02 .lg { font-size: calc(38/24*100%); line-height: 1.5; }
@media screen and (max-width: 768px) {
  .headline02 {
    font-size: 1.5rem;
    gap: 15px;
  }
}
.headline03 {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
}
.headline03 .sm { font-size: calc(24/32*100%); }
.headline03 .lg { font-size: calc(43/32*100%); }
.headline03.has-down {
  background: url(image/down_01.png) no-repeat center bottom / 100%;
  padding: 0px 0 35px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .headline03 { font-size: 2.0rem; line-height: 1.6; padding-top: 35px;}
  .headline03.has-down {
    background: url(image/down_01.png) no-repeat center top / 20%;
    /*line-height: 1.6;*/
    padding: 0 0 50px 0;
  }
}

.headline04 {
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
}
.headline04 .lg { font-size: calc(32/21*100%);}
@media screen and (max-width: 768px) {
  .headline04 { font-size: 1.5rem; }
}

.headline05 {
  font-size: 2.4rem;
  text-align: center;
}
.headline05 .has-linedown {
  background: url(image/down_02.png) no-repeat center bottom / 100%;
  display: inline-block;
  padding: 0 15px 30px;
}
.headline05 .lg { font-size: calc(35/24*100%);}
@media screen and (max-width: 768px) {
  .headline05 { font-size: 1.5rem; }
  .headline05 .has-linedown { padding: 0 5px 10px;}
}

.headline06 {
  font-size: 1.5rem;
  text-align: center;
}
.headline06 .lg { font-size: calc(22/15*100%);}
@media screen and (max-width: 768px) {
  .headline06 { font-size: 1.2rem; }
}

.pos-link {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  z-index: 1;
  width: 100%;
  height: 100%;
}

/* POINS */
.point-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.point-list .item {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 15px #b2b2b2;
	padding: 45px 15px 20px;
	text-align: center;
	width: calc(100%/3 - 60px/3);
	position: relative;
	z-index: 0;
	transition: all 0.3s ease-in-out;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.point-list .item.is_hide { pointer-events: none; }
.point-list .item:hover { background-color: #E8F5F5; }
.point-list .item .order { width: 65px;}
.point-list .item .arrow {
	width: 26px;
	margin-top: auto;
}
.point-list .item .txt {
  display: block;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-top: 45px;
}
.point-list .item .ttl {
  display: block;
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 15px 0;
}
.point-list .item .ttl.lg { font-size: 3.9rem; }
.point-list .item .ttl.lg .md { font-size: 90%; }
@media screen and (max-width: 768px) {
  .point-list .item.is_hide { pointer-events: inherit; }
  .point-list { gap: 8px;}
  .point-list .item {
    display: block;
    border-radius: 5px;
    margin: 0 auto;
    padding: 15px 15px 15px 80px;
    position: relative;
    width: 100%;
    text-align: left;
    max-width: 560px;
    width: 380px;
    pointer-events: none;
  }
  .point-list .item .order { width: 35px; position: absolute; left: 15px; top: 20px;  }
  .point-list .item .txt { font-size: 1.5rem; margin: 0;  }
  .point-list .item .ttl { font-size: 2.0rem; line-height: 1.25; margin: 0;  }
  .point-list .item .ttl.lg { font-size: 2.4rem;  }
  .point-list .item .ttl.lg .md { font-size: 86%; }
  .point-list .item .arrow { width: 22px; position: absolute; right: 20px; bottom: 20px;}
}

.viewmore-points {
  /* background: url(image/down_03.png) no-repeat center bottom / auto 12px; */
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  padding: 30px 0 20px;
  position: relative;
  text-align: center;
}
.viewmore-points span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
}
.viewmore-points.active span:nth-child(1) {
  opacity: 0;
  visibility: hidden;
}
.viewmore-points.active span:nth-child(2) {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  .viewmore-points {
    font-size: 1.4rem;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* .point-modal */
.point-modal {
  display: none;
  background: #fff;
  box-shadow: 0px 0px 15px #b2b2b2;
  border-radius: 10px;
  width: calc(100% + 60px);
  padding: 30px 0px;
  margin: 30px 0 0 -30px;
  cursor: pointer;
}
.point-modal .modal-list {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  max-width: 100%;
}
.point-modal .modal-list-flex {
  display: flex;
  gap: 0;
  position: relative;
}
.point-modal .md-item {
	border-left: 1px solid #878788;
	padding: 0 20px;
	text-align: center;
	position: relative;
	z-index: 0;
	width: calc(100% / 3);
}
.point-modal .md-item:first-child { border: none; }
.point-modal .md-item .ttl {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin: 0 0 15px;
}
.point-modal .md-item .ttl .large { font-size: 177%; font-weight: bold;}
.point-modal .md-item .img {
  margin: 0 0 30px;
  position: relative;
  z-index: 0;
}
.point-modal .md-item .img .lbl {
	font-size: 1.4rem;
	line-height: 1;
	position: absolute;
	bottom: 3%;
	left: 88%;
	letter-spacing: 0;
	right: auto;
	display: block;
	white-space: nowrap;
}
.point-modal .md-item .capt { text-align: left;}
.point-modal .md-item .capt p {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-indent: -0.8em;
  padding-left: 2.1em;
}
.point-modal .modal-list .md-item.active { display: block;}
.is-modal { overflow: hidden;}
.is-modal .point-modal {
  opacity: 1;
  visibility: visible;
}
.point-modal .btn-close {
	border-radius: 50%;
	cursor: pointer;
	position: absolute;
	top: 20px;
	right: 20px;
	transform: rotate(45deg);
	width: 56px;
	height: 56px;
  z-index: 11;
}
.point-modal .btn-close:before {
  content: "";
  background: #fff;
  height: 1px;
  width: 86%;
  position: absolute;
  top: 50%;
  left: 7%;
}
.point-modal .btn-close:after {
  content: "";
  background: #fff;
  width: 1px;
  height: 86%;
  position: absolute;
  left: 50%;
  top: 7%;
}
.accordion_sp {
  display: none !important;
  background: none !important;
  box-shadow: unset !important;
  padding: 0 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  position: relative;
  z-index: 0;
}
.accordion_sp .icon_hand {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 50px;
  display: none;
}
.accordion_sp .icon_hand img {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transition-delay: 0.3s;
  animation: horizontalb 1.5s ease-in-out infinite alternate;
}
@keyframes horizontalb {
  0% {
    transform: translate(-60%, -10%);
  }
  100% {
    transform: translate(60%, -10%);
  }
}
.accordion_sp.is_on .icon_hand img {
  opacity: 1;
  visibility: visible;
}
.accordion_sp.is_on {
  opacity: 1;
  visibility: visible;
  margin: 0 0 30px;
}
.accordion_sp .point-modal {
	margin: 8px 0 0;
	padding: 15px;
  width: 1140px;
}
@media screen and (min-width: 769px) {
  .point-modal .icon_hand {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .accordion_sp { display: block !important; }
  .point-list + .point-modal { display: none !important; }
  .point-modal .modal-list-flex {
    gap: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
  .point-modal .md-item {
    padding: 0 7px;
  }
  .point-modal .md-item .ttl {
    font-size: 1.6rem;
  }
  .point-modal .md-item .img { margin: 0 0 15px; }
  .point-modal .md-item .capt p {
    font-size: 1rem;
    letter-spacing: 0;
  }
  .point-modal .md-item {
    border-width: 1px;
    padding: 30px 15px 15px;
  }
  .point-modal .btn-close {
    height: 28px;
    width: 28px;
    right: 15px;
    top: 15px;
  }
  .point-list .accordion_sp {
    max-width: 100vw;
    width: 100vw !important;
    margin-left: -4vw;
    overflow: auto;
    padding-left: calc((100vw - 380px)/2) !important;
    padding-right: calc((100vw - 380px)/2) !important;
    padding-bottom: 30px;
    margin: 0 -4vw 0;
    margin-right: -4vw;
  }
  .point-list .accordion_sp.is_on {
    padding-bottom: 20px !important;
    margin-bottom: 15px !important;
  }
}
@media screen and (max-width: 610px) {
  .accordion_sp .point-modal {
    /* width: calc(100% + (100vw - 280px)/2);     */
    width: 840px;
  }
  .point-modal .modal-list-flex .md-item:last-child {
    /* margin-right: calc((100vw - 280px)/2); */
  }
  .point-modal .md-item {
    /* min-width: 250px; */
    padding: 0 10px;
  }
  .point-modal .md-item .ttl {
    font-size: 1.2rem;
    letter-spacing: -0.05em;
  }
  .point-list .item {
    width: 280px;
  }
  .point-list .accordion_sp {
    padding-left: calc((100vw - 280px)/2) !important;
    padding-right: calc((100vw - 280px)/2) !important;
  }
}

/* result */
.result-wrap { padding-top: 100px; }
.result-list {
  display: flex;
  flex-wrap: wrap;
}
.result-list .item {
	padding: 0 60px;
	width: calc(100%/3);
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}
.result-list .item:nth-child(2) {
  border-left: 1px solid #b2b2b2;
  border-right: 1px solid #b2b2b2;
}
.result-list .item .cap {
  display: block;
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 30px;
  padding-left: 1.5em;
  text-indent: -1.5em;
}
@media screen and (max-width: 768px) {
  .result-wrap { padding-top: 35px;}
  .result-list .item {
    margin: auto;
    padding: 0;
    text-align: center;
    width: 100%;
    border: none;
  }
  .result-list .item:nth-child(2) {
    border: none;
    border-top: 1px solid #b2b2b2;
    border-bottom: 1px solid #b2b2b2;
    margin: 15px auto;
    padding: 15px 0;
  }
  .result-list .item .cap { font-size: 1.0rem; margin-top: 10px; text-align: left; }
  .result-list .item img { width: 85%; margin: auto;}
}

/* solution */
.solution-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.solution-list .item {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 15px;
  position: relative;
  text-align: center;
  max-width: 240px;
  /* width: calc(100%/4 - 48px/3); */
  width: calc(100%/4 - 24px*3/4);
}
.solution-list .item .ttl {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 18%;
  width: 100%;
}
.solution-list .item img { width: 130px; }
@media screen and (max-width: 768px) {
  .solution-list { column-gap: 20px; row-gap: 10px; }
  .solution-list .item {border-radius: 5px; width: calc(100%/2 - 40px/4); }
  .solution-list .item .ttl { font-size: 1.6rem; }
  .solution-list .item img { width: 60px; }
}

/* sell */
.sell-wrap {
  padding-top: 100px;
  text-align: center;
}
.sell-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sell-list .item {
  background: url(image/dot.png) repeat-y right top / 1.5px auto;
  padding: 0 35px;
  max-width: 270px;
  width: calc(100% / 4);
}
.sell-list .item:last-child { background-image: none; }
.sell-list .ttl {
  background-color: #55a7af;
  color: #fff;
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0;
  padding: 14px;
}
.sell-list .img {
  margin: 30px 0 20px;
  width: 160px;
}
.sell-list .checks {
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: left;
}
.sell-list .checks > span {
  background: url(image/check_black.png) no-repeat 0 0;
  background-size: 11px 14px;
  display: block;
  margin-top: 10px;
  padding-left: 1em;
}
.sell-list .btn {
  background: #e6f0f0 url(image/arrow_black.png) no-repeat right 12px center / 24px;
  border-radius: 0;
  border: 2px solid #424245;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  height: 50px;
  max-width: 200px;
  margin: 0 auto;
  margin-top: 45px;
  padding: 0;
  transition: all ease-in-out 0.3s;
}
.sell-list .btn:hover {
  background: #424245 url(image/arrow_white.png) no-repeat right 12px center / 24px;
  color: #fff;
}
.sell-separate {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .sell-list .item { padding: 0 15px; }
}
@media screen and (max-width: 768px) {
  .sell-wrap { padding-top: 40px;}
  .sell-list {
    flex-wrap: wrap;
    column-gap: 0;
    row-gap: 25px;
  }
  .sell-list .item {
    padding: 0 8px;
    width: calc(100% / 2);
  }
  .sell-list .item:nth-child(even) { background-image: none; }
  .sell-list .ttl {
    font-size: 1.8rem;
    padding: 12px 0 10px;
  }
  .sell-list .img {
    margin: 25px 0 0;
    width: 100px;
  }
  .sell-list .checks { font-size: 1.2rem; }
  .sell-list .checks > span { line-height: 1.6;}
  .sell-list .btn {
    background-size: 20px;
    border-width: 1px;
    font-size: 1.3rem;
    height: 40px;
  }
}

/* support */
.support-image { text-align: center; }

/* service */
.service-wrap { padding-top: 140px; }
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}
.service-list .item {
  position: relative;
  transition: all ease-in-out 0.3s;
  width: calc(100% / 4 - 36px * 3 / 4);
}
.service-list .item:hover { background-color: #f1f1f1; }
.service-list .item:after {
  background: url(image/arrow_black.png) no-repeat 0 0 / cover;
  content: "";
  display: block;
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 24px;
  height: 24px;
}
.service-list .img { position: relative;}
.service-list .img .list-icon {
  display: flex;
  position: absolute;
  bottom: 5px;
  right: 5px;
  gap: 5px;
}
.service-list .ttl-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.service-list .ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  padding: 13px 0;
  text-align: center;
}
.service-list .icon {
  background-color: #009ba5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.2;
  height: 36px;
  width: 36px;
}
.service-list .txt {
  display: block;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0;
  padding: 0 15px 40px;
}
@media screen and (max-width: 768px) {
  .service-wrap { padding-top: 40px; }
  .service-list { justify-content: space-between; gap: 15px; }
  .service-list .item { width: calc(100% / 2 - 15px / 2); }
  .service-list .item:after { width: 15px; height: 15px; }
  .service-list .ttl { font-size: 1.2rem; padding: 10px 0; }
  .service-list .icon { font-size: 1rem; width: 30px; height: 30px;}
  .service-list .txt { font-size: 1.0rem; padding: 0 10px 40px; }
}


/* flow */
.section-flow {
  background: url(image/flow_bg.jpg) no-repeat center center / cover;
  background-attachment: fixed;
}
.step-list {
  display: flex;
  gap: 26px;
}
.step-list .item {
  position: relative;
  width: calc(100% / 7 - 26px * 6 / 7);
  transition: opacity ease-in-out 0.4s;
}
/* .step-list .item.is_hide { pointer-events: none;} */
.step-list .step_accordion_sp { display: none !important; }
/* .step-list .item:hover { opacity: 0.7; } */
.step-list .name {
  background: url(image/step_bg.png) no-repeat right bottom / cover;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0;
  min-height: 60%;
  margin-top: 10px;
  padding: 10px 10px 25px;
  transition: background-image ease-in-out 0.3s;
}
.step-list:hover .item .name {background: url(image/step_bg_o.png) no-repeat right bottom / cover;}

.viewmore-step {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  padding: 0 0 50px;
  position: relative;
  text-align: center;
  color: #fff;
}
.viewmore-step span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
}
.viewmore-step.active span:nth-child(1) {
  opacity: 0;
  visibility: hidden;
}
.viewmore-step.active span:nth-child(2) {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  .step-list .step_accordion_sp {
    display: block !important;
  }
  .step-list .step_accordion_sp .step-modal { display: none; }
  .section-flow {
    background: url(image/flow_bg_sp.jpg) no-repeat center center / cover;
    background-attachment: scroll;
  }
  .step-list {
    flex-direction: column;
    gap: 6px;
    padding: 0 9%;
  }
  .step-list .item {
    display: flex;
    align-items: flex-start;
    width: 100%;
    pointer-events: none;
  }
  .step-list .item:hover {
    opacity: 0.7;
    transform: translateX(0);
  }
  .step-list .item .order { height: auto; width: /*32px*/48px;}
  .step-list .name {
    background: url(image/step_bg_sp.png) no-repeat right bottom / cover!important;
    font-size: 1.4rem;
    margin: 0;
    padding: 7px 10px;
    width: calc(100% - 48px);
  }

  .step-list-sp { margin-bottom: 24px; text-align: center;}
  .step-list-sp img { width: 70%;}
  .viewmore-step {
    font-size: 1.4rem;
    max-width: 280px;
    margin: 0 auto;
  }
}

.step-modal {
  display: none;
}
.step-modal-list {
  background-color: #fff;
  padding: 20px;
  position: relative;
}
.step-modal-list-flex .md-item {
  padding-right: 10px;
}
.step-modal-list-flex .md-item img {
  height: 72px;
  width: auto;
}
.step-modal-list-flex .md-item ul {
  padding: 20px;
  padding-top: 0;
}
.step-modal-list-flex .md-item ul.has-flex {
	display: grid;
	flex-wrap: wrap;
  gap: 0px 30px;
	grid-template-columns: repeat(2, 1fr);
}
.step-modal-list-flex .slick-list {
  padding: 0 !important;
}
.step-modal-list-flex .md-item ul > li {
  margin-top: 20px;
}
.step-modal-list-flex .md-item .span01 {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0;
  position: relative;
}
.step-modal-list-flex .md-item .span01:before {
  background-color: #424245;
  content: "";
  display: block;
  height: 14px;
  width: 14px;
  position: absolute;
  top: 4px;
  left: -16px;
}
.step-modal-list-flex .md-item .span02 {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}
.step-modal-list-flex .md-item .lightbox {
  background-color: #e8f5f5;
  padding: 15px 5px 15px 70px;
}
.step-modal-list-flex .md-item .iconlight:before {
  background-color: transparent;
  background: url(image/light.png) no-repeat 0 0 / cover;
  height: 50px;
  width: 40px;
  left: -45px;
  top: -5px;
}
.step-modal-list .swipe-icon-2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: auto;
  width: 100px;
  animation: horizontal-2 1.5s ease-in-out infinite alternate;
}
@keyframes horizontal-2 {
  0% {
    transform: translate(-50%, -10%);
  }
  100% {
    transform: translate(50%, -10%);
  }
}
@media screen and (max-width: 768px) {
  .step-modal-list { padding: 10px;}
  .step-modal-list-flex .md-item img { height: /*36px*/54px;}
  .step-modal-list-flex .md-item ul > li { margin-top: 10px;}
  .step-modal-list-flex .md-item .span01 { font-size: 1.4rem;}
  .step-modal-list-flex .md-item .span01:before { width: 12px; height: 12px; left: -14px; top: 3px;}
  .step-modal-list-flex .md-item .span02 { font-size: 1.2rem;}
  .step-modal-list-flex .md-item .lightbox { padding: 15px 5px 15px 40px;}
  .step-modal-list-flex .md-item .iconlight:before {
    height: 38px;
    width: 30px;
    left: -35px;
    top: -5px;
  }
  .step-modal-list .swipe-icon-2 { width: 50px;}
}

.step-modal-list .splide__arrow,
.step-modal-list .slick-arrow {
  text-indent: -99999px;
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 1;
}
.step-modal-list .splide__arrow:hover,
.step-modal-list .slick-arrow:hover {
  opacity: 0.7;
}
.step-modal-list .slick-arrow:before {
  display: none;
}
.step-modal-list .splide__arrow--prev,
.step-modal-list .slick-prev {
  border-radius: 50%;
	background: rgba(255,255,255,0.7) url(image/arrow_prev.png) no-repeat center center / 100% auto;
	width: 46px;
	height: 46px;
	left: -30px;
	transform: translateX(-100%) translateY(-50%);
}
.step-modal-list .splide__arrow--next,
.step-modal-list .slick-next {
  border-radius: 50%;
	background: rgba(255,255,255,0.7) url(image/arrow_next.png) no-repeat center center / 100% auto;
	width: 46px;
	height: 46px;
	right: -30px;
	transform: translateX(100%) translateY(-50%);
}
.step-modal-list .splide__arrow svg { display: none !important; }
.step-modal-list .splide__arrow:disabled,
.step-modal-list .slick-disabled {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .step-modal-list .splide__arrow,
  .step-modal-list .slick-arrow {
    width: 36px;
    height: 36px;
  }
  .step-modal-list .splide__arrow--prev,
  .step-modal-list .slick-prev { left: -15px }
  .step-modal-list .splide__arrow--next,
  .step-modal-list .slick-next { right: -15px }
}

/*sales*/
.sale-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 50px;
}
.sale-list .item {
  border-top: 1px solid #424245;
  border-bottom: 1px solid #424245;
  padding: 15px 30px 20px;
  width: 45.5%;
}
@media screen and (max-width: 768px) {
  .sale-list { row-gap: 15px; }
  .sale-list .item {
    padding: 10px 20px;
    width: 100%;
  }
}

/*Voice*/
.voice-rate { font-size: 1.2rem; line-height: 1.5; text-align: center; }
.voice-list {
	position: relative;
	z-index: 0;
	margin-top: -15px;
	width: calc(100% + 36px);
	margin-left: -18px;
}
.voice-list .voice-card {
  padding: 15px 18px 30px;
  height: auto;
}
.voice-list .item {
  border-radius: 10px;
  box-shadow: 0px 0px 15px #b2b2b2;
  background: #fff;
  color: #424245;
  padding: 30px 20px 40px;
  height: 100%;
  text-align: center;
}
.voice-list .item .ttl {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 25px;
}
.voice-list .item .img {
  width: 100%;
  max-width: 104px;
  margin: 0 auto 25px;
}
.voice-list .item .time {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: 0 0 15px;
}
.voice-list .item .txt {
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.4;
  text-align: justify;
}
.voice-list .swiper-button-next {
	background: url(image/arrow_next.png) no-repeat center center / 100% auto;
	width: 46px;
	height: 46px;
	right: 10px;
	transform: translateX(50%);
}
.voice-list .swiper-button-prev {
  background: url(image/arrow_prev.png) no-repeat center center / 100% auto;
  width: 46px;
  height: 46px;
  left: 10px;
  transform: translateX(-50%);
}
.voice-list .swiper-horizontal > .swiper-scrollbar {
  background: #e6e6e6;
  height: 8px;
  margin: 0 auto;
  max-width: 100%;
  width: calc(100% - 36px);
}
.voice-list .swiper-horizontal .progressbar .swiper-scrollbar-drag {
  background: #969696;
  width: 506px !important;
}
.voice-list .txt-btm {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 10px;
  text-align: right;
}
.voice-capt {
  color: #424245;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.57;
  margin-top: 20px;
}
@media screen and (max-width: 1280px) {
  .voice-list {
    width: 100%;
    margin-left: 0;
  }
  .voice-list .swiper-horizontal .progressbar .swiper-scrollbar-drag { width: 320px !important; }
}
@media screen and (max-width: 768px) {
  .voice-rate { padding: 0 10%; }
  .voice-list .item .img { max-width: 80px; }
  .voice-list .item .time { font-size: 1.3rem; }
  .voice-list .item .txt { font-size: 1.2rem; }
  .voice-list .swiper-button-prev,
  .voice-list .swiper-button-next {
    width: 36px;
    height: 36px;
  }
  .voice-list .swiper-horizontal > .swiper-scrollbar { height: 4px; }
  .voice-list .swiper-horizontal .progressbar .swiper-scrollbar-drag { width: 180px !important; }
  .voice-capt { font-size: 1rem; margin-top: 30px; }
  .voice-list .txt-btm { font-size: 1rem;}
}

/*FAQ*/
.faq_wrap {
  border-bottom: 1px solid #424245;
  overflow: hidden;
  padding: 25px 7px 10px 0;
}
.faq_wrap .faq_q::before,
.faq_wrap .faq_a::before,
.faq_wrap .close::before,
.faq_wrap .close:after {
  display: none;
}
.faq_wrap .faq_q {
  cursor: default;
  display: flex;
  position: relative;
}
.faq_wrap .icon {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0;
}
.faq_wrap .faq_q .ttl {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 0 1.4rem;
}
.faq_wrap .faq_q .buttons {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-left: auto;
  position: relative;
}
.faq_wrap .faq_q .buttons:before {
  background-color: #55a7af;
  content: "";
  display: block;
  height: 13px;
  width: 3px;
  position: absolute;
  right: 5px;
  top: 4px;
}
.faq_wrap .faq_q .buttons.active:before { display: none; }
.faq_wrap .faq_q .buttons:after {
  background-color: #55a7af;
  content: "";
  display: block;
  width: 13px;
  height: 3px;
  position: absolute;
  right: 0;
  top: 9px;
}
.faq_wrap .faq_q .buttons a { display: none; padding-right: 1em; position: relative; z-index: 1;}
.faq_wrap .faq_q .buttons a.on { display: block;}
.faq_wrap .faq_q .buttons span { display: none; cursor: pointer; padding-right: 1em; position: relative; z-index: 1;}
.faq_wrap .faq_q .buttons span.on { display: block;}
.faq_wrap .faq_a_body { display: flex;}
.faq_wrap .faq_a .txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0 10rem 0 2.5rem;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .faq_wrap .icon { font-size: 1.5rem; }
  .faq_wrap .faq_q .ttl { font-size: 1.2rem; padding-top: 5px; }
  .faq_wrap .faq_a .txt {
    font-size: 1.2rem;
    padding: 0 0 0 2.5rem;
  }
  .faq_wrap .faq_q .buttons {
    font-size: 1.5rem;
    position: absolute;
    right: 0;
    bottom: -5px;
  }
}

/*Stores*/
.store-wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.store-image {
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
}
.btn-store a {
  background-color: #fff;
  border-color: #424245;
  padding: 11px 0;
}
.btn-store a:hover {
  background-color: #424245;
  border-color: #424245;
}
@media screen and (max-width: 768px) {
  .btn-store a {line-height: 2;}
}

.store-double-btns {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.store-double-btns > * {
  width: calc(100% / 2 - 30px / 2);
}
.store-double-btns .btn-style a {
  display: flex;
  flex-direction: column;
  position: relative;
}
.store-double-btns .btn-style a .arrow:after {
  position: absolute;
  right: 30px;
  top: 5px;
}
@media screen and (max-width: 768px) {
  .store-double-btns {
    flex-direction: column;
    gap: 10px;
  }
  .store-double-btns > * {
    width: 100%;
  }
  .store-double-btns .btn-style a .arrow:after {
    right: -20px;
    top: 6px;
  }
}

/* QUICK AI ASSESSMENT */
.ai-assess {
  background: url(image/ai_assess_bg.jpg) no-repeat center center / cover;
  position: relative;
}
.ai-assess-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.ai-assess-in > img { width: 60%;}
.ai-assess-in ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.ai-assess-in ul li {
  background-color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 2px 5px;
}
.ai-assess-in .viewmore {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .ai-assess-in {
    flex-direction: column;
    padding-bottom: 20px;
  }
  .ai-assess-in > img {
    width: 100%;
  }
  .ai-assess-right {
    display: flex;
    flex-direction: column-reverse;
  }
  .ai-assess-in .viewmore {
    margin-bottom: 8px;
    text-align: left;
  }
  .ai-assess-in .viewmore img {
    width: 71px;
  }
  .ai-assess-in ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 12px;
    row-gap: 3px;
    margin-bottom: 0;
  }
  .ai-assess-in ul li {
    font-size: 1rem;
    letter-spacing: 0;
    width: calc(100% / 2 - 6px);
  }
}

/* MANSION LIBRARY */
.mansion-library {
  background: url(image/mansion_library_bg.jpg) no-repeat center center / cover;
  padding: 50px 0 25px;
  position: relative;
}
.mansion-library-in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.mansion-library-in div.ord03 { width: auto; order: 1;}
.mansion-library-in div.ord02 { width: 27%; order: 3; text-align: right;}
.mansion-library-in div.ord01 { width: 47%; order: 2;}
.mansion-library-in .ttl {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 8px;
  text-align: center;
}
.mansion-library-in .txt {
  font-size: 1.3rem;
  font-weight: 500;
}
.mansion-library-in ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.mansion-library-in ul li {
  background-color: #424245;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 2px 5px;
}
@media screen and (max-width: 768px) {
  .mansion-library { padding: 25px 0;}
  .mansion-library-in div.ord01 {
    width: 65%;
  }
  .mansion-library-in div.ord02 {
    width: 33%;
  }
  .mansion-library-in div.ord02 img {
    width: 80%;
  }
  .mansion-library-in div.ord03 {
    display: flex;
    flex-direction: column-reverse;
    order: 3;
    width: 100%;
  }
  .mansion-library-in .ttl {
    font-size: 1rem;
    order: 4;
    text-align: left;
  }
  .mansion-library-in .txt {
    font-size: 1rem;
    line-height: 1.4;
  }
  .mansion-library-in ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 12px;
    row-gap: 3px;
    margin-bottom: 8px;
  }
  .mansion-library-in ul li {
    font-size: 1rem;
    letter-spacing: 0;
    width: calc(100% / 2 - 6px);
  }
  .mansion-library-in .viewmore {
    margin-bottom: 8px;
    text-align: left;
  }
  .mansion-library-in .viewmore img {
    width: 71px;
  }
}

.two-cols { display: flex; }
.two-cols > div { position: relative; width: 50%; }
.two-cols img { width: 100%;}
@media screen and (max-width: 768px) {
  .two-cols { flex-direction: column;}
  .two-cols > div { width: 100%;} 
}

/* COLUMN */
.sec-column {
  background: url(image/column_bg.jpg) no-repeat center center / cover;
  padding: 70px 0 55px;
  position: relative;
}
.sec-column .column-in {position: relative;}
.sec-column .ttl {
  margin-bottom: 35px;
  text-align: center;
}
.sec-column .ttl img {
  width: 25%;
}
.sec-column .viewmore {
  font-size: 1.6rem;
  margin-top: 15px;
  text-align: right;
}
.sec-column .viewmore a {
  display: inline-block;
  line-height: 0;
  /*text-decoration: underline;*/
}
.sec-column .viewmore img {
  width: 8vw;
  height: auto;
}
.sec-column .viewmore2 {
  display: flex;
  font-size: 1.6rem;
  position: absolute;
  right: 10px;
  bottom: 22px;
  align-items: center;
}
.sec-column .viewmore2:after {
  background: url(image/arrow_black.png) no-repeat 0 0 / cover;
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
.sec-column .viewmore:hover { text-decoration: none; }
.column-list {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 0;
}
.column-list .column-card {
  height: auto;
  padding: 0 10px 30px;
}
.column-list .item {
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  height: 100%;
  padding: 20px;
}

.column-list .item:after {
  background: url(image/arrow_black.png) no-repeat 0 0 / cover;
  content: "";
  display: block;
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 24px;
  height: 24px;
}


.column-list .item img {
  border-radius: 5px;
  margin-bottom: 15px;
  width: 100%;
}
.column-list .item span {
  display: block;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0;
}
.column-list .swiper-button-next {
	background: url(image/arrow_next.svg) no-repeat center center / 100% auto;
	width: 46px;
	height: 46px;
	right: -16px;
	transform: translateX(50%);
}
.column-list .swiper-button-prev {
  background: url(image/arrow_prev.svg) no-repeat center center / 100% auto;
  width: 46px;
  height: 46px;
  left: -16px;
  transform: translateX(-50%);
}
.column-list .swiper-horizontal > .swiper-scrollbar {
  background: #e6e6e6;
  height: 8px;
  margin: 0 auto;
  max-width: 100%;
  width: calc(100% - 20px);
  bottom: 8px;
}
.column-list .swiper-horizontal .progressbar .swiper-scrollbar-drag {
  background: #969696;
  width: 506px !important;
}
@media screen and (max-width: 1280px) {
  .column-list {
    width: 100%;
    margin-left: 0;
  }
  .column-list .swiper-horizontal .progressbar .swiper-scrollbar-drag { width: 320px !important; }
}
@media screen and (max-width: 768px) {
  .sec-column { padding: 50px 0 30px;}
  .sec-column .ttl { margin-bottom: 15px;}
  .sec-column .ttl img { width: 70%; }
  .sec-column .more { font-size: 1.3rem; }
  .sec-column .viewmore { text-align: center; }
.sec-column .viewmore img {
  width: 19vw;
  height: auto;
}
  .column-list .column-card { padding: 0 5px 15px;}
  .column-list .item { padding: 10px;}
  .column-list .item span { font-size: 1.2rem;}
  .column-list .swiper-button-prev,
  .column-list .swiper-button-next {
    width: 36px;
    height: 36px;
  }
  .column-list .swiper-button-prev { left: 10px;}
  .column-list .swiper-button-next { right: 10px;}
  .column-list .swiper-horizontal > .swiper-scrollbar { height: 4px; }
  .column-list .swiper-horizontal .progressbar .swiper-scrollbar-drag { width: 180px !important; }
}


.swipe-icon { display: none;}

@media screen and (max-width: 768px) {
  .swipe-wrap {
    padding-bottom: 45px;
    position: relative;
  }
  .swipe-scroll {
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .swipe-scroll > img {
    max-width: inherit;
    width: 768px;
  }
  .swipe-icon {
    display: block;
    width: 250px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    animation: horizontal 1.5s ease-in-out infinite alternate;
  }
  .sec-column .viewmore2 {
  font-size: 1.2rem;
}
}
@keyframes horizontal {
  0% {
    transform: translate(-10%, -10%);
  }
  100% {
    transform: translate(15%, -10%);
  }
}

/* CONTACT FIXED */
.contact-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.contact-btn-item {
  background-color: rgb(238, 199, 64);
  border-radius: 3px;
  color: #424245;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 2.3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  /* line-height: 1.2; */
  /* width: calc(100% / 3 - 60px * 2 / 3); */
  width: 27%;
  min-width: 250px;
  padding: 8px 0 6px 0;
  position: relative;
  transition: all ease-in-out 0.3s;
  text-align: center;
}
.contact-btn-item:after {
  background: url(image/arrow_black.png) no-repeat 0 0 / cover;
  content: "";
  display: inline-block;
  height: 22px;
  width: 22px;
  margin-left: 1rem;
  vertical-align: middle;
  transition: all ease-in-out 0.3s;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.contact-btn-item:hover {
  background-color: #009ba5;
  border-radius: 20px;
  color: #fff;
}
.contact-btn-item:hover:after {
  background: url(image/arrow_white.png) no-repeat 0 0 / cover;
}
.contact-btn-item small {
  font-size: calc(15/23*100%);
}
.contact-tel-item {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  position: relative;
  text-align: center;
  /* width: calc(100% / 3 - 60px * 2 / 3); */
  width: 50%;
}
.contact-tel-item:after {
  background: url(image/icon_tel.png) no-repeat 0 0 / cover;
  content: "";
  display: inline-block;
  height: 30px;
  width: 30px;
  position: absolute;
  left: 0;
  top: 0;
}
.contact-tel-item small {
  font-size: calc(15/30*100%);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .contact-list {
    flex-direction: column;
    gap: 6px;
    padding: 0 15px;
  }
  .contact-btn-item {
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    width: 100%;
    max-width: 250px;
  }
  .contact-btn-item:after {
    height: 16px;
    width: 16px;
    right: 5px;
  }
  .contact-tel-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    font-size: 2rem;
    padding-left: 25px;
    width: 100%;
  }
  .contact-tel-item:after {
    height: 20px;
    width: 20px;
  }
}
.voice-card .txtEnd{
  position: absolute;
  bottom: 46px;
  text-align: right;
  right: 40px;   
}
.pt80 {
  padding-top: 80px;
}

.contact_box {
  background-color: rgba(28, 42, 84, 0)!important;
  padding: 15px 0!important;
}
.top_btn { bottom: 75px;}
.service-cap {margin-top: 20px;}
@media screen and (max-width: 768px) {
  .sell .contact_box {
    display: none;
    padding: 3% 0;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 0.3s;
  }
  .sell .contact_box__sp_fixed {
    display: block;
    opacity: 1;
    visibility: visible;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9;
  }
  .top_btn { display: none!important; bottom: 11%;}
  .form-block .box-cont .lbl span { padding-top: 2px;}
}