@charset "UTF-8";
@keyframes blink-slow {
  0%, 100% {
    border: 2px solid transparent;
  }
  50% {
    border: 8px solid transparent;
  }
}
* {
  box-sizing: border-box;
  color: #000;
  font-family: "M PLUS 2", sans-serif;
  font-size: 14px;
  font-style: normal;
  line-height: 140%;
  margin: 0;
  padding: 0;
  transition: 0.5s;
}

body {
  overflow-x: hidden;
  z-index: 1;
}

a {
  font-weight: 600;
  text-decoration: none;
}

img {
  border: none;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

table, thead, tbody, tr, th, td {
  border: 0;
  border-collapse: collapse;
}

ul, ol, li {
  list-style: none;
}

input[type=submit],
input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input[type=submit],
label:hover {
  cursor: pointer;
}

input:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.clr {
  clear: both;
}

.clrfix::after {
  content: " ";
  display: block;
  clear: both;
}

@media only screen and (min-width: 1200px) {
  .inner {
    margin: 0 auto;
    padding: 40px;
    width: 1200px;
  }
}
@media only screen and (max-width: 1199px) {
  .inner {
    padding: 40px 5%;
    width: 100%;
  }
}

.code {
  color: #ff4500;
}

.open-modal.btn {
  background: url(../media/img/cmn/hamburger.svg) #2837D2 no-repeat;
  background-position: center center;
  background-size: 60%;
  border-radius: 5px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  height: 40px;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  z-index: 999;
}
.open-modal.btn:hover {
  cursor: pointer;
}

.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 80%;
  max-width: 400px;
  height: 60%;
  background: white;
  z-index: 1000;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.modal.show {
  pointer-events: auto; /* 表示したらクリック可能 */
}

.modal-header {
  align-items: center;
  background: #2837D2;
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
.modal-header p {
  color: white;
  display: block;
  flex: 1;
  font-weight: 600;
  text-align: center;
}

.close-btn {
  cursor: pointer;
  color: #fff;
  font-size: 20px;
}

.modal-content {
  flex-grow: 1;
  padding: 30px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
@media only screen and (max-width: 750px) {
  .modal-content {
    padding: 4vw;
  }
}
.modal-content h2 {
  color: #2837D2;
  margin: 0 0 10px;
  text-align: center;
}
.modal-content ul {
  padding: 20px 0;
}
.modal-content ul li {
  border-left: 3px solid #2837D2;
  padding: 8px 0 8px 20px;
}
.modal-content ul li a {
  color: #2837D2;
  text-decoration: underline;
}
.modal-content form {
  display: flex;
  flex-direction: column;
}
.modal-content form input {
  border: 1px solid #2837D2;
  border-radius: 20px;
  margin: 0 0 10px;
  padding: 10px;
}
.modal-content form input[type=submit] {
  background: #2837D2;
  color: #fff;
  margin: 0 0 20px;
}
.modal-content form small {
  text-align: right;
  padding: 0 0 20px;
}
.modal-content form small a {
  color: #2837D2;
  font-size: 12px;
  font-weight: 400;
  text-decoration: underline;
}
.modal-content select {
  border: 1px solid #2837D2;
  border-radius: 20px;
  color: #2837D2;
  padding: 10px;
}
.modal-content select option {
  color: #2837D2;
  margin: 0 0 4vw;
}

.modal-content::-webkit-scrollbar {
  display: none;
}

header.cmn {
  align-items: center;
  display: flex;
  justify-content: left;
  padding-bottom: 20px;
  padding-top: 20px;
}
header.cmn a.logo {
  background: url(../media/img/cmn/logo_color_wide.svg) no-repeat;
  display: block;
  height: 40px;
  margin: 0 20px 0 0;
  width: 230px;
}
header.cmn nav {
  align-items: center;
  display: flex;
  justify-content: right;
  position: absolute;
  top: 10px;
  right: 250px;
}
@media only screen and (max-width: 750px) {
  header.cmn nav {
    display: none;
  }
}
header.cmn nav select {
  border: none;
  border-radius: 0 0 5px 5px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  display: block;
  padding: 10px 10px 5px;
  position: fixed;
  top: 0;
  right: 100px;
  z-index: 100;
}
header.cmn nav select:hover {
  cursor: pointer;
}

.cmn.gnav {
  background: #2837D2;
}
.cmn.gnav .inner {
  display: flex;
  padding: 0 0 0 40px;
}
.cmn.gnav .inner li {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 15px 11px;
}
.cmn.gnav .inner li.slct {
  background: rgb(15, 25, 165);
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.cmn.gnav .inner a {
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
}

footer {
  background: url(../media/img/cmn/arch_w.svg), linear-gradient(135deg, #FCEE21, #FF00FF);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto, auto auto;
  padding: 50px 0 0;
}
footer .inner {
  display: flex;
}
@media only screen and (max-width: 750px) {
  footer .inner {
    flex-direction: column;
  }
}
footer .inner .read {
  display: block;
  width: 50%;
}
@media only screen and (max-width: 750px) {
  footer .inner .read {
    width: 100%;
  }
}
footer .inner .read a {
  background: url(../media/img/cmn/logo_w.svg) no-repeat;
  background-position: center top;
  background-size: auto 45px;
  display: block;
  padding: 60px 0 0;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  footer .inner .read a {
    background-size: auto 10vw;
    padding: 14vw 0 0;
  }
}
footer .inner .read a i {
  background-image: linear-gradient(to right, rgba(40, 55, 210, 0), #fff, rgba(40, 55, 210, 0));
  background-size: auto 2px;
  background-repeat: repeat-x;
  background-position: top;
  padding: 5px 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
@media only screen and (max-width: 750px) {
  footer .inner .read a i {
    background-image: linear-gradient(to right, rgba(40, 55, 210, 0), #fff, rgba(40, 55, 210, 0));
    background-size: auto 2px;
    background-repeat: repeat-x;
    background-position: top;
    padding: 2vw 0;
    font-size: 14px;
  }
}
footer .inner nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}
@media only screen and (max-width: 750px) {
  footer .inner nav {
    display: block;
    margin: 4vw 0 0;
    width: 100%;
  }
}
footer .inner nav a {
  align-items: center;
  color: #fff;
  display: flex;
}
footer .inner nav a:hover {
  cursor: pointer;
}
footer .inner nav a::before {
  color: rgba(255, 255, 255, 0.5);
  content: "|";
  font-size: 8px;
  padding: 10px;
}
@media only screen and (max-width: 750px) {
  footer .inner nav a {
    display: block;
    margin: 0 0 10px;
    text-decoration: underline;
  }
  footer .inner nav a:nth-of-type(1)::before {
    content: "|";
    padding: 10px;
  }
}
footer hr {
  background: url(../media/img/cmn/arch_b.svg) no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  border: none;
  height: 70px;
  margin: 0 0 -2px;
  padding: 0;
  width: 100%;
}
footer p {
  background: #2837D2;
  color: #fff;
  padding: 20px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  footer p {
    padding: 2vh 4vw 10vh;
  }
}

#fixed_nav {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  display: none;
  z-index: -100;
}
@media only screen and (max-width: 750px) {
  #fixed_nav {
    align-items: center;
    background: #2837D2;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 100;
  }
}
#fixed_nav a {
  align-items: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 6vw;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  display: flex;
  height: 7vh;
  text-align: center;
  justify-content: center;
  padding: 4vw;
}
#fixed_nav a:nth-of-type(1) {
  background-image: url(../media/img/cmn/esim.svg);
  background-position: left 2vw center;
  flex: 1;
  padding-left: 8vw;
}
#fixed_nav a:nth-of-type(2) {
  background-image: url(../media/img/cmn/up.svg);
  width: 20%;
}
#fixed_nav form {
  margin: 0 auto;
  padding: 0 4vw;
  text-align: center;
}
#fixed_nav form select {
  background: transparent;
  border: none;
  color: #fff;
  padding: 1vw 0;
  text-align: center;
  appearance: none; /* 標準化 */
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(../media/img/cmn/arrow_up.svg) no-repeat;
  background-position: right 0 center;
  background-size: 2vw auto;
  padding-right: 2vw;
}
#fixed_nav form select option {
  text-align: center;
}

