@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
/* @font-face {
	font-family: 'YuGoBold';
	src: url('../font/YuGothic-Bold.woff2') format('woff2');
}
@font-face {
	font-family: 'YuGoMedium';
	src: url('../font/YuGothic-Medium.woff2') format('woff2');
} */
/* common */
html {
  font-size: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: black;
  line-height: 2;
}

.sp {
  display: none;
}

#wrap {
  overflow: hidden;
  background-color: white;
}

.wrapper {
  margin: auto;
  padding: 0 140px;
}

img {
  /* width: 100%; */
  max-width: 100%;
}

h1 {
  /* font-family: "VDL-Logona"; */
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  padding: 0 40px;
  line-height: 1.5;
}

h2 {
  /* font-family: 'Source Han Sans'; */
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.5;
}

h3 {
  /* font-family: 'Source Han Sans'; */
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}

h4 {
  /* font-family: 'Source Han Sans'; */
  font-size: 22px;
  line-height: 1.5;
}

p {
  font-size: 14px;
  line-height: 2;
}

.text-center {
  text-align: center;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  /* color: white; */
}

.button {
  margin: auto;
}

.boxShadow {
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
}

.black-btn {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  width: 240px;
  height: 60px;
  border-radius: 60px;
  color: white !important;
  justify-content: center;
  align-items: center;
  background-color: black;
  transition: all ease 0.3s;
}

.black-btn:hover {
  color: #2f2e2e !important;
  background-color: white;
  border: 1px solid black;
  cursor: pointer;
}

.black-btn a {
  color: white !important;
}

.black-btn:hover a {
  color: #2f2e2e !important;
}

.red-btn {
  font-size: 24px;
  font-weight: bold;
  color: white !important;
  display: flex;
  width: 240px;
  height: 60px;
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  background-color: #FF7F00;
  transition: all ease 0.3s;
}

.red-btn:hover {
  background-color: white;
  border: 1px solid #FF7F00;
  cursor: pointer;
}

.red-btn a {
  color: white !important;
}

.red-btn:hover a {
  color: #FF7F00 !important;
}

li {
  list-style: none;
  display: flex;
  align-items: center;
  line-height: 3;
  color: #505C63;
  font-size: 18px;
  font-weight: bold;
}

li.custom-list {
  list-style: none;
  display: flex;
  align-items: center;
  line-height: 2;
  margin-bottom: 20px;
  color: #505C63;
}

.validation-required {
  color: #ed1e79;
}

.menu-btn {
  position: absolute;
  right: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  cursor: pointer;
  display: none;
  z-index: 1000;
}

.menu-btn span {
  width: 20px;
  height: 2px;
  background-color: black;
  margin: 2px 0;
  transition: all 0.3s ease;
}

.menu-open span:nth-child(1) {
  transform: rotate(135deg) translate(4px, -4px);
}

.menu-open span:nth-child(2) {
  width: 0px;
  opacity: 0;
}

.menu-open span:nth-child(3) {
  transform: rotate(-135deg) translate(5px, 5px);
}

.menu {
  position: fixed;
  color: white;
  background-color: #FFF8AA;
  text-align: center;
  height: 0;
  width: 100%;
  overflow-y: auto;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  font-size: 24px;
  transition: all 0.3s ease;
}

.menu-main-open {
  height: 100vh;
  padding-top: 60px;
  opacity: 1 !important;
  z-index: 999 !important;
}

.menu > div {
  padding: 10px 0;
  position: relative;
}

.menu a {
  position: relative;
  transition: all 0.3s ease;
}

.menu a::after {
  border-bottom: 1px solid white;
  position: absolute;
  content: "";
  bottom: -2px;
  left: -2%;
  width: 104%;
  transform: scale(0);
  transform-origin: 0%;
  transition: all 0.3s ease;
}

.menu a:hover {
  color: white;
}

.menu a:hover::after {
  transform: scale(1);
}

/*---- navbar ----*/
.header {
  position: fixed;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0);
  top: 0;
  transition: all 0.5s ease-in-out;
}

