@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #363636;
  background-color: #fff;
  line-height: 1.6;
}

main {
  overflow: hidden;
  margin-top: -80px;
}
@media screen and (max-width: 880px) {
  main {
    margin-top: -64px;
  }
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .inner {
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 24px;
  }
}
@media screen and (max-width: 560px) {
  .inner {
    padding: 0 16px;
  }
}
@media screen and (max-width: 360px) {
  .inner {
    padding: 0 8px;
  }
}

.orange {
  color: #ED6E00;
}

.green {
  color: #5EC526;
}

.blue {
  color: #178CE8;
}

.font-16 {
  font-size: 16px !important;
}

.font-20 {
  font-size: 20px;
}

.font-28 {
  font-size: 28px;
}

.font-36 {
  font-size: 36px;
}

.font-40 {
  font-size: 40px;
}

.font-45 {
  font-size: 45px;
}

.font-48 {
  font-size: 48px;
}

.font-50 {
  font-size: 50px;
}

.font-64 {
  font-size: 64px;
}

.number {
  font-family: "Roboto", sans-serif;
}

header {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  height: 80px;
  top: 32px;
  border-radius: 80px;
  z-index: 1000;
}
header .header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}
header .hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
header .hamburger span {
  width: 25px;
  height: 3px;
  background-color: #363636;
  margin: 3px 0;
  transition: all 0.3s ease;
  display: block;
}
header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
header .gnav .gnav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
header .gnav .gnav-list li a {
  text-decoration: none;
  color: #363636;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  transition: color 0.3s ease;
  white-space: nowrap;
}
header .gnav .gnav-list li a:hover {
  color: #007bff;
}
@media screen and (max-width: 1080px) {
  header {
    top: 16px;
  }
  header.inner {
    width: calc(100% - 32px);
    margin: 0 auto;
  }
  header .gnav .gnav-list {
    gap: 24px;
  }
  header .gnav .gnav-list li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 880px) {
  header {
    top: 0;
    border-radius: 0;
    background: #5EC526;
  }
  header.inner {
    padding: 0;
    width: 64px;
    height: 64px;
    margin: 0 0 0 auto;
  }
  header .inner {
    padding: 0;
  }
  header .header-container {
    height: 64px;
  }
  header .hamburger {
    display: flex;
    background: #5EC526;
  }
  header .hamburger span {
    background: #fff;
  }
  header .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  header .gnav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding-top: 5rem;
  }
  header .gnav.active {
    right: 0;
  }
  header .gnav .gnav-list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  header .gnav .gnav-list li {
    border-bottom: 1px solid #eee;
  }
  header .gnav .gnav-list li a {
    display: block;
    padding: 1.25rem 2rem;
  }
  header .gnav .gnav-list li a.contact-btn {
    background-color: transparent;
    color: #007bff;
    border-radius: 0;
  }
  header .gnav .gnav-list li a.contact-btn:hover {
    background-color: rgb(229.5, 241.8, 255);
  }
}

.mv {
  position: relative;
  display: flex;
  margin-top: -80px;
  height: 860px;
  background: url(../img/bg-mv.jpg) no-repeat center;
  background-size: cover;
}
.mv br.sp {
  display: none;
}
.mv .inner {
  position: relative;
  width: 100%;
  text-align: center;
  z-index: 10;
}
.mv .inner .hukidashi {
  display: block;
  margin: 200px 0 -24px auto;
}
.mv .inner .hukidashi.sp {
  display: none;
}
.mv .inner h1 {
  color: #fff;
  font-size: 56px;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}
