@charset "UTF-8";
/*--レスポンシブ--*/
.contents_padding, .faq, .voice, .area, .comparison, .reason, .worries {
  padding: 5% 0;
}
@media screen and (max-width: 800px) {
  .contents_padding, .faq, .voice, .area, .comparison, .reason, .worries {
    padding: 10% 0;
  }
}

/*----共通部分----*/
html {
  font-size: 100%;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", sans-serif;
  font-weight: 300;
  color: #333333;
  width: 100%;
  font-size: 0.9rem;
  background-color: #ffffff;
  margin: 0 auto;
}

.wrapper {
  margin: 0 20%;
}
@media screen and (max-width: 800px) {
  .wrapper {
    margin: 0 10%;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

ul li {
  list-style: none;
  margin-bottom: 2.5%;
}

h2 {
  font-size: 42px;
  color: #0AAAFF;
  text-align: center;
}
@media screen and (max-width: 800px) {
  h2 {
    font-size: 36px;
  }
}

p {
  font-size: 24px;
  margin-bottom: 36px;
  text-align: center;
}

.pc_img {
  display: block;
}
@media screen and (max-width: 800px) {
  .pc_img {
    display: none;
  }
}

.sp_img {
  display: none;
}
@media screen and (max-width: 800px) {
  .sp_img {
    display: block;
  }
}

/*---その他のjs設定---*/
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/*--header--*/
h1 {
  position: absolute;
  top: 78px;
  left: 12px;
  z-index: 9999;
  font-size: 16px;
  text-shadow: 0px 0px 4px #fff;
}
@media screen and (max-width: 800px) {
  h1 {
    text-align: center;
    top: 13vw;
    left: 0;
    right: 0;
    font-size: 2.3vw;
  }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0AAAFF;
  height: 70px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  header {
    height: auto;
  }
}
header .logo {
  width: 400px;
  margin-left: 12px;
  margin-right: 12px;
  height: auto;
  display: flex;
  align-items: center;
}
header .logo span {
  font-weight: bold;
  margin-left: 12px;
  font-size: 30px;
  color: #fff;
}
@media screen and (max-width: 800px) {
  header .logo span {
    margin-left: 2.6666666667vw;
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 800px) {
  header .logo {
    flex-shrink: 1;
    width: 50%;
  }
}
header .logo img {
  vertical-align: center;
}
@media screen and (max-width: 800px) {
  header .logo img {
    width: 27.4666666667vw;
  }
}
header .action {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}
@media screen and (max-width: 800px) {
  header .action {
    flex-shrink: 2;
    width: 50%;
  }
}
header .action .pc {
  display: block;
  box-sizing: border-box;
  width: 347px;
}
header .action .pc p {
  font-size: 1.8vw;
  font-weight: bold;
  color: #ffffff;
}
header .action .pc a {
  height: 100%;
}
@media screen and (max-width: 800px) {
  header .action .pc {
    display: none;
  }
}
header .action .sp {
  display: none;
  width: 100%;
  text-align: center;
}
header .action .sp a img {
  vertical-align: bottom;
  object-fit: contain;
}
@media screen and (max-width: 500px) {
  header .action .sp a img {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  header .action .sp {
    display: block;
  }
}

/*--cta--*/
.cta {
  width: 80%;
  margin: 5% auto 0;
}
.cta img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.fixed_button {
  position: fixed;
  bottom: 10px;
  left: auto;
  right: auto;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .fixed_button {
    bottom: 5px;
  }
}
.fixed_button img {
  width: 65%;
  height: auto;
}
@media screen and (max-width: 800px) {
  .fixed_button img {
    width: 95%;
  }
}

.my-blink-01 {
  animation: my-blink 1.2s ease 1s infinite;
  -webkit-animation: blink 1.2s ease 1s infinite;
}
@keyframes blink {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  to {
    transform: scale(1);
  }
}
.fv {
  position: relative;
}
.fv .cta {
  margin-top: 0;
  position: absolute;
  bottom: -7%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 800px) {
  .fv .cta {
    bottom: -2%;
  }
}
.fv img {
  width: 100%;
}

.worries {
  background: url(../images/bg_worries.webp) no-repeat bottom center;
  background-size: cover;
}
.worries h4 {
  text-align: center;
  margin: 4vw 0;
  font-size: 3vw;
  color: #e95e03;
}
@media screen and (max-width: 800px) {
  .worries h4 {
    margin: 5vw 0;
    font-size: 5vw;
  }
}
.worries h4 span {
  font-size: 1.2em;
}
.worries h4 + .cta {
  margin-top: 0;
}
.worries .wrapper {
  margin: 0;
}
.worries .wrapper h2 img {
  width: 60vw;
}
@media screen and (max-width: 800px) {
  .worries .wrapper h2 img {
    width: 80vw;
  }
}
.worries ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2vw 1.6vw;
  margin: 1.4vw auto 0;
  width: 66.6666666667vw;
}
@media screen and (max-width: 800px) {
  .worries ul {
    width: auto;
  }
}
.worries ul li {
  text-align: center;
  width: 20vw;
  padding: 2vw 0.6666666667vw;
  margin: 0;
  background-color: #fff;
  border-radius: 1vw;
  border: 0.27vw solid #5d5374;
}
@media screen and (max-width: 800px) {
  .worries ul li {
    width: 40%;
    padding: 3.75vw 0;
    margin: 0.5vw 0;
    border-radius: 1.4vw;
    border: 0.7vw solid #5d5374;
  }
}
.worries ul li h3 {
  text-align: center;
  line-height: 1.3;
  font-size: 1.8vw;
  font-weight: bold;
  color: #ff0000;
}
@media screen and (max-width: 800px) {
  .worries ul li h3 {
    font-size: 3.75vw;
  }
}
.worries ul li p {
  margin: 1.1vw 0 1vw;
  line-height: 1.3;
  font-weight: bold;
  font-size: 1.2vw;
}
@media screen and (max-width: 800px) {
  .worries ul li p {
    margin: 1.4vw 0 2.4vw;
    font-size: 2.75vw;
  }
}
.worries ul li img {
  width: 7.3333333333vw;
}
@media screen and (max-width: 800px) {
  .worries ul li img {
    width: 12.5vw;
  }
}

.reason {
  background: #0AAAFF;
}
.reason h2 {
  width: 70%;
  margin: 0 auto 3%;
}
@media screen and (max-width: 800px) {
  .reason h2 {
    width: 100%;
  }
}
.reason ul li img {
  margin: 0 auto;
}

.crowns4 img {
  width: 100%;
}

#a_01 img {
  width: 100%;
}

.area, .comparison {
  text-align: center;
  background-color: #D8F0FF;
}

.step {
  padding-bottom: 5%;
  background: url(../images/step_bg.webp) repeat top center;
}
.step h2 {
  background: #0AAAFF;
  padding: 36px 0;
  color: #ffffff;
  margin-bottom: 5%;
}
.step ul li {
  margin-bottom: 1.5%;
}

.worries_02 {
  padding-bottom: 5%;
  background: url(../images/worries_02_bg.webp) no-repeat top center;
  background-size: cover;
}
.worries_02 h2 {
  margin-bottom: 5%;
}
.worries_02 img {
  width: 100%;
}

.comparison h2 {
  margin-bottom: 5%;
}
.comparison figure img {
  margin: 0 auto;
}

.voice {
  background-color: #FFFDCC;
}
.voice h2 {
  width: 40%;
  margin: 0 auto 3%;
}
@media screen and (max-width: 800px) {
  .voice h2 {
    width: 100%;
  }
}
.voice img {
  margin: 0 auto;
}

.faq h2 {
  border: 5px solid #0AAAFF;
  padding: 1.5%;
  text-align: center;
  color: #EA5A01;
  margin-bottom: 5%;
}
.faq dl {
  border-top: 1px solid #0AAAFF;
  padding-top: 4%;
}
.faq dl dt {
  font-size: 32px;
  font-weight: bold;
  color: #0AAAFF;
  background: url(../images/icon_q.webp) no-repeat 0 50%;
  background-size: 60px;
  padding: 12px 0 12px 72px;
  margin-bottom: 1%;
}
@media screen and (max-width: 800px) {
  .faq dl dt {
    background-size: 50px;
    padding: 12px 0 12px 62px;
    font-size: 24px;
  }
}
.faq dl dd {
  background: url(../images/icon_a.webp) no-repeat left top;
  background-size: 60px;
  padding: 12px 0 14px 72px;
  margin-bottom: 3%;
}
@media screen and (max-width: 800px) {
  .faq dl dd {
    background-size: 50px;
    padding: 12px 0 12px 62px;
  }
}
.faq dl dd p {
  text-align: left;
  margin-bottom: 0;
}
@media screen and (max-width: 800px) {
  .faq dl dd p {
    font-size: 20px;
  }
}
.faq dl.last_child {
  border-bottom: 1px solid #0AAAFF;
}

/*--check--*/
#check {
  background-color: #000;
}
@media screen and (max-width: 800px) {
  #check {
    padding: 5% 0;
  }
}
#check .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 800px) {
  #check .wrapper {
    display: block;
  }
}
#check .wrapper img {
  width: 30%;
}
@media screen and (max-width: 800px) {
  #check .wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
}
#check .wrapper h2 {
  width: 60%;
}
@media screen and (max-width: 800px) {
  #check .wrapper h2 {
    width: 100%;
  }
}
#check .wrapper h2 img {
  width: 100%;
}
@media screen and (max-width: 800px) {
  #check .wrapper h2 img {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding-top: 5%;
  }
}

/*--footer--*/
footer {
  text-align: center;
  background-color: #D0E5F0;
  padding: 1.5% 1.5% 12%;
}
@media screen and (max-width: 800px) {
  footer {
    padding: 1.5% 1.5% 10vh;
  }
}
footer p {
  margin: 0;
  font-size: 14px;
  color: #122877;
}