/*
Theme Name: agile
*/
@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP";
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

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

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.page-load-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #1e5a9f;
  z-index: 9999;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: -webkit-clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out, -webkit-clip-path 0.67s ease-out;
  pointer-events: none;
}
.page-load-background.is-revealed {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.header {
  height: 96px;
  position: fixed;
  z-index: 999;
  width: 100%;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.header.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.header__inner {
  color: #fff;
  padding: 48px;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 12px 24px;
  }
}

.logo {
  display: flex;
}

.logo__link {
  display: flex;
}

.header__logo {
  width: 20px;
  height: 20px;
}

.logo__text {
  color: #fff;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.nav {
  padding: 0 6px 0 12px;
  display: flex;
}

.nav-list {
  display: flex;
  color: #fff;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: 0.15em;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .nav-list {
    font-size: 16px;
  }
}

.nav-list a {
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
  position: relative;
}
@media screen and (max-width: 916px) {
  .hamburger {
    display: flex;
  }
}

.hamburger__line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  display: none;
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
  display: none;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  display: none;
}

@media screen and (max-width: 916px) {
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    padding: 0;
    transition: left 0.3s ease, width 0.3s ease, max-width 0.3s ease;
    z-index: 9;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  .nav.is-active {
    left: 0;
    width: 100%;
    max-width: none;
  }
  .nav-close {
    position: absolute;
    top: 32px;
    left: 90%;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .nav-close__line {
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #000;
    border-radius: 1px;
    transition: all 0.3s ease;
  }
  .nav-close__line:nth-child(1) {
    transform: rotate(45deg);
  }
  .nav-close__line:nth-child(2) {
    transform: rotate(-45deg);
  }
  .nav-list {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding: 60px 24px 24px;
    flex: 1;
  }
  .nav-list li {
    width: 100%;
  }
  .nav-list a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    color: #000;
    font-family: "Noto Sans JP";
    font-weight: 700;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    transition: opacity 0.3s;
  }
  .nav-list a:hover {
    opacity: 0.7;
  }
  .nav-footer {
    background-color: #f7f6f5;
    margin-bottom: 10%;
  }
  .nav-footer__privacy {
    display: block;
    padding: 36px 24px;
    color: #000;
    font-family: "Noto Sans JP";
    font-weight: 700;
    font-size: 16px;
    transition: opacity 0.3s;
  }
  .nav-footer__privacy:hover {
    opacity: 0.7;
  }
  .nav-footer__credit {
    background-color: #000;
    color: #fff;
    font-family: "Montserrat";
    font-weight: 600;
    font-size: 12px;
    padding: 12px 16px;
    text-align: center;
    border-radius: 4px;
    letter-spacing: 0.05em;
  }
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 8;
    transition: opacity 0.3s ease;
  }
  .nav-overlay.is-active {
    display: block;
  }
}
.hero {
  padding-top: 96px;
  position: relative;
  color: #fff;
  background-image: url(../images/Home-Minato.jpg);
  background-size: cover;
  background-position: center;
  height: 100vh;
  min-height: 940px;
  width: 100%;
  z-index: 1;
}

.hero-content {
  position: absolute;
  padding: 192px 48px 96px;
  max-width: 1280px;
  width: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .hero-content {
    padding: 96px 24px;
  }
}

.hero-title {
  margin-bottom: 96px;
}

.hero-title-main {
  display: flex;
  color: #fff;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 96px;
  line-height: 1.1;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
@media screen and (max-width: 768px) {
  .hero-title-main {
    font-size: 64px;
    letter-spacing: 0.05em;
  }
}
.hero-title-main.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-title-sub {
  color: #fff;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 72px;
  line-height: 1.1;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
@media screen and (max-width: 768px) {
  .hero-title-sub {
    font-size: 64px;
    letter-spacing: 0.05em;
  }
}
.hero-title-sub.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-mission {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.hero-mission.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mission-title {
  color: #fff;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .mission-title {
    font-size: 14px;
  }
}

.mission-subtitle {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 28px;
  line-height: 1.61;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .mission-subtitle {
    font-size: 18px;
  }
}

.hero-mission-text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 16px;
  line-height: 1.63;
  max-width: 727px;
  width: 100%;
  margin-bottom: 48px;
}

.button {
  background-color: #1e5a9f;
  color: #fff;
  padding: 12px 48px;
  border-radius: 10px;
  margin: 0 auto;
  display: block;
}

.contact-button {
  width: 200px;
  height: 50px;
  padding: 12px 20px;
  font-size: 12px;
  transition: background-color 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out;
  box-shadow: 20px 10px 15px rgba(0, 0, 0, 0.2);
}
.contact-button:hover {
  background-color: #000;
  box-shadow: 10px 5px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(4px);
}
.contact-button:hover .button__link {
  color: #fff;
}

.contact-button__cta {
  transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
  display: flex;
}

.button__link {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  transition: color 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .button__link {
    font-size: 12px;
  }
}

.hero__button {
  background-color: #1e5a9f;
  color: #fff;
  padding: 12px 48px;
  border-radius: 10px;
}

.button__cta a {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .button__cta a {
    font-size: 12px;
  }
}

.button__cta-black {
  color: #000;
}

.button__cta.button__cta-black {
  color: #000;
}

.button-white .button__cta.button__cta-black {
  color: #000;
}

.button__cta-black a {
  color: #000;
}

.company__image {
  position: relative;
  width: 100%;
  height: 40vh;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .company__image {
    height: auto;
  }
}

.company-image__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  overflow: hidden;
}

