@charset "utf-8";

/* common
-------------------------------------------------------------------*/
:root {
  --color-text: #333;
  --color-muted: #666;
  --color-orange: #E01E00/*#ff5035*/;
  --color-black: #1a1a1a;
  --color-line: #e6e6e6;
  --font-base: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  background: #fbfbfb;
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 1.6rem;
  line-height: 1.8;
}

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

a {
  transition: opacity 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #111;
  outline-offset: 4px;
}

.path a:focus-visible,
.site-footer__inner a:focus-visible {
  outline: 2px solid #FFF;
  outline-offset: 4px;
}

.pc{display: block!important;}
.sp{display: none!important;}


/* header
-------------------------------------------------------------------*/
.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 8px 14px;
  background: #111;
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 65px;
  background: #fbfbfb;
}

.site-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 32px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  width: 164px;
  min-width: 164px;
}

.site-logo img {
  width: 164px;
}

.global-nav {
  margin-left: auto;
}

.global-nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
  width: auto;
}

.global-nav a,
.contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-text);
  font-size: 1.4rem;
  font-weight: 700;
}

.contact-link {
  position: relative;
  justify-content: space-between;
  width: 209px;
  height: 65px;
  margin-left: 44px;
  padding-left: 35px;
  padding-right: 25px;
  background: #111;
  color: #fff;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.menu-toggle,
.sp-menu {
  display: none;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 445px);
  min-height: 74px;
  padding: 0 42px 0 44px;
  color: currentColor;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  clip-path: polygon(5.5% 0, 100% 0, 94% 100%, 0 100%);
}

.button span,
.contact-link span {
  position: relative;
  z-index: 1;
  display: block;
  width: 22px;
  height: 12px;
  border-top: 1px solid currentColor;
  transform: translateY(4px);
}

.button span::before,
.button span::after,
.contact-link span::before,
.contact-link span::after {
  content: "";
  position: absolute;
	top: -1px;
  right: 0;
  width: 12px;
  border-top: 1px solid currentColor;
  transform-origin: right center;
}

.button span::before,
.contact-link span::before {
  transform: rotate(45deg);
}

.button span::after,
.contact-link span::after {
  transform: rotate(-45deg);
}

.button--primary {
  border: 0;
  background: transparent;
  color: #fff;
  isolation: isolate;
  clip-path: none;
}

.button--primary::before,
.button--primary::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.button--primary::before {
  inset: 0;
  z-index: -2;
  background: var(--color-orange);
  clip-path: polygon(5.5% 0, 100% 0, 94% 100%, 0 100%);
}

.button--primary::after {
  inset: 1px;
  z-index: -1;
  background: var(--color-orange);
  clip-path: polygon(5.5% 0, 100% 0, 94% 100%, 0 100%);
}

.button--outline {
  min-height: 58px;
  border: 0;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(var(--color-line), var(--color-line)) border-box;
  color: var(--color-text);
  font-size: 1.6rem;
  clip-path: none;
}

.button--outline::before,
.button--outline::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.button--outline::before {
  inset: 0;
  z-index: -2;
  background: var(--color-black);
  clip-path: polygon(8% 0, 100% 0, 91% 100%, 0 100%);
}

.button--outline::after {
  inset: 1px;
  z-index: -1;
  background: #fff;
  clip-path: polygon(8% 0, 100% 0, 91% 100%, 0 100%);
}

.button--outline {
  isolation: isolate;
}

.button--outline > span {
  z-index: 2;
}

.button--orange {
  width: 288px;
  color: var(--color-orange);
}

.button--orange::before {
  background: #ffb4a9;
}

.button--small {
  width: 282px;
  min-height: 54px;
  padding-inline: 30px;
  font-size: 1.6rem;
}


/* Animations
-------------------------------------------------------------------*/
.button,
.contact-link,
.contact-form__submit,
.news-detail__nav a,
.news-archive__categories a,
.news-archive__pagination a {
  transition: color 0.35s ease, border-color 0.35s ease, background-position 0.35s ease, opacity 0.2s ease;
}

