@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  outline: none;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: #FFF6DC;
  font-family: "Noto Sans JP", sans-serif;
  color: #111827;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  html, body {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  html, body {
    font-size: 12px;
  }
}

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}

.en {
  font-family: "Montserrat", sans-serif;
}

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

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

.flex {
  display: flex !important;
}

section {
  padding: 75px 0;
}
section .section_ttl {
  margin-bottom: 50px;
}
section .section_ttl img {
  display: table;
  width: 50px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
section .section_ttl h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-up.fade-up2 {
  transition-delay: 0.3s;
}
.fade-up.fade-up3 {
  transition-delay: 0.6s;
}

.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 5px 0;
  z-index: 10;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}
header.is-show {
  transform: translateY(0);
  opacity: 1;
}
header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}
@media screen and (max-width: 1100px) {
  header .header-inner {
    padding: 0 15px;
  }
}
@media screen and (max-width: 480px) {
  header .header-inner {
    padding: 0 5px;
  }
}
header .header-inner .header-logo {
  width: 180px;
  height: 100%;
  z-index: 50;
}
@media screen and (max-width: 480px) {
  header .header-inner .header-logo {
    width: 140px;
  }
}
header .header-inner .header-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .header-inner .header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1100px) {
  header .header-inner .header-nav {
    margin-right: 15px;
  }
}
@media screen and (max-width: 480px) {
  header .header-inner .header-nav {
    gap: 10px;
    margin-right: 10px;
  }
}
header .header-inner .header-nav ul.header-nav-list {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1100px) {
  header .header-inner .header-nav ul.header-nav-list {
    display: none;
  }
}
header .header-inner .header-nav ul.header-nav-list li a {
  color: #2D2B62;
  font-weight: bold;
}
header .header-inner .header-nav .header-nav-btn p {
  position: relative;
  display: table;
  font-size: 0.625rem;
  color: #2D2B62;
  font-weight: bold;
  text-align: center;
  padding: 0 10px;
  margin: 0 auto;
}
header .header-inner .header-nav .header-nav-btn p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-35deg);
  width: 1px;
  height: 15px;
  background-color: #2D2B62;
}
header .header-inner .header-nav .header-nav-btn p::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(35deg);
  width: 1px;
  height: 15px;
  background-color: #2D2B62;
}
header .header-inner .header-nav .header-nav-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 40px;
  border-radius: 25px;
  background-color: #2D2B62;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 480px) {
  header .header-inner .header-nav .header-nav-btn a {
    width: 160px;
    height: 35px;
  }
}

.hamburger {
  display: none;
  width: 30px;
  cursor: pointer;
  z-index: 55;
}
@media screen and (max-width: 1100px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background-color: #2D2B62;
  border-radius: 5px;
  margin: 5px 0;
  transition: 0.5s;
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #FFF6DC;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  padding: 20px;
  box-sizing: border-box;
  z-index: 15;
}
.menu.open {
  opacity: 1;
  pointer-events: auto;
}
.menu .menu-nav {
  width: calc(100% - 10px);
}
.menu .menu-nav .menu-nav-list li {
  background: #2D2B62;
  border: 1px solid #2D2B62;
  border-radius: 10px;
  padding: 15px 25px;
  margin-bottom: 10px;
}
.menu .menu-nav .menu-nav-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
}
.menu .menu-nav .menu-nav-list li a img {
  width: 25px;
  height: 25px;
}
.menu .menu-nav .menu-nav-pp {
  margin-top: 25px;
}
.menu .menu-nav .menu-nav-pp li a {
  color: #2D2B62;
  font-size: 0.875rem;
  font-weight: bold;
}
.menu .otter_img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -7.5px);
}

#click-btn {
  transition: 0.3s;
  cursor: pointer;
}