/*===== NOW LOADING =====*/
.now_loading {
  align-items: center;
  display: flex;
  font-weight: 600;
  height: 100vh;
  left: 0;
  position: fixed;
  justify-content: center;
  top: 0;
  width: 100%;
  opacity: 0;
  z-index: -1;
}
.now_loading .icon {
  animation: 3s linear infinite rotation;
  background: url(../media/img/cmn/now_loading.svg) no-repeat;
  background-position: center center;
  background-size: 100% auto;
  display: block;
  margin: 0 auto;
  height: 60px;
  width: 60px;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*===== Cookie同意 =====*/
#cookie_bnr {
  background: #333;
  bottom: 0;
  color: #fff;
  display: none;
  left: 0;
  line-height: 180%;
  padding: 20px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 9999;
}
#cookie_bnr button {
  background: #00B4BE;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 5px 20px;
  margin-left: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#cookie_bnr button:hover {
  background: #ff2b00;
}

/*===== header =====*/
header {
  background: linear-gradient(135deg, #FCEE21, #FF00FF);
  position: relative;
}
header nav {
  align-items: center;
  display: flex;
  justify-content: right;
  position: absolute;
  top: 10px;
  right: 250px;
}
header nav a {
  color: #fff;
  display: flex;
}
header nav a::before {
  color: rgba(255, 255, 255, 0.5);
  content: "|";
  font-size: 10px;
  margin: 0 10px;
}
header nav a:nth-of-type(1)::before {
  content: "";
}
header nav a:hover {
  cursor: pointer;
}
header nav s {
  color: #fff;
  display: flex;
  font-weight: 600;
  text-decoration: none;
}
header nav s::before {
  color: rgba(255, 255, 255, 0.5);
  content: "|";
  font-size: 10px;
  margin: 0 10px;
}
header nav select {
  border: none;
  border-radius: 0 0 5px 5px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  display: block;
  padding: 10px 10px 5px;
  position: fixed;
  top: 0;
  right: 100px;
  z-index: 100;
}
header nav select:hover {
  cursor: pointer;
}
header nav form input[type=submit] {
  background: none;
  border: none;
  color: #fff;
  font-weight: 600;
}
@media only screen and (max-width: 750px) {
  header nav {
    display: none;
  }
}

/*===== hero section =====*/
.hero_sec {
  display: flex;
  padding: 40px 0;
  width: 100%;
}
@media only screen and (max-width: 750px) {
  .hero_sec {
    flex-direction: column;
    padding: 0 0 6vw;
  }
}
.hero_sec .txt_area {
  padding: 0 40px;
  width: 50%;
}
@media only screen and (max-width: 750px) {
  .hero_sec .txt_area {
    padding: 4vw;
    width: 100%;
  }
}
.hero_sec .txt_area .logo {
  background: url(../media/img/cmn/logo_color.svg) no-repeat;
  background-size: auto 100%;
  display: block;
  height: 147px;
  margin: 0 auto 20px;
  width: 140px;
}
@media only screen and (max-width: 750px) {
  .hero_sec .txt_area .logo {
    height: 20vw;
    margin: 2vw 0 9vw 2.5vw;
  }
}
.hero_sec .txt_area h1 {
  color: #fff;
  background: url(../media/img/top/hero_sec_ja_flag.svg) no-repeat;
  background-position: center bottom;
  background-size: auto 50px;
  font-weight: 700;
  font-size: 28px;
  margin: 0 0 20px;
  text-align: center;
  padding: 0 0 70px;
}
@media only screen and (max-width: 750px) {
  .hero_sec .txt_area h1 {
    background-size: auto 8vw;
    font-size: 22px;
    margin: 0 0 4vw;
    padding: 0 0 12vw;
  }
}
.hero_sec .txt_area p {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .hero_sec .txt_area p {
    font-size: 16px;
    font-weight: 600;
  }
}
.hero_sec .visual_area {
  border-radius: 10px 0 0 10px;
  height: 450px;
  overflow: hidden;
  width: 50%;
}
.hero_sec .visual_area video, .hero_sec .visual_area img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 750px) {
  .hero_sec .visual_area {
    border-radius: 0 0 0 10px;
    position: absolute;
    max-height: 70vw;
    right: 0;
    width: 70vw;
  }
  .hero_sec .visual_area img {
    height: 32vw;
  }
}

