@charset "UTF-8";
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);

html {
    font-size: 100%;
}

body {
    color: #333;
    background-color: #f5f4f0;
    font-family: "Noto Sans JP", "游ゴシック体", "YuGothic", "游ゴシック Medium",
        "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    letter-spacing: 0.1rem;
}

a {
    color: #333;
    text-decoration: none;
}

img {
    width: 100%;
    vertical-align: bottom;
}

li {
    list-style: none;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2%;
}

section {
    margin-bottom: 100px;
    position: relative;
}

.section_title {
    text-align: center;
    position: relative;
}

.section_main_title {
    font-size: 2rem;
    margin-bottom: 50px;
}

.section_sub_title {
    width: 300px;
    text-align: center;
    display: flex;
    align-items: flex-end;
    margin: 0 auto;

}

.section_sub_title img {
    width: 100px;
}

.section_sub_title span {
    margin-bottom: -5px;
    margin-left: 5px;
}

.fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s;
}


/*==================================
ヘッダー
==================================*/
header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header_logo img {
    width: 120px;
}

/* ヘッダーメニュー */
.header_navi ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header_menu li:hover {
    opacity: 0.6;
    transition: 0.3s;
}

.header_menu li a {
    font-size: 0.875rem;
    line-height: 80px;
}

/* ヘッダーメニュー お問い合わせボタン*/
.header_contact_btn a {
    font-size: 1rem;
    line-height: 52px;
    background: #F59E0B;
    border-radius: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 260px;
    height: 52px;
    padding: 10px 36px;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

.header_contact_btn a:hover {
    scale: 1.05;
}

.mail_icon--orange {
    margin-right: 10px;
    font-size: 24px;
    line-height: 52px;
}

/*==================================
ハンバーガーメニュー
==================================*/
.hmb {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    cursor: pointer;
    z-index: 1000;
    display: none;
    transition: .5s;
}

.hmb.hide {
    transform: translateY(-500%);
}

.hmb span {
    width: 40px;
    height: 4px;
    background-color: #009C6F;
    border-radius: 5px;
    position: absolute;
    transition: 0.5s;
}

.hmb span:first-child {
    top: 25%;
}

.hmb span:nth-child(2) {
    top: 50%;
}

.hmb span:last-child {
    top: 75%;
}

.open .hmb span {
    background-color: #009C6F;
}

.open .hmb span:first-child {
    top: 50%;
    transform: rotate(-45deg);
}

.open .hmb span:nth-child(2) {
    opacity: 0;
}

.open .hmb span:last-child {
    top: 50%;
    transform: rotate(45deg)
}

#sp-navi {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 70%;
    color: #333;
    padding: 50px 0px;
    background-color: #f5f4f0;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 0.5s;
    opacity: 0;
    z-index: 999;
}

.open #sp-navi {
    width: 100%;
    right: 0;
    opacity: 1;
}

#sp-navi .nav-menu {
    margin-bottom: 30px;
    padding: 0 2%;
    text-align: center;
}

#sp-navi ul.nav-menu li {
    display: block;
    margin-bottom: 20px;
}

#sp-navi ul.nav-menu li a {
    display: inline-block;
    height: 40px;
    color: #333;
    transition: .3s;
}

#sp-navi ul.nav-menu li a:hover {
    font-weight: bold;
    color: #009C6F;
}


/* スマホナビ内お問い合わせボタン */
.spnavi_contact_btn {
    width: 80%;
    text-align: center;
    margin: 50px auto 0;
}

.spnavi_contact_btn p {
    margin-bottom: 5px;
    font-weight: 600;
    color: #F59E0B;
    letter-spacing: 0.04rem;
    display: inline-block;
    position: relative;
}

.spnavi_contact_btn p:before,
.spnavi_contact_btn p:after {
    display: inline-block;
    position: absolute;
    top: 45%;
    width: 20px;
    height: 3px;
    border-radius: 5px;
    background-color: #F59E0B;
    content: "";
}

.spnavi_contact_btn p:before {
    left: -30px;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
}

.spnavi_contact_btn p:after {
    right: -30px;
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
}

.spnavi_contact_btn a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    padding: 16px 25px;
    color: #FFF;
    font-size: 1rem;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: rgb(241, 197, 58);
    background: linear-gradient(347deg, rgba(241, 197, 58, 1) 0%, rgba(245, 158, 11, 1) 100%);
    filter: drop-shadow(0px 2px 4px #ccc);
    border-radius: 50px;
}

