@charset "utf-8";

/* -------------------
共通
------------------- */
/* 調整 */
p,h1,h2,h3,h4,h5,h6 {
    margin: 0;
}
body {
    overflow-x: hidden;
}
ol, ul {
    padding: 0;
    margin: 0;
}
img {
    object-fit: contain;
}
/* コンテンツ幅 */
.inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
/* テキスト */
* {
    font-family: "Noto Sans JP", system-ui;
    font-weight: bold;
}
p {
    color: #000;
    font-family: "Noto Sans JP", system-ui;
    font-weight: bold;
    font-size: 18px;
}
.t-orange {
    color: #FF7300;
}
.t-orange2 {
    color: #FF9914;
}
.t-white {
    color: #fff;
}

/* bg color */
.bg-white {
    background-color: #fff;
}
.bg-orange {
    background-color: #FFD39A;
}
.bg-green {
    background-color: #02B2A8;
}
.bg-green2 {
    background-color: #D8F1EF;
}
.wrapper {
    width: 100%;
}
/* arrow */
.arrow, 
.arrow img {
    width: 100%;
    /* height: fit-content; */
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 見出し */
.h2 {
    font-size: 40px;
    padding-bottom: 10px;
    border-bottom: 5px solid #FF9914;
    margin: 0 auto;
    width: fit-content;
    font-weight: bold;
}
h3,h4 {
    font-weight: bold;
}
/* contact */
.contact-btn {
    width: 100%;
    max-width: 380px;
    /* height: 90px; */
    padding: 27px 0;
    border-radius: 50px;
    background: linear-gradient(30deg, #FF7300, #FFAA3C);
    vertical-align: middle;
    box-shadow: 0px 0px 26px rgba(0, 0, 0, 0.16);
}
.contact-btn p {
    font-size: 25px;
    margin-top: auto;
    margin-bottom: auto;
}
.contact-btn:hover {
    background: linear-gradient(210deg, #FF7300, #FFAA3C) ;
    opacity: 0.8;
    transition: 0.5s;
}
@media screen and (max-width :1280px){
    .h2 {
        font-size: 30px;
    }
    .contact-btn p {
        font-size: 22px;
    }
}
@media screen and (max-width :768px){
    .contact-btn {
        padding: 20px 0;
        max-width: 350px;
    }
    .h2 {
        font-size: 22px;
    }
}
/* -------------------
ヘッダー
------------------- */
.top-h1 {
    width: 100%;
    height: 50px;
    text-align: center;
    color: #027872;
    background-color: #EBF5F4;
}
.top-h1 h1 {
    font-size: 18px;
    line-height: 50px;
    font-weight: bold;
}
header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99;
}
.header {
    width: 100%;
    height: 120px;
    padding-left: 50px;
}
.logo {
    gap: 30px;
}
.header-logo1 {
    width: 200px;
    width: 10.4vw;
    min-width: 100px;
    height: fit-content;
}
.header-logo2 {
    width: 180px;
    width: 9.3vw;
    min-width: 95px;
    height: fit-content;
}
.header-menu,
.header-menu-list {
    gap: 60px;
    height: 100%;
    align-items: center;
}
.header-menu-list li {
    font-size: 18px;
    font-weight: bold;
}
.contact {
    width: 235px;
    height: 100%;
    background: linear-gradient(30deg, #FF7300, #FFAA3C);
    gap: 18px;
}
.contact:hover {
    opacity: 0.8;
    transition: 0.3;
}
.sp-modal-menu {
    height: calc(100vh - 80px);
    padding: 30px 0;
    background-color: #02B2A8;
    gap: 50px;
    display: none;
}
.modal-menu-title {
    color: #027872;
    font-size: 20px;
}
.modal-menu-list {
    width: 100%;
}
.modal-menu-list li {
    width: 100%;
    padding: 20px;
    margin-bottom: 10px;
    text-align: center;
}
.modal-menu-list li a {
    width: 100%;
    height: 100%;
    color: #fff !important;
    font-size: 16px;
}
.sp-modal-menu .contact {
    height: auto;
    margin: 0 auto;
    padding: 20px 0;
    max-width: 300px;
    width: 90%;
    gap: 20px;
    border-radius: 50px;
}
.sp-modal-menu .contact p {
    font-size: 16px;
}
.sp-modal-menu .contact img {
    width: 30px;
}
.sp-menu-button {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: #02B2A8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    display: none;
}
.sp-menu-button span {
    display: block !important;
    width: 25px;
    height: 2px;
    background-color: #fff;
}
.modal-button-on span:nth-child(1) {
    rotate: 40deg;
    margin-bottom: -7px;
}
.modal-button-on span:nth-child(2) {
    display: none !important;
}
.modal-button-on span:nth-child(3) {
    rotate: -40deg;
}
.modal-on {
    display: flex;
}

@media screen and (max-width :1280px){
    .header  {
        padding-left: 20px;
    }
    .header-menu,
    .header-menu-list {
        gap: 30px;
    }
    .header-menu-list li {
        font-size: 16px;
    }
}
@media screen and (max-width :1080px){
    .header  {
        height: 80px;
        padding-right: 20px;
    }
    .header-menu {
        display: none !important;
    }
    .sp-menu-button  {
        display: flex;
    }
    .logo {
        gap: 10px;
    }
}
@media screen and (max-width :768px){
    .top-h1 h1 {
        font-size: 12px;
    }
}
/* -------------------
MV
------------------- */
#mv {
    background: url(../images/mv-bg_green.png) no-repeat center 0;
    background-size: 100% contain;
    padding: 80px 0;
}
.mv-inner {
    width: 100%;
    height: 100%;
    gap: 50px;
}
.mv-copy {
    /* width: 680px; */
    width: 35.4vw;
    padding: 30px 40px;
    gap: 25px;
    border-radius: 20px;
    animation: mvcopyIn 0.5s ease-in-out;
}

@keyframes mvcopyIn {
    from {
        opacity: 0;
        transform: translate( 15% , 400px);
    }
    to {
        opacity: 1;
        transform: translate(0 0);
    }
}
.mv-copy img {
    width: 100%;
}
.mv-image {
    width: 42.3vw;
    animation: mvimageIn 0.5s ease-in-out;
}

@keyframes mvimageIn {
    from {
        opacity: 0;
        transform: translate(-15% , 400px);
    }
    to {
        opacity: 1;
        transform: translate(0 0);
    }
}
.mv-image img {
    width: 100%;
}
@media screen and (max-width :1280px){
    
}
@media screen and (max-width :1080px){
    #mv {
        padding: 40px 0;
    }
    .mv-inner {
        flex-direction: column;
        gap: 0;
    }
    .mv-copy {
        order: 2;
        width: 90%;
        max-width: 500px;
        margin-top: -90px;
        padding: 100px 20px 20px;
        animation: fadeInUp 0.5s ease-out;
    }
    .mv-image {
        width: 70%;
        max-width: 300px;
        z-index: 2;
        animation: fadeInUp 0.5s ease-out;
    }
}
@media screen and (max-width :768px){
    
}
/* -------------------
お悩み
------------------- */
.problem-inner {
    padding-top: 90px;
}
.problem-h2 {
    width: fit-content;
    padding: 10px 35px;
    background-color: #027872;
    position: relative;
    border-radius: 120px;
    margin: 0 auto;
    margin-bottom: 41px;
    border-bottom: none;
}
.problem-h2::after {
    content: url(../images/fukidasi_green.png);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.problem-content {
    width: 100%;
    min-height: 650px;
    background-size: cover;
    padding: 60px 0 10px;
    position: relative;
    /* overflow: hidden; */
}
.problem-bg-image {
    width: 100%;
    min-width: 1000px;
    position: sticky;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.problem-content p {
    color: #027872;
    font-size: 22px;
    text-align: center;
}
.p-row {
    z-index: 1;
    position: relative;
}
.problem-content-row-2 {
    max-width: 887px;
    margin-top: -76px;
}
.problem-content-row-3 {
    max-width: 1064px;
    margin-top: 25px;
    /* margin-bottom: 21vw; */
}
.problem1 {
    width: 315px;
    height: 146px;
    background: url(../images/problem-bg-1.png);
    padding-top: 25px;
}
.problem2 {
    width: 272px;
    height: 139px;
    background: url(../images/problem-bg-2.png);
    padding-top: 42px;
}
.problem3 {
    width: 252px;
    height: 131px;
    background: url(../images/problem-bg-3.png);
    padding-top: 25px;
}
.problem4 {
    width: 288px;
    height: 144px;
    background: url(../images/problem-bg-4.png);
    padding-top: 42px;
}
.problem5 {
    width: 265px;
    height: 132px;
    background: url(../images/problem-bg-5.png);
    padding-top: 23px;
}
.sp-problem-bg-img {
    display: none;
}
@media screen and (max-width :1080px){
    .problem-inner {
        padding-top: 40px;
    }
    .problem-content {
        padding: 30px 10px;
        overflow: hidden;
    }
    .problem1, .problem2, .problem3, .problem4, .problem5 {
        scale: 0.8;
    }
}
@media screen and (max-width :768px){
    .problem-bg-image {
        min-width: 700px;
        width: 185vw;
        position: sticky;
        position: absolute;
        /* top: 470px; */
        top: auto;
        bottom: 100px;
        transform: none;
        /* right: -350px; */
        left: inherit;
        display: none;
    }
    .sp-problem-bg-img {
        display: flex;
        margin-top: -26em;
        justify-content: center;
    }
    .p-row {
        flex-direction: column;
    }
    .problem-content {
        max-height: 1250px;
    }
    .problem-content-row-2 {
        margin-top: 30px;
    }
    .problem-content-row-3 {
        margin-bottom: 0;
    }
    /* .problem3 {
        background: url(../images/problem-bg-3-r.png);
    }
    .problem5 {
        background: url(../images/problem-bg-5-r.png);
    } */
     
}
/* -------------------
できること
------------------- */
#function .inner {
    padding-top: 90px;
    padding-bottom: 90px;
}
#function h2 {
    margin-bottom: 80px;
}
.fc-container {
    width: 100%;
    gap: 25px;
}
.fc-content {
    width: 280px;
    background-color: #fff;
    border: 2px solid #D8D8D8;
    padding: 20px 15px;
    border-radius: 10px;
}
.fc-content h3 {
    font-size: 22px;
}
.fc-content img {
    margin: 20px 0;
    width: 100%;
    height: fit-content;
}
.fc-content p {
    font-weight: 500;
    font-size: 16px;
}
@media screen and (max-width :1280px){
    
}
@media screen and (max-width :768px){
    #function .inner {
        padding: 30px 0;
    }
    #function h2 {
        margin-bottom: 40px;
    }
    .fc-content {
        width: 90%;
        max-width: 300px;
        padding: 15px 15px;
        border-radius: 10px;
    }
    .fc-content h3 {
        font-size: 18px;
    }
    .fc-content p {
        font-size: 15px;
    }
    
}
/* -------------------
選ばれる理由
------------------- */
#reason .inner {
    padding: 80px 40px;
}
#reason .h2 {
    margin-bottom: 70px;
}
.rs-container {
    width: 100%;
    gap: 30px;
}
.rs-content {
    background-color: #fff;
    border: 2px solid #D8D8D8;
    padding: 20px;
    border-radius: 10px;
    max-width: 560px;
}
.rs-number {
    background-color: #02B2A8;
    padding: 4.5px 28px;
    border-radius: 20px;
    color: #fff;
    font-size: 20px;
    margin-bottom: 50px;
}
.rs ul li {
    list-style: disc;
    list-style-position: inside;
    padding-left: 2em;
    text-indent: -1.4em;
    margin-bottom: 10px;
}
.rs-text {
    min-height: 284px;
    width: 275px;
    height: 100%;
}
.rs-text h3 {
    font-size: 25px;
    color: #FF7300;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 36px;
}
.rs-other {
    width: 520px;
    padding: 25px 20px 45px;
    border-radius: 20px;
}
.rs-text h3.rs-number {
    background-color: #02B2A8;
    padding: 10px 60px;
    border-radius: 40px;
    color: #fff;
    font-size: 25px;
    margin: 0 auto;
    margin-bottom: 25px;
    text-align: center;
    width: fit-content;
}
.rs-text p {
    font-size: 18px;
    font-weight: 600;
    line-height: 35px;
}
.rs-image {
    width: 200px;
    text-align: center;
}
.rs-other .rs-text {
    width: 100%;
}