#popup-wrap {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 9999;
  padding: 25px;
  align-items: center;
  justify-content: center;
}
#popup-wrap #popup-container {
  text-align: center;
  width: 100%;
  max-width: 1000px;
  background: white;
  margin: 10% auto;
  padding: 20px;
  position: relative;
  border-radius: 10px;
  box-shadow: 4px 4px 4px rgba(45, 43, 98, 0.25);
  padding: 50px;
}
@media screen and (max-width: 768px) {
  #popup-wrap #popup-container {
    padding: 50px 25px;
  }
}
#popup-wrap #popup-container #popup .cta_btn {
  position: relative;
  width: 100%;
  max-width: 600px;
  z-index: 2;
  margin: auto;
  margin-top: 35px;
}
@media screen and (max-width: 980px) {
  #popup-wrap #popup-container #popup .cta_btn {
    max-width: 500px;
  }
}
@media screen and (max-width: 768px) {
  #popup-wrap #popup-container #popup .cta_btn {
    max-width: 450px;
  }
}
#popup-wrap #popup-container #popup .cta_btn p {
  position: relative;
  display: table;
  color: #2D2B62;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  padding: 0 15px;
  margin: auto;
}
#popup-wrap #popup-container #popup .cta_btn p::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  transform: rotate(-35deg);
  width: 1px;
  height: 20px;
  background-color: #2D2B62;
}
#popup-wrap #popup-container #popup .cta_btn p::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  transform: rotate(35deg);
  width: 1px;
  height: 20px;
  background-color: #2D2B62;
}
#popup-wrap #popup-container #popup .cta_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  height: 120px;
  border-radius: 60px;
}
@media screen and (max-width: 980px) {
  #popup-wrap #popup-container #popup .cta_btn a {
    height: 90px;
  }
}
@media screen and (max-width: 768px) {
  #popup-wrap #popup-container #popup .cta_btn a {
    height: 80px;
  }
}
#popup-wrap #popup-container #popup .cta_btn a {
  background: linear-gradient(to bottom, #2D2B62 0%, #2D2B62 50%, #57578F 50%, #57578F 100%);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #popup-wrap #popup-container #popup .cta_btn a {
    font-size: 1.5rem;
  }
}
#popup-wrap #popup-container #popup .cta_btn .otter_img {
  position: absolute;
  left: -10px;
  bottom: 0;
  width: 90px;
}
@media screen and (max-width: 980px) {
  #popup-wrap #popup-container #popup .cta_btn .otter_img {
    width: 65px;
  }
}
@media screen and (max-width: 768px) {
  #popup-wrap #popup-container #popup .cta_btn .otter_img {
    left: -25px;
    bottom: -50px;
  }
}
#popup-wrap #popup-container #popup .coupon_contents .top_txt {
  color: #2D2B62;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 980px) {
  #popup-wrap #popup-container #popup .coupon_contents .top_txt {
    font-size: 1.125rem;
  }
}
#popup-wrap #popup-container #popup .coupon_contents .code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FFE082;
  font-size: 1.75rem;
  font-weight: bold;
  margin: 10px auto;
  padding: 5px 35px;
}
#popup-wrap #popup-container #popup .coupon_contents .subtxt {
  color: #2D2B62;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: -0.05rem;
  line-height: 1.25;
}
@media screen and (max-width: 980px) {
  #popup-wrap #popup-container #popup .coupon_contents .subtxt {
    font-size: 1.125rem;
  }
}
#popup-wrap #popup-container #popup .coupon_contents .subtxt span {
  border-bottom: 3px solid #FFC412;
}
#popup-wrap #popup-container #popup .coupon_contents .req {
  color: #2D2B62;
  font-size: 0.825rem;
  margin-top: 10px;
}
#popup-wrap #popup-container #close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 480px) {
  #popup-wrap #popup-container #close {
    width: 20px;
    height: 20px;
  }
}
#popup-wrap #popup-container #close span {
  position: absolute;
  top: 50%;
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 5px;
  background-color: #2D2B62;
}
#popup-wrap #popup-container #close span:first-child {
  right: 2px;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 480px) {
  #popup-wrap #popup-container #close span:first-child {
    right: 1px;
  }
}
#popup-wrap #popup-container #close span:last-child {
  transform: rotate(-45deg) translateY(-50%);
}
@media screen and (max-width: 480px) {
  #popup-wrap #popup-container #close span {
    width: 20px;
    height: 2px;
  }
}