.mv .inner h1 strong {
  display: inline-block;
  height: 60px;
  line-height: 55px;
  background: #fff;
  text-shadow: none;
}
.mv .inner h1 .underline {
  border-bottom: 4px #fff solid;
}
.mv .inner h1 b {
  position: relative;
}
.mv .inner h1 b::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: -4px;
  left: calc(50% - 5px);
  border-radius: 10px;
  background: #fff;
}
.mv .inner .mv-box {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
.mv .inner .mv-box .box {
  position: relative;
  width: calc((100% - 48px) / 3);
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}
.mv .inner .mv-box .box::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 16px;
  bottom: -15px;
  background: #fff;
}
.mv .inner .mv-box .box:nth-last-of-type(1)::before {
  left: 48px;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.mv .inner .mv-box .box:nth-last-of-type(2)::before {
  left: calc(50% - 12px);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.mv .inner .mv-box .box:nth-last-of-type(3)::before {
  right: 48px;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.mv .inner .mv-box .box span {
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
}
.mv .inner .mv-box .box p {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  margin-top: 4px;
}
.mv .inner .mv-box .box img {
  position: absolute;
  left: -24px;
  bottom: -16px;
}
.mv .inner > p {
  color: #fff;
  font-size: 54px;
  font-weight: 900;
  margin: 32px 0 40px;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}
.mv .inner > p strong {
  display: inline-block;
  height: 60px;
  line-height: 55px;
  background: #ED6E00;
}
.mv .inner .left-img,
.mv .inner .right-img {
  position: absolute;
}
.mv .inner .left-img {
  left: 0;
  bottom: -2px;
}
.mv .inner .right-img {
  right: 0;
  bottom: -8px;
}
@media screen and (max-width: 1200px) {
  .mv br.sp {
    display: block;
  }
  .mv .inner {
    padding: 0 64px;
  }
  .mv .inner h1 {
    margin-top: 200px;
  }
  .mv .inner > p {
    line-height: 1.3;
    font-size: 48px;
    margin: 32px 0 24px;
  }
  .mv .inner .hukidashi {
    position: absolute;
    top: 0;
    right: 144px;
  }
  .mv .inner .mv-box .box span {
    font-size: 18px;
  }
  .mv .inner .mv-box .box p {
    font-size: 32px;
  }
  .mv .inner .mv-box .box img {
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  .mv .inner .hukidashi {
    right: 8%;
  }
}
@media screen and (max-width: 920px) {
  .mv .inner {
    padding: 0 32px;
  }
  .mv .inner h1 {
    line-height: 1.3;
  }
  .mv .inner h1 b::before {
    display: none;
  }
  .mv .inner > p {
    font-size: 40px;
  }
  .mv .inner .hukidashi {
    right: 0;
  }
  .mv .inner .mv-box .box {
    width: calc((100% - 32px) / 3);
    padding: 16px;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    height: 1140px;
  }
  .mv .inner {
    padding: 0;
  }
  .mv .inner h1 {
    margin-top: 188px;
  }
  .mv .inner .hukidashi {
    top: -120px;
    left: 0;
    right: auto;
  }
  .mv .inner .hukidashi.pc {
    display: none;
  }
  .mv .inner .hukidashi.sp {
    display: block;
  }
  .mv .inner .mv-box {
    flex-wrap: wrap;
    justify-content: center;
  }
  .mv .inner .mv-box .box {
    width: 400px;
    padding: 24px;
    margin-bottom: 24px;
  }
  .mv .inner .mv-box .box p {
    font-size: 40px;
  }
  .mv .inner .mv-box .box img {
    display: block;
  }
  .mv .inner .mv-box .box:nth-last-of-type(1)::before, .mv .inner .mv-box .box:nth-last-of-type(2)::before, .mv .inner .mv-box .box:nth-last-of-type(3)::before {
    left: calc(50% - 12px);
    clip-path: polygon(0 0, 100% 100%, 100% 0);
  }
  .mv .inner .left-img,
  .mv .inner .right-img {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .mv {
    height: 1000px;
  }
  .mv .inner {
    padding: 0 24px;
  }
  .mv .inner > p {
    font-size: 32px;
    margin: 0 0 24px;
  }
  .mv .inner > p .font-40 {
    font-size: 24px;
  }
  .mv .inner > p strong {
    height: 40px;
    line-height: 40px;
  }
  .mv .inner h1 {
    font-size: 36px;
    margin-top: 180px;
  }
  .mv .inner h1 strong {
    height: 40px;
    line-height: 38px;
  }
  .mv .inner h1 .font-40,
  .mv .inner h1 .font-45 {
    font-size: 32px;
  }
  .mv .inner h1 .font-50 {
    font-size: 40px;
  }
  .mv .inner .hukidashi {
    width: 104px;
    top: -120px;
    left: 0;
    right: auto;
  }
  .mv .inner .hukidashi.pc {
    display: none;
  }
  .mv .inner .hukidashi.sp {
    display: block;
  }
  .mv .inner .mv-box {
    flex-wrap: wrap;
    justify-content: center;
  }
  .mv .inner .mv-box .box {
    width: 100%;
    padding: 24px;
    margin-bottom: 24px;
  }
  .mv .inner .mv-box .box p {
    font-size: 28px;
  }
  .mv .inner .mv-box .box img {
    display: block;
    bottom: 0;
  }
  .mv .inner .mv-box .box:nth-last-of-type(1)::before, .mv .inner .mv-box .box:nth-last-of-type(2)::before, .mv .inner .mv-box .box:nth-last-of-type(3)::before {
    left: calc(50% - 12px);
    clip-path: polygon(0 0, 100% 100%, 100% 0);
  }
  .mv .inner .left-img,
  .mv .inner .right-img {
    display: none;
  }
}

.head h2 {
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 80px;
}
.head p {
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 1080px) {
  .head {
    text-align: center;
  }
  .head h2 {
    font-size: 64px;
  }
  .head p {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .head h2 {
    font-size: 56px;
  }
  .head p {
    font-size: 20px;
  }
}
@media screen and (max-width: 560px) {
  .head h2 {
    font-size: 40px;
  }
  .head p {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .head h2 {
    font-size: 36px;
  }
  .head p {
    font-size: 18px;
  }
}

.talk {
  position: relative;
  top: 16px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  border-radius: 80px;
  padding: 12px 48px;
  margin: 0 auto;
  z-index: 2;
}
.talk::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 16px;
  left: calc(50% - 16px);
  bottom: -12px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.talk.orange {
  background: #ED6E00;
}
.talk.orange::before {
  background: #ED6E00;
}
.talk.blue {
  background: #178CE8;
}
.talk.blue::before {
  background: #178CE8;
}
.talk.green {
  background: #5EC526;
}
.talk.green::before {
  background: #5EC526;
}
@media screen and (max-width: 1080px) {
  .talk {
    font-size: 24px;
    padding: 8px 32px;
  }
}
@media screen and (max-width: 768px) {
  .talk {
    font-size: 18px;
    padding: 8px 32px;
  }
}
@media screen and (max-width: 560px) {
  .talk {
    display: block;
    font-size: 18px;
    padding: 8px 24px;
  }
}

.contact-btn {
  position: relative;
  display: block;
  text-align: center;
  width: 440px;
  height: 100px;
  background: linear-gradient(180deg, #ED6E00 0%, #FF4400 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid #FFFFFF;
  padding: 16px 0;
  box-sizing: border-box;
  margin: 0 auto;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(237, 110, 0, 0.3);
  position: relative;
}
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(237, 110, 0, 0.4);
}
.contact-btn span {
  display: block;
  font-size: 16px;
  font-weight: bold;
}
.contact-btn p {
  display: block;
  font-size: 24px;
  font-weight: bold;
}
.contact-btn::after {
  position: absolute;
  content: "";
  width: 56px;
  height: 56px;
  top: calc(50% - 28px);
  right: 22px;
  background: url(../img/icon-btn.svg) no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}
@media screen and (max-width: 560px) {
  .contact-btn {
    width: 100%;
  }
  .contact-btn::after {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .contact-btn {
    height: 96px;
  }
  .contact-btn span {
    font-size: 15px;
  }
  .contact-btn p {
    font-size: 20px;
  }
}

.cta-box {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 104px;
  background: #FFE8D4;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-box .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta-box .inner .hukidashi {
  display: block;
  margin-top: -24px;
}
.cta-box .inner p {
  color: #363636;
  font-size: 20px;
  font-weight: bold;
  margin: 0 32px;
}
.cta-box .inner .contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 72px;
}
.cta-box .inner .contact-btn::after {
  width: 12px;
  height: 20px;
  top: calc(50% - 10px);
  right: 32px;
  background: url(../img/icon-cta-btn.svg) no-repeat;
}
.cta-box .inner .contact-btn p {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
.cta-box .sp {
  display: none !important;
}
@media screen and (max-width: 1080px) {
  .cta-box {
    height: 104px;
  }
  .cta-box .inner {
    padding: 0 24px;
  }
  .cta-box .inner .hukidashi {
    position: absolute;
    margin-top: -168px;
  }
  .cta-box .inner p {
    font-size: 16px;
    margin: 0;
  }
  .cta-box .inner p .font-28 {
    font-size: 24px;
  }
  .cta-box .inner .contact-btn {
    width: calc(100% - 376px);
    margin: 0;
  }
  .cta-box .inner .contact-btn::after {
    right: 24px;
  }
  .cta-box .inner .contact-btn p {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .cta-box {
    height: 144px;
  }
  .cta-box .pc {
    display: none !important;
  }
  .cta-box .sp {
    display: block !important;
  }
  .cta-box .inner {
    display: block;
    padding: 0 24px;
  }
  .cta-box .inner .hukidashi {
    position: absolute;
    right: 0;
    left: auto;
    width: 112px;
    height: auto;
    margin-top: -48px;
  }
  .cta-box .inner > p {
    font-size: 15px;
    text-align: center;
    margin-bottom: 8px;
  }
  .cta-box .inner > p .font-28 {
    font-size: 22px;
  }
  .cta-box .inner .contact-btn {
    width: 100%;
    height: 56px;
    margin: 0;
  }
  .cta-box .inner .contact-btn::after {
    right: 24px;
  }
  .cta-box .inner .contact-btn p {
    font-size: 18px;
  }
}
@media screen and (max-width: 560px) {
  .cta-box .inner {
    padding: 0 16px;
  }
  .cta-box .inner .hukidashi {
    margin-top: -80px;
  }
}
@media screen and (max-width: 400px) {
  .cta-box .inner > p {
    font-size: 14px;
    text-align: center;
    margin-bottom: 8px;
  }
  .cta-box .inner > p .font-28 {
    font-size: 18px;
  }
  .cta-box .inner .contact-btn {
    width: 100%;
    height: 56px;
    margin: 0;
  }
  .cta-box .inner .contact-btn::after {
    right: 24px;
  }
  .cta-box .inner .contact-btn p {
    font-size: 18px;
  }
}

#comparison {
  position: relative;
  padding: 104px 0 80px;
  background: url(../img/bg-comparison.png) no-repeat top 64px right;
}
#comparison::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 80px;
  left: 0;
  bottom: -80px;
  background: #fff;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  z-index: 2;
}
#comparison .comparison-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 64px;
  margin-top: 120px;
  border-radius: 16px;
  background: #FFE8D4;
}
#comparison .comparison-box > img {
  position: absolute;
  bottom: -48px;
  right: -101px;
}
#comparison .comparison-box .box {
  position: relative;
  width: calc((100% - 64px) / 2);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  background: #fff;
  text-align: center;
  margin-top: -104px;
}
#comparison .comparison-box .box > span {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 80px);
  height: 67px;
  top: -32px;
  border-radius: 72px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background: #ACACAC;
}
#comparison .comparison-box .box > span::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 16px;
  left: calc(50% - 16px);
  bottom: -12px;
  background: #ACACAC;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
#comparison .comparison-box .box .item-box .item {
  padding: 24px 0;
  border-bottom: 2px solid #D9D9D9;
}
#comparison .comparison-box .box .item-box .item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#comparison .comparison-box .box .item-box .item > span {
  display: block;
  line-height: 1;
  font-size: 20px;
  color: #666;
  font-weight: bold;
  margin-bottom: 8px;
}
#comparison .comparison-box .box .item-box .item p {
  line-height: 1.2;
  font-size: 36px;
  font-weight: bold;
}
#comparison .comparison-box .box .item-box .item p small {
  font-size: 24px;
}
#comparison .comparison-box .box .item-box .item p strong {
  color: #178CE8;
  font-weight: bold;
}
#comparison .comparison-box .box.main {
  border: 3px solid #178CE8;
  box-sizing: border-box;
}
#comparison .comparison-box .box.main > span {
  background: #178CE8;
}
#comparison .comparison-box .box.main > span::before {
  background: #178CE8;
}
#comparison .comparison-box .box.main .item-box .item > span {
  color: #007bff;
}
@media screen and (max-width: 1080px) {
  #comparison {
    padding: 96px 0 80px;
    background: url(../img/bg-comparison.png) no-repeat top 240px right;
  }
  #comparison .comparison-box {
    margin-top: 320px;
    padding: 48px;
  }
  #comparison .comparison-box > img {
    top: -328px;
    right: 0;
    bottom: auto;
    z-index: 1;
  }
  #comparison .comparison-box .box {
    width: calc((100% - 32px) / 2);
    padding: 24px;
    margin-top: -104px;
    z-index: 2;
  }
  #comparison .comparison-box .box > span {
    width: calc(100% - 48px);
    height: 56px;
    font-size: 24px;
  }
  #comparison .comparison-box .box .item-box .item {
    padding: 24px 0;
  }
  #comparison .comparison-box .box .item-box .item > span {
    font-size: 16px;
  }
  #comparison .comparison-box .box .item-box .item p {
    font-size: 28px;
  }
  #comparison .comparison-box .box .item-box .item p small {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  #comparison {
    padding: 64px 0;
    background: url(../img/bg-comparison.png) no-repeat top 190px right;
    background-size: calc(100% - 24px);
  }
  #comparison::before {
    height: 64px;
    bottom: -64px;
  }
  #comparison .inner {
    padding: 0;
  }
  #comparison .comparison-box {
    margin-top: 280px;
    padding: 24px;
    border-radius: 0;
  }
  #comparison .comparison-box > img {
    width: 144px;
    height: auto;
    top: -272px;
    right: 0;
    bottom: auto;
    z-index: 1;
  }
  #comparison .comparison-box .box {
    width: calc((100% - 24px) / 2);
    padding: 24px 16px 16px;
    margin-top: -104px;
    border-radius: 8px;
  }
  #comparison .comparison-box .box > span {
    width: calc(100% - 32px);
    height: 48px;
    top: -24px;
    font-size: 20px;
  }
  #comparison .comparison-box .box .item-box .item {
    padding: 16px 0;
  }
  #comparison .comparison-box .box .item-box .item > span {
    font-size: 16px;
  }
  #comparison .comparison-box .box .item-box .item p {
    font-size: 20px;
  }
  #comparison .comparison-box .box .item-box .item p small {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  #comparison {
    background: url(../img/bg-comparison.png) no-repeat top 172px right;
    background-size: calc(100% - 24px);
  }
  #comparison::before {
    height: 40px;
    bottom: -40px;
  }
  #comparison .comparison-box {
    margin-top: 240px;
  }
  #comparison .comparison-box > img {
    width: 120px;
    top: -190px;
  }
  #comparison .comparison-box .box {
    width: calc((100% - 12px) / 2);
    padding: 24px 12px 12px;
    margin-top: -48px;
  }
  #comparison .comparison-box .box > span {
    width: calc(100% - 24px);
    height: 40px;
    top: -24px;
    font-size: 16px;
  }
  #comparison .comparison-box .box > span::before {
    width: 20px;
    height: 8px;
    left: calc(50% - 10px);
    bottom: -8px;
  }
  #comparison .comparison-box .box .item-box .item {
    padding: 16px 0;
  }
  #comparison .comparison-box .box .item-box .item > span {
    font-size: 14px;
  }
  #comparison .comparison-box .box .item-box .item p {
    font-size: 16px;
  }
  #comparison .comparison-box .box .item-box .item p small {
    font-size: 12px;
  }
}