.contact-link,
.contact-form__submit {
  background-image: linear-gradient(90deg, #fff 50%, var(--color-orange) 50%);
  background-size: 200% 100%;
  background-position: right center;
}

.button--primary::after {
  background-image: linear-gradient(90deg, #fff 50%, var(--color-orange) 50%);
  background-size: 200% 100%;
  background-position: right center;
  transition: background-position 0.35s ease;
}

.button--primary:hover,
.button--primary:focus-visible
/*.contact-form__submit:hover,
.contact-form__submit:focus-visible*/ {
  color: var(--color-orange);
  opacity: 1;
}

.button--primary:hover::after,
.button--primary:focus-visible::after {
  background-position: left center;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background-position: left center;
}

.contact-link {
  background-image: linear-gradient(90deg, #fff 50%, #111 50%);
}

.contact-link:hover,
.contact-link:focus-visible {
  color: #111;
  background-position: left center;
}

.contact-link:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px var(--color-orange), inset 0 0 0 5px #fff;
}

.button--outline::after {
  background-image: linear-gradient(90deg, #111 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: right center;
  transition: background-position 0.35s ease;
}

.button--outline:hover,
.button--outline:focus-visible {
  color: #fff;
}

.button--outline:hover::after,
.button--outline:focus-visible::after {
  background-position: left center;
}

.button--orange::after {
  background-image: linear-gradient(90deg, var(--color-orange) 50%, #fff 50%);
}

.button--orange:hover,
.button--orange:focus-visible {
  color: #fff;
}

.news-detail__nav a,
.news-archive__categories a,
.news-archive__pagination a {
  background-image: linear-gradient(90deg, #111 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: right center;
}

.news-detail__nav a:hover,
.news-detail__nav a:focus-visible,
.news-archive__categories a:hover,
.news-archive__categories a:focus-visible,
.news-archive__pagination a:hover,
.news-archive__pagination a:focus-visible {
  color: #fff;
  border-color: #111;
  background-position: left center;
}

.news-archive__categories a.is-active {
  background-image: linear-gradient(90deg, #fff 50%, var(--color-orange) 50%);
  background-size: 200% 100%;
  background-position: right center;
}

.news-archive__categories a.is-active:hover,
.news-archive__categories a.is-active:focus-visible {
  color: var(--color-orange);
  border-color: var(--color-orange);
  background-position: left center;
}

.js-heading-reveal {
  max-width: 100%;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  opacity: 0;
}

h1.js-heading-reveal,
h2.js-heading-reveal,
.hero__lead.js-heading-reveal,
.hero__en.js-heading-reveal,
.section-title p.js-heading-reveal,
.service-heading p.js-heading-reveal {
	width: 100%;
  display: inline-block;
}

.js-heading-reveal.is-animated {
  -webkit-animation: heading-flow-in 0.9s cubic-bezier(0.76, 0, 0.24, 1) forwards;
  animation: heading-flow-in 0.9s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.js-fadeup {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.js-fadeup.is-animated {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heading-flow-in {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  1% {
    opacity: 1;
  }

  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-heading-reveal,
  .js-heading-reveal.is-animated,
  .js-fadeup,
  .js-fadeup.is-animated {
    -webkit-clip-path: none;
    clip-path: none;
    opacity: 1;
    transform: none;
    -webkit-animation: none;
    animation: none;
    transition: none;
  }
}


/* Hero
-------------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #fbfbfb url("../img/bg_hero.jpg") no-repeat center / cover;
	display: grid;
	align-items: center;
}

.hero.page {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
	display: grid;
	align-items: center;
}

.hero.page.service01 {background: #fbfbfb url("../img/ph_service01.png") no-repeat center / cover;}
.hero.page.service02 {background: #fbfbfb url("../img/ph_service02.png") no-repeat center / cover;}

.hero__content {
	position: relative;
	width: 1200px;
	margin: 0 auto;
  padding-bottom: 64px;
}

.hero h1 {
	position: relative;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1.4;
	z-index: 1;
}

.page h1{
  font-size: 6.2rem;
  font-weight: 700;
	padding-top: 100px;
	
}

.hero__lead {
  margin-top: 10px;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.45;
}

.page .hero__lead {
  margin-top: 15px;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-orange);
}

.hero__en {
  margin-top: 18px;
  color: #757575;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
}

.page .hero__en {
  position: absolute;
  left: 0;
  top: 25px;
	padding: 2px;
  color: transparent;
  font-family: 'adam cg pro';
  color: #fbfbfb;
  font-size: 9.3rem;
  font-weight: 900;
  line-height: 1;
  text-shadow:
		1px 1px 0px #D1D1D1,
		-1px 1px 0px #D1D1D1,
		1px -1px 0px #D1D1D1,
		-1px -1px 0px #D1D1D1,
		1px 0px 0px #D1D1D1,
		-1px 0px 0px #D1D1D1,
		0px 1px 0px #D1D1D1,
		0px -1px 0px #D1D1D1;
  white-space: nowrap;
	z-index: 0;
}

.hero__text {
  margin-top: 52px;
  color: #575757;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
}

.page .hero__text {
	width: 530px;
  margin-top: 20px;
  font-size: 1.8rem;
}

.hero .button {
  margin-top: 82px;
}

.page .button {
  margin-top: 25px;
}

.hero.about {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  color: #fff;
}

.hero.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/bg_hero_about.jpg") center right / cover no-repeat;
  pointer-events: none;
}

.hero__content__about {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 1200px;
	min-height: 400px;
  margin: 0 auto;
}

.hero__en__about {
  position: absolute;
  left: 0;
  top: 100px;
	padding: 2px;
  color: transparent;
  font-family: "adam cg pro";
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  color: #1A1A1A;
	text-shadow: 
     1px  1px 0px #393939,
    -1px  1px 0px #393939,
     1px -1px 0px #393939,
    -1px -1px 0px #393939,
     1px  0px 0px #393939,
    -1px  0px 0px #393939,
     0px  1px 0px #393939,
     0px -1px 0px #393939;
  white-space: nowrap;
}

.hero.about h1 {
  position: relative;
  margin-top: 12px;
  font-size: 6.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.hero.about.contact h1 {
  margin-top: 0;
}

.hero.about.contact .hero__en__about {
  top: 50px;
}


/* Path
-------------------------------------------------------------------*/
.path{
	padding: 10px 0 15px 0;
	background: #111;
}

.path ul{
	width: 1200px;
	margin: 0 auto;
	list-style: none;
	line-height: 1.0;
	font-size: 1.4rem;
	color: #FFF;
	display: flex;
}

.path ul li a{
	position: relative;
	font-weight: 700;
	color: #FFF;
	text-decoration: underline;
}

.path ul li:has(a)::after{
	padding: 0 0.5em;
	transform: scale(0.8, 2);
	font-weight: 100;
	content: ">";
	text-decoration: none;
	display: inline-block;
}


/* Clients
-------------------------------------------------------------------*/
.clients {
	position: relative;
  overflow: hidden;
  padding: 46px 34px 32px;
  background: #fff;
}

.clients__heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto 24px;
}

.clients__heading span {
  height: 1px;
  background: linear-gradient(90deg, transparent, #111 50%, transparent);
  opacity: 0.35;
}

.clients__heading h2 {
  color: #6b6b6b;
  font-size: 1.6rem;
  font-weight: 700;
}

.marquee-control {
  display: flex;
  justify-content: flex-end;
}

.clients__control {
	position: absolute;
	top: 40px;
	right: 34px;
}

.marquee-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 118px;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid #1a1a1a;
  border-radius: 999px;
  background: #fff;
  color: #1a1a1a;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.marquee-toggle:hover,
.marquee-toggle:focus-visible {
  background: #1a1a1a;
  color: #fff;
}

.marquee-toggle:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
}

.marquee-toggle--dark {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.marquee-toggle--dark:hover,
.marquee-toggle--dark:focus-visible {
  border-color: var(--color-orange);
  background: var(--color-orange);
  color: #fff;
}

.marquee-toggle__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.marquee-toggle__icon::before,
.marquee-toggle__icon::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 4px;
  height: 12px;
  background: currentColor;
  transition: transform 0.25s ease, width 0.25s ease, height 0.25s ease, background-color 0.25s ease;
}

.marquee-toggle__icon::before {
  left: 2px;
}

.marquee-toggle__icon::after {
  right: 2px;
}

.marquee-toggle[aria-pressed="true"] .marquee-toggle__icon::before {
  left: 3px;
  top: 1px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
  background: transparent;
}

.marquee-toggle[aria-pressed="true"] .marquee-toggle__icon::after {
  opacity: 0;
}

.clients__list {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  max-width: none;
  margin: 0 auto;
  animation: clients-marquee var(--marquee-duration, 28s) linear infinite;
  will-change: transform;
}

.clients__list li {
  display: flex;
  justify-content: center;
  width: 170px;
  flex-shrink: 0;
}

.clients__list img {
  max-height: 115px;
  object-fit: contain;
}

.clients__list.is-paused,
.photo__list.is-paused {
  animation-play-state: paused;
}

@keyframes clients-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(var(--marquee-distance, calc(50% + 20px)) * -1));
  }
}


/* Vision
-------------------------------------------------------------------*/
.vision {
  overflow: hidden;
  padding: 150px 30px 120px;
  background: var(--color-black);
  color: #fff;
  text-align: center;
}

.vision__inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}

.vision__word {
  position: absolute;
  left: 50%;
  top: -80px;
	padding: 2px;
  transform: translateX(-50%);
  /*color: transparent;*/
	font-family:'adam cg pro';
  color: #1A1A1A;
  font-size: 15rem;
  font-weight: 900;
  line-height: 1;
  /*-webkit-text-stroke: 1px #393939;
  text-stroke: 1px #393939;*/
	text-shadow: 
     1px  1px 0px #393939,
    -1px  1px 0px #393939,
     1px -1px 0px #393939,
    -1px -1px 0px #393939,
     1px  0px 0px #393939,
    -1px  0px 0px #393939,
     0px  1px 0px #393939,
     0px -1px 0px #393939;
  white-space: nowrap;
}

.vision h2 {
  position: relative;
	margin-bottom: 20px;
  color: var(--color-orange);
  font-size: 6.4rem;
  font-weight: 700;
}

.vision p:not(.vision__word) {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
}

.vision__control {
  max-width: 100%;
  margin: 50px auto 0;
	justify-content: center;
}

.vision__control + .photo__list {
  margin-top: 24px;
}

.vision__photo {
  display: block;
  width: 100%;
  margin-top: 104px;
}

.photo__list {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  max-width: none;
  margin-top: 100px;
  animation: photo-marquee var(--marquee-duration, 70s) linear infinite;
  will-change: transform;
}

.photo__list li {
  flex-shrink: 0;
  width: 425px;
  height: 440px;
	margin: 0 -30px;
  overflow: hidden;
  clip-path: polygon(25% 0, 100% 0, 75% 100%, 0 100%);
}

.photo__list img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

@keyframes photo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(var(--marquee-distance, calc(50% + 45px)) * -1));
  }
}

.section {
  padding: 128px 24px;
  background: #fff;
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.news__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 116px;
}

.service-card__figure::before,
.recruit::before {
  content: "";
  position: absolute;
  z-index: 2;
	width: 100%;
	height: 100%;
}

.section-title p,
.service-card__en {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  color: var(--color-muted);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
}

.service-card__en{
  padding-left: 0;	
}

.section-title p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 22px;
  background: var(--color-orange);
  clip-path: polygon(65% 0, 100% 0, 35% 100%, 0 100%);
  transform: translateY(-50%);
}

