@charset "UTF-8";
/**
 * Custom styles for the recruit theme
 * Based on the original static site styles
 *
 * @package recruit_theme
 * @since 1.4
 */

/* ==========================================================================
   Font Utility Classes
   ========================================================================== */
.mincho {
  font-family: "Zen Old Mincho", serif;
}
.jp {
  font-family: "Noto Sans JP", sans-serif;
}
.eng {
  font-family: "Manrope", sans-serif;
}

/* ==========================================================================
   Global Styles
   ========================================================================== */
body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  overflow-x: clip;
  color: #111d2e;
  font-weight: 500;
  background-color: #f5f5f5;
}

body::before {
  content: "";
  z-index: -1;
  background-image: url(../images/main-bg.png);
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-size: cover;
  background-position: center;
  left: 0;
  top: 0;
}

html {
  color: #3d3e41;
  font-family: "Noto Sans JP", serif;
}

a {
  cursor: pointer;
  opacity: 1;
  transition: 0.25s;
}

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

section {
  width: 100%;
}

/* ==========================================================================
   Width Utilities
   ========================================================================== */
.w-1200 {
  width: 100%;
  margin: auto;
  max-width: 1200px;
  padding-left: 0px;
  padding-right: 0px;
}

.w-1240 {
  width: 100%;
  margin: auto;
  padding-left: 0px;
  padding-right: 0px;
  max-width: 1240px;
}

.w-1400 {
  width: 100%;
  max-width: 1400px;
  padding-left: 0px;
  padding-right: 0px;
  margin: auto;
}

.w-1100 {
  width: 100%;
  max-width: 1100px;
  padding-left: 0px;
  padding-right: 0px;
  margin: auto;
}

/* ==========================================================================
   Header Styles
   ========================================================================== */
header.section-header {
  position: fixed;
  top: 32px;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding-left: 40px;
  padding-right: 40px;
}

header.section-header .section-header__inner__navi {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #fff;
  padding: 8px 8px 8px 30px;
  border-radius: 5px;
  box-shadow: 1px 1px 20px 0 rgba(4, 39, 69, 0.05);
}

.section-header__inner__logo {
  width: 297px;
  height: auto;
}

.section-header__inner__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

header.section-header .section-header__inner__navi ul {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 5px;
}

header.section-header a.section-header__inner__entry {
  background-color: #1261a5;
  color: #fff;
  padding: 12px;
  height: 48px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.section-header__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

/* ==========================================================================
   Hero Section (FV)
   ========================================================================== */
.section-top-fv__inner {
  position: relative;
  width: 100%;
}

.section-top-fv__inner h1 img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.bg-main {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.section-top-fv__inner h1 {
  position: absolute;
  right: 64px;
  width: 538px;
  height: auto;
  bottom: 20vw;
}

.section-top-fv__inner::before {
  content: "";
  width: 72px;
  height: 72px;
  background: url(../images/scroll.png);
  display: block;
  position: absolute;
  right: 24px;
  bottom: 18vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}

/* ==========================================================================
   Intro Section
   ========================================================================== */
.section-top-intro__text {
  padding-bottom: 120px;
  background-color: #ebf1f4;
  position: relative;
}

.section-top-intro__text::before {
  width: 100vw;
  height: 100vh;
  background-image: url(../images/bg-section.png);
  background-size: cover;
  background-position: bottom center;
  content: "";
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  transform: translateY(-100%);
}

.section-top-intro__text__inner__text-box {
  max-width: 660px;
  margin: auto;
  line-height: 2.2;
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 80px;
}

.section-top-intro__text__inner__text-box p {
  line-height: 2.2;
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 400;
}

/* ==========================================================================
   Entry Buttons
   ========================================================================== */
.top-intro__btn-area {
  max-width: 1030px;
  margin: 60px auto 0;
  width: 100%;
}

.top-intro__btn-area ul {
  display: flex;
  gap: 20px;
}

.top-intro__btn-area ul li {
  width: calc((100% - 20px) / 2);
}

.top-intro__btn-area ul li a {
  background-color: #1062a9;
  color: #fff;
  width: 100%;
  height: auto;
  display: block;
  padding: 8px 8px 8px 40px;
  border-radius: 5px;
}

.top-intro__btn-area ul li a > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

span.top-intro__btn-area-arrows {
  background: #fff;
  width: 43px;
  height: 100%;
  min-height: 74px;
  display: flex;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
}

span.top-intro__btn-area-arrows img {
  width: 13px;
  height: auto;
  object-fit: contain;
}

.top-intro__btn-area-title span.eng {
  display: block;
  margin-bottom: 3px;
}

.top-intro__btn-area-title h4 {
  font-size: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.top-intro__btn-area-title h4 span {
  font-size: 14px;
}

/* ==========================================================================
   Interview Section
   ========================================================================== */
.section-interview__inner {
  border-radius: 10px;
  background-color: #fff;
  padding: 80px 60px;
}

.section-interview__ttl {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 80px;
}

.section-interview__ttl h2 {
  font-size: 100px;
  color: #1062a93d;
}

.section-interview__ttl div h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.8;
}

.section-interview__ttl div p {
  line-height: 1.8;
}

ul.interview-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}

ul.interview-list li {
  width: calc((100% - 40px) / 3);
}

ul.interview-list li img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: 0.25s;
  z-index: 0;
  position: relative;
}

