@charset "UTF-8";

/* ==================================================

	common.css
	Version: 0.1
	
*/

/* ==================================================

	WEB FONT

*/

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("bootstrap/bootstrap.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

:root {
	--color-light-orange: #FFFCB8;
	--color-Default : #FFFFFF;
	--color-N-pink: #EA047E;
	--color-N-lpink: #f86373;
	--color-N-orange : #FF6D28;
	--color-N-llyellow: #fff8c9;
	--color-N-lyellow: #FCE700;
	--color-N-yellow: #FFC32C;
	--color-N-dblue: #2ba9a2;
	--color-N-dpblue: #c4ecea;
	--color-N-blue: #26dcff;
	--color-N-pblue: #e8f2f5;
	--color-N-glay: #F6F1E9;
	--color-text-color: #4D4D4D;
	--color-white: #ffffff;
	--color-P-01:#44bed8;
	--color-P-02:#33b4b2;
	--color-P-03:#29bf80;;
	--color-P-033:#6fb85f;
	--color-P-04:#3f94e4;
	--color-P-p04:#e8f7ff;
	--color-P-05:#239BA7;
	--color-P-p05:#EDF5F5;
	--font-size-h1: 100px;
}

/* ==================================================

	RESET

*/


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: transparent;
	background-repeat: no-repeat;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	font-style: normal;
	font-size: inherit;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: inherit;
	line-height: 150%; /* 1.5rem */
	color: var(--color-text-color);
}

html, body {
	width: 100%;
	scroll-padding-top: 80px; /* 固定ヘッダーの高さに応じて調整 */
}

body {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-align: center;
}

h1, h2, h3, h4, h5 {
	font-weight: 700;
}
ul, ol {
	list-style-type: none;
	padding-left: 0;
}
table {
	border-collapse: collapse;
}
a, button {
	cursor: pointer;
	text-decoration: none;
	transition: 0.3s;
}
a {
	color: var(--color-N-orange);
}
a:hover {
	opacity: 0.5; 
}
img {
	display: block;
	width: 100%;
	height: auto;
}

::placeholder {
	color: var(--color-N-glay);
}
::-ms-input-placeholder {
	color: var(--color-N-glay);
}
:-ms-input-placeholder {
	color: var(--color-N-glay);
}

/* ==================================================

	HTML

*/

header {
    display: flex;
    background: var(--color-N-lyellow);
    justify-content: center;
	padding: 0;
	z-index: 999;
	width: 100%;
	position: fixed;
	transition: top .5s;
}

header > .cont-fluid {
	color: var(--color-white);
	padding:0;
	width: 1100px;
	margin: 0 auto;
	display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
	display: flex;
	padding: 10px 20px;
	justify-content: center;
	align-items: center;
	background: var(--color-N-orange);
	margin: 0;
}

header nav ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex: 1 0 0;
	list-style: none;
    margin: 0;
    padding: 0;
	flex-direction: row;
	gap: 1rem;
}

header nav ul li {
    margin: 0 5px;
}

header nav li a {
    text-decoration: none;
	color: var(--color-N-orange);
	font-size: 1rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5rem; /* 150% */
}

header nav li a.btn {
    text-decoration: none;
	color: var(--color-white);
	font-weight: 700;
	line-height: 1.25rem; /* 125% */
	display: flex;
	width: 13.4375rem;
	padding: 0.625rem 1.25rem;
	justify-content: center;
	border-radius: 0.375rem;
	background: var(--color-N-pink);
	margin-right: 15px;
	cursor: pointer;
	transition: 0.3s;
}

header nav li a.btn:hover {
	background: var(--color-N-pink);
    transform: scale(1.02);
	color: var(--color-white);
}

main {
	text-align: center;
	width: 100%;
    margin: auto;
	padding: 70px 0;
}

/* .float-button__wrap {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 0;
    z-index: 10;
}

.float-button__wrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
}

.float-button__wrap a:hover img {
  content: url("../img/_float-button-hover.png");
} */

.float-button__wrap {
  position: fixed;
  bottom: 120px;
  right: -150px; /* ← 画面外に隠す（ボタン幅より大きめ） */
  opacity: 0;
  transition: right 0.3s ease, opacity 0.3s ease;
  z-index: 10;
}
.float-button__wrap.show {
  right: 0px;   /* 表示位置に戻す */
  opacity: 1;
}

.float-button {
  position: relative;
  display: block;
  width: 100px;
  height: 200px;
}

.float-button:hover {
  opacity: 1 !important;
}

.float-button::before,
.float-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.3s ease;
}

/* 通常時の画像 */
.float-button::before {
  background-image: url("../img/_float-button-hover.gif");
  opacity: 1;
}

.float-button:hover::before {
  opacity: 0; /* ← 元画像を消す */
}

/* ホバー時の画像 */
.float-button::after {
  background-image: url("../img/_float-button-hover.png");
  opacity: 0;
}

.float-button:hover::after {
  opacity: 1; /* ← ホバー画像を表示 */
}

.container {
	width: 1100px;
	margin: auto;
	padding:0;
}

.campagin {
	width: 800px;
	margin: 50px auto;
}

.campagin img {
	border-radius: 10px;
}

.card-in {
	margin: 3rem auto;
	width: 1000px;
	padding:0;
    border: 1px solid var(--color-N-orange);
}

.card-in .card-header {
    background-color: var(--color-N-orange);
    font-size: 18px;
    font-weight: 700;
	color:var(--color-white);
}

.card-in .card-body {
    padding: 20px 30px 10px 50px ;
}

.card-in .card-text {
    text-align: left;
	margin-bottom: 10px;
}

.card-in .card-text strong {
	display: inline-block;
	margin-right: 15px;
}

.fv {
	display: flex;
	height: 500px;
	text-align: right;
	align-self: stretch;
	flex-direction: column;
	/* align-items: flex-start; */
	gap: 1.2rem;
	background: url(../img/FV_BG.png) ;
    background-repeat: repeat;
    background-position: center;
    justify-content: center;
    align-items: flex-end;
}


.fv h2 {
	color: var(--color-text-color);
	font-size: 2.3rem;
	font-style: normal;
	font-weight: 600;
}

.fv h3 {
	/* align-self: stretch; */
	color: var(--color-text-color);
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5rem
}

.fv span{
	color: var(--color-N-orange);
	font-size: inherit;
}

.fv p {
	color: var(--color-text-color) ;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5rem; /* 120% */
}

