/* block head */
.block-head {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 35px;
    text-align: center;
}
.contact-head h1{
font-weight:500;
}
.block-head h2 {
    font-size: 32px;
    font-weight: 900;
}
.block-head h2 span {
    color: var(--accent-color);
}
.block-head p {
    color: var(--accent-color);
    font-family: "Lato", sans-serif;
    font-size: 17px;
    font-weight: bold;
    margin: 0 0 10px;
}
.block-head p span {
    color: var(--accent-color);
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-weight: bold;
}
.block-head__img {
    margin-right: 25px;
    width: 99px;
}
.block-head__in {
    width: calc(100% - 99px + 25px);
    max-width: max-content;
}
@media screen and (max-width: 968px) {
    .block-head h2 {
        font-size: 26px;
    }
    .block-head p {
        font-size: 16px;
    }
    .block-head p span {
        font-size: 22px;
    }
    .block-head__img {
        margin-right: 20px;
        width: 80px;
    }
    .block-head__in {
        width: calc(100% - 80px + 20px);
    }
}
@media screen and (max-width: 768px) {
    .block-head h2 {
        font-size: 20px;
    }
    .block-head p {
        font-size: 15px;
    }
    .block-head p span {
        font-size: 20px;
    }
    .block-head__img {
        margin-right: 15px;
        width: 64px;
    }
    .block-head__in {
        width: calc(100% - 64px + 15px);
    }
}
@media screen and (max-width: 768px) {
    .block-head h2 {
        font-size: 18px;
    }
    .block-head p {
        font-size: 14px;
    }
    .block-head p span {
        font-size: 18px;
    }
}