/*===== Form =====*/
#form_wrap {
  position: absolute;
  width: 50%;
  z-index: 2;
}
@media only screen and (max-width: 750px) {
  #form_wrap {
    background: #EDE3D3;
    position: relative;
    width: 100%;
  }
}

#form_area {
  background: #F2F2F2;
  border-radius: 20px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  padding: 0 0 25px;
  position: relative;
  top: -50px;
  width: 480px;
}
@media only screen and (max-width: 1024px) {
  #form_area {
    top: -4vw;
    width: 92%;
  }
}
@media only screen and (max-width: 750px) {
  #form_area {
    padding: 0 4vw 3vw;
    top: -2vw;
    width: 92%;
  }
}
#form_area .topic {
  animation: blink-slow 2s ease-in-out infinite;
  align-items: center;
  background: url(../media/img/top/arrow_b.svg) #FFFF00 no-repeat;
  background-position: left 5px center;
  background-size: 10px auto;
  border-radius: 60px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  color: #000;
  display: flex;
  font-size: 20px;
  font-weight: 800;
  line-height: 120%;
  min-height: 120px;
  position: absolute;
  right: -100px;
  text-align: center;
  top: 120px;
  justify-content: center;
  width: 120px;
}
@media only screen and (max-width: 1024px) {
  #form_area .topic {
    right: -12vw;
  }
}
@media only screen and (max-width: 750px) {
  #form_area .topic {
    display: none;
    opacity: 0;
    height: 0;
    right: 0;
    top: 0;
    width: 0;
  }
}
#form_area h2 {
  background: #2837D2;
  border-radius: 5px 5px 20px 20px;
  color: #fff;
  font-size: 20px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  text-align: center;
  top: -5px;
  width: 90%;
}
@media only screen and (max-width: 750px) {
  #form_area h2 {
    border-radius: 8px 8px 20px 20px;
    font-size: 16px;
    top: -2vw;
    padding: 3vw;
    width: 100%;
  }
}
#form_area h3 {
  background: url(../media/img/top/journey_arrow.svg) no-repeat;
  background-position: center top;
  background-size: 110px auto;
  color: #2837D2;
  font-size: 20px;
  padding: 20px 0 0;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  #form_area h3 {
    font-size: 16px;
  }
}
#form_area input {
  align-items: center;
  background: #919BDA;
  border: 2px solid #2837D2;
  border-radius: 30px;
  color: #2837D2;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  margin: 10px auto 0;
  padding: 5px 10px;
  text-align: center;
  width: 320px;
}
@media only screen and (max-width: 750px) {
  #form_area input {
    font-size: 14px;
    width: 100%;
  }
}
#form_area input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
}
#form_area input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
}
#form_area input:focus {
  background: #fff;
  border: 2px solid #2837D2;
  color: #2837D2;
}
#form_area input[type=checkbox] {
  display: initial;
  margin: 0 5px 0 0;
  width: initial;
}
#form_area .note {
  margin: 10px auto;
  text-align: center;
}
#form_area .txt {
  margin: 10px 30px;
  text-align: left;
}
#form_area .txt_center {
  margin: 40px;
  text-align: center;
}
#form_area .send_btn {
  display: flex;
  justify-content: center;
  margin: 10px auto;
}
#form_area .send_btn p {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  padding: 10px 30px;
}
#form_area .send_btn p:hover {
  background-color: #00B4BE !important;
  cursor: pointer;
}
#form_area .send_btn #next_phase {
  background-color: #2837D2;
}
#form_area .send_btn #prev_phase {
  background-color: #E60A8C;
  margin: 0 20px 0 0;
}
#form_area dl {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin: 10px 30px 0;
  padding: 10px 0 0;
}
#form_area dl:nth-of-type(1) {
  border: none;
}
#form_area dl dt {
  font-weight: 700;
}
#form_area .add {
  padding: 0;
}
#form_area .add a {
  color: #2837D2;
  display: inline-block;
  margin: 0 0 5px 10px;
  text-decoration: underline;
}
#form_area .add .rule {
  padding: 20px 40px;
}
@media only screen and (max-width: 750px) {
  #form_area .add .rule {
    padding: 4vw 2vw;
  }
}
#form_area .phase_fin_msg {
  text-align: center;
  padding: 20px 0;
}
#form_area .phase_fin_msg a {
  background-color: #E60A8C;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  font-size: 20px;
  padding: 30px 40px;
}
#form_area .phase_fin_msg a:hover {
  background-color: #00B4BE !important;
  cursor: pointer;
}
#form_area #re_send_confirm_mail {
  color: #2837D2;
  padding: 10px 0;
  text-align: center;
  text-decoration: underline;
}
#form_area #re_send_confirm_mail:hover {
  cursor: pointer;
}

