@charset "UTF-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-style: normal;
	/* vertical-align: baseline; */
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input[type="text"],
input[type="password"],
textarea,
select,*:focus {
	outline: none;
}

/* noto-sans-jp-regular - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url('../font/noto-sans-jp-v54-japanese-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url('../font/noto-sans-jp-v54-japanese-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/*====================================================
////id |  common
====================================================*/

html{
	font-size: 10px;
	font-size: 62.5%;
	width: 100%;
	max-width: 100vw;
}

:root {
    --blue: #1d61b7;
    --l_blue: #78c0e3;
    --yellow: #ffec26;
    --l_gray: #f2f2f2;
}

body {
	background: #ffffff;
    font-family: "Noto Sans JP","Yu Gothic", "游ゴシック Medium", "YuGothic", 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    font-size: min(4vw, 1.6rem);
	position: relative;
	width: 100%;
	height: auto;
}
* {
	box-sizing: border-box;
	min-height:0;
	min-width : 0;
}

section {
	position: relative;
	max-width: 100vw;
	z-index: 2;
}
a {
	display: inline-block;
	color: inherit;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	cursor: pointer;
	outline:none;
	position: relative;
	text-decoration: none;
	transition: 0.3s ease-in-out;
}

img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	display: block;
	/* margin: auto; */
}

/*====================================================
////id |  contents-wrapper
====================================================*/
.contents-wrapper {
    background-color: var(--l_blue);
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
    #menu {
        width: 0;
    }
}

@media screen and (max-width: 600px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
    .contents-wrapper {
        display: flex;
            align-items: stretch;
            flex-direction: row-reverse;
            gap: 4vw;
    }
    #menu {
        width: 280px;
    }
    #pc-wrapper {
        flex: 1;
    }
}
@media screen and (min-width:769px) and (max-width:960px) {
    .contents-wrapper {
        gap: 0;
    }
}


@media (hover: hover) {}

/*====================================================
////id menu
====================================================*/
#menu {
    background-color: var(--blue);
}
.menu-inner {
    color: #fff;
    display: flex;
        align-items: center;
        justify-content: center;
    position: fixed;
        top: 0;
        right: 0;
    width: 280px;
    height: 100%;
}
.menu-wrapper {
    display: grid;
        grid-gap: 1em;
        place-items: center;
    font-size: 1.2em;
    font-weight: 700;
}
.menu-wrapper li {
    position: relative;
}
.menu-wrapper li::after {
    background-color: currentColor;
    border-radius: 100%;
    content: '';
    display: block;
    margin: auto;
    position: absolute;
        left: 0;
        right: 0;
        bottom: -.6em;
    width: .2em;
    height: .2em;
}
.menu-wrapper li:last-child:after {
    display: none;
}
.menu-wrapper a {
    display: inline-block;
    padding: .3em 0;
    position: relative;
}
.menu-wrapper a::after {
    border-bottom: solid 1px var(--yellow);
    content: '';
    display: block;
    margin: auto;
    position: absolute;
        bottom: 0;
        right: 0;
    transition: .3s;
    width: 0;
    height: 0;
}
@media screen and (max-width: 769px) {
    #menu {
        display: none;
    }
}

@media (hover: hover) {
    .menu-wrapper a:hover::after {
        left: 0;
        right: auto;
        width: 100%;
    }
}

/*====================================================
////id |  pc-wrapper
====================================================*/
#pc-wrapper {
    display: flex;
        justify-content: space-evenly;
}
#pc-left {
    display: flex;
        align-items: center;
        justify-content: center;
    padding: 0 30px;
    position: sticky;
        top: 0;
        left: 0;
    height: 100vh;
}
.pc-left-inner {
    display: grid;
        grid-gap: 40px 0;
    width: min(100%, 400px);
}
.pc-left-logo {
    margin-left: 3%;
    width: 80%;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 1080px) {
    #pc-left {
        display: none;
    }
}
@media screen and (max-width: 600px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 1080px) {
}

@media (hover: hover) {}

/*====================================================
////id |  main
====================================================*/
.main-inner {
    background-color: #fff;
    overflow: hidden;
}

.cta {
    overflow: hidden;
    padding: 25px 0;
}
.cta_btn {
    animation: ctaPulse 1.8s ease-in-out infinite;
    display: inline-block;
    transition: .3s;
}
@keyframes ctaPulse {
    0% {
        transform: scale(1);
    }
    12% {
        transform: scale(1.025);
    }
    22% {
        transform: scale(1);
    }
    38% {
        transform: scale(1);
    }
    46% {
        transform: scale(1.04);
    }
    56% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 600px) {
    #main {
        padding: 30px 0;
        width: 390px;
        min-width: 390px;
    }
    .main-inner {
        border: solid 2px #fff;
        border-radius: 20px;
        margin: 0 auto;
        overflow: hidden;
    }
}

@media (hover: hover) {
    .cta_btn:hover {
        animation: none;
        filter: brightness(1.2);
        transform: scale(1.03);
    }
}

/*====================================================
////id |  mv
====================================================*/
#mv {
    background: var(--blue) url('../img/mv-bg.webp') no-repeat top center / contain;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), 50% 100%, 0 calc(100% - 25px));
    padding: 25px 0;
}
.mv-logo {
    margin-bottom: 37px;
}
.mv-title {
    margin-bottom: 7px;
}
.price img + img {
    margin-top: 11px;
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 600px) {
}

@media (hover: hover) {}