.header-scroll {
  top: -120px;
  background-color: rgba(255, 255, 255, 0.8745098039);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2392156863);
}

/* .sticky {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
} */
.header-menu {
  background-color: #FFEA00;
  height: 120px;
  padding: 0 140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.main-menu {
  position: relative;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF8AA;
}

.main-menu > div {
  display: none;
}

.main-menu .nav-wrapper {
  display: flex;
}

.header-icon {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.header a {
  color: black;
  font-weight: bold;
  display: flex;
  justify-content: center;
}

.header a img {
  width: 100%;
}

.header-nav {
  display: flex;
  justify-content: space-between;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 70px;
}

.nav-item.contact a {
  color: white !important;
  margin: auto;
}

.header .nav-item a {
  color: black;
  position: relative;
  line-height: 1.5;
}

.header .nav-item a::after {
  content: "";
  position: absolute;
  width: 104%;
  border-top: 1px solid black;
  left: -2%;
  bottom: -3px;
  transform: scale(0, 1);
  transform-origin: 0%;
  transition: transform 0.3s ease;
}

.header .nav-item a:hover::after {
  transform: scale(1, 1);
}

.nav-item.black-btn a::after {
  display: none;
}

.header .black-btn a:hover::after {
  display: none;
}

.header .white-btn a:hover::after {
  display: none;
}

.section {
  padding-top: 100px;
  padding-bottom: 50px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 60px;
}

.container {
  max-width: 100%;
}

/*---- top ----*/
.section-top {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-image: url(../img/top-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: 168px;
}

.section-top .top-container {
  position: absolute;
  top: calc(50% + 170px);
  right: 140px;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.top-container > div {
  text-align: right;
}

.top-img {
  display: flex;
  position: absolute;
  bottom: 0;
}

/* section00 start */
.section00 {
  background-color: #FFF8AA;
}

.section00 .section-title-img {
  display: block;
  width: 570px !important;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

@media screen and (max-width: 767px) {
  .section00 .section-title-img {
    width: 100% !important;
  }
}
.section00 .news-list {
  margin-top: 32px;
}

.section00 .news-list-item-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  width: 100%;
  transition: all 0.2s ease-in-out;
}

.section00 .news-list-item-wrapper.is-open {
  grid-template-rows: 1fr;
}

.section00 .news-list-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section00 .news-list-item-inner {
  display: flex;
  align-items: flex-start;
  gap: 8px 16px;
  width: 100%;
  padding: 18px 0;
  border-bottom: 1px solid #FDDA0B;
}

@media screen and (max-width: 768px) {
  .section00 .news-list-item-inner {
    flex-wrap: wrap;
  }
}
.section00 .news-list-item-wrapper:first-child .news-list-item-inner {
  border-top: 1px solid #FDDA0B;
}

.section00 .news-list-item-date {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
  color: #000000;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .section00 .news-list-item-date {
    font-size: 14px;
  }
}
.section00 .news-list-item-tag {
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.8;
  color: #000000;
  padding: 1px 16px 2px;
  border: 2px solid #000000;
  border-radius: 4px;
  background-color: #fff;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .section00 .news-list-item-tag {
    margin-top: 0;
    font-size: 10px;
  }
}
.section00 .news-list-item-link {
  position: relative;
  font-size: 18px;
  transition: opacity 0.3s ease;
  color: #000000;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .section00 .news-list-item-link {
    display: block;
    width: 100%;
    flex-shrink: 0;
    font-size: 14px;
  }
}
.section00 .news-list-item-link::after {
  content: "";
  position: absolute;
  width: 104%;
  border-top: 1px solid black;
  left: -2%;
  bottom: -3px;
  transform: scale(0, 1);
  transform-origin: 0%;
  transition: transform 0.3s ease;
}

.section00 .news-list-item-link:hover::after {
  transform: scale(1, 1);
}

.section00 .news-more {
  margin: 40px auto 0;
}

/* section01 start */
.section01 {
  background-color: #FFF8AA;
}

.section01 .container {
  display: flex;
  gap: 48px;
}

.section01 .section-card {
  width: 30%;
}

.card-img img {
  width: 100%;
}

.card-title {
  margin-top: 40px;
  margin-bottom: 20px;
}

/* section02 start */
.section02 .wrapper {
  position: relative;
}

/* .section02 .wrapper::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 243px;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  background-image: url(../img/runner1.svg);
  background-size: contain;
  background-repeat: no-repeat;
} */
.section02 .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.section02 .container > div {
  width: 50%;
}

#myVideo {
  width: 100%;
}

