/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.7;
  color: #0C1A45;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease-in-out;
}

button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

dl,
ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt,
dd {
  margin: 0;
  padding: 0;
}


/* **************************************************************
 Utility Classes
*************************************************************** */
.section {
  padding: 50px 0;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
}

.inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.inner--summary {
  display: block;
  margin: 15px 0 40px;
}

.inner--btns {
  margin-top: 55px;
}

.title {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 60px;
  color: inherit;
  font-weight: 400;
}

.title--en {
  font-size: 24px;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
  text-align: center;
  font-weight: 400;
}

.title--jp {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 400;
}

.title--jp .min {
  display: block;
  font-size: 20px;
}

.title--min {
  line-height: 1.3;
  font-size: 32px;
  font-weight: normal;
}

.title--min .min {
  display: block;
  font-size: 20px;
}

.title--mic {
  display: block;
  line-height: 1.3;
  font-size: 24px;
  font-weight: normal;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 12px 32px;
  min-height: 40px;
  background-color: #33333B;
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1rem;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

.btn:hover {
  opacity: 1;
  background-color: #FF1C4A;
  color: #fff;
}

.btn--max {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 104px;
  padding: 40px;
  border: 1px solid #c6c6c8;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: all 0.2s ease-in-out;
}

.btn--max::after {
  content: "\f054";
  position: absolute;
  right: 45px;
  top: 50%;
  translate: 0 -50%;
  font-size: 16px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.btn--max:hover {
  opacity: 1;
  background-color: #0C1A45;
  color: #fff;
}

.bg--navy {
  background-color: #0C1A45;
  color: #fff;
}

.bg--gray {
  background-color: #33333B;
  color: #fff;
}

.sp-view {
  display: none;
}

.slide-wrap {
  position: relative;
  padding: 0 24px;
  overflow: hidden;
}

.slide-pagination {
  position: absolute;
  left: 45px !important;
  top: calc(100vw * 220 / 342);
  transform: translateY(-60px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #fff;
}

.slide-scrollbar {
  position: relative !important;
  bottom: inherit !important;
  width: 72px !important;
  height: 1px !important;
  background-color: rgba(255, 255, 255, 0.24) !important;
}

.swiper-scrollbar-drag {
  background-color: #fff !important;
}

.list--disc li {
  position: relative;
  padding-left: 22px;
}

.list--disc li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}


/* **************************************************************
 header
*************************************************************** */
.header__inner {
  position: fixed;
  left: 50%;
  translate: -50%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  padding: 24px;
}

.header__menu {
  display: none;
}

.header__menu--nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-menu {
  position: fixed;
  z-index: 1500;
  right: 10px;
  top: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  mix-blend-mode: difference;
}

.btn-menu::before {
  content: "\f0c9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 33px;
  color: #fff;
}

.btn-menu.is-opened::before {
  content: "\f00d";
}

.hamburger__menu--open {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 112px 24px 40px;
  translate: 0 -100%;
  transition: translate 0.2s ease-in-out;
  overflow-y: auto;
}

.hamburger__menu--open.is-opened {
  translate: 0 0;
}

.hamburger__catch--inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: fit-content;
}

.hamburger__catch--main {
  display: block;
  margin-bottom: 25px;
  line-height: 1.2;
  font-size: 32px;
  font-size: clamp(32px, 8.2vw, 52px);
  font-weight: 400;
}

.hamburger__catch--text {
  line-height: 1.2;
  font-size: 20px;
  font-size: clamp(20px, 5.12vw, 30px);
}

.hamburger__menu--nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  gap: 15px;
  margin: 70px 0 25px;
  font-family: "Noto Sans JP", sans-serif;
}

.hamburger__menu--nav li {
  line-height: 1;
}

.hamburger__menu--nav a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  text-align: left;
}

.hamburger__menu--nav a:hover {
  color: #FF1C4A;
}

.hamburger__menu--cv {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}



/* **************************************************************
 splash
*************************************************************** */
.splash {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
}

.splash__img {
  position: relative;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  overflow: clip;
}

.splash__img video,
.splash__img img {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
}

.splash__inner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 1248px;
  padding: 24px;
}

.splash__content.is-transparent {
  background-color: transparent;
}

.splash__catch {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: fit-content;
}

.splash__catch--main {
  /*margin-bottom: 25px;*/
  font-size: 44px;
  font-size: clamp(33px, 9.16vw, 64px);
  line-height: 1.2;
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
}

.splash__catch--text {
  font-size: clamp(22px, 6.66vw, 48px);
  line-height: 1.2;
  color: #fff;
}

.splash__nav {
  display: none;
  transition: all 0.2s;
}