.section-title h2 {
  font-size: 4.2rem;
  font-weight: 700;
}

.section-title .button {
  margin-top: 84px;
}

.section-title--wide {
  margin-bottom: 126px;
}

.section-title--wide h2 {
  margin-bottom: 28px;
}

.section-title__text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
}

.news__list {
  display: grid;
  gap: 0;
  list-style: none;
  counter-reset: none;
}

.news__list li {
  margin: 0;
  border-bottom: 1px solid var(--color-line);
}

.news__list li:first-child {
  border-top: 1px solid var(--color-line);
}

.news__list a {
	padding: 0.8em 0;
  display: grid;
  grid-template-columns: 90px 125px 1fr;
  align-items: center;
  gap: 32px;
  min-height: 85px;
  color: var(--color-text);
}

.news__list time {
	font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

.news__list span.cate {
  display: inline-flex;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid #ffb4a9;
  color: var(--color-orange);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.news__list span {
  font-size: 1.7rem;
  font-weight: 700;
}

.service {
  position: relative;
  min-height: 400vh;
  padding: 120px 0 0;
  background: #fbfbfb;
}

.service__stage {
  display: contents;
}

.service__stage .section-title--wide {
  margin-bottom: 0;
}

.service__slider {
  position: sticky;
  top: 0;
  height: 100vh;
  margin-top: 48px;
  overflow: hidden;
}

.service__track {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.service__nav {
  position: absolute;
  left: clamp(18px, 4vw, 30px);
  top: 50%;
  z-index: 10;
  display: grid;
  gap: 64px;
  transform: translateY(-50%);
}

.service__nav-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
  width: 72px;
  height: 20px;
  border: 0;
  background: transparent;
  color: #737373;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: color 0.25s ease;
}

.service__nav-button:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 26px;
  width: 1px;
  height: 52px;
  background: #737373;
  transition: background-color 0.25s ease;
}

.service__nav-button::before {
  content: "";
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: currentColor;
  outline: 0 solid transparent;
  outline-offset: 0;
  transition: background-color 0.25s ease, outline-color 0.25s ease, outline-width 0.25s ease;
}

.service__nav-button.is-active {
  color: var(--color-orange);
}

.service__nav-button.is-active::before {
  background: var(--color-orange);
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
}

.service__nav-button.is-complete::after {
  background: var(--color-orange);
}

.service__nav-button span {
  position: relative;
  z-index: 1;
}

.service-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  min-height: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.72s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.32s ease;
  will-change: transform, opacity;
}