/* card block */
.card-block {
    background: #E3E3E3;
    border-radius: 8px;
    margin: 0 auto;
    padding: 65px 0;
    width: 90%;
}
.card-block__inner {
    margin: 0 auto;
    width: 90%;
    max-width: 1124px;
}
@media screen and (max-width: 768px) {
    .card-block {
        width: 95%;
    }
}
/* contact btn */
.contact-btn {
    width: 100%;
}
.contact-btn a {
    background: var(--main-theme-color);
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0 auto;
    padding: 20px 0;
    width: 100%;
    max-width: 380px;
}
.btn a {
    position: relative;
}
.contact-btn a span {
    color: var(--accent-color2);
}
.btn a::after {
    background: url(../images/icon-arrow-r.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 6px;
    margin: auto;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    width: 21px;
}
/* floating */
.floating {
    position: fixed;
    bottom: 1%;
    right: 1%;
    transition-duration: .3s;
    width: 100%;
    max-width: 480px;
    z-index: 888;
}
.floating.out {
    right: -480px;
}
.floating.out .floating_close {
    transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
    .floating {
        display: none;
    }
}
/* mv */
.mv {
    background: url(../images/bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    max-height: 100vh;
    padding: 150px 0 100px;
}
.mv-inner {
    margin: 0 auto;
    width: 85%;
    max-width: 1200px;
}
.mv-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.mv-text,
.mv-image {
    width: 50%;
}
.mv-text__in {
    margin: 0 auto;
    text-align: center;
    width: 90%;
}
.mv-image {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mv-img {
    filter: drop-shadow(16px 8px 32px rgb(81 97 145 / 24%));
}
.mv-image .mv-img:first-child {
    margin: 0 0 0 80px;
}
.mv-image .mv-img:last-child {
    position: relative;
    top: 30%;
    right: -10%;
}
.mv-text__in h1 {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 20px;
}
.mv-txt {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin: 15px 0 35px;
}

.mv-tag {
    background: #fff;
    border-radius: 6px;
    display: none;
    filter: drop-shadow(0 24px 40px rgb(137 63 0 / 10%));
    padding: 20px;
    text-align: center;
    width: 100%;
}
.mv-text .mv-tag {
    display: block;
}
.mv-tag h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 20px;
}
.mv-tag h2 span {
    color: var(--accent-color);
}
.mv-tag__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 10px;
}
.mv-tag__list li {
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}
.mv-tag__list li::before {
    background: #CBCBCB;
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 8px;
    margin-right: 8px;
    width: 8px;
}
.mv-btn {
    display: none;
    margin: 35px 0 0;
}
.mv-text .mv-btn {
    display: block;
}

@media screen and (max-width: 1068px) {
    .mv-tag__list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 968px) {
    .mv {
        padding: 150px 0 50px;
        max-height: none;
    }
    .mv-text,
    .mv-image {
        width: 100%;
    }
    .mv-image {
        margin: 35px 0;
    }
    .mv-image .mv-img:first-child {
        margin: 0 25px 0 0;
    }
    .mv-image .mv-img:last-child {
        top: 0;
        right: 0;
    }
    .mv-tag {
        display: block;
    }
    .mv-text .mv-tag {
        display: none;
    }
    .mv-btn {
        display: block;
        margin: 25px 0 0;
    }
    .mv-text .mv-btn {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .mv-text__in h1 {
        font-size: 20px;
    }
    .mv-txt {
        font-size: 14px;
        margin: 15px 0 0;
    }
    .mv-tag h2 {
        font-size: 18px;
    }
}
@media screen and (max-width: 468px) {
    .mv-text__in h1 {
        font-size: 18px;
    }
    .mv-txt {
        font-size: 12px;
    }
    .mv-tag {
        padding: 20px 12px;
    }
    .mv-tag h2 {
        font-size: 16px;
    }
    .mv-tag__list li {
        font-size: 12px;
    }
}

.description-scroll {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    position: relative;
    top: -50px;
    z-index: -1;
}
.description-scroll img {
    animation: infinity-scroll-left 30s infinite linear 0.5s both;
    position: relative;
    padding-right:50px;
}
@keyframes infinity-scroll-left{
0% {
    transform: translateX(0%);
}
100% {
    transform: translateX(-100%);
}
}
@media screen and (max-width: 468px) {
.description-scroll {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    position: relative;
    top: -50px;
    z-index: -1;
}
.description-scroll img {
    object-fit: cover;
    height: 100px;
}
}
/* worries */
.worries {
    padding: 100px 0 0;
}
.worries-body {
    background: url(../images/worries-bg.png) no-repeat;
    background-position: center top;
    background-size: cover;
    margin-top: -15%;
    padding: 20% 0 100px;
}
.worries-image {
    margin: -50px auto 0;
    width: 92%;
    max-width: 888px;
}
.worries-body__in {
    margin: 0 auto;
    width: 95%;
    max-width: 1024px;
}
.worries-arrow {
    text-align: center;
}
.worries-text {
    filter: drop-shadow(0 24px 56px rgb(1 24 60 / 10%));
    margin: 30px 0 100px;
}
.worries-movie {
    filter: drop-shadow(56px 56px 72px rgb(1 24 60 / 10%));
}
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe,.youtube video {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .worries-body {
        margin-top: -30%;
        padding: 40% 0 50px;
    }
    .worries-arrow img {
        max-width: 95px;
    }
    .worries-text {
        margin: 30px 0 60px;
    }
}

/* application */
.application {
    background: #EFF0F2;
    padding: 100px 0;
    position: relative;
}
.application::before {
    background: url(../images/application-bg.png) repeat-y;
    background-size: contain;
    background-position: center top;
    content: "";
    display: inline-block;
    height: calc(100% - 120px);
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 200px;
    z-index: 0;
}
.application-inner {
    margin: 0 auto;
    position: relative;
    width: 95%;
    max-width: 1124px;
    z-index: 1;
}
.application-body {
    margin: 65px 0 0;
}
.application-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.application-item:not(:last-child) {
    margin: 0 0 45px;
}
.application-item:nth-child(even) {
    flex-direction: row-reverse;
}
.application-item__text {
    width: 48%;
}
.application-item__image {
    filter: drop-shadow(30px 30px 25px rgb(1 24 60 / 20%));
    width: 49%;
}
.application-item__num {
    color: var(--accent-color);
    font-family: "Roboto", sans-serif;
    font-size: 72px;
    font-weight: bold;
}
.application-item__txt p {
    background: #fff;
    border-radius: 3px;
    display: inline-block;
    font-size: 24px;
    font-weight: 500;
    filter: drop-shadow(0 24px 56px rgb(1 24 60 / 10%));
    padding: 5px;
}
.application-item__txt p span {
    color: var(--accent-color);
}
.application-item__txt p:not(:last-child) {
    margin: 0 0 5px;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .application-item__text {
        margin: 0 0 35px;
        width: 100%;
    }
    .application-item__image {
        width: 100%;
    }
    .application-item__num {
        font-size: 56px;
    }
    .application-item__txt p {
        font-size: 18px;
    }
}

/* comparison */
.comparison {
    background: #E3E3E3;
    padding: 65px 0;
}
.comparison-inner {
    margin: 0 auto;
    width: 95%;
    max-width: 1047px;
}
.comparison-row {
    text-align: center;
}
.comparison-row:not(:last-child) {
    margin: 0 0 35px;
}
.comparison-row:nth-child(3) {
    filter: drop-shadow(0 24px 56px rgb(1 24 60 / 10%));
}
.mw800{
max-width:800px;
margin:0 auto !important;
}
/* app */
.app {
    padding: 65px 0;
}
.app-inner {
    margin: 0 auto;
    width: 95%;
    max-width: 1047px;
}
.app-slider__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.app-slide {
    filter: drop-shadow(0 24px 56px rgb(1 24 60 / 10%));
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .app-slider__wrapper {
        display: flex;
        gap: 0;
    }
    .slide-btn {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin: 25px 0 0;
    }
    .swiper-slide__btn {
        width: 52px;
    }
    .swiper-slide__btn:not(:last-child) {
        margin-right: 15px;
    }
}

/* anker */
.anker {
    background: url(../images/bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    margin: 150px 0 0;
    padding: 150px 0;
}
.anker-inner {
    margin: 0 auto;
    position: relative;
    width: 95%;
    max-width: 1200px;
}
.anker-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.anker-text {
    width: 50%;
}
.anker-image {
    margin: auto;
    height: 700px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 47%;
}
.anker-text h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 50px;
    text-align: center;
}
@media screen and (max-width: 968px) {
    .anker-text h2 {
        font-size: 24px;
    }
}
@media screen and (max-width: 768px) {
    .anker {
        margin: 0;
        padding: 65px 0 50px;
    }
    .anker-inner {
        padding: 0 0 145vw;
    }
    .anker-text {
        width: 100%;
    }
    .anker-image {
        margin: auto;
        height: auto;
        top: inherit;
        right: 0;
        left: -10%;
        width: 120%;
    }
    .anker-text h2 {
        font-size: 20px;
    }
}

/* case */
.case {
    background: #E3E3E3;
    padding: 150px 0 65px;
}
.case-inner {
    margin: 0 auto;
    width: 95%;
    max-width: 1024px;
}
.case-card {
    background: #fff;
    border-radius: 5px;
    filter: drop-shadow(0 16px 32px rgb(1 24 60 / 10%));
    padding: 35px 45px;
}
.case-card:not(:last-child) {
    margin: 0 0 35px;
}
.case-card dt {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: wrap;
    margin: 0 0 5px;
}
.case-card__logo {
    line-height: 0;
    margin-right: 20px;
}
.case-card dt p {
    background: #EFF0F2;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 900;
    padding: 3px 8px;
}
.case-card dd {
    height: 145px;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
}
.toggle.active {
    height: auto !important;
    padding-bottom: 29px;
}
.cover {
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 80%;
    padding: 0 0 15px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
.toggle.active .cover {
    background: #fff;
    height: auto;
    bottom: -20px;
}
.function-list.toggle.active .cover {
    bottom: -10px;
}
.cover p::before {
    background: url(../images/icon-arrow-d.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 11px;
    margin-right: 10px;
    width: 20px;
}
.toggle.active .cover p::before {
    transform: rotate(-180deg);
}
.case-card dd p {
    font-size: 16px;
    font-weight: 500;
    line-height: 2em;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .case {
        margin: 0 0 60px;
        padding: 65px 0;
    }
    .case-card {
        padding: 25px 20px;
    }
    .case-card dt p {
        font-size: 18px;
        margin: 10px 0 0;
        width: 100%;
    }
    .case-card dd p {
        font-size: 14px;
    }
}

/* benefits */
.benefits {
    padding: 65px 0;
}
.benefits-inner {
    margin: 0 auto;
    width: 95%;
    max-width: 1200px;
}
.benefits-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 80px 0 0;
}
.benefits-card {
    background: #fff;
    border-radius: 8px;
    filter: drop-shadow(0 24px 56px rgb(1 24 60 / 10%));
    padding: 0 0 40px;
    position: relative;
}
.benefits-card::before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    filter: drop-shadow(56px 5px 72px rgb(1 24 60 / 10%));
    height: 99px;
    position: absolute;
    left: 20px;
    top: -45px;
    width: 99px
}
.benefits-card:nth-child(1)::before {
    background-image: url(../images/function1.png);
}
.benefits-card:nth-child(2)::before {
    background-image: url(../images/function2.png);
}
.benefits-card:nth-child(3)::before {
    background-image: url(../images/function3.png);
}
.benefits-card:nth-child(4)::before {
    background-image: url(../images/function4.png);
}
.benefits-card__image {
    border-radius: 8px 8px 0 0;
    line-height: 0;
}
.benefits-card__text {
    background: #fff;
    border-radius: 0 0 8px 8px;
    padding: 15px 15px 25px;
}
.benefits-card__subttl {
    color: var(--accent-color);
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 5px;
    text-align: center;
}
.benefits-card__subttl span {
    color: var(--accent-color);
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 700;
}
.benefits-card__ttl {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    text-align: center;
}
.benefits-card__txt {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8em;
}
.benefits-card__link {
    background: rgba(255, 180, 5, 0.14);
    border-radius: 0 0 8px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
}
.benefits-card__link::after {
    background: url(../images/icon-arrow-d.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 5px;
    margin-left: 8px;
    width: 11px;
}
.benefits-card__link p {
    color: var(--accent-color);
    display: inline;
    font-size: 14px;
    font-weight: bold;
}
@media screen and (max-width: 968px) {
    .benefits-cards {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }
    .benefits-card {
        margin-top: 40px;
    }
}
@media screen and (max-width: 768px) {
    .benefits-body {
        display: none;
    }
}

/* function */
.function {
    margin: 0 auto 30px;
    overflow: hidden;
}
.function-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.function-card {
    background: #fff;
    border-radius: 8px;
    filter: drop-shadow(0 24px 56px rgb(1 24 60 / 10%));
    overflow: hidden;
}
.function-card__image {
    border-radius: 8px 8px 0 0;
    line-height: 0;
}
.function-card__text {
    background: #fff;
    padding: 15px;
}
.function-card__ttl {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 15px 0;
}
.function-card__ttl::before {
    background: url(../images/icon-check.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 16px;
    margin-right: 5px;
    position: relative;
    top: 5px;
    width: 19px;
}
.function-card__ttl p {
    font-size: 20px;
    font-weight: 500;
}
.function-card__ttl p span {
    color: var(--accent-color);
}
.function-card__txt {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8em;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .function-cards {
        display: flex;
        align-items: stretch;
        gap: 0;
    }
    .function-card {
        height: auto;
    }
}

/* function list */
.fucntion2 {
    background: #EFF0F2;
    padding: 65px 0;
}
.function2-inner {
    margin: 0 auto;
    width: 95%;
    max-width: 1200px;
}
.function-list {
    border-radius: 16px;
    overflow: hidden;
    margin: 0 0 55px;
}
.function-list__item {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.function-head__item dt {
    border-right: 1px solid #E3E3E3;
}
.function-list__item dt,
.function-list__item dd {
    padding: 12px;
}
.function-list__item dt {
    background: #e8a552;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    width: 35%;
}
.function-list__item:nth-child(even) dt {
    background: #eb9336;
}
.function-list__item dd {
    background: rgb(253 105 50 / 20%);
    font-size: 14px;
    font-weight: 500;
    width: 65%;
}
.function-list__item:nth-child(even) dd {
    background: #fff;
}
.function-head__item dt,
.function-head__item dd {
    background: #3C4A60;
    color: #fff;
    text-align: center;
}
.function-list .cover {
    display: none;
}
.function-contact {
    background: #E3E3E3;
    border-radius: 16px;
    padding: 35px 15px;
    width: 100%;
}
.function-contact p {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 35px;
    text-align: center;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .function-list {
        height: 500px;
        position: relative;
    }
    .function-list__item dt {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        font-size: 12px;
        text-align: left;
        width: 30%;
    }
    .function-list__item dd {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        font-size: 11px;
        width: 70%;
    }
    .function-head__item dd {
        justify-content: center;
    }
    .function-list .cover {
        display: flex;
    }
    .function-contact p {
        font-size: 16px;
    }
}

/* flow */
.flow {
    padding: 65px 0;
}
.flow-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1024px;
}
.flow-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 85px;
}
.flow-item {
    position: relative;
}
.flow-item:not(:last-child)::after {
    background: url(../images/icon-triangel.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 30px;
    margin: auto;
    position: absolute;
    right: -72px;
    top: 130px;
    width: 52px;
}
.flow-item__image {
    line-height: 0;
    margin: 0 0 20px;
    text-align: center;
}
.flow-item__ttl {
    background: #fff;
    border-radius: 6px;
    font-size: 24px;
    font-weight: 500;
    margin: 0 auto 15px;
    padding: 3px 10px;
    width: 100%;
    max-width: max-content;
}
.flow-item__ttl .num {
    color: var(--accent-color);
    font-family: "Roboto", sans-serif;
    font-size: 26px;
    font-weight: bold;
    margin-right: 5px;
}
.flow-item__txt {
    font-size: 16px;
    font-weight: 500;
    line-height: 2em;
}
.anker-p{
color: var(--accent-color);
text-decoration:underline;
}
@media screen and (max-width: 968px) {
    .flow-items {
        gap: 55px;
    }
    .flow-item:not(:last-child)::after {
        height: 26px;
        right: -50px;
        top: 110px;
        width: 46px;
    }
}
@media screen and (max-width: 768px) {
    .flow-items {
        grid-template-columns: 1fr;
        gap: 85px;
    }
    .flow-item:not(:last-child)::after {
        height: 30px;
        margin: auto;
        right: 0;
        left: 0;
        top: inherit;
        bottom: -72px;
        transform: rotate(90deg);
        width: 52px;
    }
    .flow-item__image img {
        max-width: 200px;
    }
    .flow-item__ttl {
        font-size: 18px;
    }
    .flow-item__ttl .num {
        font-size: 20px;
    }
    .flow-item__txt {
        font-size: 14px;
    }
}

/* contact */
section.contact {
    background: url(../images/bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 150px 0;
}
.contact-inner {
    background: #fff;
    border-radius: 16px;
    margin: 0 auto;
    padding: 80px 25px;
    width: 92%;
    max-width: 1147px;
}
.contact-body h2 {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 35px;
    text-align: center;
}
.contact-list {
    margin: 0 auto;
    width: 92%;
    max-width: 836px;
}
.contact-list__item:not(:last-child) {
    margin: 0 0 25px;
}
.contact-list__item dt,
.contact-list__item dt {
    margin: 0 0 10px;
}
.contact-list__item.required dt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.contact-list__item.required dt::after {
    background: var(--accent-color);
    border-radius: 3px;
    content: "必須";
    color: #fff;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    margin-left: 15px;
    padding: 3px 15px;
}
.contact-list__item dt label,
.contact-list__item dt p {
    font-size: 14px;
    font-weight: bold;
}
.contact-list__item dd input[type="text"],
.contact-list__item dd input[type="email"],
.contact-list__item dd input[type="tel"],
.contact-list__item dd input[type="submit"],
.contact-list__item dd select,
.contact-list__item dd textarea {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #EFF0F2;
    border: 1px solid #CBCBCB;
    border-radius: 8px;
    display: block;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    padding: 10px;
    width: 100%;
}
.contact-list__item dd select {
    background-image: url(../images/select-icon.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    max-width: 400px;
}
.wpcf7-list-item {
    display: block;
    margin: 0;
}
.wpcf7-list-item input {
    display: none;
}
.wpcf7-list-item:not(:last-child) {
    margin: 0 0 10px;
}
.wpcf7-list-item-label {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
    padding-left: 28px;
    position: relative;
}
.wpcf7-list-item-label::before {
    border: 1px solid var(--accent-color);
    content: "";
    display: inline-block;
    height: 18px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
}
input[type="checkbox"]:checked~.wpcf7-list-item-label::after {
    background: url(../images/icon-check.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 10px;
    margin: 0 auto;
    position: absolute;
    left: 3px;
    top: 5px;
    bottom: 0;
    width: 15px;
}

.contact-list__item.submit-item p {
    background: var(--main-theme-color);
    border-radius: 50px;
    margin: 35px auto 0;
    position: relative;
    width: 100%;
    max-width: 328px;
}
.contact-list__item.submit-item p::after {
    background: url(../images/icon-arrow-r.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 6px;
    margin: auto;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    width: 21px;
}
.contact-list__item.submit-item input {
    background: none;
    border: 0;
    color: #fff;
    display: block;
    font-size: 18px;
    font-weight: bold;
    padding: 20px 0;
    width: 100%;
}
.contact-list__item.submit-item .wpcf7-spinner {
    display: none;
}

.policy-area {
    border: 2px solid #676767;
    background: #fff;
    border-radius: 8px;
    height: 200px;
    margin: 20px 0 0;
    overflow-y: auto;
    padding: 20px;
}
.policy-area h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 15px;
}
.policy-area p {
    font-size: 13px;
    font-weight: 500;
    line-height: 2em;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .contact-inner {
        padding: 50px 25px;
    }
    .contact-body h2 {
        font-size: 18px;
        margin: 0 0 25px;
    }
    .contact-list {
        width: 100%;
    }
}

/* blockname */
.slide-btn {
    display: none;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .slide-btn {
        display: flex;
    }
}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}


.floatingbtn {
    display: none;
    padding: 0 0 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}
.floatingbtn-inner {
    margin: 0 auto;
    width: 92%;
}
.floatingbtn ul {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.floatingbtn ul li {
    width: 48.5%;
}
.floatingbtn ul li a {
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0 auto;
    padding: 10px 0;
    width: 100%;
    max-width: none;
}
/* .contact-btn a {
    background: rgb(255,147,0);
    background: linear-gradient(101deg, rgba(255,147,0,1) 0%, rgba(255,123,75,1) 100%);
} */
.application-btn a {
    background: rgb(238,102,0);
    background: linear-gradient(101deg, rgba(238,102,0,1) 0%, rgba(239,49,0,1) 100%);
}
@media screen and (max-width: 768px) {
    .floatingbtn {
        display: block;
    }
}