.fv .fv-in {
	width: 1100px;
	height: 500px;
	display: flex;
	margin: auto;
	justify-content: flex-start;
}

.riyu {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0rem;
	align-self: stretch;
	margin-top: 30px;

}

.riyu h3 {
	display: flex;
	width: 100%;
	padding: 0.625rem 0rem;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	font-size: 2.25rem;
	font-weight: 600;
	color: var(--color-N-orange);
	}

.riyu .feature-list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* row-gap: 2rem; */
	flex-wrap: wrap;
	align-content: flex-start;
	margin-bottom: 2rem;
}

.riyu .feature-list li {
    display: flex;
    width: 22%;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin: 20px auto;
}

.riyu .feature-list span {
	color: var(--color-text-color);
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 600;
	line-height: 2rem;
}

.riyu .feature-list span span {
	color: var(--color-N-dblue);
}

.riyu .feature-list .icon-wrapper{
	display: flex;
	overflow: hidden;
	padding: 2.125rem;
	border-radius:10px;
	background: var(--color-N-pblue);
	justify-content: center;
	align-items: center;
	gap: 0.625rem;
	flex-shrink: 0;
	aspect-ratio: 1/1;
}

.kaiketsu{
	display: flex;
	width: 100%;
	padding: 3rem 0rem 2rem;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	align-self: stretch;
	background: var(--color-N-glay);
}

.kaiketsu h3 {
	color: var(--color-N-orange);
	text-align: center;
	font-size: 2.25rem;
	width: 100%;
}

.kaiketsu .feature-list {
	display: flex;
	width: 100%;
	justify-content: space-between;
	padding: 30px;
	gap: 1rem;
	flex-wrap: wrap;
}

.kaiketsu .feature-list li {
	display: flex;
	width: 49%;
	padding: 1.5rem 2rem;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	border-radius: 10px;
	box-shadow: 2px 2px 10px 0px rgba(187, 187, 187, 0.50);
	background: var(--color-white);
}

.kaiketsu .feature-list span {
	color: var(--color-text-color);
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2.25rem; /* 150% */
}

.kaiketsu .feature-list p {
	color: var(--color-text-color);
	font-size: 1rem;
	line-height: 1.6875rem; /* 168.75% */
	text-align: left;
}

.kaiketsu .feature-list .icon-wrapper{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.625rem;
	background: var(--color-light-orange);
	border-radius: 10px;
}

.kaiketsu .feature-list .icon-wrapper img {
	max-width: 100%;
    max-height: 100%;
	width: auto;
	height: auto;
}

.cost {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
	flex-shrink: 0;
	margin-top: 5rem;
}

.cost h3 {
	color: var(--color-N-orange);
	text-align: center;
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 2.75rem; /* 122.222% */
}

.cost div.before {
    width: 100%;
    display: flex;
    padding: 1.875rem 0rem;
    flex-direction: row;
    align-items: center;
    flex-shrink: 0;
    background: var(--color-N-glay);
    align-items: flex-start;
    justify-content: center;
	border-radius: 10px;
}

.cost div.before img {
    display: block;
    width: 95%;
    height: auto;
}

.cost div.after {
	width: 100%;
	display: flex;
	padding: 2rem 3rem 3rem 3rem;
	gap: 2rem;
    flex-direction: row;
	flex-shrink: 0;
	background: var(--color-N-glay);
	align-items: center;
	justify-content: space-between;
	margin-bottom: 3rem;
	border-radius: 10px;
}

.cost div.after h3 {
	color: var(--color-text-color);
	font-size: 36px;
	font-weight: 700;
	line-height: 150%; /* 54px */
	text-align: left;
	letter-spacing: -0.792px;
	padding-bottom: 1rem;
}

.cost div.after h3 span{
	color: var(--color-N-orange);
	font-size: inherit;
}

.cost div.after img {
	width: 397px;
	flex-shrink: 0;
	}

.cost div.after div {
	display: flex;
	width: 500px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	flex-shrink: 0;
	text-align: left;
	padding-top: 20px;
}

.cost div.after div p {
	font-size: 1.2rem;
	line-height: 150%; /* 1.5rem */
}

.cost div.after div p.stext {
	font-size: 0.875rem;
}

.step{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2rem;
	align-self: stretch;
	margin-top: 5rem;
	margin-bottom: 3rem;
}

.step h3 {
	text-align: center;
	font-size: 2.25rem;
	width: 100%;
	color: var(--color-N-orange);
}

.step h4.step01 {
	text-align: center;
    font-size: 24px;
    width: 100%;
    color: #FFF;
    padding: 8px;
	background:var(--color-N-dblue);
}

.step h4.step02 {
	text-align: center;
    font-size: 24px;
    width: 100%;
    color: var(--color-white);
    padding: 8px;
	background:var(--color-N-dblue);
}

.step .feature-list {
	display: flex;
	width: 100%;
	align-items: center;
	gap: 2rem;
	flex-shrink: 0;
	justify-content: space-between;
    margin-bottom: 2rem;
}

.step .feature-list li {
	display: flex;
	padding: 1.5rem;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	align-self: stretch;
	border-radius: 0.5rem;
	background: var(--color-N-glay);
	position: relative;
}

.step .feature-list li:not(:last-child)::after {
  content: "▶";
  color:var(--color-N-dblue);
  font-size: 1.2em;
	position: absolute;
	top: 50%;
	right: -35px;
}

.step .feature-list .stepno {
	display: flex;
	width: 100%;
	padding: 0 10px;
	justify-content: center;
	align-items: center;
	gap: 0.625rem;
	flex-shrink: 0;
	overflow: hidden;
	background: var(--color-white);
}

.step .feature-list .stepno span {
	color: var(--color-N-orange);
	text-align: center;
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 600;
	line-height: 2.75rem; /* 183.333% */
}

.step .feature-list span {
	color: var(--color-text-color);
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2.25rem; /* 150% */
}

.step .feature-list p {
	color: var(--color-text-color);
	font-size: 1rem;
	line-height: 1.6875rem; /* 168.75% */
}

.step .feature-list img {
    width: 90%;
    height: auto;
    border-radius: 8px;
    margin: auto;
    padding: 15px 0 0 0 ;
}

.security {
	padding: 2rem 3rem;
	margin-top: 50px;
	margin-bottom: 4rem;
	background: var(--color-N-pblue);
	width: 100%;
}