.splash__copy {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* **************************************************************
 neww
*************************************************************** */
.news__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.news__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.news__item-date {
  flex-shrink: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.0174em;
  color: #0C1A45;
  width: 120px;
}

.news__item-link {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  color: #0C1A45;
}

.news__item-link:hover {
  color: #FF1C4A;
}

.news__item-link-text {
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  word-break: break-all;
}

.news__item-link-icon {
  margin-top: -5px;
}

.news__bottom {
  margin-top: 55px;
}

.section.news__list {
  padding-top: 140px;
}

.news__pager {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 80px;
  gap: 8px;
}

.news__pager-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 24px 32px;
  border: 1px solid #c6c6c8;
  width: 100%;
  box-sizing: border-box;
}

.news__pager-button:hover {
  background-color: #0C1A45;
  color: #fff;
}

.news__pager-button-text {
  font-size: 24px;
  line-height: 1em;
}


.news__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}


.news__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news__head-title {
  line-height: 1.3;
  font-size: 32px;
}

.news__body p {
  line-height: 2;
  margin: 20px 0;
  text-align: justify;
}

.news__cv .btn {
  padding: 12px;
  width: 150px;
}


/* **************************************************************
 project
*************************************************************** */
.project__bottom {
  margin-top: 55px;
}

.projects__cont:hover .btn {
  opacity: 1;
  background-color: #FF1C4A;
  color: #fff;
}

.projects__cont--image {
  position: relative;
  width: 100%;
  padding-top: calc(100% * 220 / 342);
  text-align: center;
}

.projects__cont--image img {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects__cont--info {
  margin-top: 40px;
}

.projects__info--title {
  font-size: 14px;
}

.projects__info--title .main {
  margin-bottom: 5px;
  line-height: 1;
  font-size: 32px;
}

.projects__cont--info p {
  display: block;
  margin-top: 20px;
  font-size: 14px;
}

.projects__cont--btn {
  margin-top: 24px;
}

.projects__cont--btn .btn {
  width: 110px;
}


.projects__items {
  display: flex;
  flex-direction: column;
  gap: 55px;
  width: 100%;
}

.project__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.project__body p {
  line-height: 2;
  margin: 20px 0;
  text-align: justify;
}


/* **************************************************************
 service
*************************************************************** */
.service {
  background-color: #0C1A45;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service__inner {
  width: 100%;
  max-width: 432px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}


.service__cont {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.service__cont--box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.service__cont--left {
  display: flex;
}

.service__cont--left .img {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-top: calc(100% * 112 / 342);
}

.service__cont--left .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service__cont--right {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.service__cont--title {
  line-height: 1;
  font-size: 24px;
  text-align: center;
}

.service__cont--text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}

.service__item {
  margin: 80px 0;
}

.service__item:last-of-type {
  margin-bottom: 0;
}

.service__item--cont {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.service__item--title {
  font-size: 24px;
  font-weight: normal;
}

/* **************************************************************
 documentary
*************************************************************** */
.documentary__cont--movie {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.documentary__cont--movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.documentary__cont--movie .play-button {
  position: absolute;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}

.documentary__cont--movie .play-button i {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 95px;
  height: 95px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  font-size: 40px;
  color: rgba(17, 17, 27, 0.6);
  transition: all 0.2s ease-in-out;
}

.documentary__cont--movie .play-button:hover {
  cursor: pointer;
}

.documentary__cont--movie .play-button:hover i {
  scale: 1.2;
}

.documentary__cont--movie .play-button.is-play {
  display: none;
}


/* **************************************************************
 flow
*************************************************************** */
.flow__cont {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  width: 100%;
}

.flow__cont--box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 25px 0;
  width: 100%;
}

.flow__cont--box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 16px;
  height: 1px;
  background-color: #0C1A45;
}

.flow__cont--box:first-of-type {
  padding-top: 0;
}

.flow__cont--box:last-of-type::after {
  display: none;
}

.flow__cont--time {
  font-size: 24px;
  line-height: 1;
  text-align: left;
}

.flow__cont--text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  text-align: left;
}



/* **************************************************************
 story
*************************************************************** */
.story__cont {
  position: relative;
  padding-top: 40px;
  margin-top: 40px;
}

.story__cont:first-of-type {
  padding-top: 0;
}

.story__cont:not(:first-of-type):before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 1px;
  background-color: #0C1A45;
}

.story__cont--title {
  position: relative;
  display: grid;
}

.story__cont--name {
  display: block;
  order: 2;
  margin: 24px 0 15px;
  line-height: 1;
  font-size: 32px;
  font-weight: 400;
}