/*===== section1 journey =====*/
#journey {
  background: url(../media/img/top/journey_bg_pc.svg) #BDE0D6 no-repeat;
  background-position: center top;
  background-size: 1600px auto;
  min-height: 1365px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  #journey {
    background-size: 150% auto;
    min-height: 125vw;
  }
}
@media only screen and (max-width: 750px) {
  #journey {
    background: url(../media/img/top/journey_bg_sp.svg) #EDE3D3 no-repeat;
    background-position: center top;
    background-size: 100% auto;
    min-height: 140vw;
  }
}
#journey .inner {
  position: relative;
}
#journey .line p {
  background: #E60A8C;
  border-radius: 20px;
  color: #fff;
  display: inline;
  font-size: 20px;
  font-weight: 600;
  padding: 20px;
}
@media only screen and (max-width: 750px) {
  #journey .line p {
    font-size: 14px !important;
    padding: 2vw 3vw;
  }
}
#journey #scene1 {
  background: url(../media/img/top/journey_scene1_pc.svg) no-repeat;
  background-position: top right;
  height: 450px;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #journey #scene1 {
    background-size: auto 100%;
    height: 40vw;
  }
}
@media only screen and (max-width: 750px) {
  #journey #scene1 {
    background: url(../media/img/top/journey_scene1_sp.svg) no-repeat;
    background-position: top left 4vw;
    background-size: auto 100%;
    height: 35vw;
    left: 0;
    right: initial;
  }
}
#journey #scene1 p {
  position: absolute;
  top: 280px;
  right: 220px;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  #journey #scene1 p {
    font-size: 2vw;
    top: 25vw;
    right: 20vw;
  }
}
@media only screen and (max-width: 750px) {
  #journey #scene1 p {
    right: initial;
    top: 0;
    left: 50vw;
  }
}
#journey #scene1 p::after {
  background: url(../media/img/top/journey_line_r1.svg) no-repeat;
  background-size: 100% auto;
  content: "";
  height: 35px;
  position: absolute;
  top: 15px;
  right: -20px;
  width: 20px;
}
@media only screen and (max-width: 750px) {
  #journey #scene1 p::after {
    transform: scaleX(-1) rotate(90deg);
    top: initial;
    bottom: -5vw;
    right: initial;
    left: 4vw;
    height: 7vw;
    width: 4vw;
  }
}
#journey #scene2 {
  background: url(../media/img/top/journey_scene2_pc.svg) no-repeat;
  background-position: top left 40px;
  background-size: auto 100%;
  height: 155px;
  left: 0;
  position: absolute;
  top: 300px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #journey #scene2 {
    height: 13vw;
    top: 34vw;
  }
}
@media only screen and (max-width: 750px) {
  #journey #scene2 {
    background: url(../media/img/top/journey_scene2_sp.svg) no-repeat;
    background-position: top right 8vw;
    background-size: 13vw auto;
    height: 35vw;
    top: 16vw;
  }
}
#journey #scene2 p {
  position: absolute;
  top: 50px;
  left: 220px;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  #journey #scene2 p {
    font-size: 2vw;
    top: 5vw;
    left: 22vw;
  }
}
@media only screen and (max-width: 750px) {
  #journey #scene2 p {
    top: 18vw;
    left: initial;
    right: 8vw;
  }
}
#journey #scene2 p::after {
  background: url(../media/img/top/journey_line_r1.svg) no-repeat;
  background-size: 100% auto;
  content: "";
  height: 35px;
  position: absolute;
  top: 20px;
  left: -12px;
  width: 20px;
  transform: scaleX(-1) rotate(25deg);
}
@media only screen and (max-width: 750px) {
  #journey #scene2 p::after {
    transform: scaleY(-1) rotate(90deg);
    top: -5vw;
    right: 12vw;
    left: initial;
    height: 7vw;
    width: 4vw;
  }
}
#journey #scene3 {
  background: url(../media/img/top/journey_scene3_pc.svg) no-repeat;
  background-position: top right;
  background-size: auto 100%;
  height: 380px;
  position: absolute;
  left: 0;
  top: 370px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #journey #scene3 {
    top: 30vw;
    height: 36vw;
  }
}
@media only screen and (max-width: 750px) {
  #journey #scene3 {
    background: url(../media/img/top/journey_scene3_sp.svg) no-repeat;
    background-position: top left -4vw;
    background-size: 59vw auto;
    height: 40vw;
    left: 0;
    top: 34vw;
  }
}
#journey #scene3 p:nth-of-type(1) {
  position: absolute;
  top: 160px;
  right: 500px;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  #journey #scene3 p:nth-of-type(1) {
    font-size: 2vw;
    top: 18vw;
    right: initial;
    left: 350px;
  }
}
@media only screen and (max-width: 750px) {
  #journey #scene3 p:nth-of-type(1) {
    top: 20vw;
    right: initial;
    left: 35vw;
  }
}
#journey #scene3 p:nth-of-type(1)::after {
  background: url(../media/img/top/journey_line_r1.svg) no-repeat;
  background-size: 100% auto;
  content: "";
  height: 35px;
  position: absolute;
  top: 15px;
  right: -20px;
  width: 20px;
}
@media only screen and (max-width: 750px) {
  #journey #scene3 p:nth-of-type(1)::after {
    top: 1.5vw;
    right: initial;
    left: -2.5vw;
    height: 7vw;
    width: 4vw;
    transform: scaleY(-1) rotate(180deg);
  }
}
#journey #scene3 p:nth-of-type(2) {
  position: absolute;
  top: 320px;
  right: 160px;
}
@media only screen and (max-width: 1024px) {
  #journey #scene3 p:nth-of-type(2) {
    font-size: 2vw;
    top: 28vw;
    right: 14vw;
  }
}
@media only screen and (max-width: 750px) {
  #journey #scene3 p:nth-of-type(2) {
    top: 35vw;
    left: 8vw;
    right: initial;
  }
}
#journey #scene3 p:nth-of-type(2)::after {
  background: url(../media/img/top/journey_line_r1.svg) no-repeat;
  background-size: 100% auto;
  content: "";
  height: 35px;
  position: absolute;
  top: 15px;
  right: -20px;
  width: 20px;
}
@media only screen and (max-width: 750px) {
  #journey #scene3 p:nth-of-type(2)::after {
    top: -5vw;
    right: initial;
    left: 5vw;
    height: 7vw;
    width: 4vw;
    transform: scaleX(-1) scaleY(-1) rotate(90deg);
  }
}
#journey #scene4 {
  background: url(../media/img/top/journey_scene4_pc.svg) no-repeat;
  background-position: top left 100px;
  background-size: auto 100%;
  height: 350px;
  position: absolute;
  top: 460px;
  left: 0;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #journey #scene4 {
    top: 50vw;
    height: 31vw;
  }
}
@media only screen and (max-width: 750px) {
  #journey #scene4 {
    background: url(../media/img/top/journey_scene4_sp.svg) no-repeat;
    background-position: top right 4vw;
    background-size: 28vw auto;
    height: 45vw;
    left: initial;
    right: 4vw;
    top: 41vw;
  }
}
#journey #scene4 p {
  background: #00B4BE;
  position: absolute;
  top: 320px;
  left: 320px;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  #journey #scene4 p {
    font-size: 2vw;
    top: 27vw;
    left: 33vw;
  }
}
@media only screen and (max-width: 750px) {
  #journey #scene4 p {
    top: 40vw;
    left: initial;
    right: 0vw;
  }
}
#journey #scene4 p::after {
  background: url(../media/img/top/journey_line_r2.svg) no-repeat;
  background-size: 100% auto;
  content: "";
  height: 35px;
  position: absolute;
  top: -22px;
  left: 60px;
  width: 20px;
  transform: rotate(-90deg);
}
@media only screen and (max-width: 750px) {
  #journey #scene4 p::after {
    transform: scaleY(-1) rotate(0deg);
    top: -5vw;
    right: 4vw;
    left: initial;
    height: 7vw;
    width: 4vw;
  }
}
#journey #scene4 p b {
  color: #FCEE21;
  font-size: 20px;
  font-weight: 800;
}
@media only screen and (max-width: 1024px) {
  #journey #scene4 p b {
    font-size: 14px;
  }
}
#journey #scene5 {
  background: url(../media/img/top/journey_scene5_pc.svg) no-repeat;
  background-position: top right 40px;
  height: 370px;
  position: absolute;
  left: 0;
  top: 800px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #journey #scene5 {
    top: 70vw;
    height: 35vw;
  }
}
@media only screen and (max-width: 750px) {
  #journey #scene5 {
    background: url(../media/img/top/journey_scene5_sp.svg) no-repeat;
    background-position: top right 4vw;
    height: 37vw;
    top: 80vw;
    width: 100%;
  }
}
#journey #scene6 {
  background: url(../media/img/top/journey_scene6_pc.svg) no-repeat;
  background-position: top left;
  background-size: auto 100%;
  height: 525px;
  position: absolute;
  top: 650px;
  left: -100px;
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #journey #scene6 {
    left: -5vw;
    top: 68vw;
    height: 40vw;
  }
}
@media only screen and (max-width: 750px) {
  #journey #scene6 {
    background: url(../media/img/top/journey_scene6_sp.svg) no-repeat;
    background-position: top left;
    top: 80vw;
    height: 40vw;
  }
}
#journey #scene6 p {
  background: #00B4BE;
  display: inline-block;
  font-size: 30px;
  position: relative;
  margin: 500px 0 0 150px;
}
@media only screen and (max-width: 1024px) {
  #journey #scene6 p {
    font-size: 2vw;
    margin: 40vw 0 0 5vw;
  }
}
#journey #scene6 p i {
  background: url(../media/img/top/journey_line_r2.svg) no-repeat;
  background-size: auto 100%;
  display: flex;
  height: 60px;
  width: 60px;
  position: absolute;
}
@media only screen and (max-width: 750px) {
  #journey #scene6 p i {
    height: 6vw;
    top: -5.8vw !important;
    width: 6vw;
  }
}
#journey #scene6 p i:nth-of-type(1) {
  left: 30px;
  top: -58px;
  transform: rotate(-90deg);
}
#journey #scene6 p i:nth-of-type(2) {
  right: 30px;
  top: -58px;
  transform: scaleX(-1) rotate(-90deg);
}