.security .container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2rem;
	align-self: stretch;
	margin-top: 50px;
	margin-bottom: 3rem;
}

.security h3 {
	text-align: center;
	font-size: 2.25rem;
	width: 100%;
	color: var(--color-N-orange);
}

.security .security-list {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.security .security-list li {
	background-color: #fff;
	padding: 1.5rem;
    box-shadow: 2px 2px 10px 0px rgba(187, 187, 187, 0.50);
	width: 30%;
	border-radius: 10px;
}

.security .security-list li .title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	color:var(--color-N-orange);
}

.security .security-list li p {
	text-align: left;
}

.price {
	display: flex;
	padding: 3.125rem 0rem;
	flex-direction: column;
	align-items: flex-start;
	gap: 2rem;
	align-self: stretch;
	margin-top: 50px;
}

.price h3 {
	text-align: center;
	font-size: 2.25rem;
	width: 100%;
	color: var(--color-N-orange);
}

.price h4 {
	text-align: center;
    font-size: 24px;
    width: 100%;
    color: #FFF;
    padding: 10px;
}

.p-tt-bg {
	background:var(--color-N-yellow);
}

.price .first-month {
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	width: 100%;
	border: 2px solid var(--color-N-orange);
	color: var(--color-N-orange);
	border-radius: 10px;
	padding: 10px 0;
}

.price .feature-list {
	display: flex;
	width: 100%;
	align-items: center;
	gap: 1.875rem;
	flex-shrink: 0;
	justify-content: space-between;
}

.price .feature-list-ex {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	gap: 1.875rem;
	flex-shrink: 0;
}

.price .feature-list li {
	display: flex;
	width: 31%;
	padding: 2rem;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	align-self: stretch;
	background: var(--color-N-glay);
	border-radius: 8px;
}

.price .feature-list-ex li {
	display: flex;
	width: 100%;
	padding: 2rem;
	flex-direction: column;
	align-items: center;
	align-self: stretch;
	background: var(--color-N-glay);
	border-radius: 8px;
}

.p-01,.p-01-line i {
	color:var(--color-P-01);
	font-weight: 700;
}

.p-02,.p-02-line i {
	color:var(--color-P-02);
	font-weight: 700;
}

.p-03,.p-03-line i {
	color:var(--color-P-03);
	font-weight: 700;
}

.p-033,.p-033-line i {
	color:var(--color-P-033);
	font-weight: 700;
}

.p-01-line {
	border: 0px solid var(--color-P-01);
}

.p-02-line {
	border: 0px solid var(--color-P-02);
}

.p-03-line {
	border: 0px solid var(--color-P-03);
}

.p-033-line {
	border: 0px solid var(--color-P-033);
}

.price .feature-list li .inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0;
	background-color: var(--color-white);
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;

}

.price .feature-list .stepno,
.price .feature-list-ex .stepno {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	gap: 0.625rem;
	flex-shrink: 0;
	overflow: hidden;
	margin-bottom: 20px;
	border-radius: 10px;

}

.price .feature-list .stepno span,
.price .feature-list-ex .stepno span {
	color: #FFF;
	text-align: center;
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 600;
	line-height: 2.75rem; /* 183.333% */
}

.price .feature-list-ex .stepno span {
	width: 100%;
}

.price .feature-list-ex p {
	font-size: 1.3rem;
	margin-bottom: 0;
}

.price .feature-list p {
	font-size: 1.25rem;
    display: flex;
	align-items: center;
	gap: 0.5rem;
	align-self: stretch;
	margin-bottom: 5px;
}

.price .feature-list p img {
	width: 1.25rem;
	height: 1.25rem;
}

.price .feature-list p.month-price {
	font-size: 40px;
	font-weight: 700;
	display: block;
	text-align: center;
	line-height: 30px;
	color: var(--color-N-orange);
}

.price .feature-list p.month-price span {
	font-size: 16px;
	font-weight: 100;
}


.p-01-bg {
	background:var(--color-P-01);
}

.p-02-bg {
	background:var(--color-P-02);
}

.p-03-bg {
	background:var(--color-P-03);
}

.p-033-bg {
	background:var(--color-P-033);
}

.p-04-bg {
	background:var(--color-P-04);
}

.p-05-bg {
	background:var(--color-P-05);
}

.price .feature-list2,
.price .feature-list3,
.price .feature-list4 {
	display: flex;
	width: 100%;
	align-items: flex-start;
    gap: 2rem;
	flex-shrink: 0;
	flex-wrap: wrap;
    flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
}

.price .feature-list2 > li {
	display: flex;
	width: 48%;
	padding: 1.5rem;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	background: var(--color-P-p04);
	border-radius: 8px;
}

.price .feature-list3 > li {
	display: flex;
	width: 100%;
	padding: 1.5rem;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	background: var(--color-P-p04);
	border-radius: 8px;
}

.price .feature-list4 > li {
	display: flex;
	width: 100%;
	padding: 1.5rem;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	background: var(--color-P-p05);
	border-radius: 8px;
}

.price .feature-list2 .stepno {
	display: flex;
	height: 1.875rem;
	padding: 0.625rem 2.8125rem;
	justify-content: center;
	align-items: center;
	gap: 0.625rem;
	flex-shrink: 0;
	overflow: hidden;
	background: var(--color-P-04);
	margin-bottom: 20px;
}

.price .feature-list2 .stepno span {
	color: #FFF;
	text-align: center;
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 600;
	line-height: 2.75rem; /* 183.333% */
}

.price .feature-list2 li .inner,
.price .feature-list3 li .inner,
.price .feature-list4 li .inner  {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	width: 100%;
}

.price .feature-list2 li .inner .inner1,
.price .feature-list3 li .inner .inner1 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
	background-color: var(--color-white);
	width: 100%;
	border-radius: 10px;
	padding: 20px;
}

.price .feature-list4 li .inner .inner1 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
	background-color: var(--color-white);
	width: 100%;
	border-radius: 10px;
	padding: 20px;
}

.price .feature-list2 li .inner .inner1 span.ss,
.price .feature-list3 li .inner .inner1 span.ss,
.price .feature-list4 li .inner .inner1 span.ss {
	font-size: 18px;
	font-weight:700;
}

.price .feature-list2 li .inner .inner1 span.green,
.price .feature-list3 li .inner .inner1 span.green {
	font-size: 32px;
	color:var(--color-P-04);
	font-weight:700;
}