.company-image__background-left {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  background-color: #000000;
  transform-origin: left center;
  transition: width 0.33s ease-out;
}
.company-image__background.is-expanded .company-image__background-left {
  width: 50%;
}

.company-image__background-right {
  position: absolute;
  top: 0;
  right: 50%;
  width: 0;
  height: 100%;
  background-color: #000000;
  transform-origin: right center;
  transition: width 0.33s ease-out;
}
.company-image__background.is-expanded .company-image__background-right {
  width: 50%;
}

.company-image__items {
  display: flex;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .company-image__items {
    flex-direction: column;
  }
}

.our-solutions-image {
  width: 50%;
  height: 40vh;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .our-solutions-image {
    width: 100%;
    height: auto;
  }
}
.our-solutions-image.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.our-solutions {
  color: #fff;
  background-color: #1e5a9f;
}

.our-solutions_inner {
  padding: 192px 21%;
}
@media screen and (max-width: 768px) {
  .our-solutions_inner {
    padding: 96px 24px;
  }
}
.our-solutions_inner .section-title,
.our-solutions_inner .our-solutions-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.our-solutions_inner .section-title.is-visible,
.our-solutions_inner .our-solutions-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.our-solutions-content {
  margin-top: 96px;
}

.our-solutions-text {
  color: #fff;
  margin-bottom: 24px;
}

.service {
  color: #000;
  background-color: #f8f7f6;
}

.service__inner {
  padding: 192px 48px 96px;
}
@media screen and (max-width: 768px) {
  .service__inner {
    padding: 96px 24px;
  }
}

.service-list {
  margin-top: 151px;
}
@media screen and (max-width: 768px) {
  .service-list {
    margin-top: 48px;
  }
}

.service-item {
  display: flex;
  align-items: center;
  margin-bottom: 96px;
}
@media screen and (max-width: 768px) {
  .service-item {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .service-item:last-child {
    margin-bottom: 0;
  }
}

.service-item-reverse {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin-bottom: 96px;
}
@media screen and (max-width: 768px) {
  .service-item-reverse {
    flex-direction: column;
  }
}

.service-image-wrapper {
  position: relative;
  height: 520px;
  min-width: 60%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 40px 50px 30px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .service-image-wrapper {
    height: 240px;
    margin-bottom: 48px;
  }
}

.service-image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e5a9f;
  z-index: 2;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: -webkit-clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out, -webkit-clip-path 0.67s ease-out;
}
.service-image-background.is-revealed {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.service-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 768px) {
  .service-image {
    height: 240px;
  }
}

.service-item-wrapper {
  min-width: 40%;
  padding-left: 48px;
}
@media screen and (max-width: 768px) {
  .service-item-wrapper {
    padding-left: 0;
  }
}

.service-item-wrapper-reverse {
  min-width: 40%;
  padding-right: 48px;
}
@media screen and (max-width: 768px) {
  .service-item-wrapper-reverse {
    padding-right: 0;
  }
}

