/* 共通 */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    font-family: "Montserrat", sans-serif;
}
body {
    color: #333333;
    background-color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.1em;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-wrap: break-word;
}
@media screen and (min-width: 1024px) {
    body {
        font-size: 16px;
    }
}
a {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
@media screen and (min-width: 1024px) {
    a:hover {
        opacity: 0.7;
    }
}
span {
    display: block;
}
ul {
    list-style-type: none;
    padding: 0;
}
p {
    font-size: 22px;
    margin: 0;
}
@media screen and (max-width: 1024px) {
    p {
        font-size: 14px;
    }
}
img {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
h2 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
}
@media screen and (min-width: 1024px) {
    h2 {
        font-size: 32px;
        margin: 12px auto;
    }
}
h3 {
    font-size: 24px;
    color: #fff;
    margin: 12px auto;
    font-weight: bold;
}
@media screen and (min-width: 1024px) {
    h3 {
        font-size: 48px;
    }
}
.sp-only {
    display: block;
}
@media screen and (min-width: 1024px) {
    .sp-only {
        display: none;
    }
}
.pc-only {
    display: none;
}
@media screen and (min-width: 1024px) {
    .pc-only {
        display: block;
    }
}
section {
    margin: 0 auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media screen and (min-width: 1024px) {
    section {
        padding: 40px 80px;
    }
}
.section-inner {
    max-width: 1200px;
}
/* コンバージョン */
.line {
    background: #e94d67;
    border-radius: 50px;
    padding: 18px 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    transition: all 0.8s ease;
}
@media screen and (max-width: 1024px) {
    .line {
        padding: 14px 28px;
        font-size: 18px;
    }
}
@media screen and (min-width: 1024px) {
    .line {
        border: 3px solid transparent;
    }
    .line:hover {
        background: #fff;
        color: #e94d67;
        border: 3px solid #e94d67;
        transition: all 0.8s ease;
    }
}
.titles {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media screen and (min-width: 1024px) {
    .titles {
        margin-bottom: 32px;
    }
}
.titles span {
    color: #14b5b1;
    font-size: 18px;
}
@media screen and (min-width: 1024px) {
    .titles span {
    }
}
/* アニメーション */
.box {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}
.box.show {
    opacity: 1;
    transform: translateY(0);
}
.fade-in {
    animation-name: fadeInAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
@media screen and (max-width: 1024px) {
    .adulation {
        background: transparent;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 999;
        margin: auto;
        border-radius: 0;
        width: 100%;
        padding: 20px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
        opacity: 0;
        transform: translateY(100px);
    }
    .adulation .line {
        box-shadow: 0px 3px 6px #00000029;
    }
}
/*　上に上がる動き　*/
#adulation.UpMove {
    animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}
/*　下に下がる動き　*/
#adulation.DownMove {
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
    from {
        opacity: 0.95;
        transform: translateY(0);
    }
    to {
        opacity: 0.95;
        transform: translateY(100px);
    }
}
/* ボタン */
.bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 122px;
    margin: 40px auto;
    border: 2px solid #ffffff;
    border-radius: 30px;
    padding: 16px 56px;
    background-color: #14b5b1;
    color: #fff;
    transition: all 0.8s ease;
}
@media screen and (max-width: 1024px) {
    .bottom {
        margin: 24px auto;
    }
}
@media screen and (min-width: 1024px) {
    .bottom {
        border: 2px solid transparent;
    }
    .bottom:hover {
        background: #fff;
        color: #14b5b1;
        border: 2px solid #14b5b1;
        transition: all 0.8s ease;
    }
}

/* ヘッダー */
header {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 50px;
    white-space: nowrap;
}
@media screen and (max-width: 767px) {
    header {
        padding: 20px 24px;
        margin: 8px 16px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    header {
        padding: 24px 28px;
        margin: 16px 24px;
    }
}
@media screen and (min-width: 1024px) {
    header {
        padding: 12px 32px;
        margin: 24px 84px;
    }
}
header.active {
    background-color: #14b5b1;
}
header .header-inner {
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .menu-icon + .sp-menu {
    display: none;
    font-size: 20px;
}
header .menu-icon.active + .sp-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #fff;
    list-style-type: none;
    padding: 0;
    text-align: center;
    display: block;
    box-shadow: 0 8px 16px rgb(10 10 10 / 10%);
    border-radius: 0px 0px 15px 15px;
}
header .sp-menu li {
    margin-bottom: 2rem;
    color: #14b5b1;
}
header .sp-menu li.min-line {
    color: #fff;
}
header .sp-menu li:first-of-type {
    margin-top: 6rem;
}
header .pc-menu {
    display: none;
}
@media screen and (min-width: 1024px) {
    header .sp-menu {
        display: none;
    }
    header .pc-menu {
        display: flex;
        list-style-type: none;
        align-items: center;
        margin: 0;
    }
    header .pc-menu li {
        margin: 0 0 0 32px;
    }
}
header .menu li {
    margin-right: 2rem;
}
.menu-icon {
    background: none;
    border: none;
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 0;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
@media screen and (min-width: 1024px) {
    .menu-icon {
        display: none;
    }
}
.menu-icon span,
.menu-icon::before,
.menu-icon::after {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 24px;
    height: 2.5px;
    margin: auto;
    background: #14b5b1;
    color: #14b5b1;
}
.menu-icon::before {
    z-index: 2;
    transform: translate(0, -10px);
    content: "";
}
.menu-icon::after {
    z-index: 2;
    transform: translate(0, 10px);
    content: "";
}
.menu-icon::before,
.menu-icon::after {
    transition: transform 200ms;
}
.menu-icon.active span {
    opacity: 0;
    transition: opacity 150ms;
}
.menu-icon.active::before {
    transform: rotate(45deg);
}
.menu-icon.active::after {
    transform: rotate(-45deg);
}

/* ヘッダーロゴ */
.logo img {
    height: auto;
    width: 140px;
}
@media screen and (min-width: 1024px) {
    .logo img {
        height: auto;
        width: 220px;
    }
}

/* コンバージョン */
.min-line {
    background: #e94d67;
    border-radius: 45px;
    padding: 8px 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: auto;
    transition: all 0.8s ease;
}
@media screen and (min-width: 1024px) {
    .min-line {
        border: 2px solid transparent;
    }
    .min-line:hover {
        background: #fff;
        color: #e94d67;
        border: 2px solid #e94d67;
        transition: all 0.8s ease;
    }
}

/* fv-section */
.fv-section {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: none;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media screen and (max-width: 1024px) {
    .fv-section {
        background-image: url(../images/fv_sp.png);
        height: 620px;
        justify-content: flex-end;
    }
}
@media screen and (min-width: 1024px) {
    .fv-section {
        background-image: url(../images/fv_pc.png);
        height: 770px;
        justify-content: center;
    }
}
.fv-section-inner {
    margin: 0 80px;
}
@media screen and (max-width: 1024px) {
    .fv-section-inner {
        margin: 0 24px 68px 24px;
    }
}
h1.fv-section-ttl {
    font-weight: bold;
    color: #14b5b1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 38px;
}
@media screen and (min-width: 1024px) {
    h1 {
    }
}
.fv-section-ttl p {
    font-size: 56px;
    background: #fff;
    box-shadow: 5px 5px 0px #14b5b1;
    border-radius: 2px;
    padding: 8px 16px;
    margin: 12px 0;
}
@media screen and (max-width: 1024px) {
    .fv-section-ttl p {
        font-size: 24px;
        margin: 0;
    }
}
.fv-section-line {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* about-section */
section#about {
    padding: 64px 0;
    background-color: #14b5b1;
}
@media screen and (max-width: 1024px) {
    section#about {
        padding: 48px 0;
        background-color: #14b5b1;
    }
}
.about-wrap {
}
@media screen and (min-width: 1024px) {
    .about-wrap {
    }
}
.about-wrap p {
    color: #fff;
}
.about-wrap ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
li.about-list-wrap {
    width: 320px;
    margin: 32px;
}
@media screen and (max-width: 1024px) {
    li.about-list-wrap {
        margin: 12px 24px;
    }
}
li.about-list-wrap div {
    display: flex;
    align-items: center;
    font-size: 28px;
    color: #fff;
    border-bottom: 2px solid #fff;
}
@media screen and (max-width: 1024px) {
    li.about-list-wrap div {
        font-size: 24px;
    }
}
span.about-list-number {
    font-size: 80px;
    color: #f5f58c;
    margin-right: 16px;
}
@media screen and (max-width: 1024px) {
    span.about-list-number {
        font-size: 54px;
    }
}
li.about-list-wrap p {
    margin-top: 12px;
    font-weight: normal;
    font-size: 16px;
}
@media screen and (max-width: 1024px) {
    li.about-list-wrap p {
        font-size: 14px;
    }
}

/* product-section */
.product-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.product-list a {
    background: #14b5b1;
    border-radius: 15px;
    margin-bottom: 32px;
    overflow: hidden;
    box-shadow: 3px 3px 6px #00000029;
    margin: 0 48px 48px 48px;
    height: 320px;
    max-width: 300px;
    color: #fff;
    transition: all 0.8s ease;
}
@media screen and (max-width: 1024px) {
    .product-list a {
        margin: auto;
        max-width: 320px;
        margin: 0 auto 28px auto;
    }
}
@media screen and (min-width: 1024px) {
    .product-list a:hover {
        transition: all 0.8s ease;
        scale: 1.1;
        opacity: 0.8;
    }
}
.columns {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    padding: 16px;
}

/* how-to-use-section */
section#how-to-use {
    padding: 64px 0;
    background-color: #14b5b1;
    color: #fff;
}
@media screen and (max-width: 1024px) {
    section#how-to-use {
        padding: 32px 0;
    }
}
section#how-to-use span {
    color: #fff;
}
#how-to-use ul {
    background-color: #fff;
    padding: 48px 64px;
    border-radius: 30px;
    color: #333333;
    display: flex;
}
@media screen and (max-width: 1024px) {
    #how-to-use ul {
        flex-direction: column;
        align-items: center;
        margin: auto 24px;
        padding: 14px 0;
    }
}
#how-to-use li {
    border-right: 2px dashed #efefef;
    padding: 24px 48px;
    font-size: 24px;
    width: 30%;
}
@media screen and (max-width: 1024px) {
    #how-to-use li {
        border-right: none;
        border-bottom: 2px dashed #efefef;
        width: 80%;
        padding: 24px;
    }
}
#how-to-use li:last-child {
    border-right: none;
}
@media screen and (max-width: 1024px) {
    #how-to-use li:last-child {
        border-bottom: none;
    }
}
#how-to-use li span {
    color: #14b5b1;
    font-size: 40px;
}
#how-to-use p {
    margin-top: 18px;
    font-weight: normal;
    font-size: 16px;
}