ul.interview-list li a {
  position: relative;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 1 !important;
}

ul.interview-list li a div {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

ul.interview-list li a div::before {
  transition: 0.25s;
  opacity: 0;
  z-index: 1;
  position: absolute;
  background-color: #1062a986;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
}

ul.interview-list li a div::after {
  z-index: 2;
  position: absolute;
  background-image: url(../images/share-01.png);
  right: 28px;
  bottom: 14px;
  width: 18px;
  height: 18px;
  content: "";
  background-size: contain;
}

ul.interview-list li:hover a div::before {
  transition: 0.25s;
  opacity: 1;
  z-index: 1;
  position: absolute;
  background-color: #1062a986;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
}

ul.interview-list li a .interview-ttl {
  position: absolute;
  z-index: 2;
  gap: 6px;
  display: flex;
  left: 20px;
  top: 20px;
  color: #fff;
}

ul.interview-list li a .interview-ttl span:first-of-type {
  font-size: 20px;
}

ul.interview-list li a .interview-ttl span:last-of-type {
  font-size: 50px;
  line-height: 1;
}

h3.interview-name {
  position: absolute;
  top: 80px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

h3.interview-name span:first-of-type {
  font-size: 14px;
  padding: 5px 7px;
  background-color: #1062a9;
  color: #fff;
  border-radius: 2px;
}

h3.interview-name span:last-of-type {
  font-size: 18px;
  padding: 5px 9px;
  background-color: #1062a9;
  color: #fff;
  border-radius: 2px;
  width: max-content;
}

ul.interview-list li a p {
  line-height: 1.8;
  font-size: 18px;
}

.interview-share-all {
  font-size: 14px;
  padding: 5px 20px;
  border-radius: 100000px;
  background-color: #ebf1f4;
  color: #1062a9;
  gap: 8px;
  display: flex;
  align-items: center;
  width: max-content;
  margin: auto;
  line-height: 1.8;
}

.interview-share-all span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.interview-share-all img {
  width: 14px;
  height: 14px;
}

.section-interview {
  padding-bottom: 80px;
  position: relative;
}

.section-interview::before {
  position: absolute;
  width: 100%;
  height: calc(100% - 180px);
  top: 0;
  left: 0;
  background-color: #ebf1f4;
  display: block;
  content: "";
  z-index: -1;
}

.section-interview::after {
  width: 100vw;
  height: 100vh;
  background-image: url(../images/bg-section.png);
  background-size: cover;
  background-position: bottom center;
  content: "";
  display: block;
  z-index: -1;
  position: absolute;
  bottom: 180px;
  transform: translateY(100%) scale(-1, -1);
}

/* ==========================================================================
   Data Banner Section
   ========================================================================== */
.section-data-bannar__inner {
  max-width: 820px;
  margin: auto;
  padding-bottom: 80px;
}

.section-data-bannar__inner img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ==========================================================================
   Project Section
   ========================================================================== */
.section-top-project__inner.w-1240 {
  background: rgb(16 98 169 / 10%);
  padding: 60px 100px 50px;
  border-radius: 10px;
}

.section-top-project__inner.w-1240 .interview-share-all {
  background-color: #fff;
}

.section-top-project__inner.w-1240 > ul > li {
  border-bottom: 1px solid #1062a9;
}

.section-top-project__inner.w-1240 > ul li > a {
  display: flex;
  align-items: center;
  transition: 0.25s;
  border-radius: 5px;
  opacity: 1 !important;
}

.section-top-project__inner.w-1240 > ul li > a:hover {
  background: #fff;
  transition: 0.25s;
}

.section-top-project__inner.w-1240 > ul li > a .eng {
  font-size: 50px;
  width: 160px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1062a9;
  position: relative;
}

.section-top-project__inner.w-1240 > ul li > a .project-ttl::before {
  width: 1px;
  height: calc(100% - 22px);
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  background-color: #1062a9;
  transform: translateY(-50%);
}

.project-ttl {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 27px;
  padding-right: 110px;
  position: relative;
  width: 100%;
}

.project-ttl::after {
  z-index: 2;
  position: absolute;
  background-image: url(../images/share-02.png);
  right: 20px;
  bottom: 20px;
  width: 18px;
  height: 18px;
  content: "";
  background-size: contain;
}

.project-ttl h3 {
  line-height: 1.8;
}

.project-ttl ul li {
  color: #798688;
  line-height: 1.8;
}

.section-top-project__inner.w-1240 > ul {
  margin-bottom: 40px;
}

.section-top-project__inner h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  margin-bottom: 40px;
  font-weight: 700;
}

.section-top-project__inner h2 span {
  font-size: 18px;
  color: #1062a9;
  font-weight: 600;
}

/* ==========================================================================
   Work Section
   ========================================================================== */
section.section-top-work {
  padding-top: 120px;
  padding-bottom: 80px;
}

ul.section-top-work-list {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

ul.section-top-work-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc((100% - 24px) / 2);
}

.section-top-work__images {
  width: 270px;
  height: 150px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.section-top-work__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-top-work__images .top--works-btn-area-arrows {
  right: 0;
  width: 44px;
  height: 100%;
  top: 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.section-top-work__images .top--works-btn-area-arrows img {
  width: 13px;
  height: auto;
  object-fit: contain;
}

ul.section-top-work-list li a {
  background-color: #ebf1f4;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 10px 10px 34px;
  justify-content: space-between;
  border-radius: 10px;
  transition: 0.25s;
}

ul.section-top-work-list li a:hover {
  background-color: #1062a9;
  transition: 0.25s;
  opacity: 1;
}

ul.section-top-work-list li a:hover .section-top-work__text span.eng,
ul.section-top-work-list li a:hover .section-top-work__text h2 {
  color: #fff;
  transition: 0.25s;
}

.section-top-work__text span {
  font-size: 18px;
  display: block;
}

.section-top-work__text span.eng {
  font-size: 16px;
  color: #1062a9;
  margin-bottom: 4px;
}

/* ==========================================================================
   Flow Section
   ========================================================================== */
.section-top-flow {
  background-color: #ecefef;
  padding: 120px 0 90px;
}

.flow-list {
  max-width: 820px;
  width: 100%;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

.flow-list::before {
  width: 5px;
  height: 100%;
  background-color: #d3dee6;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  content: "";
  display: block;
}

.flow-list > li {
  width: 100%;
  background-color: #fff;
  padding: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  position: relative;
}

.flow-list > li span.eng {
  font-size: 50px;
  color: #1062a9;
}

.flow-list > li > img {
  width: 108px;
  height: auto;
  object-fit: contain;
  margin-left: 14px;
  margin-right: 20px;
}

.flow-list > li div h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.flow-list > li div ul {
  display: flex;
  align-items: center;
  gap: 14px;
}

.flow-list > li div ul li {
  font-size: 14px;
  padding: 5px 20px;
  border-radius: 100000px;
  background-color: #ebf1f4;
  color: #1062a9;
  gap: 8px;
  display: flex;
  align-items: center;
  width: max-content;
  margin: auto;
  line-height: 1.8;
}

.flow-list > li div ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flow-list > li div ul li img {
  width: 14px;
  height: 14px;
}

.top--flow-btn-area-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top--flow-btn-area-arrows img {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   Entry Section
   ========================================================================== */
.section-entry__inner ul {
  display: flex;
  gap: 20px;
}

.section-entry__inner li {
  width: calc((100% - 20px) / 2);
}

.section-entry__inner li a {
  background-color: #fff;
  width: 100%;
  height: auto;
  display: block;
  padding: 8px 8px 8px 40px;
  border-radius: 5px;
}

.section-entry__inner li a > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-entry__inner span.top-intro__btn-area-arrows {
  background: #ebf1f4;
  width: 43px;
  height: 100%;
  min-height: 74px;
  display: flex;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
}

.section-entry__inner span.top-intro__btn-area-arrows img {
  width: 13px;
  height: auto;
  object-fit: contain;
}

.section-entry__inner .top-intro__btn-area-title span.eng {
  display: block;
  margin-bottom: 3px;
  color: #1062a9;
}

.section-entry__inner .top-intro__btn-area-title h4 {
  font-size: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.section-entry__inner .top-intro__btn-area-title h4 span {
  font-size: 14px;
}

.section-entry {
  background: #1062a9;
  padding: 60px;
  padding-bottom: 80px;
}

.section-entry h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.8;
  font-size: 18px;
}

.section-entry h2 span {
  line-height: 1;
}

/* ==========================================================================
   Event Section
   ========================================================================== */
.section-event {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ecefef;
}

.section-event ul {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: auto;
  justify-content: center;
}

.section-event ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 1000px;
  padding: 18px 18px 18px 32px;
  color: #1062a9;
  gap: 24px;
}

.section-event p {
  text-align: center;
  margin-bottom: 46px;
  font-weight: 400;
}

.section-event h2 {
  text-align: center;
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.8;
  color: #111d2e;
  font-size: 18px;
}

.section-event h2 span {
  line-height: 1;
  color: #1062a9;
}

.section-event ul li:first-of-type img {
  width: 24px;
  height: 24px;
}

.section-event ul li:last-of-type img {
  width: 17px;
  height: 17px;
}

/* ==========================================================================
   Page Header
   ========================================================================== */
.page-head {
  padding-top: 220px;
  position: relative;
}

.page-head::before {
  height: 230px;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ebf1f4;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}

.page-head::after {
  width: 100vw;
  height: 100vh;
  background-image: url(../images/bg-section.png);
  background-size: cover;
  background-position: bottom center;
  content: "";
  display: block;
  z-index: -1;
  position: absolute;
  bottom: 230px;
}

.page-head_ttl {
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.page-head_ttl p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 500px;
}

.page-head h2 {
  color: #1062a9;
}

.page-head h2 .eng {
  font-size: 100px;
  display: block;
  margin-bottom: 15px;
}

.page-head h2 span:last-of-type {
  font-size: 20px;
  display: block;
  letter-spacing: 0.2rem;
}

.img-main-head {
  width: 100%;
  height: 400px;
  margin-top: 32px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}

/* ==========================================================================
   Main Title
   ========================================================================== */
.main-ttl {
  margin-bottom: 40px;
}

.main-ttl .eng {
  font-size: 40px;
  display: block;
  color: #1062a9;
  font-weight: 700;
}

.main-ttl span:last-of-type {
  font-size: 20px;
  display: block;
  line-height: 1.8;
  letter-spacing: 0.2rem;
}

/* ==========================================================================
   Company/Business Section (Data Page)
   ========================================================================== */
.section-company__inner.w-1240 ul,
.section-business__inner ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 20px;
}

.section-company__inner.w-1240 ul li,
.section-business__inner.w-1240 ul li {
  width: calc((100% - 40px) / 3);
}

.section-company__inner.w-1240 ul li img,
.section-business__inner.w-1240 ul li img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.section-company {
  padding-top: 150px;
}

.section-company,
.section-business {
  padding-bottom: 120px;
  background-color: #ebf1f4;
}

.section-company__inner.w-1240 ul::before {
  content: "※2025年時点";
  position: absolute;
  right: 0;
  bottom: -10px;
  transform: translateY(100%);
  font-size: 14px;
}

.section-company__inner.w-1240 ul {
  position: relative;
}

/* Infographic grid alias */
ul.infographic-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 20px;
}

ul.infographic-grid li {
  width: calc((100% - 40px) / 3);
}

ul.infographic-grid li img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
section.breadcumb__list {
  padding-top: 40px;
  padding-bottom: 30px;
}

section.breadcumb__list ul {
  display: flex;
  justify-content: end;
  gap: 14px;
  font-size: 14px;
}

section.breadcumb__list ul li:first-of-type a {
  color: #798688;
}

section.breadcumb__list ul li {
  transition: 0.25s;
}

section.breadcumb__list ul li:hover a {
  color: #1062a9;
  transition: 0.25s;
}

/* ==========================================================================
   System Section (Benefits Page)
   ========================================================================== */
.section-system__inner.w-1240 > p {
  margin-bottom: 60px;
}

section.section-system {
  padding-top: 120px;
  background-color: #ebf1f4;
}

.section-system__inner ul {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.section-system__inner ul li {
  width: calc((100% - 20px) / 2);
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}

.section-system {
  position: relative;
}

.section-system::after {
  width: 100vw;
  height: 100vh;
  background-image: url(../images/bg-section.png);
  background-size: cover;
  background-position: bottom center;
  content: "";
  display: block;
  z-index: -1;
  position: absolute;
  bottom: 0px;
  transform: translateY(100%) scale(-1);
}

.section-system__inner ul li img {
  width: 100%;
}

.system-img {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.system-img img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center;
}

.system-text {
  padding: 24px 24px 32px;
}

.system-text h2 {
  line-height: 2.2;
  font-size: 20px;
  color: #1062a9;
}

.system-text p {
  line-height: 1.8;
  font-size: 16px;
  font-weight: 400;
}

/* ==========================================================================
   Supports Section (Benefits Page)
   ========================================================================== */
section.section-supports {
  padding-top: 120px;
}

.section-supports__inner > p {
  margin-bottom: 60px;
}

.section-supports__inner > h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.8;
}

.section-supports__inner > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.section-supports__inner > ul > li {
  background-color: #fff;
  width: calc((100% - 60px) / 4);
  border-radius: 10px;
  overflow: hidden;
}

.section-supports__inner > ul > li img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
}

.supports-text {
  padding: 12px 20px 20px;
}

.supports-text h2 {
  line-height: 2.2;
  font-weight: 700;
  color: #1062a9;
}

.supports-text p {
  line-height: 1.8;
  font-size: 14px;
}

.breadcumb__list.bread-benefit {
  /* background removed */
}

.captopn-benefit {
  font-size: 20px;
  text-align: center;
  color: #1062a9;
  line-height: 2.2;
  margin-top: 60px;
}

.benefit-ttl-sub {
  margin-top: 60px;
}

/* Alias for supports-list class */
ul.supports-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

ul.supports-list > li {
  background-color: #fff;
  width: calc((100% - 60px) / 4);
  border-radius: 10px;
  overflow: hidden;
}

ul.supports-list > li .supports-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
}