.service-card.is-active {
  pointer-events: auto;
}

.service01{background: url("../img/ph_service01.png") no-repeat center / contain;}
.service02{background: url("../img/ph_service02.png") no-repeat center / contain;}
.service03{background: url("../img/ph_service03.png") no-repeat center / contain;}

.service-card + .service-card {
  margin-top: 0;
}

.service-card__body{
	position: relative;
  z-index: 2;
	width: 1200px;
	margin: 0 auto;
}

.service-card__en {
  margin-bottom: 5px;
  color: var(--color-orange);
  font-size: 2rem;
}

.service-card h3 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.45;
}

.service-card__lead {
  margin-top: 32px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.75;
}

.service-card__body > p:not(.service-card__en, .service-card__lead) {
  margin-top: 32px;
  font-size: 1.8rem;
  line-height: 1.8;
}

.service-card .button {
  margin-top: 30px;
}

.service-card__number {
  position: absolute;
  left: 48%;
  top: -1.2em;
  z-index: 3;
  color: var(--color-orange);
	font-family:'adam cg pro';
  font-size: 16rem;
  font-weight: 900;
  line-height: 1;
}

.service03 .service-card__number {
  top: -1.05em;
}

.message {
  padding-top: 168px;
  padding-bottom: 192px;
}

.section-title--compact {
  margin-bottom: 88px;
}

.message__grid {
  display: grid;
  grid-template-columns: 530px 1fr;
  gap: 100px;
}

.message__photo img {
  width: 420px;
}

.message__body h3 {
  margin-bottom: 36px;
  font-size: 2.8rem;
  font-weight: 700;
}

.message__body p {
  margin-top: 22px;
  font-size: 1.8rem;
  line-height: 2;
}

.message__name {
  text-align: right;
  font-weight: 700;
}


/* Service
-------------------------------------------------------------------*/
.service-content {
  background: #fff;
}

.service-section {
  padding: 120px 24px;
}

.service-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.service-heading {
  margin-bottom: 50px;
}

.service-heading p {
  position: relative;
  margin-bottom: 25px;
  padding-left: 30px;
  color: #737373;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.service-heading p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 29px;
  background: var(--color-orange);
  clip-path: polygon(65% 0, 100% 0, 35% 100%, 0 100%);
  transform: translateY(-50%);
}

.service-heading h2 {
  color: var(--color-text);
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.service-heading--dark p {
  color: #737373;
}

.service-heading--dark h2 {
  color: #fff;
}

.service-features {
  padding-top: 120px;
  padding-bottom: 128px;
  background: var(--color-black);
  color: #fff;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
  list-style: none;
}

.feature-list li {
  position: relative;
  min-height: 260px;
	margin: 0;
}

.feature-card__number {
	position: relative;
  margin-bottom: 30px;
	margin-left: 30px;
  color: var(--color-orange);
  font-family: "adam cg pro";
  font-size: 8.4rem;
  font-weight: 900;
  line-height: 0.9;
}

.feature-card__number span{
	position: relative;
	z-index: 1;
}

.feature-card__number::after{
	position: absolute;
	top: 0.1em;
	left: 0.05em;
	padding: 2px;
  display: block;
  color: var(--color-black);
	text-shadow: 
     1px  1px 0px var(--color-orange),
    -1px  1px 0px var(--color-orange),
     1px -1px 0px var(--color-orange),
    -1px -1px 0px var(--color-orange),
     1px  0px 0px var(--color-orange),
    -1px  0px 0px var(--color-orange),
     0px  1px 0px var(--color-orange),
     0px -1px 0px var(--color-orange);
  white-space: nowrap;
  font-size: 8.4rem;
  font-weight: 900;
  line-height: 0.9;
	z-index: 0;
}

.feature-card__number.number01::after{content: "01";}
.feature-card__number.number02::after{content: "02";}
.feature-card__number.number03::after{content: "03";}

.feature-card__number::before {
  content: "";
  position: absolute;
  width: 4px;
  background: var(--color-orange);
  transform: skewX(-12deg);
  transform-origin: top center;
}

.feature-card__number::before {
  left: -10px;
  top: 0;
  height: 95px;
}

.feature-list h3 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.7;
}

.feature-list p:not(.feature-card__number) {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
}


/* Service01 Content
-------------------------------------------------------------------*/
.service01-flow {
  background: #fff;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 52px;
  list-style: none;
}

.flow-list li {
  position: relative;
  margin: 0;
  padding: 25px 20px;
  border: 1px solid #e0e0e0;
  background: #fff;
}

.flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -36px;
  top: 86px;
  width: 18px;
  height: 18px;
  border-top: 1px solid var(--color-orange);
  border-right: 1px solid var(--color-orange);
  transform: rotate(45deg);
}

.flow-list li:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -39px;
  top: 94.5px;
  width: 24px;
  border-top: 1px solid var(--color-orange);
}

.flow-card__icon {
  position: relative;
  width: 72px;
  height: 76px;
  margin-bottom: 18px;
}

.flow-card__icon img {
	width: auto;
	height: 100%;
}

.flow-card__number {
  position: absolute;
  right: 15px;
  top: 0;
  color: rgba(255, 80, 53, 0.2);
  font-family: "adam cg pro", "Helvetica Neue", Arial, sans-serif;
  font-size: 6.4rem;
  font-weight: 900;
  line-height: 1;
}

.flow-list h3 {
  color: var(--color-text);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.4;
}


/* Service02 Content
-------------------------------------------------------------------*/
.service02-section__inner--split {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 90px;
}

.curriculum-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  list-style: none;
}

.curriculum-list li {
  position: relative;
  min-height: 236px;
	margin: 0;
  padding: 20px;
  border: 1px solid #e0e0e0;
  background: #fff;
}

.curriculum-list li:nth-child(n + 7):nth-child(-n + 9) {
  min-height: 201px;
}

