body.customize-support {
    margin: 0 !important;
    padding: 0 !important;
}
body {
	margin: 0 !important;
	padding: 0 !important;
}



.feed-box {
  /*追加*/
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(150px);
}
.is-active {
  /*要素を表示させる*/
  opacity: 1;
  visibility: visible;
  /*元の位置に戻す*/
  transform: translateY(0);
}


#index .fv-container{
  animation: text-fade-in 1s cubic-bezier(0.43, 0.05, 0.17, 1) forwards;
  transform: translateY(100%);
}


@keyframes text-fade-in {
  0% {
    transform: translateY(100%);
 opacity: 0;
  }
  100% {
    transform: translateY(0%);
 opacity: 1;
  }
}



/*hb*/
nav.hb-nav {
    position: fixed;
    top: 24px;
    width: 100%;
    z-index: 10;
    display: none;
}
ul#hb-menu {
    height: 0;
    overflow: hidden;
    transition: .3s;
    list-style:none;
}



#hb-menu li a{
    padding: 8px;
    font-size: 16px;
    color: #464646;
    display: block;
    text-align: center;
    text-decoration: none;
	font-family: "Noto Sans JP", sans-serif;
}


.hamburger {
    position: absolute;
    top: 20px;
    right:32px;
    cursor: pointer;
    width: 32px;
    height: 24px;
    z-index: 10;
	display: none;
}



.hamburger span {
    /*3本の線を作る*/
    transition: all .3s;
    position: absolute;
    height: 2px;
    background-color: #333;
    width:100%;
    z-index: 10;
}
.hamburger span:nth-of-type(1) {
    /*上の線の位置*/
    top: 4px;
}
.hamburger span:nth-of-type(2) {
    /*真ん中の線の位置*/
    top: 12px;
}
.hamburger span:nth-of-type(3) {
    /*下の線の位置*/
    top: 20px;
}
.hamburger.open span:nth-of-type(1) {
    /*openのとき、上の線を右斜めにする*/
    top: 10px;
    transform: translateY(6px) rotate(-33deg);
}
.hamburger.open span:nth-of-type(2) {
    /*真ん中の線を消す*/
    opacity: 0;
}
.hamburger.open span:nth-of-type(3) {
    /*下の線を左斜めにする*/
    top: 22px;
    transform: translateY(-6px) rotate(33deg);
}

@media (max-width: 768px) {
	.hamburger, nav.hb-nav {
		display: block;
	}
	ul#hb-menu {
		padding: 0;
		background-color: #fff;
		margin: 30px 0;
	}
}

/*banner*/
.banner {
	width: 100%;
	margin: 0 auto;
}
.banner img {
	display: block;
	width: 100%;
}
/*header*/
.header-inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
position:fixed;
top:0;
background:#fff;
z-index:9999;
}
@media (max-width: 768px) {
	.header-inner {
		position: relative;
	}
}
/*logo*/
h1#header__title {
    width: 5%;
    margin: 0;
    padding: 10px 0 10px 20px;
}
img.logo-hed {
	width: 100%;
}
@media (max-width: 768px) {
	h1#header__title {
		width: 20%;
	}
}
/*nav*/
nav.g-nav {
	/*width: 40%;*/
	padding-right: 20px;
}
ul#g-menu {
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: end;
	gap: 40px;
}
nav.g-nav li {
    list-style: none;
    /*width: 180px;*/
    text-align: center;
	font-family: "Noto Sans JP", sans-serif;
}
nav.g-nav li:first-child {
	padding-left: 15px;
}
nav.g-nav a {
	text-decoration: none;
	color: #000;
        transition: color 0.3s ease;
}

nav.g-nav a:hover,  nav.g-nav a.active-link{
	color: #ff5b00;
}


a.cbtn.circle {
    background-color: #fff800;
    padding: 15px 40px;
    border-radius: 50px;
}
@media (max-width: 768px) {
	nav.g-nav {
		display: none;
	}
}
/*index*/
#index {
	width: 100%;
	margin: 90px auto 0;
}

