@charset  "UTF-8";


/* *{
    outline: 2px solid blue;
  } */

*::before, *::after {
    box-sizing: border-box;
}

:root {  /* 色管理用の変数 */
   --black-color: #000;
   --white-color: #FFF;
   --gray-color: #d9d9d9;
   --primary-color01: #1450A3;
   --primary-color02: #110E65;
   --primary-color03: #337CCF;
   --accent-color01: #FF6C0C;
   --accent-color02: #FFC436;
   --background-color: rgb(255,255,255,0.6)
}
 
:root { /* コンテンツ幅管理用の変数 */
   --content-width-sm: 800px;
   --content-width: 960px;
   --content-width-lg: 1088px;
}

:root { /* z-index管理用の変数 */
     --z-index-back: -1;
     --z-index-default: 1;
     --z-index-header: 100;
     --z-index-menu: 150;
     --z-index-modal: 200;
}

:root { /* フォント管理 */
     --main-font: "Noto Sans JP", sans-serif;
     --sub-font:
}

  /* ---------- base ---------- */
html{
scroll-behavior: smooth;
}

body {
    color: var(--black-color);
    font-size: 16px;
    font-family: var(--main-font);
    line-height: 1.8;
    /* letter-spacing: 0.1em; */
}

  /* クリックした際の青い枠線を削除 */
:focus {
    outline: none;
}

  /* タップした際の青い四角を削除 */
button,span {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}

  /* ---------- utility ---------- */
@media screen and (min-width: 375px) {
   .u_sm-dn {
       display: none;
       }
}

@media screen and (min-width: 1080px) {
   .u_lg-dn {
       display: none;
       }
}

    
  /* ---------- layout ---------- */
.l_container-sm,
.l_container,
.l_container-lg {
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}

.l_container-sm {
    max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
    max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
    max-width: calc(var(--content-width-lg) + 32px);
}

@media screen and (min-width: 1080px) {
    .l_container {
        padding: 0 80px;
    }
}

.l_contents {
    padding: 48px 0;
}

@media screen and (min-width: 780px) {
    .l_contents {
        padding: 64px 0;
    }
}

@media screen and (min-width: 1080px) {
    .l_contents {
        padding: 80px 0;
    }
}

  /* ---------- .layout ---------- */
.l_header {
    position: relative;
    background: linear-gradient(180deg, var(--primary-color03) 0%, var(--primary-color01) 60%, var(--primary-color02) 100%);
    padding-bottom: 48px;
}

@media screen and (min-width: 780px) {
    .l_header {
        padding-bottom: 64px;
    }
}

.l_header_img {
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
    object-fit: cover;
    object-position: 5%;
    height: 520px;
    width: 100%;

}

@media screen and (min-width: 780px) {
    .l_header_img {
        object-position: top 10%;
        height: 920px;
    }
}

.l_header_box {
    position: absolute;
    top: 35%;
    right: 3%;
}

@media screen and (min-width: 780px) {
    .l_header_box {
        top: 40%;
        right: 10%;
    }
}

@media screen and (min-width: 1080px) {
    .l_header_box {
        top: 15%;
        right: 5%;
    }
}

.l_header_sub-title {
    font-size: 18px;
    font-weight: bold;
    background-color: var(--background-color);
    margin-bottom: 16px;
    box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
    box-shadow: 2px 4px 4px rgba(222, 222, 222, 0.6);
}

@media screen and (min-width: 780px) {
    .l_header_sub-title {
        font-size: 28px;
    }
}

@media screen and (min-width: 1080px) {
    .l_header_sub-title {
        font-size: 36px;
    }
}

.l_header_title {
    display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color01);
    letter-spacing: 0.1em;
    line-height: 2;
    padding: .1em .2em;
    background-color: var(--white-color);
    box-shadow: 2px 4px 4px rgba(222, 222, 222, 0.6);

}

@media screen and (min-width: 780px) {
    .l_header_title {
        font-size: 44px;
    }
}

@media screen and (min-width: 1080px) {
    .l_header_title {
        font-size: 56px;
    }
}

.l_header_cta {
    width: 100%;
}

.l_header_cta-wrap {
    margin-top: 104px;
}

@media screen and (min-width: 780px) {
    .l_header_cta-wrap {
        margin-top: 88px;
    }
}