.curriculum-card__head {
  display: flex;
  align-items: flex-end;
  margin-bottom: 32px;
  color: var(--color-orange);
  font-family: "adam cg pro", "Helvetica Neue", Arial, sans-serif;
  line-height: 1;
}

.curriculum-card__head span {
  display: block;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.curriculum-card__head strong {
  display: block;
  margin-left: 8px;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--color-orange);
  font-size: 4.8rem;
  font-weight: 400;
}

.curriculum-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 143px;
  min-height: 33px;
  margin-bottom: 20px;
  padding: 5px 18px 6px;
  background: var(--color-orange);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
}

.curriculum-card__text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
}

.service02-cases {
  background: #f8f8f8;
}

.case-list {
  display: grid;
  gap: 0;
  list-style: none;
  counter-reset: none;
}

.case-list li {
  margin: 0;
  border-bottom: 1px solid var(--color-line);
}

.case-list li:first-child {
  border-top: 1px solid var(--color-line);
}

.case-list a {
  display: grid;
  grid-template-columns: 90px 150px 1fr;
  align-items: center;
  gap: 25px;
  min-height: 83px;
  color: var(--color-text);
}

.case-list time {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

.case-list span.cate {
  display: inline-flex;
  justify-content: center;
  padding: 7px;
  border: 1px solid #ffb4a9;
  color: var(--color-orange);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.case-list span {
  font-size: 1.7rem;
  font-weight: 700;
}

.coming-soon{
	color: #737373;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
	display:grid;
	place-content:center;
}

.price-panel {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 90px;
  align-items: start;
}

.price-panel__amount {
  padding-top: 55px;
}

.price-panel__amount p {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 8px solid var(--color-orange);
}

.price-panel__amount strong {
  color: var(--color-text);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 7.5rem;
  font-weight: 700;
  line-height: 0.9;
}

.price-panel__amount span {
  margin-bottom: 4px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.25;
}

.price-panel__amount span span{
	color: #737373;
}

.price-panel__include h3 {
  margin-bottom: 18px;
  color: #737373;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.price-panel__include li {
  position: relative;
  padding: 21px 0 21px 48px;
  border-top: 1px solid #e0e0e0;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.6;
}

.price-panel__include li:last-child {
  border-bottom: 1px solid #e0e0e0;
}

.price-panel__include li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 32px;
  height: 32px;
  background: var(--color-orange);
}

.price-panel__include li::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 30px;
  width: 14px;
  height: 8px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
}

/* About
-------------------------------------------------------------------*/
.about-content {
  background: #fff;
}

.about-vision {
  padding: 120px 0;
  background: #fbfbfb;
}

.about-vision__inner {
	min-height: 700px;
  background: #fbfbfb url("../img/ph_about_vision.png") no-repeat center right / cover;
	display: grid;
	align-content: center;
}

.about-vision__body {
  position: relative;
  width: 1200px;
  margin: 0 auto;
	padding-right: 610px;
}

.about-vision__word {
  position: absolute;
  left: 0;
  top: -75px;
	padding: 2px;
  color: transparent;
  font-family: "adam cg pro";
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
  color: #FBFBFB;
	text-shadow: 
     1px  1px 0px #9C9C9C,
    -1px  1px 0px #9C9C9C,
     1px -1px 0px #9C9C9C,
    -1px -1px 0px #9C9C9C,
     1px  0px 0px #9C9C9C,
    -1px  0px 0px #9C9C9C,
     0px  1px 0px #9C9C9C,
     0px -1px 0px #9C9C9C;
}

.about-vision h2 {
  position: relative;
  margin-bottom: 42px;
  color: var(--color-orange);
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.45;
}

.about-vision__body p:not(.about-vision__word) {
  color: var(--color-text);
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.1;
}

.about-service-section {
  padding-top: 116px;
  padding-bottom: 118px;
}

.about-service-section .section-title--wide,
.about-company-section .section-title--wide {
  margin-bottom: 70px;
}

.about-service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  list-style: none;
}

.about-service-list li {
  min-width: 0;
}

.about-service-list a {
  position: relative;
  display: block;
  min-height: 322px;
  padding: 24px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: var(--color-text);
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.about-service-list a:hover,
.about-service-list a:focus-visible {
  border-color: var(--color-orange);
  transform: translateY(-4px);
}

.about-service-card__en {
  margin-bottom: 14px;
  color: var(--color-orange);
  font-family: "adam cg pro";
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
}

.about-service-list h3 {
  margin-bottom: 20px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.28;
}

.about-service-card__lead {
  margin-bottom: 18px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}

.about-service-card__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.85;
}

.about-service-card__number {
  position: absolute;
  right: 15px;
  top: 13px;
	padding: 2px;
  color: var(--color-orange);
  font-family: "adam cg pro";
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 1;
  text-shadow: -6px -4px 0 var(--color-orange);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--color-orange);
  text-stroke: 1px var(--color-orange);
}

.about-company-section {
  padding-top: 115px;
  padding-bottom: 160px;
  background: #fbfbfb;
}

.about-company-list {
  margin: 0;
  border-top: 1px solid #e0e0e0;
}

.about-company-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  min-height: 75px;
  border-bottom: 1px solid #e0e0e0;
}

.about-company-list dt,
.about-company-list dd {
  margin: 0;
  color: var(--color-text);
  line-height: 1.8;
}

.about-company-list dt {
  font-size: 2rem;
  font-weight: 700;
}

.about-company-list dd {
  font-size: 1.8rem;
  font-weight: 500;
}

.about-map {
  margin: 90px 0 0 0;
}

.about-map iframe {
	width: 100%;
	height: 650px;
	margin-bottom: 10px;
}

.about-map a {
  color: var(--color-text);
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .about-vision__inner {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 48px));
    min-height: auto;
  }

  .about-vision__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .about-service-list {
    gap: 24px;
  }

  .about-service-list a {
    min-height: 360px;
  }
}



/* Contact Form
-------------------------------------------------------------------*/
.contact-page {
  padding: 70px 0 90px;
  background: #fff;
}