.price .feature-list4 li .inner .inner1 span.green {
	font-size: 32px;
	color:var(--color-P-05);
	font-weight:700;
}

.price .feature-list2 li .inner .inner1 span.kakaku,
.price .feature-list3 li .inner .inner1 span.kakaku,
.price .feature-list4 li .inner .inner1 span.kakaku {
	font-size: 24px;
	color:#FF6F3C ;
	font-weight:700;
}

.price .feature-list2 li .inner .inner1 span.kakakuss,
.price .feature-list3 li .inner .inner1 span.kakakuss,
.price .feature-list4 li .inner .inner1 span.kakakuss {
	font-size: 16px;
	color:#FF6F3C ;
}

.price .feature-list2 .inner2,
.price .feature-list3 .inner2,
.price .feature-list4 .inner2  {
    width: 90%;
}

.price .feature-list2 .inner2 ul.inner2-ul,
.price .feature-list3 .inner2 ul.inner2-ul,
.price .feature-list4 .inner2 ul.inner2-ul {
	display: flex;
	flex-direction: column;
	list-style: circle;
}

.price .feature-list2 .inner2 ul.inner2-ul li.inner2-li,
.price .feature-list3 .inner2 ul.inner2-ul li.inner2-li,
.price .feature-list4 .inner2 ul.inner2-ul li.inner2-li {
    gap: 0.5rem;
    border: none;
    width: 100%;
    padding: 0;
	display: list-item;
    text-align: left;
	margin-bottom: 10px;
}

.price .feature-list2 .inner2 ul li::marker, 
.price .feature-list3 .inner2 ul li::marker, 
.price .feature-list4 .inner2 ul li::marker {
    content: "・";
    color: #333;
}

.campagin-wp {
	display: block;
	background-color: var(--color-N-pink);
	color: var(--color-white);
	border-radius: 10px;
	padding: 2px 10px;
}

.price .lcta {
	margin: 0rem auto 2rem auto;
}

.kinou {
	display: flex;
	padding: 3.125rem 0rem 0rem 0rem;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	align-self: stretch;
	background: #F8F8F8;
	margin-top: 50px;
	margin-bottom: 3rem;
}

.kinou h3 {
	text-align: center;
	font-size: 2.25rem;
	width: 100%;
	color: var(--color-N-orange);
}

.kinou h4 {
	color: var(--color-N-dblue);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 150%; /* 2.25rem */

}

.kinou .feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2列レイアウト */
	width: 100%;
	justify-content: space-between;
	padding: 30px;
}

.kinou .feature-list li {
	display: flex;
	padding: 0 2rem;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
    margin-bottom: 20px;
}

.kinou .feature-list p {
	font-size: 1rem;
	line-height: 1.6875rem; /* 168.75% */
	text-align: left;
}

.kinou .feature-list .icon-wrapper{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.625rem;
	background: var(--color-light-orange);
	border: 1px solid var(--color-N-dblue);
	/* border-radius: 8px; */
}

.faq-top {
	margin-top: 5rem;
}

.faq-top .container {
	display: flex;
}

.faq-top h3 {
	text-align: center;
	font-size: 2.25rem;
	width: 100%;
	margin-bottom: 3rem;
}

.faq-top .row {
	gap: 1rem;
	padding: 0;
	margin: auto;
}

.faq-top .col-md-4 {
	padding: 0 ;
	text-align: left;
	width: 32%;
}

.faq-top .col-md-4 a {
	color: var(--color-N-pink);
	font-size: 20px;
	font-weight: 700;
}

.faq-top .col-md-4 a:hover {
  color: var(--color-white);
}

.faq-link {
  display: block;
  padding: 16px 40px 16px 20px; /* 右に余白追加 */
  background: var(--color-white);
  border: 1px solid var(--color-N-pink);
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
}

.faq-link:hover {
  border-color: var(--color-N-pink);
  background: var(--color-N-yellow);
  opacity: 1;
}

/* 矢印アイコン（丸＋中の矢印） */
.faq-top .arrow_r_b:before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--color-N-pink);
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
}

.faq-top .arrow_r_b:after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(135deg);
  position: absolute;
  top: -2px;
  right: 18px;
  bottom: 0;
  margin: auto;
}

.faq {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2rem;
	align-self: stretch;
	margin-top: 5rem;
	margin-bottom: 5rem;
}

.faq h4 {
	text-align: left;
	font-size: 1.5rem;
	width: 100%;
	background-color: var(--color-N-blue);
	color: var(--color-white);
	margin-bottom: 0;
	padding: 10px 10px 10px 20px;
	border-radius: 12px;
}

.faq .accordion{
    width: 100%;
}

.faq .accordion-button:not(.collapsed) {
	color: var(--color-N-pink);
	background-color:transparent;
	box-shadow: inset 0 calc(-1 * var(--color-N-glay)) 0 var(--color-N-glay);
	font-weight: 700;
}

.faq .accordion-button{
	font-size: 20px;
	font-weight: 400;
}

.faq .accordion-body{
	font-size: 18px;
	text-align: left;
}

.contact {
	margin-top: 5rem;
}

.contact h3 {
	text-align: center;
	font-size: 2.25rem;
	width: 100%;
	margin-bottom: 3rem;
}


.contact .text-bg-secondary {
    background-color: var(--color-N-pink) !important ;
	display: inline-block;
	margin: auto 5px;
}

.contact .form-control {
    background-color: var(--color-N-pblue) !important;
    border: 0px solid var(--color-text-lcolor) !important;
	box-shadow:none;
	padding: 5px 8px;
}

.contact textarea.form-control {
	height: auto;
}

.contact .form-select {
	width: auto;
	border: 0cap solid var(--color-text-lcolor);
    background-color: var(--color-N-pblue);
    margin-bottom: 5px;
	box-shadow:none;
    line-height: inherit;
	padding: 8px 8px;
}

.contact .form-check-input {
    padding: 8px 8px;
}

.contact label {
    font-size: 16px;
}

.form-control::placeholder {
  color: var(--color-text-color);
  opacity: 0.5;
}

.contact button.ghost{
	border:0;
	padding:7px 18px;
	border-radius:5px;
	font-weight:700;
	cursor:pointer;
	background:#e5e7eb;
	color:#111;
	width: 90%;
    margin: auto 0;
    display: block;
	font-size: 16px;
}

