@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;
}

/*====================================================
////id |  common
====================================================*/

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

:root {
  --black: #000000;
  --white: #ffffff;
  --gold:#caaa2f;
  --gray: #4d4d4d;
  --font: source-han-serif-japanese, serif;
}

body {
  background: var(--white);
  font-family: var(--font);
  font-size: min(4vw, 1.6rem);
  font-weight: 400;
  font-style: normal;
  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 {
  position: relative;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
  #menu {
    width: 0;
  }
}

@media screen and (max-width: 600px) {
  .pc-bg {
    display: none;
  }
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
  .pc-bg {
    position: fixed;
    width: 100vw;
    height: 100%;
    z-index: -1;
    filter: brightness(1.2);
  }
  .pc-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .contents-wrapper {
    display: flex;
    align-items: stretch;
    flex-direction: row-reverse;
    gap: 4vw;
  }
  #pc-cta {
    width: calc((600 / 1920) * 100vw);
  }
  #pc-wrapper {
    flex: 1;
  }
}
@media screen and (min-width: 769px) and (max-width: 960px) {
  .contents-wrapper {
    gap: 0;
  }
}

@media (hover: hover) {
}

/*====================================================
////id menu
====================================================*/
#menu {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 30px;
  position: sticky;
  top: 0;
  left: 0;
  width: calc((930 / 1920) * 100vw);
  height: 100vh;
}
.menu-inner {
  display: grid;
  grid-gap: 40px 0;
  width: min(100%, 800px);
  color: var(--gray);
}
.menu-wrapper {
  display: grid;
  grid-gap: 1em;
  place-items: center;
  font-size: clamp(20px, 2vw, 32px);
  margin-top: 20px;
}
.menu-wrapper li {
  position: relative;
}
.menu-wrapper a {
  display: inline-block;
  padding: 0.3em 0;
  position: relative;
}
.menu-wrapper a::after {
  border-bottom: solid 2px var(--gold);
  content: "";
  display: block;
  margin: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: 0.3s;
  width: 0;
  height: 0;
}
.menu-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pc-logo {
    width: min(100%, 300px);
}
.pc-bar {
    margin-top: 60px;
    width: min(100%, 100px);
}

@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-cta {
}
.pc-cta-inner {
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: calc((600 / 1920) * 100vw);
  height: 100%;
}
.pc-cta + .pc-cta {
  margin-top: 20px;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 1080px) {
  #pc-cta {
    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,
.cta-2 {
  overflow: hidden;
  padding: 0 25px;
}

.cta_btn {
  animation: ctaPulse 1.8s ease-in-out infinite;
  display: inline-block;
  transition: 0.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: url("../img/fv-image.webp") no-repeat top center / cover;
  padding: 15px 0 0 0;
}
.mv-logo {
  width: 60px;
  margin-left: 25px;
  margin-right: auto;
}
.mv-title {
  padding-top: 220px;
  padding-left: 24px;
  padding-right: 24px;
}
#mv .cta {
  margin-top: 40px;
}
/* ////////// PC ////////// */
@media print, screen and (min-width: 600px) {
}

@media (hover: hover) {
}
/*====================================================
////id |  troubles
====================================================*/
#troubles {
  width: 100%;
  background: url("../img/troubles_bg.webp") no-repeat top center / cover;
}
#troubles .cta-2 {
  padding-top: 20px;
}
.troubles-text {
  margin-top: 30px;
  padding: 0 42px 20px;
}

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

@media (hover: hover) {
}

/*====================================================
////id |  answer
====================================================*/
#answer {
  background-color: #efefef;
}
.answer-head {
  display: flex;
  justify-content: center;
  height: 50px;
  margin: -25px auto -20px;
  position: relative;
  z-index: 5;
}

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

@media (hover: hover) {
}

/*====================================================
////id |  future
====================================================*/

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

@media (hover: hover) {
}

/*====================================================
////id |  merit
====================================================*/
#merit {
  margin-top: calc((20 / 375) * -100%);
  margin-bottom: calc((20 / 375) * -100%);
  position: relative;
  z-index: 5;
}

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

@media (hover: hover) {
}