#case {
  position: relative;
  background: #EEF8FF;
  padding: 200px 0 80px;
}
#case::before {
  position: absolute;
  content: "";
  width: 674px;
  height: 460px;
  top: 160px;
  right: calc(50% + 16px);
  background: url(../img/bg-case.png) no-repeat center;
}
#case::after {
  position: absolute;
  content: "";
  width: 674px;
  height: 460px;
  bottom: -240px;
  left: calc(50% + 16px);
  background: url(../img/bg-case02.png) no-repeat center;
  z-index: 1;
}
#case .inner {
  display: grid;
}
#case .head {
  position: relative;
  width: 50%;
  padding: 40px 64px 80px;
  margin-left: auto;
}
#case .head::before, #case .head::after {
  position: absolute;
  content: "";
  width: 72px;
  height: 72px;
}
#case .head::before {
  top: 0;
  left: 0;
  background: url(../img/img-icon-kirakira-blue-left.svg) no-repeat;
}
#case .head::after {
  right: 0;
  bottom: 32px;
  background: url(../img/img-icon-kirakira-blue-right.svg) no-repeat;
}
#case .case-box {
  position: relative;
  text-align: center;
  z-index: 2;
}
#case .case-box .box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 0 64px 56px;
}
#case .case-box .box h3 {
  color: #363636;
  font-size: 28px;
  font-weight: bold;
  border-bottom: 1px solid #178CE8;
  padding-bottom: 16px;
  margin-bottom: 20px;
}
#case .case-box .box p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 2rem;
}
#case .case-box .box p strong {
  color: #178CE8;
}
#case .case-box .box .img-box {
  position: relative;
}
#case .case-box .box .img-box .hukidashi {
  position: absolute;
  top: -2px;
  right: -48px;
  z-index: 10;
}
#case .case-box .box .img-box > img:not(.hukidashi) {
  width: 100%;
  height: auto;
}
#case .sp {
  display: none;
}
#case .talk {
  top: -24px;
}
@media screen and (max-width: 1080px) {
  #case {
    padding: 160px 0 80px;
  }
  #case::before {
    width: 674px;
    height: 460px;
    top: 368px;
    right: auto;
    left: calc(50% - 337px);
  }
  #case::after {
    width: 674px;
    height: 460px;
    bottom: -80px;
    left: calc(50% + 16px);
  }
  #case .head {
    width: auto;
    padding: 0 80px;
    margin: 0 auto 260px;
  }
  #case .head::before {
    top: 50%;
    left: 0;
  }
  #case .head::after {
    top: 50%;
    right: 0;
    bottom: auto;
  }
  #case .head h2 {
    margin-bottom: 12px;
  }
  #case .head p {
    line-height: 1.3;
  }
  #case .case-box .box {
    padding: 0 48px 48px;
  }
  #case .case-box .box h3 {
    font-size: 26px;
  }
  #case .case-box .box p {
    font-size: 16px;
    text-align: left;
  }
  #case .case-box .box p br {
    display: none;
  }
  #case .case-box .box .img-box .hukidashi {
    top: -20px;
  }
}
@media screen and (max-width: 768px) {
  #case {
    padding: 144px 0 64px;
  }
  #case .sp {
    display: block;
  }
  #case .pc {
    display: none;
  }
  #case::before {
    width: calc(100% - 24px);
    height: 460px;
    top: 340px;
    right: auto;
    left: 0;
    background: url(../img/bg-case.png) no-repeat top left;
    background-size: contain;
  }
  #case::after {
    width: calc(100% - 24px);
    height: 460px;
    bottom: -80px;
    left: auto;
    right: 0;
    background: url(../img/bg-case02.png) no-repeat right bottom;
    background-size: contain;
  }
  #case .head {
    width: 100%;
    padding: 0;
    margin: 0 auto 260px;
  }
  #case .head::before, #case .head::after {
    width: 56px;
    height: 56px;
    background-size: contain;
  }
  #case .head::before {
    top: 40%;
    left: 0;
  }
  #case .head::after {
    top: 40%;
    right: 0;
    bottom: auto;
  }
  #case .head h2 {
    margin-bottom: 12px;
  }
  #case .head p {
    font-size: 28px;
    line-height: 1.3;
  }
  #case .case-box .box {
    padding: 0 40px 40px;
  }
  #case .case-box .box h3 {
    font-size: 24px;
  }
  #case .case-box .box p {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 480px) {
  #case {
    padding: 96px 0 64px;
  }
  #case::before {
    top: 260px;
  }
  #case::after {
    bottom: -80px;
  }
  #case .head {
    margin: 0 auto 160px;
  }
  #case .head::before, #case .head::after {
    width: 40px;
    height: 40px;
    background-size: contain;
  }
  #case .head h2 {
    margin-bottom: 12px;
  }
  #case .head p {
    font-size: 24px;
    line-height: 1.3;
  }
  #case .head p .font-48 {
    font-size: 40px;
  }
  #case .case-box .box {
    padding: 0 24px 24px;
  }
  #case .case-box .box h3 {
    font-size: 20px;
  }
  #case .case-box .box p {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 380px) {
  #case::before {
    top: 230px;
  }
  #case .head::before, #case .head::after {
    top: 30%;
  }
  #case .head p {
    font-size: 20px;
  }
  #case .head p .font-48 {
    font-size: 32px;
  }
}