@media (max-width: 768px) {
#index{
    margin:0 auto;
}
}




/*firstview*/
.index-bg {
    background-color: #ff5b00;
    padding: 20px 0;
}
.fv-container {
    display: flex;
    justify-content: center;
    align-items: center;
	max-width: 1500px;
    margin: 0 auto;
}
.fv-right {
    width: 50%;
}
.fv-right h2 {
	margin: 0;
}
.fv-right img {
	display: block;
	width: 80%;
	margin: 0 auto;
}
.fv-textbox {
    margin-top: 20px;
}
.fv-right p {
	width: 80%;
	margin: 0 auto;
	color: #fff800;
	font-weight: bold;
	display: block;
	transform: skewX(-20deg);
	font-family: "Noto Sans JP", sans-serif;
}
.point-flex {
	display: flex;
	justify-content: center;
	gap: 15px;
	width: 80%;
	margin: 0 auto;
}
.point-flex dl {
	width: 33%;
	background: #fff;
    border-radius: 30px;
}
.point-flex dt {
	font-size: 1.3vw;
    text-align: center;
    padding: 20px 0 5px;
    color: #555;
    font-weight: bold;
	font-family: "Noto Sans JP", sans-serif;
}
.point-flex dd {
	margin: 0;
}
.point-flex dd img {
	display: block;
	width: 50%;
	margin: 0 auto;
	padding: 0 0 20px 10px;
}
.fv-btn {
    width: 80%;
    margin: 0 auto;
    background: #fff;
	border-radius: 30px;
}
.fv-btn a {
	text-decoration: none;
    /*display: block;*/
    width: 600px;
    max-width: 100%;
    padding: 20px 0;
    text-align: center;
    color: #555;
    position: relative;
    /*margin-left: -30px;*/
    font-size: 1.2vw;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
    
    display: flex;
    justify-content: center;
    align-items: center;

}

.fv-btn a span{
margin-right: 10px;
}

.fv-btn a::after {
	content: "";
    display: block;
    width: 48px;
    height: 30px;
    background-image: url(http://advenia.jp/easysite/wp-content/uploads/2025/05/yubisasi.png);
    background-repeat: no-repeat;
    background-size: contain;
    /*position: absolute;*/
    top: 26px;
    left: 450px;
}

.fv-left {
    width: 50%;
	display: flex;
	align-items: center;
    margin: 0 auto;
}
.fv-left img {
	display: block;
	width: 80%;
}
.fv-left ul {
	margin: 0;
	padding: 0;
	margin-left: -150px;
}
.fv-left li {
	list-style: none;
    background: #fff;
    margin: 50px 10px;
    text-align: center;
    padding: 8px 20px;
    border-radius: 151px;
	color: #555;
	font-weight: 600;
	font-family: "Noto Sans JP", sans-serif;
}
.fv-left li:nth-child(2) {
	margin-right: -40px;
    margin-left: 40px;
}
.fv-left li:nth-child(4) {
	margin-right: -40px;
    margin-left: 40px;
}
.fv-left li:nth-child(3) {
	margin-right: -80px;
    margin-left: 80px;
}
@media (max-width: 768px) {
	.fv-container {
		flex-direction: column-reverse;
	}
	.fv-right {
		width: 100%;
	}
	.fv-right img {
		width: 95%;
		padding: 10px;
	}
	.point-flex {
		width: 95%;
	}
	.point-flex dt {
		font-size: 1rem;
	}
	.point-flex dd img {
		padding: 0 0 20px;
	}
	.fv-btn {
		width: 95%;
		border-radius: 50px;
	}
	.fv-btn a {
		font-size: 1.2rem;
    	font-weight: bold;
		max-width: inherit;
		width: 100%;
	}
	.fv-btn a::after {
		left: 300px;
	}
	.fv-left {
		width: 100%;
	}
	.fv-left img {
		padding-left: 15px;
	}
	.fv-left ul {
		margin-left: -140px;
	}
	.fv-left li {
		background-color:rgba(255,255,255,0.8);
		margin: 10px 10px;
		color: #555;
	}
	.fv-left li:nth-child(2) {
		margin-right: 10px;
		margin-left: 10px;
	}
	.fv-left li:nth-child(4) {
		margin-right: 10px;
		margin-left: 10px;
	}
	.fv-left li:nth-child(3) {
		margin-right: 10px;
		margin-left: 10px;
	}
}
/*about*/
#about {
	width: 100%;
	margin: 0 auto;
	padding: 90px 0;
}
.about-container {
	width: 80%;
	max-width: 1500px;
	margin: 0 auto;
}
.about-flex {
	display: flex;
	justify-content: center;
	gap: 20px;
	align-items: center;
}
.ab_text {
	width: 50%;
}
.ab_text p {
	font-size: 1.2vw;
	font-weight: bold;
	font-family: "Noto Sans JP", sans-serif;
}
p.about-textbig {
    font-size: 1.5vw;
    font-weight: bold;
	font-family: "Noto Sans JP", sans-serif;
}
.about-flex img {
	display: block;
	width: 30%;
}
/*.about-people {
	padding: 100px 0;
    background-image: url(http://advenia.jp/easysite/wp-content/uploads/2025/05/aboutbgimg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}*/