/*===== middle read =====*/
#mid_read {
  background: #fff;
  text-align: center;
}
#mid_read h2 {
  margin: 0 0 10px;
}
#mid_read h2 i {
  color: #2837D2;
  font-size: 38px;
  font-weight: 800;
  background-image: linear-gradient(to right, rgba(40, 55, 210, 0), rgba(40, 55, 210, 0.8), rgba(40, 55, 210, 0));
  background-size: auto 2px;
  background-repeat: repeat-x;
  background-position: bottom;
  padding: 5px 0;
}
@media only screen and (max-width: 1024px) {
  #mid_read h2 i {
    font-size: 28px;
  }
}
@media only screen and (max-width: 750px) {
  #mid_read h2 i {
    padding: 0 4vw;
    font-size: 20px;
  }
}
#mid_read p {
  color: #2837D2;
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 1024px) {
  #mid_read p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 750px) {
  #mid_read p {
    font-size: 14px;
    padding: 0 4vw;
  }
}
#mid_read p br {
  display: none;
}
@media only screen and (max-width: 750px) {
  #mid_read p br {
    display: initial;
  }
}
#mid_read::before {
  background: url(../media/img/top/hat_w.svg) no-repeat;
  background-position: center bottom;
  background-size: auto 100%;
  content: "";
  display: block;
  height: 45px;
  position: relative;
  top: -45px;
  width: 100%;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  #mid_read::before {
    height: 4vw;
    top: -4vw;
  }
}
#mid_read::after {
  background: url(../media/img/top/hat_w.svg) no-repeat;
  background-position: center top;
  background-size: auto 100%;
  content: "";
  display: block;
  height: 45px;
  position: relative;
  bottom: -45px;
  width: 100%;
  z-index: 2;
  transform: scaleY(-1);
}
@media only screen and (max-width: 1024px) {
  #mid_read::after {
    height: 4vw;
    bottom: -4vw;
  }
}