/* section03 start */
.section03 {
  padding-bottom: 100px;
}

.step-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  margin-bottom: 80px;
}

.step-card .card-img {
  width: 50%;
}

.step-card .card-content {
  width: 50%;
}

.step-number {
  font-family: "Ubuntu";
  font-size: 74px;
  font-weight: bold;
  line-height: 1.5;
}

.step-card-title {
  position: relative;
  background-color: #FFF8AA;
  width: calc(100% + 280px);
  margin-left: -100px;
  padding-left: 100px;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-bottom: 40px;
}

.step-card-title h2 {
  line-height: 1;
  margin-bottom: 0;
}

.step-card-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 146px;
  height: 32px;
  background-image: url(../img/h1-dec.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.step-card-title.card-reverse {
  width: calc(100% + 252px);
  margin-left: -152px;
  padding-left: 152px;
}

.step-card-title.card-reverse::after {
  left: -28px;
}

.section03 .header-btn {
  justify-content: center;
}

/* section04 start */
.section04 {
  padding: 100px 0 80px;
  background-color: #FFF8AA;
}

.section04 .section-title {
  margin-bottom: 20px;
}

.section04 .slide-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  padding: 60px 80px;
}

.section04 .slide {
  display: grid;
  padding: 40px;
  width: 100%;
  background-color: #FFF;
  overflow: hidden;
}

.section04 .detail {
  margin-top: 20px;
}

.section04 .media-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
}

.section04 .media-wrapper::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.section04 .nested-slide-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.section04 .nested-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  border: solid 1px #eee;
}

.section04 .media-video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.section04 .media-image {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.section04 .detail {
  width: 100%;
}

.section04 .title {
  margin: 0;
  width: 100%;
  font-size: 24px;
}

.section04 .description {
  margin-top: 10px;
  width: 100%;
  font-size: 14px;
}

.section04 .slide-arrow {
  color: #000;
  transition: all 0.2s ease;
}

.section04 .slide-arrow:hover {
  color: #666;
}

.section04 .header-btn {
  margin-top: 40px;
  justify-content: center;
}

/* section05 start */
.section05 {
  padding: 100px 0 40px;
}

.section05 .wrapper {
  position: relative;
}

.section05 .section-title {
  margin-bottom: 20px;
}

.section05 .slide-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  padding: 60px 0;
}

.section05 .slide {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 20px));
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
  max-width: 1440px;
  gap: 40px;
}

.section05 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.section05 .image {
  width: auto;
  height: auto;
}

.section05 .detail {
  position: relative;
  border: solid 8px #000;
  padding: 40px;
  background-color: #F6F6F6;
}

.section05 .detail::before {
  display: block;
  position: absolute;
  top: calc(50% - 24px);
  left: -32px;
  width: 32px;
  height: 48px;
  background-color: #000;
  content: "";
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.section05 .logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  width: 100%;
  aspect-ratio: 2;
  background-color: #FFF;
}

.section05 .logo {
  max-width: 320px;
  max-height: 240px;
  width: 100%;
  height: auto;
}

.section05 .texts {
  margin-top: 30px;
}

.section05 .catch {
  margin: 0;
  font-size: 24px;
}

.section05 .description {
  margin-top: 10px;
  font-size: 14px;
}

.section05 .slide-arrow {
  color: #000;
  transition: all 0.2s ease;
}