@media screen and (max-width :1280px){
    
}
@media screen and (max-width :768px){
    #reason .inner {
        padding: 30px 0;
    }
    #reason .h2 {
        margin-bottom: 30px;
    }
    .rs-container {
        width: 100%;
    }
    .rs-content {
        padding: 30px 15px;
        width: 90%;
        max-width: 360px;
    }
    .rs-image {
        width: 100%;
        scale: 0.8;
    }
    .rs-text {
        min-width: 275px;
        width: 100%;
        min-height: auto;
        height: auto;
    }
    .rs-number {
        font-size: 16px;
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .rs-text h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .rs-text p {
        font-size: 15px;
        line-height: 30px;
    }
    .rs-text h3.rs-number {
        padding: 10px 40px;
        font-size: 20px;
    }
    .rs h3 br {
        display: none;
    }
}
/* -------------------
事例
------------------- */
#case {
    padding-top: 125px;
    padding-bottom: 235px;
    position: relative;
    overflow: hidden;
}
#case h2 {
    width: 100%;
    text-align: center;
}
.case-slide {
    margin-top: 125px;
    gap: 55px;
    /* width: fit-content; */
}
.case-content {
    width: 550px;
    border-radius: 30px;
    box-shadow: 0px 0px 26px rgba(0, 0, 0, 0.16);
    padding: 20px 35px;
}
.cs-content-inner {
    width: 100%;
    height: 100%;
}
.case-content h3 {
    font-size: 25px;
    line-height: 36px;
    text-indent: -1em;
    margin-left: 1em;
}
.case-content p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}
.case-content img {
    margin: 20px auto;
    display: block;
}
@media screen and (max-width :1280px){
    
}
@media screen and (max-width :768px){
    #case {
        padding-top: 40px;
        padding-bottom: 120px;
    }
    .case-slide {
        margin-top: 50px;
    }
    .case-content {
        width: 300px;
        padding: 20px 20px;
    }
    .case-content h3 {
        font-size: 18px;
        line-height: 26px;
    }
    .case-content img {
        width: 90%;
    }
    
}
/* スライダー */
.slick-track {
    display: flex;
    gap: 2.6vw;
}
.slick-list {
    padding: 30px 50px !important; 
}
.slick-track {
    align-items: stretch;
}
.slick-slide {
    height: auto;
}
.slick-dots {
    bottom: -70px;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
    width: auto;
    height: auto;
}
.slick-dots li button {
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    background: transparent;
    content: "";
    background-color: #CFCFCF;
    border-radius: 100%;
}
.slick-dots li button:before {
    content: none;
}
.slick-active button {
    background-color: #FF9914 !important;
}
.slick-prev, .slick-next {
    width: auto;
    height: auto;
    top: inherit;
    z-index: 3;
}
.slick-next {
    right: calc(50% - 122px);
    transform: translateX(50%);
    bottom: -90px;
}
.slick-prev {
    left: calc(50% - 122px);
    transform: translateX(-50%);
    bottom: -90px;
}
.slick-next:before {
    content: url(../images/slide-next.png);
}
.slick-prev::before {
    content: url(../images/slide-prev.png);
}