.story__cont--info {
  order: 3;
  line-height: 1.3;
}

.story__cont--catch {
  position: relative;
  order: 4;
  z-index: 1;
  display: block;
  margin: 24px 0 40px;
  line-height: 1.2;
  font-weight: 400;
  font-size: 32px;
}

.story__cont--img {
  position: relative;
  order: 1;
}

.story__cont--img img {
  width: 100%;
  height: auto;
}

.story__cont--body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.story__cont--body p {
  text-align: justify;
}

.story__item {
  position: relative;
  display: block;
  padding-bottom: 40px;
  margin: 80px 0;
}

.story__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
}

.story__item:not(:last-of-type):before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 1px;
  background-color: #0C1A45;
}

.story__item--img {
  margin-bottom: 24px;
}

.story__item--name {
  font-size: 32px;
  font-weight: normal;
}

.story__item--name .ruby {
  display: block;
  font-size: initial;
}

.story__item--info {
  display: block;
  margin: 24px 0;
}

.story__item--summary {
  display: block;
  margin-top: 40px;
}

/* **************************************************************
 talk
*************************************************************** */
.talk__profile--list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 80px 0;
}

.talk__profile--item {
  display: flex;
  gap: 24px;
}

.talk__profile---thumb {
  width: 120px;
  flex-shrink: 0;
}

.talk__profile--cont {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.4;
}

.talk__profile--name {
  font-size: 32px;
  font-weight: normal;
}

.talk__content {
  position: relative;
  margin-top: 40px;
  padding-top: 10px;
}

.talk__content:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  height: 1px;
  background-color: #0C1A45;
}


.talk__tag--bk {
  display: flex;
  padding: 8px 16px;
  flex-direction: column;
  width: fit-content;
  margin-top: 40px;
  margin-bottom: 15px;
  border-radius: 50rem;
  background-color: #0C1A45;
  line-height: 1;
  font-size: 20px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}

.talk__tag--bl {
  display: flex;
  padding: 8px 16px;
  flex-direction: column;
  width: fit-content;
  margin-top: 40px;
  margin-bottom: 15px;
  border-radius: 50rem;
  background-color: #FF1C4A;
  line-height: 1;
  font-size: 20px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}

.talk__tag--rd {
  display: flex;
  padding: 8px 16px;
  flex-direction: column;
  width: fit-content;
  margin-top: 40px;
  margin-bottom: 15px;
  border-radius: 50rem;
  background-color: #F85453;
  line-height: 1;
  font-size: 20px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}


/* **************************************************************
 stats
*************************************************************** */
.stats__cont {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 44px;
  width: 100%;
}

.stats__cont--left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  border-top: 1px solid #0C1A45;
}

.stats__cont--right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  border-top: 1px solid #0C1A45;
}

.stats__cont:last-of-type .stats__cont--right {
  border-bottom: 1px solid #0C1A45;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.stats__item-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.0174em;
  text-align: center;
  margin: 0;
}

.stats__item-value {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.stats__item-number {
  font-weight: 600;
  font-size: 48px;
  line-height: 1em;
  text-align: center;
  margin: 0;
  letter-spacing: -0.05em;
}


.stats__item-unit {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4em;
  text-align: center;
  margin: 0;
  letter-spacing: 0;
  white-space: nowrap;
}

.stats__item-unit.min {
  font-size: 16px;
}

.stats__item-description {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7em;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}


/* **************************************************************
 recruit
*************************************************************** */
.recruit__inner {
  margin: 80px 0;
}

.recruit__inner:last-of-type {
  margin-bottom: 0;
}

.recruit__inner .title--mic {
  margin-bottom: 40px;
}

.recruit__portrait {
  display: grid;
  gap: 15px;
}

.recruit__portrait--item {
  display: grid;
  gap: 15px;
  padding: 24px;
  border: 1px solid #0C1A45;
  line-height: 1.4;
}

.recruit__charm {
  display: grid;
  gap: 15px;
}

.recruit__charm--item {
  padding: 15px;
  background-color: #F9F4F4;
}

/* **************************************************************
 information
*************************************************************** */
.information__cont {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.information__cont--box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 30px 0;
  width: 100%;
}

.information__cont--box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 1px;
  background-color: #0C1A45;
}

.information__cont--box:first-of-type::before {
  display: none;
}

.information__cont--label {
  font-size: 16px;
  line-height: 1;
  text-align: left;
  font-weight: 400;
}

.information__cont--value {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  text-align: left;
}

.information__cont--value .min {
  display: block;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;

}


/* **************************************************************
 entry
*************************************************************** */

.entry__cont {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.entry__cont--box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
}