#why {
  padding: 104px 0 0;
}
#why .sp {
  display: none;
}
#why .why-box {
  position: relative;
  margin-top: 80px;
  text-align: center;
  background: #EDFFE4;
  border-radius: 16px;
  z-index: 3;
}
#why .why-box h3 {
  position: relative;
  top: -24px;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.6;
}
#why .why-box img {
  width: 100%;
  height: auto;
}
#why .why-box p {
  position: relative;
  display: block;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  padding: 40px;
  background: #5EC526;
  border-radius: 0 0 16px 16px;
}
#why .why-box p::before, #why .why-box p::after {
  position: absolute;
  content: "";
  width: 72px;
  height: 72px;
  top: calc(50% - 36px);
}
#why .why-box p::before {
  left: 64px;
  background: url(../img/img-kirakira-left.png);
}
#why .why-box p::after {
  right: 64px;
  background: url(../img/img-kirakira-right.png);
}
#why .why-box p strong {
  font-weight: bold;
  border-bottom: 2px solid #fff;
}
@media screen and (max-width: 1080px) {
  #why {
    padding: 156px 0 0;
  }
  #why .why-box {
    margin-top: 56px;
  }
  #why .why-box h3 {
    font-size: 32px;
    line-height: 1.5;
  }
  #why .why-box p {
    font-size: 32px;
    padding: 24px;
  }
  #why .why-box p::before, #why .why-box p::after {
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
  }
  #why .why-box p::before {
    left: 24px;
    background: url(../img/img-kirakira-left.png);
    background-size: 40px;
  }
  #why .why-box p::after {
    right: 24px;
    background: url(../img/img-kirakira-right.png);
    background-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  #why {
    padding: 156px 0 0;
  }
  #why .pc {
    display: none;
  }
  #why .sp {
    display: block;
  }
  #why .inner {
    padding: 0;
  }
  #why .why-box {
    border-radius: 0;
    margin-top: 56px;
  }
  #why .why-box h3 {
    font-size: 28px;
  }
  #why .why-box img {
    padding: 0 48px;
    box-sizing: border-box;
  }
  #why .why-box p {
    font-size: 28px;
    padding: 24px;
    border-radius: 0;
  }
  #why .why-box p .font-36 {
    font-size: 24px;
  }
}
@media screen and (max-width: 560px) {
  #why {
    padding: 144px 0 0;
  }
  #why .why-box h3 {
    font-size: 24px;
  }
  #why .why-box img {
    padding: 0 24px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 480px) {
  #why .why-box h3 {
    font-size: 20px;
  }
}

#reason {
  position: relative;
  padding: 80px 0 0;
  z-index: 2;
}
#reason::before {
  position: absolute;
  content: "";
  width: 674px;
  height: 460px;
  top: -48px;
  right: calc(50% + 16px);
  background: url(../img/bg-reason.png) no-repeat center;
  z-index: -1;
}
#reason .head {
  position: relative;
  width: 50%;
  padding: 40px 0 40px 64px;
  margin-left: auto;
}
#reason .reason-box {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
#reason .reason-box .box {
  width: calc((100% - 48px) / 3);
  margin-top: -48px;
  background: #fff;
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
#reason .reason-box .box .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 146px;
  height: 120px;
  margin: -64px auto 24px;
}
#reason .reason-box .box h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.4;
}
#reason .reason-box .box p {
  font-size: 18px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 1080px) {
  #reason::before {
    width: calc(100% - 24px);
    height: 460px;
    top: 280px;
    right: auto;
    left: 0;
    background: url(../img/bg-reason.png) no-repeat top left;
    background-size: contain;
  }
  #reason .head {
    width: 100%;
    padding: 40px 0;
  }
  #reason .reason-box {
    display: flex;
    justify-content: space-between;
    margin-top: 240px;
  }
  #reason .reason-box .box {
    width: calc((100% - 32px) / 3);
    margin-top: -48px;
    padding: 32px 24px 24px;
  }
  #reason .reason-box .box .img-box {
    width: 146px;
    height: 96px;
    margin: -64px auto 8px;
  }
  #reason .reason-box .box .img-box img {
    width: auto;
    height: 80px;
  }
  #reason .reason-box .box h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  #reason .reason-box .box p {
    font-size: 16px;
    text-align: left;
  }
  #reason .reason-box .box p br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #reason {
    padding: 40px 0 0;
  }
  #reason::before {
    top: 200px;
  }
  #reason .reason-box {
    flex-wrap: wrap;
    margin-top: 240px;
  }
  #reason .reason-box .box {
    width: 80%;
    margin: 40px auto 0;
    padding: 32px;
  }
  #reason .reason-box .box p {
    text-align: center;
  }
  #reason .reason-box .box p br {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  #reason {
    padding: 24px 0 0;
  }
  #reason::before {
    top: 160px;
  }
  #reason .reason-box {
    flex-wrap: wrap;
    margin-top: 120px;
  }
  #reason .reason-box .box {
    width: 100%;
    margin: 40px auto 0;
    padding: 32px;
  }
  #reason .reason-box .box p {
    text-align: left;
  }
  #reason .reason-box .box p br {
    display: none;
  }
}