/* -------------------
料金
------------------- */
#fee {
    background: url(../images/fee-bg_green.png) no-repeat 0 center;
    background-size: cover;
    padding: 90px 0 70px;
    position: relative;
}
.fe-container {
    width: 80%;
    max-width: 700px;
    margin: 60px 0;
    box-shadow: 0px 0px 26px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    padding: 30px 0 55px;
}
.fe-container::before {
    content: '';
    width: 100%;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, #FFAA3C, #FF7300);
    z-index: 2;
}
.fee-content p {
    font-size: 175px;
    text-align: center;
    letter-spacing: -0.035em;
    line-height: 0.6em;
    margin: 90px 0 30px;
    text-wrap: nowrap;
}
.fee-content p span {
    font-size: 50px;
    letter-spacing: 0;
    margin-left: 10px;
}
.fee-supplement {
    font-size: 19px;
    text-align: center;
}
#fee .inner {
    position: relative;
    z-index: 1;
    padding-top: 30px;
}
#fee .arrow {
    position: absolute;
    bottom: 0;
    left: 0;
}
@media screen and (max-width :1280px){
    
}
@media screen and (max-width :768px){
    #fee {
        padding: 40px 30px;
    }
    .fe-container {
        margin: 40px 0;
        width: 100%;
        max-width: 400px;
    }
    .fee-content p {
        font-size: 105px;
    }
    .fee-content p span {
        font-size: 30px;
    }
}
/* -------------------
質問
------------------- */
#qa .inner {
    padding: 80px 50px;
    border-top: 5px dotted #fff;
}
#qa h2 {
    margin-bottom: 75px;
}
.qa-container {
    width: 100%;
}
.qa-content {
    width: 100%;
    border-radius: 10px;
    padding: 0 25px;
    margin-bottom: 40px;
}
.qa-content h3 {
    font-size: 41px;
    font-weight: bold;
    margin-right: 15px;
}
.qa-content h4 {
    font-size: 20px;
    font-weight: 500;
}
.question {
    padding: 23px 0;
}
.answer {
    border-top: 2px solid #FF9914;
    padding: 23px 0;
    display: none;
}
.qa-toggle-button,
.qa-toggle-button-on {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: #02B2A8;
    position: relative;
}
.qa-toggle-button::before {
    content: "";
    width: 16px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
}
.qa-toggle-button-on::after {
    content: "";
    width: 2px;
    height: 16px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
}