.entry__cont--text {
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

.entry__cont--btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.entry__cont--button {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 120px;
  padding: 40px;
  border: 1px solid #0C1A45;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.entry__cont--button::after {
  content: "\f054";
  position: absolute;
  right: 45px;
  top: 50%;
  translate: 0 -50%;
  width: 12px;
  height: 21px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.entry__cont--button.entry-line:hover {
  background-color: #06C755;
  color: #fff;
}

.entry__cont--button.entry-indeed:hover {
  background-color: #003a9b;
  color: #fff;
}






/* **************************************************************
 footer
*************************************************************** */
.footer {
  position: relative;
  padding: 55px 0;
  background-color: #0C1A45;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px 0;
}

.footer__logo {
  display: block;
  width: fit-content;
  min-width: 330px;
}

.footer__address {
  min-width: 330px;
  font-size: 14px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  max-width: 330px;
  gap: 15px 0;
}

.footer__nav li {
  width: 50%;
  line-height: 1;
}

.footer__nav li.entry {
  width: 100%;
}

.footer__nav li.entry .btn {
  background-color: #fff;
  color: #0C1A45;
}

.footer__nav li.entry .btn:hover {
  background-color: #FF1C4A;
  color: #fff;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 30px 0 25px;
}

.footer__sns li {
  width: 56px;
  height: 56px;
}

.footer__sns li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #4a4a52;
  border-radius: 8px;
  font-size: 30px;
}

.footer__sns li a:hover {
  background-color: #FF1C4A;
}

.footer__copyright {
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-align: center;
}



/* **************************************************************
*
* PC view
*
*************************************************************** */
@media (width > 1024px) {

  /* **************************************************************
 Utility Classes
*************************************************************** */
  .section {
    padding: 80px 0;
  }

  .inner {
    max-width: 592px;
    margin-left: auto;
    margin-right: 0;
  }

  .title {
    margin-bottom: 80px;
  }

  .title--jp {
    display: flex;
    align-items: flex-end;
    font-size: 48px;
  }

  .title--jp .min {
    margin-bottom: 5px;
  }

  .pc-view {
    display: none;
  }

  .sp-view {
    display: initial;
  }


  .slide-pagination {
    left: 24px !important;
    top: calc(544px * 332 / 432 - 60px);
  }


  /* **************************************************************
 header
*************************************************************** */
  .header__menu {
    display: block;
  }

  .btn-menu {
    display: none;
  }

  .hamburger__menu--open {
    display: none;
  }


  /* **************************************************************
 splash
*************************************************************** */
  .splash {
    height: auto;
    padding: 0;
  }

  .splash__img {
    position: relative;
    margin-left: auto;
    min-width: 568px;
    width: calc(50% + 240px);
    height: 100vh;
    max-height: 810px;
  }

  .splash__inner {
    position: fixed;
    z-index: 100;
    top: 0;
    /* top: 12.22vh; */
    left: 50%;
    translate: -50%;
    pointer-events: none;
    padding: 0;
    height: 100vh;
    max-height: 810px;
  }

  .splash__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: fit-content;
    height: 100vh;
    max-height: 810px;
    padding: 0px 0px 0px 24px;
    background-color: #fff;
  }
  .splash__catch {

  }

  .splash__catch--main {
    font-size: clamp(50px, 5.33vw, 60px);
    color: #0C1A45;
  }

  .splash__catch--text {
    font-size: clamp(22px, 2.6vw, 32px);
    color: #0C1A45;
  }

  .splash__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 50%;
    gap: 15px;
    margin-top: 50px;
    pointer-events: all;
  }

  .splash__nav li {
    line-height: 1;
  }

  .splash__nav li a {
    font-family: "Noto Sans JP", sans-serif;
  }

  .splash__nav li a:hover {
    color: #FF1C4A;
  }

  .splash__nav li .btn {
    margin-top: 5px;
  }

  .splash__nav li .btn:hover {
    color: #fff;
  }

  .splash__nav.is-hidden {
    opacity: 0;
    visibility: hidden;
  }


  /* **************************************************************
   news
  *************************************************************** */
  .news__item {
    flex-direction: row;
  }

  .news__pager {
    flex-direction: row;
  }

  /* **************************************************************
   projects
  *************************************************************** */
  .project__list {
    max-width: calc(50% - 60px);
    min-width: 568px;
    margin-left: auto;
    margin-right: 0;
    padding: 0;
  }

  .project__list .swiper-slide {
    width: 544px;
  }

  .projects__cont--image {
    padding-top: calc(100% * 332 / 544);
  }

  /* **************************************************************
 service
*************************************************************** */
  .service__cont--box {
    align-items: center;
    flex-direction: row;
    gap: 32px;
  }

  .service__cont--left {
    min-width: 112px;
  }

  .service__cont--left .img {
    padding-top: calc(100% * 112 / 112);
  }

  .service__cont--text {
    font-size: 16px;
  }



  /* **************************************************************
   docmentary
  *************************************************************** */
  .documentary__cont--movie {
    width: calc(48vw - 48px);
    min-width: 568px;
  }

  /* **************************************************************
   flow
  *************************************************************** */
  .flow__cont--box {
    flex-direction: row;
    align-items: center;
  }

  .flow__cont--time {
    min-width: 75px;
  }

  /* **************************************************************
   story
  *************************************************************** */
  .story__cont--img {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 64.7%;
  }

  .story__cont--catch {
    position: relative;
    margin: 50px 0;
    font-size: clamp(22px, 6.66vw, 32px);
    color: #fff;
    mix-blend-mode: difference;
    white-space: nowrap;
  }

  .story__cont--name {
    margin-top: 0;
  }

  /* **************************************************************
   talk
  *************************************************************** */
  .talk__profile---thumb {
    width: auto;
    flex-shrink: 0;
  }

  /* **************************************************************
 stats
*************************************************************** */
  .stats__cont {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .stats__cont--left {
    padding: 24px 30px 24px 0;
  }

  .stats__cont--right {
    padding: 24px 0 24px 30px;
  }

  .stats__cont--right::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    translate: 0 -50%;
    width: 1px;
    height: calc(100% - 48px);
    background-color: #0C1A45;
  }

  .stats__cont:first-of-type .stats__cont--left,
  .stats__cont:first-of-type .stats__cont--right {

    border-top: none;
  }

  .stats__cont:last-of-type .stats__cont--right {
    border-bottom: none;
  }

  .stats__item-description {
    font-size: 12px;
  }



  /* **************************************************************
 information
*************************************************************** */
  .information__cont--box {
    align-items: center;
    flex-direction: row;
    gap: 40px;
  }

  .information__cont--label {
    min-width: 75px;
  }


  /* **************************************************************
   stats
  *************************************************************** */
  .stats__item-unit.min {
    font-size: 24px;
  }


  /* **************************************************************
 footer
*************************************************************** */
  .footer .inner {
    max-width: 1200px;
    margin-right: auto;
  }

  .footer__top {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    justify-content: space-between;
  }

  .footer__nav {
    grid-column: 2/3;
    grid-row: 1/3;
  }

  .footer__bottom {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 40px;
  }

  .footer__sns {
    margin: 0;
  }

}