#flow {
  position: relative;
  padding: 156px 0 104px;
  margin-top: -64px;
  background: url(../img/bg-flow.jpg) no-repeat;
  background-size: cover;
  z-index: 1;
}
#flow .sp {
  display: none;
}
#flow .bg-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 24px 64px 64px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
}
#flow .bg-box .talk {
  top: -48px;
}
#flow .bg-box .head {
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
#flow .bg-box .flow-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 64px 0 32px;
  z-index: 2;
}
#flow .bg-box .flow-box .box {
  position: relative;
  width: calc((100% - 112px) / 3);
  border-radius: 16px;
  padding: 40px 24px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}
#flow .bg-box .flow-box .box::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 48px;
  top: calc(50% - 24px);
  right: -42px;
  background: #178CE8;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
#flow .bg-box .flow-box .box:last-child::before {
  display: none;
}
#flow .bg-box .flow-box .box > span {
  position: absolute;
  top: -48px;
  left: calc(50% - 36px);
  color: #178CE8;
  font-size: 64px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
#flow .bg-box .flow-box .box img {
  display: block;
  margin: 0 auto 16px;
}
#flow .bg-box .flow-box .box h3 {
  color: #178CE8;
  font-size: 28px;
  font-weight: bold;
}
#flow .bg-box .flow-box .box p {
  font-size: 18px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
#flow .bg-box > p {
  font-size: 20px;
  margin: 0 0 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 1080px) {
  #flow {
    margin-top: 0;
    padding: 120px 0 80px;
  }
  #flow .bg-box {
    padding: 24px 32px 64px;
  }
  #flow .bg-box .talk {
    top: -40px;
  }
  #flow .bg-box .flow-box {
    margin: 32px 0 32px;
  }
  #flow .bg-box .flow-box .box {
    width: calc((100% - 64px) / 3);
    padding: 40px 20px 32px;
  }
  #flow .bg-box .flow-box .box::before {
    width: 16px;
    height: 36px;
    top: calc(50% - 18px);
    right: -26px;
  }
  #flow .bg-box .flow-box .box > span {
    top: -36px;
    left: calc(50% - 28px);
    font-size: 48px;
  }
  #flow .bg-box .flow-box .box h3 {
    font-size: 20px;
  }
  #flow .bg-box .flow-box .box p {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  #flow {
    margin-top: -80px;
    padding: 160px 0 48px;
  }
  #flow .sp {
    display: block;
  }
  #flow .bg-box {
    padding: 24px 32px 64px;
  }
  #flow .bg-box .head {
    margin-bottom: 32px;
  }
  #flow .bg-box .talk {
    top: -40px;
  }
  #flow .bg-box .flow-box {
    margin: 0;
  }
  #flow .bg-box .flow-box .box {
    width: 100%;
    padding: 40px 20px 32px;
    margin-bottom: 56px;
    border-radius: 12px;
  }
  #flow .bg-box .flow-box .box:last-child {
    margin-bottom: 24px;
  }
  #flow .bg-box .flow-box .box::before {
    width: 16px;
    height: 36px;
    top: auto;
    right: auto;
    left: calc(50% - 8px);
    bottom: -48px;
    transform: rotate(90deg);
  }
  #flow .bg-box .flow-box .box > span {
    top: 0;
    left: 16px;
    font-size: 48px;
  }
  #flow .bg-box .flow-box .box h3 {
    font-size: 24px;
  }
  #flow .bg-box .flow-box .box p {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  #flow {
    padding: 160px 0 48px;
  }
  #flow .bg-box {
    padding: 24px;
  }
  #flow .bg-box > p {
    font-size: 18px;
    margin-bottom: 24px;
  }
}

#plan {
  position: relative;
  padding: 104px 0;
  background: url(../img/bg-plan.png) no-repeat;
  background-size: cover;
  text-align: center;
}
#plan .talk {
  top: -64px;
}
#plan .head {
  text-align: left;
}
#plan .head .underline {
  text-decoration: underline;
}
#plan .bg-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 40px 64px 80px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
#plan .bg-box img {
  position: absolute;
  right: 64px;
  bottom: 48px;
}
#plan .sp {
  display: none;
}
@media screen and (max-width: 1080px) {
  #plan .head {
    width: 100%;
    text-align: center;
  }
  #plan .head p {
    font-size: 24px;
  }
  #plan .head p .font-48 {
    font-size: 32px;
  }
  #plan .bg-box {
    padding: 40px 32px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  #plan .bg-box img {
    position: relative;
    width: 340px;
    height: auto;
    right: 40px;
    bottom: -40px;
  }
}
@media screen and (max-width: 768px) {
  #plan {
    padding: 64px 0 48px;
  }
}
@media screen and (max-width: 560px) {
  #plan .sp {
    display: block;
  }
  #plan .talk {
    top: -48px;
  }
  #plan .head {
    width: 100%;
    text-align: center;
  }
  #plan .head p {
    font-size: 20px;
  }
  #plan .head p .font-48 {
    font-size: 28px;
  }
  #plan .bg-box {
    padding-top: 32px;
  }
  #plan .bg-box img {
    width: 100%;
    right: 0;
  }
}
@media screen and (max-width: 480px) {
  #plan {
    padding: 48px 0 32px;
  }
  #plan .talk {
    top: -48px;
  }
  #plan .head {
    width: 100%;
    text-align: center;
  }
  #plan .head p {
    font-size: 18px;
  }
  #plan .head p .font-48 {
    font-size: 24px;
  }
  #plan .bg-box {
    padding: 32px 24px;
  }
}

#support {
  position: relative;
  padding: 308px 0 104px;
}
#support .pc {
  display: block;
}
#support .sp {
  display: none;
}
#support .box {
  position: relative;
  border-radius: 16px;
  padding: 64px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