.contact button.ghost[disabled]{
	opacity:.6;
	cursor:not-allowed
}
.p_mark dl {
	margin-bottom: 0;
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.p_mark dl dt {
	margin-right: 20px;
}

.p_mark dl dd strong {
	font-weight: 400;
}

.contact #mailformpro dl {
    width: 90%;
	margin: auto;
	display: flex;
    justify-content: center;
}

.contact #mailformpro dl dt {
    font-size: 16px;
    border-top: 0;
	width: 22%;
}

.contact #mailformpro dl dd {
	border-top: 0;
	padding: 10px;
	width: 70%;
	text-align: left;
}

.contact #mailformpro dl dd.zip-w {
	display: flex;
	flex-direction: row;
	padding: 10px;
	align-items: center;
}

.contact #mailformpro dl dd.pref-w {
	display: flex;
    flex-direction: column;
    padding: 10px;
	justify-content: center;
}

.contact #mailformpro dl dd .size-s {
	width:40%
}

.contact #mailformpro dl dd small {
	font-size: 12px;
}

.contact #mailformpro dl dt.in-title {
    font-size: 22px;
    width: 100%;
    text-align: center;
    margin: 20px;
    border: 1px solid var(--color-N-dblue);
	color: var(--color-N-dblue);
}

.contact #mailformpro dl dd.pref-w .form-select {
	width: 50%;
}

.contact .btnReCaptcha .cta-button {
	margin: 30px auto 0 auto;
	width: 22.875rem;
    height: 4rem;
	background-color: var(--color-N-orange);
	background: var(--color-N-orange);
	text-shadow: unset;
	border: 0;
}

.contact #mailformpro label  {
    padding: 3px;
    border: none;
    box-shadow: none;
}

.contact .mfp_err {
	bottom: -1em !important;
}

.contact .mb-3 p {
	margin-bottom: 30px;
}


/* 規約ボックス */
.contact #mailformpro .agreeTxt{
  overflow: auto;
  max-height: clamp(220px, 30vh, 480px);
  padding: 1rem;
  border: 1px solid var(--color-N-dblue);
  background: #fff;
  -webkit-overflow-scrolling: touch;
  margin: 30px auto;
	width: 86%;
}

/* Firefox のスクロールバー色（任意） */
.contact #mailformpro .agreeTxt{
  scrollbar-width: thin;
  scrollbar-color: var(--color-N-dblue) transparent;
}


/* 各要素を縦並びに調整 */
.contact #mailformpro .agreeTxt dl{
  display: block; 
  margin: 0 0 1rem; 
}

.contact #mailformpro .agreeTxt dt{
  display: block;
  font-weight: bold;
  margin: .75rem 0 .25rem;
}

.contact #mailformpro .agreeTxt dd{
  display: block;      
  margin: 0 0 .5rem;  
  padding-left: .5rem;
  line-height: 1.6;
}

/* 見出し体裁 */
.contact #mailformpro .agreeTxt h5{
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: bold;
}

/* 段落 */
.contact #mailformpro .agreeTxt p{
  margin: 0 0 1rem;
  line-height: 1.6;
}


/* 中の余白・見出し体裁（任意） */
.contact #mailformpro .agreeTxt h5{
  margin: 0 0 .75rem;
  font-size: 1.05rem;
}
.contact #mailformpro .agreeTxt p{
	margin: 0 auto .75rem;
    width: 80%;
}
.contact #mailformpro .agreeTxt dl{
	margin: 0 auto .75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
	width: 80%;
}
.contact #mailformpro .agreeTxt dt{
	font-weight: 700;
	margin: .75rem 0 .25rem;
	width: 100%;
    text-align: left;
}
.contact #mailformpro .agreeTxt dd{
	margin-left: 0;
	font-size: 14px;
	width: 100%;
}

/* スクロールバーの装飾（対応ブラウザのみ・任意） */
.contact #mailformpro .agreeTxt::-webkit-scrollbar{
  width: 10px;
}
.contact #mailformpro .agreeTxt::-webkit-scrollbar-thumb{
  background: #c7c7c7;
  border-radius: 6px;
}
.contact #mailformpro .agreeTxt::-webkit-scrollbar-track{
  background: transparent;
}

.lcta {
    display: flex;
    flex-direction: row;
	gap: 3rem;
	justify-content: space-around;
	margin: 2rem auto 0 auto;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-text {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5rem;
}

.cta-button {
    background: var(--color-N-orange);
    display: flex;
	width: 25.875rem;
	height: 5rem;
    align-items: center;
    justify-content: center;
	gap: 1rem;
    color: white;
    padding: 1.25rem 1rem 1.25rem 2rem;
    border: none;
    border-radius: 0.625rem;
	font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease; /* ホバー時の変化 */
}

.cta-button img {
    width: 1.875rem;
    height: auto;
}

.cta-button:hover {
    transform: scale(1.02);
}

.cta-button2 {
	background: var(--color-N-yellow);
    display: flex;
	width: 25.875rem;
	height: 5rem;
    align-items: center;
    justify-content: center;
	gap: 1rem;
    color: white;
    padding: 1.25rem 1.875rem 1.25rem 2.5rem;
    border: none;
    border-radius: 0.625rem;
	font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease; /* ホバー時の変化 */
}

.cta-button2 img {
    width: 1.875rem;
    height: auto;
}

.cta-button2:hover {
    transform: scale(1.02);
}

.cta-button3 {
	background: var(--color-N-lpink);
    display: flex;
	width: 25.875rem;
	height: 5rem;
    align-items: center;
    justify-content: center;
	gap: 1rem;
    color: white;
    padding: 1.25rem 1.875rem 1.25rem 2.5rem;
    border: none;
    border-radius: 0.625rem;
	font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease; /* ホバー時の変化 */
}

.cta-button3 img {
    width: 1.875rem;
    height: auto;
}

.cta-button3:hover {
    transform: scale(1.02);
}

footer {
	background: var(--color-text-color);
	color: #fff;
	text-align: center;
	padding: 1rem;
	position: absolute;
	width: 100%;
	align-items: center;
    margin-top: 2rem;
}

.footer-inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
	display: flex;
	padding: 2.25rem 2.8125rem;
	justify-content: space-between;
	align-items: center;
}

footer p {
	color: #fff;
}

footer a {
	color: #fff;
}

.pc-menu {
    display: block; 
}

.hamburger-menu {
    display: none;
}

.pcnone {
    display: none !important;
}



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

header {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: row;
	align-content: center;
	flex-wrap: wrap;
}