.contact-page__intro {
  width: 700px;
  margin: 0 auto 72px;
  text-align: center;
}

.contact-page__intro h2 {
  margin-bottom: 28px;
  color: var(--color-text);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.55;
}

.contact-page__intro p {
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.75;
}

.contact-form {
  width: min(700px, calc(100% - 48px));
  margin: 0 auto;
  padding: 62px 32px 56px;
  background: #fbfbfb;
}

.contact-form__field {
  margin: 0 0 46px;
}

.contact-form__field label,
.contact-form__field legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--color-text);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}

.contact-form__field legend {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.contact-form__field legend span:not(.contact-form__badge) {
  font-size: 1.4rem;
}

.contact-form__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 22px;
  padding: 2px 8px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.contact-form__badge--required {
  background: var(--color-orange);
}

.contact-form__badge--optional {
  background: #d8d8d8;
  color: var(--color-text);
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
  display: block;
  width: 100%;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 1.8rem;
  font-weight: 500;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"] {
  height: 53px;
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9d9d9d;
  opacity: 1;
}

.contact-form__field--checks {
  padding: 0;
  border: 0;
}

.contact-form__check-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-form__check-list label,
.contact-form__agree {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  cursor: pointer;
  color: var(--color-text);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

.contact-form input[type="checkbox"] {
  appearance: none;
  display: inline-grid;
  place-content: center;
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin: 0;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #f1f1f1;
}

.contact-form input[type="checkbox"]::before {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px) scale(0);
  transition: transform 0.15s ease;
}

.contact-form input[type="checkbox"]:checked {
  border-color: #2f5ab8;
  background: #2f5ab8;
}

.contact-form input[type="checkbox"]:checked::before {
  transform: rotate(-45deg) translate(1px, -1px) scale(1);
}

.contact-form__privacy {
  margin-top: -22px;
  padding: 18px 12px;
  background: #fff;
}

.contact-form__privacy h3 {
  margin-bottom: 12px;
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.contact-form__privacy p {
  color: var(--color-text);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
}

.contact-form__privacy a {
  color: #2457b8;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form__agree {
  display: flex;
  justify-content: center;
  width: max-content;
  margin: 30px auto 26px;
  /*font-size: 2rem;*/
}

.contact-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 283px;
  height: 54px;
  margin: 0 auto;
  border: 1px solid var(--color-orange);
  background: var(--color-orange);
  color: #fff;
  font-family: var(--font-base);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  opacity: 0.82;
}

.wpcf7-list-item,
.wpcf7-form-control-wrap{
	display: block!important;
}

.contact-form__agree .wpcf7-list-item-label{
	display: none!important;
}

.contact-form__agree .wpcf7-list-item label{
	display: grid;
	justify-content: center;
}

/*.contact-form__agree .wpcf7-form-control-wrap {
  position: absolute!important;
}

.contact-form__agree .wpcf7-not-valid-tip{
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 1em;
}*/

.wpcf7-response-output{
  left: 0;
  right: 0;
  max-width: 700px;
  margin: 0 auto!important;
}


p:has(.contact-form__agree){
  text-align: center;
}

.contact-form__agree {
  position: relative;
  margin: 0 auto;
  padding: 0 2em;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  max-width: 100%;
  margin-bottom: 3.5em;
}

.contact-form__agree > br {
  display: none;
}

.contact-form__agree > .wpcf7-form-control-wrap {
  position: static;
  flex: 0 0 auto;
}

.contact-form__agree .wpcf7-list-item {
  margin: 0;
}

.contact-form__agree .wpcf7-not-valid-tip {
  position: absolute;
  top: calc(100% + 0.4em);
  left: 0;
  width: 100%;
  margin: 0;
  font-size: 0.8em;
  font-weight: normal;
  line-height: 1.5;
  white-space: normal;
}









/* Thanks Contact Form
-------------------------------------------------------------------*/
.contact-form .contact-form__thanks {
  text-align: center;
}

.contact-form .contact-form__thanks-icon {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: #FFE0DB;
}

.contact-form .contact-form__thanks-icon::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 15px;
  width: 25px;
  height: 13px;
  border-left: 2px solid var(--color-orange);
  border-bottom: 2px solid var(--color-orange);
  transform: rotate(-45deg);
}

.contact-form .contact-form__thanks h3 {
  margin: 0 0 24px;
  color: var(--color-text);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.contact-form .contact-form__thanks p {
  margin: 0;
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
}

.contact-form .contact-form__back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 283px;
  height: 54px;
  margin: 42px auto 0;
  background: var(--color-orange);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.2s ease;
}



/* Privacy
-------------------------------------------------------------------*/
.contact-page__privacy {
  width: 700px;
  margin: 0 auto 72px;
}

.contact-page__privacy h2{
  margin: 3.5rem 0 1.2rem 0;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
}

.contact-page__privacy h2 span{
  padding-right: 0.5em;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 2.2rem;
  color: var(--color-orange);
}

.contact-page__privacy p {
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
}

.contact-page__privacy ul{
	margin-bottom: 1.6rem;
  border-top: 1px solid #e0e0e0;
}

.contact-page__privacy ul li{
	position: relative;
  padding: 16px 0 16px 1.5em;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  flex-wrap: wrap;
}

.contact-page__privacy ul li:before{
	position: absolute;
	left: 0;
  padding-right: 0.5em;
  content: "■";
  color: var(--color-orange);
}

.contact-page__privacy ul li ol{
	display: block;
	width: 100%;
	margin-top: 0.8em;
	margin-left: 1.5em;
	list-style: decimal!important;
}

.contact-page__privacy ul li ol li{
	margin: 0;
  padding: 0;
  border-bottom: none;
	list-style: decimal!important;
	display: list-item;
	
}

.contact-page__privacy ul li ol li:before{
	display: none;
}

.contact-page__privacy div {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  min-height: 75px;
  border-bottom: 1px solid #e0e0e0;
}

.contact-page__privacy dt,
.contact-page__privacy dd {
  margin: 0;
  color: var(--color-text);
  line-height: 1.8;
}