/* **************************************************************
 company gallery
*************************************************************** */
.company-gallery {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 40px;
}

.company-gallery__main {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.company-gallery__main-img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: opacity 0.3s ease-in-out;
	display: block;
}

.company-gallery__caption {
	font-size: 16px;
	line-height: 1.4;
	color: #0C1A45;
	font-family: "Noto Sans JP", sans-serif;
	transition: opacity 0.3s ease-in-out;
}

.company-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

.company-gallery__thumb {
	position: relative;
	width: 100%;
	padding-top: calc(100% * 220 / 342);
	overflow: hidden;
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 0.2s ease-in-out;
}

.company-gallery__thumb img {
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.company-gallery__thumb:hover {
	opacity: 0.8;
}

.company-gallery__thumb.is-active {
	opacity: 1;
	outline: 2px solid #0C1A45;
	outline-offset: -2px;
}

@media (width > 1024px) {
	.company-gallery__thumbs {
		gap: 12px;
	}

	.company-gallery__caption {
		font-size: 18px;
	}
}

/* **************************************************************
 lightbox gallery (一覧)
*************************************************************** */
.lightbox-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	margin-top: 40px;
}

.lightbox-gallery__item {
	width: 100%;
	line-height: 0;
	font-size: 0;
}

.lightbox-gallery__trigger {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	padding-top: calc(100% * 220 / 342);
	overflow: hidden;
	cursor: pointer;
	border: none;
	background: none;
	line-height: 0;
	font-size: 0;
	vertical-align: top;
}

.lightbox-gallery__trigger img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease-in-out;
	transform-origin: center center;
}

.lightbox-gallery__trigger:hover img {
	transform: scale(1.08);
}

@media (width > 1024px) {
	.lightbox-gallery {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}
}

/* **************************************************************
 lightbox (拡大表示)
*************************************************************** */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.85);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
	padding: 60px 80px;
}

.lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.lightbox__inner {
	position: relative;
	max-width: 100%;
	max-height: 80vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.lightbox__img {
	max-width: 100%;
	max-height: calc(80vh - 40px);
	object-fit: contain;
	transition: opacity 0.15s ease-in-out;
}

.lightbox__counter {
	color: #fff;
	font-family: "Cormorant Garamond", serif;
	font-size: 18px;
	line-height: 1;
	letter-spacing: 0.1em;
}

.lightbox__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	transition: opacity 0.2s ease-in-out;
	z-index: 2;
}

.lightbox__close:hover {
	opacity: 0.6;
}

.lightbox__nav {
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out;
	z-index: 2;
}

.lightbox__nav:hover {
	background: rgba(255, 255, 255, 0.25);
}

.lightbox__nav--prev {
	left: 16px;
}

.lightbox__nav--next {
	right: 16px;
}

@media (width > 1024px) {
	.lightbox {
		padding: 80px 120px;
	}

	.lightbox__nav {
		width: 56px;
		height: 56px;
		font-size: 20px;
	}

	.lightbox__nav--prev {
		left: 32px;
	}

	.lightbox__nav--next {
		right: 32px;
	}

	.lightbox__close {
		top: 24px;
		right: 24px;
		font-size: 32px;
	}

	.lightbox__counter {
		font-size: 20px;
	}
}

/* ===== ギャラリー もっと見るボタン ===== */
.gallery-more__wrap {
    text-align: center;
    margin-top: 40px;
}

.gallery-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 40px;
    background: transparent;
    border: 1px solid #333;
    color: #333;
    font-size: 14px;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.gallery-more:hover {
    background: #333;
    color: #fff;
}

.gallery-more:hover .gallery-more__icon {
    transform: rotate(90deg);
}

.gallery-more__text {
    font-weight: 500;
}

.gallery-more__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    font-size: 12px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .gallery-more {
        padding: 12px 32px;
        font-size: 13px;
    }
}

/* ===== 研修動画 ===== */
.train-video {
    position: relative;
    width: 100%;
    /* 動画読み込み前でも領域を確保するためアスペクト比を指定 */
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.train-video > video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.train-video__loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    transition: opacity 0.4s ease;
    z-index: 2;
}

.train-video.is-loaded .train-video__loader {
    opacity: 0;
    pointer-events: none;
}

.train-video__spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: train-spin 0.8s linear infinite;
}

@keyframes train-spin {
    to { transform: rotate(360deg); }
}

/* **************************************************************
 company detail 追加分
*************************************************************** */
.company-section {
	margin-top: 80px;
}

.company-section .title--mic {
	margin-bottom: 30px;
	padding-bottom: 12px;
	border-bottom: 1px solid #0C1A45;
}

.company-map {
	margin-top: 40px;
	line-height: 0;
}