/* ==========================================================================
   Environment Section
   ========================================================================== */
.section-environment-intro {
  background-color: #ebf1f4;
  padding-top: 80px;
  padding-bottom: 120px;
}

.section-environment-intro h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 2.2;
  margin-bottom: 16px;
}

.section-environment-intro p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
}

ul.workplace {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
}

ul.workplace li {
  padding: 30px;
  width: calc((100% - 20px) / 2);
  background-color: #fff;
  border-radius: 10px;
}

ul.workplace li h3 {
  font-size: 18px;
  line-height: 2.2;
  margin-bottom: 5px;
  color: #1062a9;
  font-weight: 700;
}

ul.workplace li p {
  font-size: 14px;
  line-height: 1.8;
}

.section-workplace {
  padding-bottom: 160px;
  position: relative;
}

.section-workplace::before {
  background-color: #ebf1f4;
  width: 100%;
  height: calc(100% - 500px);
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  position: absolute;
}

.section-workplace::after {
  width: 100vw;
  height: 100vh;
  background-image: url(../images/bg-section.png);
  background-size: cover;
  background-position: bottom center;
  content: "";
  display: block;
  z-index: -1;
  position: absolute;
  bottom: -458px;
  transform: scale(-1);
}

.main-ttl.office {
  margin-top: 120px;
}