.mv {
  position: relative;
  background-image: url(../images/mv_bg.jpeg);
  background-size: cover;
  background-position: right;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .mv {
    background-position-x: right -100px;
  }
}
@media screen and (max-width: 480px) {
  .mv {
    height: 100vh;
    padding-top: 0;
  }
}
.mv .mv_inner {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 480px) {
  .mv .mv_inner {
    height: 100vh;
  }
}
.mv .mv_content {
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 480px) {
  .mv .mv_content {
    height: 100vh;
    padding-top: 75px;
  }
}
.mv .mv_content .sub {
  display: table;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  background-color: #2D2B62;
  padding: 5px 25px;
}
@media screen and (max-width: 480px) {
  .mv .mv_content .sub {
    padding: 5px 10px;
    font-size: 1rem;
  }
}
.mv .mv_content h1 {
  color: #2D2B62;
  font-size: 4.625rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.05rem;
  margin: 25px 0;
}
.mv .mv_content h1 .sponly {
  display: none;
}
@media screen and (max-width: 980px) {
  .mv .mv_content h1 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .mv .mv_content h1 {
    font-size: 3rem;
  }
  .mv .mv_content h1 .sponly {
    display: block;
  }
}
.mv .mv_content .txt {
  display: table;
  color: #2D2B62;
  font-size: 1.125rem;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 15px 50px;
}
@media screen and (max-width: 980px) {
  .mv .mv_content .txt {
    font-size: 1rem;
    padding: 15px 35px;
  }
}
@media screen and (max-width: 768px) {
  .mv .mv_content .txt {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .mv .mv_content .mv_cta {
    position: absolute;
    top: 40%;
  }
}
.mv .mv_content .cta_btn {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-top: 35px;
  z-index: 2;
}
@media screen and (max-width: 980px) {
  .mv .mv_content .cta_btn {
    max-width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .mv .mv_content .cta_btn {
    max-width: 450px;
    margin-top: 150px;
  }
}
@media screen and (max-width: 480px) {
  .mv .mv_content .cta_btn {
    margin-top: 0;
  }
}
.mv .mv_content .cta_btn p {
  position: relative;
  display: table;
  color: #2D2B62;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  padding: 0 15px;
  margin: auto;
}
.mv .mv_content .cta_btn p::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  transform: rotate(-35deg);
  width: 1px;
  height: 20px;
  background-color: #2D2B62;
}
.mv .mv_content .cta_btn p::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  transform: rotate(35deg);
  width: 1px;
  height: 20px;
  background-color: #2D2B62;
}
.mv .mv_content .cta_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  height: 120px;
  border-radius: 60px;
}
@media screen and (max-width: 980px) {
  .mv .mv_content .cta_btn a {
    height: 90px;
  }
}
@media screen and (max-width: 768px) {
  .mv .mv_content .cta_btn a {
    height: 80px;
  }
}
@media screen and (max-width: 480px) {
  .mv .mv_content .cta_btn a {
    height: 70px;
    font-size: 1.25rem !important;
  }
  .mv .mv_content .cta_btn a img {
    width: 20px;
  }
}
.mv .mv_content .cta_btn a {
  background: linear-gradient(to bottom, #2D2B62 0%, #2D2B62 50%, #57578F 50%, #57578F 100%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 35px;
}
.mv .mv_content .cta_btn .otter_img {
  position: absolute;
  left: -10px;
  bottom: 0;
  width: 90px;
}
@media screen and (max-width: 980px) {
  .mv .mv_content .cta_btn .otter_img {
    width: 75px;
  }
}
@media screen and (max-width: 480px) {
  .mv .mv_content .cta_btn .otter_img {
    width: 50px;
  }
}
.mv .mv_content .coupon_contents {
  position: relative;
  top: -50px;
  width: 100%;
  max-width: 700px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 4px 4px 4px rgba(45, 43, 98, 0.25);
  padding: 30px 50px;
}
@media screen and (max-width: 980px) {
  .mv .mv_content .coupon_contents {
    max-width: 600px;
    padding: 30px 25px;
  }
}
.mv .mv_content .coupon_contents .top_txt {
  color: #2D2B62;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 980px) {
  .mv .mv_content .coupon_contents .top_txt {
    font-size: 1.125rem;
  }
}
.mv .mv_content .coupon_contents .code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FFE082;
  font-size: 1.75rem;
  font-weight: bold;
  margin: 10px auto;
  padding: 5px 35px;
}
@media screen and (max-width: 480px) {
  .mv .mv_content .coupon_contents .code {
    display: block;
    width: 100%;
    font-size: 1.5rem;
    text-align: center;
    padding: 5px;
  }
}
.mv .mv_content .coupon_contents .subtxt {
  color: #2D2B62;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: -0.05rem;
  line-height: 1.25;
}
@media screen and (max-width: 980px) {
  .mv .mv_content .coupon_contents .subtxt {
    font-size: 1.125rem;
  }
}
.mv .mv_content .coupon_contents .subtxt span {
  border-bottom: 3px solid #FFC412;
}
.mv .mv_content .coupon_contents .req {
  color: #2D2B62;
  font-size: 0.825rem;
  margin-top: 10px;
}
.mv .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .mv .bg {
    height: 50%;
  }
}
.mv .bg .lightyellow {
  position: relative;
  width: 25%;
  height: 100%;
  background-color: #FFE082;
}
@media screen and (max-width: 768px) {
  .mv .bg .lightyellow {
    display: none;
  }
}
.mv .bg .triangle_lightyellow {
  position: absolute;
  top: 0;
  left: 25%;
  display: block;
  width: 25%;
  height: 100%;
  background: #FFE082;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .mv .bg .triangle_lightyellow {
    left: 0;
    width: 40%;
  }
}
.mv .bg .triangle_yellow {
  position: absolute;
  top: 0;
  left: 25%;
  display: block;
  width: 35%;
  height: 100%;
  background: #FFC412;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .mv .bg .triangle_yellow {
    left: 0;
    width: 45%;
  }
}
.mv .partner_mark {
  position: absolute;
  right: 50px;
  bottom: 50px;
  width: 235px;
  height: 235px;
  z-index: 6;
}
@media screen and (max-width: 980px) {
  .mv .partner_mark {
    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 768px) {
  .mv .partner_mark {
    right: 20px;
    bottom: 20px;
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 480px) {
  .mv .partner_mark {
    right: 10px;
    bottom: -60px;
  }
}
.mv .partner_mark img {
  width: 100%;
  height: 100%;
}

.intro .intro_content {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .intro .intro_content {
    flex-wrap: wrap;
  }
}
.intro .intro_content .intro_content_item {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .intro .intro_content .intro_content_item {
    width: 100%;
  }
}
.intro .intro_content .intro_content_item .en {
  color: #F97316;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.intro .intro_content .intro_content_item h3 {
  color: #2D2B62;
  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: -0.03rem;
  margin: 25px 0;
}
.intro .intro_content .intro_content_item h3 img {
  position: relative;
  top: 20px;
  width: 200px;
  height: auto;
  margin: 0;
}
.intro .intro_content .intro_content_item .txt {
  line-height: 2;
}
.intro .intro_content .intro_content_item .intro_content_item_tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 0;
  margin-top: 35px;
}
.intro .intro_content .intro_content_item .intro_content_item_tag p {
  width: 32%;
  color: #fff;
  font-size: 0.975rem;
  font-weight: bold;
  text-align: center;
  background-color: #F97316;
  border-radius: 50px;
  padding: 10px 0;
}
.intro .intro_content .intro_content_img {
  width: 50%;
  padding-top: 50px;
  aspect-ratio: 5/4;
}
@media screen and (max-width: 768px) {
  .intro .intro_content .intro_content_img {
    width: 100%;
    margin-top: 35px;
  }
}
.intro .intro_content .intro_content_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 15px;
  box-shadow: 0px 0px 15px rgba(87, 87, 143, 0.15);
  -o-object-fit: cover;
     object-fit: cover;
}