/*====================================================
////id |  voice
====================================================*/
#voice {
  background: url("../img/voice-bg.webp") no-repeat top center / cover;
  padding: 32px 0 0;
}
.voice-head {
  padding: 0 32px 10px 22px;
}

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

@media (hover: hover) {
}

/*====================================================
////id |  worry
====================================================*/
#worry {
  background: url("../img/worry-bg.webp") no-repeat top center / cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), 50% 100%, 0 calc(100% - 25px));
  padding: 32px 0 0;
}
.worry-head {
  padding: 0 80px 0 100px;
}
.worry-detail {
  margin-top: 20px;
}

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

@media (hover: hover) {
}

/*====================================================
////id |  reason
====================================================*/
#reason {
}
.reason-detail-1 {
  position: relative;
}
.reason-video {
  position: absolute;
  top: calc((50 / 375) * 100%);
  right: 0;
  width: calc((304 / 375) * 100%);
  border-radius: 10px 0 0 10px;
}
.reason-video video {
  width: 100%;
  height: auto;
  border-radius: 10px 0 0 10px;
}

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

@media (hover: hover) {
}

/*====================================================
////id |  difference
====================================================*/
#difference {
}
.difference-head {
}
.difference-detail {
}

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

@media (hover: hover) {
}

/*====================================================
////id |  chosen
====================================================*/
#chosen {
}
.chosen-head {
}
.chosen-detail {
}

/*====================================================
////id |  feature
====================================================*/
#feature {
  position: relative;
  background: url("../img/feature-bg.webp") no-repeat top center / cover;
}
.feature-head {
}
.feature-en {
  position: absolute;
  top: 4px;
  left: -18px;
  width: calc((190 / 375) * 100%);
}
.feature-item-3 {
  padding-bottom: 15px;
}
.feature-video {
  width: calc((350 / 375) * 100%);
  border-radius: 10px;
  margin-inline: auto;
}
.feature-video video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/*====================================================
////id |  flow
====================================================*/
#flow {
  position: relative;
  background: url("../img/flow-bg.webp") no-repeat top center / cover;
  padding-bottom: 70px;
}
.flow-head {
}
.flow-en {
  position: absolute;
  top: -22px;
  left: 0;
  width: calc((170 / 375) * 100%);
}
.flow-item-1 {
  position: relative;
}
.flow-item-1 .cta {
  position: absolute;
  top: calc((200 / 375) * 100%);
  left: 0;
  padding: 0 20px;
}
/* ////////// PC ////////// */
@media print, screen and (min-width: 600px) {
}

@media (hover: hover) {
}

/*====================================================
////id |  cta-htp
====================================================*/
#cta-htp {
  padding: 0 25px 0;
}
#cta-htp .cta-2-2 {
    transform: translateY(-50%);

}
/*====================================================
////id |  message
====================================================*/
#message {
  /* margin-top: 20px; */
}
.message-head {
}

/*====================================================
////id |  review
====================================================*/
#review {
}
.review-head {
}

/*====================================================
////id |  wish
====================================================*/
#wish {
  position: relative;
  z-index: 5;
}
.wish-head {
}
.wish-detail {
  margin-top: 10px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), 50% 100%, 0 calc(100% - 25px));
}

/*====================================================
////id |  strength
====================================================*/
#strength {
  background: url("../img/strength-bg.webp") no-repeat top center / cover;
  margin-top: -25px;
}
.strength-head {
}

/*====================================================
////id |  contact
====================================================*/
#contact {
  background: url("../img/cta-bg.webp") no-repeat top center / cover;
  padding-bottom: 25px;
}
.contact-text {
  padding-top: 220px;
  padding-left: 24px;
  padding-right: 24px;
}
#contact .cta {
  margin-top: 30px;
}
#contact .cta-2 {
  margin-top: 15px;
}

/*====================================================
////id |  footer
====================================================*/
#footer {
  padding: 10px 25px 15px;
}
.footer-logo {
  width: 85px;
  margin-left: auto;
  margin-right: auto;
}
.copyright {
  margin-top: 15px;
  font-size: 10px;
  text-align: center;
}

/*====================================================
////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) {
}