ul.office {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
}

ul.office li {
  width: calc((100% - 20px) / 2);
}

ul.office li img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.bread-environment {
  background-color: transparent !important;
}

/* ==========================================================================
   Privacy Page
   ========================================================================== */
section.section-privacy-fv.page-head {
  padding-bottom: 160px;
}

section.section-privacy-fv.page-head::before {
  display: none;
}

section.section-privacy-fv.page-head::after {
  bottom: 0;
}

section.section-privacy {
  background-color: #ebf1f4;
  line-height: 1.8;
  padding-bottom: 200px;
}

section.section-privacy h2 {
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 120px;
}

section.section-privacy h2:first-of-type {
  margin-top: 0;
}

section.section-privacy p {
  margin-bottom: 30px;
  line-height: 1.8;
  font-weight: 400;
}

section.section-privacy p:last-of-type {
  margin-bottom: 0;
}

section.section-privacy ul {
  margin-bottom: 30px;
  padding-left: 18px;
}

section.section-privacy ul li {
  line-height: 1.8;
  font-weight: 400;
}

section.section-privacy h3 {
  color: #1261a5;
  font-weight: 700;
  margin-bottom: 16px;
}

section.section-privacy h4 {
  margin-bottom: 18px;
  font-weight: 400;
}

section.section-privacy .wrap-text {
  padding-left: 20px;
  margin-bottom: 30px;
}