.about {
  background-color: #FF8C42;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1294117647) 1px, transparent 2px);
  background-size: 16px 16px;
  padding-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .about {
    padding-bottom: 75px;
  }
}
.about .about_content {
  position: relative;
}
.about .about_content .ttl {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
.about .about_content .ttl span {
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
  border-bottom: 2px solid #fff;
}
.about .about_content .ttl br {
  display: none;
}
@media screen and (max-width: 768px) {
  .about .about_content .ttl br {
    display: block;
  }
}
.about .about_content .about_content_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
}
.about .about_content .about_content_item .hukidashi {
  position: relative;
}
.about .about_content .about_content_item .hukidashi::before {
  content: "";
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #fff;
}
.about .about_content .about_content_item .hukidashi {
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 4px 4px 10px rgba(45, 43, 98, 0.15);
  padding: 20px 50px;
}
.about .about_content .about_content_item .hukidashi .hukidashi_txt {
  font-size: 1.25rem;
  font-weight: bold;
}
.about .about_content .about_content_item .hukidashi .hukidashi_txt br {
  display: none;
}
@media screen and (max-width: 480px) {
  .about .about_content .about_content_item .hukidashi .hukidashi_txt br {
    display: block;
  }
}
.about .about_content .otter_img {
  position: absolute;
  left: 25px;
  bottom: 0;
  width: 110px;
}
@media screen and (max-width: 480px) {
  .about .about_content .otter_img {
    left: 0;
    bottom: -50px;
    width: 70px;
  }
}