header h1 {
	height: 50px;
	display: flex;
	/* text-align: left; */
	justify-content: flex-start;
	flex-direction: row;
}

header img {
	display: block;
	width: 90px;
	/* height: auto; */
}

.float-button__wrap {
  display: none;
}

.pc-menu {
	display: none; /* スマホではPC用ナビを非表示 */
}

nav ul {
	flex-direction: column;
	gap: 0.5rem;
}

.hamburger-menu{
	display:block;
	width: 100%;
}

#menu-btn-check {
	position: fixed;
	top: 10px;
	left: 10px;
	display: flex;
	/* appearance: auto; */
}

.menu-btn {
	position: fixed;
	top: 5px;
	right: 7px;
	display: flex;
	height: 40px;
	width: 40px;
	justify-content: center;
	align-items: center;
	z-index: 90;
	background-color: #FFC32C;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background-color: #ffffff;
	position: absolute;
}
.menu-btn span:before {
	bottom: 8px;
}
.menu-btn span:after {
	top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
	background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
}

#menu-btn-check:checked ~ .menu-content {
	left: 0;/*メニューを画面内へ*/
}

.menu-content {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 100%;/*leftの値を変更してメニューを画面外へ*/
	z-index: 80;
	background-color: #F36E47;
	transition: .5s;
}

.menu-content ul {
	padding: 70px 10px 0;
	flex-direction: column;
	width: 100%;
}

.menu-content ul li {
	list-style: none;
}

.menu-content ul li a {
	display: block;
	width: 100%;
	font-size: 1.25rem;;
	box-sizing: border-box;
	color:#ffffff;
	text-decoration: none;
	padding: 9px 15px 10px 0;
	position: relative;
}

h2 {
	font-size: 1.8rem ;
	width: 100% ;
}
h3 {
	font-size: 1.5rem ;
	width: 100%;
}

main {
	width: 100%;
	overflow: hidden;
	padding: 0;
	padding-top: 50px;
}

.container {
	width: 100%;
	max-width: 100%;
	margin: auto;
	padding:0;
}

.card-in {
    margin: 0 auto 2rem auto;
	max-width: 95%;
}

.lcta {
    gap: 1rem;
	margin: auto;
}

.campagin {
	width: 95%;
	margin: 0 auto 50px auto;
}

.fv {
	height: 85vw;
	background: url(../img/FV_BG.png);
	background-size: auto;
	background-position: 68% top;
	background-repeat: no-repeat;
	justify-content: center;
	gap: 0;
}

.fv .fv-in {
    width: 90%;
	margin: auto auto 0;
    justify-content: center;
	align-items: flex-end;
}

.fv h3 {
    font-size: 1.2rem;
}

.fv h2 {
    font-size: 1.8rem;
}

.fv p {
    font-size: 1rem;
}

.cta-button,
.cta-button2,
.cta-button3 
 {
	width: 20rem;
	height: 4rem;
}

.cta-button img,
.cta-button2 img,
.cta-button3 img {
    width: 1.5rem;
    height: auto;
}

.kaiketsu {
	width: 100%;
	padding: 2rem 20px;
	gap: 1rem;
	background: #F8F8F8;
}

.kaiketsu .container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	align-self: stretch;
	 max-width: 100%;

}

.kaiketsu .feature-list {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 30px;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 1rem;
}

.kaiketsu .feature-list li {
	display: flex;
	width: 48%;
	height: auto;
	padding: 1.5rem 2rem;
}

.riyu {
	width: 100%;
	max-width: 100%;
	padding: 2rem 20px;
}

.riyu h3 {
	width: 100%;
	font-size: 1.8rem;
}

.riyu .feature-list {
	display: flex;
	width: 100%;
	justify-content: space-around;
	align-items: flex-start;
	row-gap: 2rem;
	flex-wrap: wrap;
	height: auto;
}

.riyu .feature-list li {
	height: auto;
	gap: 1.25rem;
	margin-top: 20px;
}

.riyu .feature-list span {
	line-height: 2rem;
}

.riyu .feature-list .icon-wrapper {
	width: 10rem;
	height: 10rem;
	padding: 2.125rem;
}

.riyu .feature-list span {
	font-size: 1.2rem;
	line-height: 1.8rem;
}

.security {
    padding: 2rem 1rem;
}

.security .security-list li {
    padding: 1rem;
}

.security .security-list li .title {
	font-size: 1.2rem;
	line-height: 1.3;
}

.cost {
	margin: auto;
    margin-top: 5rem;
	max-width: 95%;
}

.cost h3 {
    font-size: 1.8rem;
}

.cost div.after h3 {
    font-size: 1.8rem;
}

.cost div.after {
	width: 100%;
	display: flex;
	padding: 2rem;
	flex-direction: column;
	flex-shrink: 0;
	background: var(--color-N-glay);
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0;
}

.cost div.after div {
	width: 100%;
}

.brspnone {
	display: none;
}

.security {
	margin: auto;
    margin-top: 5rem;
	width: 100%;
}

.security .container {
    margin-top: 20px;
    margin-bottom: 1rem;
}

.security h3 {
    font-size: 1.8rem;
}

.step {
	margin: auto;
    margin-top: 5rem;
	width: 95%;
}

.step h3 {
    font-size: 1.8rem;
}

.step .icon-wrapper {
    display: flex;
}

.step .feature-list span {
    font-size: 1.2rem;
    line-height: 1.8rem;
}

.step .feature-list img {
    width: 80%;
}

.step .feature-list li:not(:last-child)::after {
    content: "▶";
    color: var(--color-N-dblue);
    font-size: 1.2em;
    position: absolute;
    top: 50%;
    right: -25px;
}

.cta-wrapper {
    margin: 30px auto ;
}

.price {
	margin: auto;
    margin-top: 4rem;
	width: 95%;
	gap: 1rem;
}

.price .first-month {
    font-size: 1.5rem;
}

.price .feature-list li {
    padding: 1rem;
    gap: 0;
}

.price .feature-list p.month-price {
    font-size: 28px;
}

.price .feature-list p {
    font-size: 1rem;
}

.price .feature-list p {
    gap: 0.2rem;
	font-size: 14px;
}

.price .feature-list-ex li {
    padding: 1rem;
}

.price .feature-list-ex p {
    font-size: 1rem;
}