.contact-page__privacy dt {
  font-size: 1.8rem;
}

.contact-page__privacy dd {
  font-size: 1.8rem;
}

.contact-form.privacy{
	padding: 0;
	background: none;
}


/* News Archive
-------------------------------------------------------------------*/
.contact-page--news {
  padding: 122px 0 120px;
  background: #fff;
}

.contact-page__news {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.news-archive__categories {
  margin-bottom: 56px;
}

.news-archive__categories h2 {
  margin-bottom: 18px;
  color: #737373;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.news-archive__categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: auto;
  list-style: none;
}

.news-archive__categories a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 38px;
  padding: 6px 20px;
  border: 1px solid var(--color-text);
  background: #fff;
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.news-archive__categories a.is-active,
.news-archive__categories a:hover,
.news-archive__categories a:focus-visible {
  border-color: var(--color-orange);
  background: var(--color-orange);
  color: #fff;
}

.news-archive__list {
  list-style: none;
}

.news-archive__list li {
  border-bottom: 1px solid #e0e0e0;
}

.news-archive__list li a {
  position: relative;
  display: grid;
  grid-template-columns: 104px 135px 1fr 28px;
  align-items: center;
  gap: 32px;
  min-height: 84px;
  color: var(--color-text);
  text-decoration: none;
}

.news-archive__list li a:hover p,
.news-archive__list li a:focus-visible p {
  color: var(--color-orange);
}

.news-archive__list li time {
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.news-archive__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 35px;
  padding: 5px 10px;
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}

.news-archive__list li p {
  min-width: 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.55;
  transition: color 0.2s ease;
}

.news-archive__arrow {
  position: relative;
  display: block;
  width: 20px;
  height: 12px;
	margin-top: 10px;
  justify-self: end;
  color: var(--color-orange);
  border-top: 1px solid currentColor;
}

.news-archive__arrow::before,
.news-archive__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -1px;
  width: 10px;
  border-top: 1px solid currentColor;
  transform-origin: right center;
}

.news-archive__arrow::before {
  transform: rotate(45deg);
}

.news-archive__arrow::after {
  transform: rotate(-45deg);
}