.makevi {
  position: relative;
  padding-top: 0px;
}
.makevi .triangle {
  width: 100%;
  height: 130px;
  background-color: #FF8C42;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1294117647) 1px, transparent 2px);
  background-size: 16px 16px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .makevi .triangle {
    height: 75px;
  }
}
.makevi .makevi_ttl {
  text-align: center;
  margin-bottom: 50px;
}
.makevi .makevi_ttl h2 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .makevi .makevi_ttl h2 {
    display: block;
    gap: 0;
  }
}
.makevi .makevi_ttl h2 span {
  font-size: 6rem;
  font-weight: 600;
  color: #F97316;
  text-shadow: none;
}
@media screen and (max-width: 768px) {
  .makevi .makevi_ttl h2 span {
    display: block;
    margin: 0;
  }
}
.makevi .makevi_ttl p {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 20px;
}
.makevi .makevi_ttl p br {
  display: none;
}
@media screen and (max-width: 768px) {
  .makevi .makevi_ttl p br {
    display: block;
  }
}
.makevi .makevi_content .makevi_content_item {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 35px rgba(45, 43, 98, 0.15);
  padding: 50px 30px;
  margin-bottom: 50px;
}
.makevi .makevi_content .makevi_content_item:last-child {
  margin-bottom: 0;
}
.makevi .makevi_content .makevi_content_item .makevi_content_item_head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
@media screen and (max-width: 480px) {
  .makevi .makevi_content .makevi_content_item .makevi_content_item_head {
    flex-wrap: wrap;
  }
}
.makevi .makevi_content .makevi_content_item .makevi_content_item_head p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 5px;
  background-color: #F97316;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .makevi .makevi_content .makevi_content_item .makevi_content_item_head p {
    width: 50px;
    height: 50px;
    margin: auto;
  }
}
.makevi .makevi_content .makevi_content_item .makevi_content_item_head h4 {
  width: calc(100% - 95px);
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .makevi .makevi_content .makevi_content_item .makevi_content_item_head h4 {
    width: 100%;
  }
}
.makevi .makevi_content .makevi_content_item .makevi_content_item_main {
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .makevi .makevi_content .makevi_content_item .makevi_content_item_main {
    flex-wrap: wrap;
  }
}
.makevi .makevi_content .makevi_content_item .makevi_content_item_main .makevi_content_item_main_box {
  width: 45%;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .makevi .makevi_content .makevi_content_item .makevi_content_item_main .makevi_content_item_main_box {
    width: 100%;
  }
}
.makevi .makevi_content .makevi_content_item .makevi_content_item_main .makevi_content_item_main_box .sub {
  display: table;
  font-size: 0.875rem;
  font-weight: bold;
  color: #fff;
  background-color: #F97316;
  padding: 5px 20px;
  border-radius: 5px;
}
.makevi .makevi_content .makevi_content_item .makevi_content_item_main .makevi_content_item_main_box .ttl {
  font-size: 1.75rem;
  font-weight: bold;
  margin: 10px 0;
}
.makevi .makevi_content .makevi_content_item .makevi_content_item_main .makevi_content_item_main_box .box_icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}
.makevi .makevi_content .makevi_content_item .makevi_content_item_main .makevi_content_item_main_box .box_icon img {
  width: 55px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.makevi .makevi_content .makevi_content_item .makevi_content_item_main .makevi_content_item_main_box .plus_img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 25px;
}
.makevi .makevi_content .makevi_content_item .makevi_content_item_main .makevi_content_item_main_box.plus {
  border: 2px solid #F97316;
  background-color: rgba(249, 115, 22, 0.1);
}
.makevi .makevi_content .makevi_content_item .makevi_content_item_main .makevi_content_item_main_box.plus .sub {
  background-color: #fff;
  color: #F97316;
  box-shadow: 0px 0px 10px rgba(45, 43, 98, 0.1);
}
.makevi .makevi_content .makevi_content_item .makevi_content_item_main .makevi_content_item_main_box.plus .ttl {
  color: #F97316;
}
.makevi .makevi_content .makevi_content_item .makevi_content_item_main .plus_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .makevi .makevi_content .makevi_content_item .makevi_content_item_main .plus_icon {
    position: relative;
    top: inherit;
    left: inherit;
    transform: none;
    display: table;
    width: 40px;
    height: 40px;
    margin: 15px auto;
  }
}
.makevi .makevi_content .makevi_content_item .makevi_content_item_foot {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.makevi .makevi_content .makevi_content_item .makevi_content_item_foot .makevi_content_item_foot_box {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.makevi .makevi_content .makevi_content_item .makevi_content_item_foot .makevi_content_item_foot_box img {
  width: 75px;
  height: auto;
}
.makevi .makevi_content .makevi_content_item .makevi_content_item_foot .makevi_content_item_foot_box .ttl {
  display: inline;
  color: #2D2B62;
  font-size: 2.5rem;
  font-weight: 900;
  border-bottom: 2px solid #2D2B62;
}
.makevi .makevi_content .makevi_content_item .makevi_content_item_foot .makevi_content_item_foot_box .ttl br {
  display: none;
}
@media screen and (max-width: 768px) {
  .makevi .makevi_content .makevi_content_item .makevi_content_item_foot .makevi_content_item_foot_box .ttl br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .makevi .makevi_content .makevi_content_item .makevi_content_item_foot .makevi_content_item_foot_box .ttl {
    font-size: 2rem;
  }
}

.voice {
  background-color: #F97316;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1294117647) 1px, transparent 2px);
  background-size: 16px 16px;
}
.voice .voice_content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 980px) {
  .voice .voice_content {
    flex-wrap: wrap;
    gap: 15px 0;
  }
}
.voice .voice_content .voice_item {
  width: 32%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 4px 4px 10px rgba(45, 43, 98, 0.15);
  padding: 30px 25px;
}
@media screen and (max-width: 980px) {
  .voice .voice_content .voice_item {
    width: 100%;
  }
}
.voice .voice_content .voice_item .voice_item_head {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.voice .voice_content .voice_item .voice_item_head img {
  width: 100px;
  height: 100px;
}
.voice .voice_content .voice_item .voice_item_head .voice_item_head_txt .voice_item_head_txt_ttl {
  display: inline;
  font-size: 1.175rem;
  font-weight: bold;
  letter-spacing: -0.05em;
  line-height: 1.2;
  border-bottom: 5px solid #FFE082;
}
.voice .voice_content .voice_item .voice_item_head .voice_item_head_txt .voice_item_head_txt_sub {
  font-size: 0.625rem;
  margin-top: 10px;
}
.voice .voice_content .voice_item .voice_item_txt {
  background-color: rgba(87, 87, 143, 0.05);
  font-size: 0.875rem;
  margin-top: 20px;
  padding: 30px 25px;
  border-radius: 10px;
}

.flow {
  background-color: #57578F;
  padding-bottom: 150px;
}
.flow .flow_content .flow_item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 25px 50px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 6px 6px 0 #2D2B62;
  margin-bottom: 45px;
}
.flow .flow_content .flow_item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .flow .flow_content .flow_item {
    padding: 25px;
    gap: 25px;
  }
}
.flow .flow_content .flow_item .flow_item_num p {
  font-size: 1.5rem;
  font-weight: 900;
  color: #2D2B62;
  text-align: center;
  list-style: 1;
}
.flow .flow_content .flow_item .flow_item_num p span {
  font-size: 3rem;
  font-weight: 900;
}
.flow .flow_content .flow_item .flow_item_txt .ttl {
  font-size: 1.5rem;
  font-weight: 900;
  color: #2D2B62;
  margin-bottom: 10px;
}
.flow .flow_content .flow_item .flow_item_img {
  position: absolute;
  top: 85%;
  left: 65px;
  width: 40px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .flow .flow_content .flow_item .flow_item_img {
    left: 40px;
    width: 30px;
  }
}
.flow .flow_content .flow_item .flow_item_img img {
  width: 100%;
  height: 100%;
}
.flow .flow_content .flow_item .flow_item_img_goal {
  position: absolute;
  top: 50%;
  right: 50px;
  width: 120px;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .flow .flow_content .flow_item .flow_item_img_goal {
    top: 75%;
  }
}
@media screen and (max-width: 480px) {
  .flow .flow_content .flow_item .flow_item_img_goal {
    top: 90%;
    width: 100px;
  }
}
.flow .flow_content .flow_item .flow_item_img_goal img {
  width: 100%;
  height: 100%;
}