@media screen and (min-width: 1080px) {
    .l_header_cta-wrap {
        margin-top: 40px;
    }
}   

.l_header_cta-desc {
    font-size: 26px;
    font-weight: bold;
    color: var(--white-color);
    text-align: center;
}

@media screen and (min-width: 780px) {
    .l_header_cta-desc {
        font-size: 36px;
    }
}

@media screen and (min-width: 1080px) {
    .l_header_cta-desc {
        font-size: 44px;
    }
}

.l_header_cta-sub-desc {
    color: var(--white-color);
    text-align: center;
    margin-top: 24px;
}

@media screen and (min-width: 780px) {
    .l_header_cta-sub-desc {
        font-size: 20px;
        margin-top: 32px;
    }
}

@media screen and (min-width: 1080px) {
    .l_header_cta-sub-desc {
        font-size: 28px;
    }
}

/* footer */
.l_footer {
    width: 100%;
    background-color: var(--white-color);
    padding: 28px 0;
    margin: 0 auto;
}

.l_footer_copy {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

@media screen and (min-width: 1080px) {
    .l_footer_copy {
        font-size: 14px;
    }
}



/* ---------- .module ---------- */
.m_section_title {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color02);
    text-align: center;
    line-height: 1.6;
    position: relative;
}

@media screen and (min-width: 780px) {
    .m_section_title {
        font-size: 32px;
    }
}

@media screen and (min-width: 1080px) {
    .m_section_title {
        font-size: 40px;
    }
}

.m_section_title::before,
.m_section_title::after {
    content: "";
    width:  80%;
    max-width: 300px;
    height: 1px;
    border: 1px solid var(--primary-color02);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}


@media screen and (min-width: 1080px) {
    .m_section_title::before,
    .m_section_title::after {
        max-width: 400px;
    }
}

.m_section_title::before {
    top: -20%;
}

.m_section_title::after {
    bottom: -20%;
}


.m_title__small {
    font-size: 20px;
}

@media screen and (min-width: 780px) {
    .m_title__small {
        font-size: 26px;
    }
}

@media screen and (min-width: 1080px) {
    .m_title__small {
        font-size: 30px;
    }
}

.m_title_deco {
    color: var(--accent-color01);
}

.m_title_deco__soft {
    color: var(--accent-color02);
}

@media screen and (min-width: 1080px) {
    .m_br_sp {
        display: none;
    }
}

.m_button {
    width: 300px;
    padding: 8px 0;
    color: var(--white-color);
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(90deg, var(--accent-color01), var(--accent-color02));
    border: 1px solid var(--white-color);
    border-radius: 50px;
    margin: 40px auto 0;
    display: block;
    z-index: var(--z-index-default);
    transition: .2s;
    position: relative;
    -webkit-animation: glow-reverse 2s ease-in-out infinite alternate;
    animation: glow-reverse 2s ease-in-out infinite alternate;
}

@media screen and (min-width: 1080px) {
    .m_button {
        width: 360px;
        font-size: 24px;
        padding: 16px 0;
        margin-top: 56px;
    }
}

/* 
.m_button .m_cta_button {
    position: relative;
    -webkit-animation: glow-reverse 2s ease-in-out infinite alternate;
            animation: glow-reverse 2s ease-in-out infinite alternate;
  }
   */
.m_button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: fit-content;
    border-radius: 50px;
    z-index: -1;
    background: inherit;
    -webkit-box-shadow: 0 0 1.5em var(--background-color), 0 0 1em rgba(255, 196, 54, 0.5) inset;
    box-shadow: 0 0 1.5em var(--background-color), 0 0 1em rgba(255, 196, 54, 0.5) inset;
    -webkit-animation: glow 2s ease-in-out infinite alternate;
    animation: glow 2s ease-in-out infinite alternate;
  }
   
@-webkit-keyframes glow {
0% {
    opacity: 0;
}
50% {
    opacity: 1;
}
100% {
    opacity: 0;
}
}
@keyframes glow {
0% {
    opacity: 0;
}
50% {
    opacity: 1;
}
100% {
    opacity: 0;
}
}
@-webkit-keyframes glow-reverse {
0% {
    opacity: 1;
}
50% {
    opacity: 0.8;
}
100% {
    opacity: 1;
}
}
@keyframes glow-reverse {
0% {
    opacity: 1;
}
50% {
    opacity: 0.8;
}
100% {
    opacity: 1;
}
}