h3.deco-h {
    color: #555;
    font-size: 3vw;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    margin: 100px auto;
}
/*h3.deco-h {
	color: #fff;
	font-size: 4.5vw;
    text-align: center;
	font-family: "Mochiy Pop One", sans-serif;
	font-weight: 600;
	-webkit-text-stroke: 1px #13bcfc;
  	text-stroke: 1px #13bcfc;
}*/
/*.about-container p {
	display: block;
    margin: 0 auto;
    text-align: center;
    color: #595959;
    font-weight: bold;
    font-size: 1.2vw;
	font-family: "Noto Sans JP", sans-serif;
}*/
/*p.about-textbig {
    display: block;
    margin: 0 auto;
    text-align: center;
    color: #595959;
    font-weight: bold;
    font-size: 1.5vw;
	padding-bottom: 40px;
	font-family: "Noto Sans JP", sans-serif;
}*/
@media (max-width: 768px) {
	.about-container {
    	width: 95%;
	}
	h3.deco-h {
		margin: 0;
		font-size: 1.5rem;
		padding: 30px 0;
	}
	p.about-textbig {
		font-size: 1rem !important;
		padding: 20px 0 20px;
	}
	.about-container p {
		font-size: 0.8rem;
    	width: 80%;
	}
	.about-people {
		background-size: 120%;
    	background-position: bottom center;
		padding: 0;
	}
}
/*about2*/
.about-container2 {
    width: 80%;
    margin: 0 auto;
    max-width: 1500px;
}
.a2-bg {
    width: 100%;
    background-color: #ff5b00;
    border-radius: 15px;
}
p.a2-decotext1 {
    text-align: center;
    font-size: 1.3vw;
    padding: 20px;
    background-color: #fff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border: solid 4px #ff5b00;
	margin: 0;
	font-weight: 600;
	font-family: "Noto Sans JP", sans-serif;
}
p.a2-decotext2 {
    text-align: center;
    font-size: 1.3vw;
    padding: 20px;
    background-color: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border: solid 4px #ff5b00;
	margin: 0;
	font-weight: 600;
	font-family: "Noto Sans JP", sans-serif;
}
ul.a2-ul {
    padding: 100px 0 100px 50px;
    margin: 0;
    background-image: url(http://advenia.jp/easysite/wp-content/uploads/2025/05/pointbgimg.png);
    background-repeat: no-repeat;
    background-size: 50%;
    /*background-position: 700px -30px;*/
	background-blend-mode: lighten;
    background-position: 94% -5%;
}
.a2-ul li {
    list-style: none;
    width: 50%;
    text-align: center;
    padding: 10px;
    font-size: 1.2vw;
    color: #fff;
    font-weight: bold;
	font-family: "Noto Sans JP", sans-serif;
}
.a2-ul li:after {
    display: block;
    content: "";
    width: 100%;
    margin: 0 auto;
    height: 20px;
    background-image: url(http://airitc.com/weburu/wp-content/uploads/2025/05/yellow-border.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
@media (max-width: 768px) {
	.about-container2 {
		width: 95%;
	}
	p.a2-decotext1 {
		font-size: 1rem;
		color: #595959;
	}
	p.a2-decotext2 {
		font-size: 1rem;
		color: #595959;
	}
	ul.a2-ul {
		padding: 10px 0 10px 0;
		background-position: 130px 20px;
		background-image: none;
	}
	.a2-ul li {
		width: 95%;
    	font-size: 0.7rem;
	}
	.about-flex {
		flex-direction: column-reverse;
		padding-bottom: 20px;
	}
	.ab_text {
		width: 100% !important;
		text-align: center;
		margin: 0 auto;
	}
	.ab_text p {
		width: 100% !important;
		text-align: center;
		margin: 0 auto;
	}
	.about-flex img {
		width: 60%;
	}
}
/*service*/
#service {
	width: 100%;
	margin: 0 auto;
    padding: 90px 0;
}
.service-container {
	width: 80%;
	max-width: 1500px;
	margin: 0 auto;
}
.service-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.service-inner {
	width: 22%;
	margin-bottom: 50px;
}
.sinner-bg {
	border: solid 4px #45d0c9;
    border-radius: 15px;
}
.service-inner img {
	display: block;
    width: 50%;
    margin: 0 auto;
	margin-bottom: -70px;
}
.service-inner h4 {
	text-align: center;
	border-top-left-radius: 11px;
	border-top-right-radius: 11px;
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
    padding: 100px 20px 20px;
    background-color: #ff5b00;
	font-family: "Noto Sans JP", sans-serif;
}
.service-inner p {
    padding: 20px 20px 20px;
    color: #555;
    font-weight: 600;
    border: solid 4px #ff5b00;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    margin-top: 0;
	font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
	.service-container {
		width: 95%;
	}
	.service-inner {
		width: 49%;
		height: 440px;
		margin-bottom: 0;
	}
	.service-inner h4 {
		font-size: 1rem;
		height: 40px;
		padding: 80px 5px 5px;
	}
	.service-inner p {
		height: 220px;
    	margin-top: 0;
	}
}
/*plan*/
#plan {
	width: 100%;
	margin: 0 auto;
}
.plan-container {
	width: 80%;
	max-width: 1500px;
	margin: 0 auto;
    padding: 90px 0;
}
.plan-container p {
    font-weight: 600;
    color: #595959;
    text-align: center;
    font-size: 1.2vw;
	font-family: "Noto Sans JP", sans-serif;
}
p.plan-textbig {
    font-size: 1.5vw;
	font-family: "Noto Sans JP", sans-serif;
}
.plan-flex {
    display: flex;
    justify-content: center;
    gap: 50px;
}
ul.plan-inner {
    width: 33%;
    margin: 0;
    padding: 0;
    background-color: #ff5b00;
   	border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
	margin-bottom: 200px;
}
.plan-inner li {
	list-style: none;
	text-align: center;
	color: #fff;
	font-weight: 600;
	font-family: "Noto Sans JP", sans-serif;
}
li.plan-title {
    background-color: #fff;
    color: #ff5b00;
    font-weight: 600;
    font-size: 1.3vw;
    border: solid 4px #ff5b00;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 15px 0;
	font-family: "Noto Sans JP", sans-serif;
}
li.plan-price {
    font-size: 1.5vw;
    font-weight: 600;
    color: #ffe500;
    padding: 20px 0 30px;
    border-bottom: solid 2px #fff;
	font-family: "Noto Sans JP", sans-serif;
}
.plan-inner li:nth-child(3) {
	padding: 15px 0;
	border-bottom: solid 2px #ffcb78;
}
.plan-inner li:nth-child(4) {
	padding: 15px 0;
	border-bottom: solid 2px #fff;
}
.plan-inner li:nth-child(5) {
	padding: 15px 0;
	border-bottom: solid 2px #ffcb78;
}
.plan-inner li:nth-child(6) {
	padding: 15px 0;
	border-bottom: solid 2px #fff;
}
.plan-inner li:nth-child(7) {
	padding: 15px 0;
	border-bottom: solid 2px #ffcb78;
}
.plan-inner li:nth-child(8) {
	padding: 15px 0;
	border-bottom: solid 2px #fff;
}
.plan-inner li:nth-child(9) {
	padding: 15px 0;
	border-bottom: solid 2px #ffcb78;
}
.plan-inner li:nth-child(10) {
	padding: 15px 0;
	border-bottom: solid 2px #fff;
}
.plan-inner li:nth-child(11) {
	padding: 15px 0;
	border-bottom: solid 2px #ffcb78;
}
.plan-inner li:nth-child(12) {
	padding: 15px 0;
	border-bottom: solid 2px #fff;
}
.plan-inner li:nth-child(13) {
	padding: 15px 0;
	border-bottom: solid 2px #ffcb78;
}
li.plan-borderspan {
	padding: 25px 0;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}
span.strongline {
	background-repeat: repeat-x;
    background-size: 0.6em 0.2em,1.6em 0.2em,3.4em 0.2em,3.6em 0.2em;
    background-position: right bottom;
    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(246,89,115,0)), color-stop(0.1, rgba(246,89,115,0.02)), color-stop(0.5, rgba(246,89,115,1)), color-stop(0.98, rgba(246,89,115,0)), to(rgba(246,89,115,0)) );
    background-image:
            -webkit-radial-gradient(center center,0.2em 0.1em,rgba(246,89,115,1) 0,rgba(246,89,115,0) 0.1em,rgba(246,89,115,0) 0.2em),
            -webkit-radial-gradient(center center,0.4em 0.1em,rgba(246,89,115,1) 0,rgba(246,89,115,0) 0.3em,rgba(246,89,115,0) 0.4em),
            -webkit-radial-gradient(center center,0.7em 0.1em,rgba(246,89,115,1) 0,rgba(246,89,115,0) 0.6em,rgba(246,89,115,0) 0.7em),
            -webkit-radial-gradient(center center,7.1em 0.1em,rgba(246,89,115,1) 0,rgba(246,89,115,0) 7em,rgba(246,89,115,0) 7.1em);
    background-image:
            radial-gradient(0.2em 0.1em at center center,rgba(255,218,1,1),rgba(246,89,115,0)),
            radial-gradient(0.4em 0.1em at center center,rgba(255,218,1,1),rgba(246,89,115,0)),
            radial-gradient(0.7em 0.1em at center center,rgba(255,218,1,1),rgba(246,89,115,0)),
            radial-gradient(7.1em 0.1em at center center,rgba(255,218,1,11),rgba(246,89,115,0));
}
@media (max-width: 768px) {
	.plan-container {
		width: 95%;
	}
	.plan-container p {
		font-size: 0.9rem;
		margin: 0;
    	padding-bottom: 10px;
	}
	p.plan-textbig {
		font-size: 1.1rem;
	}
	.plan-flex {
		flex-direction: column;
		margin-bottom: 50px;
	}
	ul.plan-inner {
		width: 90%;
		margin: 0 auto;
	}
	li.plan-title {
		font-size: 1.3rem;
	}
	li.plan-price {
		font-size: 1.2rem;
	}
}
/*flow*/
#flow {
	width: 100%;
	margin: 0 auto;
}
.flow-container {
	width: 80%;
	max-width: 1500px;
	margin: 0 auto;
}
.flow-container p {
	font-weight: 600;
    color: #555;
    text-align: center;
    font-size: 1.2vw;
	font-family: "Noto Sans JP", sans-serif;
}
.flow-flex {
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
	margin-top: 80px;
}
.flow-flex img {
	display: block;
	width: 20%;
}
.flow-leftbox {
    width: 80%;
    background-color: #ff5b00;
    border-radius: 15px;
}
p.flow-step {
    text-align: left;
    padding: 20px 0 20px 50px;
    background-color: #fff;
    margin: 0;
    border: solid 4px #ff5b00;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    color: #ff5b00;
	font-family: "Noto Sans JP", sans-serif;
}
.flow-leftinner h5 {
    text-align: center;
    font-size: 1.5vw;
    color: #fff;
    margin: 0;
    padding: 50px 0 20px;
	position: relative;
	font-family: "Noto Sans JP", sans-serif;
}
.flow-leftinner h5:after {
    display: block;
    content: "";
    width: 50%;
    margin: 0 auto;
    height: 10px;
    background-image: url(http://airitc.com/weburu/wp-content/uploads/2025/05/yellow-border.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.flow-leftinner p {
    font-size: 1.1vw;
    margin: 0;
    padding: 0 0 50px;
	font-family: "Noto Sans JP", sans-serif;
	color: #fff;
}
@media (max-width: 768px) {
	.flow-container {
		width: 95%;
	}
	.flow-flex {
		gap: 10px;
		margin-top: 40px;
	}
	.flow-container p {
        font-size: 0.9rem;
        margin: 0;
        margin-bottom: 10px;
    }
	.flow-leftinner h5 {
		padding: 20px 0;
    	font-size: 1rem;
	}
	.flow-leftinner h5:after {
		width: 80%;
	}
	.flow-leftinner p {
		font-size: 0.7rem;
    	padding: 0 15px 30px;
	}
	.flow-flex img {
		width: 30%;
	}
}
/*qa*/
.qa-contents {
    width: 80%;
	max-width: 1500px;
    margin: 80px auto;
    border: solid 4px #ff5b00;
    border-radius: 30px;
    padding: 50px 0;
}
.qa-container {
	width: 100%;
	margin: 0 auto;
    padding: 90px 0;
}
.qa-container p {
	font-weight: 600;
    color: #595959;
    text-align: center;
    font-size: 1.2vw;
	font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
	.qa-container {
		margin-top: 30px;
		width: 95%;
	}
	.qa-container p {
		font-size: 1rem;
	}
}
/*qatub*/
.faq-container {
	width: 80%;
	margin: 0 auto;
	padding: 20px 0 60px;
}
.question {
	/*margin-bottom: 8px;*/
}
.question dt {
    padding: 20px 100px;
    cursor: pointer;
    user-select: none;
    border-bottom: solid 4px #ff5b00;
    position: relative;
    line-height: 60px;
	font-family: "Noto Sans JP", sans-serif;
}
.question dt:hover {
	background-color: rgba(0, 0, 0, .1);
}
.question dt::before {
	/*display: block;
	content: "";
	width: 20px;
	height: 20px;
	background-image: url(http://airitc.com/weburu/wp-content/uploads/2025/05/q-icon.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;*/
    content: url(http://advenia.jp/easysite/wp-content/uploads/2025/05/q-icon-e1746672177728.png);
    position: absolute;
    left: 20px;
	top: 30px;
}
.question dt::after {
	content: '＋';
	position: absolute;
	top: 20px;
	right: 16px;
	transition: transform .3s;
}
.question.appear dt::after {
	content: '―';
}
.question dd::before {
	/*display: block;
	content: "";
	width: 20px;
	height: 20px;
	background-image: url(http://airitc.com/weburu/wp-content/uploads/2025/05/a-icon.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;*/
	content: url(http://advenia.jp/easysite/wp-content/uploads/2025/05/a-icon-e1746672160868.png);
	position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.question dd {
    padding: 50px 100px;
    margin: 0;
    display: none;
    background-color:rgba(255,91,0,0.4);
	position: relative;
	font-family: "Noto Sans JP", sans-serif;
}
.question.appear dd {
	display: block;
	animation: .3s fadeIn;
	font-family: "Noto Sans JP", sans-serif;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 768px) {
	.qa-contents {
		width: 100%;
		padding: 20px 0;
		margin: 40px 0;
		margin-left: -3px;
	}
	dl.faq-container {
		width: 90%;
	}
	.question dt {
		padding: 20px 30px;
    	line-height: 20px;
		padding-left: 60px;
		height: 40px;
	}
	.question dt::before {
		content: url(http://advenia.jp/easysite/wp-content/uploads/2025/05/q-icon-e1746672177728.png);
		left: 10px;
        top: 15px;
	}
	.question dd {
		padding: 20px 30px;
    	padding-left: 60px;
	}
	.question dd::before {
		content: url(http://advenia.jp/easysite/wp-content/uploads/2025/05/a-icon-e1746672160868.png);
		left: 10px;
	}
}
/*contact*/
#contact {
	width: 100%;
	margin: 0 auto;
}
/*h3.deco-h-contact {
	color: #45d0e9;
	font-size: 4.5vw;
    text-align: center;
	font-family: "Mochiy Pop One", sans-serif;
	font-weight: 600;
	-webkit-text-stroke: 1px #fff;
  	text-stroke: 1px #fff;
	margin: 0;
    padding: 100px 0 50px;
}*/
h3.deco-h-contact {
	color: #fff;
    font-size: 3vw;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    margin: 100px auto;
}
.contact-bg {
	background-color: #ff5b00;
	padding-bottom: 130px;
	padding-top: 50px;
	/*margin-top: 80px;*/
}
.form-inner {
    width: 60%;
    margin: 0 auto;
    max-width: 1200px;
    background-color: #fff;
    border-radius: 50px;
    padding: 80px 0 50px;
}
dl.form-dl {
    display: flex;
    justify-content: center;
    gap: 20px;
	align-items: center;
}
dt.form-dt {
    width: 30%;
    text-align: right;
    font-size: 1.1vw;
	color: #555;
    font-weight: 500;
	font-family: "Noto Sans JP", sans-serif;
}
dd.form-dd {
    width: 70%;
    margin: 0;
	font-family: "Noto Sans JP", sans-serif;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    padding: 20px;
    width: 70%;
	border: solid 2.5px #ff5b00;
	border-radius: 15px;
}
input.wpcf7-form-control.wpcf7-text  {
	padding: 20px;
    width: 70%;
	border: solid 2.5px #ff5b00;
	border-radius: 15px;
}
textarea.wpcf7-form-control.wpcf7-textarea {
	padding: 20px;
    width: 70%;
	border: solid 2.5px #ff5b00;
	border-radius: 15px;
}
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
	padding: 20px;
    width: 70%;
	border: solid 2.5px #ff5b00;
	border-radius: 15px;
}
.form-dd p {
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
}
span.form_req {
    font-size: 0.8vw;
    padding-right: 10px;
    color: #fd0000;
}
.wpcf7-list-item {
    margin: 0 1em 0 0 !important;
}
.form_purapori {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.form_purapori a {
	text-decoration: none;
	color: #ff782c;
	font-family: "Noto Sans JP", sans-serif;
}
span.wpcf7-spinner {
    display: none;
}
.form-btn {
    width: 300px !important;
    margin: 0 auto;
    text-align: center;
	font-family: "Noto Sans JP", sans-serif;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background-color: #fff800;
    border: none;
    border-radius: 50px;
    padding: 20px 80px;
    text-align: center;
    font-size: 1.1vw;
    font-weight: bold;
    color: #555;
    margin: 30px 0 50px;
}
@media (max-width: 768px) {
	h3.deco-h-contact {
		padding: 80px 0 30px;
		font-size: 2rem;
		margin: 0 auto;
	}
	.contact-bg {
		padding-bottom: 80px;
		padding-top: 0;
		margin-top: 0;
	}
	dl.form-dl {
		flex-direction: column;
		padding-bottom: 15px;
	}
	.form-inner {
		width: 85%;
		border-radius: 20px;
		padding: 10px;
	}
	dt.form-dt {
		width: 100%;
		text-align: left;
		font-size: 1rem;
		padding-left: 35px;
	}
	dd.form-dd {
		width: 90%;
	}
	input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    	width: 85%;
	}
	span.form_req {
		font-size: 0.8rem;
	}
	.form-dt p {
		margin: 0;
		padding-bottom: 10px;
	}
	dl.form-dl {
		flex-direction: column;
		gap: 0;
	}
	.form-dd p {
		width: 100%;
		margin: 0;
	}
	textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
		width: 85%;
	}
	textarea.wpcf7-form-control.wpcf7-textarea {
		width: 85%;
	}
	input.wpcf7-form-control.wpcf7-text {
		width: 85%;
	}
	input.wpcf7-form-control.wpcf7-submit.has-spinner {
		padding: 20px 110px !important;
		font-size: 1rem !important;
		font-family: "Noto Sans JP", sans-serif;
		width: 300px !important;
		height: 65px !important;
		border-radius: 100px !important;
	}
	span.wpcf7-spinner {
		display: block;
	}
}
/*footer*/
.footer-contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding: 30px 0;
}
img.footlogo {
    display: block;
    width: 20%;
    padding-left: 30px;
}
.footer-contents dl {
	display: flex;
	padding-right: 30px
}
.footer-contents dd {
	margin: 0;
	padding-left: 10px;
	font-family: "Noto Sans JP", sans-serif;
}
.footer-contents dt {
	font-family: "Noto Sans JP", sans-serif;
}

.footer-contents dd a{ 
color:#000;
}

@media (max-width: 768px) {
	.footer-contents dl {
        width: 50%;
        flex-direction: column;
        font-size: 0.8rem;
    }
	.footer-contents a {
		width: 100%;
	}
	img.footlogo {
		width: 60%;
	}
	.footer-contents dd {
		padding: 0;
	}
}
/*result*/
#result {
	width: 100%;
	margin: 0 auto;
}
.result-container {
    padding-top: 80px;
}
.result-bg {
    background-color: #ff5b00;
    padding: 150px 0;
}
.result-bg p {
	text-align: center;
	color: #fff;
	font-size: 1.5vw;
	font-weight: bold;
	margin: 0;
    padding: 0 0 5px;
	font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
	.result-bg {
		padding: 80px 0;
	}
	.result-bg p {
		font-size: 0.9rem;
		padding: 0 15px;
	}
	.swiper {
		padding-top: 40px;
	}
	.result-container {
		padding-top: 0;
	}
}
/*swiper*/
/* スライドの動き等速 */
.swiper-wrapper {
  transition-timing-function: linear;
}
/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  width: 80%;
}
.swiper {
	padding-top: 80px;
}
/*demosite*/
.demosite-box {
	width: 80%;
	margin: 0 auto;
	padding-top: 100px;
}
.demo-s-flexcontainer {
	display: flex;
	justify-content: space-between;
}
.demo-s-flex {
	width: 33%;
}
.demo-s-flex img {
	display: block;
	width: 80%;
	margin: 0 auto;
}
.demo-s-flex p {
	font-size: 1vw;
	font-weight: normal;
	padding-top: 15px;
}
p.demo-s-taitle {
    font-size: 2vw;
    padding-bottom: 30px;
}
@media (max-width: 768px) {
	.demosite-box {
		width: 100%;
		padding-top: 50px;
	}
	p.demo-s-taitle {
		font-size: 1.5rem;
	}
	.demo-s-flexcontainer {
		flex-direction: column;
		justify-content: center;
		gap: 20px;
	}
	.demo-s-flex {
		width: 100%;
	}
	.demo-s-flex p {
		font-size: 0.9rem;
		padding-top: 5px;
	}
}