/* faq-section */
.faq-wrap {
    border-radius: 30px;
    background-color: #efefef;
    padding: 24px 16px;
}
@media screen and (min-width: 1024px) {
    .faq-wrap {
        padding: 40px 80px;
    }
}
.faq-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.faq-list li {
    margin: 8px 0;
}
.faq-list div {
    color: #14b5b1;
    font-size: 20px;
}
.faq-list p {
    margin-top: 18px;
    font-weight: normal;
    font-size: 16px;
    padding-left: 42px;
    margin: 16px 0;
}
.faq-list span {
    font-weight: bold;
}

/* company-section */
table {
    margin: 30px auto;
    border-collapse: collapse;
}
@media screen and (max-width: 1024px) {
    table {
        margin: auto;
    }
}
th {
    width: 140px;
    text-align: right;
    margin-right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background-color: #14b5b1;
    color: #fff;
    border-radius: 2px;
    padding: 12px;
}
@media screen and (max-width: 1024px) {
    th {
        margin-right: 0;
        width: auto;
    }
}
td {
    align-items: flex-start;
    letter-spacing: 0.12em;
    background-color: #efefef;
    border-radius: 2px;
    padding: 12px;
    width: 380px;
    overflow: hidden;
}
@media screen and (max-width: 1024px) {
    td {
        width: auto;
    }
}
tr {
    border-bottom: 20px solid transparent;
}
@media screen and (max-width: 1024px) {
    tr {
        display: flex;
        flex-direction: column;
    }
}
@media screen and (min-width: 1024px) {
    td {
        border-bottom: 12px solid transparent;
    }
}