.m_cta_button {
    display: inline-block;
    height: 100%;
}

.m_cta_button__arrow {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-width: 2px;
    border-style: solid solid none none;
    border-color: var(--white-color);
    top: 50%;
    right: 32px;
    transform: translateX(80%) rotate(45deg);
}

.m_section {
    width: 100%;
}

.m_section__annoy {
    background: linear-gradient(180deg, #7f7f7f, #484848);
    color: var(--white-color);
    clip-path: polygon(100% 0, 100% 93%, 50% 100%, 0 93%, 0 0);
}

@media screen and (min-width: 1080px) {
    .m_section__annoy {
        clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
        padding-bottom: 96px;
    }
}


.m_section__result {
    background-color: #A6D0FF;
    line-height: 1.5;
}

.m_section__voice {
    background-color: #FFE29C;
}

.m_section_cta {
    background: linear-gradient(180deg, var(--primary-color03) 0%, var(--primary-color01) 50%, var(--primary-color02) 100%);
}

/* ---------- .annoy ---------- */
.annoy_title {
    font-size: 22px;
    font-weight: bold;
    text-shadow: 0 2px 2px var(--black-color);
    text-align: center;
}

@media screen and (min-width: 780px) {
    .annoy_title {
        font-size: 30px;
    }
}

@media screen and (min-width: 1080px) {
    .annoy_title {
        font-size: 40px;
    }
}

.annoy_wrap {
    margin-top: 40px;
}

@media screen and (min-width: 640px) {
    .annoy_wrap {
        padding: 0 36px;
    }
}

@media screen and (min-width: 780px) {
    .annoy_wrap {
        padding: 0 64px;
    }
}

.annoy_list {
    display: flex;
    flex-direction: column;
}

.annoy_item {
    display: flex;
    align-items: center;
    margin-top: 16px;
}

@media screen and (min-width: 1080px) {
.annoy_item {
        margin-top: 24px;
    }
}

.annoy_square {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
    display: inline-block;
    border: 1px solid var(--white-color);
}

.annoy_text {
    margin-left: 24px;
    line-height: 1.4;
}

@media screen and (min-width: 780px) {
    .annoy_text {
        font-size: 22px;
    }
}

@media screen and (min-width: 1080px) {
    .annoy_text {
        font-size: 28px;
    }
}

.annoy_cmt {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 2px var(--black-color);
    text-align: center;
    margin-top: 40px;
}

@media screen and (min-width: 780px) {
    .annoy_cmt {
        font-size: 24px;
        margin-top: 56px;
    }
}

@media screen and (min-width: 1080px) {
    .annoy_cmt {
        font-size: 32px;
        margin-top: 72px;
    }
}

.annoy_cmt__strong {
    font-size: 22px;
}

@media screen and (min-width: 780px) {
    .annoy_cmt__strong {
        font-size: 30px;
    }
}

@media screen and (min-width: 1080px) {
    .annoy_cmt__strong {
        font-size: 36px;
    }
}

/* ---------- .provide ---------- */
/* @media screen and (min-width: 1080px) {
    .provide_box {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
} */

.provide_container {
    width: 100%;
    max-width: 440px;
    margin: 40px auto 0;
}

@media screen and (min-width: 1080px) {
    .provide_container {
        max-width: none;
        margin-top: 64px;
    }
}

.provide_container:first-child {
    margin-top: 48px;
}


.provide_wrap {
    width: 100%;
}

@media screen and (min-width: 1080px) {
    .provide_wrap {
        display: flex;
        gap: 24px;
    }
}

@media screen and (min-width: 1080px) {
    .provide_wrap__reverse {
        flex-direction: row-reverse;
    }
}

.provide_title-box {
    display: flex;
    align-items: center;
}

.provide_number {
    font-size: 40px;
    font-weight: bold;
    font-style: italic;
    color: var(--primary-color03);
}

@media screen and (min-width: 780px) {
    .provide_number {
        font-size: 44px;
    }
}

@media screen and (min-width: 1080px) {
    .provide_number {
        font-size: 48px;
    }
}

.provide_title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color03);
    margin-left: 16px;
}

@media screen and (min-width: 780px) {
    .provide_title {
        font-size: 28px;
    }
}