.spnavi_contact_btn a span {
    margin-right: 0.5rem;
}

.spnavi_contact_btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}

.spnavi_contact_btn a:after {
    position: absolute;
    top: 50%;
    right: 10px;
    transition: 0.2s ease-in-out;
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-size: 1.5rem;
    line-height: 40px;
    color: #F59E0B;
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 900;
    transform: translateY(-54%);
    z-index: 2;
}

/*==================================
トップへ戻るボタン
==================================*/
.return {
    display: inline-block;
    text-align: center;
    width: 40px;
    height: 40px;
    border-right: 6px solid #009C6F;
    border-bottom: 6px solid #009C6F;
    transform: rotate(-135deg);
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    transition: .3s;
}

.return:hover {
    opacity: 0.6;
}

/*==================================
mv
==================================*/
.main_visual_container {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 32%, rgba(223, 234, 235, 1) 70%);
}

.main_visual {
    background-color: #fff;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    height: calc(100dvh - 80px);
    background-image: url(../images/メインビジュアルPC.png);
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
    position: relative;
}

.mainvisual_content {
    width: 50%;
    position: absolute;
    top: 100px;
    left: 10%;
    z-index: 2;
}

.main_visual_mask {
    width: 50%;
    height: 100%;
    background: rgb(255, 255, 255);
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 20%);
    position: absolute;
    top: 0;
    left: 0;
}

.site_title_top {
    font-size: 1.5rem;
    font-weight: bold;
    color: #009C6F;
    margin-bottom: 30px;
}

.site_main_title {
    font-size: 3rem;
    margin-bottom: 30px;
}

.site_title_bottom {
    font-size: 1.5rem;
    font-weight: bold;
}

/* お問い合わせボタン */
.contact_btn--orange {
    width: 500px;
    text-align: center;
    margin-top: 50px;
}

.contact_btn--orange p {
    margin-bottom: 5px;
    font-weight: 600;
    color: #F59E0B;
    letter-spacing: 0.04rem;
    display: inline-block;
    position: relative;
}

.contact_btn--orange p:before,
.contact_btn--orange p:after {
    display: inline-block;
    position: absolute;
    top: 45%;
    width: 20px;
    height: 3px;
    border-radius: 5px;
    background-color: #F59E0B;
    content: "";
}

.contact_btn--orange p:before {
    left: -30px;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
}

.contact_btn--orange p:after {
    right: -30px;
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
}

.contact_btn--orange a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    padding: 16px 25px;
    color: #FFF;
    font-size: 1.25rem;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: rgb(241, 197, 58);
    background: linear-gradient(347deg, rgba(241, 197, 58, 1) 0%, rgba(245, 158, 11, 1) 100%);
    filter: drop-shadow(0px 2px 4px #ccc);
    border-radius: 50px;
}

.contact_btn--orange a span {
    margin-right: 0.5rem;
}

.contact_btn--orange a:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}

.contact_btn--orange a:after {
    position: absolute;
    top: 50%;
    right: 10px;
    transition: 0.2s ease-in-out;
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-size: 1.5rem;
    line-height: 40px;
    color: #F59E0B;
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 900;
    transform: translateY(-54%);
    z-index: 2;
}

/*==================================
お悩み＆課題解決
==================================*/
.introduction {
    padding-top: 100px;
    margin-bottom: 0;
}

.introduction_title {
    font-size: 1.5rem;
}

.introduction_title_top {
    margin-bottom: 10px;
}

.introduction_title--green {
    color: #009C6F;
    font-size: 2rem;
}

/* 3つのお悩み */

