@charset "UTF-8";
/* CSS Document */
html {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  color: #202121;
  font-size: 62.5%;
}
body {
  color: #202121;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  font-feature-settings: "palt"1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
@media screen and (max-width: 1000px) { /*---------------------------SP----- */
  body {
    font-size: 1.5rem;
    line-height: 1.875em;
    letter-spacing: 0.1em;
  }
}
@media only screen and (min-width: 781px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
main p {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  main p {
    margin-bottom: 1.4em;
  }
}
.btn {
  max-width: 600px;
  width: 100%;
  font-size: 30px;
  text-align: center;
  display: block;
  padding: 17px 20px;
  background-color: #03306D;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.2em;
  transition: all 0.3s;
  margin: 0 auto;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1000px) {
  .btn {
    font-size: 20px;
    padding: 12px 20px;
  }
}
.btn:hover {
  opacity: 0.7;
}
.btn::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(./image/button-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 10px;
  position: relative;
  top: -2px;
}
@media screen and (max-width: 1000px) {
  .btn::after {
    width: 16px;
    height: 16px;
  }
}
/* header
--------------------------------------------------------*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 20px 26px;
  letter-spacing: 1px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.16);
}
header {
  position: fixed;
  z-index: 9999;
  top: 0;
  height: 70px;
}
@media screen and (max-width: 1000px) {
  header {
    height: 50px;
  }
}
header .logo {
  height: 40px;
  width: auto;
}
@media screen and (max-width: 1000px) {
  header .logo {
    height: 30px;
  }
}
header img {
  height: 100%;
  width: auto;
}
header ul {
  display: flex;
  align-items: center;
}
header li {
  font-size: 1.6rem;
  font-weight: bold;
  margin-right: 2em;
}
header li.contact {
  margin-right: 0;
  color: #fff;
  background-color: #03306D;
  border-radius: 6px;
}
header li.contact a {
  display: block;
  padding: 6px 38px 7px;
  text-decoration: none;
  color: #fff !important;
}
header li a {
  color: #202121;
  text-decoration: none;
}
header li a:hover {
  color: #202121;
  text-decoration: underline;
}
header li.contact:hover {
  text-decoration: none;
  background-color: #0F6AB5;
}
header li.contact a:hover {
  text-decoration: none;
}
.head_btn a {
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 100px;
  background-color: #FFCC00;
  color: #202121;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 34px;
  transition: all 0.3s;
}
.head_btn a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1120px) { /*---------------------------SP----- */
  .head_navi ul {
    display: none;
  }
}
@media screen and (max-width: 1000px) { /*---------------------------SP----- */
  header, .mv_head {
    padding: 10px 20px 10px 18px;
  }
  .head_navi .head_logo {
    height: 30px;
    width: auto;
    margin-right: 0px;
  }
  .head_btn a {
    font-size: 13px;
    padding: 6px 14px;
  }
}
.hamburger {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 10000;
}
@media screen and (max-width: 1000px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #202121;
  position: absolute;
  transition: all 0.3s;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger span:nth-child(3) {
  bottom: 0;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
@media screen and (max-width: 1000px) {
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s;
    padding-top: 100px;
    z-index: 9999;
  }
  nav.active {
    right: 0;
  }
  nav ul {
    display: block;
    padding: 0 30px;
  }
  nav ul li {
    margin: 0 0 30px 0;
    text-align: left;
  }
  nav ul li.contact {
    margin: 40px auto 0;
    width: -moz-fit-content;
    width: fit-content;
    padding: 12px 40px;
  }
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}
.overlay.active {
  display: block;
}
.inner {
  max-width: 1260px;
  padding: 0 80px;
  margin: 0 auto;
}
@media screen and (max-width: 1099px) {
  .inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 20px;
  }
}
.default-heading {
  font-size: 40px;
  letter-spacing: 0.02em;
  font-weight: 700;
  line-height: 1.475;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .default-heading {
    font-size: 26px;
  }
}
.sm-heading {
  font-size: 34px;
  letter-spacing: 0.02em;
  font-weight: 700;
  line-height: 1.475;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .sm-heading {
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
  }
}
.cta-heading {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .cta-heading {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .cta-heading {
    font-size: 13px;
  }
}
.bk-main-color {
  background-color: #EAEFF5;
}
/* mv
--------------------------------------------------------*/
.sec_mv {
  margin-top: 70px;
  background-image: url(./image/mv_bg.jpg);
  background-size: cover;
  background-position: bottom center;
}
@media screen and (max-width: 1000px) {
  .sec_mv {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .sec_mv {
    background: url(./image/mv_bg.jpg) bottom center no-repeat #01377B;
    background-size: 100%;
  }
}
@media screen and (max-width: 360px) {
  .sec_mv {
    background: url(./image/mv_bg.jpg) bottom center no-repeat #01377B;
    background-size: 100%;
  }
}
.mv_main h2 .sp450 {
  display: none;
}
@media screen and (max-width: 450px) {
  .mv_main h2 .sp450 {
    display: block;
  }
}
.mv_wrap {
  max-width: 1130px;
  margin: 0 auto;
  padding: 50px 0;
}
@media screen and (max-width: 1000px) {
  .mv_wrap {
    padding: 20px 0;
  }
}
.mv_main {
  color: #fff;
  text-align: center;
  padding: 0;
}
.content-form {
  width: 390px;
}
.mv_main h2 {
  max-width: 608px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1249px) {
  .mv_main h2 {
    font-size: 20px;
    line-height: 1.5;
  }
}
.mv_main h2 span {
  font-size: 50px;
  font-weight: 200;
  position: relative;
  top: -4px;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 1249px) {
  .mv_main h2 span {
    font-size: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .mv_main h2 span {
    font-size: 24px;
    padding-right: 10px;
    padding-left: 10px;
    top: -2px;
  }
}
.mv_main h1 {
  font-size: 50px;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.5;
  margin-bottom: 10px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1249px) {
  .mv_main h1 {
    font-size: 36px;
  }
}
.mv_main h1 .mv_main__small {
  font-size: 40px;
}
@media screen and (max-width: 1249px) {
  .mv_main h1 .mv_main__small {
    font-size: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .mv_main h1 .mv_main__small {
    font-size: 18px;
  }
}
.mv_main h1 .mv_main__big {
  font-size: 84px;
  line-height: 1.3;
}
@media screen and (max-width: 1249px) {
  .mv_main h1 .mv_main__big {
    font-size: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .mv_main h1 .mv_main__big {
    font-size: 38px;
  }
}
.mv_main h1 strong {
  font-size: 6rem;
  font-weight: 900;
  background-color: #4156F8;
  color: #fff;
  display: inline-block;
  line-height: 1em;
  padding: 5px 5px 8px;
}
.mv_main h1 span.h1a {
  font-size: 3.6rem;
  font-weight: 900;
}
.mv_main h1 span.h1b {
  font-size: 4.8rem;
  font-weight: 900;
}
.mv_main h1 span.h1c {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1.3em;
}
.mv_main .contact {
  margin: 0;
}
.mv_main .contact a {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  width: 100%;
  max-width: 400px;
	border: 2px solid #fff;
  border-radius: 8px;
  background-color: #03306D;
  color: #fff;
  margin: 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0 16px;
  text-decoration: none;
  transition: all 0.3s;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.mv_main .contact a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 14px;
  background-image: url(./image/button-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 10px;
  position: relative;
  top: 1px;
}
.mv_main .contact a:hover {
  background-color: #4A6A93;
}
@media screen and (max-width: 768px) { /*---------------------------SP----- */
	.mv_main .contact a {
		font-size: 18px;
	  padding: 10px 0 11px;
	}
}

@media screen and (max-width: 1180px) { /*---------------------------SP----- */
  .mv_main h1 {
    font-size: 4rem;
  }
  .mv_main h1 strong {
    font-size: 4.4rem;
  }
  .mv_main h2 {
    max-width: 500px;
  }
  .mv_main h1 span.h1b {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1020px) { /*---------------------------SP----- */
  .mv_main {
    padding-left: 0;
  }
}
@media screen and (max-width: 960px) { /*---------------------------SP----- */
  .mv_main {
    width: 65%;
    margin-right: 40px;
    padding-left: 0;
  }
  .content-form {
    width: 35%;
  }
  .mv_main .pc {
    display: none !important;
  }
  .mv_main .sp {
    display: block !important;
  }
}
@media screen and (max-width: 920px) { /*---------------------------SP----- */
  .mv_main h1 {
    font-size: 3rem;
  }
  .mv_main h1 strong {
    font-size: 3.4rem;
  }
  .mv_main h2 {
    max-width: 500px;
  }
  .mv_main h1 span.h1a {
    font-size: 2.4rem;
  }
  .mv_main h1 span.h1b {
    font-size: 2.4rem;
  }
  .mv_main h1 span.h1c {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 1000px) { /*---------------------------SP----- */
  .mv_wrap {
    max-width: 100%;
    display: block;
  }
  .mv_main {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
    padding: 30px 0;
  }
  .content-form {
    width: 100%;
  }
  .mv_main h2 {
    max-width: 100%;
    line-height: 1.6;
    font-size: 14px;
  }
  .mv_main h1 {
    font-size: 2.2rem;
    margin-bottom: 14px;
    text-align: center;
  }
  .mv_main h1 strong {
    font-size: 3.1rem;
    line-height: 1em;
    padding: 8px 5px 8px;
  }
  .mv_main h1 span.h1a {
    font-size: 1.8rem;
  }
  .mv_main h1 span.h1b {
    font-size: 2rem;
  }
  .mv_main h1 span.h1c {
    font-size: 3.2rem;
    line-height: 1.5em;
  }
}
/* mv form
--------------------------------------------------------*/
.mv .content-form {
  background-color: #fff;
  border-radius: 0;
  padding: 26px 24px 20px 24px;
}
@media screen and (max-width: 1000px) {
  .mv .content-form {
    padding: 30px 24px 20px;
  }
}
@media screen and (max-width: 768px) {
  .mv .content-form {
    padding: 20px 20px 0;
  }
}
.form-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  line-height: 1.1;
  padding-bottom: 10px;
  border-bottom: 2px solid #03306D;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.form-title span {
  font-family: "Roboto", sans-serif;
  font-size: 4.6rem;
}
.sankaku {
  width: 32px;
  margin: 0 auto;
}
.mv .content-form form {
  width: 100%;
  margin: 0 auto;
  border: none;
}
.mv .content-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 1px;
  font-size: 14px;
}
.mv .content-form input {
  width: 100%;
  background-color: #fff;
  border: solid 1px #707070;
  box-shadow: none;
  padding: 4px 6px;
  font-size: 15px;
}
.mv .content-form .name input {
  width: 49%;
}
.mv .content-form .form-group {
  margin-bottom: 8px;
}
.mv .content-form .privacy {
  font-size: 10px;
  margin-bottom: 10px;
}
.mv .content-form .form-box .button-wrap button {
  cursor: pointer;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  max-width: 476px;
  border-radius: 8px;
  background-color: #03306D;
  color: #fff;
  border: none;
  margin: 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  transition: all 0.3s;
}
.mv .content-form .form-box .button-wrap button::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 14px;
  background-image: url(./image/button-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 10px;
  position: relative;
  top: 1px;
}
.mv .content-form .form-box .button-wrap button:hover {
  opacity: 0.7;
}
.mv .content-form select {
  width: 100%;
  background-color: #fff;
  border: solid 1px #707070;
  box-shadow: none;
  padding: 10px;
  font-size: 15px;
}
@media screen and (max-width: 1050px) { /*---------------------------SP----- */
  .form-title {
    font-size: 2rem;
    padding: 10px;
  }
  .form-title span {
    font-size: 3rem;
  }
  .sankaku {
    width: 30px;
  }
  .mv .content-form .name input {
    width: 48%;
  }
  .mv .content-form .form-group {
    margin-bottom: 14px;
  }
  .mv .content-form .privacy {
    font-size: 12px;
  }
  .mv .content-form .form-box {
    padding-bottom: 20px;
  }
  .mv .content-form .form-box .button-wrap button {
    width: 220px;
  }
}
@media screen and (max-width: 900px) { /*---------------------------SP----- */
  .form-title {
    font-size: 1.7rem;
  }
  .form-title span {
    font-size: 2.4rem;
  }
  .sankaku {
    width: 20px;
  }
  .mv .content-form .name input {
    width: 48%;
  }
  .mv .content-form .form-group {
    margin-bottom: 14px;
  }
  .mv .content-form .form-box {
    padding-bottom: 20px;
  }
  .mv .content-form .form-box .button-wrap button {
    font-size: 1.6rem;
    width: 100%;
  }
}
@media screen and (max-width: 1000px) { /*---------------------------SP----- */
  .form-title {
    font-size: 1.6rem;
    padding: 0 0 10px;
  }
  .form-title span {
    font-size: 3rem;
  }
  .sankaku {
    width: 28px;
    margin: 0 auto;
  }
  .mv .content-form label {
    margin-bottom: 2px;
  }
  .mv .content-form .name input {
    width: 46%;
  }
  .mv .content-form .form-group {
    margin-bottom: 10px;
  }
  .mv .content-form .privacy {
    font-size: 10px;
    line-height: 1.4;
  }
  .mv .content-form .form-box {
    padding-bottom: 10px;
  }
  .mv .content-form .form-box .button-wrap button {
    font-size: 16px;
    max-width: 240px;
  }
}
/* client
--------------------------------------------------------*/
.client h2 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.8;
  padding: 30px 0 0;
}
.client h2 br {
  display: none;
}
.client h2 img {
  width: 198px;
  height: auto;
  margin-right: 10px;
  vertical-align: top;
  display: inline;
}
.mv_kome {
  font-size: 10px;
  text-align: right;
  max-width: 1130px;
  margin: 0 auto 0;
  padding-right: 20px;
  line-height: 1;
}
@media screen and (max-width: 768px) { /*---------------------------SP----- */
  .form-title {
    font-size: 1.4rem;
  }
  .client {
    max-width: 100%;
    margin: 16px auto 0;
  }
  .client h2 {
    font-size: 15px;
    margin-bottom: 4px;
    line-height: 1.6;
    padding: 0;
  }
  .client h2 br {
    display: block;
  }
  .client h2 img {
    max-width: 154px;
    width: 100%;
    margin-right: 5px;
    vertical-align: baseline;
  }
  .mv_kome {
    font-size: 11px;
    max-width: 100%;
    margin: 4px auto 0;
  }
}
.scroll {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background-color: #fff;
  padding: 10px 0;
}
.scroll ul {
  display: flex;
  gap: 40px; /* 画像の間隔調整 */
  animation: scroll-left 80s linear infinite;
  width: -moz-max-content;
  width: max-content;
}
.scroll ul::after {
  content: "";
  display: flex;
  gap: 40px;
  width: -moz-max-content;
  width: max-content;
  animation: inherit;
}
.scroll li {
  flex-shrink: 0;
  list-style: none;
}
.scroll img {
  height: 40px;
  width: auto; /* 横幅は自動調整 */
  display: block;
}
@media screen and (max-width: 768px) { /*---------------------------SP----- */
  .scroll img {
    height: 24px;
    width: auto; /* 横幅は自動調整 */
    display: block;
  }
}
@keyframes scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
/* sec01
--------------------------------------------------------*/
.sec01 {
  padding: 80px 0;
  border-top: 1px solid #B1B1B1;
  margin-top: 12px;
}
@media screen and (max-width: 1000px) {
  .sec01 {
    padding: 60px 0;
  }
}
.sec01 .default-heading {
  letter-spacing: 0.1em;
}
.sec01 .sec01__box {
  position: relative;
  margin: 30px auto;
  max-width: 660px;
}
.sec01 .sec01__box img {
  position: absolute;
  top: 0;
  right: -80px;
  width: 163px;
}
@media screen and (max-width: 1000px) {
  .sec01 .sec01__box img {
    display: none;
  }
}
.sec01 ul li {
  font-size: 24px;
  line-height: 1.875;
  border-bottom: 1px solid #03306D;
  padding: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .sec01 ul li {
    font-size: 18px;
    line-height: 1.6;
  }
}
.sec01 ul li::before {
  content: "";
  display: inline-block;
  width: 29px;
  height: 24px;
  background-image: url(./image/sec01_check.png);
  background-size: 26px auto;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 12px;
}
@media screen and (max-width: 768px) {
  .sec01 .sec01__box {
    margin: 10px auto 20px;
  }
  .sec01 ul li {
    font-size: 16px;
    line-height: 1.4;
    padding-left: 42px;
    background-image: url(./image/sec01_check.png);
    background-size: 22px auto;
    background-repeat: no-repeat;
    background-position: left 10px center;
  }
  .sec01 ul li::before {
    content: none;
  }
}
.sec01__arrow {
  width: 140px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .sec01__arrow {
    width: 100px;
  }
}
.sec01__text {
  font-size: 40px;
  line-height: 1.875;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 1000px) {
  .sec01__text {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .sec01__text {
    font-size: 20px;
  }
}
.sec01__text span {
  color: #185F97;
  font-size: 50px;
  letter-spacing: 0.1em;
  display: inline-block;
  margin: 0 4px;
}
@media screen and (max-width: 1000px) {
  .sec01__text span {
    font-size: 32px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 768px) {
  .sec01__text span {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) { /*---------------------------SP----- */
}
/* sec02
--------------------------------------------------------*/
.sec02 {
  padding: 80px 0;
  background-color: #EAEFF5;
  position: relative;
}
.sec02_bk {
  position: absolute;
  top: -60px;
  left: -45px;
  width: 249px;
  height: 228px;
}
@media screen and (max-width: 1000px) {
  .sec02_bk {
    width: 159px;
    height: 128px;
  }
}
.sec02_01, .sec02_02, .sec02_03 {
  max-width: 1130px;
  margin: 0 auto 60px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.sec02_01 h2, .sec02_02 h2, .sec02_03 h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.sec02_01 h2::before, .sec02_02 h2::before, .sec02_03 h2::before {
  position: absolute;
  top: -90px;
  left: 0;
  content: "";
  display: block;
  width: 159px;
  height: 128px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .sec02_01 h2::before, .sec02_02 h2::before, .sec02_03 h2::before {
    top: -30px;
    left: -10px;
    width: 80px;
    height: 49px;
  }
}
.sec02_01 h2::after, .sec02_02 h2::after, .sec02_03 h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background-color: #fff;
  margin-top: 24px;
}
@media screen and (max-width: 1000px) {
  .sec02_01 h2::after, .sec02_02 h2::after, .sec02_03 h2::after {
    margin-top: 12px;
  }
}
.sec02_01 p, .sec02_02 p, .sec02_03 p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 0;
}
.sec02_01 {
  margin-bottom: 20px;
}
.sec02_02__text {
  order: 2;
}
@media screen and (max-width: 1000px) {
  .sec02_02__text {
    order: 1;
  }
}
.sec02_02__img {
  order: 1;
}
@media screen and (max-width: 1000px) {
  .sec02_02__img {
    order: 2;
  }
}
.sec02_01 h2::before {
  content: "";
  background-image: url("./image/sec02_no01.png");
}
.sec02_02 h2::before {
  content: "";
  background-image: url("./image/sec02_no02.png");
}
.sec02_03 h2::before {
  content: "";
  background-image: url("./image/sec02_no03.png");
}
@media screen and (max-width: 1000px) {
  .sec02 {
    padding: 80px 0 40px;
  }
  .sec02_01, .sec02_02, .sec02_03 {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .sec02_01 h2, .sec02_02 h2, .sec02_03 h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }
  .sec02_01 p, .sec02_02 p, .sec02_03 p {
    font-size: 1.4rem;
  }
  .sec02_01::before, .sec02_02::before, .sec02_03::before {
    height: 200px;
  }
  .sec02_02 h2, .sec02_02 p {
    order: 0;
  }
  .sec02_02::before {
    order: 0;
  }
}
.sec02__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0;
}
@media screen and (max-width: 1000px) {
  .sec02__list {
    margin-bottom: 80px;
  }
}
.sec02__list li {
  background: #fff;
  padding: 40px 25px 20px;
  border-top: 2px solid #185F97;
  position: relative;
}
.sec02__list li h4 {
  width: 170px;
  text-align: center;
  padding: 0 0 1px;
  background: #185F97;
  position: absolute;
  top: -2px;
  left: 50%; /* Safari用 */
  transform: translate(-50%, 2px);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.sec02__list li h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 13px;
  text-align: center;
}
.sec02__list li p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .sec02__list {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }
  .sec02__list li {
    padding: 50px 20px 20px;
  }
  .sec02__list li h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .sec02__list li p {
    font-size: 14px;
  }
}
/* sec03
--------------------------------------------------------*/
.sec03 {
  padding: 100px 0;
}
@media screen and (max-width: 1000px) {
  .sec03 {
    padding: 60px 0;
  }
}
.sec03__text {
  text-align: center;
  margin-bottom: 0;
  margin-top: 30px;
}
@media screen and (max-width: 1000px) {
  .sec03__text {
    text-align: left;
  }
}
.sec03__img {
  max-width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px 0;
  margin-top: 40px;
}
.sec03__img img {
  width: 50%;
  height: auto;
}
@media screen and (max-width: 768px) { /*---------------------------SP----- */
  .sec03__img {
    display: block;
    margin-top: 0;
  }
  .sec03__img img {
    width: 100%;
    margin-top: 20px;
  }
}
/* sec04
--------------------------------------------------------*/
.sec04 {
  padding: 40px 0 42px;
  background-color: #EAEFF5;
}
@media screen and (max-width: 768px) { /*---------------------------SP----- */
}
/* sec05
--------------------------------------------------------*/
.sec05 {
  padding: 80px 0;
  background-color: #fff;
}
@media screen and (max-width: 1000px) {
  .sec05 {
    padding: 60px 0;
  }
}
.sec05__text {
  text-align: center;
  margin-bottom: 60px;
  margin-top: 30px;
}
@media screen and (max-width: 1000px) {
  .sec05__text {
    margin-bottom: 40px;
  }
}
.sec05 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 70px;
  max-width: 950px;
  margin: 0 auto;
  padding: 0;
}
.sec05 li {
  border-radius: 0;
  padding: 0;
}
.sec05 li img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 12px;
}
.sec05 li h4 {
  font-size: 1.3rem;
  color: #185F97;
  margin-bottom: 0;
}
.sec05 li h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #185F97;
  border-bottom: 2px solid #efefef;
  padding-bottom: 10px;
}
.sec05 li p {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.sec05 li h5 {
  display: inline-block;
  font-size: 1.4rem;
  color: #0251B7;
  border: 1px solid #0251B7;
  padding: 0 16px 1px;
  border-radius: 0;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  .sec05__text {
    text-align: left;
  }
  .sec05__text br {
    display: none;
  }
  .sec05 ul {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .sec05 li img {
    margin-bottom: 16px;
  }
  .sec05 li h3 {
    font-size: 1.8rem;
  }
  .sec05 li p {
    font-size: 1.4rem;
  }
}
/* sec06
--------------------------------------------------------*/
.sec06 {
  padding: 0 0 120px;
}
@media screen and (max-width: 1000px) {
  .sec06 {
    padding: 0 0 60px;
  }
}
.sec06 .sm-heading {
  padding: 26px 20px 27px;
  margin-bottom: 36px;
}
.sec06__box {
  max-width: 890px;
  margin: 0 auto 60px;
}
.sec06 .cta-heading {
  margin-top: 60px;
}
@media screen and (max-width: 768px) { /*---------------------------SP----- */
  .sec06__box {
    margin: 0 auto 24px;
  }
}
/* sec07
--------------------------------------------------------*/
.sec07 {
  padding: 80px 0;
  background-color: #EAEFF5;
}
.sec07 .inner {
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.sec07 .default-heading {
  text-align: center;
  margin-bottom: 60px;
}
.sec07 ul {
  display: flex;
  gap: 40px 13px;
  margin-bottom: 30px;
}
.sec07 li {
  background: #fff;
  padding: 20px;
  text-align: center;
  width: 250px;
  max-width: 100%;
}
.sec07 li h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 5px;
  line-height: 1;
}
.sec07 li h3 span {
  font-family: "Roboto", sans-serif;
  color: #03306D;
  font-size: 4rem;
  display: block;
  margin-bottom: 0;
}
.sec07 li img {
  width: 160px;
  height: auto;
  margin: 0 auto 20px;
}
.sec07 li p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 0;
}
.sec07 li p .btn {
  display: inline-block;
  font-size: 1.4rem;
  padding: 4px 24px 5px;
  margin-top: 8px;
  max-width: 160px;
  margin: 8px auto 0;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .sec07 li p .btn {
    display: block;
  }
}
.sec07 li p .btn::after {
  content: none;
}
.sec07 .sec07_02 {
  margin-left: auto;
  justify-content: flex-end;
}
@media screen and (max-width: 1000px) {
  .sec07 {
    padding: 40px 0;
  }
  .sec07 ul {
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
  }
  .sec07 li {
    padding: 16px;
    width: 100%;
  }
  .sec07 li h3 {
    font-size: 1.6rem;
    justify-content: center;
  }
  .sec07 li h3 span {
    font-size: 2rem;
  }
  .sec07 li img {
    width: 120px;
  }
  .sec07 li p {
    font-size: 1.3rem;
  }
  .sec07 .sec07_02 {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) { /*---------------------------SP----- */
  .sec07 .default-heading {
    text-align: center;
    margin-bottom: 20px;
  }
}
/* form
--------------------------------------------------------*/
.form_area {
  position: relative;
  padding: 100px 30px 80px;
}
@media screen and (max-width: 1000px) {
  .form_area {
    padding: 60px 0 40px;
  }
}
.form_area__bg {
  position: absolute;
  top: 0;
  left: 50%; /* Safari用 */
  transform: translate(-50%, 0%);
  width: 94px;
}
@media screen and (max-width: 1000px) {
  .form_area__bg {
    width: 50px;
  }
}
.form_area__text {
  line-height: 2;
  text-align: center;
  margin-bottom: 0;
  margin-top: 30px;
}
@media screen and (max-width: 1000px) {
  .form_area__text {
    text-align: left;
  }
}
.form_intro {
  max-width: 800px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  color: #fff;
}
.form_intro_txt {
  padding-right: 40px;
}
.form_intro_txt h2 {
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1;
}
.form_intro_txt p {
  font-weight: bold;
  line-height: 1.8;
}
.form_intro img {
  width: 280px;
}
.cta__form {
  max-width: 750px;
  margin: 40px auto 0;
  background-color: #fff;
  padding: 30px 40px 40px;
  border: solid 1px #333;
}
.cta .form-box {
  padding: 5px;
  background: #fff;
  border-radius: 20px;
  color: #202121;
  font-size: 16px;
}
.cta .form-box a {
  color: #3fa1ed;
}
.cta .form-box form {
  padding: 0;
  max-width: 575px;
  margin: 0 auto;
}
.cta .form-box h2 {
  background-color: #c1203d;
  font-size: 24px;
  color: #fff;
  border-radius: 20px 20px 0 0;
  text-align: center;
  padding: 5px 5px 2px;
}
@media screen and (max-width: 1023px) {
  .cta .form-box h2 {
    font-size: 18px;
  }
}
.cta .form-box h2 span {
  background-color: #fff;
  border-radius: 5px;
  color: #c1203d;
  margin-left: 8px;
  padding: 3px 7px 2px 10px;
  font-size: 20px;
  letter-spacing: 0.22em;
  position: relative;
  top: -2px;
}
@media screen and (max-width: 1023px) {
  .cta .form-box h2 span {
    font-size: 14px;
  }
}
.cta .form-box .form-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
}
@media screen and (max-width: 1023px) {
  .cta .form-box .form-group {
    flex-wrap: wrap;
    margin-top: 10px;
    justify-content: flex-start;
  }
}
.cta .form-box .form-group label {
  display: inline-block;
  width: 126px;
  font-size: 18px;
  text-align: right;
}
@media screen and (max-width: 1023px) {
  .cta .form-box .form-group label {
    font-size: 15px;
    text-align: left;
    width: auto;
    display: inline-block;
    margin-bottom: 5px;
  }
}
.cta .form-box .form-group .haveto {
  color: #fff;
  font-size: 14px;
  background-color: #E23A47;
  padding: 8px;
  border-radius: 5px;
  width: 54px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .cta .form-box .form-group .haveto {
    width: auto;
    height: auto;
    font-size: 12px;
    padding: 1px 8px;
    margin-left: 8px;
    position: relative;
    top: -3px;
  }
}
.cta .form-box .form-group .haveto.pc {
  display: flex;
}
@media screen and (max-width: 1023px) {
  .cta .form-box .form-group .haveto.pc {
    display: none;
  }
}
.cta .form-box .form-group input {
  background-color: #eaeaea;
  border: solid 0.25px #ababab;
  border-radius: 3px;
  box-shadow: none;
  padding: 5px 10px;
  width: 330px;
}
.cta .form-box .form-group textarea {
  background-color: #eaeaea;
  border: solid 0.25px #ababab;
  border-radius: 3px;
  box-shadow: none;
  padding: 5px 10px;
  width: 330px;
  height: 5em;
}
.cta .form-box .form-group select {
  background-color: #eaeaea;
  border: solid 0.25px #ababab;
  border-radius: 3px;
  box-shadow: none;
  padding: 5px 10px;
  width: 330px;
}
@media screen and (max-width: 1023px) {
  .cta .form-box .form-group input {
    width: 100%;
  }
  .cta .form-box .form-group select {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .cta .form-box .form-group.name {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1023px) {
  .cta .form-box .form-group.name label {
    width: 100%;
  }
}
.cta .form-box .form-group.name input {
  width: 149px;
}
@media screen and (max-width: 1023px) {
  .cta .form-box .form-group.name input {
    width: 48%;
  }
}
.cta .form-box .form-group .name-haveto {
  display: none;
}
@media screen and (max-width: 1023px) {
  .cta .form-box .form-group .name-haveto {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    padding: 1px 8px;
    margin-left: 8px;
    position: relative;
    top: -3px;
    background-color: #E23A47;
    border-radius: 5px;
  }
}
.cta .form-box .privacy-wrap {
  margin: 26px 0 10px;
  text-align: center;
}
.cta .form-box .privacy-wrap label {
  margin-left: 8px;
}
.cta .form-box .g-recaptcha {
  margin-bottom: 26px;
}
.cta .form-box .g-recaptcha > div {
  margin: 0 auto;
}
.cta .form-box .button-wrap button {
  cursor: pointer;
  position: relative;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  width: 100%;
  max-width: 476px;
  border-radius: 8px;
  background-color: #03306D;
  color: #fff;
  border: none;
  margin: 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0 14px;
  transition: all 0.3s;
}
@media screen and (max-width: 1023px) {
  .cta .form-box .button-wrap button {
    font-size: 18px;
  }
}
.cta .form-box .button-wrap button:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 14px;
  background-image: url(./image/button-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 10px;
  position: relative;
  top: 1px;
}
.cta .form-box .button-wrap button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1000px) { /*---------------------------SP----- */
  .form_intro {
    max-width: 100%;
    margin: 0 auto 30px;
    display: block;
  }
  .form_intro_txt {
    padding-right: 0;
  }
  .form_intro_txt h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
  }
  .form_intro img {
    width: 50%;
    margin: 20px auto 0;
  }
  .cta__form {
    max-width: 100%;
    border-radius: 6px;
    padding: 20px;
  }
  .cta .form-box .form-group .haveto, .cta .form-box .form-group .name-haveto {
    font-size: 10px;
    padding: 6px 8px;
    line-height: 1;
  }
  .cta .form-box .privacy {
    font-size: 12px;
    line-height: 1.4;
  }
}
.form_area .privacy {
  margin-bottom: 0;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .form_area .privacy {
    font-size: 10px;
  }
}
/* footer
--------------------------------------------------------*/
footer .foot_bk {
  padding: 60px 20px;
  background-color: #000;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  footer .foot_bk {
    padding: 40px 24px 10px;
  }
}
@media screen and (max-width: 768px) {
  footer .foot_bk {
    padding: 40px 24px 40px;
  }
}
footer .foot_bk img {
  width: 150px;
}
footer .foot_bk ul {
  max-width: 700px;
  margin: 0 auto;
}
footer .foot_bk ul li {
  padding: 0;
}
@media screen and (max-width: 1000px) {
  footer .foot_bk ul li {
    margin-bottom: 30px;
  }
}
footer .foot_bk ul li p {
  font-size: 14px;
  margin-bottom: 16px;
}
footer .foot_bk ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
}
footer .foot_bk__title {
  font-weight: 700;
  font-size: 16px;
}
footer .btn-white {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
}
footer .btn-white a {
  text-decoration: none;
  font-size: 15px;
  padding: 10px 40px 11px;
  border-radius: 8px;
  background-color: #fff;
  color: #000;
  font-weight: 700;
}
footer .btn-white a::after {
  content: "";
  background-image: url(./image/button-arrow-black.png);
  display: inline-block;
  width: 7px;
  height: 13px;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  top: 1px;
  left: 7px;
}
footer .foot_wh {
  padding: 30px 20px;
  color: #000;
}
footer .foot_wh a {
  color: #000;
  text-decoration: none;
  font-size: 1.4rem;
}
footer .copyright {
  letter-spacing: 0;
  text-align: center;
  color: #000;
  font-size: 1rem;
  margin-bottom: 0;
  padding-top: 30px;
}
footer .copyright a {
  color: #000;
  text-decoration: none;
  font-size: 1rem;
}
footer ul {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.pagetop {
  position: fixed;
  z-index: 99;
  right: 20px;
  bottom: 20px;
  width: 60px;
  margin: 0;
}
@media screen and (max-width: 1000px) { /*---------------------------SP----- */
  footer ul {
    display: block;
  }
  .copyright {
    text-align: center;
    font-size: 1rem;
  }
  .pagetop {
    right: 0.8em;
    bottom: 0.8em;
    width: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .top_gift {
    width: 130px;
    top: 300px;
  }
}
@media screen and (max-width: 880px) {
  .top_gift {
    width: 100px !important;
  }
  .sec_kikubeki {
    padding-left: 0;
    padding-right: 0;
  }
}
/* サンクスページ
--------------------------------------------------------*/
.thanks {
  max-width: 800px;
  margin: 0 auto;
}
.thanks h1 {
  text-align: center;
  border-bottom: 2px solid #03306D;
  font-size: 3.0rem;
  margin-bottom: 60px;
  padding-bottom: 20px;
}
.thanks p {
  text-align: center;
  line-height: 2.0;
  margin-bottom: 1.4em;
}
.thanks_btn a {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 320px;
  margin: 60px auto 20px;
  padding: 1rem 1rem;
  font-weight: bold;
  border: 2px solid #03306D;
  color: #03306D;
  transition: 0.5s;
}
.thanks_btn a:hover {
  color: #fff;
  background: #03306D;
}
.thanks_btn2 a {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 320px;
  margin: auto;
  padding: 1rem 1rem;
  font-weight: bold;
  border: 2px solid #03306D;
  background: #03306D;
  color: #fff;
  transition: 0.5s;
}
.thanks_btn2 a:hover {
  color: #03306D;
  background: #fff;
}
@media screen and (max-width: 780px) { /*---------------------------SP----- */
  .thanks {
    max-width: 100%;
    margin: 0 auto 0;
    padding: 3em 20px 0;
  }
  .thanks h1 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    padding-bottom: 14px;
  }
  .thanks p {
    text-align: justify;
    line-height: 2.0;
    margin-bottom: 1.4em;
  }
  .thanks p br {
    display: none;
  }
  .thanks_btn a {
    width: 84%;
  }
  .thanks_btn2 a {
    width: 84%;
  }
}
/* サンクスページ ------------------------------------ */
.thanks {
  padding: 100px 0;
}
.thanks h1 {
  text-align: center;
  font-size: 30px;
  margin: 0;
}
.thanks p {
  font-size: 16px;
  text-align: center;
  margin-bottom: 1.2em;
  padding: 0 20px;
}
.thanks .thanks_img {
  max-width: 100px;
  margin: 40px auto;
}
.thanks .vvl {
  margin: 40px 0;
}
.thanks iframe {
  margin-bottom: 20px;
}
.thanks .btn_thanks a {
  cursor: pointer;
  position: relative;
  font-size: 20px;
  font-weight: 700;
  width: 476px;
  max-width: 100%;
  border-radius: 40px;
  background-color: #03306D;
  color: #fff;
  border: none;
  margin: 10px auto 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  padding: 15px 0 14px;
  text-decoration: none;
  text-align: center !important;
}
.thanks .btn_thanks a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1023px) {
  .thanks {
    padding: 60px 0;
  }
  .thanks h1 {
    font-size: 24px;
  }
  .thanks p {
    font-size: 15px;
    text-align: justify;
    padding: 0 6%;
  }
  .thanks .btn_thanks a {
    font-size: 17px;
    width: 90%;
    max-width: 90%;
  }
}