@charset "UTF-8";

/* ALL
====================================== */
/* include base scss  */
/* include utils scss  */
/* Variables
====================================== */
/* Mixins
====================================== */

:root {
  --blue2: #094F92;
  --skyblue: #DBF0FC;
  --yellow: #FFF100;
  --white: #FFFFFF;
  --black: #222222;
  --text: #111111;
  --red: #D2161A;
  --gold: #B7995E;
  --font-noto-sans-jp: "Noto Sans JP", serif;
  --font-poppins: "Poppins", sans-serif;
  --font-roboto: "Roboto Condensed", sans-serif;
}

.sp-visible {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .sp-visible {
    display: block !important;
  }
}

.pc-visible {
  display: block !important;
}

@media screen and (max-width: 767px) {
  .pc-visible {
    display: none !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.overflow-hidden {
  overflow: hidden;
}

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

.text-blue {
  color: var(--blue2) !important;
}

.text-black {
  color: var(--black) !important;
}

.text-yellow {
  color: var(--yellow) !important;
}

.text-red {
  color: var(--red) !important;
}

.text-gold {
  color: var(--gold) !important;
}

.text-dot {
  position: relative;
}

.text-dot::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: currentColor;
  border-radius: 50%;
  left: 50%;
  top: -4px;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .text-dot::before {
    width: 6px;
    height: 6px;
    top: -2px;
  }
}

/**************************  \
  Basic Modal Styles
\  **************************/
.modal__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
}