@media screen and (max-width :1280px){
    
}
@media screen and (max-width :768px){
    #qa .inner {
        padding: 40px 20px;
        width: 100%;
    }
    #qa h2 {
        margin-bottom: 45px;
    }
    .qa-content {
        padding: 0 15px;
    }
    .question {
        padding: 15px 0;
    }
    .answer {
        padding: 15px 0;
    }
    .qa-content h3 {
        font-size: 30px;
    }
    .qa-content h4 {
        font-size: 16px;
    }
    .qa-toggle-button {
        scale: 0.8;
        min-width: 40px;
    }
}
/* -------------------
フッター
------------------- */
footer {
    padding-top: 100px;
    width: 100%;
}
.cv-message {
    gap: 20px;
    margin-bottom: 40px;
}
.cv-message h2 {
    font-size: 30px;
    width: 576px;
    margin: 0 20px;
    border-bottom: none;
    color: #027872;
}
.cv-message::before {
    content: "";
    display: block;
    width: 5px;
    height: 125px;
    background-color: #027872;
    transform: rotate(-26deg);
}
.cv-message::after {
    content: "";
    display: block;
    width: 5px;
    height: 125px;
    background-color: #027872;
    transform: rotate(26deg);
}
.footer-copyright {
    width: 100%;
    margin-top: 90px;
    padding: 25px 30px;
}
.ft-link {
    font-size: 18px;
    gap: 30px;
}
.copyright {
    font-size: 14px;
}
@media screen and (max-width :768px){
    footer {
        padding-top: 40px;
    }
    .cv-message {
        gap: 20px;
        margin-bottom: 30px;
    }
    .cv-message h2 {
        font-size: 18px;
        width: 250px;
        margin: 0;
    }
    .cv-message::before,
    .cv-message::after {
        height: 100px;
    }
    .footer-copyright {
        width: 100%;
        margin-top: 50px;
        padding: 15px 20px;
        flex-direction: column;
    }
    .ft-link {
        font-size: 16px;
        justify-content: center;
        margin-bottom: 20px;
    }
    .copyright {
        font-size: 12px;
        text-align: center;
    }
}
/* -------------------
フェイドイン
------------------- */
.fade-element {
    opacity: 0;
}
.fadeIn {
    animation: fadeInUp 0.3s ease-in;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* -------------------
お問い合わせフォーム
------------------- */
.row {
    margin-right: 0;
    margin-left: 0;
}
.row>* {
    padding: 0;
}
.contact-wrapper {
    max-width: 750px;
    min-height: 100vh;
    padding: 50px 5%;
    position: relative;
}
.contact-wrapper .h2 {
    margin-bottom: 70px;
}
.contact-wrapper .contact-btn {
    margin: 70px auto 20px;
    color: #fff;
}
.contact-wrapper .col-12 {
    padding: 0 !important;
}
.col-form-label {
    margin-bottom: 5px;
    margin-bottom: 5px;
}
.contact-footer {
    padding-top: 0;
}
.contact-footer .footer-copyright {
    margin-top: 0;
}

.form-group {
    margin-bottom: 30px;
    padding: 0;
}
.cr-text {
    font-size: 12px;
    color: #dddddd;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}
.aute-addr {
    background-color: #000000;
    color: #fff;
}
.aute-addr:hover {
    background-color: #585858;
    color: #fff;
}
.alert-warning {
    background-color: transparent;
    border: none;
}
.alert-danger {
    padding: 5px;
    margin-top: 10px;
}
.conform-row {
    margin-bottom: 60px;
    border-bottom: 1px solid #000;
}
.conform-row .col-form-label {
    margin-bottom: 10px;
    color: #b7b7b7;
}

.flow-contact {
    position: fixed;
    height: 120px;
    bottom: 77px;
    right: 0;
    border-radius: 20px 0 0 20px;
    font-size: 16px;
    width: auto;
    padding: 0 20px;
    z-index: 5;
}

.flow-contact p{
    font-size: 16px;
}
@media screen and (max-width :1080px){
    .flow-contact {
        display: none !important;
    }
}