@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;800&family=Noto+Serif+JP:wght@500;600;700;900&family=Yuji+Mai&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  padding: 0;
  margin: 0;
  overflow: auto;
}

body {
  font-family: "Noto Sans JP";
  text-align: center;
  padding: 0;
  margin: 0;
  overflow: hidden;
  min-width: 300px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

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

ul {
  padding: 0;
}
ul li {
  list-style: none;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  a {
    font-weight: 300;
  }
}

.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.main-title {
  color: #0B58D7;
  font-size: 40px;
}

.title {
  color: #0B58D7;
  font-size: 40px;
  font-weight: 700;
  border-bottom: 6px solid #0B58D7;
  display: inline-block;
  text-align: center;
}

.sub-title {
  color: #0B58D7;
  font-size: 30px;
  line-height: 50px;
}
@media (max-width: 767px) {
  .sub-title {
    font-size: 7vw;
    line-height: 10vw;
    font-weight: 500;
  }
}

p {
  font-size: 18px;
  font-weight: 300;
  line-height: 35px;
}
@media (max-width: 767px) {
  p {
    font-size: 5vw;
  }
}

.span-blue {
  color: #0B58D7;
}

.span-red {
  color: #E50019;
}

.span-glay {
  color: #333333;
  font-size: 40px;
  font-weight: 600;
}

.span-white {
  color: #fff;
}

.span-yellow {
  color: #FFFE03;
}

.border {
  border-bottom: 6px solid #0B58D7;
}

header {
  display: flex;
  margin: 0 auto;
  align-items: center;
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
}
@media (min-width: 768px) and (max-width: 1200px) {
  header {
    height: 60px;
  }
}
@media (max-width: 767px) {
  header {
    height: 60px;
  }
}
header .header-logo {
  width: 50vw;
  height: 100px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  header .header-logo {
    width: 40%;
    height: 60px;
  }
}
@media (max-width: 767px) {
  header .header-logo {
    width: 86vw;
    height: 60px;
  }
}
header .header-logo img {
  height: 100px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  header .header-logo img {
    height: 60px;
  }
}
@media (max-width: 767px) {
  header .header-logo img {
    height: 60px;
  }
}
header ul {
  list-style: none;
  display: flex;
}
@media (min-width: 768px) and (max-width: 1200px) {
  header ul {
    display: none;
  }
}
@media (max-width: 767px) {
  header ul {
    display: none;
  }
}
header ul li {
  width: 12vw;
}
header ul li a {
  text-decoration: none;
  color: #000;
  font-size: 0.8vw;
  color: #fff;
  padding: 5px 5px;
  background-color: #333333;
  border-radius: 9999px;
}
header ul li .header-merit {
  background-color: #0B58D7;
}
header ul li .header-strength {
  padding: 5px 30px;
}
header ul li .header-qa {
  padding: 5px 40px;
}
header .header-tel {
  width: 20vw;
}
@media (min-width: 768px) and (max-width: 1200px) {
  header .header-tel {
    display: none;
  }
}
@media (max-width: 767px) {
  header .header-tel {
    display: none;
  }
}
header .header-tel .tel-first {
  font-size: 1.5vw;
}
header .header-tel .tel-second {
  font-size: 0.7vw;
}
header .header-contact {
  display: flex;
  align-items: center;
  width: 13vw;
  height: 100px;
  background: #0B58D7;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1200px) {
  header .header-contact {
    display: none;
  }
}
@media (max-width: 767px) {
  header .header-contact {
    display: none;
  }
}
header .header-contact .mail-icon {
  width: 32px;
  margin-left: 20%;
  color: #fff;
}
header .header-contact .header-contact-title {
  color: #fff;
  width: 50%;
  margin-right: 20%;
  font-size: 1.2vw;
}

.drawer {
  display: none;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .drawer {
    display: block;
  }
}
@media (max-width: 767px) {
  .drawer {
    display: block;
  }
}
.drawer .drawer-icon {
  position: fixed;
  top: 20px;
  right: 15px;
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .drawer .drawer-icon {
    display: block;
  }
}
@media (max-width: 767px) {
  .drawer .drawer-icon {
    display: block;
  }
}
.drawer .drawer-icon.is-active {
  transform: translateX(-80vw);
}
@media (min-width: 768px) and (max-width: 1200px) {
  .drawer .drawer-icon.is-active {
    right: -10vw;
  }
}
.drawer .drawer-icon.is-active .drawer-icon-bar1 {
  transform: rotate(-45deg);
  top: 7vw;
  background-color: #fff;
}
.drawer .drawer-icon.is-active .drawer-icon-bar2 {
  display: none;
}
.drawer .drawer-icon.is-active .drawer-icon-bar3 {
  transform: rotate(45deg);
  top: 7vw;
  background-color: #fff;
}
.drawer .drawer-icon-bars {
  width: 26px;
  height: 26px;
  display: block;
  position: relative;
}
.drawer .drawer-icon-bar1,
.drawer .drawer-icon-bar2,
.drawer .drawer-icon-bar3 {
  position: absolute;
  top: 0;
  right: 0;
  background: #333333;
  width: 26px;
  height: 3px;
  border-radius: 13px;
}
.drawer .drawer-icon-bar1 {
  top: 0;
}
.drawer .drawer-icon-bar2 {
  top: 9px;
}
.drawer .drawer-icon-bar3 {
  top: 18px;
}
.drawer .drawer-content {
  width: 80%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #000000;
  opacity: 0.8;
  box-shadow: 0 0 3px rgba(255, 255, 255, 0.1);
  z-index: 250;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
@media (max-width: 767px) {
  .drawer .drawer-content {
    width: 100%;
  }
}
.drawer .drawer-content.is-active {
  transform: translateX(0);
}
.drawer .drawer-items {
  margin: 30vw 20%;
}
@media (max-width: 767px) {
  .drawer .drawer-items {
    margin: 30vw 10%;
  }
}
.drawer .drawer-nav a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  padding: 20px;
  position: relative;
  font-size: 3vw;
  font-weight: 400;
  line-height: 1;
  border-bottom: 1px solid #fff;
}
@media (max-width: 767px) {
  .drawer .drawer-nav a {
    font-size: 5vw;
    line-height: 1;
  }
}
.drawer .drawer-nav a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  width: 6px;
  height: 10px;
}
.drawer .drawer-item-contact a {
  color: #fff;
  background: linear-gradient(180deg, #e84051 0%, #e84051 50%, #E50019 50%, #E50019 100%);
  text-decoration: none;
  display: block;
  padding: 7vw;
  position: relative;
  font-size: 3vw;
  font-weight: 700;
  margin-top: 10vw;
  width: 100%;
  border-bottom: none;
  border-radius: 30px;
  border: 5px solid #FFFE03;
}
.drawer .drawer-item-contact a:hover {
  background: #ffffff;
  border: 2px solid #0B58D7;
  color: #0B58D7;
  opacity: 1;
}
@media (max-width: 767px) {
  .drawer .drawer-item-contact a {
    font-size: 5vw;
  }
}
.drawer .drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #545454;
  z-index: 240;
  opacity: 0.9;
  display: none;
}
.drawer .drawer-background.is-active {
  display: block;
}