/*===== トラブル =====*/
#trouble {
  background: rgba(40, 55, 210, 0.15);
  padding: 100px 0 40px;
}
@media only screen and (max-width: 750px) {
  #trouble {
    padding: 10vw 0 4vw;
  }
}
#trouble h2 {
  color: #2837D2;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 40px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  #trouble h2 {
    font-size: 18px;
    padding: 0 4vw;
  }
}
#trouble .slide dl {
  background-color: #F2F2F2;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 200px;
  border-radius: 8px;
  display: block;
  margin: 0 10px 0;
  padding: 200px 0 0;
}
#trouble .slide dl dt {
  background: #2837D2;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 20px 15px 15px;
  text-align: center;
}
#trouble .slide dl dd {
  background: #2837D2;
  border-radius: 0 0 8px 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  min-height: 100px;
  padding: 0 15px 20px;
}
#trouble .slide .t0 {
  background-image: url("../media/img/top/trouble0.svg");
}
#trouble .slide .t1 {
  background-image: url("../media/img/top/trouble1.svg");
}
#trouble .slide .t2 {
  background-image: url("../media/img/top/trouble2.svg");
}
#trouble .slide .t3 {
  background-image: url("../media/img/top/trouble3.svg");
}
#trouble .slide .t4 {
  background-image: url("../media/img/top/trouble4.svg");
}
#trouble .slide .t5 {
  background-image: url("../media/img/top/trouble5.svg");
}
#trouble .slide .t6 {
  background-image: url("../media/img/top/trouble6.svg");
}
#trouble .slide .t7 {
  background-image: url("../media/img/top/trouble7.svg");
}

/*===== cta =====*/
.cta {
  background: #fff;
  padding: 60px 0;
}
@media only screen and (max-width: 750px) {
  .cta {
    padding: 4vw 0;
  }
}
.cta .inner {
  display: flex;
}
@media only screen and (max-width: 750px) {
  .cta .inner {
    flex-direction: column;
  }
}
.cta .inner h2 {
  background: url(../media/img/cmn/logo_color_wide.svg) no-repeat;
  background-size: 100% auto;
  font-size: 26px;
  font-weight: 800;
  padding: 125px 0 0;
  text-align: center;
  width: 50%;
}
@media only screen and (max-width: 750px) {
  .cta .inner h2 {
    background-position: center top;
    background-size: auto 13vw;
    font-size: 20px;
    padding: 17vw 0 0;
    width: 100%;
  }
}
.cta .inner .btn {
  display: flex;
  justify-content: right;
  padding: 60px 0 0;
  position: relative;
  width: 50%;
}
@media only screen and (max-width: 750px) {
  .cta .inner .btn {
    padding: 10vw 0 0;
    width: 100%;
  }
}
.cta .inner .btn a {
  align-items: center;
  background: linear-gradient(120deg, #00f, #0ff, #00f);
  background-size: 200% auto;
  transition: background-position 0.5s ease;
  border-radius: 10px;
  box-shadow: 2px 2px 3px #bdbdbd;
  color: #fff;
  display: flex;
  font-size: 22px;
  font-weight: 900;
  justify-content: center;
  padding: 60px 0 20px;
  text-align: center;
  width: 80%;
}
.cta .inner .btn a:hover {
  background-position: right center;
}
@media only screen and (max-width: 750px) {
  .cta .inner .btn a {
    font-size: 18px;
    padding: 10vw 4vw 4vw;
    width: 100%;
  }
}
.cta .inner .btn i {
  background: url(../media/img/top/sim1.svg) no-repeat;
  display: block;
  height: 127px;
  position: absolute;
  top: -20px;
  right: 32.5%;
  width: 88px;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .cta .inner .btn i {
    right: 31%;
  }
}
@media only screen and (max-width: 750px) {
  .cta .inner .btn i {
    background-position: center top;
    background-size: auto 100%;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 14vw;
    top: 4vw;
    width: 10vw;
  }
}

/*===== flow =====*/
#flow {
  background-image: url(../media/img/top/flow_bg.webp), linear-gradient(45deg, #FF2169, #833FDE, #00C4FB);
  background-position: center top 40px, center center;
  background-repeat: no-repeat;
  padding: 30px 0;
}
@media only screen and (max-width: 750px) {
  #flow {
    background-image: linear-gradient(45deg, #FF2169, #833FDE, #00C4FB);
    background-position: center center;
    padding: 3vw 0 0;
  }
}
#flow h2 {
  color: #fff;
  font-size: 34px;
  margin: 0 0 60px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  #flow h2 {
    font-size: 20px;
    margin: 0 0 6vw;
  }
}
#flow dl {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 60px 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 0 50px 30%;
  min-height: 88px;
  padding: 0 0 0 90px;
}
@media only screen and (max-width: 1024px) {
  #flow dl {
    margin-left: 20%;
  }
}
@media only screen and (max-width: 750px) {
  #flow dl {
    background-size: auto 8vw;
    margin: 0 0 4vw 0;
    min-height: initial;
    padding: 0 0 0 10vw;
  }
}
#flow dl dt {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  padding: 0 0 5px;
}
@media only screen and (max-width: 750px) {
  #flow dl dt {
    font-size: 16px;
  }
}
#flow dl dd {
  color: #fff;
  font-size: 18px;
  background-image: linear-gradient(to right, rgba(40, 55, 210, 0), #fff, rgba(40, 55, 210, 0));
  background-size: auto 2px;
  background-repeat: repeat-x;
  background-position: bottom;
  padding: 5px 0;
}
@media only screen and (max-width: 750px) {
  #flow dl dd {
    font-size: 14px;
    padding: 0 0 2vw;
  }
}
#flow dl:nth-of-type(0) {
  background-image: url(../media/img/top/flow0.svg);
}
#flow dl:nth-of-type(1) {
  background-image: url(../media/img/top/flow1.svg);
}
#flow dl:nth-of-type(2) {
  background-image: url(../media/img/top/flow2.svg);
}
#flow dl:nth-of-type(3) {
  background-image: url(../media/img/top/flow3.svg);
}