@media screen and (min-width: 1080px) {
    .provide_title {
        font-size: 32px;
    }
}

.provide_txt {
    font-size: 14px;
    margin-top: 8px;
}

@media screen and (min-width: 780px) {
    .provide_txt {
        font-size: 18px;
    }
}

.provide_img {
    width: 80%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    margin: 16px auto 0;
    display: block;
}

@media screen and (min-width: 1080px) {
    .provide_img {
        width: calc(100% / 1.9);
    }
}



/* ---------- .result ---------- */
.result_title {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
}

@media screen and (min-width: 780px) {
    .result_title {
        font-size: 32px;
    }
}

@media screen and (min-width: 1080px) {
    .result_title {
        font-size: 40px;
    }
}

.result_review-wrap {
    position: relative;
}

.result_review-wrap::before {
    content: "";
    border-width: 30px;
    border-style: solid;
    border-color: var(--primary-color03) transparent transparent transparent;
    /* relative入れてね */
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -2%);
}

@media screen and (min-width: 1080px) {
    .result_review-wrap::before {
        border-width: 40px;
    }
}


.result_review {
    width: 275px;
    background: linear-gradient(90deg, var(--primary-color03) 65%, var(--primary-color01));
    border-radius: 20px;
    margin: 24px auto 16px;
    padding: 16px 8px;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 780px) {
    .result_review {
        width: 320px;
        margin: 40px auto 24px;
    }
}

@media screen and (min-width: 1080px) {
    .result_review {
        width: 780px;
        padding: 24px 16px;
        margin-top: 64px;
    }
}

.result_review::after {
	animation: 3s 2s shine linear infinite;
	background: linear-gradient(to right, rgba(255,255,255,0) 25%, rgba(255,255,255,.6) 50%, rgba(255, 255, 255, 0) 75%);
	content: '';
    width: 100%;
	height: 100%;
	left: -100%;
	position: absolute;
	top: 0;
	transform: skewX(-15deg);
    
}

@keyframes shine {
	20% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}

.result_review-text {
    font-size: 22px;
    color: var(--white-color);
    text-align: center;
}

@media screen and (min-width: 780px) {
    .result_review-text {
        font-size: 24px;
    }
}

@media screen and (min-width: 1080px) {
    .result_review-text {
        font-size: 32px;
    }
}

.result_strong {
    font-size: 24px;
    font-weight: bold;
}

@media screen and (min-width: 780px) {
    .result_strong {
        font-size: 28px;
    }
}

@media screen and (min-width: 1080px) {
    .result_strong {
        font-size: 36px;
    }
}

.result_text {
    text-align: center;
    margin-top: 54px;
}

@media screen and (min-width: 780px) {
    .result_text {
        margin-top: 64px;
    }
}

@media screen and (min-width: 1080px) {
    .result_text {
        margin-top: 80px;
    }
}

@media screen and (min-width: 780px) {
    .result_text__but {
        font-size: 20px;
    }
}

@media screen and (min-width: 1080px) {
    .result_text__but {
        font-size: 26px;
    }
}

.result_text__arrange {
    font-size: 18px;
    margin-top: 24px;
}


.result_text__do {
    font-size: 18px;
    font-weight: bold;
    margin-top: 24px;
}
    
@media screen and (min-width: 780px) {
    .result_text__arrange,
    .result_text__do {
        font-size: 24px;
    }
}

@media screen and (min-width: 1080px) {
    .result_text__arrange,
    .result_text__do {
        font-size: 28px;
        margin-top: 56px;

    }
}


/* ---------- .voice ---------- */
.voice_desc {
    font-size: 18px;
    margin-top: 40px;
    text-align: center;
    line-height: 1.4;
}

@media screen and (min-width: 780px) {
    .voice_desc {
        font-size: 22px;
    }
}

@media screen and (min-width: 1080px) {
    .voice_desc {
        font-size: 24px;
        margin-top: 56px;
    }
}

.voice_container {
    width: 100%;
    margin: 40px auto 0;
    display: flex;
    gap: 16px 6px;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
}

@media screen and (min-width: 496px) {
    .voice_container {
        width: 80%;
        gap: 16px 16px;
    }
}

@media screen and (min-width: 700px) {
    .voice_container {
        width: 70%;
        gap: 24px 24px;
    }
}