.section05 .slide-arrow:hover {
  color: #666;
}

/* section06 start */
.section06 {
  padding: 100px 0;
}

.section06 .flow-img {
  margin-top: 40px;
}

.section06 .flow-img img {
  width: 100%;
}

.section06 .header-btn {
  margin-top: 80px;
  justify-content: center;
}

/* section07 start */
.section07 {
  padding: 80px 0 0;
}

.cta + .section07 {
  padding-top: 0;
}

.section07 {
  display: flex;
}

.section07 > div:first-child {
  background-color: #FFF8AA;
  padding: 30px 60px 30px 140px;
}

.section07 > div:last-child {
  background-color: #FDDA09;
  padding: 30px 140px 30px 60px;
}

.section07 > div {
  width: 50%;
}

.section07 .title {
  margin-bottom: 20px;
}

.section07 > div p:last-child {
  margin-top: 47px;
}

/* footer */
footer {
  padding: 20px 0;
  color: white;
  background-color: black;
  position: relative;
  z-index: 3;
}

footer .wrapper {
  padding-top: 50px;
  padding-bottom: 60px;
  display: flex;
}

footer .wrapper > div {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

footer .header-nav {
  display: flex;
  justify-content: flex-end;
  gap: 80px;
}

footer .header-nav.sp {
  display: none;
}

footer p {
  color: white;
  font-size: 14px;
}

footer a {
  color: white;
}

footer li {
  font-size: 16px;
}

/*---- レスポンシブ ----*/
@media (min-width: 1440px) {
  .top-img {
    left: 70px;
    width: 95%;
    max-height: calc(100vh - 170px);
  }
  .section-top .top-container {
    right: 210px;
  }
  .top-img img {
    width: 100%;
  }
}
@media (max-width: 1366px) {
  .nav-list {
    gap: 40px;
  }
}
@media (max-width: 1280px) {
  h1 {
    font-size: 32px;
    padding: 0 20px;
  }
  h2 {
    font-size: 18px;
  }
  h3 {
    font-size: 16px;
  }
  h4 {
    font-size: 14px;
  }
  p {
    font-size: 12px;
  }
  li {
    font-size: 16px;
  }
  .nav-list {
    gap: 30px;
  }
  .header-menu {
    padding: 0 70px;
  }
  .section-top .top-container {
    right: 70px;
  }
  .wrapper {
    padding: 0 70px;
  }
  .section-title {
    gap: 10px;
    margin-bottom: 30px;
  }
  .section07 > div:first-child {
    background-color: #FFF8AA;
    padding: 30px 60px 30px 70px;
  }
  .section07 > div:last-child {
    background-color: #FDDA09;
    padding: 30px 70px 30px 60px;
  }
  .step-number {
    font-size: 54px;
  }
  .section02 .wrapper::after {
    width: 150px;
  }
  .section05 .wrapper::after {
    width: 350px;
    height: 390px;
    right: -5%;
  }
}
@media (max-width: 1160px) {
  .main-menu {
    height: 40px;
  }
  .main-menu div:first-child,
  .main-menu div:nth-child(3) {
    height: 100%;
  }
  .main-menu div:first-child img,
  .main-menu div:nth-child(3) img {
    height: 100%;
    width: auto;
  }
  li {
    font-size: 14px;
  }
  .section-top {
    background-position-y: 159px;
  }
  .header-menu {
    padding: 0 60px;
  }
}
@media (max-width: 1080px) {
  .section04 {
    padding: 60px 0;
  }
  .section04 .slide-container {
    padding: 0 10px 80px;
  }
  .section04 .slide {
    padding: 15px;
  }
  .section04 .detail {
    margin-top: 10px;
  }
  .section04 .title {
    font-size: 16px;
  }
  .section04 .slide-arrow {
    top: auto;
    bottom: 0;
  }
  .section04 .slide-arrow::after {
    font-size: 20px;
  }
  .section05 .section-title {
    padding: 0 80px;
  }
  .section05 .slide-container {
    padding: 0 40px 80px;
  }
  .section05 .slide {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 20px;
    border: solid 4px #000;
  }
  .section05 .detail {
    padding: 0;
    border: none;
    background: none;
  }
  .section05 .detail:before {
    display: none;
  }
  .section05 .logo-wrapper {
    aspect-ratio: inherit;
    padding: 0 40px;
  }
  .section05 .texts {
    margin-top: 10px;
  }
  .section05 .catch {
    font-size: 16px;
  }
  .section05 .slide-arrow {
    top: auto;
    bottom: 0;
  }
  .section05 .slide-arrow::after {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .nav-wrapper {
    display: none;
  }
  h1 {
    font-size: 18px;
  }
  h2 {
    font-size: 16px;
  }
  h3 {
    font-size: 14px;
  }
  h4 {
    font-size: 14px;
  }
  p {
    font-size: 12px;
  }
  li {
    font-size: 14px;
  }
  .nav-list {
    gap: 30px;
  }
  footer .wrapper {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  footer li {
    font-size: 12px;
  }
  .section {
    padding: 70px 0;
  }
  .section-top .top-container {
    right: 40px;
  }
  .wrapper {
    padding: 0 40px;
  }
  .section02 .container {
    gap: 40px;
  }
  .step-card {
    gap: 40px;
    margin-bottom: 40px;
  }
  .step-card-title {
    width: calc(100% + 190px);
    margin-left: -40px;
    padding-left: 40px;
    margin-bottom: 20px;
  }
  .step-card-title.card-reverse {
    width: calc(100% + 252px);
    margin-left: -212px;
    padding-left: 212px;
  }
  .step-card-title.card-reverse::after {
    left: 60px;
  }
  .section05 {
    padding: 60px 0 40px 0;
  }
  .section05 .container {
    gap: 40px;
  }
  .section06 {
    padding: 60px 0 40px 0;
  }
  .section07 {
    padding: 40px 0 0;
  }
  .section07 > div:first-child {
    background-color: #FFF8AA;
    padding: 30px 30px 30px 40px;
  }
  .section07 > div:last-child {
    background-color: #FDDA09;
    padding: 30px 40px 30px 30px;
  }
  .section07 > div p:last-child {
    margin-top: 20px;
  }
  .step-number {
    font-size: 42px;
  }
  .section02 .wrapper::after {
    width: 120px;
    height: 130px;
    right: -5%;
  }
  .section05 .wrapper::after {
    width: 180px;
    height: 200px;
    right: -10%;
  }
}
@media (max-width: 1000px) {
  /*   .main-menu div:first-child {
      width: 50px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      overflow: hidden;
    } */
  .main-menu div:nth-child(3) {
    width: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
  }
  .nav-list {
    gap: 20px;
  }
  li {
    font-size: 13px;
  }
  .header-menu {
    padding: 0 30px;
  }
  .red-btn {
    width: 200px;
    height: 50px;
    border-radius: 25px;
    font-size: 18px;
  }
  .black-btn {
    width: 200px;
    height: 50px;
    border-radius: 25px;
    font-size: 18px;
  }
  .top-img {
    width: 100%;
  }
  .top-img img {
    width: 100%;
  }
  h1 img {
    width: 100% !important;
  }
  .section-title img {
    width: 70px;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
  h1 {
    font-size: 22px;
    padding: 0;
  }
  h2 {
    font-size: 18px;
  }
  h3 {
    font-size: 16px;
  }
  h4 {
    font-size: 13px;
  }
  p {
    font-size: 12px;
  }
  .black-btn, .red-btn {
    margin: auto;
  }
  .header-scroll {
    top: 0 !important;
  }
  .header-menu {
    height: 60px;
    padding: 0 30px;
  }
  .menu-btn {
    display: flex;
  }
  .header-btn {
    justify-content: center;
  }
  .menu .black-btn {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .header-icon a {
    height: 24px;
  }
  .wrapper {
    padding: 0 30px;
  }
  .section-top {
    background-position-y: 60px;
    background: unset;
  }
  .section-top {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }
  .section-top .top-container {
    position: relative;
    left: auto;
    right: auto;
    margin-top: 60px;
    transform: unset;
    padding: 60px 30px;
    text-align: center;
    background: #FFF8AA;
    gap: 10px;
  }
  .top-container > div {
    text-align: left;
  }
  .top-img {
    position: relative;
  }
  .card-title {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .step-card-title::after {
    width: 140px;
    height: 14px;
  }
  .step-card-title.card-reverse::after {
    left: 140px;
  }
  h1 img {
    width: 100% !important;
  }
  .section-title img {
    width: 70px;
  }
  .section01 .container {
    flex-direction: column;
    gap: 80px;
  }
  .section01 .section-card {
    width: 100%;
  }
  .section02 .container {
    flex-direction: column;
  }
  .section02 .container > div {
    width: 100%;
  }
  .section04 .wrapper {
    padding: 0;
  }
  .section05 .container {
    flex-direction: column;
  }
  .section05 .container > div {
    width: 100%;
  }
  .section05 .container .title {
    margin-bottom: 0px;
    width: 120px;
  }
  .section06 .wrapper {
    padding: 0;
  }
  .section07 .title {
    margin-bottom: 10px;
    width: 170px;
  }
  footer {
    padding: 20px 30px;
  }
  footer .wrapper {
    padding: 0;
  }
  footer .footer-logo {
    width: 170px;
  }
  footer .header-nav.sp {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
  }
  footer .header-nav ul {
    width: 50%;
  }
  footer .wrapper > div {
    width: 100%;
  }
  footer li {
    font-size: 10px;
  }
  footer p {
    margin-top: 20px;
    font-size: 12px;
    text-align: center;
  }
}
@media (max-width: 620px) {
  .step-card {
    flex-direction: column;
  }
  .step-card.reverse {
    flex-direction: column-reverse;
  }
  .step-card .card-img {
    width: 100%;
  }
  .step-card .card-content {
    width: 100%;
  }
  .step-card-title {
    width: calc(100% + 200px);
    margin-left: -55px;
    padding-left: 55px;
    margin-bottom: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .step-card-title.card-reverse {
    width: calc(100% + 270px);
  }
  .section01 .container {
    gap: 60px;
  }
  .section04-content {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .section06 .header-btn {
    margin-top: 40px;
  }
  .section07 {
    flex-direction: column;
  }
  .section07 > div {
    width: 100%;
  }
  .section02 .wrapper::after {
    width: 100px;
    height: 110px;
    right: -5%;
  }
  .section05 .wrapper::after {
    width: 130px;
    height: 140px;
    right: -10%;
  }
}
@media (max-width: 450px) {
  h1 {
    font-size: 16px;
  }
  h2 {
    font-size: 14px;
  }
  h3 {
    font-size: 13px;
  }
  h4 {
    font-size: 12px;
  }
  p {
    font-size: 12px;
  }
  .section-title img {
    width: 40px;
  }
  .section05 .wrapper::after {
    width: 110px;
    height: 130px;
    right: -10%;
  }
  .black-btn, .red-btn {
    width: 130px;
    height: 30px;
    font-size: 13px;
  }
}
@media (min-width: 800px) and (max-height: 500px) {
  .section-top .top-container {
    top: calc(50% + 160px);
    transform: translateY(-100%);
    gap: 10px;
  }
}
/* case */
.case {
  padding-top: 170px;
}
@media screen and (max-width: 1160px) {
  .case {
    padding-top: 160px;
  }
}
@media screen and (max-width: 768px) {
  .case {
    padding-top: 60px;
  }
}

.case-heading-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 50px;
  background: #FFEA00;
  height: 36px;
}
@media screen and (max-width: 768px) {
  .case-heading-wrapper {
    padding: 0 24px;
  }
}

.case-heading {
  display: block;
  width: 100%;
  max-width: 1240px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

.case-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 50px;
  border-bottom: solid 2px #FFEA00;
}
@media screen and (max-width: 768px) {
  .case-title-wrapper {
    padding: 12px 24px;
  }
}

.case-title {
  display: block;
  width: 100%;
  max-width: 1240px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 768px) {
  .case-title {
    font-size: 20px;
    line-height: 1.4;
  }
}

.case-contents {
  margin: 20px auto 0;
  padding: 0 50px;
  max-width: 1340px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .case-contents {
    padding: 0 24px;
  }
}
.case-contents h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}
@media screen and (max-width: 768px) {
  .case-contents h1 {
    font-size: 18px;
    line-height: 1.7;
  }
}
.case-contents h1 + * {
  margin-top: 20px;
}
.case-contents h2 {
  margin-top: 30px;
  padding-left: 12px;
  border-left: solid 4px #FFEA00;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .case-contents h2 {
    margin-top: 20px;
    font-size: 18px;
  }
}
.case-contents h3 {
  margin-top: 30px;
  padding: 8px;
  width: -moz-fit-content;
  width: fit-content;
  background: #FFEA00;
  font-family: Noto Sans JP;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .case-contents h3 {
    margin-top: 20px;
    font-size: 14px;
  }
}
.case-contents h4 {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #FF7F00;
}
@media screen and (max-width: 768px) {
  .case-contents h4 {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.85;
  }
}
.case-contents p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .case-contents p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.85;
  }
}
.case-contents ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-block: 30px;
}
@media screen and (max-width: 768px) {
  .case-contents ul {
    margin-block: 16px;
  }
}
.case-contents li {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .case-contents li {
    font-size: 14px;
    line-height: 1.45;
  }
}
.case-contents ul li {
  padding-left: 26px;
}
.case-contents ul li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  margin-block: auto;
  width: 18px;
  height: 18px;
  background: url(../img/check.svg) no-repeat;
  background-size: contain;
}
.case-contents ol {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-block: 30px;
  padding-left: 26px;
}
@media screen and (max-width: 768px) {
  .case-contents ol {
    margin-block: 16px;
  }
}
.case-contents ol li {
  display: list-item;
  list-style: decimal;
}
.case-contents ol li::marker {
  position: absolute;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: #FF7F00;
}
@media screen and (max-width: 768px) {
  .case-contents ol li::marker {
    font-size: 16px;
  }
}
.case-contents .wp-block-image {
  margin-block: 30px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .case-contents .wp-block-image {
    margin-block: 20px;
  }
}
.case-contents .wp-block-image:has(.alignright) {
  float: right;
  margin: 10px 0 10px 30px;
}
@media screen and (max-width: 768px) {
  .case-contents .wp-block-image:has(.alignright) {
    float: none;
    margin-block: 20px;
  }
}
.case-contents .wp-block-image:has(.alignleft) {
  float: left;
  margin: 10px 30px 10px 0;
}
@media screen and (max-width: 768px) {
  .case-contents .wp-block-image:has(.alignleft) {
    float: none;
    margin-block: 20px;
  }
}
.case-contents img {
  display: block;
  width: 100%;
  height: auto;
}
.case-contents .wp-block-media-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .case-contents .wp-block-media-text {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.case-contents .wp-block-separator {
  margin: 40px 0 30px;
  width: 100%;
  height: 2px;
  border: none;
  background-color: #BCBCBC;
}
@media screen and (max-width: 768px) {
  .case-contents .wp-block-separator {
    margin: 24px 0 20px;
  }
}
.case-contents a {
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-block: 30px;
  color: #1F539A;
}
@media screen and (max-width: 768px) {
  .case-contents a {
    font-size: 14px;
  }
}
.case-contents a::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 10px;
  height: 15px;
  background: center/contain url(../img/arrow-right.svg) no-repeat;
}
.case-contents .wp-block-group-is-layout-flex {
  display: flex;
  width: 100%;
}
.case-contents > *:first-child {
  margin-top: 0;
}
.case-contents strong {
  font-weight: 700;
  color: #FF7F00;
}
.case-contents mark {
  color: inherit;
}

.case-container {
  width: 100%;
  overflow: hidden;
}

.case-list-wrapper {
  position: relative;
  margin-top: 30px;
  width: 100%;
  max-width: 1340px;
  padding-inline: 50px !important;
  overflow: visible !important;
}
@media screen and (max-width: 768px) {
  .case-list-wrapper {
    padding-inline: 24px !important;
  }
}

.case-item {
  width: 100%;
}

.case-item-two {
  transform: translateX(calc(50% + 15px)) !important;
}
@media screen and (max-width: 980px) {
  .case-item-two {
    transform: none !important;
  }
}

.case-item-inner {
  width: 100%;
}
@media (any-hover: hover) {
  .case-item-inner:hover .case-item-thumb {
    scale: 1.05;
  }
  .case-item-inner:hover .case-item-content-heading {
    opacity: 0.5;
  }
  .case-item-inner:hover .case-item-content-text {
    opacity: 0.5;
  }
}

.case-item-thumb-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 1.63;
  overflow: hidden;
}