.price .feature-list2 > li {
    padding: 1rem;
	width: 47%;
	align-items: stretch;
}
.price .feature-list2 li .inner .inner1 span.green, 
.price .feature-list3 li .inner .inner1 span.green, 
.price .feature-list4 li .inner .inner1 span.green {
    font-size: 24px;
}

.price .feature-list2 li .inner .inner1 span.kakaku, .price .feature-list3 li .inner .inner1 span.kakaku, .price .feature-list4 li .inner .inner1 span.kakaku {
    font-size: 20px;
}

.price .feature-list2 .inner2 ul.inner2-ul li.inner2-li, .price .feature-list3 .inner2 ul.inner2-ul li.inner2-li, .price .feature-list4 .inner2 ul.inner2-ul li.inner2-li {
    font-size: 14px;
}


.price .feature-list3 > li {
    padding: 1rem;
}

.price .feature-list4 > li {
    padding: 1rem;
}

.kinou {
    margin-top: 50px;
    margin-bottom: 1rem;
	padding: 2.5rem 0rem 0rem 0rem;
}

.kinou h3 {
    font-size: 1.8rem;
}
.kinou h4 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.kinou .feature-list {
    gap:1rem;
}

.kinou .feature-list li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
	padding: 0;
}

.faq-top,.faq {
	width: 95%;
	margin: 3rem auto ;
}

.faq-top .row {
	display: flex;
}

.faq-top .col-md-4 {
    width: 48%;
}

.contact {
    margin-top: 3rem;
}
}


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

.container, .container-sm {
	max-width: 100%;
}


.fv {
	background: url(../img/FV_BG.png) no-repeat;
	background-position: 64% top;
	background-attachment: scroll;
	padding-top: calc(100vw - 65%);
	background-size: inherit;
	height: auto;
}

.fv .fv-in {
	align-items: flex-end;
}

.fv h2 {
	font-size: 1.5rem;
	line-height: 3rem;
	width: 100%;
	text-align: center;
}
.fv h3 {
	font-size: 1.2rem;
	text-align: center;
}

.fv p {
	text-align: center;
	width: 100%;
    font-size: 1rem;
	margin-bottom: 0;
}

.card-in {
	max-width: 95%;
}

.card-in .card-text strong {
    display: block;
}

.cta-wrapper {
	width: 100%;

	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0;
	margin-top: 30px;
	justify-content: space-between;
}

.cta-button {
	width: 100%;
	padding: 1rem 1rem 1rem 1rem;
	font-size: 1.2rem;
}

.cta-button2,
.cta-button3 {
	width: 100%;
	padding: 1rem 1rem 1rem 2rem;
	font-size: 1.2rem;
}


.pdnone {
padding: 0;
}

main {
	padding: 50px 0 0 0;
}

.riyu h3 {
	width: 100%;
	font-size: 1.8rem;
}

.riyu .feature-list {
	display: flex;
	width: 100%;
	justify-content: space-around;
	align-items: flex-start;
	row-gap: 0rem;
	flex-wrap: wrap;
	height: auto;
}

.riyu .feature-list li {
	width: 30%;
	height: auto;
	gap: 1.25rem;
	margin-top: 20px;
}

.riyu .feature-list span {
	line-height: 2rem;
}

.riyu .feature-list .icon-wrapper {
	width: 10rem;
	height: 10rem;
	padding: 2.125rem;
}

.riyu .feature-list span {
	font-size: 1.2rem;
	line-height: 1.8rem;
}

.kaiketsu {
	display: flex;
	width: 100%;
	padding: 2rem 20px;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	align-self: stretch;
	background: #F8F8F8;
	margin-top: 30px;
}

.kaiketsu h3 {
    font-size: 1.8rem;
}

.kaiketsu .feature-list {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 1rem;
}

.kaiketsu .feature-list .icon-wrapper {
    padding: 0rem;
}

.kaiketsu .feature-list li {
	display: flex;
	width: 48%;
	height: auto;
	padding: 1.5rem 2rem;
}

.cost {
	display: flex;
	width: 95%;
	margin-top: 2rem;
	max-width: 100%;
	margin-bottom: 2rem;
}

.cost h3 {
    font-size: 1.8rem;
}

.cost div.before {
	width: 100%;
	display: flex;
}

.cost div.after {
	width: 100%;
	display: flex;
	padding: 2rem;
	flex-direction: column;
	flex-shrink: 0;
	background: var(--color-N-glay);
	align-items: center;
	justify-content: space-between;
	margin-bottom: 3rem;
}

.cost div.after h3 {
    font-size: 1.5rem;
}

.cost div.after img {
	width: 70%;
	height: auto;
	max-width: 500px;
}

.cost div.after div {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	flex-shrink: 0;
	text-align: left;
	padding-top: 30px;
}

.security h3 {
    font-size: 1.8rem;
}

.step {
	width: 100%;
	display: flex;
	padding: 0 20px;
}

.step h3 {
    font-size: 1.8rem;
}

.step .feature-list {
	display: flex;
	width: 100%;
	align-items: center;
	flex-direction: row;
	justify-content: flex-start;
}

.step .feature-list li {
    width: 30%;
}

.step .feature-list li:not(:last-child)::after {
    content: "▶";
    color: var(--color-N-dblue);
    font-size: 1.2em;
    position: absolute;
    top: 50%;
    right: -25px;
}

.step .feature-list .stepno span {
    font-size: 1rem;
}

.step .feature-list span {
    font-size: 1rem;
	line-height: 1.5rem;
}

.price {
	width: 95%;
	display: flex;
	padding: 3.125rem 0 0;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	align-content: center;
}

.price h3 {
    font-size: 1.8rem;
}

.price .feature-list {
	display: flex;
	width: 100%;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.price .feature-list li {
	width: 100%;
	margin: auto;
}

.price .feature-list-ex li {
	padding: 1rem;
	width: 100%;
}

.price .feature-list2 {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	gap: 1.875rem;
	flex-shrink: 0;
	height: auto;
}

.price .feature-list2 li {
	display: flex;
	width: 100%;
	padding: 1rem;
	flex-direction: column;
	align-items: center;
	align-self: stretch;
	height: auto;
}

.price .feature-list li .inner {
    gap: 0.5rem;
}

.price .feature-list p.month-price {
	font-size: 24px;
}

.price .feature-list .stepno, .price .feature-list-ex .stepno {
    height: auto;
}
.price .feature-list .stepno span, .price .feature-list-ex .stepno span {
    line-height: 1.75rem;
}

.price .feature-list2 li .inner {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 1.625rem;
	align-content: center;
}

.price .feature-list2 li .inner1 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0rem;
	width: 100%;
}

