@charset "UTF-8";
/*******************************************************************/
/*******************************************************************/
@import url("https://fonts.googleapis.com/css2?family=DotGothic16&family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+2:wght@100;400;500;600;700;800;900&family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Rowdies:wght@300;400;700&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
html {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 62.5%;
}

body {
  color: #333333;
  font-size: 1.8rem;
}

.btn_float_contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background-color: #3549c8;
  color: #ffffff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 16px 24px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn_float_contact img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

img {
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

nav {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
  background-color: #ffffff;
  transition: width 0.5s ease, height 0.5s ease;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width:1024px) {
  nav ul {
    display: none;
  }
}
nav ul li {
  list-style: none;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 16px;
}
nav ul li a {
  color: #333;
  text-decoration: none;
}
nav ul li a:hover, nav ul li a:visited, nav ul li a:active, nav ul li a:link {
  color: #333;
}

.underline-hover {
  position: relative;
  display: inline-block;
  cursor: pointer;
  color: #333;
}
.underline-hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 1px;
  background-color: #333;
  transition: transform 0.4s ease;
}
.underline-hover:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.underline-hover a {
  color: #333;
}
.underline-hover a:hover, .underline-hover a:visited, .underline-hover a:active, .underline-hover a:link {
  color: #333;
}

.logo_menu {
  width: auto;
  height: 80px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 24px;
}
@media only screen and (max-width:1024px) {
  .logo_menu {
    left: 8px;
  }
}
.logo_menu img {
  width: auto;
  height: 60%;
  transition: height 0.5s ease;
  margin-top: -12px;
}
.logo_menu a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn_menu_main {
  background-color: #f40829;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  position: absolute;
  top: 16px;
  right: 16px;
  display: none;
  box-sizing: border-box;
}
@media only screen and (max-width:1024px) {
  .btn_menu_main {
    display: block;
  }
}
.btn_menu_main span {
  display: block;
  height: 2px;
  width: 50%;
  background-color: #fff;
  position: absolute;
  left: 25%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.btn_menu_main span:nth-child(1) {
  top: 16px;
}
.btn_menu_main span:nth-child(2) {
  top: 23px;
}
.btn_menu_main span:nth-child(3) {
  top: 30px;
}

.active span:nth-child(1) {
  transform: translateY(8px) rotate(-315deg);
}

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

.active span:nth-child(3) {
  transform: translateY(-6px) rotate(315deg);
}

.btn_link_works {
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  background-color: #c1272d;
  color: #ffffff;
  border-radius: 32px;
  height: 64px;
  width: 480px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-left: 24px;
  margin: 124px auto;
  cursor: pointer;
  transition: color 0.3s ease;
}
.btn_link_works:hover {
  color: #c1272d;
}
.btn_link_works:hover .btn_arrow {
  width: calc(100% - 12px);
  left: auto;
  right: 6px;
}

.nav_s {
  display: none;
  width: 90%;
  margin: 5%;
  margin-top: 80px;
}
.nav_s p {
  margin: 0;
  margin-bottom: 8px;
}
.nav_s ul {
  display: block;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.nav_s li {
  height: 32px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  border-bottom: 1px solid #999;
}

.list_nav_child {
  margin-left: 1.5em;
}

.btn_nav_sp a {
  color: #333;
  text-decoration: none;
}
.btn_nav_sp a:hover, .btn_nav_sp a:visited, .btn_nav_sp a:active, .btn_nav_sp a:link {
  color: #333;
}

.blackScreen {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
}

.activeScreen {
  display: block !important;
}

.sp_menu {
  width: 30%;
  min-height: 100vh;
}
@media only screen and (max-width:768px) {
  .sp_menu {
    width: 60%;
  }
}
@media only screen and (max-width:640px) {
  .sp_menu {
    width: 70%;
  }
}

.area_type-BOX {
  width: 90%;
  max-width: 992px;
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  padding: 48px 64px;
  margin: 120px auto 60px auto;
  position: relative;
  display: flex;
}
@media only screen and (max-width:768px) {
  .area_type-BOX {
    display: block;
    padding: 48px 36px;
  }
}

.logo_menu_sp {
  height: 25% !important;
}

.btn-name {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 85%;
}

.btn_arrow {
  z-index: 1;
  display: block;
  width: 52px;
  height: 52px;
  position: absolute;
  top: 6px;
  right: 6px;
  background-color: #ffffff;
  border-radius: 26px;
  transition: width 0.3s ease;
}
.btn_arrow img {
  width: 38px;
  display: block;
  position: absolute;
  top: 7px;
  right: 7px;
}

/***********************************************************************/
/***********************************************************************/
header {
  width: 100%;
  background-color: #ffffff;
  overflow: hidden;
  margin-top: 80px;
}
@media only screen and (max-width:767px) {
  header {
    margin-top: 0px;
  }
}

.header_inner {
  width: 100%;
  display: flex;
  align-items: center;
  background-image: url("../img/bg_header.png");
}
@media only screen and (max-width:640px) {
  .header_inner {
    background-image: none;
  }
}

.header_left {
  width: 42%;
  padding: 24px 24px 24px clamp(24px, 5vw, 72px);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.logo_company {
  width: clamp(80px, 10vw, 120px);
  display: block;
  margin-bottom: 8px;
}

.logo_title {
  width: clamp(240px, 32vw, 400px);
  display: block;
  margin-bottom: 16px;
}

.header_catch {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 3.2vw, 3.8rem);
  line-height: 1.5;
  margin: 0 0 12px;
}
.header_catch span {
  background: linear-gradient(180deg, #fff200 0%, #fa8f00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px #000000;
  paint-order: stroke fill;
}
@media only screen and (max-width:640px) {
  .header_catch span {
    -webkit-text-stroke: 1px #000000;
  }
}

.header_sub {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  color: #333333;
  line-height: 1.7;
  margin: 0 0 20px;
  font-weight: 700;
}

.header_medals {
  display: flex;
  gap: 8px;
  align-items: center;
}
.header_medals img {
  width: clamp(72px, 9vw, 112px);
}

.header_note {
  font-size: 1.2rem;
  color: #888888;
  margin: 6px 0 0;
}

.header_right {
  width: 58%;
  position: relative;
  flex-shrink: 1;
  margin-left: -6%;
  border-radius: 9999px 0 0 9999px;
  overflow: hidden;
}
.header_right .header_photo {
  width: 100%;
  display: block;
}
.header_right .header_effect {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  pointer-events: none;
}

@media only screen and (max-width:767px) {
  .header_inner {
    position: relative;
    flex-direction: column;
  }
  .header_left {
    width: 100%;
    box-sizing: border-box;
    padding: 120px 24px 40px;
    text-align: center;
    z-index: 1;
  }
  .logo_title {
    width: clamp(200px, 60vw, 320px);
    margin-left: auto;
    margin-right: auto;
  }
  .header_medals {
    justify-content: center;
  }
  .header_right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 0;
    margin-left: 0;
    opacity: 0.35;
  }
  .header_right .header_photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/***********************************************************************/
/***********************************************************************/
.area_contens {
  width: 100%;
  box-sizing: border-box;
  padding: 0 24px;
}

.arrow_below {
  width: 58px;
  height: 74px;
  background-image: url("../img/arrow_below.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin: 24px auto;
}

.img_center {
  width: 30%;
  margin: 24px auto;
}
@media only screen and (max-width:640px) {
  .img_center {
    width: 80%;
  }
}
.img_center img {
  width: 100%;
}

.title_center {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  text-align: center;
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  color: #ffffff;
}

.box_text_center {
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(2.4rem, 2.2rem + 0.625vw, 2.9rem);
  font-weight: 800;
  margin: 48px auto;
  line-height: 1.4;
}
.box_text_center span {
  color: #c1272d;
}

/***********************************************************************/
/***********************************************************************/
.title_problems {
  text-align: center;
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 800;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #333333;
}
.title_problems span {
  display: block;
}

.box_problems-list {
  width: min(80%, 980px);
  padding: 48px 24px;
  border: 1px solid #333333;
  border-radius: 12px;
  margin: 80px auto 0 auto;
  box-sizing: border-box;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 24px;
}
@media only screen and (max-width:640px) {
  .box_problems-list {
    flex-direction: column;
    align-items: center;
    width: 80%;
  }
}

.box_problems {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.box_problems img {
  width: 80%;
  max-width: 300px;
}
.box_problems p {
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  font-weight: bold;
  margin-top: 24px;
  line-height: 1.4;
}
@media only screen and (max-width:640px) {
  .box_problems {
    width: 80%;
    flex: none;
  }
  .box_problems img {
    max-width: 120px;
  }
}

/***********************************************************************/
/***********************************************************************/
.bg_what-top {
  background-image: url("../img/bg_top.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
  padding-bottom: 94px;
}
@media only screen and (max-width:640px) {
  .bg_what-top {
    padding-top: 0;
  }
}

.bg_what-bottom {
  background-image: url("../img/bg_bottom.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  padding-top: 204px;
}
@media only screen and (max-width:640px) {
  .bg_what-bottom {
    padding-top: 17.8vw;
  }
}

#area_what {
  background-color: #c1272d;
  width: 100%;
  padding-top: 120px;
  margin-top: -1px;
}

.box_game_photo_outer {
  width: 100%;
}
@media only screen and (max-width:640px) {
  .box_game_photo_outer {
    overflow: hidden;
  }
}

.box_game_photo {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}
.box_game_photo div {
  width: min(30%, 180px);
}
.box_game_photo div img {
  width: 100%;
}
.box_game_photo div[aria-hidden] {
  display: none;
}
@media only screen and (max-width:640px) {
  .box_game_photo div[aria-hidden] {
    display: block;
  }
}
@media only screen and (max-width:640px) {
  .box_game_photo {
    flex-wrap: nowrap;
    justify-content: flex-start;
    max-width: none;
    gap: 16px;
    animation: game-photo-scroll 18s linear infinite;
  }
  .box_game_photo div {
    flex-shrink: 0;
    width: 56vw;
  }
  .box_game_photo div img {
    width: 100%;
    height: auto;
  }
}

@keyframes game-photo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.box_photo {
  max-width: 840px;
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 48px auto;
}
.box_photo div {
  width: 20%;
}
.box_photo div img {
  width: 100%;
}
.box_photo div:nth-child(1) {
  transform: translateY(0px);
}
.box_photo div:nth-child(2) {
  transform: translateY(48px);
}
.box_photo div:nth-child(3) {
  transform: translateY(0px);
}
.box_photo div:nth-child(4) {
  transform: translateY(48px);
}

.box_headline {
  width: 80%;
  max-width: 640px;
  margin: 120px auto;
  font-size: clamp(1.6rem, 2rem + 0.625vw, 3.2rem);
  font-weight: 800;
  text-align: center;
  padding: 28px 0;
  border-radius: 120px;
  background-color: #ffffff;
  color: #c1272d;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media only screen and (max-width:640px) {
  .box_headline {
    width: 96%;
  }
}

.box_distinctive {
  width: 80%;
  max-width: 840px;
  margin: 48px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
}
.box_distinctive div {
  width: min(30%, 240px);
}
.box_distinctive div img {
  width: 100%;
}
.box_distinctive div p {
  font-size: clamp(1.2rem, 1.8rem + 0.625vw, 2.4rem);
  font-weight: bold;
  text-align: center;
  margin-top: 16px;
}
.box_distinctive .arrow {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
}
@media only screen and (max-width:640px) {
  .box_distinctive {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .box_distinctive div {
    width: min(60%, 240px);
  }
  .box_distinctive .arrow {
    transform: rotate(90deg);
  }
}

/***********************************************************************/
/***********************************************************************/
#area_select {
  margin-top: -200px;
}
@media only screen and (max-width:640px) {
  #area_select {
    margin-top: -50px;
  }
}
#area_select h1 {
  margin-top: 200px;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
}

.area_selectBox {
  width: 100%;
  box-sizing: border-box;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:640px) {
  .area_selectBox {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}

.box_selectBox {
  width: 30%;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media only screen and (max-width:640px) {
  .box_selectBox {
    width: 100%;
    margin-top: 64px;
  }
}
.box_selectBox img {
  width: 80%;
  display: block;
  margin: 0 auto;
}
.box_selectBox p {
  width: 85%;
  margin: 0 auto;
  line-height: 1.2;
}

.headline_main {
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.6rem, 1.8rem + 0.625vw, 2rem);
  background-color: #c1272d;
  color: #ffffff;
  padding: 12px 0;
  border-radius: 100px;
  margin: 24px 0;
}

.headline_sub {
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.6rem, 1.8rem + 0.625vw, 2rem);
  color: #c1272d;
  margin: 24px 0;
}

/***********************************************************************/
/***********************************************************************/
#area_works h1 {
  margin-top: 120px;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
}

.area_voice {
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media only screen and (max-width:640px) {
  .area_voice {
    flex-direction: column;
    align-items: center;
  }
}

.box_voice {
  width: 45%;
  display: flex;
}
@media only screen and (max-width:640px) {
  .box_voice {
    width: 90%;
  }
}

.box_fukidashi {
  width: 80%;
  aspect-ratio: 335/221;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
  box-sizing: border-box;
  padding-top: 36px;
}
@media only screen and (max-width:640px) {
  .box_fukidashi {
    aspect-ratio: unset;
    padding-top: 20px;
    padding-bottom: 24px;
  }
}
.box_fukidashi p {
  width: 85%;
  line-height: 1.4;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 600;
}
@media only screen and (max-width:640px) {
  .box_fukidashi p {
    font-size: 1.4rem;
  }
}

.fukidashi_r {
  background-image: url("../img/fukidashi_r.png");
  padding-left: 54px;
}
@media only screen and (max-width:640px) {
  .fukidashi_r {
    padding-left: 32px;
  }
}

.fukidashi_l {
  background-image: url("../img/fukidashi_l.png");
  padding-left: 84px;
}
@media only screen and (max-width:640px) {
  .fukidashi_l {
    padding-left: 48px;
  }
}

.name_voice {
  width: 85%;
  font-size: 2.4rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  border-bottom: 2px solid #000000;
}
@media only screen and (max-width:640px) {
  .name_voice {
    font-size: 1.6rem;
  }
}
.name_voice span {
  font-size: 1.8rem;
}
@media only screen and (max-width:640px) {
  .name_voice span {
    font-size: 1.3rem;
  }
}

.box_user {
  width: 18%;
  display: flex;
  align-items: flex-end;
}
.box_user img {
  width: 100%;
}

.photo_voide {
  width: 85%;
  display: flex;
  justify-content: space-between;
}
.photo_voide img:first-child:nth-last-child(2),
.photo_voide img:first-child:nth-last-child(2) ~ img {
  width: 40%;
}
.photo_voide img:first-child:nth-last-child(3),
.photo_voide img:first-child:nth-last-child(3) ~ img {
  width: 30%;
}

.area_introduction {
  width: 90%;
  max-width: 980px;
  margin: 36px auto;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:640px) {
  .area_introduction {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 5%;
  }
}

.box_introduction {
  background-color: #c1272d;
  border-radius: 24px;
  padding: 12px;
  width: 45%;
  font-family: "M PLUS Rounded 1c", sans-serif;
  box-sizing: border-box;
}
@media only screen and (max-width:640px) {
  .box_introduction {
    width: 100%;
    overflow: hidden;
  }
}

.bnr_works {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.bnr_works img {
  width: 100%;
}

.area_customer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.box_customer {
  width: 48%;
  background-color: #ffffff;
  color: #c1272d;
  text-align: center;
  margin: 12px 0;
  border-radius: 80px;
  font-size: 1.6rem;
  min-height: calc(2.5em + 8px);
  padding: 4px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
@media only screen and (max-width:640px) {
  .box_customer {
    font-size: 1.1rem;
    white-space: nowrap;
  }
}

/***********************************************************************/
/***********************************************************************/
#area_chosen h1 {
  margin-top: 120px;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
}

.area_chosen-img {
  width: 80%;
  max-width: 840px;
  margin: 48px auto;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:640px) {
  .area_chosen-img {
    width: 96%;
    gap: 8px;
  }
}

.box_chosen-img {
  width: 30%;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width:640px) {
  .box_chosen-img {
    width: 32%;
  }
}
.box_chosen-img p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  text-align: center;
  font-size: clamp(1.6rem, 1.8rem + 0.625vw, 2rem);
  color: #ffffff;
  -webkit-text-stroke: 4px #000000;
  paint-order: stroke fill;
  font-weight: 700;
  width: 100%;
}
@media only screen and (max-width:640px) {
  .box_chosen-img p {
    font-size: 1.1rem;
    -webkit-text-stroke: 2px #000000;
    padding-bottom: 4px;
  }
}

.bg_chosen-1 {
  background-image: url("../img/img_chosen-1.png");
}

.bg_chosen-2 {
  background-image: url("../img/img_chosen-2.png");
}

.bg_chosen-3 {
  background-image: url("../img/img_chosen-3.png");
}

/***********************************************************************/
/***********************************************************************/
footer {
  margin-top: 180px;
  box-sizing: border-box;
  border-top: 1px solid #d8161f;
}

.footer_copyright {
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  margin-top: 64px;
  margin-bottom: 12px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
}

.area_menu_footer {
  display: flex;
  width: 90%;
  max-width: 1024px;
  margin: 42px auto;
  align-items: stretch;
  justify-content: space-between;
}
@media only screen and (max-width:640px) {
  .area_menu_footer {
    display: none;
  }
}
.area_menu_footer div {
  box-sizing: border-box;
  width: 22%;
  position: relative;
  padding: 0 8px;
}
.area_menu_footer div img {
  width: 90%;
  display: block;
  top: 24px;
  left: 5%;
}
.area_menu_footer div p {
  font-size: 1.6rem;
  font-weight: 800;
  border-bottom: 1px solid #333;
  padding-bottom: 4px;
}
.area_menu_footer div ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: block;
}
.area_menu_footer div li {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
  width: fit-content;
  display: block;
}

.logo_footer {
  display: flex;
  align-items: center;
}

.underline-hover {
  position: relative;
  display: inline-block;
  cursor: pointer;
  color: #333;
}
.underline-hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 1px;
  background-color: #333;
  transition: transform 0.4s ease;
}
.underline-hover:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.underline-hover a {
  color: #333;
}
.underline-hover a:hover, .underline-hover a:visited, .underline-hover a:active, .underline-hover a:link {
  color: #333;
}

/***********************************************************************/
/***********************************************************************/
.font_white {
  color: #ffffff;
}

.mt_128 {
  margin-top: 128px;
}

.mt_64 {
  margin-top: 64px;
}

/***********************************************************************/
/***********************************************************************/
#area_faq {
  padding: 80px 24px;
}

.title_faq {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  text-align: center;
  color: #333333;
  margin: 0 0 40px;
}

.area_faq_list {
  width: min(90%, 800px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.box_faq {
  background-color: #6ab04c;
  border-radius: 12px;
  padding: 16px 24px;
}

.faq_q {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  color: #ffffff;
  margin: 0 0 6px;
}

.faq_a {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(1.3rem, 1.4vw, 1.6rem);
  color: #ffffff;
  margin: 0;
  line-height: 1.6;
}

/***********************************************************************/
/***********************************************************************/
#area_contact {
  padding: 80px 24px;
}

.box_contact {
  background-color: #3549c8;
  border-radius: 24px;
  width: min(80%, 840px);
  margin: 0 auto;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.text_contact {
  color: #ffffff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2vw, 2rem);
  text-align: center;
  line-height: 1.8;
  margin: 0;
}

.btn_contact {
  display: block;
  width: min(80%, 480px);
  padding: 18px 0;
  background-color: #ffffff;
  border-radius: 100px;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2vw, 2rem);
  color: #3549c8;
}

#area_smarally {
  padding: 80px 24px;
}

.box_smarally {
  background-color: #3549c8;
  border-radius: 24px;
  width: min(80%, 840px);
  margin: 0 auto;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.logo_smarally {
  width: clamp(160px, 20vw, 240px);
  display: block;
}

.text_smarally {
  color: #ffffff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2vw, 2rem);
  text-align: center;
  line-height: 1.8;
  margin: 0;
}

.btn_smarally {
  display: block;
  width: min(80%, 320px);
  padding: 18px 0;
  background-color: #ffffff;
  border-radius: 100px;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2vw, 2rem);
  color: #3549c8;
}

.area_effect {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 48px auto;
}
@media only screen and (max-width:640px) {
  .area_effect {
    gap: 8px;
    padding: 0 12px;
  }
}

.effect_btn {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 8px;
  border-radius: 100px;
  width: clamp(220px, 24vw, 296px);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  color: #ffffff;
}
@media only screen and (max-width:640px) {
  .effect_btn {
    width: auto;
    flex: 1;
    min-width: 0;
    font-size: 1.2rem;
    column-gap: 4px;
  }
}
.effect_btn span {
  grid-column: 2;
  text-align: center;
}
.effect_btn img {
  width: clamp(48px, 6vw, 72px);
  height: clamp(48px, 6vw, 72px);
}
@media only screen and (max-width:640px) {
  .effect_btn img {
    width: 10vw;
    height: 10vw;
  }
}
.effect_btn--red {
  background-color: #c1272d;
  padding: 8px 16px 8px 8px;
}
.effect_btn--red img {
  grid-column: 1;
}
@media only screen and (max-width:640px) {
  .effect_btn--red {
    padding: 6px 10px 6px 6px;
  }
}
.effect_btn--blue {
  background-color: #3549c8;
  padding: 8px 8px 8px 16px;
}
.effect_btn--blue img {
  grid-column: 3;
}
@media only screen and (max-width:640px) {
  .effect_btn--blue {
    padding: 6px 6px 6px 10px;
  }
}

.effect_arrow {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-weight: 900;
  color: #333333;
  flex-shrink: 0;
}
@media only screen and (max-width:640px) {
  .effect_arrow {
    font-size: 2rem;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width:640px) {
  .sp {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