/* 沿革 */
.history__cont {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.history__cont--box {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 24px 0;
	width: 100%;
	border-bottom: 1px solid #e0e0e0;
}

.history__cont--box:first-of-type {
	border-top: 1px solid #e0e0e0;
}

.history__cont--year {
	font-size: 20px;
	line-height: 1.3;
	font-weight: 400;
	color: #0C1A45;
	font-family: "Noto Sans JP", sans-serif;
	flex-shrink: 0;
}

.history__cont--event {
	font-size: 15px;
	line-height: 1.8;
	font-family: "Noto Sans JP", sans-serif;
}

/* 方針・行動計画ボタン群 */
.company-docs {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

@media (width > 1024px) {
	.history__cont--box {
		flex-direction: row;
		align-items: baseline;
		gap: 40px;
	}

	.history__cont--year {
		min-width: 100px;
	}
}

/* 営業所・工場 */
.offices {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.offices__item {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-bottom: 40px;
	border-bottom: 1px solid #e0e0e0;
}

.offices__item:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}

.offices__info {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-family: "Noto Sans JP", sans-serif;
}

.offices__name {
	font-size: 18px;
	font-weight: 400;
	color: #0C1A45;
}

.offices__address,
.offices__tel,
.offices__mail {
	font-size: 14px;
	line-height: 1.6;
}

.offices__map {
	line-height: 0;
}

@media (width > 1024px) {
	.offices__item {
		flex-direction: row;
		align-items: center;
		gap: 40px;
	}

	.offices__info {
		flex: 1;
	}

	.offices__map {
		flex: 0 0 45%;
		max-width: 45%;
	}
}

/* **************************************************************
 facility（加工場 各種設備機器ギャラリー）
*************************************************************** */
.facility {
	margin-top: 80px;
}

.facility__heading {
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid #0C1A45;
}

.facility__lead {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	line-height: 1.9;
	margin-bottom: 40px;
}

.facility__factory {
	margin-bottom: 56px;
}

.facility__factory:last-of-type {
	margin-bottom: 0;
}

.facility__factory-name {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
	color: #0C1A45;
	margin-bottom: 4px;
}

.facility__factory-sub {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	color: #666;
	margin-bottom: 24px;
}

.facility__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px 20px;
}

.facility__item {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.facility__photo {
	margin: 0;
	line-height: 0;
	background-color: #f4f4f6;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.facility__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.facility__caption {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 15px;
	line-height: 1.4;
	color: #0C1A45;
}

@media (width > 1024px) {
	.facility__grid {
		gap: 40px 32px;
	}

	.facility__caption {
		font-size: 16px;
	}
}

/* 保有機器一覧（アコーディオン） */
.facility__machines {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid #e0e0e0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.facility__machines-title {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #0C1A45;
	margin-bottom: 8px;
}

.facility__machine {
	border: 1px solid #c6c6c8;
}

.facility__machine-summary {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 48px 16px 16px;
	cursor: pointer;
	list-style: none;
	font-family: "Noto Sans JP", sans-serif;
}

.facility__machine-summary::-webkit-details-marker {
	display: none;
}

.facility__machine-name {
	font-size: 16px;
	font-weight: 700;
	color: #0C1A45;
}

.facility__machine-maker {
	font-size: 12px;
	color: #666;
}

/* 開閉アイコン（＋／−） */
.facility__icon {
	position: absolute;
	right: 20px;
	top: 50%;
	translate: 0 -50%;
	width: 14px;
	height: 14px;
}

.facility__icon::before,
.facility__icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	background-color: currentColor;
	transition: transform 0.2s ease-in-out;
}

.facility__icon::before {
	width: 14px;
	height: 1.5px;
	translate: -50% -50%;
}

.facility__icon::after {
	width: 1.5px;
	height: 14px;
	translate: -50% -50%;
}

.facility__machine[open] > .facility__machine-summary .facility__icon::after {
	transform: scaleY(0);
}

/* 機器一覧テーブル */
.facility__table {
	width: 100%;
	border-collapse: collapse;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
}

.facility__table th,
.facility__table td {
	padding: 10px 16px;
	border-top: 1px solid #e0e0e0;
	text-align: left;
}

.facility__table th {
	background-color: #f4f4f6;
	font-weight: 700;
	color: #0C1A45;
	width: 50%;
}

@media (width > 1024px) {
	.facility__machine-summary {
		gap: 24px;
	}
	.facility__machine-name {
		min-width: 220px;
	}
}

/* ============================================================
   NEW : 部署別タブ（style.cssへ追記してください）
============================================================ */
.flow__tabs {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
	border-bottom: 1px solid #c6c6c8;
}

.flow__tab {
	position: relative;
	padding: 14px 18px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	line-height: 1.4;
	color: #8a8a92;
	background: none;
	border: none;
	cursor: pointer;
	transition: color 0.2s ease-in-out;
}

.flow__tab::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 2px;
	background-color: #0C1A45;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.2s ease-in-out;
}

.flow__tab:hover {
	color: #FF1C4A;
}

.flow__tab.is-active {
	color: #0C1A45;
}

.flow__tab.is-active::after {
	transform: scaleX(1);
}

.flow__panel {
	display: none;
}

.flow__panel.is-active {
	display: block;
}

.flow__note {
	margin-top: 24px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	line-height: 1.6;
	color: #555;
}

@media (width > 1024px) {
	.flow__tab {
		font-size: 16px;
		padding: 16px 26px;
	}

	.flow__note {
		font-size: 12px;
	}
}

/* タブ外の独立ブロック（加工工場）見出し */
.title--kakou {
	margin-top: 70px;
}

.story__item--img {
  margin-bottom: 24px;
  max-width: 50%;
}

@media (width > 1024px) {
  .story__item--img {
    max-width: 300px;
  }
}

/* **************************************************************
 contact form
*************************************************************** */
.contact__form {
  max-width: 640px;
}

.contact__form .wpcf7-form p {
  margin-bottom: 24px;
}

.contact__form .wpcf7-form label {
  display: block;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  color: #0C1A45;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.contact__form .wpcf7-form input[type="text"],
.contact__form .wpcf7-form input[type="email"],
.contact__form .wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #c6c6c8;
  border-radius: 4px;
  background-color: #fff;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #33333B;
  outline: none;
  transition: border-color 0.2s ease-in-out;
  box-sizing: border-box;
}

.contact__form .wpcf7-form input[type="text"]:focus,
.contact__form .wpcf7-form input[type="email"]:focus,
.contact__form .wpcf7-form textarea:focus {
  border-color: #0C1A45;
}