.service-title {
  color: #000;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 36px;
  line-height: 1.39;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
@media screen and (max-width: 768px) {
  .service-title {
    font-size: 24px;
  }
}
.service-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-description {
  color: #000;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
@media screen and (max-width: 768px) {
  .service-description {
    margin-bottom: 24px;
  }
}
.service-description.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-button {
  box-shadow: 20px 20px 30px 0px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.service-button.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-banner {
  position: relative;
  background-image: url(../images/Home-Minato.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(30, 90, 159, 0.5);
  z-index: 1;
}

.cta-banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 3;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: -webkit-clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out, -webkit-clip-path 0.67s ease-out;
}
.cta-banner-background.is-revealed {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.cta-banner__inner {
  padding: 65px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .cta-banner__inner {
    padding: 48px 24px;
  }
}

.cta-banner-topic {
  margin-bottom: 51px;
}
@media screen and (max-width: 768px) {
  .cta-banner-topic {
    margin-bottom: 75px;
  }
}

.cta-title {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 32px;
  line-height: 1.59;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .cta-title {
    font-size: 20px;
  }
}

.cta-subtitle {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cta-subtitle {
    font-family: "Noto Sans JP";
    font-weight: 400;
    font-size: 14px;
    line-height: 1.63;
    letter-spacing: 0.05em;
  }
}

.button-white {
  background-color: #fff;
}

.news {
  position: relative;
  background-color: #000;
  transition: background-color 0.5s ease-out;
}
.news.is-revealed {
  background-color: #f8f7f6;
}

.news-background {
  display: none;
}

.news__inner {
  padding: 192px 48px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .news__inner {
    padding: 96px 24px;
  }
}

.section-header {
  display: flex;
  align-items: last baseline;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-header a {
  color: #000;
}

.section-topic-right {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .section-topic-right {
    font-size: 12px;
  }
}

.news-list {
  display: flex;
  background-color: #f8f7f6;
}

.news-list__inner {
  width: 100%;
  padding: 96px 48px;
}
@media screen and (max-width: 768px) {
  .news-list__inner {
    padding: 48px 24px;
  }
}

.news-item {
  width: 358px;
  padding: 24px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
}

.news-image-wrapper {
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
}

.news-image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 3;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: -webkit-clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out, -webkit-clip-path 0.67s ease-out;
}
.news-image-background.is-revealed {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.news-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.news-category {
  color: #fff;
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 12px;
  padding: 6px 12px;
  background-color: #000;
  display: inline-block;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
@media screen and (max-width: 768px) {
  .news-category {
    font-size: 14px;
  }
}
.news-category.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.news-title {
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 16px;
  line-height: 1.63;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
@media screen and (max-width: 768px) {
  .news-title {
    font-size: 14px;
  }
}
.news-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.news-list-title {
  color: #1e5a9f;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 36px;
  line-height: 1.39;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 96px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.news-list-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .news-list-title {
    font-size: 24px;
  }
}

.news-date {
  color: #aaaaaa;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.news-date.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.careers {
  background-color: #f8f7f6;
  padding: 0 48px 192px;
}
@media screen and (max-width: 768px) {
  .careers {
    padding: 0 48px 96px;
  }
}

.careers__wrapper {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .careers__wrapper {
    flex-direction: column-reverse;
  }
}

.careers-content {
  min-width: 40%;
  padding-right: 48px;
}
@media screen and (max-width: 916px) {
  .careers-content {
    padding-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .careers-content {
    padding-right: 0;
  }
}

.careers-content-text {
  color: #000;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.careers-content-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.careers-button {
  margin-top: 48px;
  background-color: #1e5a9f;
  color: #fff;
  padding: 12px 48px;
  border-radius: 10px;
  box-shadow: 20px 20px 30px 0px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.careers-button.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.careers-image-wrapper {
  position: relative;
  min-width: 60%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 40px 50px 30px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .careers-image-wrapper {
    margin-bottom: 48px;
  }
}

.careers-image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 3;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: -webkit-clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out, -webkit-clip-path 0.67s ease-out;
}
.careers-image-background.is-revealed {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.careers-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.footer {
  background-color: #1e5a9f;
}

.footer__inner {
  padding: 96px 48px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 96px 24px;
  }
}

.footer__cta {
  margin-bottom: 96px;
  display: flex;
  gap: 2%;
}
@media screen and (max-width: 916px) {
  .footer__cta {
    flex-direction: column;
    gap: 48px;
  }
}

.footer__cta-item {
  background-color: #fff;
  padding: 48px;
  border-radius: 10px;
  width: 49%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 916px) {
  .footer__cta-item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer__cta-item {
    padding: 24px;
    height: 153px;
  }
}
.footer__cta-item > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.footer__cta-title {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .footer__cta-title {
    font-size: 28px;
    padding-bottom: 12px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

.blue-heading {
  color: #1e5a9f;
}

.footer__cta-subtitle {
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.38;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .footer__cta-subtitle {
    font-size: 12px;
  }
}

.footer__cta-arrow {
  font-size: 32px;
  color: #000;
  transition: transform 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .footer__cta-arrow {
    font-size: 16px;
  }
}

.footer__cta-item:hover .footer__cta-arrow {
  transform: translateX(20px);
}

.footer__cta-item > a .footer__cta-arrow,
.footer__cta-item > a:visited .footer__cta-arrow,
.footer__cta-item > a:hover .footer__cta-arrow,
.footer__cta-item > a:active .footer__cta-arrow {
  color: #000;
}

.footer__cta-tag {
  background-color: #1e5a9f;
  border-radius: 4px;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 12px 6px;
}
@media screen and (max-width: 768px) {
  .footer__cta-tag {
    font-size: 10px;
  }
}

.footer-bottom {
  width: 100%;
  display: block;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}
@media screen and (max-width: 916px) {
  .footer-bottom-content {
    flex-direction: column;
    align-items: left;
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .footer-bottom-content {
    text-align: center;
    gap: 0;
  }
}

.footer-logo {
  color: #fff;
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .footer-logo {
    margin-bottom: 48px;
  }
}

.footer-nav {
  padding: 0 6px 0 12px;
}
@media screen and (max-width: 768px) {
  .footer-nav {
    padding: 0;
  }
}

.footer-nav-list {
  display: flex;
  color: #fff;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: 0.15em;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .footer-nav-list {
    flex-direction: column;
  }
}

.footer-nav-list a {
  color: #fff;
}

.footer-bottom-links {
  text-align: center;
  margin-bottom: 24px;
}

.footer-bottom-links a {
  color: #fff;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 12px;
  line-height: 1.42;
}

.footer-copyright {
  color: #fff;
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 10px;
  line-height: 1.17;
  text-align: center;
}

.page-hero {
  height: 524px;
}
@media screen and (max-width: 768px) {
  .page-hero {
    height: 272px;
  }
}

.page-hero-content {
  position: relative;
  height: inherit;
}
.page-hero-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.page-hero-content-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-hero-content-img-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e5a9f;
  z-index: 2;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: -webkit-clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out, -webkit-clip-path 0.67s ease-out;
}
.page-hero-content-img-background.is-revealed {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.page-hero-content-img {
  top: 0;
  left: 0;
  position: absolute;
  height: inherit;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.page-hero-title {
  position: absolute;
  top: 192px;
  left: 48px;
  z-index: 6;
  color: #fff;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 72px;
  line-height: 1.61;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.page-hero-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .page-hero-title {
    top: 96px;
    left: 24px;
    font-size: 40px;
  }
}

.page-hero-title-privacy-policy {
  position: absolute;
  top: 192px;
  left: 48px;
  z-index: 6;
  color: #fff;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 72px;
  line-height: 1.61;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .page-hero-title-privacy-policy {
    top: 96px;
    left: 24px;
    font-size: 40px;
  }
}

.page-hero-subtitle {
  position: absolute;
  top: 296px;
  left: 48px;
  z-index: 6;
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 28px;
  line-height: 1.61;
  opacity: 0;
  transition: opacity 1.5s ease-out;
}
.page-hero-subtitle.is-visible {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .page-hero-subtitle {
    font-size: 18px;
    top: 160px;
    left: 24px;
  }
}

.page-hero-subtitle-privacy-policy {
  position: absolute;
  top: 296px;
  left: 48px;
  z-index: 6;
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 28px;
  line-height: 1.61;
}
@media screen and (max-width: 768px) {
  .page-hero-subtitle-privacy-policy {
    font-size: 18px;
    left: 24px;
    top: 160px;
  }
}
@media screen and (max-width: 420px) {
  .page-hero-subtitle-privacy-policy {
    top: 220px;
  }
}

.mission {
  background-color: #f8f7f6;
}

.mission__inner {
  padding: 96px 48px;
}
@media screen and (max-width: 768px) {
  .mission__inner {
    padding: 48px 24px;
  }
}
.mission__inner .section-title-child {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.mission__inner .section-title-child.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mission-image {
  display: flex;
  justify-content: center;
}

.mission-image-wrapper {
  position: relative;
  max-width: 896px;
  width: 100%;
  height: auto;
  min-height: 520px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 40px 50px 30px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 96px;
  margin-top: 48px;
}
@media screen and (max-width: 916px) {
  .mission-image-wrapper {
    margin-top: 24px;
  }
}
@media screen and (max-width: 768px) {
  .mission-image-wrapper {
    min-height: 240px;
    margin-bottom: 48px;
  }
}

.mission-image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e5a9f;
  z-index: 2;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: -webkit-clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out, -webkit-clip-path 0.67s ease-out;
}
.mission-image-background.is-revealed {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.mission-image__img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .mission-image__img {
    height: auto;
  }
}

.mission-text {
  color: #fff;
  margin-bottom: 48px;
  margin: 0 auto;
  max-width: 640px;
  width: 100%;
  letter-spacing: 0.05em;
}

.mission-text__paragraph:first-child {
  margin-bottom: 24px;
}

.mission-text__paragraph {
  color: #000;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.mission-text__paragraph.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.message {
  background-color: #f8f7f6;
}

.message__inner {
  padding: 96px 48px;
}
@media screen and (max-width: 768px) {
  .message__inner {
    padding: 48px 24px;
  }
}
.message__inner .section-title-child {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.message__inner .section-title-child.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.message-content {
  display: flex;
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
  height: 453px;
  gap: 64px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .message-content {
    gap: 30px;
    height: 100%;
  }
}

.message-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.message-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .message-text {
    width: 65%;
  }
}

.message-text__paragraph {
  max-width: 713px;
  width: 100%;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.profile-image {
  border-radius: 24px;
  width: 234px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.profile-image.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .profile-image {
    height: 100%;
  }
}

.message-profile__info {
  margin-top: 5px;
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .message-profile__info {
    margin-left: 20%;
  }
}

.values {
  background-color: #f8f7f6;
}

.values__inner {
  padding: 96px 48px;
}
@media screen and (max-width: 768px) {
  .values__inner {
    padding: 0 24px 48px;
  }
}
.values__inner .section-title-child {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.values__inner .section-title-child.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.values-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 916px) {
  .values-grid {
    margin-top: 24px;
  }
}
@media screen and (max-width: 768px) {
  .values-grid {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}

.values-item {
  padding: 48px;
  margin: 0 24px 48px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 30px 40px 30px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .values-item {
    margin: 0;
    padding: 24px;
  }
}

.values-item__title {
  color: #1e5a9f;
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .values-item__title {
    font-size: 28px;
  }
}

.values-item__subtitle {
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 18px;
  line-height: 1.39;
}
@media screen and (max-width: 768px) {
  .values-item__subtitle {
    font-size: 12px;
    margin-top: 12px;
    margin-bottom: 24px;
  }
}

.values-item__description {
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 16px;
  line-height: 1.38;
}

.about {
  background-color: #f8f7f6;
}

.about__inner {
  padding: 96px 48px 192px;
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .about__inner {
    padding: 48px 24px;
  }
}
.about__inner .section-title-child {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.about__inner .section-title-child.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about__content {
  display: flex;
}
@media screen and (max-width: 768px) {
  .about__content {
    flex-direction: column;
  }
}

.about-info {
  max-width: 423px;
  width: 100%;
}

.about-info__item {
  display: flex;
  margin-bottom: 16px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.about-info__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-info__item span {
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 16px;
  line-height: 1.63;
}
@media screen and (max-width: 768px) {
  .about-info__item span {
    font-size: 14px;
  }
}

.about-info__label {
  min-width: 80px;
  flex-shrink: 0;
}

.about-info__value {
  flex: 1;
}

.about-info__value-line {
  border-bottom: 1px solid #000;
}

.about-info__value-line a {
  color: #000;
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-image__img-logo {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.about-image-logo-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  margin-top: 23px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 40px 50px 30px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .about-image-logo-wrapper {
    height: 240px;
  }
}

.about-image-logo-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e5a9f;
  z-index: 2;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: -webkit-clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out, -webkit-clip-path 0.67s ease-out;
}
.about-image-logo-background.is-revealed {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.about-image__img-map {
  width: 100%;
  height: 166px;
  border-radius: 10px;
  box-shadow: 40px 50px 30px 0px rgba(0, 0, 0, 0.1);
}

.news-breadcrumb {
  background-color: #f8f7f6;
}

.news-breadcrumb-white {
  background-color: white;
}

.news-breadcrumb__text {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 12px;
  line-height: 1.42;
  padding: 24px 48px;
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .news-breadcrumb__text {
    padding: 24px;
  }
}

.news-breadcrumb__text a {
  color: #aaaaaa;
}

.news-breadcrumb__text-blue a {
  color: #1e5a9f;
}

.about-info__item {
  display: flex;
  margin-bottom: 16px;
  align-items: flex-start;
}

.about-info__label {
  min-width: 80px;
  margin-right: 12px;
  flex-shrink: 0;
}

.about-info__value {
  flex: 1;
}

.about-image__img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  box-shadow: 40px 50px 30px 0px rgba(0, 0, 0, 0.1);
}

.service-detail {
  background-color: #f8f7f6;
}

.service-detail__inner {
  padding: 96px 48px;
}
@media screen and (max-width: 768px) {
  .service-detail__inner {
    padding: 48px 24px;
  }
}

.service-detail__title {
  color: #1e5a9f;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 48px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.service-detail__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .service-detail__title {
    font-size: 24px;
  }
}

.service-detail__subtitle {
  text-align: center;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 16px;
  line-height: 1.63;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .service-detail__subtitle {
    font-size: 14px;
  }
}
.service-detail__subtitle.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-detail__content {
  display: flex;
  flex-direction: column;
  gap: 96px;
}
@media screen and (max-width: 768px) {
  .service-detail__content {
    gap: 72px;
  }
}

.service-detail__block-reverse {
  display: flex;
  flex-direction: reverse;
  justify-content: space-between;
}
@media screen and (max-width: 916px) {
  .service-detail__block-reverse {
    flex-direction: column-reverse;
  }
}

.service-detail__block {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 916px) {
  .service-detail__block {
    gap: 24px;
    flex-direction: column;
  }
}

@media screen and (max-width: 916px) {
  .service-detail__block__reverse {
    flex-direction: column-reverse;
  }
}

.service-detail__img-wrapper {
  position: relative;
  max-width: 300px;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .service-detail__img-wrapper {
    margin: 0;
    height: 200px;
  }
}

.service-detail__img-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e5a9f;
  z-index: 2;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: -webkit-clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out, -webkit-clip-path 0.67s ease-out;
}
.service-detail__img-background.is-revealed {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.service-detail__img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 10px;
}

.service-detail__img-wrapper-second {
  position: relative;
  max-width: 300px;
  width: 100%;
  height: 382px;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .service-detail__img-wrapper-second {
    margin: 0;
    height: 200px;
  }
}

.service-detail__img-background-second {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e5a9f;
  z-index: 2;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: -webkit-clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out, -webkit-clip-path 0.67s ease-out;
}
.service-detail__img-background-second.is-revealed {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.service-detail__img-second {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 10px;
}

.service-detail__text {
  max-width: 700px;
  width: 100%;
}

.service-detail__block-number {
  color: #1e5a9f;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.service-detail__block-number.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .service-detail__block-number {
    font-size: 16px;
  }
}

.service-detail__block-title {
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 24px;
  line-height: 1.42;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.service-detail__block-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .service-detail__block-title {
    font-size: 18px;
  }
}

.service-detail__block-text {
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.service-detail__block-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .service-detail__block-text:last-child {
    margin-bottom: 0;
  }
}

.service-detail-underline {
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.63;
  border-bottom: 1px solid #000;
  display: inline-block;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.service-detail-underline.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-detail__block-heading {
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.service-detail__block-heading.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.case-detail {
  background-color: #f8f7f6;
}

.case-detail__inner {
  padding: 96px 48px;
}
@media screen and (max-width: 768px) {
  .case-detail__inner {
    padding: 48px 24px 0;
  }
}

.case-intro__text {
  text-align: center;
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 28px;
  line-height: 1.61;
  margin-bottom: 86px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.case-intro__text.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .case-intro__text {
    font-size: 18px;
    text-align: left;
  }
}

.case__detail-image {
  margin: 0 auto;
  max-width: 631px;
  width: 100%;
  height: 158px;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .case__detail-image {
    height: 200px;
    margin-bottom: 24px;
  }
}

.case__detail-img-wrapper {
  position: relative;
  max-width: 631px;
  width: 100%;
  height: 158px;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .case__detail-img-wrapper {
    height: 200px;
  }
}

.case__detail-img-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e5a9f;
  z-index: 2;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: -webkit-clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out, -webkit-clip-path 0.67s ease-out;
}
.case__detail-img-background.is-revealed {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.case__detail-img {
  width: 100%;
  height: 158px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  display: block;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .case__detail-img {
    height: 200px;
  }
}

.detail__box__appear {
  margin-top: 48px;
  margin: 0 auto;
  max-width: 611px;
  width: 100%;
}

.case-detail__block-title {
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 24px;
  line-height: 1.42;
  text-align: center;
  margin-bottom: 53px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.case-detail__block-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .case-detail__block-title {
    font-size: 15px;
  }
}

.case-detail__block-sub-title {
  color: #1e5a9f;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 19px;
  line-height: 1.42;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.case-detail__block-sub-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .case-detail__block-sub-title {
    font-size: 18px;
    margin-bottom: 24px;
  }
}

.case-detail__block-text {
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.case-detail__block-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.news-articles {
  display: flex;
}
@media screen and (max-width: 768px) {
  .news-articles {
    flex-direction: column;
    gap: 24px;
  }
}

.news-article {
  width: 30%;
  background-color: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .news-article {
    width: 100%;
  }
}

.news-article__img-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 24px;
}

.news-article__img-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e5a9f;
  z-index: 2;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: -webkit-clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out, -webkit-clip-path 0.67s ease-out;
}
.news-article__img-background.is-revealed {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.news-article__img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.news-article__content {
  margin-bottom: 24px;
}

.news-article__category {
  background-color: #1e5a9f;
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  padding: 6px 12px 6px;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  position: relative;
  z-index: 1;
}
.news-article__category.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .news-article__category {
    font-size: 14px;
  }
}

.news-article__category-space {
  margin-right: 12px;
}

.news-article__title {
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 16px;
  line-height: 1.63;
  margin-top: 12px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.news-article__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .news-article__title {
    font-size: 14px;
  }
}

.news-article__date {
  color: #aaaaaa;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.news-article__date.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.post-article__date {
  color: #aaaaaa;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.43;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  position: relative;
  z-index: 1;
}
.post-article__date.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.post-detail {
  background-color: #f8f7f6;
}

.post-detail__inner {
  padding: 96px 48px;
}
@media screen and (max-width: 768px) {
  .post-detail__inner {
    padding: 48px 24px;
  }
}

.post-meta-wrapper {
  position: relative;
  width: 100%;
}

.post-meta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e5a9f;
  z-index: 2;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: -webkit-clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out, -webkit-clip-path 0.67s ease-out;
}
.post-meta-background.is-revealed {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.post-meta {
  padding: 0 48px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .post-meta {
    padding: 0;
  }
}

.post-detail__title {
  margin-bottom: 48px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  position: relative;
  z-index: 1;
}
.post-detail__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .post-detail__title {
    font-size: 20px;
  }
}

.detail__box {
  margin: 0 auto;
  padding: 96px;
  max-width: 1180px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 40px 50px 30px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 96px;
}
@media screen and (max-width: 768px) {
  .detail__box {
    padding: 48px 24px;
    margin: 0 0 48px 0;
  }
}

.post-detail__image {
  margin-bottom: 48px;
}

.content__wrapper {
  max-width: 740px;
  width: 100%;
  margin: 0 auto;
}

.content__heading {
  font-family: "Noto Sans JP";
  font-size: 28px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 24px;
}

.content__paragraph {
  margin-bottom: 24px;
}

.contact-section-title {
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 28px;
  line-height: 1.39;
  text-align: center;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.contact-section-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .contact-section-title {
    font-size: 16px;
  }
}

.contact-form {
  background-color: #f8f7f6;
}

.contact-form__inner {
  padding: 96px 48px;
}
@media screen and (max-width: 768px) {
  .contact-form__inner {
    padding: 48px 24px;
  }
}

.contact-form__instruction {
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.57;
  text-align: center;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.contact-form__instruction.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .contact-form__instruction {
    font-size: 12px;
    text-align: left;
  }
}

.contact-form__form {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}

.contact-form__field {
  margin-bottom: 32px;
}

.contact-form__label {
  color: #333333;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 16px;
  line-height: 1.38;
  display: block;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .contact-form__label {
    font-size: 14px;
  }
}

.contact-form__label-red {
  color: #f23a3d;
}

.contact-form__input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f8f8f8;
  font-family: "Noto Sans JP";
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
}
.contact-form__input::-moz-placeholder {
  color: #aaa;
}
.contact-form__input::placeholder {
  color: #aaa;
}
.contact-form__input:focus {
  outline: none;
  border-color: #1e5a9f;
  background-color: #fff;
}

.contact-form__textarea {
  width: 100%;
  height: 150px;
  padding: 16px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f8f8f8;
  font-family: "Noto Sans JP";
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  resize: vertical;
}
.contact-form__textarea::-moz-placeholder {
  color: #aaa;
}
.contact-form__textarea::placeholder {
  color: #aaa;
}
.contact-form__textarea:focus {
  outline: none;
  border-color: #1e5a9f;
  background-color: #fff;
}

.contact-form__checkbox {
  text-align: center;
  margin-bottom: 24px;
}

.contact-form__checkbox-label {
  color: #333333;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
}
@media screen and (max-width: 768px) {
  .contact-form__checkbox-label {
    font-size: 13px;
  }
}

.contact-form__checkbox-label::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 10px;
  border-radius: 1px;
  border: 1px solid #000;
  display: inline-block;
}

.recruit-intro {
  background-color: #f8f7f6;
  padding: 0 48px;
}
@media screen and (max-width: 768px) {
  .recruit-intro {
    padding: 0;
    padding-bottom: 48px;
  }
}

.recruit-intro__inner {
  padding: 96px 48px 48px;
}
@media screen and (max-width: 768px) {
  .recruit-intro__inner {
    padding: 48px 24px 0;
  }
}

.recruit-title {
  color: #000;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.recruit-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .recruit-title {
    font-size: 28px;
  }
}

.recruit-intro__content {
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.recruit-intro__content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.recruit-intro__text {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 18px;
  line-height: 1.63;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .recruit-intro__text {
    font-size: 14px;
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .recruit-intro__text:last-child {
    margin-bottom: 0;
  }
}

.detail__box-recruit {
  border-radius: 59px;
}
@media screen and (max-width: 768px) {
  .detail__box-recruit {
    margin: 0 24px;
  }
}

.recruit-section-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 120px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.recruit-section-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .recruit-section-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

.recruit-positions__inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.recruit-position {
  margin-bottom: 40px;
}

.recruit-position:last-child {
  margin-bottom: 0;
}

.recruit-position__number {
  color: #1e5a9f;
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.recruit-position__number.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .recruit-position__number {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

.recruit-position__title {
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.recruit-position__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .recruit-position__title {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

.recruit-position__description {
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.recruit-position__description.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.button-recruit {
  margin-top: 68px;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.2);
}

.privacy-policy__inner {
  padding: 96px 48px 78px;
}
@media screen and (max-width: 768px) {
  .privacy-policy__inner {
    padding: 48px 24px 0;
  }
}

.privacy__section-title-wrapper {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 48px;
}

.privacy__section-title-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e5a9f;
  z-index: 2;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: -webkit-clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out, -webkit-clip-path 0.67s ease-out;
}
.privacy__section-title-background.is-revealed {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.privacy__section-title {
  text-align: center;
  color: #000;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  position: relative;
  z-index: 1;
}
.privacy__section-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .privacy__section-title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}

.privacy-policy__company-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .privacy-policy__company-info {
    margin-left: 0;
    margin-bottom: 32px;
  }
}

.privacy-policy__company-name {
  text-align: right;
}

.privacy-policy__date {
  text-align: right;
}

.privacy-policy__content {
  background-color: #eeeeee;
  padding: 37px 37px 37px 37px;
}

.privacy-policy__section {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.63;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .privacy-policy__section {
    font-size: 14px;
  }
}

.privacy-policy__section-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .privacy-policy__section-title {
    font-size: 14px;
  }
}

.privacy-policy__text {
  margin: 0px 0px 20px 40px;
}

.privacy-policy__subsection {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.63;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .privacy-policy__subsection {
    font-size: 14px;
  }
}

.privacy-policy__space {
  margin: 0px 0px 20px 20px;
}

.privacy-policy__subsection-title {
  margin: 0px 0px 20px 20px;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.63;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .privacy-policy__subsection-title {
    font-size: 14px;
  }
}

.privacy-policy__subsubsection-title {
  margin: 0px 0px 20px 40px;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.63;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .privacy-policy__subsubsection-title {
    font-size: 14px;
  }
}

.privacy-policy__subsubsection-title-text {
  margin: 0px 0px 20px 60px;
}

.margin__rate-title-wrapper {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 48px;
}

.margin__rate-title-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e5a9f;
  z-index: 2;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: -webkit-clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out;
  transition: clip-path 0.67s ease-out, -webkit-clip-path 0.67s ease-out;
}
.margin__rate-title-background.is-revealed {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.margin__rate-title {
  text-align: center;
  color: #000;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  position: relative;
  z-index: 1;
}
.margin__rate-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .margin__rate-title {
    font-size: 28px;
    margin-bottom: 72px;
    text-align: left;
  }
}

.margin__rate__section-title {
  font-family: "Montserrat";
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .margin__rate__section-title {
    font-size: 14px;
  }
}

.margin__rate__subsection {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.63;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .margin__rate__subsection {
    font-size: 14px;
  }
}

.margin__rate__space {
  margin: 0px 0px 20px 18px;
}

.margin__rate__subsection-title {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.63;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .margin__rate__subsection-title {
    font-size: 14px;
  }
}

.text {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.63;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .text {
    font-size: 12px;
  }
}

.section-title {
  color: #fff;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 72px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

.section-title-child {
  color: #000;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 64px;
  line-height: 1;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .section-title-child {
    font-size: 28px;
  }
}

.mission-subtitle-child {
  text-align: center;
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 28px;
  line-height: 1.61;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.mission-subtitle-child.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .mission-subtitle-child {
    font-size: 18px;
    text-align: center;
    margin-bottom: 24px;
  }
}

.service__mission-subtitle-child {
  margin-bottom: 80px;
}

.mission-subtitle-child-left {
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 28px;
  line-height: 1.61;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.mission-subtitle-child-left.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .mission-subtitle-child-left {
    font-size: 18px;
  }
}

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

.section-title-white {
  color: #fff;
}

.section-title-left {
  color: #000;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 64px;
  line-height: 1.41;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
@media screen and (max-width: 768px) {
  .section-title-left {
    font-size: 28px;
  }
}
.section-title-left.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sub-text {
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 300;
  font-size: 16px;
  line-height: 1.63;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .sub-text {
    font-size: 14px;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .md-left {
    text-align: left;
  }
}