#support .orange-box::before {
  position: absolute;
  content: "";
  width: 674px;
  height: 460px;
  top: 80px;
  left: 0;
  background: url(../img/bg-support-orange.png) no-repeat center;
  z-index: -1;
}
#support .orange-box .box {
  background: #FFE8D4;
}
#support .orange-box .box .head {
  display: table;
  margin-left: auto;
  margin-top: -104px;
  margin-bottom: 24px;
}
#support .orange-box .box .head .hukidashi {
  position: absolute;
  top: -96px;
  left: 24px;
  margin-bottom: -16px;
}
#support .orange-box .box .support-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#support .orange-box .box .support-box .item {
  width: calc((100% - 48px) / 3);
  padding: 12px 12px 16px;
  text-align: center;
  background: #fff;
  box-sizing: border-box;
  margin-top: 24px;
}
#support .orange-box .box .support-box .item img {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}
#support .orange-box .box .support-box .item p {
  font-size: 24px;
  font-weight: bold;
}
#support .blue-box {
  position: relative;
  padding: 228px 0;
}
#support .blue-box::before {
  position: absolute;
  content: "";
  width: 674px;
  height: 460px;
  top: -120px;
  right: 0;
  background: url(../img/bg-support-blue.png) no-repeat center;
  z-index: -1;
}
#support .blue-box .inner {
  position: relative;
}
#support .blue-box .area-img {
  position: absolute;
  top: -240px;
  left: -200px;
  z-index: 2;
}
#support .blue-box .box {
  padding: 112px 64px 80px;
  background: #EEF8FF;
}
#support .blue-box .box .area-box {
  width: 560px;
  margin-left: auto;
}
#support .blue-box .box .area-box .head {
  margin-bottom: 24px;
}
#support .blue-box .box .area-box .head .hukidashi {
  position: absolute;
  top: -80px;
  right: 48px;
}
#support .blue-box .box .area-box .tag-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#support .blue-box .box .area-box .tag-box .tag {
  width: calc((100% - 32px) / 3);
  color: #178CE8;
  font-size: 24px;
  font-weight: bold;
  background: #fff;
  padding: 8px;
  text-align: center;
  border-radius: 8px;
  margin-top: 16px;
}
#support .green-box {
  position: relative;
}
#support .green-box::before {
  position: absolute;
  content: "";
  width: 674px;
  height: 460px;
  top: -320px;
  left: 0;
  background: url(../img/bg-support-green.png) no-repeat center;
  z-index: -1;
}
#support .green-box .box {
  position: relative;
  background: #EDFFE4;
}
#support .green-box .box .target-img {
  position: absolute;
  left: 16px;
  bottom: 0;
}
#support .green-box .box .target-box {
  width: 550px;
  margin-left: auto;
}
#support .green-box .box .target-box .head {
  margin-bottom: 16px;
  margin-top: -104px;
}
#support .green-box .box .target-box .txt-box p {
  display: contents;
  font-size: 40px;
  font-weight: bold;
}
@media screen and (max-width: 1080px) {
  #support .box {
    padding: 48px;
  }
  #support .orange-box .box .head {
    display: block;
    text-align: center;
    margin-top: -72px;
    margin-left: 0;
  }
  #support .orange-box .box .head .hukidashi {
    top: -220px;
    left: 24px;
  }
  #support .orange-box .box .support-box .item {
    width: calc((100% - 32px) / 3);
    padding: 8px 8px 12px;
    margin-top: 16px;
  }
  #support .orange-box .box .support-box .item img {
    border-bottom: 8px;
  }
  #support .orange-box .box .support-box .item p {
    font-size: 18px;
  }
  #support .blue-box {
    padding: 228px 0;
  }
  #support .blue-box .area-img {
    top: -236px;
    left: -40px;
    width: 426px;
    height: auto;
  }
  #support .blue-box .box {
    padding: 80px 48px 48px;
  }
  #support .blue-box .box .area-box {
    width: 100%;
  }
  #support .blue-box .box .area-box .head .hukidashi {
    top: -104px;
    right: 16px;
  }
  #support .blue-box .box .area-box .tag-box .tag {
    font-size: 20px;
  }
  #support .green-box .box .target-img {
    width: 300px;
  }
  #support .green-box .box .target-box {
    width: 472px;
  }
  #support .green-box .box .target-box .head {
    margin-bottom: 16px;
    margin-top: -80px;
  }
  #support .green-box .box .target-box .txt-box p {
    font-size: 32px;
  }
}
@media screen and (max-width: 940px) {
  #support .pc {
    display: none;
  }
  #support .sp {
    display: block;
  }
  #support .green-box .box {
    padding-top: 64px;
  }
  #support .green-box .box .target-img.top {
    width: 200px;
    top: -96px;
    right: 0;
    left: auto;
    bottom: auto;
  }
  #support .green-box .box .target-img.bottom {
    width: 160px;
    top: auto;
    bottom: 0;
  }
  #support .green-box .box .target-box {
    width: 100%;
    text-align: center;
  }
  #support .green-box .box .target-box .head {
    margin-bottom: 16px;
    margin-top: 0;
  }
  #support .green-box .box .target-box .txt-box p {
    font-size: 28px;
  }
  #support .green-box .box .target-box .txt-box p .font-64 {
    font-size: 48px;
  }
  #support .green-box .box .target-box .txt-box p .font-20 {
    display: block;
  }
  #support .green-box .box .target-box .txt-box p br.sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #support {
    padding: 308px 0 64px;
  }
  #support .inner {
    padding: 0;
  }
  #support .box {
    padding: 64px 32px 32px !important;
    border-radius: 0;
  }
  #support .orange-box::before {
    width: calc(100% - 24px);
    height: 460px;
    top: 48px;
    left: 0;
    background: url(../img/bg-support-orange.png) no-repeat top left;
    background-size: contain;
  }
  #support .orange-box .box .head {
    display: block;
    text-align: center;
    margin: 0 0 8px;
  }
  #support .orange-box .box .head .hukidashi {
    width: 160px;
    top: -80px;
    left: 24px;
  }
  #support .orange-box .box .support-box .item {
    width: calc((100% - 16px) / 2);
    padding: 8px 8px 12px;
    margin-top: 16px;
  }
  #support .orange-box .box .support-box .item img {
    border-bottom: 8px;
  }
  #support .orange-box .box .support-box .item p {
    font-size: 18px;
  }
  #support .blue-box {
    padding: 280px 0 200px;
  }
  #support .blue-box::before {
    width: calc(100% - 24px);
    background: url(../img/bg-support-blue.png) no-repeat top right;
    background-size: contain;
  }
  #support .blue-box .area-img {
    top: -252px;
    left: -40px;
    width: 400px;
    height: auto;
  }
  #support .blue-box .box .area-box {
    width: 100%;
  }
  #support .blue-box .box .area-box .head .hukidashi {
    width: 160px;
    top: -56px;
    right: 16px;
  }
  #support .blue-box .box .area-box .tag-box .tag {
    font-size: 20px;
  }
  #support .green-box::before {
    width: calc(100% - 24px);
    top: -460px;
    background: url(../img/bg-support-green.png) no-repeat left bottom;
    background-size: contain;
  }
  #support .green-box .box .target-img.bottom {
    width: 144px;
  }
  #support .green-box .box .target-box .txt-box {
    width: calc(100% - 144px);
    margin-left: auto;
    text-align: left;
  }
  #support .green-box .box .target-box .txt-box p {
    font-size: 26px;
    line-height: 1.2;
  }
  #support .green-box .box .target-box .txt-box p .font-64 {
    font-size: 48px;
  }
  #support .green-box .box .target-box .txt-box p .font-20 {
    font-size: 14px;
    margin-top: 12px;
  }
}
@media screen and (max-width: 480px) {
  #support {
    padding: 308px 0 48px;
  }
  #support .box {
    padding: 48px 24px 24px !important;
  }
  #support .orange-box .box .support-box .item {
    width: calc((100% - 12px) / 2);
    margin-top: 12px;
  }
  #support .blue-box {
    padding: 180px 0 160px;
  }
  #support .blue-box .area-img {
    top: -188px;
    width: 320px;
  }
  #support .blue-box .box .area-box {
    position: relative;
    z-index: 2;
    width: 100%;
  }
  #support .blue-box .box .area-box .head {
    margin-bottom: 8px;
  }
  #support .blue-box .box .area-box .head .hukidashi {
    width: 160px;
    top: -136px;
    right: 0;
  }
  #support .blue-box .box .area-box .tag-box .tag {
    width: calc((100% - 12px) / 2);
    margin-top: 12px;
    border-radius: 4px;
  }
  #support .green-box .box .target-img.top {
    top: -120px;
  }
  #support .green-box .box .target-box .txt-box {
    width: calc(100% - 96px);
    margin-bottom: 48px;
  }
  #support .green-box .box .target-box .txt-box p {
    font-size: 24px;
  }
  #support .green-box .box .target-box .txt-box p .font-64 {
    font-size: 32px;
  }
  #support .green-box .box .target-box .txt-box p br.sp {
    display: block;
  }
}
@media screen and (max-width: 382px) {
  #support .green-box .box .target-box .txt-box p br.sp {
    display: none;
  }
}