.question {
  background-color: #FFC412;
  background-image: url(../images/makevi_logo_symbol_white_a.png);
  background-size: 70px auto;
  background-position: center;
  background-repeat: repeat;
}
.question .question_content .faq_item {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 50px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .question .question_content .faq_item {
    padding: 25px 25px;
  }
}
.question .question_content .faq_item:last-child {
  margin-bottom: 0;
}
.question .question_content .faq_item .faq_question {
  position: relative;
  width: 100%;
  text-align: left;
  font-size: 1.5rem;
  font-weight: bold;
  color: #2D2B62;
  background: none;
  border: none;
  cursor: pointer;
}
.question .question_content .faq_item .faq_question span {
  font-size: 2.5rem;
  font-weight: 900;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .question .question_content .faq_item .faq_question span {
    font-size: 2rem;
    margin-right: 15px;
  }
}
.question .question_content .faq_item .faq_question::after, .question .question_content .faq_item .faq_question::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 25px;
  height: 5px;
  background-color: #2D2B62;
  transition: transform 0.4s ease;
}
@media screen and (max-width: 768px) {
  .question .question_content .faq_item .faq_question::after, .question .question_content .faq_item .faq_question::before {
    right: -5px;
  }
}
.question .question_content .faq_item .faq_question::after {
  transform: translateY(-50%);
}
.question .question_content .faq_item .faq_question::before {
  transform: translateY(-50%) rotate(-90deg);
}
.question .question_content .faq_item .faq_answer {
  overflow: hidden;
  height: 0;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.question .question_content .faq_item .faq_answer_inner {
  border-top: 1px solid rgba(87, 87, 143, 0.1);
  padding-top: 20px;
  margin-top: 20px;
}
.question .question_content .faq_item .faq_answer_inner p {
  padding-left: 75px;
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  .question .question_content .faq_item .faq_answer_inner p {
    padding-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .question .question_content .faq_item .faq_answer_inner p {
    padding-right: 0;
  }
}
.question .question_content .faq_item.is-open .faq_question::before {
  transform: translateY(-50%) rotate(0deg);
}

.cta {
  background-color: #F97316;
  padding: 40px 0;
}
.cta .cta_ttl {
  margin-bottom: 40px;
}
.cta .cta_ttl img {
  display: table;
  width: 150px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.cta .cta_ttl h2 {
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
  color: #fff;
}
.cta .cta_ttl h2 br {
  display: none;
}
@media screen and (max-width: 768px) {
  .cta .cta_ttl h2 br {
    display: block;
  }
}
.cta .cta_content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cta .cta_content {
    flex-wrap: wrap;
  }
}
.cta .cta_content .cta_content_box {
  position: relative;
  width: 45%;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 4px 4px 10px rgba(87, 87, 143, 0.1);
  padding: 0 25px 25px 25px;
  margin-left: 7%;
}
@media screen and (max-width: 768px) {
  .cta .cta_content .cta_content_box {
    width: 100%;
    margin-left: 0;
    margin-bottom: 35px;
  }
}
.cta .cta_content .cta_content_box .otter_img {
  position: absolute;
  left: -15%;
  bottom: -15px;
  width: 100px;
}
@media screen and (max-width: 768px) {
  .cta .cta_content .cta_content_box .otter_img {
    display: none;
  }
}
.cta .cta_content .cta_content_box .cta_content_box_ttl {
  position: relative;
  top: -20px;
  right: -10%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2D2B62;
  border-radius: 25px;
  width: 80%;
  height: 50px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
.cta .cta_content .cta_content_box .cta_content_box_txt {
  color: #2D2B62;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
.cta .cta_content .cta_content_box .cta_content_box_code {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFE082;
  font-size: 1.75rem;
  font-weight: bold;
  margin: 10px auto;
  padding: 5px 15px;
}
.cta .cta_content .cta_content_box .cta_content_box_txt_sub {
  position: relative;
  display: table;
  color: #2D2B62;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 5px;
  padding: 0 15px;
}
.cta .cta_content .cta_content_box .cta_content_box_txt_sub::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  transform: rotate(-35deg);
  width: 1px;
  height: 20px;
  background-color: #2D2B62;
}
.cta .cta_content .cta_content_box .cta_content_box_txt_sub::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  transform: rotate(35deg);
  width: 1px;
  height: 20px;
  background-color: #2D2B62;
}
.cta .cta_content .cta_content_box .cta_content_box_txt_inner {
  background-color: #DBEAFE;
  border-radius: 10px;
  padding: 15px 25px;
}
.cta .cta_content .cta_content_box .cta_content_box_txt_inner .cta_content_box_txt_inner_txt {
  color: #2D2B62;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: -0.05rem;
  line-height: 1.25;
}
.cta .cta_content .cta_content_box .cta_content_box_txt_inner .cta_content_box_txt_inner_txt span {
  border-bottom: 3px solid #FFC412;
}
.cta .cta_content .cta_content_box .cta_content_box_txt_inner .cta_content_box_txt_inner_txt_sub {
  color: #2D2B62;
  font-size: 0.825rem;
  margin-top: 10px;
}
.cta .cta_content .cta_content_btn_inner {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .cta .cta_content .cta_content_btn_inner {
    width: 100%;
  }
}
.cta .cta_content .cta_content_btn_inner .cta_content_btn {
  width: 100%;
}
.cta .cta_content .cta_content_btn_inner .cta_content_btn p {
  position: relative;
  display: table;
  color: #fff;
  font-size: 1.125rem;
  text-align: center;
  padding: 0 15px;
  margin: auto;
}
.cta .cta_content .cta_content_btn_inner .cta_content_btn p::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  transform: rotate(-35deg);
  width: 1px;
  height: 20px;
  background-color: #fff;
}
.cta .cta_content .cta_content_btn_inner .cta_content_btn p::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  transform: rotate(35deg);
  width: 1px;
  height: 20px;
  background-color: #fff;
}
.cta .cta_content .cta_content_btn_inner .cta_content_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  height: 120px;
  border-radius: 60px;
  background: linear-gradient(to bottom, #2D2B62 0%, #2D2B62 50%, #57578F 50%, #57578F 100%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 35px;
}
@media screen and (max-width: 480px) {
  .cta .cta_content .cta_content_btn_inner .cta_content_btn a {
    height: 80px;
  }
}

.commerce-law {
  display: flex;
  margin: 75px auto;
}
.commerce-law h1 {
  color: #2D2B62;
  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .commerce-law h1 {
    font-size: 2rem;
  }
}
.commerce-law .commerce-law_container .commerce-law_item {
  margin-bottom: 50px;
}
.commerce-law .commerce-law_container .commerce-law_item p {
  color: #2D2B62;
  line-height: 2;
}
.commerce-law .commerce-law_container .commerce-law_item .ttl {
  font-size: 1.125rem;
  font-weight: bold;
  border-bottom: 1px solid #2D2B62;
  margin-bottom: 15px;
}

footer {
  background-color: #2D2B62;
  color: #fff;
  padding: 40px 0 25px;
}
footer .footer-logo {
  width: 200px;
  height: 100%;
}
footer .footer-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer .footer-nav {
    flex-wrap: wrap;
  }
}
footer .footer-nav ul {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  footer .footer-nav ul {
    width: 100%;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 15px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-nav ul li {
    width: 100%;
  }
}
footer .footer-nav ul li a {
  color: #fff;
  font-size: 12px;
}
footer .footer-nav p {
  font-size: 12px;
}/*# sourceMappingURL=style.css.map */