@media (max-width: 767px) {
  .main {
    background-color: #F1F6FF;
  }
}
.main .main-img-pc {
  margin-top: 100px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .main .main-img-pc {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .main .main-img-pc {
    display: none;
  }
}
.main .main-img-sp {
  display: none;
}
@media (max-width: 767px) {
  .main .main-img-sp {
    display: block;
    margin-top: 60px;
  }
}
.main .main-contact-sp {
  display: none;
}
@media (max-width: 767px) {
  .main .main-contact-sp {
    display: block;
    background-color: #FFFF00;
    padding: 1vw;
  }
  .main .main-contact-sp .main-contact-tel {
    font-size: 7vw;
  }
  .main .main-contact-sp .main-contact-time {
    font-size: 3.5vw;
  }
}
.main .main-contact {
  display: flex;
  margin: 1.5vw auto;
  background: linear-gradient(180deg, #e84051 0%, #e84051 50%, #E50019 50%, #E50019 100%);
  padding: 10px 0;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  border-radius: 999px;
  border: 3px solid #ffff00;
  width: 90%;
}
.main .main-contact .span-yellow {
  font-size: 35px;
  font-weight: 700;
}
.main .main-contact .span-white {
  font-size: 35px;
}
@media (max-width: 767px) {
  .main .main-contact {
    display: block;
    background: linear-gradient(180deg, #e84051 0%, #e84051 50%, #E50019 50%, #E50019 100%);
    margin: 0 auto;
    padding: 3vw;
    border-radius: 0;
    width: 100%;
  }
  .main .main-contact .span-yellow {
    padding: 0;
    font-size: 5vw;
  }
  .main .main-contact .span-white {
    font-size: 5vw;
  }
}
.main .main-contact a {
  font-size: 35px;
  padding: 20px 5vw;
  border-radius: 9999px;
}
@media (max-width: 767px) {
  .main .main-contact a {
    font-size: 2vw;
    font-weight: 500;
    border-radius: 0;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .main .main-contact .main-contact-main {
    padding-left: 10vw;
  }
}
.main .main-contact .main-contact-sub {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .main .main-contact .main-contact-sub {
    width: 55vw;
    margin-top: 2.5vw;
  }
}
.main .main-contact .main-contact-sub span {
  font-size: 24px;
  padding: 5px 20px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffff00 0%, #ffffbf 50%, #ff9500 50%, #ffe600 100%);
}
.main .main-contact .main-contact-sub span:hover {
  opacity: 0.7;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .main .main-contact .main-contact-sub span {
    font-size: 1.7vw;
  }
}
@media (max-width: 767px) {
  .main .main-contact .main-contact-sub span {
    font-size: 3.5vw;
    margin-top: 2vw;
  }
}

.first-contents {
  background-color: #F1F6FF;
  padding: 140px 0;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .first-contents {
    padding: 10vw 0;
  }
}
@media (max-width: 767px) {
  .first-contents {
    padding-top: 10px;
    padding-bottom: 30px;
  }
}
.first-contents .span-blue {
  font-size: 40px;
  font-weight: 600;
}

.first-contents-title-pc {
  padding-bottom: 80px;
  line-height: 50px;
}
@media (max-width: 767px) {
  .first-contents-title-pc {
    display: none;
  }
}

.first-contents-title-sp {
  display: none;
}
@media (max-width: 767px) {
  .first-contents-title-sp {
    display: block;
    line-height: 2;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .first-contents-title-sp .span-blue {
    font-size: 7vw;
  }
}
@media (max-width: 767px) {
  .first-contents-title-sp .span-glay {
    font-size: 7vw;
  }
}

.first-contents01 {
  display: flex;
  padding: 30px 30px;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #0B58D7;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .first-contents01 {
    display: block;
    width: 90%;
    padding: 20px;
  }
}
.first-contents01 .first-contents01-l {
  width: 45%;
}
@media (max-width: 767px) {
  .first-contents01 .first-contents01-l {
    display: none;
  }
}
.first-contents01 .first-contents01-l .title {
  text-align: center;
  line-height: 60px;
  width: 90%;
}
.first-contents01 .first-contents01-l p .span-blue {
  font-size: 25px;
}
.first-contents01 .first-contents01-l img {
  width: 60%;
  margin: 40px 0 30px 0;
}
.first-contents01 .first-contents01-l-sp {
  display: none;
}
@media (max-width: 767px) {
  .first-contents01 .first-contents01-l-sp {
    display: block;
    width: 100%;
  }
}
.first-contents01 .first-contents01-l-sp img {
  width: 50%;
}
@media (max-width: 767px) {
  .first-contents01 .first-contents01-l-sp .title {
    margin-top: 10vw;
    font-size: 9vw;
    font-weight: 600;
    width: 90%;
  }
}
@media (max-width: 767px) {
  .first-contents01 .first-contents01-l-sp .span-blue {
    font-size: 6vw;
  }
}
.first-contents01 .first-contents01-r-pc {
  padding: 30px 30px;
  background-color: #FFFFBF;
  border-radius: 20px;
  margin: 20px 0;
  width: 50%;
  margin-left: 5%;
}
@media (max-width: 767px) {
  .first-contents01 .first-contents01-r-pc {
    display: none;
  }
}
@media (max-width: 767px) {
  .first-contents01 .first-contents01-r-pc p {
    text-align: left;
  }
}
.first-contents01 .first-contents01-r-sp {
  display: none;
}
@media (max-width: 767px) {
  .first-contents01 .first-contents01-r-sp {
    display: block;
    background-color: #FFFFBF;
    border-radius: 20px;
    width: 100%;
    padding: 4vw 2vw 5% 2vw;
  }
}
@media (max-width: 767px) {
  .first-contents01 .first-contents01-r-sp p {
    text-align: left;
  }
}

.first-contents02 {
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #0B58D7;
  display: flex;
}
@media (max-width: 767px) {
  .first-contents02 {
    display: block;
    width: 90%;
  }
}
.first-contents02 .first-contents02-l {
  width: 30%;
}
@media (max-width: 767px) {
  .first-contents02 .first-contents02-l {
    width: 100%;
  }
}
.first-contents02 .first-contents02-l .sub-title {
  margin: 0;
  line-height: 100px;
}
.first-contents02 .first-contents02-r {
  width: 75%;
}
@media (max-width: 767px) {
  .first-contents02 .first-contents02-r {
    width: 100%;
  }
}
.first-contents02 .first-contents02-r p {
  text-align: left;
  margin-left: 3%;
}
@media (max-width: 767px) {
  .first-contents02 .first-contents02-r p {
    margin-left: 0;
  }
}

.comment {
  font-size: 32px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .comment {
    display: none;
  }
}

.comment-sp {
  display: none;
}
@media (max-width: 767px) {
  .comment-sp {
    display: block;
    font-size: 6vw;
    font-weight: 500;
    margin: 30px 5% 10px 5%;
    line-height: 1.5;
    width: 90%;
  }
}

.merit {
  position: relative;
}
@media (max-width: 767px) {
  .merit {
    width: 90%;
  }
}
.merit .first-arrow-blue {
  width: 20%;
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .merit .first-arrow-blue {
    width: 35vw;
  }
}
.merit .merit-title {
  line-height: 70px;
  margin-top: 140px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .merit .merit-title {
    margin-top: 10vw;
  }
}
@media (max-width: 767px) {
  .merit .merit-title {
    margin-top: 15vw;
    font-size: 9vw;
  }
}
.merit p {
  margin: 70px 0;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .merit p {
    margin: 5vw 0;
  }
}
@media (max-width: 767px) {
  .merit p {
    text-align: left;
    margin: 8vw 0;
  }
}
.merit .tag {
  padding: 15px 100px 15px 5%;
  background-color: #0B58D7;
  border-radius: 0 15px 15px 0;
  color: #fff;
  width: 300px;
}
@media (max-width: 767px) {
  .merit .tag {
    width: 90%;
    font-size: 5vw;
    padding: 15px 80px 15px 5%;
  }
}

.merit01 {
  padding: 40px 0;
  border: 1px solid #0B58D7;
  border-radius: 20px;
}
.merit01 .merit01-first {
  display: flex;
  text-align: left;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .merit01 .merit01-first {
    display: block;
    margin-bottom: 7vw;
  }
}
.merit01 .merit01-first .first-l {
  width: 50%;
}
@media (max-width: 767px) {
  .merit01 .merit01-first .first-l {
    width: 100%;
  }
}
.merit01 .merit01-first .first-l .title {
  margin-left: 25px;
  line-height: 70px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .merit01 .merit01-first .first-l .title {
    width: 90%;
    margin: 30px 5% 0 5%;
    text-align: center;
    font-size: 9vw;
  }
}
.merit01 .merit01-first .first-l p {
  margin: 30px 0 0 25px;
}
@media (max-width: 767px) {
  .merit01 .merit01-first .first-l p {
    margin: 6vw 5% 6vw 5%;
    width: 90%;
  }
}
.merit01 .merit01-first .first-r {
  width: 50%;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .merit01 .merit01-first .first-r {
    width: 90%;
    margin-right: 0;
    margin: 0 auto;
  }
}
.merit01 .merit01-secound {
  display: flex;
}
@media (max-width: 767px) {
  .merit01 .merit01-secound {
    display: block;
  }
}
.merit01 .merit01-secound .secound-l {
  width: 50%;
}
@media (max-width: 767px) {
  .merit01 .merit01-secound .secound-l {
    width: 100%;
  }
}
.merit01 .merit01-secound .secound-l .title-tag {
  width: 90%;
  margin-left: 5%;
  color: #fff;
  background-color: #333333;
  font-size: 30px;
  font-weight: 400;
  padding: 10px;
  border-left: 60px solid #0B58D7;
  margin: 0 0 20px 5%;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .merit01 .merit01-secound .secound-l .title-tag {
    font-size: 2.5vw;
  }
}
@media (max-width: 767px) {
  .merit01 .merit01-secound .secound-l .title-tag {
    font-size: 3vw;
    padding: 2vw;
    border-left: 4vw solid #0B58D7;
    text-align: left;
    margin: 4vw auto 8vw;
  }
}
.merit01 .merit01-secound .secound-l img {
  width: 90%;
}
@media (max-width: 767px) {
  .merit01 .merit01-secound .secound-l img {
    width: 90%;
  }
}
.merit01 .merit01-secound .secound-l .graph-detail01 {
  text-align: left;
  margin: 0 0 31px 0;
  margin-left: 30px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .merit01 .merit01-secound .secound-l .graph-detail01 {
    margin: 0 5%;
    font-size: 4vw;
    font-weight: 500;
  }
}
.merit01 .merit01-secound .secound-l .spend01 {
  margin: 10px auto;
  width: 90%;
  font-size: 35px;
  font-weight: 500;
  color: #fff;
  padding: 5px 20px;
  background-color: #0B58D7;
}
@media (max-width: 767px) {
  .merit01 .merit01-secound .secound-l .spend01 {
    width: 90%;
    font-size: 7vw;
    margin: 4vw auto 8vw;
  }
}
.merit01 .merit01-secound .secound-l p {
  margin: 30px 0 15px 0;
}
@media (max-width: 767px) {
  .merit01 .merit01-secound .secound-l p {
    text-align: center;
    font-size: 4vw;
    margin: 3vw 0;
  }
}
.merit01 .merit01-secound .secound-r {
  width: 50%;
}
@media (max-width: 767px) {
  .merit01 .merit01-secound .secound-r {
    width: 100%;
  }
}
.merit01 .merit01-secound .secound-r .title-tag {
  width: 90%;
  color: #fff;
  background-color: #333333;
  font-size: 30px;
  font-weight: 400;
  padding: 10px;
  border-left: 60px solid #0B58D7;
  margin: 0 0 20px 5%;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .merit01 .merit01-secound .secound-r .title-tag {
    font-size: 2.5vw;
  }
}
@media (max-width: 767px) {
  .merit01 .merit01-secound .secound-r .title-tag {
    font-size: 4.5vw;
    padding: 2vw;
    border-left: 4vw solid #0B58D7;
    text-align: left;
    margin: 4vw auto 8vw;
  }
}
.merit01 .merit01-secound .secound-r img {
  width: 90%;
}
@media (max-width: 767px) {
  .merit01 .merit01-secound .secound-r img {
    width: 90%;
  }
}
.merit01 .merit01-secound .secound-r .graph-detail02-1 {
  text-align: left;
  font-size: 18px;
  margin-left: 30px;
}
@media (max-width: 767px) {
  .merit01 .merit01-secound .secound-r .graph-detail02-1 {
    display: none;
  }
}
.merit01 .merit01-secound .secound-r .graph-detail02-1-sp {
  display: none;
  text-align: left;
  font-size: 18px;
  margin-left: 30px;
}
@media (max-width: 767px) {
  .merit01 .merit01-secound .secound-r .graph-detail02-1-sp {
    display: block;
    margin: 0 5% 6vw 5%;
    font-size: 4vw;
    font-weight: 500;
  }
}
.merit01 .merit01-secound .secound-r .graph-detail02-2 {
  text-align: left;
  font-size: 18px;
  margin-left: 30px;
}
@media (max-width: 767px) {
  .merit01 .merit01-secound .secound-r .graph-detail02-2 {
    display: none;
  }
}
.merit01 .merit01-secound .secound-r .spend02 {
  margin: 10px auto;
  width: 90%;
  font-size: 35px;
  font-weight: 500;
  color: #fff;
  padding: 5px 20px;
  background-color: #E50019;
}
@media (max-width: 767px) {
  .merit01 .merit01-secound .secound-r .spend02 {
    width: 90%;
    font-size: 7vw;
  }
}
.merit01 .merit01-secound .secound-r p {
  margin: 30px 0 15px 0;
}
@media (max-width: 767px) {
  .merit01 .merit01-secound .secound-r p {
    text-align: center;
    font-size: 4vw;
    margin: 3vw 0;
  }
}
.merit01 .merit01-third p {
  margin: 50px 0 30px 0;
}
@media (max-width: 767px) {
  .merit01 .merit01-third p {
    margin: 5vw 5%;
  }
}
@media (max-width: 767px) {
  .merit01 .merit01-third .merit01-third-text {
    display: none;
  }
}
.merit01 .merit01-third .merit01-third-text-sp {
  display: none;
}
@media (max-width: 767px) {
  .merit01 .merit01-third .merit01-third-text-sp {
    display: block;
  }
}
.merit01 .merit01-third .border-bottom {
  border-bottom: 1px solid #707070;
  width: 90%;
  margin: 0 auto;
}
.merit01 .merit01-third .merit01-note {
  font-size: 18px;
  font-weight: 300;
  margin: 30px 0 60px 0;
}
@media (max-width: 767px) {
  .merit01 .merit01-third .merit01-note {
    display: none;
  }
}
.merit01 .merit01-third .merit01-note-sp {
  display: none;
}
@media (max-width: 767px) {
  .merit01 .merit01-third .merit01-note-sp {
    display: block;
    font-size: 4vw;
    font-weight: 300;
    margin: 4vw 5% 7vw 5%;
  }
}
.merit01 .merit01-third .sharp-button {
  width: 95%;
  font-size: 35px;
  font-weight: 500;
  padding: 25px 30px;
  background-color: #FF8800;
  color: #fff;
  border-radius: 40px;
  margin: 0 auto;
}
.merit01 .merit01-third .sharp-button:hover {
  background-color: #fff;
  color: #FF8800;
  border: 1px solid #FF8800;
}
@media (max-width: 767px) {
  .merit01 .merit01-third .sharp-button {
    display: none;
  }
}
.merit01 .merit01-third .sharp-button-sp {
  display: none;
}
@media (max-width: 767px) {
  .merit01 .merit01-third .sharp-button-sp {
    display: block;
    width: 90%;
    font-size: 7vw;
    font-weight: 500;
    padding: 6vw 1vw;
    background-color: #FF8800;
    color: #fff;
    border-radius: 20px;
    margin: 0 auto;
  }
  .merit01 .merit01-third .sharp-button-sp:hover {
    background-color: #fff;
    color: #FF8800;
    border: 1px solid #FF8800;
  }
}

.arrow-blue img {
  width: 20%;
}
@media (max-width: 767px) {
  .arrow-blue img {
    width: 10%;
  }
}

.merit02 {
  display: flex;
  padding: 30px 0;
  border: 1px solid #0B58D7;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .merit02 {
    display: block;
  }
}
.merit02 .left {
  width: 50%;
  text-align: left;
}
@media (max-width: 767px) {
  .merit02 .left {
    width: 100%;
  }
}
.merit02 .left .title {
  margin-left: 25px;
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 70px;
}
@media (max-width: 767px) {
  .merit02 .left .title {
    font-size: 9vw;
    width: 90%;
    margin: 5vw 5%;
  }
}
.merit02 .left p {
  margin-left: 25px;
  margin-right: 2%;
  margin-top: 0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .merit02 .left p {
    margin: 0 5% 6vw 5%;
  }
}
.merit02 .right {
  width: 50%;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .merit02 .right {
    width: 100%;
  }
}
.merit02 .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center left;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .merit02 .right img {
    width: 90%;
  }
}

.arrow-glay {
  width: 150px;
}
@media (max-width: 767px) {
  .arrow-glay {
    margin: 5vw 0 5vw 0;
  }
}

.detail-title {
  display: inline-block;
  border-bottom: 17px solid #FFFF00;
}
@media (max-width: 767px) {
  .detail-title {
    border-bottom: none;
  }
}

.merit01-third .strong {
  font-size: 60px;
  font-weight: 300;
}
@media (max-width: 767px) {
  .merit01-third .strong {
    display: none;
  }
}
.merit01-third .strong-sp {
  display: none;
}
@media (max-width: 767px) {
  .merit01-third .strong-sp {
    display: block;
    font-size: 9vw;
  }
}
.merit01-third .span-red {
  font-weight: 500;
}
.merit01-third p {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .merit01-third p {
    margin: 0 5% 5vw 5%;
  }
}

.arrow-blue {
  width: 250px;
  margin: 30px auto;
}
@media (max-width: 767px) {
  .arrow-blue {
    width: 35vw;
  }
}

.strong-title {
  font-size: 65px;
  margin: 10px 0 150px;
  color: #FFFF00;
  text-shadow: 5px 5px 5px #0B58D7, -5px -5px 5px #0B58D7, -5px 5px 5px #0B58D7, 5px -5px 5px #0B58D7, 5px 0 5px #0B58D7, -5px 0 5px #0B58D7, 0 5px 5px #0B58D7, 0 -5px 5px #0B58D7;
}
@media (max-width: 767px) {
  .strong-title {
    display: none;
  }
}

.strong-title-sp {
  display: none;
}
@media (max-width: 767px) {
  .strong-title-sp {
    display: block;
    font-size: 12vw;
    margin: 3vw 0 20vw;
    color: #FFFF00;
    text-shadow: 5px 5px 5px #0B58D7, -5px -5px 5px #0B58D7, -5px 5px 5px #0B58D7, 5px -5px 5px #0B58D7, 5px 0 5px #0B58D7, -5px 0 5px #0B58D7, 0 5px 5px #0B58D7, 0 -5px 5px #0B58D7;
  }
}

.contact {
  background-image: url(../pc-img/person-img.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 100%;
  height: 580px;
}
@media (max-width: 767px) {
  .contact {
    background-image: url(../sp-img/person-img.png);
    height: 800px;
  }
}
.contact .contact-inner {
  text-align: left;
  margin-left: 5%;
  margin-right: 5%;
}
.contact .contact-inner p {
  color: #fff;
  font-size: 25px;
  padding-top: 80px;
  margin-top: 0;
}
@media (max-width: 767px) {
  .contact .contact-inner p {
    padding-top: 8vw;
    font-size: 5vw;
  }
}
.contact .contact-inner .contact-title {
  color: #fff;
  font-size: 60px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .contact .contact-inner .contact-title {
    font-size: 5vw;
  }
}
@media (max-width: 767px) {
  .contact .contact-inner .contact-title {
    font-size: 9vw;
    width: 90%;
  }
}
.contact .contact-tag {
  display: flex;
  color: #fff;
  font-size: 36px;
  margin: 25px 0 30px;
  width: 98%;
}
@media (max-width: 767px) {
  .contact .contact-tag {
    display: block;
    margin: 5vw 0;
  }
}
.contact .contact-tag .contact-tag-l {
  width: 380px;
  padding: 10px;
  background-color: #0BD798;
  text-align: center;
  border-radius: 10px;
  margin-right: 1%;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .contact .contact-tag .contact-tag-l {
    font-size: 4vw;
    width: 45%;
  }
}
@media (max-width: 767px) {
  .contact .contact-tag .contact-tag-l {
    font-size: 7vw;
    width: 90%;
    margin: 0 0 3vw 0;
  }
}
.contact .contact-tag .contact-tag-r {
  width: 380px;
  padding: 10px;
  background-color: #0BD798;
  text-align: center;
  border-radius: 10px;
  margin-left: 1%;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .contact .contact-tag .contact-tag-r {
    font-size: 4vw;
    width: 45%;
  }
}
@media (max-width: 767px) {
  .contact .contact-tag .contact-tag-r {
    font-size: 7vw;
    width: 90%;
    margin: 0;
  }
}
.contact a {
  width: 90%;
}
.contact .contact-button {
  font-size: 25px;
  color: #fff;
  width: 780px;
  padding: 20px;
  text-align: center;
  border: 3px solid #FFFF00;
  border-radius: 20px;
  background: linear-gradient(180deg, #e84051 0%, #e84051 50%, #E50019 50%, #E50019 100%);
}
@media (min-width: 768px) and (max-width: 1200px) {
  .contact .contact-button {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .contact .contact-button {
    width: 90%;
    font-size: 7vw;
    padding: 5vw 5vw;
    border-radius: 10px;
    font-weight: 500;
  }
}
.contact .contact-button .contact-button-main {
  font-size: 36px;
}
@media (max-width: 767px) {
  .contact .contact-button .contact-button-main {
    font-size: 5vw;
  }
  .contact .contact-button .contact-button-main .span-yellow {
    font-weight: 700;
  }
  .contact .contact-button .contact-button-main .span-white {
    font-weight: 500;
  }
}
.contact .contact-button .contact-button-sub {
  margin-top: 1vw;
}
.contact .contact-button .contact-button-sub span {
  font-size: 32px;
  padding: 5px 20px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffff00 0%, #ffffbf 50%, #ff9500 50%, #ffe600 100%);
}
.contact .contact-button .contact-button-sub span:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .contact .contact-button .contact-button-sub span {
    font-size: 3.5vw;
    margin-top: 3vw;
  }
}

.hesp {
  background-color: #F1F6FF;
  padding: 120px 0 240px;
}
@media (max-width: 767px) {
  .hesp {
    padding: 15vw 0;
  }
}
.hesp .title {
  margin: 70px 0;
  line-height: 70px;
}
@media (max-width: 767px) {
  .hesp .title {
    display: none;
  }
}
.hesp .title-sp {
  display: none;
}
@media (max-width: 767px) {
  .hesp .title-sp {
    display: block;
    font-size: 8vw;
    font-weight: 500;
    line-height: 1.5;
    width: 90%;
    border-bottom: 6px solid #0B58D7;
    display: inline-block;
    text-align: center;
    color: #0B58D7;
    margin: 10vw 5% 10vw 5%;
  }
}

.case {
  display: flex;
  text-align: left;
  padding-top: 100px;
  width: 100%;
}
@media (max-width: 767px) {
  .case {
    display: block;
    padding-top: 0;
  }
}
.case .case-l {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .case .case-l {
    width: 100%;
  }
}
.case .case-l .name-tag {
  width: 90%;
  font-size: 25px;
  color: #fff;
  padding: 10px 5vw;
  background-color: #0B58D7;
  border-radius: 0 20px 20px 0;
}
@media (max-width: 767px) {
  .case .case-l .name-tag {
    font-size: 5vw;
    width: 90%;
    padding-left: 5%;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.case .case-l .title {
  font-size: 50px;
  font-weight: 500;
  text-align: left;
  margin: 0 5%;
  margin-top: 70px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .case .case-l .title {
    display: none;
  }
}
.case .case-l .title-sp {
  display: none;
}
@media (max-width: 767px) {
  .case .case-l .title-sp {
    display: block;
    font-size: 8vw;
    line-height: 1.5;
    text-align: center;
    margin: 10vw 5% 5vw 5%;
    width: 90%;
  }
}
.case .case-l p {
  margin: 30px 7% 0;
}
@media (max-width: 767px) {
  .case .case-l p {
    margin: 0 5%;
  }
}
.case .case-r {
  width: 100%;
}
.case .case-r .case-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center center;
  border-radius: 20px 0 0 20px;
}
@media (max-width: 767px) {
  .case .case-r .case-img {
    display: none;
  }
}
.case .case-r .case-img-sp {
  display: none;
}
@media (max-width: 767px) {
  .case .case-r .case-img-sp {
    display: block;
    margin-left: 5%;
    width: 200vw;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.strength {
  display: flex;
}
@media (max-width: 767px) {
  .strength {
    display: block;
  }
}
.strength .strength-item {
  width: calc(33.3% - 16px);
  padding: 0 20px 20px 20px;
  background-color: #fff;
  border: 1px solid #0B58D7;
  border-radius: 20px;
}
@media (min-width: 1200px) {
  .strength .strength-item:not(:nth-child(3n+1)) {
    margin-left: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .strength .strength-item:not(:nth-child(3n+1)) {
    margin-left: 24px;
  }
}
@media (max-width: 767px) {
  .strength .strength-item {
    width: 90%;
    margin: 0 5% 10vw 5%;
  }
}
.strength .strength-item img {
  width: 50%;
  margin: 50px 0 40px;
}
.strength .strength-item p {
  text-align: left;
}
.strength .strength-item .merit03-icon {
  width: 63%;
}
.strength .strength-item .strength-tag {
  width: 240px;
  margin: 0 auto;
  font-size: 20px;
  color: #fff;
  padding: 10px;
  background-color: #0B58D7;
  border-radius: 0 0 20px 20px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .strength .strength-item .strength-tag {
    width: 20vw;
  }
}
@media (max-width: 767px) {
  .strength .strength-item .strength-tag {
    width: 60vw;
  }
}

.case-study {
  background-color: #fff;
  border: 1px solid #0B58D7;
  border-radius: 20px;
  margin-top: 120px;
}
@media (max-width: 767px) {
  .case-study {
    margin: 0 5%;
    width: 90%;
  }
}

.case-items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 5%;
}
@media (max-width: 767px) {
  .case-items {
    margin: 0 5% 10vw 5%;
  }
}
.case-items .case-item {
  width: calc(50% - 12px);
  border-radius: 4px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .case-items .case-item:not(:nth-child(n+1)) {
    margin-left: 24px;
  }
  .case-items .case-item:nth-child(n+3) {
    margin-top: 24px;
  }
}
.case-items .case-item .case-address {
  line-height: 50px;
  font-size: 25px;
  color: #0B58D7;
  border-bottom: 1px solid #333333;
}
@media (max-width: 767px) {
  .case-items .case-item .case-address {
    color: #0B58D7;
    font-size: 4vw;
    line-height: 2;
  }
}
.case-items .case-item .case-detail {
  line-height: 30px;
  font-size: 18px;
  border-bottom: 1px solid #333333;
}
@media (max-width: 767px) {
  .case-items .case-item .case-detail {
    margin-bottom: 7vw;
    font-size: 4vw;
    line-height: 2;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .case-items .case-item {
    width: calc(50% - 12px);
  }
  .case-items .case-item:not(:nth-child(n+1)) {
    margin-left: 24px;
  }
}
@media (max-width: 767px) {
  .case-items .case-item {
    width: 100%;
    margin-left: 0;
  }
}
.case-items .case-item img {
  width: 100%;
}

.result-title {
  font-size: 25px;
  color: #333333;
  margin: 100px 0 20px;
}
@media (max-width: 767px) {
  .result-title {
    margin: 10vw 0 5vw;
  }
}

.case-result {
  margin: 0 5% 90px;
}
@media (max-width: 767px) {
  .case-result {
    margin-bottom: 15vw;
  }
}

.result-detail {
  display: flex;
  margin: 0 auto;
  text-align: left;
  line-height: 50px;
  border-bottom: 1px solid #707070;
  padding: 0 15%;
  font-size: 18px;
  font-weight: 300;
}
@media (max-width: 767px) {
  .result-detail {
    display: block;
    line-height: 1.5;
    padding: 0;
    font-size: 4vw;
  }
}
.result-detail:first-child {
  border-top: 1px solid #707070;
}
.result-detail .address {
  width: 40%;
}
@media (max-width: 767px) {
  .result-detail .address {
    width: 100%;
    text-align: center;
  }
}
.result-detail .d-w {
  display: flex;
  width: 80%;
}
@media (max-width: 767px) {
  .result-detail .d-w {
    width: 100%;
  }
}
.result-detail .d-w .date {
  width: 55%;
}
@media (max-width: 767px) {
  .result-detail .d-w .date {
    width: 50%;
    margin-left: 10%;
  }
}
.result-detail .d-w .kw {
  width: 45%;
}
@media (max-width: 767px) {
  .result-detail .d-w .kw {
    width: 50%;
  }
}

.product {
  background-color: #0B58D7;
  padding-bottom: 130px;
}
@media (max-width: 767px) {
  .product {
    padding-bottom: 20vw;
  }
}
.product .title {
  font-weight: 400;
  color: #fff;
  border-bottom: 6px solid #fff;
  margin: 90px 0 80px;
  line-height: 70px;
}
@media (max-width: 767px) {
  .product .title {
    margin: 15vw 0 5vw;
    font-size: 8vw;
    font-weight: 500;
    width: 90%;
  }
}
.product .product-container {
  display: flex;
}
@media (max-width: 767px) {
  .product .product-container {
    display: block;
  }
}

.product-l {
  background-color: #fff;
  border-radius: 20px 0 0 20px;
  width: 50%;
}
@media (max-width: 767px) {
  .product-l {
    border-radius: 20px 20px 0 0;
    width: 90%;
    margin: 0 5%;
  }
}
.product-l .corporate {
  font-size: 28px;
  color: #E50019;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .product-l .corporate {
    font-size: 6vw;
    font-weight: 400;
    padding-top: 9vw;
  }
}
.product-l .solor-system {
  font-size: 48px;
  color: #E50019;
  line-height: 2;
  border-bottom: 1px solid #E50019;
  width: 90%;
  margin: 0 5%;
}
@media (max-width: 767px) {
  .product-l .solor-system {
    display: none;
  }
}
.product-l .solor-system-sp {
  display: none;
}
@media (max-width: 767px) {
  .product-l .solor-system-sp {
    display: block;
    font-size: 12vw;
    font-weight: 500;
    color: #E50019;
    margin-bottom: 30px;
  }
}
.product-l .product-name {
  font-size: 38px;
  color: #E50019;
  margin-bottom: 20px;
  line-height: 1.5;
}
.product-l p {
  padding: 0 5%;
  text-align: left;
  margin: 0 0 20px;
}
.product-l .product-button {
  font-size: 30px;
  color: #fff;
  background-color: #0BD798;
  border: none;
  width: 450px;
  height: 60px;
  margin-bottom: 5vw;
}
.product-l .product-button:hover {
  background-color: #fff;
  color: #0BD798;
  border: 1px solid #0BD798;
}
@media (max-width: 767px) {
  .product-l .product-button {
    width: 90%;
    font-size: 7vw;
    margin-bottom: 10vw;
  }
}

.product-r {
  width: 50%;
}
@media (max-width: 767px) {
  .product-r {
    width: 100%;
  }
}
.product-r .img04-pc {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center center;
  border-radius: 0 20px 20px 0;
}
@media (max-width: 767px) {
  .product-r .img04-pc {
    display: none;
  }
}
.product-r .img04-sp {
  display: none;
}
@media (max-width: 767px) {
  .product-r .img04-sp {
    display: block;
    width: 90%;
    margin: 0 5%;
  }
}

.qa-inner {
  width: 1200px;
  padding-top: 100px;
  padding-bottom: 140px;
}
@media (max-width: 767px) {
  .qa-inner {
    padding-top: 20vw;
    padding-bottom: 20vw;
  }
}
.qa-inner .title {
  line-height: 70px;
}
@media (max-width: 767px) {
  .qa-inner .title {
    width: 90%;
  }
}

.qa-items {
  margin: 80px 0 auto;
}
@media (max-width: 767px) {
  .qa-items {
    margin: 10vw 0 auto;
  }
}

.qa-item {
  border: 1px solid #0B58D7;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .qa-item {
    width: 90%;
    margin: 0 5% 0;
  }
}
.qa-item:not(:first-child) {
  margin-top: 24px;
}

.qa-question {
  background: #0B58D7;
  max-width: 100%;
  padding: 20px 56px;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  text-align: left;
  position: relative;
  border-radius: 15px;
  border-left: 2vw solid #333333;
}
.qa-question::before {
  position: absolute;
  content: "Q";
  top: 20px;
  left: 20px;
}
@media (max-width: 767px) {
  .qa-question {
    font-size: 5.5vw;
    padding: 3vw 56px;
    border-left: 5vw solid #333333;
  }
}

.qa-question-icon {
  width: 14px;
  height: 14px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.qa-question-icon.is-open .qa_question_icon2 {
  transform: rotate(90deg);
}

.qa-question-icon1 {
  position: absolute;
  width: 14px;
  height: 2px;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border-radius: 20px;
}

.qa-question-icon2 {
  position: absolute;
  width: 2px;
  height: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  top: 0;
  border-radius: 20px;
  transition: all 0.3s ease 0s;
}

.qa-answer-container {
  padding: 16px 30px 16px 20px;
  font-size: 20px;
  font-weight: 400;
  text-align: left;
  display: none;
}

.qa-answer {
  font-size: 20px;
  position: relative;
  padding-left: 35px;
}
.qa-answer::before {
  position: absolute;
  content: "A";
  top: 0;
  left: 0;
  color: #E50019;
}

footer {
  background-color: #F1F6FF;
}

.footer-container {
  display: flex;
}
@media (max-width: 767px) {
  .footer-container {
    display: block;
  }
}
.footer-container .footer-l {
  width: 50%;
  padding: 60px 0 0 50px;
}
@media (max-width: 767px) {
  .footer-container .footer-l {
    width: 100%;
    padding: 30px 0 0 0;
  }
}
.footer-container .footer-l .corporate-name {
  font-size: 20px;
  color: #0B58D7;
  line-height: 40px;
  text-align: left;
  margin-right: 10%;
  border-top: 2px solid #0B58D7;
  border-bottom: 2px solid #0B58D7;
}
@media (max-width: 767px) {
  .footer-container .footer-l .corporate-name {
    text-align: center;
    width: 90%;
    margin: 0 5% 0 5%;
  }
}
.footer-container .footer-l .footer-contact-container {
  display: flex;
  width: 90%;
}
@media (max-width: 767px) {
  .footer-container .footer-l .footer-contact-container {
    display: block;
  }
}
.footer-container .footer-l .tel-mail {
  width: 50%;
  margin-right: 10%;
}
@media (max-width: 767px) {
  .footer-container .footer-l .tel-mail {
    width: 100%;
    margin: 0 5%;
  }
}
.footer-container .footer-l .tel {
  font-size: 2vw;
  color: #0B58D7;
  text-align: left;
  margin-top: 10px;
  width: 100%;
}
@media (max-width: 767px) {
  .footer-container .footer-l .tel {
    font-size: 9.5vw;
    width: 100%;
  }
}
.footer-container .footer-l .mail {
  font-size: 1.5vw;
  color: #0B58D7;
  text-align: left;
}
@media (max-width: 767px) {
  .footer-container .footer-l .mail {
    font-size: 5vw;
  }
}
.footer-container .footer-l .footer-contact {
  font-size: 18px;
  color: #fff;
  padding: 10px 3vw;
  width: 100%;
  background-color: #E50019;
  border-radius: 10px;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .footer-container .footer-l .footer-contact {
    display: none;
  }
}
.footer-container .footer-l .footer-contact-sp {
  display: none;
}
@media (max-width: 767px) {
  .footer-container .footer-l .footer-contact-sp {
    display: block;
    font-size: 5vw;
    padding: 7vw 0;
    margin: 15px 5% 0 5%;
    color: #fff;
    width: 100%;
    background-color: #E50019;
    border-radius: 10px;
  }
}
.footer-container .footer-l ul li {
  background-color: #fff;
  margin: 15px 10% 15px 0;
  line-height: 40px;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .footer-container .footer-l ul li {
    margin: 15px 5%;
  }
}
.footer-container .footer-l ul a {
  color: #333333;
  font-size: 18px;
}
.footer-container .footer-r {
  width: 50%;
}
@media (max-width: 767px) {
  .footer-container .footer-r {
    display: none;
  }
}
.footer-container .footer-r-sp {
  display: none;
}
@media (max-width: 767px) {
  .footer-container .footer-r-sp {
    display: block;
    width: 100%;
  }
}

.under {
  background-color: #333333;
  color: #fff;
  font-size: 18px;
  line-height: 50px;
}
@media (max-width: 767px) {
  .under {
    font-size: 4vw;
  }
}

.contact-form {
  width: 100%;
  padding: 20vw 0 20vw;
  background: #F1F6FF;
  color: #333333;
  text-align: left;
}
@media (max-width: 767px) {
  .contact-form {
    padding: 30vw 0 10vw;
  }
}
.contact-form .contact-inner {
  padding: 50px 5% 20px;
}
@media (max-width: 767px) {
  .contact-form .contact-inner {
    padding: 20px 5%;
  }
}

.contact-form-title {
  text-align: center;
  font-size: 3vw;
  font-weight: 500;
  color: #0B58D7;
}
@media (max-width: 767px) {
  .contact-form-title {
    font-size: 8vw;
  }
}

textarea {
  width: 100%;
}

.field {
  width: 100%;
  line-height: 2.5em;
}

.field-2 {
  width: 50%;
  line-height: 2.5em;
}

label {
  line-height: 2em;
}

.wpcf7-submit {
  width: 50%;
  padding: 1.5vw 0;
  margin: 100px 25% 0;
  background: #0B58D7;
  border: 1px solid #fff;
  border-radius: 999px;
  box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 2vw;
  letter-spacing: 1em;
}
@media (max-width: 767px) {
  .wpcf7-submit {
    width: 100%;
    margin: 30px 0 0;
    font-size: 4vw;
    padding: 3vw 0;
  }
}
.wpcf7-submit:hover {
  opacity: 0.7;
  background: #fff;
  color: #0B58D7;
  border: 1px solid #0B58D7;
}

.privacy-policy {
  height: 15.3em; /* 高さを制限(※) */
  overflow: scroll; /* スクロールバーを表示(※) */
  background-color: #ffffff; /* 背景色を追加 */
  color: #333333;
  font-family: "Noto Sans JP";
  font-weight: 300;
  padding-left: 5%;
}
.privacy-policy p {
  margin: 0;
}
.privacy-policy li {
  list-style: none;
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 767px) {
  .privacy-policy li {
    font-size: 14px;
  }
}
.privacy-policy li p {
  margin: 0;
}
.privacy-policy .pp-title {
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .privacy-policy .pp-title {
    font-size: 20px;
  }
}
.privacy-policy .pp-sub-title {
  font-size: 18px;
  font-weight: 500;
  margin-top: 3vw;
}
@media (max-width: 767px) {
  .privacy-policy .pp-sub-title {
    font-size: 16px;
  }
}
.privacy-policy .pp-text {
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 767px) {
  .privacy-policy .pp-text {
    font-size: 14px;
  }
}

.check-box {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1.5em;
}

.entry-404 {
  padding: 20vw 0 5vw;
}

.entry-404-head {
  color: #E50019;
}

.entry-404-lead {
  margin-top: 3vw;
  margin-bottom: 3vw;
}/*# sourceMappingURL=style.css.map */