#contact {
  padding: 104px 0;
  background: url(../img/bg-contact.jpg) no-repeat;
  background-size: cover;
}
#contact .bg-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 32px 160px 80px;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
  text-align: center;
}
#contact .bg-box .talk {
  position: relative;
  top: -56px;
}
#contact .bg-box .head {
  margin-bottom: 48px;
}
#contact .bg-box .head .font-16 {
  margin-top: 24px;
}
#contact .wpcf7-form-control-wrap {
  position: initial;
  width: 100%;
}
#contact .wpcf7-radio .wpcf7-list-item {
  margin-right: 24px;
}
#contact .wpcf7-radio .wpcf7-list-item input[type=radio] {
  width: 24px;
  height: 24px;
  border-radius: 24px;
  margin-right: 8px;
}
#contact .wpcf7-list-item {
  margin: 0;
}
#contact .wpcf7-form .form-group {
  margin-bottom: 32px;
  text-align: left;
}
#contact .wpcf7-form .form-group .form-head {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
#contact .wpcf7-form .form-group .form-head span.req,
#contact .wpcf7-form .form-group .form-head span.any {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 26px;
  color: #fff;
  border-radius: 2px;
  font-size: 14px;
  font-weight: bold;
  margin-right: 12px;
  background: #9C9C9C;
}
#contact .wpcf7-form .form-group .form-head span.req {
  background-color: #ED6E00;
}
#contact .wpcf7-form .form-group .form-head label {
  font-size: 18px;
  font-weight: bold;
}
#contact .wpcf7-form .form-group input[type=text],
#contact .wpcf7-form .form-group input[type=email],
#contact .wpcf7-form .form-group input[type=tel],
#contact .wpcf7-form .form-group input[type=file],
#contact .wpcf7-form .form-group textarea {
  width: 100%;
  padding: 16px 24px;
  border: 2px solid #E3E3E3;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background: #FFF8F3;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#contact .wpcf7-form .form-group input[type=text]:focus,
#contact .wpcf7-form .form-group input[type=email]:focus,
#contact .wpcf7-form .form-group input[type=tel]:focus,
#contact .wpcf7-form .form-group input[type=file]:focus,
#contact .wpcf7-form .form-group textarea:focus {
  outline: none;
  border-color: #ED6E00;
  box-shadow: 0 0 0 3px rgba(237, 110, 0, 0.1);
}
#contact .wpcf7-form .form-group input[type=text]::-moz-placeholder, #contact .wpcf7-form .form-group input[type=email]::-moz-placeholder, #contact .wpcf7-form .form-group input[type=tel]::-moz-placeholder, #contact .wpcf7-form .form-group input[type=file]::-moz-placeholder, #contact .wpcf7-form .form-group textarea::-moz-placeholder {
  color: #CCCCCC;
}
#contact .wpcf7-form .form-group input[type=text]::placeholder,
#contact .wpcf7-form .form-group input[type=email]::placeholder,
#contact .wpcf7-form .form-group input[type=tel]::placeholder,
#contact .wpcf7-form .form-group input[type=file]::placeholder,
#contact .wpcf7-form .form-group textarea::placeholder {
  color: #CCCCCC;
}
#contact .wpcf7-form .form-group .file-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
  font-weight: 500;
}
#contact .wpcf7-form .form-group .file-input-wrapper input[type=file] {
  opacity: 1;
  width: 100%;
  height: 60px;
  top: 0;
  left: 0;
  overflow: hidden;
  color: #ED6E00;
  font-size: 16px;
  font-weight: 500;
  padding: 13px;
}
#contact .wpcf7-form .form-group .file-input-wrapper .file-input-label {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFE9D7;
  color: #ED6E00;
  border: none;
  border-radius: 4px;
  width: 144px;
  height: 40px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
#contact .wpcf7-form .form-group .file-input-wrapper .file-input-label:hover {
  background-color: rgb(255, 218.975, 189.5);
}
#contact .wpcf7-form .form-group .file-input-wrapper .file-input-label:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(237, 110, 0, 0.1);
}
#contact .wpcf7-form .form-group .file-input-wrapper .file-input-label .file-input-text {
  pointer-events: none;
}
#contact .wpcf7-form .form-group .file-input-wrapper .file-name {
  font-size: 16px;
  font-weight: 500;
}
#contact .wpcf7-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
#contact .wpcf7-form .form-group.checkbox-group label {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
}
#contact .wpcf7-form .form-group.checkbox-group label input[type=checkbox] {
  width: 23px;
  height: 23px;
  margin-right: 0.75rem;
  cursor: pointer;
  border: 1px solid #E3E3E3;
  border-radius: 4px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  position: relative;
  flex-shrink: 0;
}
#contact .wpcf7-form .form-group.checkbox-group label input[type=checkbox]:checked {
  background-color: #ED6E00;
  border-color: #ED6E00;
}
#contact .wpcf7-form .form-group.checkbox-group label input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
#contact .wpcf7-form .form-group.checkbox-group label input[type=checkbox]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(237, 110, 0, 0.1);
}
#contact .wpcf7-form .form-group.checkbox-group label span {
  line-height: 1.5;
}
#contact .wpcf7-form .form-group small {
  display: block;
  margin-top: 0.5rem;
  font-size: 14px;
  color: #ED6E00;
  font-weight: bold;
  text-align: left;
}
#contact .wpcf7-form .form-group a.orange {
  color: #ED6E00;
  text-decoration: underline;
}
#contact .wpcf7-form .form-group a.orange:hover {
  color: rgb(186, 86.3291139241, 0);
}
#contact .wpcf7-form .privacy-box {
  text-align: center;
}
#contact .wpcf7-form .privacy-box .form-head {
  justify-content: center;
}
#contact .wpcf7-form .privacy-box label {
  flex-wrap: wrap;
  justify-content: center;
}
#contact .wpcf7-form .form-submit {
  text-align: center;
  margin-top: 3rem;
}
#contact .wpcf7-form .form-submit .submit-btn {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 72px;
  border-radius: 50px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(237, 110, 0, 0.3);
  background: #ED6E00 url(../img/icon-more.svg) no-repeat center right 32px;
  margin: 0 auto;
}
#contact .wpcf7-form .form-submit .submit-btn .btn-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#contact .wpcf7-form .form-submit .submit-btn .btn-icon {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
#contact .wpcf7-form .form-submit .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237, 110, 0, 0.4);
}
#contact .wpcf7-form .form-submit .submit-btn:active {
  transform: translateY(0);
}
#contact .wpcf7-form .form-submit .submit-btn::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
#contact .wpcf7-form .form-submit .submit-btn:hover::before {
  left: 100%;
}
#contact .mb-8px {
  margin-bottom: 8px;
}
@media screen and (max-width: 1080px) {
  #contact .bg-box {
    padding: 32px 80px 64px;
  }
}
@media screen and (max-width: 768px) {
  #contact {
    padding: 64px 0;
  }
  #contact .bg-box {
    padding: 32px 48px 48px;
  }
  #contact .bg-box .talk {
    top: -40px;
  }
  #contact .bg-box .head .font-16 {
    text-align: left;
  }
  #contact .bg-box .head .font-16 br {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  #contact .bg-box {
    padding: 32px 32px 32px;
  }
  #contact .wpcf7-form .form-group {
    margin-bottom: 24px;
  }
  #contact .wpcf7-form .form-group .form-head {
    margin-bottom: 8px;
  }
  #contact .wpcf7-form .form-group .form-head span.req,
  #contact .wpcf7-form .form-group .form-head span.any {
    font-size: 13px;
  }
  #contact .wpcf7-form .form-group .form-head label {
    font-size: 16px;
  }
  #contact .wpcf7-form .form-group input[type=text],
  #contact .wpcf7-form .form-group input[type=email],
  #contact .wpcf7-form .form-group input[type=tel],
  #contact .wpcf7-form .form-group input[type=file],
  #contact .wpcf7-form .form-group textarea {
    padding: 12px 16px;
    border: 1px solid #E3E3E3;
    font-size: 15px;
  }
  #contact .wpcf7-form .form-group .file-input-wrapper {
    gap: 8px;
    font-size: 15px;
  }
  #contact .wpcf7-form .form-group .file-input-wrapper .file-input-label {
    width: 130px;
    height: 40px;
    font-size: 15px;
  }
  #contact .wpcf7-form .form-group .file-input-wrapper .file-name {
    font-size: 15px;
  }
  #contact .wpcf7-form .form-group.checkbox-group label {
    justify-content: left;
    font-size: 15px;
  }
  #contact .wpcf7-form .privacy-box .form-head {
    justify-content: left;
  }
  #contact .wpcf7-form .privacy-box label {
    justify-content: left;
  }
  #contact .wpcf7-form .form-submit {
    text-align: center;
    margin-top: 24px;
  }
  #contact .wpcf7-form .form-submit .submit-btn {
    width: 100%;
    height: 64px;
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  #contact {
    padding: 48px 0;
  }
  #contact .bg-box {
    padding: 32px 24px 24px;
  }
}