.worries_area {
    max-width: 800px;
    margin: 70px auto 100px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.worries_area::before {
    content: '';
    width: 50px;
    height: 50px;
    border-right: 5px solid #333;
    border-bottom: 5px solid #333;
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.worries_img {
    background-color: #ededed;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 50%;
    position: relative;
}

.worries_img img {
    width: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.worries_item_description {
    font-weight: bold;
}

/* プラスが解決します */
.solution_area {
    margin-top: 200px;
    padding-bottom: 50px;
}

.worries_area_title {
    font-size: 1.875rem;
    margin-bottom: 60px;
}

.worries_area_title span {
    color: #009C6F;
    font-size: 2rem;
}

.solution_item_area {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.solution_item {
    text-align: center;
    width: 30%;
    height: 100px;
    background-color: #fff;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    align-items: center;
}

.solution_item_text--free,
.solution_item_img {
    margin-left: auto;
}

.solution_item_text {
    text-align: left;
    font-weight: bold;
    font-size: 1.5rem;
}

.solution_item_text--free {
    font-weight: bold;
    color: #F59E0B;
    font-size: 2rem;
}

.solution_item_img {
    width: 50%;
}

.solution_description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

.solution_imaege_area {
    width: 90%;
    margin: 0 auto;
}

/*==================================
5つの特徴
==================================*/
#service {
    width: 100%;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(233, 252, 243, 1) 57%);
    padding-top: 100px;
    padding-bottom: 50px;
}

.catch .section_main_title span {
    font-size: 3rem;
    color: #F59E0B;
}

.reasons {
    max-width: 1000px;
    margin: 0 auto;
}

/* 特徴1～3 */
.reason_item {
    margin-bottom: 50px;
    padding: 50px 80px;
    background-color: #fff;
    border-radius: 20px;
    position: relative;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}

.reason_number {
    width: 100px;
}

.reason_title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.reason_title h2 {
    text-align: left;
    margin-left: 30px;
}

.reason_title h2 span {
    color: #009C6F;
}

.reason_description {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    text-align: left;
}

.reason_description--reverse {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    text-align: left;
}

.reason_description--reverse,
.reason_description p {
    line-height: 1.8;
}

.reason_description img {
    max-width: 300px;
}

.sp_img {
    display: none;
}

/* 特徴3・4 */
.reason_item_bottom {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

.reason_item--small {
    width: 48%;
    padding: 2% 4%;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}

.reason_title--small {
    display: grid;
    grid-template-columns: 1fr 4fr;
    align-items: center;
}

.reason_title--small img {
    width: 70px;
}

.reason_title--small h2 {
    font-size: 1.25rem;
    text-align: left;
    margin-left: 10px;
}

.reason_description--small p {
    text-align: left;
    line-height: 1.8;
}

/*==================================
 他社との比較
==================================*/
.comparison {
    padding-bottom: 100px;
}

.comparison_description {
    line-height: 1.8;
    font-weight: bold;
    margin-bottom: 60px;
}

/* テーブルここから */
.comparison_table {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    font-weight: bold;
}

th,
td {
    width: 200px;
    padding: 8px;
    text-align: center;
}

th {
    background-color: #f2f2f2;
}

.sample--nocolor {
    background-color: transparent;
}

.sample--navy {
    background-color: #171B4A;
    color: #fff;
}

.plus--orange {
    background-color: #F59E0B;
    color: #fff;
    border: 5px solid #F59E0B;
    box-sizing: content-box;
}

.plus--orangeFirst {
    border-radius: 10px 10px 0 0;
    padding: 20px 0;
}

.comparison_list {
    background-color: #D9D9D9;
    height: 70px;
}

.comparison_table img {
    width: 30px;
}

.border--gray {
    border-bottom: 1px solid #333333;
    color: #333333;
}

.bg--orange {
    background-color: #fce5bd;
    color: #F59E0B;
    font-size: 1.5rem;
    line-height: 1;
    border-right: 6px solid #F59E0B;
    border-left: 6px solid #F59E0B;
}

.bg--orangeLast {
    border-bottom: 6px solid #F59E0B;
    border-radius: 0 0 10px 10px;
}

.bg--orange span {
    font-size: 0.6rem;
}

/*==================================
CTAエリア
==================================*/
.cta {
    
    background-image: url(../images/CTAバックグラウンド.jpeg);
    background-size: cover;
    background-position: top center;
    position: relative;
}

.cta_container {
    max-width: 1400px;
    margin: 0 auto;
    height: 400px;
    position: relative;
}

.cta_contents {
    width: 50%;
    text-align: center;
    z-index: 3;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    color: #fff;
}

.cta_contents h2 {
    font-size: 2.25rem;
    margin-bottom: 50px;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

.cta_mask {
    width: 100%;
    height: 100%;
    background: rgb(241, 197, 58);
    background: linear-gradient(15deg, rgba(241, 197, 58, 1) 26%, rgba(245, 158, 11, 1) 100%);
    opacity: 0.9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.cta_image {
    width: 380px;
    position: absolute;
    bottom: 0;
    right: 14%;
    z-index: 2;
}

.cta_btn--orange {
    width: 500px;
    text-align: center;
    margin: 50px auto 0;
}

.cta_btn--orange p {
    font-size: 1.5rem;
    margin-bottom: 8px;
    margin-left: 10px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.04rem;
    display: inline-block;
    position: relative;
}

.cta_btn--orange p:before,
.cta_btn--orange p:after {
    display: inline-block;
    position: absolute;
    top: 60%;
    width: 30px;
    height: 3px;
    border-radius: 5px;
    background-color: #fff;
    content: "";
}

.cta_btn--orange p:before {
    left: -50px;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
}

.cta_btn--orange p:after {
    right: -35px;
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
}

.cta_btn--orange a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: 74px;
    line-height: 52px;
    padding: 16px 25px;
    color: #F59E0B;
    background-color: #fff;
    font-size: 1.5rem;
    transition: 0.3s ease-in-out;
    font-weight: 600;

    filter: drop-shadow(0px 2px 4px #ccc);
    border-radius: 50px;
}

.cta_btn--orange a span {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.cta_btn--orange a:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}

.cta_btn--orange a::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    transition: 0.2s ease-in-out;
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-size: 1.75rem;
    line-height: 52px;
    color: #fff;
    background-color: #F59E0B;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-weight: 900;
    z-index: 2;
}

/*==================================
ご利用のながれ
==================================*/

.flow_area {
    margin-bottom: 100px;
    padding: 0 4%;
}

.flow_item_area {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.flow_item {
    text-align: center;
    padding: 20px 40px;
    border-radius: 20px;
    background-color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 10px;
    position: relative;
}

.flow_item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    border-style: solid;
    border-width: 30px 0 30px 20px;
    border-color: transparent transparent transparent #fff;
    translate: 100% -50%;
}

.flow_step {
    font-weight: bold;
    color: #009C6F;
}

.flow_step--orange {
    color: #F59E0B;
}

.flow_title {
    font-size: 1.25rem;
}

.flow_text {
    text-align: left;
}

.flow_lastItem_img {
    width: 80px;
    margin: 0 auto;
}

/*==================================
よくあるご質問
==================================*/
.faq {
    padding: 70px 0;
    background-color: #fff;
}

.faq_main_title {
    margin-bottom: 0;
}

.faq_area {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.qa__item {
    padding: 50px 40px;
}

.qa__item:not(:last-child) {
    border-bottom: 1px solid #B2B1B1;
}

.qa__head {
    padding: 26px 0;
    margin-bottom: 30px;
    background-color: #cef0e4;
    border-radius: 50px;
}

.qa__head p {
    font-weight: bold;
    padding-left: 70px;
    position: relative;
}

.qa__head p::before {
    content: '';
    font-size: 1rem;
    line-height: 50px;
    font-weight: bold;
    color: #fff;
    background-color: #009C6F;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
}

.qa__head p::after {
    content: 'Q';
    color: #fff;
    font-size: 1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-56%);
    left: 24px;
    z-index: 2;
}


.qa__body {
    padding: 26px 0;
    border-radius: 50px;
}

.qa__body p {
    padding-left: 70px;
    position: relative;
}

.qa__body p::before {
    content: '';
    font-size: 1rem;
    line-height: 50px;
    font-weight: bold;
    background-color: #fff;
    border: 1px solid #009C6F;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    position: absolute;
    top: 0;
    left: 10px;
}

.qa__body p::after {
    content: 'A';
    color: #009C6F;
    font-size: 1rem;
    position: absolute;
    top: 7px;
    left: 25px;
    z-index: 2;
}

/*==================================
フッター
==================================*/
.footer_area {
    text-align: center;
    padding-bottom: 20px;
}

.footer_navi {
    max-width: 1000px;
    margin: 50px auto;
}

.footer_navi ul {
    display: flex;
    justify-content: center;
}

.footer_navi ul li {
    padding: 10px 30px;
}

.footer_navi ul li:hover {
    opacity: 0.6;
    transition: 0.3s;
}

.footer_navi ul li a {
    font-weight: bold;
}

.footer_navi ul li:not(:last-child) {
    border-right: 1px solid #333;
}

.footer_company {
    margin-bottom: 20px;
}

.footer_logo {
    width: 120px;
    margin-bottom: 10px;
}

.company_name {
    margin-bottom: 10px;
    font-size: 0.875rem;
}

.company_sales {
    font-size: 0.875rem;
}

.company_adress {
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.company_mail_adress:hover {
    opacity: 0.6;
    transition: 0.3s;
}

.footer_name {
    font-size: 0.6rem;
}