/* product-section */
section#product {
    margin-top: 120px;
}
@media screen and (max-width: 1024px) {
    section#product {
        margin-top: 0;
    }
}
@media screen and (max-width: 1024px) {
    section#product.product-product {
        margin-top: 80px;
    }
}
.product-wrap {
    background-color: #fff;
    border-radius: 30px;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .product-wrap {
        padding: 24px 16px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .product-wrap {
        padding: 24px 160px;
    }
}
@media screen and (min-width: 1024px) {
    .product-wrap {
        padding: 48px 240px;
    }
}
.product-wrap ul {
    display: flex;
    flex-direction: column;
}
.product-wrap li {
    border: 1px solid #707070;
    width: 648px;
    margin: 38px 0 8px 0;
}
@media screen and (max-width: 1024px) {
    .product-wrap li {
        width: 100%;
        margin: 12px auto 8px auto;
    }
}
.product-wrap .min-line {
    margin: 18px 0 18px auto;
}
.product-list-ttl {
    background: #efefef;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    color: #14b5b1;
}
@media screen and (max-width: 1024px) {
    .product-list-ttl {
        padding: 12px;
        font-size: 16px;
        flex-direction: column;
    }
}
.product-list-ttl p {
    display: flex;
    font-size: 14px;
    font-weight: normal;
    color: #333333;
    justify-content: space-between;
    align-items: center;
    width: 35%;
}
@media screen and (max-width: 1024px) {
    .product-list-ttl p {
        margin-top: 8px;
        padding-top: 8px;
        border-top: 2px dashed #efefef;
        width: 100%;
        font-size: 14px;
        justify-content: space-around;
    }
}
.product-list-ttl p span {
    font-weight: bold;
    font-size: 18px;
}
@media screen and (max-width: 1024px) {
    .product-list-ttl p span {
        font-size: 14px;
    }
}
.product-list-content {
    padding: 18px 32px;
    font-weight: normal;
}
@media screen and (max-width: 1024px) {
    .product-list-content {
        padding: 12px 16px;
    }
}
.product-list-content div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 16px auto;
}
@media screen and (max-width: 1024px) {
    .product-list-content div {
        flex-direction: column;
    }
}
.product-list-content div p {
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    width: 35%;
}
@media screen and (max-width: 1024px) {
    .product-list-content div p {
        margin-top: 8px;
        padding-top: 8px;
        border-top: 2px dashed #efefef;
        width: 100%;
        font-size: 14px;
        justify-content: space-around;
    }
}
.product-list-content div p span {
    font-weight: bold;
    color: #ff0000;
    font-size: 18px;
}
@media screen and (max-width: 1024px) {
    .product-list-content div p span {
        font-size: 14px;
    }
}

/* special-commercial-law-section */

section#special-commercial-law {
    margin-top: 120px;
}
@media screen and (max-width: 1024px) {
    section#special-commercial-law {
        margin-top: 80px;
    }
}
.special-commercial-law-wrap {
    background-color: #efefef;
    padding: 48px 240px;
    border-radius: 30px;
    color: #333333;
    font-weight: normal;
}
@media screen and (max-width: 1024px) {
    .special-commercial-law-wrap {
        padding: 24px 16px;
    }
}
.special-commercial-law-wrap li {
    margin: 8px auto;
    list-style: inside;
}

/* footer */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 64px auto;
    font-size: 14px;
    font-weight: normal;
}
footer p {
    font-size: 14px;
}