#faq {
  padding: 104px 0;
  text-align: center;
}
#faq .head {
  margin-bottom: 48px;
}
#faq .faq-box .box {
  border-radius: 8px;
  margin-bottom: 24px;
  overflow: hidden;
  text-align: left;
  background-color: #EEF8FF;
}
#faq .faq-box .box .question {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 20px 72px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#faq .faq-box .box .question::before {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: "Q";
  width: 40px;
  height: 40px;
  left: 20px;
  border-radius: 40px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  background: #178CE8;
}
#faq .faq-box .box .question h3 {
  font-size: 20px;
  font-weight: bold;
}
#faq .faq-box .box .question span {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
#faq .faq-box .box .question span img {
  width: 24px;
  height: 24px;
}
#faq .faq-box .box .answer {
  height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
#faq .faq-box .box .answer p {
  font-size: 18px;
  font-weight: bold;
}
#faq .faq-box .box .answer p strong {
  color: #ED6E00;
}
#faq .faq-box .box.active .question span {
  transform: rotate(180deg);
}
#faq .faq-box .box.active .answer {
  position: relative;
  display: flex;
  align-items: center;
  height: auto;
  border-top: 2px #C5E4FB solid;
  padding: 20px 24px 20px 72px;
}
#faq .faq-box .box.active .answer::before {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: "A";
  width: 40px;
  height: 40px;
  left: 20px;
  border-radius: 40px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  background: #ED6E00;
}
@media screen and (max-width: 768px) {
  #faq {
    padding: 64px 0;
  }
}
@media screen and (max-width: 480px) {
  #faq {
    padding: 48px 0 32px;
  }
  #faq .head {
    margin-bottom: 24px;
  }
  #faq .faq-box .box {
    margin-bottom: 16px;
  }
  #faq .faq-box .box .question::before {
    left: 16px;
    font-size: 24px;
  }
  #faq .faq-box .box .question h3 {
    font-size: 18px;
  }
  #faq .faq-box .box .question span img {
    width: 18px;
  }
  #faq .faq-box .box .answer p {
    font-size: 16px;
  }
  #faq .faq-box .box.active .answer::before {
    top: 20px;
    left: 16px;
    font-size: 24px;
  }
}

footer {
  background: #F4F4F4;
  color: #363636;
  padding: 64px 0 0;
  margin-bottom: 103px;
}
footer .inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}
footer .inner .left {
  width: 300px;
}
footer .inner .left span {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #363636;
  font-family: "Noto Sans JP", sans-serif;
}
footer .inner .right {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: calc(100% - 356px);
}
footer .inner .right .right-box {
  width: calc((100% - 36px) / 2);
}
footer .inner .right .box {
  display: flex;
  border-bottom: 1px #D9D9D9 solid;
  margin-bottom: 12px;
  padding-bottom: 12px;
}
footer .inner .right .box span {
  width: 84px;
  font-size: 15px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
footer .inner .right .box p {
  width: calc(100% - 84px);
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
}
footer small {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  background: #363636;
  padding: 16px;
}
@media screen and (max-width: 1080px) {
  footer .inner {
    flex-wrap: wrap;
  }
  footer .inner .left {
    width: 100%;
    margin-bottom: 32px;
  }
  footer .inner .right {
    width: 100%;
  }
  footer .inner .right .box p br {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  footer {
    padding: 48px 0 0;
  }
  footer .inner {
    padding: 0 32px !important;
  }
  footer .inner .left {
    width: 100%;
    margin-bottom: 0;
  }
  footer .inner .left img {
    width: 100%;
    height: auto;
  }
  footer .inner .right .right-box {
    width: 100%;
  }
  footer .inner .right .box {
    margin: 20px 0 0;
    padding: 20px 0 0;
    border-top: 1px #D9D9D9 solid;
    border-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  footer {
    padding: 32px 0 0;
  }
  footer .inner {
    padding: 0 24px !important;
  }
}

.page-footer {
  margin-bottom: 0;
}

#page .head {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 320px;
  padding-top: 72px;
  background: #178CE8;
}
#page .head h1 {
  color: #fff;
  font-size: 32px;
}
#page .contents-box {
  padding: 96px 0;
}
#page .contents-box h2 {
  font-size: 24px;
  border-bottom: #178CE8 1px solid;
  margin: 64px 0 16px;
  padding-bottom: 16px;
}
#page .contents-box h3 {
  border-left: 4px #178CE8 solid;
  padding-left: 20px;
  margin: 40px 0 12px;
}
#page .contents-box p {
  margin-bottom: 16px;
}
#page .contents-box ol {
  padding-left: 20px;
}
@media screen and (max-width: 880px) {
  #page .head {
    height: 240px;
    padding-top: 0;
  }
}
@media screen and (max-width: 480px) {
  #page .head h1 {
    font-size: 24px;
  }
  #page .contents-box {
    padding: 48px 0;
  }
  #page .contents-box h2 {
    font-size: 20px;
    margin: 40px 0 16px;
  }
  #page .contents-box h3 {
    margin: 32px 0 12px;
  }
}/*# sourceMappingURL=style.css.map */