/*====================================================
////id |  feature
====================================================*/
#feature {
    background-color: var(--l_blue);
    border-radius: 15px 15px 0 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), 50% 100%, 0 calc(100% - 25px));
    margin-bottom: -25px;
    padding: 27px 0 25px;
    position: relative;
    z-index: 5;
}
.feature-point-title {
    margin-top: 20px;
}
.feature-point-3 .feature-point-detail {
    background-color: var(--l_gray);
    position: relative;
}
.feature-point-3 .feature-point-detail::before {
    background: var(--l_blue) url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 780 50"><path fill="%23f2f2f2" d="M390,0c-97.47,0-147.03,5.19-194.95,10.22C147.1,15.24,97.53,20.44,0,20.44v29.56h780v-29.56c-97.53,0-147.1-5.2-195.05-10.22C537.03,5.19,487.47,0,390,0Z" /></svg>') no-repeat top center / cover;
    content: '';
    display: block;
    margin: 0 0 -1px;
    padding-top: 25px;
    width: 100%;
    height: 0;
}
.feature-point-3 .detail-2 {
    padding-top: 10px;
}
.feature-point-3 .detail-3 {
    padding: 10px 0 20px;
}
#feature .price {
    padding-top: 22px;
}

@media (hover: hover) {}

/*====================================================
////id |  survey
====================================================*/
#survey {
    background-color: var(--blue);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), 50% 100%, 0 calc(100% - 25px));
    margin-bottom: -25px;
    padding: 25px 0 30px;
    position: relative;
    z-index: 5;
}
.trouble-head {
    margin-bottom: 15px;
}
.trouble-deco-but {
    display: flex;
        justify-content: center;
    height: 50px;
    margin: 5px auto -25px;
}
.trouble-list {
    background-color: #fff;
}
.survey-deco-check {
    display: flex;
        justify-content: center;
    height: 60px;
    margin: -25px auto -35px;
    position: relative;
    z-index: 5;
}
.survey-data {
    border: solid 10px var(--blue);
    background-color: #fff;
    padding: 30px 0 25px;
}
.survey-data img + img {
    margin-top: 25px;
}
@media screen and (max-width:600px) {
    .trouble-deco-but {
        height: 13vw;
        margin: 5px auto -7.5vw;
    }
    .survey-deco-check {
        height: 15vw;
        margin: -6vw auto -9vw;
    }
    .survey-data {
        padding-top: 7.7vw;
    }
}

@media (hover: hover) {}

/*====================================================
////id |  results
====================================================*/
#results {
    background-color: var(--yellow);
    padding-top: 30px;
}
.results-detail {
    padding: 13px 0;
}
@media (hover: hover) {}

/*====================================================
////id |  voice
====================================================*/
#voice {
    background-color: var(--l_blue);
    padding: 40px 0 10px;
    position: relative;
}
.voice-deco-check {
    display: flex;
        justify-content: center;
    height: 60px;
    margin: auto;
    position: absolute;
        top: -25px;
        left: 0;
        right: 0;
    z-index: 5;
}
.voice-head {
    margin-bottom: 5px;
}
.voice-detail + .voice-detail {
    margin-top: 10px;
}
.voice-comment {
    margin-top: 7px;
}
@media screen and (max-width:600px) {
    #voice {
        padding-top: 10vw;
    }
    .voice-deco-check {
        height: 15vw;
        top: -6vw;
    }
}

@media (hover: hover) {}

/*====================================================
////id |  flow
====================================================*/
#flow {
    background-color: var(--l_blue);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), 50% 100%, 0 calc(100% - 25px));
    margin-bottom: -20px;
    padding: 0 0 30px;
}
.flow-head {
    background-color: var(--blue);
    margin-bottom: 15px;
}
.flow-arrow {
    margin: 8px 0 5px;
}
.flow-message {
    padding: 15px 0;
}
@media (hover: hover) {}

/*====================================================
////id |  commitment
====================================================*/
.commitment-deco-becouse {
    display: flex;
        justify-content: center;
    height: 90px;
    position: relative;
    z-index: 10;
}
.commitment-item-wrapper {
    background-color: var(--yellow);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), 50% 100%, 0 calc(100% - 25px));
    display: grid;
        grid-gap: 30px;
    margin-top: -20px;
    padding: 20px 0 40px;
}
.commitment-2 {
    margin-top: 10px;
}
.commitment-detail-item {
    margin: 12px auto 0;
    position: relative;
    width: 78%;
    z-index: 5;
}
.commitment-detail-item::before {
    background: url('../img/commitment-bg.png') top right;
    background-size: 15px auto;
    border-radius: 15px;
    content: '';
    display: block;
    margin: auto;
    position: absolute;
        top: 3px;
        left: 4px;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.commitment-detail-item-inner {
    border: solid 4px #fff;
    border-radius: 15px;
    overflow: hidden;
}
video {
    display: block;
    width: 100%;
}
@media screen and (max-width:600px) {
    .commitment-deco-becouse {
        height: 23vw;
    }
    .commitment-item-wrapper {
        margin-top: -5vw;
        padding-top: 5vw;
    }
}

@media (hover: hover) {}

/*====================================================
////id |  usability
====================================================*/
#usability {
    background-color: #c3a532;
}
.usability-head {
    background-color: #fff;
    padding: 18px 0;
}
.usability-detail {
    display: grid;
        grid-gap: 13px;
    padding: 20px 0 25px;
}
@media (hover: hover) {}

/*====================================================
////id |  faq
====================================================*/
.faq-head {
    padding: 25px 0 17px;
}
@media (hover: hover) {}

/*====================================================
////id |  privacy-policy
====================================================*/
.privacy-policy {
    font-size: 12px;
    padding: 40px 0;
    text-align: center;
}
@media (hover: hover) {}

/*====================================================
////id |  xxx
====================================================*/

/* ////////// mobile ////////// */
@media screen and (max-width: 600px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 600px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:600px) and (max-width:960px) {
}

@media (hover: hover) {}