.case-item-thumb {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s ease-in-out;
}

.case-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: -moz-max-content;
  height: max-content;
  min-height: 200px;
  gap: 20px;
  padding: 20px;
  background-color: #F2F2F2;
}

.case-item-content-white {
  background-color: #FFF;
}

.case-item-content-heading {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625;
  color: #000;
  transition: all 0.2s ease-in-out;
}

.case-item-content-line {
  border: none;
  width: 100%;
  height: 1px;
  background: #000;
}

.case-item-content-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  color: #000;
  transition: all 0.2s ease-in-out;
}

.case-list-navigation-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 100;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .case-list-navigation-container {
    display: flex;
  }
}

.case-list-navigation {
  position: relative;
  top: calc(4px + 27vw) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px !important;
  height: 36px !important;
  border: solid 2px #FFF;
  border-radius: 100%;
  background: rgba(174, 174, 174, 0.3019607843);
  pointer-events: auto;
}
.case-list-navigation:hover {
  cursor: pointer;
}

.case-list-navigation::after {
  content: "" !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
  translate: -25%;
  width: 16px;
  height: 16px;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
}

.case-list-navigation-prev {
  left: 6px !important;
  rotate: 180deg;
}

.case-list-navigation-next {
  right: 6px !important;
}

.case-pager {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  margin: 60px auto 0;
  padding: 0 50px;
  max-width: 1340px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .case-pager {
    padding: 0 24px;
  }
}
.case-pager a {
  padding: 8px 16px;
  border: solid 1px #1F539A;
  color: #1F539A;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  transition: all 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .case-pager a:hover {
    opacity: 0.4;
  }
}
.case-pager a[rel=prev] {
  justify-self: flex-start;
}
.case-pager a[rel=next] {
  justify-self: flex-end;
}

.single-case {
  margin-top: 60px;
  background-color: #F2F2F2;
  padding-block: 40px;
}

.case-catch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .case-catch {
    gap: 12px;
    font-size: 18px;
  }
}

.case-catch::before {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  background-color: #000;
  rotate: -30deg;
}
@media screen and (max-width: 768px) {
  .case-catch::before {
    height: 18px;
  }
}

.case-catch::after {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  background-color: #000;
  rotate: 30deg;
}
@media screen and (max-width: 768px) {
  .case-catch::after {
    height: 18px;
  }
}

.cta {
  padding: 80px 50px;
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 40px 24px;
  }
}

.cta-inner {
  margin-inline: auto;
  max-width: 1240px;
  width: 100%;
}

.cta-content-head {
  margin-inline: auto;
  width: 100%;
  max-width: 480px;
}
@media screen and (max-width: 768px) {
  .cta-content-head {
    max-width: 280px;
  }
}

.cta-btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}/*# sourceMappingURL=common.css.map */