.no-m {
  margin-bottom: 0 !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer.footer {
  background: #053262;
  color: #fff;
  padding-top: 60px;
}

.footer__inner.w-1400 {
  display: flex;
  justify-content: space-between;
  padding-bottom: 100px;
}

.footer-logo {
  width: 260px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

ul.navi-list {
  width: auto;
  max-width: calc(100% - 260px);
  gap: 60px;
  display: flex;
}

ul.navi-list > li > a {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.2rem;
}

ul.navi-list > li > a > span {
  display: block;
  font-size: 16px;
  margin-bottom: 3;
  line-height: 1;
}

ul.navi-list > li ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

ul.navi-list > li li {
  display: block;
  font-size: 13px;
  margin-bottom: 3;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

.footer02__inner ul {
  display: flex;
  gap: 40px;
  margin-right: 0;
  margin-left: auto;
  justify-content: flex-end;
}

.footer02__inner {
  padding-bottom: 22px;
}

.footer02__inner ul li {
  font-size: 12px;
  position: relative;
}

.footer02__inner ul li a {
  font-weight: 400;
}

.footer02__inner ul li::before {
  position: absolute;
  right: -20px;
  width: 0.5px;
  height: 100%;
  background-color: #fff;
  content: "";
  display: block;
}

.footer02__inner ul li:last-of-type::before {
  display: none;
}

.footer03__inner {
  background-color: #111d2e;
  color: #fff;
  font-size: 14px;
  padding: 12px;
  text-align: center;
}

/* ==========================================================================
   Hamburger Menu
   ========================================================================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: 0.3s ease;
  position: relative;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================================================
   Responsive - 1200px
   ========================================================================== */
@media screen and (max-width: 1200px) {
  .section-top-fv__inner h1 {
    right: 20px;
    width: 32vw;
    bottom: 10vw;
  }

  header.section-header .section-header__inner__navi ul {
    gap: 14px;
    border-radius: 5px;
    font-size: 14px;
  }

  header.section-header a.section-header__inner__entry {
    padding: 0 16px;
    height: 40px;
  }

  header.section-header .section-header__inner__navi {
    gap: 24px;
    padding: 8px 8px 8px 24px;
    border-radius: 5px;
    box-shadow: 1px 1px 20px 0 rgba(4, 39, 69, 0.05);
    background: #ffffffc3;
  }

  .section-header__inner__logo {
    width: 25vw;
    height: auto;
  }

  .w-1200 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .w-1240 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .w-1400 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .w-1100 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ==========================================================================
   Responsive - 1000px
   ========================================================================== */
@media screen and (max-width: 1000px) {
  .footer__inner.w-1400 {
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 64px;
  }

  ul.navi-list {
    width: auto;
    max-width: 100%;
    gap: 60px;
    display: flex;
  }

  ul.navi-list > li > a {
    font-size: 16px;
  }

  ul.navi-list > li ul {
    margin-top: 14px;
  }

  ul.navi-list > li li {
    font-size: 11px;
  }

  .section-top-intro__text__inner__text-box p {
    line-height: 2.2;
    font-size: 14px;
    margin-bottom: 14px;
    font-weight: 400;
  }

  .section-top-intro__text__inner__text-box {
    line-height: 2.2;
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 40px;
  }

  .top-intro__btn-area-title h4 {
    font-size: 16px;
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .top-intro__btn-area-title span.eng {
    display: block;
    margin-bottom: 3px;
    font-size: 14px;
  }

  .top-intro__btn-area ul li a {
    padding: 8px 8px 8px 20px;
    border-radius: 5px;
  }

  .section-interview__ttl {
    display: flex;
    gap: 24px;
    align-items: flex-end;
    margin-bottom: 40px;
  }

  .section-interview__ttl h2 {
    font-size: 64px;
    color: #1062a93d;
  }

  .section-interview__ttl div h3 {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 1.8;
  }

  .section-interview__ttl div p {
    font-size: 14px;
  }

  ul.interview-list li a .interview-ttl span:first-of-type {
    font-size: 14px;
  }

  ul.interview-list li a .interview-ttl span:last-of-type {
    font-size: 24px;
    line-height: 1;
  }

  h3.interview-name {
    position: absolute;
    top: 50px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
  }

  h3.interview-name span:first-of-type {
    font-size: 10px;
    padding: 5px 7px;
    background-color: #1062a9;
    color: #fff;
    border-radius: 2px;
  }

  h3.interview-name span:last-of-type {
    font-size: 16px;
    padding: 5px 9px;
    background-color: #1062a9;
    color: #fff;
    border-radius: 2px;
    width: max-content;
  }

  ul.interview-list li a p {
    line-height: 1.8;
    font-size: 14px;
  }

  ul.interview-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
  }

  section.section-top-project {
    padding: 0 20px;
  }

  .section-top-project__inner.w-1240 {
    background: rgb(16 98 169 / 10%);
    padding: 40px 20px 40px;
    border-radius: 10px;
  }

  .project-ttl ul li {
    color: #798688;
    line-height: 1.8;
    font-size: 14px;
  }

  .section-top-work__images {
    width: 170px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
  }

  .flow-list > li {
    width: 100%;
    background-color: #fff;
    padding: 32px 32px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    position: relative;
  }

  .flow-list {
    max-width: 820px;
    width: 100%;
    margin: auto;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
  }

  .section-top-flow {
    background-color: #ecefef;
    padding: 80px 0 56px;
  }

  .section-entry h2 {
    margin-bottom: 32px;
  }

  .section-event {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #ecefef;
  }

  .section-entry__inner li a {
    background-color: #fff;
    width: 100%;
    height: auto;
    display: block;
    padding: 8px 8px 8px 20px;
    border-radius: 5px;
  }

  .section-entry__inner .top-intro__btn-area-title h4 {
    font-size: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .section-entry__inner .top-intro__btn-area-title h4 span {
    font-size: 12px;
  }

  header.section-header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-head_ttl {
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }

  .page-head_ttl p {
    font-size: 14px;
    line-height: 1.8;
    max-width: 100%;
  }

  .img-main-head {
    height: 32vw;
    margin-top: 24px;
  }

  section.section-system {
    padding-top: 80px;
    background-color: #ebf1f4;
  }

  .main-ttl {
    margin-bottom: 24px;
  }

  .main-ttl span:last-of-type {
    font-size: 14px;
    display: block;
    line-height: 1.8;
    margin-top: 10px;
  }

  .section-system__inner.w-1240 > p {
    margin-bottom: 40px;
    font-size: 14px;
  }

  .system-img img {
    width: 100%;
    height: 25vw;
    object-fit: cover;
    object-position: center;
  }

  .system-text {
    padding: 14px 14px 24px;
  }

  .system-text h2 {
    line-height: 2.2;
    font-size: 18px;
    color: #1062a9;
  }

  .system-text p {
    line-height: 1.8;
    font-size: 14px;
    font-weight: 400;
  }

  section.section-supports {
    padding-top: 80px;
  }

  .section-supports__inner > p {
    margin-bottom: 40px;
  }

  .section-supports__inner > ul > li {
    background-color: #fff;
    width: calc((100% - 40px) / 3);
    border-radius: 10px;
    overflow: hidden;
  }

  section.section-supports {
    padding-top: 40px;
  }

  .section-company,
  .section-business {
    padding-bottom: 80px;
    background-color: #ebf1f4;
  }

  .section-company {
    padding-top: 80px;
  }

  .section-company__inner.w-1240 ul,
  .section-business__inner ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px 10px;
  }

  .section-company__inner.w-1240 ul li,
  .section-business__inner.w-1240 ul li {
    width: calc((100% - 20px) / 3);
  }

  .main-ttl .eng {
    font-size: 32px;
    display: block;
    color: #1062a9;
  }

  .page-head {
    padding-top: 130px;
    position: relative;
  }

  ul.supports-list > li {
    width: calc((100% - 40px) / 3);
  }
}

/* ==========================================================================
   Responsive - 640px
   ========================================================================== */
@media screen and (max-width: 640px) {
  .page-head h2 .eng {
    font-size: 40px;
    display: block;
    margin-bottom: 8px;
  }

  ul.navi-list {
    width: auto;
    max-width: 100%;
    gap: 32px;
    display: flex;
    flex-wrap: wrap;
  }

  ul.navi-list li {
    width: 100%;
  }

  .footer02__inner ul {
    display: flex;
    gap: 20px;
    margin-right: 0;
    margin-left: auto;
    justify-content: flex-end;
    flex-direction: column;
  }

  .section-top-project__inner.w-1240 > ul li > a {
    display: flex;
    align-items: center;
    transition: 0.25s;
    border-radius: 5px;
    flex-wrap: wrap;
  }

  .section-top-project__inner.w-1240 > ul li > a .eng {
    font-size: 32px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1062a9;
    position: relative;
    padding: 20px;
  }

  .section-top-project__inner.w-1240 > ul li > a .project-ttl::before {
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-color: #1062a9;
    transform: translateY(-50%);
    opacity: 0.7;
  }

  .section-interview__inner {
    border-radius: 10px;
    background-color: #fff;
    padding: 40px 20px;
  }

  ul.interview-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  ul.interview-list li {
    width: calc((100% - 0px) / 1);
  }

  .section-interview__ttl {
    display: flex;
    gap: 24px;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .section-interview::after {
    width: 100vw;
    height: 100vh;
    background-image: url(../images/bg-section.png);
    background-size: cover;
    background-position: bottom center;
    content: "";
    display: block;
    z-index: -1;
    position: absolute;
    bottom: 180px;
    transform: translateY(100%) scale(-1, -1);
    left: 0;
  }

  .section-data-bannar__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-interview__ttl h2 br {
    display: none;
  }

  ul.section-top-work-list li a {
    background-color: #ebf1f4;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 10px 10px 24px;
    justify-content: space-between;
    border-radius: 10px;
    transition: 0.25s;
  }

  .flow-list > li {
    width: 100%;
    background-color: #fff;
    padding: 20px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    position: relative;
  }

  .flow-list > li div {
    width: calc(100% - 180px);
  }

  ul.navi-list {
    width: auto;
    max-width: 100%;
    gap: 14px;
    display: flex;
    flex-wrap: wrap;
  }

  .flow-list > li div ul li {
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 100000px;
    background-color: #ebf1f4;
    color: #1062a9;
    gap: 8px;
    display: flex;
    align-items: center;
    width: max-content;
    margin: 0;
    line-height: 1.8;
  }

  .flow-list > li div ul {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .flow-list > li div h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .flow-list > li span.eng {
    font-size: 32px;
    color: #1062a9;
  }

  .flow-list > li > img {
    width: 80px;
    height: auto;
    object-fit: contain;
    margin-left: 14px;
    margin-right: 20px;
  }

  ul.section-top-work-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc((100% - 0px) / 1);
  }

  ul.section-top-work-list {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }

  .top-intro__btn-area {
    max-width: 1030px;
    margin: auto;
    width: 100%;
    margin-top: 40px;
  }

  .section-top-intro__text__inner__text-box {
    line-height: 2.2;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 20px;
  }

  .section-top-intro__text__inner__text-box p {
    line-height: 2.2;
    font-size: 13px;
    margin-bottom: 14px;
    font-weight: 400;
  }

  .section-top-fv__inner h1 {
    right: 0px;
    width: 72vw;
    bottom: 20vw;
  }

  .bg-main {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    min-height: 650px;
  }

  .top-intro__btn-area ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .top-intro__btn-area ul li {
    width: 100%;
  }

  .section-interview {
    padding-bottom: 40px;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-interview__ttl h2 {
    font-size: 40px;
    color: #1062a93d;
  }

  .section-top-project__inner h2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 700;
  }

  .project-ttl {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    width: 100%;
  }

  .project-ttl h3 {
    font-size: 14px;
  }

  .project-ttl ul li {
    font-size: 12px;
  }

  .footer02__inner ul li::before {
    position: absolute;
    right: auto;
    width: 20px;
    height: 0.5px;
    background-color: #fff;
    content: "";
    display: block;
    bottom: -10px;
    display: none;
  }

  .footer-logo {
    width: 60%;
    max-width: 220px;
  }

  .footer03__inner {
    background-color: #111d2e;
    color: #fff;
    font-size: 10px;
    padding: 12px;
    text-align: center;
  }

  .footer__inner.w-1400 {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
  }

  .section-company__inner.w-1240 ul li,
  .section-business__inner.w-1240 ul li {
    width: calc((100% - 0px) / 1);
  }

  ul.infographic-grid li {
    width: 100%;
  }

  .page-head_ttl {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }

  .img-main-head {
    height: 55vw;
    margin-top: 24px;
  }

  section.section-system {
    padding-top: 40px;
    background-color: #ebf1f4;
  }

  .section-system__inner ul li {
    width: 100%;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
  }

  .system-img img {
    width: 100%;
    height: 40vw;
    object-fit: cover;
    object-position: center;
  }

  .system-text h2 {
    line-height: 2.2;
    font-size: 16px;
    color: #1062a9;
  }

  .system-text p {
    line-height: 1.8;
    font-size: 12px;
    font-weight: 400;
  }

  .section-supports__inner > ul > li {
    background-color: #fff;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
  }

  ul.supports-list > li {
    width: 100%;
  }

  .supports-text p {
    line-height: 1.8;
    font-size: 12px;
    font-weight: 400;
  }

  .supports-text h2 {
    line-height: 2.2;
    font-weight: 700;
    color: #1062a9;
    font-size: 16px;
  }

  .section-supports__inner > p {
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 2;
  }

  .section-supports__inner > h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.8;
  }

  .supports-text {
    padding: 14px 14px 24px;
  }

  .captopn-benefit {
    font-size: 16px;
    text-align: left;
    color: #1062a9;
    line-height: 2.2;
    margin-top: 32px;
  }

  section.breadcumb__list li {
    font-size: 12px;
  }

  .section-entry {
    background: #1062a9;
    padding: 60px 0;
    padding-bottom: 80px;
  }

  .section-entry__inner li {
    width: 100%;
  }

  .section-entry__inner ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .section-event p {
    text-align: left;
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.5;
    font-size: 14px;
  }

  .section-event ul {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: auto;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .section-event ul li {
    width: 80%;
  }

  .section-event ul li a {
    width: 100%;
    gap: 16px;
  }

  .section-entry {
    background: #1062a9;
    padding: 40px 0;
    padding-bottom: 40px;
  }

  .section-header__inner__logo {
    width: 25vw;
    height: auto;
    min-width: 210px;
  }

  .section-environment-intro {
    background-color: #ebf1f4;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-environment-intro p {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
  }

  .section-environment-intro h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  ul.workplace li {
    padding: 20px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
  }

  ul.workplace li p {
    font-size: 12px;
    line-height: 1.8;
  }

  ul.workplace li h3 {
    font-size: 16px;
    line-height: 2.2;
    margin-bottom: 5px;
    color: #1062a9;
    font-weight: 700;
  }

  .main-ttl.office {
    margin-top: 40px;
  }

  .section-workplace::before {
    background-color: #ebf1f4;
    width: 100%;
    height: calc(100% - 170px);
    top: 0;
    left: 0;
    z-index: -1;
    content: "";
    position: absolute;
  }

  ul.office {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  ul.office li {
    width: 100%;
    max-width: 400px;
    margin: auto;
  }

  .section-workplace {
    padding-bottom: 80px;
    position: relative;
  }

  .page-head::after {
    width: 100vw;
    height: 50vh;
  }

  .hamburger {
    display: flex;
  }

  .section-header__inner__navi {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  header.section-header .section-header__inner__navi ul {
    gap: 14px;
    border-radius: 5px;
    font-size: 14px;
    flex-wrap: wrap;
  }

  .section-header__inner__navi.open {
    right: 0;
  }

  .section-header__inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }

  .section-header__inner__navi ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }

  .section-header__inner__navi li {
    margin: 0px 0;
    width: 100%;
  }

  header.section-header a.section-header__inner__entry {
    padding: 0 16px;
    height: 40px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  header.section-header .section-header__inner__navi ul {
    gap: 24px;
    border-radius: 5px;
    font-size: 16px;
    flex-wrap: wrap;
    width: 100%;
  }

  .section-top-fv__inner::before {
    content: "";
    width: 50px;
    height: 50px;
    background: url(../images/scroll.png);
    display: block;
    position: absolute;
    right: 20px;
    bottom: 10vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
  }
}

/* ==========================================================================
   WordPress Block Overrides
   ========================================================================== */
/* Remove default WordPress block margins */
.wp-block-group,
.wp-block-columns,
.wp-block-column {
  margin-top: 0;
  margin-bottom: 0;
}

/* Remove focus outline on click */
:where(.wp-site-blocks :focus),
:where(.wp-site-blocks *:focus) {
  outline: none !important;
}

/* Ensure proper box-sizing in editor */
.editor-styles-wrapper * {
  box-sizing: border-box;
}

/* Fix WordPress constrained layout centering */
.is-layout-constrained {
  margin-left: auto !important;
  margin-right: auto !important;
}

.is-layout-constrained > * {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Reset global padding that conflicts with custom styles */
.has-global-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Ensure wp-site-blocks doesn't add unwanted padding */
.wp-site-blocks {
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
}

/* Fix constrained layout max-width inheritance */
.wp-block-group.is-layout-constrained {
  max-width: none;
}

.wp-block-group.is-layout-constrained > .wp-block-group {
  max-width: 1240px;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
}

/* Fix section-top-intro__text__inner WordPress block centering */
.wp-block-group.section-top-intro__text__inner {
  max-width: 1240px;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* Fix speakerdeck section container */
.wp-block-group.section-top-intro__text {
  width: 100%;
}

.wp-block-group.section-top-intro__text > .wp-block-group {
  max-width: 1240px;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* Ensure speakerdeck iframe is properly centered */
.section-top-intro__text .speakerdeck-iframe {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