.kinou {
	width: 100%;
	margin-bottom: 1rem;
}

.kinou h3 {
    font-size: 1.8rem;
}

.kinou .feature-list {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
}

.kinou .feature-list li {
	width: 100%;
	display: flex;
	height: auto;
	padding: 0rem;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.lcta {
	display: flex;
	width: 100%;
	gap: 1rem;
	justify-content: space-around;
	margin-bottom: 3rem;
	flex-direction: row;
}

.cta-text {
    font-size: 1rem;
	margin-bottom: 0.5rem;
}

.footer-inner {
	width: 100%;
	margin: 0 auto;
	display: flex;
	padding: 0;
	flex-direction: column;
}

.footer-inner a {
	margin-bottom: 1rem;
	display: inline-block;
}

.tbnone {
	display:block !important;
}

.faq-top h3 {
    font-size: 1.8rem;
}

.contact {
	width: 95%;
}

.contact h3 {
    font-size: 1.8rem;
}

.contact .btnReCaptcha .cta-button {
	margin: 30px auto 0 auto;
	width: 80%;
    height: 3rem;
}

.contact #mailformpro dl {
    width: 100%;
}

}

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

.security-pcnone {
	display: none;
}

.security-spnone {
	display: block;
}

}


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

.container, .container-sm {
	max-width: 100%;
}

.fv {
	padding-top: calc(100vw - 80%);
}

.fv h3 {
	font-size: 1.2rem;
	text-align: center;
}

.fv h2 {
	font-size: 1.5rem;
	line-height: 3rem;
	width: 100%;
	text-align: center;
}

.card-in {
    width: 95%;
}

.card-in .card-body {
    padding: 20px 20px 10px 30px;
}

.lcta {
	margin: 10px auto;
	gap:0.2rem
}

.cta-button, .cta-button2, .cta-button3 {
	font-size: 1rem;
	gap: 0.5rem;
}

.cta-button img, .cta-button2 img, .cta-button3 img {
	width: 1rem;
}

.cta-wrapper {
	margin: 0 auto 30px auto;
	padding: 0;
}

.kaiketsu h3 {
	font-size: 1.5rem;
}

.security .container {
	margin-bottom: 0;
}

.security-pcnone {
	display: block;
}

.security-spnone {
	display: none;
}

.riyu h3 {
	font-size: 1.5rem;
}

.riyu .feature-list {
    row-gap: 0rem;
	margin-bottom: 0;
}

.kaiketsu .feature-list li {
	width: 100%;
}

.riyu .feature-list li {
	width: 48%;
	gap:0;
}

.cost h3 {
	font-size: 1.5rem;
}

.cost div.after {
	margin-bottom: 0;
	gap: 1rem;
}

.cost div.after h3 {
	font-size: 1.5rem;
	padding-bottom: 0;
}

.security {
	margin-bottom: 30px;
	margin-top: 0;
}

.security h3 {
	font-size: 1.5rem;
}

.security .security-list {
    gap: 16px;
}

.security .security-list li {
    width: 100%;
    margin-bottom: 10px;
}

.step h3 {
    font-size: 1.5rem;
}

.step .feature-list {
	flex-direction: column;
}

.step .feature-list li {
	width: 100%;
}

.step .feature-list li:not(:last-child)::after {
	content: "";
}


.price {
	margin-top: 0;
}

.price h3 {
	font-size: 1.5rem;
}

.price .feature-list {
	flex-direction: column;
	gap: 1rem;
}

.price .feature-list li {
	width: 100%;
}

.price .feature-list li .inner {
    flex-direction: column;
}
.kinou h3 {
	font-size: 1.5rem;
}

.pcnone {
	display:block !important;
}

.spnone {
	display:none !important;
}

.faq-top h3 {
    font-size: 1.5rem;
}

.faq-top .row {
	justify-content: center;
	gap:0.5rem;
}

.faq-top .col-md-4 {
	width: 95%;
}

.faq-link {
    padding: 5px 20px 4px 20px;
}

.faq h4 {
    font-size: 1.2rem;
    padding: 8px 5px 8px 10px;
}

.faq .accordion-button {
    font-size: 18px;
}

.faq .accordion-body {
    font-size: 16px;
}

.contact h3 {
    font-size: 1.5rem;
}

.contact #mailformpro dl {
   flex-direction: column;
}

.contact #mailformpro dl dt {
    width: 100%;
}

.contact #mailformpro dl dd {
    width: 100%;
}


}


/* @media screen and (max-width: 600px) {
.fv {
	padding: 42vh 20px 40vh;
	background: url(../img/sp_bg.png) no-repeat;
	background-size: 100% auto;
	background-position: center top;
	background-attachment: scroll;
}

.pcnone {
	display:block !important;
}

.spnone {
	display:none !important;
}
} */

@media only screen and (max-width: 767px) {
	#contents .btnReCaptcha a.submit {
		display: block;
		margin: 0 auto;
		position: relative;

		width: 70%;
		height: 58px;
		font-size: 114%;
		outline: none;
		border: none;
		background: none;
		box-shadow: none;
		cursor: pointer;
		opacity: 1;
		filter: alpha(opacity=100);
		-webkit-transition: 500ms ease;
		-moz-transition: 500ms ease;
		-ms-transition: 500ms ease;
		transition: 500ms ease;
		display: inline-block;
		/*margin: 0 10px;*/
		color: #fff;
		border-radius: 10px;
		text-shadow: none !important;

		background: #00C587;
	}

	#contents .btnReCaptcha a.submit span {
		color: #fff;
		font-size: 114%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
	}
}
@media only screen and (min-width: 768px) {
	#contents .btnReCaptcha a.submit {
		display: block;
		margin: 0 auto;
		position: relative;

		width: 270px;
		height: 58px;
		font-size: 114%;
		outline: none;
		border: none;
		background: none;
		box-shadow: none;
		cursor: pointer;
		opacity:1;
		filter:alpha(opacity=100);
		-webkit-transition:500ms ease;
		-moz-transition:500ms ease;
		-ms-transition:500ms ease;
		transition:500ms ease;
		/*margin: 0 10px;*/
		color: #fff;
		border-radius: 10px;
		text-shadow: none !important;

		background: #00C587;
	}

	#contents .btnReCaptcha a.submit span {
		color: #fff;
		font-size: 114%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
	}
}