.news-archive__pagination {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.news-archive__pagination a,
.news-archive__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 36px;
  margin-left: -1px;
  border: 1px solid var(--color-text);
  background: #fff;
  color: var(--color-text);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.news-archive__pagination span[aria-current="page"] {
  /*border-color: var(--color-orange);*/
  background: var(--color-orange);
  color: #fff;
}

.news-archive__pagination a:hover,
.news-archive__pagination a:focus-visible {
  position: relative;
  z-index: 1;
  border-color: var(--color-orange);
  color: var(--color-orange);
}



/* News Detail
-------------------------------------------------------------------*/
.news-detail {
  width: 700px;
  margin: 0 auto;
  padding: 48px 0 90px;
  background: #fff;
}

.news-detail__header {
  margin-bottom: 44px;
}

.news-detail__header h1 {
  margin-bottom: 18px;
  color: var(--color-text);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.45;
}

.news-detail__meta {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.news-detail__meta a {
	color: #333;
}

.news-detail__meta time {
  color: var(--color-text);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
	color: #818181;
}

.news-detail__meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 9px;
  border: 1px solid var(--color-text);
  color: var(--color-text);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.news-detail__main-image {
  margin: 0 0 56px;
}

.news-detail img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

.news-detail__body h2 {
  margin: 54px 0 24px;
  color: var(--color-text);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.55;
}

.news-detail__body h2:first-child {
  margin-top: 0;
}

.news-detail__body p {
  margin-bottom: 26px;
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
}

.news-detail__body figure {
  margin: 28px 0 28px;
}

.news-detail__body figcaption {
  margin-top: 10px;
  color: #737373;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}

.news-detail__body ul {
  display: grid;
  gap: 10px;
  width: auto;
  margin: 6px 0 28px;
  list-style: none;
}

.news-detail__body li {
  position: relative;
  padding-left: 1em;
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
}

.news-detail__body li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.news-detail__body li strong {
  color: var(--color-orange);
  font-weight: 700;
}

.news-detail__note {
  margin: 34px 0 !important;
  padding: 18px 20px;
  background: #f3f3f3;
}

.news-detail__footer {
  margin-top: 56px;
}

.news-detail__contact {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: underline!important;
  text-underline-offset: 3px;
}

.news-detail__nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 44px;
  border-top: 1px solid #e0e0e0;
}

.news-detail__nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 44px;
  padding: 14px 22px;
  border: 1px solid var(--color-text);
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.news-detail__nav a:hover,
.news-detail__nav a:focus-visible {
  color: #FFF;
}

.news-detail__nav-prev::before,
.news-detail__nav-next::after {
  content: none;
}

.news-detail__nav-arrow {
  position: relative;
  display: block;
  width: 20px;
  height: 12px;
  color: currentColor;
  border-top: 1px solid currentColor;
}

.news-detail__nav-arrow::before,
.news-detail__nav-arrow::after {
  content: "";
  position: absolute;
  top: -1px;
  width: 10px;
  border-top: 1px solid currentColor;
  transform-origin: right center;
}

.news-detail__nav-arrow--next {
	margin-top: 12px;
  margin-left: 14px;
}

.news-detail__nav-arrow--next::before,
.news-detail__nav-arrow--next::after {
  right: 0;
}

.news-detail__nav-arrow--next::before {
  transform: rotate(45deg);
}

.news-detail__nav-arrow--next::after {
  transform: rotate(-45deg);
}

.news-detail__nav-arrow--prev {
	margin-top: -10px;
  margin-right: 14px;
  transform: rotate(180deg);
}

.news-detail__nav-arrow--prev::before,
.news-detail__nav-arrow--prev::after {
  right: 0;
}

.news-detail__nav-arrow--prev::before {
  transform: rotate(45deg);
}

.news-detail__nav-arrow--prev::after {
  transform: rotate(-45deg);
}



/* Recruit(TOP)
-------------------------------------------------------------------*/
.recruit {
  position: relative;
  min-height: 900px;
  overflow: hidden;
	background:#1A1A1A url("../img/bg_recruit.jpg") no-repeat right center / contain;
  color: #fff;
	display: flex;
}

@media (max-width: 1440px) {
.recruit {
	background:#1A1A1A url("../img/bg_recruit.jpg") no-repeat right -10vw center / cover;
}
}

.recruit__content {
  position: absolute;
	left: 0;
	right: 0;
	width: 1200px;
	margin: 0 auto;
	padding-top: 240px;
	display: grid;
	align-items: center;
  z-index: 3;
}

.recruit__bg__top{
	position: relative;
	width: 100%;
	margin: 5% 0;
	background: url("../img/ph_recruit_top.png") no-repeat center right / contain;
}

.recruit__en {
  position: absolute;
  left: 0;
  top: 140px;
	padding: 2px;
	font-family:'adam cg pro';
  color: #1A1A1A;
  font-size: 16rem;
  font-weight: 900;
  line-height: 1;
	text-shadow: 
     1px  1px 0px #393939,
    -1px  1px 0px #393939,
     1px -1px 0px #393939,
    -1px -1px 0px #393939,
     1px  0px 0px #393939,
    -1px  0px 0px #393939,
     0px  1px 0px #393939,
     0px -1px 0px #393939;
  white-space: nowrap;
}

.recruit h2 {
  margin-bottom: 32px;
  font-size: 4.8rem;
  font-weight: 700;
	z-index: 1;
}

.recruit p:not(.recruit__en) {
  margin-top: 22px;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
}

.recruit .button {
  margin-top: 48px;
}


/* Contact
-------------------------------------------------------------------*/
.contact {
  position: relative;
  min-height: 900px;
  overflow: hidden;
	background:#1A1A1A url("../img/bg_recruit.jpg") no-repeat right center / contain;
  color: #fff;
	display: flex;
}

@media (max-width: 1440px) {
.contact {
	background:#1A1A1A url("../img/bg_recruit.jpg") no-repeat right -10vw center / cover;
}
}

.contact__content {
  position: absolute;
	left: 0;
	right: 0;
	width: 1200px;
	margin: 0 auto;
	padding-top: 240px;
	display: grid;
	align-items: center;
  z-index: 3;
}

.contact__bg__service01{
	position: relative;
	width: 100%;
	margin: 5% 0;
	background: url("../img/ph_contact_service01.png") no-repeat center right / contain;
}

.contact__bg__service02{
	position: relative;
	width: 100%;
	margin: 5% 0;
	background: url("../img/ph_contact_service02.png") no-repeat center right / contain;
}

.contact__bg__about{
	position: relative;
	width: 100%;
	margin: 5% 0;
	background: url("../img/ph_recruit_top.png") no-repeat center right / contain;
}

.contact__en {
  position: absolute;
  left: 0;
  top: 140px;
	padding: 2px;
	font-family:'adam cg pro';
  color: #1A1A1A;
  font-size: 13rem;
  font-weight: 900;
  line-height: 1;
	text-shadow: 
     1px  1px 0px #393939,
    -1px  1px 0px #393939,
     1px -1px 0px #393939,
    -1px -1px 0px #393939,
     1px  0px 0px #393939,
    -1px  0px 0px #393939,
     0px  1px 0px #393939,
     0px -1px 0px #393939;
  white-space: nowrap;
}

.contact h2 {
	width: 610px;
  margin-bottom: 32px;
  font-size: 4.8rem;
  font-weight: 700;
	z-index: 1;
}

.contact .button {
  margin-top: 15px;
}


/* 404
-------------------------------------------------------------------*/
.contact-page__intro hgroup h1{
	margin: 20px auto 40px auto;
	padding: 2px;
  color: transparent;
  font-family: "adam cg pro";
  font-size: 16rem;
  font-weight: 400;
  line-height: 1;
  color: #FFF;
	text-shadow: 
     1px  1px 0px var(--color-orange),
    -1px  1px 0px var(--color-orange),
     1px -1px 0px var(--color-orange),
    -1px -1px 0px var(--color-orange),
     1px  0px 0px var(--color-orange),
    -1px  0px 0px var(--color-orange),
     0px  1px 0px var(--color-orange),
     0px -1px 0px var(--color-orange);
  white-space: nowrap;
}

.contact-page__intro hgroup h2{
	margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
}

.contact-page__intro .404 p{
	font-size: 1.9rem;
}


/* Footer
-------------------------------------------------------------------*/
.site-footer {
  padding: 112px 24px 108px;
  background: var(--color-black);
  color: #fff;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1.25fr;
  gap: 96px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer__brand img {
  width: 160px;
  margin-bottom: 58px;
}

.site-footer__brand p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
}

.site-footer__en {
  margin-top: 10px;
  color: #ff5035;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.8rem !important;
}

.site-footer small {
  display: block;
  margin-top: 90px;
  color: #9D9D9D;
  font-size: 1.2rem;
}

.footer-nav h2,
.company h2 {
  margin-bottom: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid #575757;
  color: #9b9b9b;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
}

.footer-nav li + li {
  margin-top: 18px;
}

.footer-nav a {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 1.5rem;
}

.footer-nav a::after {
  content: "→";
  color: #9b9b9b;
}

.company {
  color: #fff;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 2;
}

@media (max-width: 1100px) {
  .global-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 24px minmax(300px, 1fr) 1fr;
  }

  .hero__visual {
    inset-left: 46%;
  }

  .news__inner,
  .service02-section__inner--split,
  .price-panel,
  .message__grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .curriculum-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .feature-list {
    gap: 42px;
  }

  .feature-list li + li::before {
    left: -28px;
  }

  .flow-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 52px;
  }

  .flow-list li:not(:last-child)::before,
  .flow-list li:not(:last-child)::after {
    display: none;
  }

  .section-title .button {
    margin-top: 36px;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-card__figure {
    min-height: 420px;
  }

  .service-card__figure img {
    right: 0;
    width: 100%;
  }
}