.modal__container {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0;
  background-color: transparent;
  max-width: 100%;
  max-height: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .modal__container {
    margin-right: 16px;
    margin-left: 16px;
    flex-direction: column;
    align-items: flex-end;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .modal__container {
    margin-right: 30px;
    margin-left: 30px;
  }
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal__title {
  box-sizing: border-box;
  margin-top: 0;
  margin-bottom: 0;
  color: #00449e;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
}

.modal__close {
  position: absolute;
  display: flex;
  padding: 10px;
  border: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  top: 10px;
  right: 10px;
  z-index: 99;
  height: 50px;
  width: 50px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-weight: 700;
  font-size: 26px;
}

@media screen and (max-width: 767px) {
  .modal__close {
    font-size: 20px;
    top: 20px;
    right: 5px;
    height: 30px;
    width: 30px;
    position: static;
  }
}

/* 
.modal__content {
  margin-top: 96px;
} */

@media screen and (max-width: 767px) {
  .modal__content {
    margin-top: 16px;
  }

  .modal__content img {
    max-width: 100%;
    height: auto;
  }
}

.modal__btn {
  margin: 0;
  padding-top: 0.5rem;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  overflow: visible;
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.875rem;
  line-height: 1.15;
  text-transform: none;
  background-color: #e6e6e6;
  border-style: none;
  border-width: 0;
  border-radius: 0.25rem;
  transform: translateZ(0);
  transform: translateZ(0);
  backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  transition: transform 0.25s ease-out;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
}

.modal__btn:focus,
.modal__btn:hover {
  transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  color: #fff;
  background-color: #00449e;
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  overflow-x: hidden;
  color: #222;
  background-color: var(--white);
  font-family: var(--font-noto-sans-jp);
  line-height: 2;
  letter-spacing: 0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  scroll-behavior: smooth;
  text-rendering: optimizespeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

ul {
  margin: 0;
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

h2,
h3 {
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
  opacity: 1;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

.wrapper img {
  max-width: 100%;
  width: auto;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

audio,
canvas,
iframe,
img,
svg,
video,
textarea {
  vertical-align: middle;
}

textarea {
  resize: none;
}

section {
  position: relative;
}

input,
select,
button {
  outline: none;
}

iframe {
  border: none;
}

p {
  font-weight: normal;
  font-size: 14px;
  line-height: 1.5;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  box-shadow: 0 0 0 30px var(--white) inset !important;
}

#wrapper {
  position: relative;
}

main {
  overflow-x: hidden;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-heading__ja {
  color: var(--black, #222);
  font-family: var(--font-noto-sans-jp), serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.20;
  letter-spacing: 1.44px;
}

.section-heading__en+.section-heading__ja {
  margin-top: 30px;
}

.section-heading__en {
  color: var(--gold);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  font-family: var(--font-poppins), sans-serif;
  position: relative;
  padding-bottom: 13px;
}

.section-heading__en:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(225deg, #DAC892 20.48%, #B7995E 80.84%);
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.button {
  display: inline-flex;
  align-items: center;
  padding: 20px 30px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  justify-content: center;
  color: var(--white);
  width: 300px;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  border: 2px solid #FFFFFF;
  background: linear-gradient(270deg, #3D76BD 0%, #173C82 100%);
  box-shadow: 0 5px 10px 3px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out;
}

.button>span {
  transform: translateX(-11px);
}

.button:hover {
  transform: scale(1.05);
}

.button--sm {
  font-size: 16px;
  padding: 24px 30px;
  border: none;
  box-shadow: none;
  width: 168px;
  height: 40px;
  justify-content: center;
}

.button--sm::after {
  display: none;
}

.button--secondary {
  background: var(--Linear, linear-gradient(90deg, #E37419 0%, #FF9C41 100%));
}

@media screen and (max-width: 767px) {
  .button {
    font-size: 18px;
    max-width: 300px;
    padding: 18px 24px;
  }
}

.button:after {
  content: "";
  position: absolute;
  width: 22px;
  height: 8px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/icon-arrow-right.svg) no-repeat center;
  background-size: contain;
  z-index: -1;
}



@media screen and (max-width: 767px) {
  .button:after {
    width: 18px;
    height: 12px;
  }
}

.wrapper {
  position: relative;
}

.marker-under {
  background: linear-gradient(transparent 65%, #FFEBEB 60%);
}

.marker-top {
  position: relative;
}

.marker-top:before {
  content: "";
  position: absolute;
  height: 11px;
  width: 11px;
  background-color: var(--blue2);
  border-radius: 50%;
  left: 50%;
  top: -5px;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
  .marker-top:before {
    height: 9px;
    width: 9px;
  }
}

@media screen and (max-width: 767px) {
  .marker-top:before {
    width: 8px;
    height: 8px;
  }
}

.text-small {
  padding-left: 15px;
  position: relative;
}

.text-small:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/* include page's section scss   */
.header {
  width: 100%;
  top: 0;
}

.header__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 86px;
  align-items: center;
  transition: background-color 0.3s ease-in-out;
}

.header-logo h1 {
  font-size: 0;
}

.header-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.header-button .button>span {
  transform: translateX(0);
}

@media screen and (max-width: 767px) {
  .header-logo img {
    width: 150px;
  }

  .header-button .button {
    display: flex;
    width: 46px;
    height: 45px;
    padding: 6px;
    border-radius: 10px;
  }

  .header-button .button--secondary {
    background: linear-gradient(90deg, #E37419 0%, #FF9C41 100%);
  }
}

@media screen and (max-width: 1180px) and (min-width: 960px) {
  .header-logo {
    max-width: 27.63vw;
    min-width: 170px;
  }
}

@media screen and (max-width: 960px) {
  .header-logo {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.header-btn-menu {
  display: none;
}

@media screen and (max-width: 960px) {
  .header-btn-menu {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    background-color: var(--blue2);
    width: 60px;
    height: 60px;
    border-bottom-left-radius: 10px;
  }

  .header-btn-menu span {
    display: inline-flex;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background-color: white;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
  }

  .header-btn-menu span:nth-of-type(3),
  .header-btn-menu span:nth-of-type(4) {
    margin-top: 8px;
  }
}

.header-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-top: 20px;
}

@media screen and (max-width: 960px) {
  .header-menu {
    opacity: 0;
    visibility: hidden;
    padding-top: 0;
    transition: opacity 0.3s ease-in-out;
  }
}

.header-menu__item+.header-menu__item {
  margin-left: 32px;
}

@media screen and (max-width: 1180px) and (min-width: 960px) {
  .header-menu__item+.header-menu__item {
    margin-left: 2vw;
  }
}

.header-menu__link {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-align: right;
  color: var(--blue2);
  position: relative;
}

@media screen and (max-width: 960px) {
  .header-menu__link {
    color: #fff;
  }
}

.header-menu__link:after {
  background-color: #BB060A;
  bottom: -6px;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.25, 0.58, 0.44, 0.98);
  width: 100%;
}

.header-menu__link:hover {
  color: #BB060A;
}

.header-menu__link:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.25, 0.58, 0.44, 0.98);
}

.header-nav {
  width: calc(100% - 315px);
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
}

@media screen and (max-width: 1180px) and (min-width: 960px) {
  .header-nav {
    width: calc(100% - 27.63vw);
  }
}

@media screen and (max-width: 960px) {
  .header-nav {
    padding: 50px 20px 50px 50px;
    position: absolute;
    transform: translateY(-110%);
    top: 0;
    width: 100%;
    will-change: transform, opacity;
    left: 0;
    justify-content: flex-start;
    opacity: 1;
    border-radius: 0 0 0 10px;
    background-color: var(--blue2);
  }
}

.header--scroll {
  position: fixed;
  z-index: 999;
  animation: header-scroll 1s forwards normal;
  background-color: rgb(255, 255, 255);
}

@media screen and (max-width: 960px) {
  .header--scroll {
    padding-bottom: 0;
  }
}

.header--scroll .header-menu {
  padding-top: 17px;
}

@media screen and (max-width: 1180px) and (min-width: 960px) {
  .header--scroll .header-menu__item+.header-menu__item {
    margin-left: 2.96vw;
  }
}

.header--scroll .header-nav {
  width: calc(100% - 170px);
}

@media screen and (max-width: 960px) {
  .header--scroll .header-nav {
    width: 100%;
  }
}

@media screen and (max-width: 960px) {
  .header--scroll .header-logo {
    margin-top: 0;
  }
}

@media screen and (max-width: 960px) {
  .header .header__container {
    padding: 0 16px;
    height: 60px;
  }

  .header.header--active-sp .header__container:after {
    height: 100%;
    opacity: 1;
  }

  .header.header--active-sp .header-nav {
    background-color: var(--blue2);
    z-index: 10;
  }

  .header.header--active-sp .header-menu {
    display: flex;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
  }

  .header.header--active-sp .header-menu__link {
    font-size: 16px;
    font-weight: 500;
    line-height: 54.4px;
  }

  .header.header--active-sp .header-menu__link:after {
    background-color: #fff;
  }

  .header.header--active-sp .header-menu__link:hover {
    color: #fff;
  }

  .header.header--active-sp .header-menu__item {
    margin-left: 0;
  }

  .header.header--active-sp .header-btn-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    margin-right: 0;
  }

  .header.header--active-sp .header-btn-menu span {
    width: 26px;
  }

  .header.header--active-sp .header-btn-menu span:nth-of-type(2) {
    transform: translate(0px, 3px) rotate(45deg);
  }

  .header.header--active-sp .header-btn-menu span:nth-of-type(4) {
    transform: translate(0px, -7px) rotate(-45deg);
  }

  .header.header--active-sp .header-btn-menu span:nth-of-type(3) {
    display: none;
  }
}

.slide-up {
  animation: slide-up 0.4s ease-out forwards;
}

.slide-down {
  animation: slide-down 0.4s ease-out forwards;
}

@keyframes header-scroll {
  0% {
    top: -110px;
  }

  100% {
    top: 0;
  }
}

@keyframes slide-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.keyvisual {
  padding-top: 88px;
  overflow: hidden;
  background: linear-gradient(0deg, #FFF 0.88%, #D8ECFD 37.4%, #EBF4E9 89.57%), #F3F8F1;
  font-family: var(--font-noto-sans-jp), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  padding-bottom: 100px;
  position: relative;
}

.keyvisual::after {
  content: "";
  position: absolute;
  display: block;
  background: url(../images/bg-radius.png) no-repeat center;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-size: 100% 100%;
}

.keyvisual__container {
  display: flex;
  flex-direction: row;
  max-width: 1220px;
  height: 435px;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.keyvisual__text {
  width: 100%;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.keyvisual__title {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  margin-right: -10px;
  color: var(--white);
  background-color: var(--blue2);
  padding: 32px 28px 24px;
  display: inline-block;
}

.keyvisual__title .text-yellow {
  font-size: 56px;
}

.keyvisual__sub {
  color: var(--blue2);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.40;
  letter-spacing: 0.4px;
  margin-top: 16px;
}

.keyvisual__button {
  margin-top: 32px;
}


.keyvisual__image {
  position: absolute;
  right: 0;
  top: 0;

}

.keyvisual__image .image img {
  max-height: 483px;
  width: auto;
  object-fit: cover;
  object-position: center;
}

@media screen and (min-width: 768px) {
  .keyvisual__image .image img {
    width: 57.7vw;
    height: 483px;
  }
}

@media screen and (max-width: 767px) {
  .keyvisual {
    padding-bottom: 60px;
    background: linear-gradient(180deg, #FFF 78.12%, #D8ECFD 84.37%), #F3F8F1;
  }

  .keyvisual::after {
    height: 30px;
  }

  .keyvisual__container {
    align-items: flex-start;
    height: auto;
  }

  .keyvisual__image {
    top: 0;
    left: 0;
  }

  .keyvisual__image .image img {
    width: 100%;
    height: auto;
  }

  .keyvisual__text {
    position: static;
    margin-top: 152px;
  }

  .keyvisual__title {
    width: 100%;
    padding: 16px;
    text-align: center;
  }

  .keyvisual__title,
  .keyvisual__title .text-yellow {
    font-size: 26px;
  }

  .keyvisual__sub {
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
  }

  .keyvisual__button {
    display: flex;
    justify-content: center;
    margin-top: 12px;
  }
}

/* about  */
.about {
  text-align: center;
  padding-bottom: 40px;
}

.about .section-heading {
  color: var(--blue2, #094F92);
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  /* 54.4px */
  margin-bottom: 36px;
}

.about .section-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about img {
  max-width: 100%;
  height: revert-layer;
}

.about .section-description {
  color: var(--black, #222);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 2.20;
  /* 35.2px */
  letter-spacing: 0.32px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.about .about-diagram {
  margin-top: 60px;
  margin-bottom: 60px;
  display: block;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  border: 1px solid #BEBEBE;
  background: var(--white, #FFF);
  padding: 24px 50px;
}

.about .about-diagram .about-diagram__title {
  color: var(--black, #222);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.60;
  /* 38.4px */
  letter-spacing: 0.72px;
}

.about .about-diagram .about-diagram__formula {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--blue2);
  text-align: center;
  margin-top: 44px;
  padding-left: 49px;
  padding-right: 49px;
}

.about .about-diagram .about-diagram__formula-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.about .about-diagram .about-diagram__formula-text {
  white-space: nowrap;
}

.about .about-diagram .about-diagram__formula-text small {
  font-size: 14px;
  line-height: 1;
}


.about .about-diagram .about-diagram__formula-text.text-black {
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.about .about-diagram .about-diagram__description {
  color: var(--black, #222);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.90;
  letter-spacing: 0.36px;
  border-top: 1px solid #BEBEBE;
  margin-top: 16px;
}


.about .section-description__spacer {
  height: 78px;
  width: 2px;
  background-color: #C5C5C5;
  margin: 32px auto 8px;
}

.about .image-wrapper img {
  width: auto;
  height: auto;
}

.about .text-highlight {
  background-color: var(--blue2);
  color: var(--white);
  padding: 20px;
  color: var(--white);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.84px;
  border-radius: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  justify-content: center;
  max-width: 840px;
  margin: 60px auto;
}

.card-list .card {
  background-color: var(--white, #FFF);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
}

.card-list .card-image img {
  width: 100%;
  height: auto;
}

.card-list .card-content {
  padding: 12px 16px;
}

.card-list .card-title {
  color: var(--white, #FFF);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
  padding: 8px 0;
  background: var(--blue2, #094F92);
  margin-top: -1px;
}

.card-list .card-tag {
  color: var(--white, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.75;
  /* 28px */
  padding: 0 24px;
  border-radius: 16px;
  background: linear-gradient(90deg, #E37419 0%, #FF9C41 100%);
  display: inline-block;
}

.card-list .card-description {
  color: var(--black, #222);
  margin-top: 8px;
  margin-bottom: 4px;
}

.card-list .card-description__list {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.60;
  text-align: left;
}

.card-list .card-description__list li {
  position: relative;
  padding-left: 20px;
}

.card-list .card-description__list li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 8px;
  width: 6px;
  height: 6px;
  background-color: var(--black, #222);
  border-radius: 50%;
}

.card-list .card-arrow {
  display: block;
  margin: 4px auto;
}

.card-list .card-bottom {
  color: var(--black, #222);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
  text-align: left;
  /* 24.8px */
}

.about .text-impression {
  color: var(--black, #222);
  font-size: 18px;
  font-weight: 700;
  line-height: 2.20;
  letter-spacing: 0.36px;
}

@media screen and (max-width: 767px) {
  .about {
    padding-top: 16px;
  }

  .about .about-logo {
    width: revert-layer;
  }

  .about .section-heading {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    text-align: left;
  }

  .about .section-description {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 0;
    letter-spacing: 0.28px;
  }

  .about .section-description__spacer {
    height: 60px;
    margin: 12px auto 20px;
  }

  .about .text-highlight {
    padding: 20px 12px;
    border-radius: 8px;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.4px;
    margin-top: 32px;
  }

  .about .text-highlight .text-yellow {
    display: block;
  }

  .about .section-content img {
    height: auto;
  }

  .about .about-diagram {
    padding: 20px 16px;
    font-size: 16px;
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .about .about-diagram .about-diagram__title {
    font-size: 18px;
  }

  .about .about-diagram .about-diagram__formula {
    margin-top: 20px;
    gap: 12px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 16px;
    padding: 0;
    margin: 20px -12px 0;
  }

  .about .about-diagram .about-diagram__formula-text.text-black {
    font-size: 24px;
  }

  .about .about-diagram .about-diagram__formula-item.--sign {
    align-items: center;
    justify-content: center;
    width: auto;
  }

  .about .about-diagram .about-diagram__formula-item {
    width: 128px;
    min-height: 0;
    gap: 8px;
  }

  .about .about-diagram .about-diagram__formula-item:first-child {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    height: 30px;
    font-size: 20px;
  }

  .about .about-diagram .about-diagram__formula-item img {
    height: 30px;
  }

  .about .about-diagram .about-diagram__formula-item:first-child img {
    width: 30px;
  }

  .about .about-diagram .about-diagram__formula-item:first-child .text-black {
    font-size: 24px;
    font-weight: 700;
  }

  .about .about-diagram .about-diagram__description {
    font-size: 14px;
    line-height: 1.75;
    padding-top: 8px;
    margin-top: 8px;
  }

  .card-list {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .card-list .card-tag {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .card-list .card-description__list {
    font-size: 14px;
  }

  .card-list .card-arrow {
    margin: 12px auto;
  }

  .card-list .card-bottom {
    font-size: 15px;
  }

  .about .text-impression {
    font-size: 18px;
    line-height: 1.75;
    text-align: left;
  }
}

/* end of about */
.feature {
  background-color: var(--skyblue);
  padding-top: 180px;
  padding-bottom: 80px;
  position: relative;
}

.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(../images/bg-radius.png) no-repeat center;
  transform: rotate(180deg);
  background-size: 100% 100%;
}

.feature .feature__container {
  padding: 80px 16px;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 30px;
  background: var(--white) url(../images/bg-plus.svg) no-repeat top right;
}

.feature .section-content {
  text-align: center;
  margin-top: 40px;
}

.feature .section-description {
  color: var(--black, #222);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 2.20;
  letter-spacing: 0.32px;
}

.feature .text-highlight {
  background-color: var(--blue2);
  color: var(--white);
  padding: 32px 60px 20px;
  text-align: center;
  color: var(--white);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  margin: 50px auto 16px;
  position: relative;
  max-width: 670px;
  overflow: hidden;
}

.feature .text-highlight::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  height: 30px;
  width: 100px;
  aspect-ratio: 2;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background: var(--white);
}

@media screen and (max-width: 767px) {
  .feature {
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .feature::before {
    height: 30px;
  }

  .feature .feature__container {
    padding: 30px 16px;
    background-size: 200px 202px;
  }

  .section-heading__ja {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.72px;
  }

  .section-heading__en+.section-heading__ja {
    margin-top: 16px;
  }

  .feature .section-description {
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: 0.28px;
    text-align: left;
  }

  .feature .text-highlight {
    font-size: 20px;
    padding: 32px 30px 12px;
    margin: 30px auto 16px;
  }

  .feature .text-highlight .text-yellow {
    display: block;
  }

  .pricing-sp {
    margin-top: 30px;
  }

  .pricing-sp .pricing-sp-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    font-size: 0;
    justify-content: flex-start;
    margin-top: 12px;
    width: 100%;
  }

  .pricing-sp .pricing-sp-item .pricing-sp-item__title {
    background: #F5F5F5;
    padding: 12px 16px;
    grid-column: 1 / -1;
    color: #000;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 13.129px;
    /* 87.527% */
  }

  .pricing-sp .pricing-sp-item .pricing-sp-item__cell {
    border-bottom: 1px solid #D2D2D2;
    color: var(--black, #222);
    font-size: 13px;
    font-style: normal;
    height: 38px;
    display: flex;
    align-items: center;
    padding: 12px;
  }

  .pricing-sp .pricing-sp-item .pricing-sp-item__cell:nth-of-type(even) {
    background: #E3F3FC;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: 0.36px;
    border-right: none;
    font-size: 12px;
    font-weight: 700;
  }

  .pricing-sp .pricing-sp-item .pricing-sp-item__cell:nth-last-child(-n+2) {
    border-top: 2px solid var(--black, #222);
    border-right: 2px solid var(--black, #222);
    border-bottom: 2px solid var(--black, #222);
    background: var(--white, #FFF);
    height: 60px;
    margin-top: -1px;
  }

  .pricing-sp .pricing-sp-item .pricing-sp-item__cell:nth-last-child(2) {
    background: #040000;
    padding: 8px;
  }

  .pricing-sp .pricing-sp-item .pricing-sp-item__cell:last-child {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
  }

  .pricing-sp .pricing-sp-item .pricing-sp-item__cell:last-child img {
    width: 21px;
    height: 20px;
    margin-right: 4px;
  }
}

.pricing {
  display: grid;
  grid-template-columns: auto auto auto auto;
  margin-top: 90px;
  margin-left: 27px;
  margin-right: 27px;
}

.pricing .pricing-item+.pricing-item {
  margin-left: -1px;
}

.pricing .pricing-item__cell {
  border: 1px solid #D2D2D2;
  color: var(--black, #222);
  font-size: 18px;
  font-style: normal;
  height: 78px;
  display: flex;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  margin-top: -1px;
}

.pricing .pricing-item:first-child .pricing-item__cell {
  background-color: #F5F5F5;
}

.pricing .pricing-item:first-child .pricing-item__cell:first-child {
  background-color: transparent;
  border-top: none;
  border-left: none;
}

.pricing .pricing-item .pricing-item__cell:first-child {
  border: 1px solid #D2D2D2;
  background: rgba(227, 243, 252, 0.80);
  font-weight: 700;
  line-height: 20px;
  height: 54px;
  letter-spacing: 0.54px;
  justify-content: center;
}

.pricing .pricing-item:last-child {
  margin-top: -24px;
  margin-bottom: -20px;
  border: 5px solid #040000;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.pricing .pricing-item:last-child .pricing-item__cell {
  font-weight: 700;
  font-size: 20px;
  border-left: none;
  border-right: none;
  gap: 14px;
}

.pricing .pricing-item:last-child .pricing-item__cell:first-child {
  background-color: #040000;
  color: var(--white);
  border: none;
  justify-content: center;
  padding-top: 18px;
  padding-bottom: 18px;
  height: auto;
}

.pricing .pricing-item:last-child .pricing-item__cell:last-child {
  border-bottom: none;
}

.cta {
  padding: 60px 0;
  text-align: center;
  background:
    url(../images/bg-plus-transparent.svg) no-repeat top 7px right -3.5px,
    linear-gradient(90deg, #3384C6 0%, #4DA335 100%);
  color: var(--white);
}

.cta--primary {
  background:
    url(../images/bg-plus-transparent.svg) no-repeat top right/contain,
    linear-gradient(90deg, #3384C6 0%, #4DA335 100%);
}

.cta .cta-heading {
  color: var(--white, #FFF);
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  /* 57.6px */
  letter-spacing: 1.44px;
  background: url(../images/heading-line.svg) no-repeat center bottom;
  padding-bottom: 39px;
  margin-bottom: 24px;
}

.cta .cta-heading h2 {
  font-size: 48px;
  font-weight: 700;
}

.cta .cta-heading h3 {
  color: var(--white, #FFF);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 2.80;
  letter-spacing: 0.8px;
}

.cta .cta-button {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.cta .cta-button .button__desc {
  color: var(--white, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.40;
  /* 22.4px */
  letter-spacing: 0.48px;
  margin-top: 12px;
}

.cta--secondary {
  padding-bottom: 150px;
  position: relative;
}

.cta--secondary::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(../images/bg-radius.png) no-repeat center;
  background-size: 100% 100%;
}

.cta--third {
  padding-top: 150px;
  position: relative;
}

.cta--third::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(../images/bg-radius.png) no-repeat center;
  background-size: 100% 100%;
  transform: rotate(180deg);
}

@media screen and (min-width: 768px) {
  .cta .cta-heading.cta-heading--secondary {
    background-size: 560px;
  }
}

@media screen and (max-width: 767px) {
  .cta {
    padding: 40px 4px;
    background: 
      url(../images/bg-plus-transparent.svg) no-repeat top right/ 180px 182px,
      linear-gradient(90deg, #3384C6 0%, #4DA335 100%);
  }

  .cta .cta-heading,
  .cta .cta-heading h2 {
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.8px;
  }

  .cta .cta-heading h3 {
    font-size: 16px;
    line-height: 1.75;
  }

  .cta .cta-heading h2+h3 {
    margin-top: 12px;
  }

  .cta .cta-heading.cta-heading--secondary {
    background-size: 284px;
  }

  .cta .cta-button {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .cta .cta-button .button__desc {
    font-size: 14px;
    line-height: 1.2;
  }

  .cta--secondary {
    padding-bottom: 60px;
  }

  .cta--third {
    padding-top: 60px;
  }

  .cta::after {
    height: 30px;
  }
}

.point {
  padding: 100px 0 80px;
}

.point .point-list {
  margin-top: 60px;
  counter-reset: point-counter;
}

.point .point-item {
  display: flex;
  flex-direction: row;
  align-items: center;

}

.point .point-item .point-item__image {
  box-sizing: border-box;
  width: 50%;
}

.point .point-item .point-item__content {
  padding: 24px 80px 24px 40px;
  box-sizing: border-box;
  width: 50%;
  color: var(--black, #222);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.70;
}

.point .point-item:nth-of-type(even) {
  flex-direction: row-reverse;
}

.point .point-item:nth-of-type(even) .point-item__content {
  padding: 24px 40px 24px 80px;
}

.point .point-item__title {
  color: var(--blue2, #094F92);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.75;
  position: relative;
  padding-left: 69px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #DADADA;
}

.point .point-item__title::before {
  counter-increment: point-counter;
  content: "0" counter(point-counter);
  position: absolute;
  left: 0;
  top: calc(50% - 4px);
  transform: translateY(-50%);
  color: var(--blue2, #094F92);
  font-family: var(--font-roboto), sans-serif;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.point .point-item__description {
  font-size: 16px;
  line-height: 1.70;
}

@media screen and (min-width: 768px) {
  .point .point__container {
    max-width: 1280px;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .point {
    padding: 40px 0;
  }

  .point .section-heading__ja {
    text-align: center;
    line-height: 1.75;
  }

  .point .point-list {
    margin-top: 32px;
  }

  .point .point-item,
  .point .point-item:nth-of-type(even) {
    flex-direction: column;
  }

  .point .point-item .point-item__image {
    width: 100%;
  }

  .point .point-item .point-item__content,
  .point .point-item:nth-of-type(even) .point-item__content {
    width: 100%;
    padding: 16px 0;
  }

  .point .point-item__title {
    font-size: 18px;
    padding-left: 50px;
  }

  .point .point-item__title::before {
    font-size: 32px;
  }
}

.client-list {
  border-radius: 16px;
  background: #F5F5F5;
  padding: 40px 30px;
  max-width: 1000px;
  margin: 100px auto 0;
}

.client-list .client__subtitle {
  color: var(--black, #222);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.8px;
  text-align: center;
  margin-bottom: 30px;
}

.client-list img {
  width: auto;
  height: auto;
  cursor: pointer;
}

.client-list .client__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.client-list .client__item-image {
  overflow: hidden;
}

.client-list .client__muted {
  color: #727171;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.20;
  letter-spacing: 0.56px;
}

@media screen and (max-width: 767px) {
  .client-list .client__item-image {
    padding: 0;
  }

  .client-list .client__title {
    font-size: 20px;
  }

  .client-list .client__subtitle {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .client-list {
    margin-top: 40px;
  }

  .client-list .client__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    text-align: center;
  }
}



.course {
  padding: 80px 0;
  background: linear-gradient(180deg, #FFF 5%, #D8ECFD 40%, #EBF4E9 90%), #F3F8F1;
}

.course .section-heading__ja {
  margin-top: 24px;
}

.course .course-diagram {
  display: block;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}

.course .course-list {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.course .course-item {
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 6.78px 21.186px 0 rgba(0, 0, 0, 0.10);
  margin-top: 40px;
  flex: 1;
}

.course .course-item__title {
  border-radius: 16px 16px 0 0;
  background: var(--Linear, linear-gradient(270deg, #3D76BD 0%, #173C82 100%));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white, #FFF);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.2px;
  height: 66px;
}

.course .course-item__content {
  padding: 24px 44px;
}

.course .course-item__content .course-people {
  display: block;
  margin: 4px auto 20px;
}

.course .course-item__example {
  display: grid;
  grid-template-columns: repeat(4, 200px);
  justify-content: space-between;
  text-align: center;
  position: relative;
}

.course .course-item__example-content {
  position: relative;
}

.course .course-item__example::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(#E6E6E6, #E6E6E6) no-repeat,
    linear-gradient(#E6E6E6, #E6E6E6) no-repeat,
    linear-gradient(#E6E6E6, #E6E6E6) no-repeat;

  background-size: 1px 100%;
  background-position:
    calc(25%) 0,
    calc(50%) 0,
    calc(75%) 0;
}

.course .course-item__example-title {
  display: inline-flex;
  padding: 2px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: #EEEFEF;
  color: var(--blue2, #094F92);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.60;
  letter-spacing: 0.9px;
  margin-bottom: 10px;
}

.course .course-item__example-text {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.60;
  letter-spacing: 0.48px;
  text-align: left;
}

.course .course-item__feature {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 30px 80px;
  max-width: 660px;
  margin: 20px auto 30px;
}

.course .course-item__feature-content {
  text-align: center;
}

.course .course-item__feature-text {
  color: #333;
  text-align: center;
  font-size: 15.254px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.60;
  letter-spacing: 0.915px;
  margin-top: 8px;
}

.course .course-item__note {
  color: #333;
  font-size: 11.864px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.712px;
}

.course .course-group {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.course .course-group .course-item__content {
  padding: 24px 20px;
}

.course .course-group .course-item__content-image {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .course .course-item__content {
    padding: 24px 15px;
  }

  .course .course-item__example {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 22px;
    column-gap: 24px;
  }

  .course .course-item__example::before {
    display: none;
  }

  .course .course-item__example-text {
    font-size: 14px;
    text-align: justify;
  }

  .course .course-item__example-content:nth-of-type(2n)::before {
    content: "";
    position: absolute;
    top: 0;
    left: -12px;
    width: 1px;
    height: 100%;
    background-color: #E6E6E6;
  }

  .course .course-item__example-content:nth-child(4n+3)::after,
  .course .course-item__example-content:nth-child(4n+4)::after {
    content: "";
    position: absolute;
    top: -11px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #E6E6E6;
  }

  .course .course-item__feature {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 28px;
  }

  .course .course-item__feature-text {
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.84px;
  }

  .course .course-item__note {
    font-size: 13px;
    line-height: 1.60;
    letter-spacing: 0.78px;
  }

  .course .course-group {
    flex-direction: column;
    gap: 40px;
  }

  .course .course-group .course-item+.course-item {
    margin-top: 0;
  }

  .course .course-group .course-item__content-image h3 {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 1.08px;
    margin-top: 13px;
    margin-bottom: 13px;
  }
}

.flow {
  padding-top: 100px;
  padding-bottom: 120px;
}

.flow-list {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.flow-item {
  width: calc(25% - 45px);
  padding: 90px 15px 35px;
  background-color: #fff;
  box-shadow: 0 6.78px 21.186px 0 rgba(0, 0, 0, 0.10);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 20px 12px 30px;
}


.flow-item:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -65px;
  transform: translateY(-50%);
  width: 71px;
  height: 25px;
  background: url(../images/detail-arrow.svg) no-repeat center;
  background-size: contain;
}

.flow-item:last-child:after {
  display: none;
}

.flow-item:first-child {
  z-index: 4;
}

.flow-item:nth-of-type(2) {
  z-index: 3;
}

.flow-item:nth-of-type(3) {
  z-index: 2;
}

.flow-item__number {
  border-radius: 16px;
  background: var(--skyblue, #DBF0FC);
  color: var(--blue2, #094F92);
  text-align: center;
  font-family: var(--font-roboto), sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.678px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.flow-item__number span {
  font-size: 14px;
  margin-right: 4px;
}

.flow-item__image {
  min-height: 60px;
  margin-top: 24px;
}

.flow-item__name {
  margin-top: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #333;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  letter-spacing: 1.08px;
}

@media screen and (max-width: 767px) {
  .flow {
    border-radius: 40px 40px 0 0;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .flow-list {
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
  }

  .flow-item {
    width: 100%;
    border-radius: 16px;
    padding: 16px 21px;
    box-shadow: 0 6.78px 21.186px 0 rgba(0, 0, 0, 0.10);
  }

  .flow-item+.flow-item {
    margin-top: 40px;
  }

  .flow-item:after {
    width: 45px;
    height: 12px;
    top: auto;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%) rotate(90deg);
  }

  .flow-item__name {
    margin-top: 0;
    font-size: 18px;
    text-align: left;
  }

  .flow-item__image {
    margin-top: 16px;
    margin-bottom: 16px;
    min-height: 0;
  }
}

.faq {
  padding-bottom: 100px;
}

.faq__container {
  max-width: 1040px;
}

.faq-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  min-height: 93px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.10);
}

.faq-item+.faq-item {
  margin-top: 30px;
}

.faq-item__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-align: justified;
}

.faq-item__question {
  position: relative;
  cursor: pointer;
  padding: 32px 126px 32px 83px;
}

.faq-item__question:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  width: 32px;
  height: 4px;
  background: var(--blue2);
  border-radius: 8px;
}

.faq-item__question:before {
  content: "";
  position: absolute;
  top: 32px;
  right: 54px;
  width: 4px;
  height: 32px;
  background: var(--blue2);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.faq-item__question .faq-item__text {
  position: relative;
  color: var(--blue2, #094F92);
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.08px;
}

.faq-item__question .faq-item__text:before {
  content: "";
  position: absolute;
  top: -11px;
  left: -63px;
  width: 45px;
  height: 45px;
  background: url(../images/icon-text-question.svg) no-repeat center;
  background-size: contain;
}

.faq-item--active .faq-item__question:before {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-item__answer {
  padding: 8px 126px 42px 83px;
}

@media screen and (max-width: 767px) {
  .faq {
    padding-bottom: 60px;
  }

  .faq-list {
    margin-top: 30px;
  }

  .faq-item {
    min-height: 60px;
    border-radius: 10px;
  }

  .faq-item+.faq-item {
    margin-top: 20px;
  }

  .faq-item__question .faq-item__text {
    font-size: 15px;
  }

  .faq-item__text {
    font-size: 14px;
  }

  .faq-item__question {
    padding: 20px 48px 20px 63px;
  }

  .faq-item__question:after {
    width: 17px;
    height: 3px;
    right: 20px;
    top: 31px;
  }

  .faq-item__question:before {
    width: 3px;
    height: 16px;
    right: 27px;
    top: 25px;
  }

  .faq-item__question .faq-item__text:before {
    width: 35px;
    height: 35px;
    top: -4px;
    left: -42px;
  }

  .faq-item__answer {
    display: none;
    padding: 0 16px 16px 59px;
  }
}

.company {
  padding-top: 80px;
  padding-bottom: 100px;
}

.company-info {
  background-color: var(--color-white);
  margin-top: 60px;
  padding: 90px 50px 116px 100px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.00);
  box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.10);
}

@media screen and (max-width: 960px) {
  .company-info {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media screen and (max-width: 767px) {
  .company-info {
    border-radius: 10px;
    padding: 30px 20px 30px;
    margin-top: 30px;
  }
}

.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-logo img {
  width: 504px;
}

@media screen and (max-width: 767px) {
  .company-logo img {
    width: 266px;
  }
}

.company .info-list {
  display: flex;
  flex-direction: column;
  margin-top: 73px;
}

@media screen and (max-width: 767px) {
  .company .info-list {
    margin-top: 30px;
  }
}

.company .info-item {
  display: flex;
  flex-direction: row;
}

@media screen and (max-width: 767px) {
  .company .info-item {
    flex-direction: column;
    padding: 25px 0;
    border-bottom: 1px solid rgb(225, 225, 225);
  }
}

.company .info-item__title {
  width: 136px;
  font-size: 18px;
  line-height: 1.6;
  border-right: 1px solid #E1E1E1;
  padding: 35px 0;
  color: var(--black, #222);
  text-align: justify;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.08px;
}

@media screen and (max-width: 767px) {
  .company .info-item__title {
    font-size: 16px;
    border-right: none;
    padding: 0;
    width: 100%;
  }
}

.company .info-item__text {
  padding: 35px 0 35px 209px;
  width: calc(100% - 136px);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-align: justify;
  color: #333;
}

@media screen and (max-width: 767px) {
  .company .info-item__text {
    margin-top: 15px;
    padding: 0;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
  }
}

@media screen and (max-width: 767px) {
  .company .info-item:first-child {
    padding-top: 0;
  }
}

.company .info-item:first-child .info-item__title,
.company .info-item:first-child .info-item__text {
  padding-top: 15px;
}

@media screen and (max-width: 767px) {

  .company .info-item:first-child .info-item__title,
  .company .info-item:first-child .info-item__text {
    padding-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .company .info-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}

.company .info-item:last-child .info-item__title,
.company .info-item:last-child .info-item__text {
  padding-bottom: 15px;
}

@media screen and (max-width: 767px) {

  .company .info-item:last-child .info-item__title,
  .company .info-item:last-child .info-item__text {
    padding-bottom: 0;
  }
}

.voice {
  padding: 100px 0 80px;
}

.voice .container {
  max-width: 1040px;
}

.voice-list {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}

.voice-item {
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 0 36px 0 rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  padding: 24px 20px;
  gap: 16px;
}

.voice-item .voice-item__image {
  width: 80px;
  height: 63px;
  text-align: center;
  margin-bottom: 8px;
}

.voice-item .voice-item__name {
  border-radius: 8px;
  background: #EEEFEF;
  display: inline-block;
  color: var(--blue2, #094F92);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.75;
  padding: 0 16px;
  white-space: nowrap;
}

.voice-item .voice-item__text {
  color: var(--text, #111);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .voice {
    padding: 60px 0;
  }

  .voice-list {
    gap: 24px;
  }

  .voice-item {
    flex-direction: column;
    text-align: center;
  }

  .voice-item .voice-item__text {
    font-size: 14px;
    line-height: 1.75;
    text-align: justify;
  }
}

.marketing__container {
  max-width: 1040px;
}

.marketing .section-description {
  margin-top: 55px;
  color: var(--black, #222);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 2.20;
  letter-spacing: 0.32px;
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
}

.marketing .section-description .text-yellow {
  font-size: 45px;
  line-height: 43px;
}

.marketing .section-description sup {
  font-size: 14px;
  font-weight: 400;
}

.marketing .section-sub-text {
  margin-top: 27px;
  color: var(--black, #222);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%;
  /* 26.4px */
  letter-spacing: 0.24px;
}

.marketing .section-sub-text .br {
  display: none;
}

.marketing .partners {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 34px;
}

.marketing .partner {
  padding: 10px;
  background-color: #fff;
  height: 136px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.1);
}


@media screen and (min-width: 768px) and (max-width: 1279px) {
  .marketing .partners {
    grid-gap: 30px;
  }

  .marketing .partner {
    height: 122px;
  }
}

@media screen and (max-width: 767px) {
  .marketing .section-heading__ja {
    font-size: 22px;
    line-height: 1.60;
    letter-spacing: 0.44px;
  }

  .marketing .section-description {
    margin-top: 16px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.20;
    letter-spacing: 0.28px;
    text-align: justify;
  }

  .marketing .section-sub-text {
    text-align: left;
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }

  .marketing .partners {
    margin-top: 10px;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
  }

  .marketing .partner {
    height: 80px;
    border-radius: 10px;
    box-shadow: 0 8px 25px 0 rgba(200, 110, 112, 0.1);
  }

  .marketing .partner--01 img {
    width: 92px;
  }

  .marketing .partner--02 img {
    width: 141px;
  }

  .marketing .partner--03 img {
    width: 103px;
  }

  .marketing .partner--04 img {
    width: 94px;
  }

  .marketing .partner--05 img {
    width: 127px;
  }

  .marketing .partner--06 img {
    width: 136px;
  }

  .marketing .partner--07 img {
    width: 127px;
  }

  .marketing .partner--08 img {
    width: 113px;
  }
}

.footer {
  background: linear-gradient(90deg, #3384C6 0%, #4DA335 100%);
  padding: 60px 0;
}

.copy-right {
  text-align: center;
  color: var(--white, #FFF);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.60;
  letter-spacing: 0.96px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 0;
  }

  .copy-right {
    font-size: 14px;
  }
}

/* Hide empty elements */
img[src^='https://form.synergy-marketing.co.jp'] {
    position: absolute;
}