/*===== guide =====*/
#guide {
  padding: 30px 0;
}
@media only screen and (max-width: 750px) {
  #guide {
    padding: 3vw 0 0;
  }
}
#guide h2 {
  background-image: linear-gradient(to right, rgba(40, 55, 210, 0), rgba(40, 55, 210, 0.8), rgba(40, 55, 210, 0));
  background-size: auto 2px;
  background-repeat: repeat-x;
  background-position: bottom;
  padding: 5px 0;
  color: #2837D2;
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 10px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  #guide h2 {
    font-size: 20px;
    margin: 0 0 2vw;
  }
}
#guide iframe {
  display: block;
  height: 30vw;
  margin: 0 auto;
  width: 60vw;
}
@media only screen and (max-width: 750px) {
  #guide iframe {
    height: 50vw;
    width: 90vw;
  }
}

/*===== merit =====*/
#merit {
  padding: 60px;
}
@media only screen and (max-width: 750px) {
  #merit {
    padding: 6vw 0;
  }
}
#merit h2 {
  background-image: linear-gradient(to right, rgba(40, 55, 210, 0), rgba(40, 55, 210, 0.8), rgba(40, 55, 210, 0));
  background-size: auto 2px;
  background-repeat: repeat-x;
  background-position: bottom;
  padding: 5px 0;
  color: #2837D2;
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 10px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  #merit h2 {
    font-size: 20px;
    margin: 0 0 2vw;
  }
}
#merit p {
  color: #2837D2;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 30px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  #merit p {
    font-size: 18px;
    margin: 0 0 6vw;
  }
}
#merit .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}
@media only screen and (max-width: 750px) {
  #merit .inner {
    display: block;
    padding: 0 4vw;
  }
}
#merit .inner h3 {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 150px, 100% auto;
  border-radius: 8px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: end;
  font-size: 22px;
  font-weight: 800;
  margin: 0 1% 2%;
  padding: 160px 0 0;
  width: 30.6666666667%;
}
#merit .inner h3:nth-of-type(0) {
  background-image: url(../media/img/top/merit0.svg), linear-gradient(45deg, #FF2169, #833FDE, #00C4FB);
}
#merit .inner h3:nth-of-type(1) {
  background-image: url(../media/img/top/merit1.svg), linear-gradient(45deg, #FF2169, #833FDE, #00C4FB);
}
#merit .inner h3:nth-of-type(2) {
  background-image: url(../media/img/top/merit2.svg), linear-gradient(45deg, #FF2169, #833FDE, #00C4FB);
}
#merit .inner h3:nth-of-type(3) {
  background-image: url(../media/img/top/merit3.svg), linear-gradient(45deg, #FF2169, #833FDE, #00C4FB);
}
#merit .inner h3:nth-of-type(4) {
  background-image: url(../media/img/top/merit4.svg), linear-gradient(45deg, #FF2169, #833FDE, #00C4FB);
}
#merit .inner h3:nth-of-type(5) {
  background-image: url(../media/img/top/merit5.svg), linear-gradient(45deg, #FF2169, #833FDE, #00C4FB);
}
@media only screen and (max-width: 750px) {
  #merit .inner h3 {
    background-size: auto 12vw, 100% auto;
    background-position: left 2vw center, center center;
    flex-direction: row;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4vw;
    padding: 0;
    width: 100%;
  }
}
#merit .inner h3 i {
  align-items: center;
  background: #F2F2F2;
  border-radius: 0 0 6px 6px;
  color: #2837D2;
  display: flex;
  font-size: 16px;
  justify-content: center;
  padding: 15px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  #merit .inner h3 i {
    border-radius: 0 6px 6px 0;
    justify-content: left;
    padding: 4vw;
    text-align: left;
    width: 80%;
  }
  #merit .inner h3 i br {
    display: none;
  }
}
#merit .inner h3 i small {
  color: #2837D2;
  font-size: 10px;
}
#merit small {
  color: #2837D2;
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

/*===== trust =====*/
#trust {
  background: url(../media/img/top/trust_bg.webp), linear-gradient(135deg, #00FFE8 10%, #3ABEFF 40%, #D900B6);
  background-size: 100 auto;
  background-position: center top;
  padding: 60px;
}
@media only screen and (max-width: 750px) {
  #trust {
    background: linear-gradient(135deg, #00FFE8 10%, #3ABEFF 40%, #D900B6);
    padding: 4vw;
  }
}
#trust h2 {
  background-image: linear-gradient(to right, rgba(40, 55, 210, 0), #fff, rgba(40, 55, 210, 0));
  background-size: auto 2px;
  background-repeat: repeat-x;
  background-position: bottom;
  padding: 5px 0;
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 10px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  #trust h2 {
    font-size: 20px;
    margin: 0 0 2vw;
  }
}
#trust .inner {
  padding: 0;
}
#trust p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 50px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  #trust p {
    font-size: 16px;
    margin: 0;
  }
  #trust p::after {
    background: url(../media/img/top/trust_bg.jpg);
    background-size: 100% auto;
    content: "";
    display: block;
    height: 40vw;
    margin: 3vw 0 4vw;
    width: 100%;
  }
}
#trust dl {
  border-left: 10px solid rgba(255, 255, 255, 0.5);
  margin: 0 0 30px 40%;
  padding: 0 0 0 15px;
}
@media only screen and (max-width: 750px) {
  #trust dl {
    margin: 0 0 4vw 0;
    padding: 0 0 0 2vw;
  }
}
#trust dl dt {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 750px) {
  #trust dl dt {
    font-size: 16px;
    margin: 0 0 3vw;
  }
}
#trust dl dd {
  color: #fff;
  font-size: 18px;
}
@media only screen and (max-width: 750px) {
  #trust dl dd {
    font-size: 14px;
  }
}

