ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

:root {
  --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
    "Source Han Sans CN", sans-serif;
}

img {
  width: 100%;
}

body {
  margin: 0 auto;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.7;
  color: #000;
  background-image: url(img/mv_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.main {
  display: flex;
  justify-content: space-around;
  gap: 100px;
  max-width: 1000px;
  margin: auto;
}
.main .pc_nav {
  width: 100%;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .main .pc_nav {
    display: none;
  }
}
.main .pc_nav .pc_nav_wrap {
  margin-top: 100px;
}
.main .pc_nav .pc_nav_list {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 40px 0px;
  margin: 40px auto;
}
.main .pc_nav .pc_nav_list li {
  margin-bottom: 20px;
}
.main .pc_nav .pc_nav_list li a:hover {
  opacity: 0.5;
}
.main .pc_nav .pc_nav_logo {
  max-width: 277px;
  position: absolute;
  top: 20px;
  left: 40px;
}

a {
  color: #000;
  text-decoration: none;
}

.mv_bg {
  background-image: url(img/mv_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.menu {
  width: 30px;
  cursor: pointer;
  position: fixed;
  right: 20px;
  z-index: 10;
}
.menu span {
  display: block;
  height: 4px;
  margin: 6px 0;
  background: #2770b9;
}
@media screen and (min-width: 768px) {
  .menu {
    display: none;
  }
}

.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2f61ad;
  z-index: 999;
  display: none;
  color: #fff;
}
.global-nav .nav-inner {
  padding: 60px 20px;
}
.global-nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 10px;
  margin-top: 30px;
}
.global-nav ul li a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.global-nav ul li a span {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-top: 4px;
  color: #fff;
  -webkit-text-stroke: 0.5px #000;
}
.global-nav .close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
}

main {
  background-color: #fff;
  background-image: linear-gradient(to right, #e5e5e5 1px, transparent 1px),
    linear-gradient(to bottom, #e5e5e5 1px, transparent 1px);
  background-size: 20px 20px;
  max-width: 400px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

header {
  padding: 20px;
  display: flex;
  justify-content: center;
}
header .logo {
  max-width: 150px;
  margin-right: auto;
}

.anchor ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, #afeafc 0%, #2770b9 100%);
}
.anchor ul li {
  text-align: center;
  padding: 10px 5px 10px 5px;
  width: 100%;
  line-height: 18px;
  position: relative;
  color: #fff;
  font-size: 14px;
}
.anchor ul li span {
  font-size: 12px;
}
.anchor ul li::after {
  content: "";
  display: block;
  height: 50px;
  background: #fff;
  width: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.anchor ul li:nth-child(1)::after {
  display: none;
}

.mv {
  position: relative;
}
.mv .mv_img {
  max-width: 80%;
  margin-left: auto;
}
.mv .mv_text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  max-width: 80%;
}

.what {
  padding: 50px 20px;
}
.what p {
  margin: 20px auto;
}
.what .what_logo {
  max-width: 180px;
  margin: auto;
}

.cta {
  background: #2770b9;
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px;
  border-radius: 14px;
  margin-top: 20px;
  text-align: center;
  font-size: 18px;
  position: relative;
}
.cta span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 8px;
}

.brand {
  background: #d5eefd;
  padding: 50px 20px;
}

.cta_wrap {
  padding: 50px 20px;
}

.recommend {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.recommend .recommend_box {
  display: flex;
  max-width: 380px;
  justify-content: space-between;
  align-items: center;
  margin: 30px auto -30px auto;
  padding: 10px;
}
.recommend .recommend_box img {
  max-width: 32%;
}

.flow {
  background: #d5eefd;
  padding: 50px 20px;
}

.form {
  padding: 50px 20px;
}
.form img {
  margin-bottom: 30px;
}
.form .form_box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: center;
  gap: 20px;
}
.form .form_box label {
  font-size: 13px;
}
.form .form_box input {
  border: none;
  outline: none;
  background: #d5eefd;
  padding: 10px;
  max-width: 200px;
}
.form .form_at {
  font-size: 13px;
  margin-bottom: 20px;
}

.submit {
  background: #2770b9;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
}
.submit span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 8px;
}
.submit .wpcf7-submit {
  border: none;
  background: #2770b9;
  color: #fff;
}

footer {
  background: #d5eefd;
  padding: 50px 20px;
  text-align: center;
}
footer img {
  margin-bottom: 30px;
}
footer p {
  margin: 10px auto;
}
footer .c {
  font-size: 12px;
}
footer a {
  border-bottom: 1px solid #000;
}

.screen-reader-response {
  display: none;
}

.wpcf7-not-valid-tip {
  display: block;
  color: red;
  font-size: 12px;
}

.wpcf7-select {
  max-width: 200px;
  width: 100%;
  border: none;
  padding: 12px 23px;
  outline: none;
  font-size: 13px;
  background: #d5eefd;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-left: 20px;
  color: #000;
} /*# sourceMappingURL=style.css.map */

.thanks {
  padding: 20px;
  display: block;
  max-width: 95%;
  margin: auto;
}
.thanks .thanks_wrap {
  background: #fff;
  padding: 30px 15px;
}
.thanks .thanks_tt {
  font-weight: bold;
  color: #6699cc;
  font-size: 21px;
  margin-bottom: 30px;
  text-align: center;
  word-break: keep-all;
}
.thanks .thanks .thanks_text {
  margin-bottom: 30px;
}
.thanks .thanks_top {
  max-width: 300px;
  margin: auto;
  width: 100%;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #2e2e2e;
  border-radius: 50px;
  margin-top: 30px;
  font-size: 14px;
}
.thanks .line-btn {
  margin-top: 40px;
  width: 100%;
}
.thanks .btn-subtit {
  text-align: center;
  margin: 0 auto;
  margin: 0;
  font-size: 18px;
  letter-spacing: 4px;
  font-weight: bold;
  color: #565656;
}
.thanks .thanks_text {
  text-align: center;
  font-weight: bold;
}
.thanks a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  width: 50%;
  height: 50px;
  border-radius: 50px;
  padding: 4px;
  background: #20b44e;
  color: #fff;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
  box-sizing: border-box;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2), 0 -4px 5px -2px #436f51 inset;
}
.thanks a:hover {
  opacity: 0.7;
}

@media (max-width: 600px) {
  .thanks a {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .thanksBoxs h1 {
    font-size: 24px;
  }
}

/* ローディング画面のスタイル */
/* ローディング画面のスタイル */
.loading {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  z-index: 10000;
  transition: opacity 0.3s ease-in-out;
}
.loading::before {
  content: "";
  width: 50px;
  height: 50px;
  border: 5px solid white;
  border-top: 5px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* 回転アニメーション */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