@media screen and (min-width: 780px) {
    .voice_container {
        width: 100%;
        gap: 16px 16px;
        margin-top: 56px;

    }
}

.voice_box {
    width: 100%;
    max-width: 168px;
    background-color: var(--white-color);
    opacity: 0;
    position: relative;
    bottom: -300px;
    transition: all 1.2s ease-in-out;
}


.voice_box.active {
    opacity: 1;
    bottom: 0;
}

.voice_title-box {
    width: 100%;
    background-color: var(--primary-color03);
    color: var(--white-color);
    padding: 8px;
}

.voice_title {
    font-size: 12px;
    text-align: center;
}

.voice_person {
    font-size: 9px;
    text-align: right;
    margin-top: 8px;
}

.voice_text {
    font-size: 10px;
    padding: 16px 8px;
}



/* ---------- .faq ---------- */
.faq_container {
    width: 100%;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 496px) {
    .faq_container {
        width: 80%;
        margin-top: 56px;
    }
}

@media screen and (min-width: 780px) {
    .faq_container {
        width: 70%;
        margin-top: 64px;
    }
}



.faq_box {
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--gray-color);
}

.faq_box:not(:first-child) {
    margin-top: 16px;
}

.faq_box__q,
.faq_box__a {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.faq_box__a {
    margin-top: 16px;
    margin-bottom: 16px;
}

@media screen and (min-width: 1080px) {
    .faq_box__a {
        margin-top: 24px;
    }
}

.faq_square {
    width: 36px;
    height: 36px;
    border-radius: 5px;
    aspect-ratio: 1/1;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width: 1080px) {
    .faq_square {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

.faq_q {
    background-color: var(--accent-color01);
}

.faq_a {
    background-color: var(--accent-color02);
}

.faq_text__q {
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 4px 0;
}

@media screen and (min-width: 1080px) {
    .faq_text__q {
        font-size: 18px;
    }
}

.faq_text__a {
    font-size: 12px;
}

@media screen and (min-width: 1080px) {
    .faq_text__a {
        font-size: 16px;
    }
}

/* ---------- .cta ---------- */
.cta_title {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color: var(--white-color);
}

@media screen and (min-width: 780px) {
    .cta_title {
        font-size: 36px;
    }
}

@media screen and (min-width: 1080px) {
    .cta_title {
        font-size: 40px;
    }
}

.cta_text {
    color: var(--white-color);
    text-align: center;
    width: 90%;
    margin: 28px auto 0;
}

@media screen and (min-width: 1080px) {
    .cta_text {
        margin-top: 40px;
    }
}


.cta_text__project {
    font-size: 14px;
    font-weight: bold;
}

.cta_text__strong {
    font-size: 16px;
}

@media screen and (min-width: 780px) {
    .cta_text__strong {
        font-size: 20px;
    }
}
@media screen and (min-width: 1080px) {
    .cta_text__strong {
        font-size: 28px;
    }
}

@media screen and (min-width: 780px) {
    .cta_text__project,
    .cta_text__start {
        font-size: 20px;
    }
}


@media screen and (min-width: 1080px) {
    .cta_text__project,
    .cta_text__start {
        font-size: 24px;

    }
}

.cta_text__next {
    font-size: 20px;
    font-weight: bold;
}

@media screen and (min-width: 780px) {
    .cta_text__next {
        font-size: 26px;
    }
}

@media screen and (min-width: 1080px) {
    .cta_text__next {
        font-size: 32px;
    }
}


/*  上に戻るボタン　 */
.return_top {
	background-color: var(--background-color);
	color: var(--primary-color02);
	text-decoration: none;
	position: fixed;
	right: 20px;
	bottom: 30px;
	width: 40px;
	height: 40px;
	border: solid thin;
	border-radius: 50%;
    border-color: var(--primary-color02);
	display: grid;
	justify-content: center;
	align-content: center;
	transform: rotate(-90deg);
	transition: .5s;
    cursor: pointer;
	/*普段は隠しておく*/
	opacity: 0;
	visibility: hidden;
}

/* .return_top:hover {
    box-shadow: 0 0 10px var(--primary-color03);
} */

.return_top.active {
	/*activeが付いたら表示*/
	opacity: 1;
	visibility: visible;
    pointer-events: auto;
}