.contact__form .wpcf7-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact__form .wpcf7-form input[type="submit"] {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 48px;
  min-height: 48px;
  background-color: #33333B;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.contact__form .wpcf7-form input[type="submit"]:hover {
  background-color: #FF1C4A;
}
/* ===== 行動計画アコーディオン ===== */
.company-accordion {
    border: 1px solid #c6c6c8;
}

.company-accordion + .company-accordion {
    margin-top: -1px; /* ボーダーが重なって2px になるのを防ぐ */
}

.company-accordion__trigger {
    width: 100%;
    text-align: left;
    border: none;      /* .btn--max の border を上書き */
}

.company-accordion__trigger[aria-expanded="true"] {
    background-color: #0C1A45;
    color: #fff;
}

/* 矢印：デフォルト → 右、展開中 → 下 */
.company-accordion__trigger::after {
    content: "\f054";   /* fa-chevron-right */
    transition: transform 0.2s ease;
}

.company-accordion__trigger[aria-expanded="true"]::after {
    transform: rotate(90deg);
}

.company-accordion__panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

.company-accordion__panel[hidden] {
    display: block !important; /* hidden でも transition を効かせるため */
    max-height: 0;
    visibility: hidden;
}

.company-accordion__panel.is-open {
    max-height: 2000px; /* 内容が収まる十分な高さ */
    visibility: visible;
}

.company-accordion__body {
    padding: 24px;
    border-top: 1px solid #c6c6c8;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 1.9;
    color: #0C1A45;
}

/* ===== 行動計画 内容スタイル ===== */
.action-plan__lead {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.9;
}

.action-plan__section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.action-plan__heading {
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 8px;
    border-bottom: 1px solid #c6c6c8;
    margin-bottom: 4px;
}

.action-plan__goal {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background-color: #f9f9f9;
}

.action-plan__goal-title {
    font-size: 15px;
    font-weight: 700;
    color: #0C1A45;
}

.action-plan__label {
    font-size: 13px;
    color: #666;
}

.action-plan__list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 0;
}

.action-plan__list li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.8;
}

.action-plan__list li::before {
    content: "●";
    position: absolute;
    left: 0;
    font-size: 8px;
    top: 6px;
    color: #0C1A45;
}
@media (width < 1024px) {
  .btn--max.small{
    font-size: 19px;
  }
}

/* **************************************************************
 career step
*************************************************************** */
.career {
	display: flex;
	flex-direction: column;
	margin-top: 40px;
}

.career__step {
	position: relative;
	display: flex;
	gap: 24px;
	padding-bottom: 48px;
}

.career__step:last-of-type {
	padding-bottom: 0;
}

/* 縦のコネクター線 */
.career__step::before {
	content: "";
	position: absolute;
	left: 23px;
	top: 56px;
	bottom: 0;
	width: 1px;
	background-color: #c6c6c8;
}

.career__step:last-of-type::before {
	display: none;
}

.career__step-num {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #0C1A45;
	color: #fff;
	font-family: "Cormorant Garamond", serif;
	font-size: 20px;
	line-height: 1;
}

/* 到達点（リーダー）は赤アクセント */
.career__step:last-of-type .career__step-num {
	background-color: #FF1C4A;
}

.career__step-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-top: 4px;
}

.career__step-period {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #FF1C4A;
}

.career__step-title {
	font-size: 24px;
	line-height: 1.3;
	font-weight: 400;
}

.career__step-text {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	line-height: 1.8;
	text-align: justify;
}

@media (width > 1024px) {
	.career__step-title {
		font-size: 28px;
	}
}

/* ===== 研修内容の説明ブロック ===== */
.train-detail {
    margin-top: 40px;
    padding: 32px 24px;
    background-color: #F9F4F4;
}

.train-detail__title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #0C1A45;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #0C1A45;
}

.train-detail__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.train-detail__row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.train-detail__label {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #FF1C4A;
    font-weight: 700;
}

.train-detail__value {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

.train-detail__note {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #d8cccc;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 1.9;
    text-align: justify;
    color: #33333B;
}

@media (width > 1024px) {
    .train-detail {
        padding: 40px;
        margin-top: 56px;
    }

    .train-detail__row {
        flex-direction: row;
        align-items: baseline;
        gap: 24px;
    }

    .train-detail__label {
        min-width: 90px;
        flex-shrink: 0;
    }
}

/* 作業服＆道具：写真2枚を横並び */
.train-detail__photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.train-detail__photos .train-detail__photo {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .train-detail__photos {
        gap: 10px;
    }
}