/********** お客様の声 **********/
#voice {
  padding: 6vw 0;
}
#voice h2 {
  background: url("../media/img/top/voice_hl.png") no-repeat;
  background-size: 100px auto;
  background-position: top center;
  color: #2837D2;
  font-size: 28px;
  margin: 0 0 3vw;
  padding: 120px 0 0;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  #voice h2 {
    font-size: 20px;
    background-size: auto 20vw;
    margin: 0 0 4vw;
    padding: 23vw 0 0;
  }
}
#voice .slide_voice dl {
  border-radius: 8px;
  background: linear-gradient(0deg, #A3C902, #00A1C7);
  display: block;
  margin: 0 10px 0;
}
#voice .slide_voice dl dt {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  padding: 30px 20px;
  text-align: center;
}
#voice .slide_voice dl dd {
  background: #F2F2F2;
  border-radius: 0 0 6px 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  padding: 20px;
}
#voice .slide_voice .t0 {
  background-image: url("../media/img/top/trouble0.svg");
}
#voice .slide_voice .t1 {
  background-image: url("../media/img/top/trouble1.svg");
}
#voice .slide_voice .t2 {
  background-image: url("../media/img/top/trouble2.svg");
}
#voice .slide_voice .t3 {
  background-image: url("../media/img/top/trouble3.svg");
}
#voice .slide_voice .t4 {
  background-image: url("../media/img/top/trouble4.svg");
}
#voice .slide_voice .t5 {
  background-image: url("../media/img/top/trouble5.svg");
}
#voice .slide_voice .t6 {
  background-image: url("../media/img/top/trouble6.svg");
}
#voice .slide_voice .t7 {
  background-image: url("../media/img/top/trouble7.svg");
}

/*===== cta2 =====*/
#cta2 {
  background: linear-gradient(135deg, #FCEE21, #FF00FF);
  padding: 60px 0;
}
@media only screen and (max-width: 750px) {
  #cta2 {
    padding: 4vw 0;
  }
}
#cta2 h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 10px;
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 750px) {
  #cta2 h2 {
    font-size: 20px;
  }
}
#cta2 p {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 40px;
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 750px) {
  #cta2 p {
    font-size: 16px;
    margin: 0 0 2vw;
  }
}
#cta2 .inner {
  display: flex;
}
@media only screen and (max-width: 750px) {
  #cta2 .inner {
    flex-direction: column;
    padding: 0 4vw;
  }
}
#cta2 .inner .txt {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 180%;
  width: 40%;
}
@media only screen and (max-width: 750px) {
  #cta2 .inner .txt {
    font-size: 14px;
    width: 100%;
  }
}
#cta2 .inner .btn {
  display: flex;
  justify-content: right;
  padding: 60px 0 0;
  position: relative;
  width: 50%;
}
@media only screen and (max-width: 750px) {
  #cta2 .inner .btn {
    padding: 10vw 0 0;
    width: 100%;
  }
}
#cta2 .inner .btn a {
  align-items: center;
  background: linear-gradient(120deg, #00f, #0ff, #00f);
  background-size: 200% auto;
  transition: background-position 0.5s ease;
  border-radius: 10px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  color: #fff;
  display: flex;
  font-size: 22px;
  font-weight: 900;
  justify-content: center;
  padding: 60px 0 20px;
  text-align: center;
  width: 80%;
}
#cta2 .inner .btn a:hover {
  background-position: right center;
}
@media only screen and (max-width: 750px) {
  #cta2 .inner .btn a {
    padding: 10vw 4vw 4vw;
    width: 100%;
  }
}
#cta2 .inner .btn i {
  background: url(../media/img/top/sim1.svg) no-repeat;
  display: block;
  height: 127px;
  position: absolute;
  top: -20px;
  right: 32.5%;
  width: 88px;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  #cta2 .inner .btn i {
    right: 31%;
  }
}
@media only screen and (max-width: 750px) {
  #cta2 .inner .btn i {
    background-position: center top;
    background-size: auto 100%;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 14vw;
    top: 4vw;
    width: 10vw;
  }
}

/*===== faq =====*/
#faq {
  padding: 60px 0;
}
#faq h2 {
  color: #2837D2;
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 750px) {
  #faq h2 {
    font-size: 20px;
  }
}
#faq dl {
  margin: 0 0 20px;
}
#faq dl dt {
  background: url(../media/img/top/faq_dt.svg) no-repeat #F2F2F2;
  background-position: right bottom;
  background-size: 50px 50px;
  color: #2837D2;
  font-size: 18px;
  font-weight: 800;
  padding: 30px;
}
#faq dl dt:hover {
  cursor: pointer;
}
@media only screen and (max-width: 750px) {
  #faq dl dt {
    background-size: 4vw;
    font-size: 16px;
    padding: 2vw;
  }
}
#faq dl dd {
  background: #2837D2;
  color: #fff;
  display: none;
  font-size: 16px;
  padding: 30px;
  overflow: hidden;
  transition: max-height 0.6s ease;
}
@media only screen and (max-width: 750px) {
  #faq dl dd {
    font-size: 14px;
    height: auto;
    padding: 4vw;
  }
}

/********** スライダー **********/
.dots-wrap {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.dots-wrap li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
  background: #2837D2;
}

.dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

/********** 言語スイッチャー **********/
#langForm {
  margin: 10px 0 0;
}/*# sourceMappingURL=top.css.map */