/*
Theme Name: 株式会社 ライフサポート.
Theme URL: 
Description: 
Author: 
Version: 1.0.01
Tags: 
License: 
License URI: 
*/
:root {
  --logo-width-desktop: 300px;
  --logo-width-tablet: 280px;
  --logo-width-mobile: 220px;
  --logo-width: var(--logo-width-desktop);
  --opening-bg: #4dab78;
  --opening-accent: #c30d23;
  --opening-text: #fff;
  --opening-z: 99999;
}

.opening-played .opening-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.opening-played body.has-opening-lock {
  overflow: auto;
}

.opening-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--opening-z);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}

.opening-overlay:not(.is-ready) .opening-inner,
.opening-overlay:not(.is-ready) .opening-skip {
  opacity: 0;
}

.opening-overlay::before,
.opening-overlay::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 50.5%;
  background: var(--opening-bg);
  transition:
    transform 1.7s cubic-bezier(0.22, 0.61, 0.36, 1),
    background-image 0s linear 0.6s;
}

.opening-overlay::before {
  top: 0;
}

.opening-overlay::after {
  bottom: 0;
}

.opening-overlay.is-revealing::before {
  background-image: linear-gradient(
    to bottom,
    var(--opening-bg) 0%,
    var(--opening-bg) calc(100% - 16px),
    rgba(255, 255, 255, 0.95) calc(100% - 16px),
    rgba(255, 255, 255, 0.95) calc(100% - 14px),
    var(--opening-bg) calc(100% - 14px),
    var(--opening-bg) calc(100% - 8px),
    rgba(255, 255, 255, 0.95) calc(100% - 8px),
    rgba(255, 255, 255, 0.95) calc(100% - 6px),
    var(--opening-bg) calc(100% - 6px),
    var(--opening-bg) calc(100% - 10px),
    var(--opening-bg) 100%
  );
}

.opening-overlay.is-revealing::after {
  background-image: linear-gradient(
    to bottom,
    var(--opening-bg) 0%,
    var(--opening-bg) 5px,
    rgba(255, 255, 255, 0.95) 5px,
    rgba(255, 255, 255, 0.95) 8px,
    var(--opening-bg) 8px,
    var(--opening-bg) 15px,
    rgba(255, 255, 255, 0.95) 15px,
    rgba(255, 255, 255, 0.95) 16px,
    var(--opening-bg) 16px,
    var(--opening-bg) 100%
  );
}

.opening-overlay.is-revealing::before {
  transition-delay: 0.6s;
  transform: translateY(-102%);
}

.opening-overlay.is-revealing::after {
  transition-delay: 0.6s;
  transform: translateY(102%);
}

.opening-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.opening-center-line {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 2px;
  width: 0;
  background: rgba(255, 255, 255, 0.95);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.opening-overlay.is-revealing .opening-center-line {
  opacity: 1;
  animation:
    opening-center-line 0.6s ease forwards,
    opening-center-line-fade 0.25s ease 0.6s forwards;
}

.opening-inner {
  width: min(88vw, 600px);
  font-family: "Kosugi Maru", sans-serif;
  color: var(--opening-text);
  text-align: center;
  position: relative;
  z-index: 1;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.opening-overlay.is-revealing .opening-inner,
.opening-overlay.is-revealing .opening-skip {
  opacity: 0;
  transform: translateY(8px);
}

.opening-mark {
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(1.4rem, 7.5vw, 3.2rem);
  letter-spacing: 0.04em;
  margin: 0;
  white-space: nowrap;
  color: var(--opening-text);
}

.opening-copy {
  font-size: clamp(1rem, 2.8vw, 1.35rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.75rem;
}

.opening-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px) scale(0.94);
  filter: blur(2px);
  animation: opening-char-in 0.9s ease forwards;
  animation-delay: var(--char-delay, calc(var(--char-index) * 0.12s));
}

.opening-line {
  width: 0;
  height: 4px;
  margin: 1rem auto;
  background: var(--opening-accent);
  animation: opening-line-grow 1.4s ease var(--opening-line-delay, 0.45s)
    forwards;
}

.opening-sub {
  margin: 0;
  opacity: 0;
  animation: opening-fade-up 1.1s ease var(--opening-sub-delay, 1.1s) forwards;
}

.opening-overlay:not(.is-ready) .opening-line,
.opening-overlay:not(.is-ready) .opening-sub,
.opening-overlay:not(.is-ready) .opening-char {
  animation-play-state: paused;
}

.opening-sub img {
  display: block;
  width: min(72vw, 260px);
  height: auto;
  margin: 0 auto;
}

.opening-skip {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border-radius: 50%;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  padding-left: 5px;
  cursor: pointer;
  z-index: 1;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    background 0.2s ease;
}

.opening-skip:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: #fff;
}

@keyframes opening-char-in {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.94);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes opening-line-grow {
  from {
    width: 0;
  }
  to {
    width: min(70vw, 260px);
  }
}

@keyframes opening-fade-up {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes opening-center-line {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: min(70vw, 520px);
    opacity: 1;
  }
}

@keyframes opening-center-line-fade {
  to {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .opening-overlay,
  .opening-overlay::before,
  .opening-overlay::after,
  .opening-inner,
  .opening-skip,
  .opening-line,
  .opening-sub,
  .opening-char {
    animation: none !important;
    transition: none !important;
  }

  .opening-char {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ------------------------------------------------------------------- 
 * ## links
 * ------------------------------------------------------------------- */
a {
  color: #c30d23;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus,
a:active {
  color: #544d9d;
}

a:hover,
a:active {
  outline: 0;
}

/* ===================================================================
 * # typography & general theme styles
 * 
 * ------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.subhead,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #333;
  -webkit-font-variant-ligatures: common-ligatures;
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  margin-top: 6rem;
  margin-bottom: 1.6rem;
}

@media screen and (max-width: 571px) {
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4 {
    margin-top: 5.6rem;
  }
}

h5,
.h5,
h6,
.h6 {
  margin-top: 4.8rem;
  margin-bottom: 1.2rem;
}

@media screen and (max-width: 571px) {
  h5,
  .h5,
  h6,
  .h6 {
    margin-top: 4.4rem;
    margin-bottom: 0.8rem;
  }
}

h1,
.h1 {
  font-size: 3.6rem;
  line-height: 1.222;
}

@media screen and (max-width: 571px) {
  h1,
  .h1 {
    font-size: 3.3rem;
  }
}

h2,
.h2 {
  font-size: 3.2rem;
  line-height: 1.25;
}

h3,
.h3 {
  font-size: 2.4rem;
  line-height: 1.167;
}

h4,
.h4 {
  font-size: 2.1rem;
  line-height: 1.333;
}

h5,
.h5 {
  font-size: 1.8rem;
  line-height: 1.333;
}

h6,
.h6 {
  font-size: 1.6rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}

p img {
  margin: 0;
}

p.lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.9rem;
  line-height: 1.833;
  margin-bottom: 3.6rem;
  color: #333;
}

@media screen and (max-width: 1024px) {
  p.lead {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 571px) {
  p.lead {
    font-size: 2.1rem;
  }
}

em,
i,
strong,
b {
  font-size: inherit;
  line-height: inherit;
}

em,
i {
  font-family: "LINE Seed JP", sans-serif;
  font-style: italic;
}

strong,
b {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
}

small {
  font-size: 1.2rem;
  line-height: inherit;
}

blockquote {
  margin: 4rem 0;
  padding: 4rem 4rem;
  border-left: 4px solid black;
  position: relative;
}

@media screen and (max-width: 571px) {
  blockquote {
    padding: 3.2rem 3.2rem;
  }
}

@media screen and (max-width: 400px) {
  blockquote {
    padding: 2.8rem 2.8rem;
  }
}

blockquote p {
  font-family: "LINE Seed JP", sans-serif;
  /* font-weight: 400; */
  padding: 0;
  font-size: 2.8rem;
  line-height: 1.857;
  color: #333;
}

@media screen and (max-width: 1024px) {
  blockquote p {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 571px) {
  blockquote p {
    font-size: 2.2rem;
  }
}

blockquote cite {
  display: block;
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  line-height: 1.333;
}

blockquote cite:before {
  content: "\2014 \0020";
}

blockquote cite,
blockquote cite a,
blockquote cite a:visited {
  color: #7e7e7e;
  border: none;
}

abbr {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  font-variant: small-caps;
  text-transform: lowercase;
  letter-spacing: 0.05rem;
  color: #7e7e7e;
}

var,
kbd,
samp,
code,
pre {
  font-family: "Zen Maru Gothic", sans-serif;
}

pre {
  padding: 2.4rem 3.2rem 3.2rem;
  background: #efefef;
  overflow-x: auto;
}

code {
  font-size: 1.4rem;
  margin: 0 0.2rem;
  padding: 0.4rem 0.8rem;
  white-space: nowrap;
  background: #efefef;
  border: 1px solid #d3d3d3;
  color: #333;
  border-radius: 3px;
}

pre > code {
  display: block;
  white-space: pre;
  line-height: 2;
  padding: 0;
  margin: 0;
}

pre.prettyprint > code {
  border: none;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
  text-decoration: none;
}

mark {
  background: #fff099;
  color: #333;
}

hr {
  border: solid #e0e0e0;
  border-width: 1px 0 0;
  clear: both;
  margin: 8rem 0 9.6rem;
  height: 0;
}

/* ------------------------------------------------------------------- 
 * ## Lists
 * ------------------------------------------------------------------- */
ol {
  list-style: decimal;
}

ul {
  list-style: disc;
}

li {
  display: list-item;
}

ol,
ul {
  margin-left: 1.6rem;
}

ul li {
  padding-left: 0.4rem;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 0.8rem 0 0.8rem 1.6rem;
}

ul.disc li {
  display: list-item;
  list-style: none;
  padding: 0 0 0 0.8rem;
  position: relative;
}

ul.disc li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c30d23;
  position: absolute;
  left: -16px;
  top: 11px;
  vertical-align: middle;
}

dt {
  margin: 0;
  color: #c30d23;
}

dd {
  margin: 0 0 0 2rem;
}

/* ------------------------------------------------------------------- 
 * ## responsive video container
 * ------------------------------------------------------------------- */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ------------------------------------------------------------------- 
 * ## floated image 
 * ------------------------------------------------------------------- */
img.h-pull-right {
  margin: 1.2rem 0 1.2rem 2.8rem;
}

img.h-pull-left {
  margin: 1.2rem 2.8rem 1.2rem 0;
}

/* ------------------------------------------------------------------- 
 * ## tables
 * ------------------------------------------------------------------- */
table {
  border-width: 0;
  width: 100%;
  max-width: 100%;
  font-family: "LINE Seed JP", sans-serif;
  border-collapse: collapse;
}

th,
td {
  padding: 1.5rem 3.2rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

th {
  color: #333;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* table */
.table {
  table-layout: fixed;
  width: 100%;
}

.table th {
  background: #fbfbfb;
  font-weight: bold;
  /* 折り返し最適解 */
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
  width: 30%;
}

.table th,
.table td {
  padding-left: 1rem;
  padding-top: 1rem;
  font-size: 1.6rem;
}

.contact-form .table th {
  padding-left: 25px;
}

@media screen and (max-width: 1280px) {
  .table tr {
    display: block;
    margin-bottom: 5px;
  }
  .table th,
  .table td {
    display: inline-block;
    width: 100% !important;
    padding-bottom: 1.5rem;
  }

  .table th {
    font-size: 1.8rem;
  }
  .table td {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 769px) {
  .table th {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 575px) {
  .table th {
    font-size: 1.4rem;
  }
  .table td {
    font-size: 1.05rem;
  }
}

/* ------------------------------------------------------------------- 
 * ## Spacing
 * ------------------------------------------------------------------- */
button,
.btn {
  margin-bottom: 1.6rem;
}

fieldset {
  margin-bottom: 1.6rem;
}

input,
textarea,
select,
pre,
blockquote,
figure,
table,
p,
ul,
ol,
dl,
form,
.video-container,
.ss-custom-select {
  margin-bottom: 3.2rem;
}

/* ===================================================================
 * # preloader
 *
 * ------------------------------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0b0a15;
  z-index: 500;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.no-js #preloader,
.oldie #preloader {
  display: none;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  padding: 0;
  display: inline-block;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

#loader > div {
  content: "";
  background: #fff;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}

#loader > div:nth-of-type(1) {
  left: 15px;
}

#loader > div:nth-of-type(3) {
  left: -15px;
}

/* dots jump */
.dots-jump > div {
  -webkit-animation: dots-jump 1.2s infinite ease;
  animation: dots-jump 1.2s infinite ease;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.dots-jump > div:nth-of-type(1) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.dots-jump > div:nth-of-type(3) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes dots-jump {
  0% {
    top: 0;
  }

  40% {
    top: -6px;
  }

  80% {
    top: 0;
  }
}

@keyframes dots-jump {
  0% {
    top: 0;
  }

  40% {
    top: -6px;
  }

  80% {
    top: 0;
  }
}

/* dots fade */
.dots-fade > div {
  -webkit-animation: dots-fade 1.6s infinite ease;
  animation: dots-fade 1.6s infinite ease;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.dots-fade > div:nth-of-type(1) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.dots-fade > div:nth-of-type(3) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes dots-fade {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 0.2;
  }

  80% {
    opacity: 1;
  }
}

@keyframes dots-fade {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 0.2;
  }

  80% {
    opacity: 1;
  }
}

/* dots pulse */
.dots-pulse > div {
  -webkit-animation: dots-pulse 1.2s infinite ease;
  animation: dots-pulse 1.2s infinite ease;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.dots-pulse > div:nth-of-type(1) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.dots-pulse > div:nth-of-type(3) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes dots-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(1.1);
    transform: scale(1.3);
  }

  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes dots-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(1.1);
    transform: scale(1.3);
  }

  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* ===================================================================
 * # forms
 *
 * ------------------------------------------------------------------- */
fieldset {
  border: none;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  display: block;
  height: 6.8rem;
  padding: 1.8rem 0 1.5rem;
  border: 0;
  outline: none;
  color: #333;
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1.6rem;
  line-height: 3.2rem;
  max-width: 100%;
  background: transparent;
  border-bottom: 1px solid #d3d3d3;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ss-custom-select {
  position: relative;
  padding: 0;
}

.ss-custom-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  margin: 0;
  line-height: 3rem;
  vertical-align: middle;
}

.ss-custom-select select option {
  padding-left: 2rem;
  padding-right: 2rem;
}

.ss-custom-select select::-ms-expand {
  display: none;
}

.ss-custom-select::after {
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  margin-top: -7px;
  pointer-events: none;
  position: absolute;
  right: 2.4rem;
  top: 50%;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

textarea {
  min-height: 25.6rem;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  color: #333;
  border-bottom: 1px solid #333;
}

label,
legend {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  line-height: 1.714;
  color: #333;
  display: block;
}

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

/* Custom checkbox (match radio style) */
.contact-form .agree label,
.contact-form .job-checks label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.contact-form .agree label {
  justify-content: center;
}

.contact-form .agree label::before,
.contact-form .job-checks label::before {
  content: "";
  width: 26px;
  height: 26px;
  border: 2px solid #dee5eb;
  border-radius: 6px;
  background: #fff;
  box-sizing: border-box;
  flex: 0 0 auto;
}

.contact-form .agree label::after,
.contact-form .job-checks label::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 8px;
  height: 14px;
  transform: translateY(-60%) rotate(45deg);
  border-right: 3px solid #2589d0;
  border-bottom: 3px solid #2589d0;
  opacity: 0;
}

.contact-form .agree label:has(:checked)::after,
.contact-form .job-checks label:has(:checked)::after {
  opacity: 1;
}

.contact-form .agree input[type="checkbox"],
.contact-form .job-checks input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}

label > .label-text {
  display: inline-block;
  margin-left: 1rem;
  font-family: "LINE Seed JP", sans-serif;
  line-height: inherit;
}

label > input[type="checkbox"],
label > input[type="radio"] {
  margin: 0;
  position: relative;
  top: 0.2rem;
}

/* ------------------------------------------------------------------- 
 * ## Style Placeholder Text
 * ------------------------------------------------------------------- */
::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #8c8c8c;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #8c8c8c;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #8c8c8c;
}

::placeholder {
  /* Most modern browsers support this now. */
  color: #8c8c8c;
}

.placeholder {
  color: #8c8c8c !important;
}

/* ------------------------------------------------------------------- 
 * ## Change Autocomplete styles in Chrome
 * ------------------------------------------------------------------- */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #000;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

/* ===================================================================
 * # buttons
 *
 * ------------------------------------------------------------------- */
.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.6rem;
  height: 6rem;
  line-height: 5.6rem;
  padding: 0 3.2rem;
  margin: 0 0.4rem 1.6rem 0;
  color: #333;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #d3d3d3;
  border: 0.2rem solid #d3d3d3;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.btn:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  background-color: #333;
  border-color: #333;
  color: #fff;
  outline: 0;
}

/* button primary
 * ------------------------------------------------- */
.btn.btn--primary,
button.btn--primary,
input[type="submit"].btn--primary,
input[type="reset"].btn--primary,
input[type="button"].btn--primary {
  background: #c30d23;
  border-color: #c30d23;
  color: #fff;
}

.btn.btn--primary:hover,
button.btn--primary:hover,
input[type="submit"].btn--primary:hover,
input[type="reset"].btn--primary:hover,
input[type="button"].btn--primary:hover,
.btn.btn--primary:focus,
button.btn--primary:focus,
input[type="submit"].btn--primary:focus,
input[type="reset"].btn--primary:focus,
input[type="button"].btn--primary:focus {
  background: #333;
  border-color: #333;
}

/* button modifiers
 * ------------------------------------------------- */
.more-link-right {
  display: table;
  margin-left: auto;
  margin-right: 0;
}

.btn.h-full-width,
button.h-full-width {
  width: 100%;
  margin-right: 0;
}

.btn--small,
button.btn--small {
  height: 5.6rem !important;
  line-height: 5.2rem !important;
}

.btn--medium,
button.btn--medium {
  height: 6.4rem !important;
  line-height: 6rem !important;
}

.btn--large,
button.btn--large {
  height: 6.8rem !important;
  line-height: 6.4rem !important;
}

.btn--stroke,
button.btn--stroke {
  background: transparent !important;
  border: 0.2rem solid #333;
  color: #333;
}

.btn--stroke:hover,
button.btn--stroke:hover {
  background: #333 !important;
  border: 0.2rem solid #333;
  color: #fff !important;
}

.btn--black,
button.btn--black {
  background: #333 !important;
  border: 0.2rem solid #333;
  color: #fff !important;
}

.btn--black:hover,
button.btn--black:hover {
  background: transparent !important;
  border: 0.2rem solid #333;
  color: #333 !important;
}

.btn--pill,
button.btn--pill {
  padding-left: 3.2rem !important;
  padding-right: 3.2rem !important;
  border-radius: 1000px !important;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* =================================================================== 
 * # additional components
 *
 * ------------------------------------------------------------------- */

/* ------------------------------------------------------------------- 
 * ## additional typo styles 
 * ------------------------------------------------------------------- */
.drop-cap:first-letter {
  float: left;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  font-size: 5.334em;
  line-height: 1;
  padding: 0 0.125em 0 0;
  text-transform: uppercase;
  background: transparent;
  color: #333;
}

/* line definition style 
 * ----------------------------------------------- */
.lining dt,
.lining dd {
  display: inline;
  margin: 0;
}

.lining dt + dt:before,
.lining dd + dt:before {
  content: "\A";
  white-space: pre;
}

.lining dd + dd:before {
  content: ", ";
}

.lining dd + dd:before {
  content: ", ";
}

.lining dd:before {
  content: ": ";
  margin-left: -0.2em;
}

/* dictionary definition style 
 * ----------------------------------------------- */
.dictionary-style dt {
  display: inline;
  counter-reset: definitions;
}

.dictionary-style dt + dt:before {
  content: ", ";
  margin-left: -0.2em;
}

.dictionary-style dd {
  display: block;
  counter-increment: definitions;
}

.dictionary-style dd:before {
  content: counter(definitions, decimal) ". ";
}

/** 
 * Pull Quotes
 * -----------
 * markup:
 *
 * <aside class="pull-quote">
 *    <blockquote>
 *      <p></p>
 *    </blockquote>
 *  </aside>
 *
 * --------------------------------------------------------------------- */
.pull-quote {
  position: relative;
  padding: 2.4rem 0;
}

.pull-quote blockquote {
  background-color: #efefef;
  border: none;
  margin: 0;
  padding-top: 9.6rem;
  position: relative;
}

.pull-quote blockquote:before {
  content: "";
  display: block;
  height: 3.2rem;
  width: 3.2rem;
  background-repeat: no-repeat;
  background: center center;
  background-size: contain;
  background-image: url(assets/images/icons/icon-quote.svg);
  position: absolute;
  top: 4rem;
  left: 4rem;
}

/** 
 * Stats Tab
 * ---------
 * markup:
 *
 * <ul class="stats-tabs">
 *    <li><a href="#">[value]<em>[name]</em></a></li>
 *  </ul>
 *
 * Extend this object into your markup.
 *
 * --------------------------------------------------------------------- */
.stats-tabs {
  padding: 0;
  margin: 3.2rem 0;
}

.stats-tabs li {
  display: inline-block;
  margin: 0 1.6rem 3.2rem 0;
  padding: 0 1.5rem 0 0;
  border-right: 1px solid #e0e0e0;
}

.stats-tabs li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

.stats-tabs li a {
  display: inline-block;
  font-size: 2.5rem;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  border: none;
  color: #333;
}

.stats-tabs li a:hover {
  color: #c30d23;
}

.stats-tabs li a em {
  display: block;
  margin: 0.8rem 0 0 0;
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  font-style: normal;
  color: #7e7e7e;
}

/* ------------------------------------------------------------------- 
 * ## skillbars
 * ------------------------------------------------------------------- */
.skill-bars {
  list-style: none;
  margin: 6.8rem 0 3.2rem;
}

.skill-bars li {
  height: 0.4rem;
  background: #c3c3c3;
  width: 100%;
  margin-bottom: 6.8rem;
  padding: 0;
  position: relative;
}

.skill-bars li strong {
  position: absolute;
  left: 0;
  top: -4rem;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 1.4rem;
  line-height: 2.4rem;
}

.skill-bars li .progress {
  background: #333;
  position: relative;
  height: 100%;
}

.skill-bars li .progress span {
  position: absolute;
  right: 0;
  top: -3.6rem;
  display: block;
  font-family: "LINE Seed JP", sans-serif;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  background: #333;
  padding: 0.8rem 0.8rem;
  border-radius: 3px;
}

.skill-bars li .progress span::after {
  position: absolute;
  left: 50%;
  bottom: -10px;
  margin-left: -5px;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: #333;
  content: "";
}

.skill-bars li .percent5 {
  width: 5%;
}

.skill-bars li .percent10 {
  width: 10%;
}

.skill-bars li .percent15 {
  width: 15%;
}

.skill-bars li .percent20 {
  width: 20%;
}

.skill-bars li .percent25 {
  width: 25%;
}

.skill-bars li .percent30 {
  width: 30%;
}

.skill-bars li .percent35 {
  width: 35%;
}

.skill-bars li .percent40 {
  width: 40%;
}

.skill-bars li .percent45 {
  width: 45%;
}

.skill-bars li .percent50 {
  width: 50%;
}

.skill-bars li .percent55 {
  width: 55%;
}

.skill-bars li .percent60 {
  width: 60%;
}

.skill-bars li .percent65 {
  width: 65%;
}

.skill-bars li .percent70 {
  width: 70%;
}

.skill-bars li .percent75 {
  width: 75%;
}

.skill-bars li .percent80 {
  width: 80%;
}

.skill-bars li .percent85 {
  width: 85%;
}

.skill-bars li .percent90 {
  width: 90%;
}

.skill-bars li .percent95 {
  width: 95%;
}

.skill-bars li .percent100 {
  width: 100%;
}

/* ------------------------------------------------------------------- 
 * ## alert box 
 * ------------------------------------------------------------------- */
.alert-box {
  padding: 2.4rem 4rem 2.4rem 3.2rem;
  position: relative;
  margin-bottom: 3.2rem;
  border-radius: 3px;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.6;
}

.alert-box__close {
  position: absolute;
  display: block;
  right: 1.6rem;
  top: 1.6rem;
  cursor: pointer;
  width: 12px;
  height: 12px;
}

.alert-box__close::before,
.alert-box__close::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 2px;
  height: 12px;
  top: 0;
  left: 5px;
}

.alert-box__close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.alert-box__close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.alert-box--error {
  background-color: #ffd1d2;
  color: #dd4043;
}

.alert-box--error .alert-box__close::before,
.alert-box--error .alert-box__close::after {
  background-color: #dd4043;
}

.alert-box--success {
  background-color: #c8e675;
  color: #637533;
}

.alert-box--success .alert-box__close::before,
.alert-box--success .alert-box__close::after {
  background-color: #637533;
}

.alert-box--info {
  background-color: #d5ebfb;
  color: #387fb2;
}

.alert-box--info .alert-box__close::before,
.alert-box--info .alert-box__close::after {
  background-color: #387fb2;
}

.alert-box--notice {
  background-color: #fff099;
  color: #827217;
}

.alert-box--notice .alert-box__close::before,
.alert-box--notice .alert-box__close::after {
  background-color: #827217;
}

/* ===================================================================
 * # Common and Reusable Styles
 *
 * ------------------------------------------------------------------- */
.wide {
  max-width: 1400px;
}

.wider {
  max-width: 1600px;
}

.narrow {
  max-width: 1000px;
}

.subhead {
  font-size: 1.8rem;
  line-height: 1.286;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin-top: 0;
  margin-bottom: 1rem;
  color: #c30d23;
}

.display-1 {
  font-size: 5rem;
  line-height: 1.333;
}

.section-intro {
  position: relative;
  margin-bottom: 12rem;
  overflow: visible;
}

.section-intro .display-1 {
  margin-top: 0;
}

.section-intro .subhead,
.section-intro .display-1 {
  position: relative;
  z-index: 1;
}

.section-intro::before {
  --data-num-size-pc: 17rem;
  --data-num-size-tablet: 13rem;
  --data-num-size-mobile: 7.25rem;
  content: attr(data-num);
  display: block;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 600;
  font-size: var(--data-num-size-pc);
  line-height: 1;
  letter-spacing: -0.045em;
  color: rgba(0, 0, 0, 0.06);
  position: absolute;
  top: -0.25rem;
  left: 4.4rem;
  max-width: 100%;
  white-space: nowrap;
  overflow: visible;
  overflow-wrap: normal;
  word-break: normal;
  pointer-events: none;
  z-index: 0;
}

.h-dark-bg {
  color: #fff;
}

.h-dark-bg p.lead {
  color: #fff;
}

.h-dark-bg .section-intro::before {
  color: rgba(255, 255, 255, 0.12);
}

.h-dark-bg .section-intro .display-1 {
  color: #fff;
}

.right-vert-line {
  width: 2px;
  height: 20rem;
  background-color: #c30d23;
  -webkit-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0);
  position: absolute;
  top: 0;
  right: 11.2rem;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * common and reusable styles
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .section-intro::before {
    font-size: var(--data-num-size-tablet);
    left: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .display-1 {
    font-size: 4.8rem;
  }
  .right-vert-line {
    right: 9rem;
  }
}

@media screen and (max-width: 820px) {
  .section-intro::before {
    font-size: var(--data-num-size-tablet);
    left: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .right-vert-line {
    height: 16rem;
    right: 6.2rem;
  }
}

@media screen and (max-width: 570px) {
  .subhead {
    font-size: 1.3rem;
  }

  .display-1 {
    font-size: 3.4rem;
  }

  .section-intro::before {
    font-size: var(--data-num-size-mobile);
    top: 1.5rem;
    left: 0.5rem;
  }

  .right-vert-line {
    height: 12rem;
    right: 5rem;
  }
}

@media screen and (max-width: 400px) {
  .section-intro {
    margin-bottom: 9.6rem;
  }
}

/* ===================================================================
 * # site header
 *
 * ------------------------------------------------------------------- */
.s-header {
  z-index: 100;
  width: 100%;
  height: 8.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 8rem;
  box-sizing: border-box;
  position: absolute;
  top: 4rem;
  left: 0;
}

body.is-internal {
  padding-top: 8.8rem;
}

.s-header.is-internal {
  background-color: #fff;
  opacity: 1;
  visibility: visible;
  position: fixed;
  top: 0;
  left: 0;
}

.s-header.is-internal .header-logo img {
  width: 100%;
  height: auto;
}

.s-header.is-internal .header-logo .logo-default {
  display: none;
}

.s-header.is-internal .header-logo .logo-sticky {
  display: inline-block;
}

.s-header.is-internal .header-content .btn {
  height: 4.8rem !important;
  line-height: 4.4rem !important;
  border-color: #333;
  color: #333;
}

.s-header.is-internal .header-content .btn:hover,
.s-header.is-internal .header-content .btn:focus {
  background-color: #333 !important;
  border-color: #333 !important;
  color: #fff;
}

.s-header.is-internal .header-nav a {
  color: rgba(0, 0, 0, 0.75);
}

.s-header.is-internal .header-nav a:hover,
.s-header.is-internal .header-nav a:focus,
.s-header.is-internal .header-nav a:active {
  color: #333;
}

.s-header.is-internal .header-menu-toggle {
  color: #333;
}

.s-header.is-internal .header-menu-toggle span,
.s-header.is-internal .header-menu-toggle span::before,
.s-header.is-internal .header-menu-toggle span::after {
  background-color: #333;
}

.s-header.is-internal .header-menu-toggle.is-clicked span::before,
.s-header.is-internal .header-menu-toggle.is-clicked span::after {
  background-color: #333;
}

.s-header.offset {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.s-header.scrolling {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.s-header.sticky {
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
}

.s-header.sticky .header-logo img {
  width: 100%;
  height: auto;
}

.header-logo .logo-sticky {
  display: none;
}

.s-header.sticky .header-logo .logo-default {
  display: none;
}

/* ------------------------------------------------------------------- 
 * ## phone modal
 * ------------------------------------------------------------------- */
.phone-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem;
}

.phone-modal.is-open {
  display: flex;
}

.phone-modal__dialog {
  position: relative;
  width: min(35rem, 70vw);
  min-height: 24rem;
  background: #fbfbfb;
  border-radius: 1.2rem;
  padding: 6rem 3.2rem 2.5rem;
  box-shadow: 0 2.4rem 6rem rgba(0, 0, 0, 0.2);
  text-align: center;
}

.phone-modal__dialog::before {
  content: "";
  position: absolute;
  inset: calc(0.8rem - 3px);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: calc(1.2rem - (0.8rem - 3px));
  pointer-events: none;
}

.phone-modal__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-direction: column;
  width: 100%;
}

.phone-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3.2rem;
  height: 3.2rem;
  border: 0;
  border-radius: 50%;
  background: #ebebeb;
  color: #333;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

.phone-modal__close-icon {
  width: 1.6rem;
  height: 1.6rem;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: block;
}

.phone-modal__eyebrow {
  margin: 0;
  font-weight: 500;
  font-size: 1.8rem;
  color: #333;
  border-bottom: 2px solid #c30d23;
  display: inline-block;
}

.phone-modal__number {
  margin: 0;
  font-weight: 600;
  font-size: 3.4rem;
}

.phone-modal__mail-text {
  margin: 0.5em 0 0;
  font-weight: 500;
  font-size: 1.8rem;
  color: #333;
  border-bottom: 2px solid #c30d23;
  display: inline-block;
}

.phone-modal__mail-btn {
  margin-top: 0;
  width: 95%;
}

.phone-modal__number a {
  color: inherit;
}

body.phone-modal-is-open {
  overflow: hidden;
}

.s-header.sticky .header-logo .logo-sticky {
  display: inline-block;
}

.s-header.sticky .header-content .btn {
  height: 4.8rem !important;
  line-height: 4.4rem !important;
  border-color: #333;
  color: #333;
}

.s-header.sticky .header-content .btn:hover,
.s-header.sticky .header-content .btn:focus {
  background-color: #333 !important;
  border-color: #333 !important;
  color: #fff;
}

.s-header.sticky .header-nav a {
  color: rgba(0, 0, 0, 0.75);
}

.s-header.sticky .header-nav a:hover,
.s-header.sticky .header-nav a:focus,
.s-header.sticky .header-nav a:active {
  color: #333;
}

.s-header.sticky .header-menu-toggle {
  color: #333;
}

.s-header.sticky .header-menu-toggle span,
.s-header.sticky .header-menu-toggle span::before,
.s-header.sticky .header-menu-toggle span::after {
  background-color: #333;
}

.s-header.sticky .header-menu-toggle.is-clicked span::before,
.s-header.sticky .header-menu-toggle.is-clicked span::after {
  background-color: #333;
}
.s-header.sticky.scrolling {
  opacity: 1;
  visibility: visible;
}

.header-content {
  height: 8.8rem;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* -------------------------------------------------------------------
 * ## header logo
 * ------------------------------------------------------------------- */
.header-logo {
  width: var(--logo-width);
  z-index: 101;
  display: inline-block;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: static;
  margin-right: 2.4rem;
}

.header-logo a {
  display: block;
  border: none;
  padding: 0;
  outline: 0;
}

.header-logo img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* -------------------------------------------------------------------
 * ## main navigation
 * ------------------------------------------------------------------- */
.header-nav-wrap {
  max-width: none;
  padding-left: 0;
  margin: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-nav {
  list-style: none;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem 1.2rem;
}

.header-nav a {
  color: #fff;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  line-height: 1.2;
}

.header-nav a:hover,
.header-nav a:focus {
  color: #fff;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #c30d23;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
}

.header-nav a:hover::after,
.header-nav a:focus::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.header-nav a.header-nav__link--group {
  position: relative;
  text-decoration: none;
  padding-bottom: 0.45em;
  display: inline-block;
  width: fit-content;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='6' viewBox='0 0 24 6'%3E%3Cpath d='M0 3 Q3 0 6 3 T12 3 T18 3 T24 3' fill='none' stroke='%23c30d23' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 24px 6px;
  background-position: 0 100%;
}

.header-nav a.header-nav__link--group::after {
  display: none;
}

.header-nav a.header-nav__link--group:hover,
.header-nav a.header-nav__link--group:focus {
  animation: header-wavy 1.2s linear infinite;
}

@keyframes header-wavy {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: 24px;
  }
}

.header-nav li {
  display: inline-block;
  padding-left: 0;
  margin: 0;
}

/* ------------------------------------------------------------------- 
 * ## mobile menu toggle
 * ------------------------------------------------------------------- */
.header-menu-toggle {
  z-index: 101;
  display: none;
  height: 4.2rem;
  width: 4.2rem;
  line-height: 4.2rem;
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #fff;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  right: 5.2rem;
  top: 1.6rem;
}

.header-menu-toggle:hover,
.header-menu-toggle:focus {
  color: #fff;
}

.header-menu-toggle span {
  display: block;
  width: 2.4rem;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  left: 0.9rem;
  right: auto;
  bottom: auto;
}

.header-menu-toggle span::before,
.header-menu-toggle span::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: inherit;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  left: 0;
}

.header-menu-toggle span::before {
  top: -0.9rem;
}

.header-menu-toggle span::after {
  bottom: -0.9rem;
}

.header-menu-toggle.is-clicked span {
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.header-menu-toggle.is-clicked span::before,
.header-menu-toggle.is-clicked span::after {
  background-color: white;
}

.header-menu-toggle.is-clicked span::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.header-menu-toggle.is-clicked span::after {
  bottom: 0;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

/* ------------------------------------------------------------------- 
 * ## download resume button
 * ------------------------------------------------------------------- */
.header-content .btn {
  border-color: #fff;
  color: #fff;
  margin: 0;
  padding: 0 4rem;
  font-size: 1.1rem;
  -webkit-transform: none;
  transform: none;
  position: static;
  margin-left: auto;
}

.header-content .btn:hover,
.header-content .btn:focus {
  background-color: #c30d23 !important;
  border-color: #c30d23 !important;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * header
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1700px) {
  .header-logo {
    margin-right: 3rem;
  }

  .header-nav-wrap {
    max-width: none;
    width: 100%;
    padding-left: 0;
  }

  .header-content .btn {
    margin-left: auto;
  }
}

@media screen and (max-width: 1000px) {
  .header-content .btn {
    height: 4.8rem !important;
    line-height: 4.4rem !important;
  }
}

@media screen and (max-width: 1280px) {
  :root {
    --logo-width: var(--logo-width-tablet);
  }

  .s-header.sticky {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .s-header.offset {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .s-header {
    top: 2rem;
    height: 8rem;
    display: block;
    padding: 0;
  }

  .header-logo {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    position: absolute;
    left: 0;
    top: 50%;
    width: var(--logo-width);
    z-index: 120;
  }

  .header-logo a {
    width: 100%;
  }

  .header-logo img {
    width: 100% !important;
    max-width: none;
    height: auto !important;
    object-fit: unset;
  }

  .s-header.sticky .header-logo img {
    width: 100% !important;
    height: auto !important;
    object-fit: unset;
  }

  .header-content {
    display: block;
    background-color: #050505;
    height: auto;
    width: 100%;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 12rem 6rem 4rem;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    position: absolute;
    top: -2rem;
    left: 0;
  }

  .header-content .btn {
    margin-top: 4.8rem;
    -webkit-transform: translate3d(0, -2rem, 0);
    transform: translate3d(0, -2rem, 0);
    opacity: 0;
    visibility: hidden;
    position: static;
  }

  .header-nav-wrap {
    padding: 0;
    -webkit-transform: translate3d(0, -2rem, 0);
    transform: translate3d(0, -2rem, 0);
    opacity: 0;
    visibility: hidden;
  }

  .header-nav {
    display: block;
    width: 100%;
    padding: 0;
  }

  .header-nav a {
    display: block;
  }

  .header-nav a.header-nav__link--group {
    display: inline-block;
    width: fit-content;
  }

  .s-header.sticky .header-nav a,
  .s-header.sticky .header-nav a:hover,
  .s-header.sticky .header-nav a:focus,
  .s-header.sticky .header-nav a:active {
    color: #fff;
  }

  .s-header.is-internal .header-nav a,
  .s-header.is-internal .header-nav a:hover,
  .s-header.is-internal .header-nav a:focus,
  .s-header.is-internal .header-nav a:active {
    color: #fff;
  }

  .s-header.sticky .header-content .btn {
    border-color: #fff;
    color: #fff;
  }

  .s-header.is-internal .header-content .btn {
    border-color: #fff;
    color: #fff;
  }

  .header-nav li {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: block;
    margin: 0;
  }

  .header-nav li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header-menu-toggle {
    z-index: 110;
    display: block;
  }

  .menu-is-open .s-header.sticky .header-logo .logo-default {
    display: inline-block;
  }

  .menu-is-open .s-header.sticky .header-logo .logo-sticky {
    display: none;
  }

  .menu-is-open .header-content {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.5s
      cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:
      transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
      -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .menu-is-open .header-content .btn {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    -webkit-transition-property:
      opacity,
      -webkit-transform;
    transition-property:
      opacity,
      -webkit-transform;
    transition-property: transform, opacity;
    transition-property:
      transform,
      opacity,
      -webkit-transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
  }

  .menu-is-open .header-nav-wrap {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }
}

@media screen and (max-width: 571px) {
  :root {
    --logo-width: var(--logo-width-mobile);
  }

  .header-logo {
    left: 0;
    width: var(--logo-width);
  }

  .header-logo a {
    width: 100%;
  }

  .header-logo img {
    width: 100% !important;
    max-width: none;
    height: auto !important;
    object-fit: unset;
  }

  .s-header.sticky .header-logo img {
    width: 100% !important;
    height: auto !important;
    object-fit: unset;
  }

  .header-menu-toggle {
    right: 3.2rem;
  }

  .header-content {
    padding: 11rem 3rem 3.2rem;
  }

  .header-content .btn {
    display: block;
  }
}

/* ===================================================================
 * # hero
 *
 * ------------------------------------------------------------------- */
.s-hero {
  width: 100%;
  height: 100vh;
  min-height: 82rem;
  overflow: hidden;
  background-color: transparent;
  position: relative;
}

.s-hero .hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.s-hero .hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s-hero::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(10%, black),
    to(rgba(0, 0, 0, 0))
  );
  background: linear-gradient(90deg, black 10%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.25;
  z-index: 1;
}

.s-hero::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    rgba(0, 0, 0, 0.28) 1px,
    rgba(0, 0, 0, 0) 1px
  );
  background-size: 3px 3px;
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}

.no-js .s-hero {
  background: #fff;
}

.hero-content {
  height: auto;
  max-width: none;
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
  padding: 0;
  position: absolute;
  left: 6rem;
  bottom: 0;
  z-index: 2;
}

.hero-content h1 {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 7rem;
  font-weight: 400;
  line-height: 1.257;
  padding-right: 3.2rem;
  margin-top: 0;
  color: #fff;
  position: relative;
}

.hero-content h1::before {
  content: "";
  display: block;
  height: 2px;
  width: 8rem;
  background-color: #c30d23;
  position: absolute;
  left: -10.8rem;
  top: 0.55em;
}

.hero-content span {
  color: #fff;
  font-family: "Klee One", cursive;
}

/* -------------------------------------------------------------------
 * ## hero social
 * ------------------------------------------------------------------- */
.hero-social {
  list-style: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 3.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  margin-top: 8rem;
  margin-left: 0.4rem;
  margin-bottom: 0;
  position: relative;
}

.hero-social a {
  color: #fff;
}

.hero-social a:hover,
.hero-social a:focus,
.hero-social a:active {
  color: #c30d23;
}

.hero-social li {
  padding-left: 0;
}

.hero-social li::after {
  content: "/";
  color: rgba(255, 255, 255, 0.1);
  margin-left: 0rem;
  margin-right: 1rem;
}

.hero-social li:last-child::after {
  display: none;
}

/* -------------------------------------------------------------------
 * ## hero scroll
 * ------------------------------------------------------------------- */
.hero-scroll {
  position: absolute;
  right: 8rem;
  bottom: 10rem;
  z-index: 2;
}

.hero-scroll::after {
  content: "";
  display: block;
  width: 2px;
  height: 7rem;
  background-color: rgba(198, 0, 0, 0.5);
  -webkit-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0);
  position: absolute;
  right: 50%;
  bottom: -10rem;
}

.hero-scroll .scroll-link,
.hero-scroll .scroll-link svg path {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hero-scroll .scroll-link {
  text-decoration: none;
  border: 0 none;
  display: block;
  height: 6.4rem;
  width: 6.4rem;
  border-radius: 50%;
  background-color: rgba(198, 0, 0, 0.5);
  margin: 0;
  position: relative;
}

.hero-scroll .scroll-link svg {
  height: 1.2rem;
  width: 1.2rem;
  position: absolute;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  left: 50%;
  top: 50%;
}

.hero-scroll .scroll-link svg path {
  fill: #fff;
}

.hero-scroll .scroll-link:hover,
.hero-scroll .scroll-link:focus {
  background-color: #c30d23;
}

/* -------------------------------------------------------------------
 * ## animate intro content
 * ------------------------------------------------------------------- */
html.ss-preload .hero-content {
  opacity: 0;
}

html.ss-loaded .hero-content {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

html.no-csstransitions .hero-content {
  opacity: 1;
}

/* ------------------------------------------------------------------- 
 * ## animations
 * ------------------------------------------------------------------- */

/* fade in */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* fade in left */
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* fade out */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }

  to {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }

  to {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

/* ------------------------------------------------------------------- 
 * responsive:
 * hero
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1800px) {
  .hero-content h1 {
    font-size: 6.3rem;
  }

  .hero-content h1::before {
    width: 6rem;
    left: -8.8rem;
  }
}

@media screen and (max-width: 1700px) {
  .hero-content {
    max-width: 1200px;
  }
}

@media screen and (max-width: 1500px) {
  .hero-content {
    max-width: 1000px;
  }
}

@media screen and (max-width: 1300px) {
  .hero-content {
    max-width: 1200px;
  }

  .hero-content h1 {
    font-size: 6rem;
    padding-top: 3.2rem;
  }

  .hero-content h1::before {
    width: 6rem;
    top: 0;
    left: 0;
  }
}

@media screen and (max-width: 1024px) {
  .hero-scroll {
    right: 6rem;
  }

  .hero-scroll::after {
    height: 8rem;
  }

  .hero-scroll .scroll-link {
    height: 6rem;
    width: 6rem;
  }
}

@media screen and (max-width: 1000px) {
  .hero-content h1 {
    font-size: 5.6rem;
  }

  .hero-social {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 820px) {
  .hero-content h1 {
    font-size: 4.8rem;
  }

  .hero-social {
    padding-right: 7.2rem;
  }

  .hero-scroll {
    right: 3.6rem;
  }

  .hero-scroll .scroll-link {
    height: 5.2rem;
    width: 5.2rem;
  }
}

@media screen and (min-width: 572px) and (max-width: 820px) {
  .hero-content {
    left: 0;
  }
}

@media screen and (max-width: 571px) {
  .hero-content {
    left: 1rem;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .hero-content h1 br {
    display: none;
  }

  .hero-social {
    font-size: 1rem;
  }

  .hero-scroll {
    right: 2.4rem;
  }
}

/* ===================================================================
 * # about section
 *
 * ------------------------------------------------------------------- */
.s-about {
  padding-bottom: 16rem;
  background-color: #fff;
  position: relative;
}

.s-about .right-vert-line {
  background-color: #c30d23;
}

.s-about__section--profile {
  padding-top: 28rem;
  padding-bottom: 4rem;
  min-height: 108rem;
  position: relative;
}

.s-about__section--profile::before {
  content: "";
  display: block;
  background-color: #fdeff2;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: calc(50% + 12vw);
}

.s-about__section--profile .row {
  position: relative;
}

.s-about__section--profile .profile-pic {
  width: 40vw;
  position: absolute;
  top: 8rem;
  left: calc(50% + 80px);
}

.s-about__section--profile .profile-pic video {
  display: block;
  width: 100%;
  height: auto;
}

/* ===================================================================
 * # recruit section
 *
 * ------------------------------------------------------------------- */
.s-recruit {
  /* padding-bottom: 16rem; */
  background-color: #fff;
  position: relative;
}

.s-recruit .right-vert-line {
  background-color: #c30d23;
}

.s-recruit__section--profile {
  padding-top: 28rem;
  padding-bottom: 4rem;
  min-height: 108rem;
  position: relative;
}

.s-recruit__section--profile::before {
  content: "";
  display: block;
  background-color: #dbebc4;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: calc(50% + 12vw);
}

.s-recruit__section--profile .row {
  position: relative;
}

.s-recruit__section--profile .profile-pic {
  width: 40vw;
  position: absolute;
  top: 8rem;
  left: calc(50% + 80px);
}

@media screen and (max-width: 1024px) {
  .s-recruit__section--profile {
    padding-top: 20rem;
    padding-bottom: 0;
    min-height: 0;
  }

  .s-recruit__section--profile::before {
    display: block;
    left: 0;
    right: calc(50% + 12vw);
  }

  .s-recruit__section--profile .profile-pic {
    display: block;
    width: 100%;
    max-width: 100%;
    position: static;
    margin: 2.4rem 0;
  }
}

@media screen and (max-width: 820px) {
  .s-recruit__section--profile {
    padding-top: 20rem;
    padding-bottom: 0;
    min-height: 0;
  }

  .s-recruit__section--profile::before {
    display: block;
    left: 0;
    right: calc(50% + 12vw);
  }

  .s-recruit__section--profile .profile-pic {
    display: block;
    width: 100%;
    max-width: 100%;
    position: static;
    margin: 2.4rem 0;
  }
}

/* ------------------------------------------------------------------- 
 * ## career position
 * ------------------------------------------------------------------- */
.work-positions {
  margin-top: 2rem;
}

.work-positions .column:nth-child(2n + 1) {
  padding-right: 40px;
}

.work-positions .column:nth-child(2n + 2) {
  padding-left: 40px;
}

.position {
  padding-top: 3.6rem;
  padding-bottom: 3.2rem;
  border-top: 1px solid #fdeff2;
}

.position__header {
  margin-bottom: 4rem;
}

.position__header h6 {
  font-family: "LINE Seed JP", sans-serif;
  line-height: 2.8rem;
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.position__header h6 .position__co {
  margin-right: 2rem;
}

.position__header h6 .position__pos {
  display: inline-block;
  font-size: 1.8rem;
  text-transform: none;
  letter-spacing: 0;
}

.position__timeframe {
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  color: #7e7e7e;
}
.font-mou {
  font-family: "Yuji Mai", serif;
  font-size: 2.2rem;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * about
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .s-about__section--profile::before {
    left: 75%;
  }

  .s-about__section--profile .profile-pic {
    /* width: 26vw;
    right: 0;
    left: auto; */
    display: block;
    width: 100%;
    max-width: 100%;
    position: static;
    margin: 2.4rem 0;
  }

  .work-positions .column:nth-child(2n + 1) {
    padding-right: 30px;
  }

  .work-positions .column:nth-child(2n + 2) {
    padding-left: 30px;
  }
}

@media screen and (max-width: 900px) {
  .work-positions .column:nth-child(n) {
    padding: 0 16px;
  }

  .position {
    padding-right: 8rem;
  }
}

@media screen and (max-width: 820px) {
  .s-about__section--profile {
    padding-top: 20rem;
    padding-bottom: 0;
    min-height: 0;
  }

  .s-about__section--profile::before {
    display: block;
    left: calc(50% + 12vw);
    right: 0;
  }

  .s-about__section--profile .profile-pic {
    display: block;
    width: 100%;
    max-width: 100%;
    position: static;
    margin: 2.4rem 0;
  }

  .position {
    padding-right: 0;
  }
}

@media screen and (max-width: 600px) {
  .work-positions .column:nth-child(n) {
    padding: 0 10px;
  }
}

@media screen and (max-width: 400px) {
  .work-positions .column:nth-child(n) {
    padding: 0;
  }
}

/* ===================================================================
 * # services section
 *
 * ------------------------------------------------------------------- */
.s-services {
  padding-top: 24rem;
  padding-bottom: 20rem;
  /* background-color: #f8f4e6; */
  background-image: url("assets/images/services-bg.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.s-services__content {
  position: relative;
}

.s-services__leftcol {
  padding-bottom: 12rem;
}

.s-services__leftcol p.lead {
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5rem;
  max-width: 90%;
}

.s-services .vert-line {
  width: 2px;
  height: 20rem;
  background-color: #c30d23;
  -webkit-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0);
  position: absolute;
  bottom: -20rem;
  left: 20px;
}

/* ------------------------------------------------------------------- 
 * ## services list
 * ------------------------------------------------------------------- */
.services-list {
  list-style: none;
  padding-left: 20px;
  margin: 8.8rem 0 0 0;
  counter-reset: ctr;
  background: rgba(255, 255, 255, 0.5);
}

.services-list h5 {
  color: #333;
}

.services-list__item {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-left: 0;
}

.services-list__item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.services-list__item-header {
  /* padding-top: 2.4rem;
  padding-bottom: 2.4rem; */
  padding-top: 1.9rem;
  padding-bottom: 1.9rem;
  padding-right: 6rem;
  cursor: pointer;
  position: relative;
}

.services-list__item-header h5 {
  font-family: "LINE Seed JP", sans-serif;
  /* font-weight: 400; */
  font-size: 2.8rem;
  padding-left: 1.555em;
  margin: 0;
  position: relative;
}

.services-list__item-header h5::before {
  content: "\F194";
  font-family: "bootstrap-icons";
  font-weight: 400;
  font-size: 1em;
  line-height: 0.5;
  color: #65a873;
  position: absolute;
  top: 0.42em;
  left: 0;
}

.services-list__item-header::after {
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  margin-top: -8px;
  pointer-events: none;
  position: absolute;
  right: 2.4rem;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.services-list__item-body {
  padding-top: 1.2rem;
  padding-left: 4rem;
  padding-right: 4rem;
  display: none;
}

.services-list__item-body p {
  font-size: 2.2rem;
  font-family: "LINE Seed JP", sans-serif;
}

.is-active .services-list__item-header::after {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.is-active .services-list__item-body {
  display: block;
}

.insurance-icons-row {
  margin: 4rem 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.insurance-icons-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - (1.2rem * 4)) / 5);
  max-width: calc((100% - (1.2rem * 4)) / 5);
}

.insurance-icons-row img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 125px;
  object-fit: contain;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * services
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .services-list {
    padding-left: 10px;
  }

  .insurance-icons-row {
    gap: 1rem;
  }

  .s-services .vert-line {
    height: 12rem;
    left: 16px;
  }

  .s-services__content .column {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .s-services__content .s-services__leftcol {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 0;
  }

  .s-services__content .s-services__leftcol p.lead {
    max-width: none;
  }

  .services-list {
    padding-left: 0;
    margin: 0;
  }

  .insurance-icons-row {
    gap: 0.9rem;
  }

  .insurance-icons-row a {
    width: calc((100% - (0.9rem * 4)) / 5);
    max-width: calc((100% - (0.9rem * 4)) / 5);
  }
}

@media screen and (max-width: 820px) {
  .s-services {
    padding-top: 20rem;
  }

  .s-services__content .s-services__leftcol {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .insurance-icons-row img {
    max-height: 145px;
  }

  .insurance-icons-row a {
    width: calc((100% - (0.9rem * 3)) / 4);
    max-width: calc((100% - (0.9rem * 3)) / 4);
  }
}

@media screen and (max-width: 571px) {
  .s-services .vert-line {
    left: 34px;
  }

  .services-list__item-header h5 {
    font-size: 3.2rem;
  }

  .insurance-icons-row {
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    margin: 6rem 0 0.8rem;
  }

  .insurance-icons-row img {
    width: min(78vw, 320px);
    max-height: none;
  }

  .insurance-icons-row a {
    width: min(78vw, 320px);
    max-width: min(78vw, 320px);
  }
}

@media screen and (max-width: 571px) {
  .services-list__item-header h5 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 400px) {
  .s-services .vert-line {
    left: 24px;
  }

  .services-list__item-header h5 {
    font-size: 2.8rem;
  }
}

/* ===================================================================
 * # customer
 *
 * ------------------------------------------------------------------- */
.s-customer {
  padding-top: 24rem;
  padding-bottom: 0;
  background-color: #fff;
  position: relative;
}

.s-customer::before {
  content: "";
  display: block;
  background-color: #dbebc4;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: calc(50% + 12vw);
}

.s-customer .vert-line {
  width: 2px;
  height: 20rem;
  background-color: #c30d23;
  -webkit-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0);
  position: absolute;
  top: 0;
  left: 16.8rem;
}

.s-customer .row {
  position: relative;
  z-index: 1;
}
/* ------------------------------------------------------------------- 
 * ## customer list
 * ------------------------------------------------------------------- */
.s-customer__list {
  max-width: 1240px;
}

.customer-item {
  position: relative;
  overflow: hidden;
}

.customer-item__caption {
  display: none;
}

/* thumbnail
 *---------------------------------------------- */
.customer-item__thumb a {
  display: block;
}

.customer-item__thumb a::before {
  z-index: 1;
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all, 0.5s;
  transition: all, 0.5s;
}

.customer-item__thumb a::after {
  z-index: 1;
  content: "+";
  font-family: "LINE Seed JP", sans-serif;
  /* font-weight: 300; */
  font-size: 3rem;
  color: #fff;
  display: block;
  height: 32px;
  width: 32px;
  line-height: 32px;
  margin-left: -16px;
  margin-top: -16px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition:
    all,
    0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition:
    all,
    0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: absolute;
  left: 50%;
  top: 50%;
}

.customer-item__thumb img {
  vertical-align: bottom;
}

/* customer info
 *---------------------------------------------- */
.customer-item__info {
  z-index: 2;
  padding: 0 3rem;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition:
    all,
    0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition:
    all,
    0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: absolute;
  left: 0;
  top: 3.6rem;
}

.customer-item__title {
  color: #fff;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.333;
  margin: 0;
}

.customer-item__cat {
  color: rgba(255, 255, 255, 0.5);
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0;
}

.customer-item__project-link {
  z-index: 2;
  display: block;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 2rem;
  color: #333;
  background-color: #fff;
  padding: 0.6rem 1.2rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition:
    all,
    0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition:
    all,
    0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: absolute;
  bottom: 3.9rem;
  left: 3rem;
}

.customer-item__project-link::before {
  display: block;
  content: "";
  height: 1px;
  width: 3rem;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 50%;
  left: -3rem;
}

.customer-item__project-link:hover,
.customer-item__project-link:focus,
.customer-item__project-link:active {
  background-color: #c30d23;
  color: #fff;
}

/* on hover
 *---------------------------------------------- */
.customer-item:hover .customer-item__thumb a::before {
  opacity: 1;
  visibility: visible;
}

.customer-item:hover .customer-item__thumb a::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.customer-item:hover .customer-item__project-link {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.customer-item:hover .customer-item__info {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * customer
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .s-customer::before {
    display: none;
  }

  .customer-item__thumb a::after {
    font-size: 2rem;
  }

  .customer-item__title {
    font-size: 1.8rem;
  }

  .customer-item__cat {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 820px) {
  .s-customer {
    padding-top: 20rem;
  }

  .s-customer::before {
    display: block;
    left: 0;
    right: calc(50% + 12vw);
  }

  .customer-item__thumb a::after {
    font-size: 3rem;
  }

  .customer-item__title {
    font-size: 2.1rem;
  }

  .customer-item__cat {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 571px) {
  .customer-item__thumb a::after {
    font-size: 2rem;
  }

  .customer-item__title {
    font-size: 1.8rem;
  }

  .customer-item__cat {
    font-size: 1.2rem;
  }
}

/* ===================================================================
 * # testimonials
 *
 * ------------------------------------------------------------------- */

.s-testimonials {
  padding-top: 14.4rem;
  padding-bottom: 16rem;
  background-color: #fff;
}

.testimonial-slider {
  position: relative;
}

.testimonial-slider p {
  font-family: "LINE Seed JP", sans-serif;
  /* font-weight: 400; */
  font-size: 1.7rem;
  line-height: 1.882;
  color: #333;
}

.testimonial-slider .slick-slide {
  outline: none;
  height: auto;
  display: flex;
}

.testimonial-slider .slick-track {
  display: flex;
}

.testimonial-slider .slick-dots {
  display: block;
  list-style: none;
  padding: 0;
  margin: 5.6rem 0 0 0;
  text-align: center;
}

.testimonial-slider .slick-dots li {
  display: inline-block;
  width: 27px;
  height: 27px;
  margin: 0;
  padding: 9px;
  cursor: pointer;
}

.testimonial-slider .slick-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  line-height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
}

.testimonial-slider .slick-dots li button:hover,
.testimonial-slider .slick-dots li button:focus {
  outline: none;
}

.testimonial-slider .slick-dots li.slick-active button,
.testimonial-slider .slick-dots li:hover button {
  background: #333;
}

.testimonial-slider__slide {
  position: relative;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-bottom: 8rem;
  /* border: 1px #ccc solid; */
  margin: 0 5px;
  background: #f8f4e6;
  border-radius: 5px;
}

.testimonial-slider__author {
  min-height: 7.2rem;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  margin-top: 0;
  padding-left: 8.8rem;
}

.testimonial-slider__avatar {
  width: 6.8rem;
  height: 6.8rem;
  border-radius: 100%;
  outline: none;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonial-slider__cite {
  display: block;
}

.testimonial-slider__cite strong,
.testimonial-slider__cite span {
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
}

.testimonial-slider__cite strong {
  font-size: 1.6rem;
  line-height: 1.75;
}

.testimonial-slider__cite span {
  display: block;
  font-size: 1.5rem;
  line-height: 1.333;
  color: rgba(0, 0, 0, 0.7);
}

/* ===================================================================
 * # news
 *
 * ------------------------------------------------------------------- */
.s-news {
  padding-top: 20rem;
  padding-bottom: 20rem;
  background-color: #fff;
  position: relative;
}

.s-news::before {
  content: "";
  display: block;
  background-color: #fdeff2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  /* left: 50%; */
  left: calc(50% + 12vw);
}

.s-news .row {
  position: relative;
  z-index: 1;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list__item {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  min-width: 0;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-list__date {
  min-width: 10rem;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #7e7e7e;
}

.news-list__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  margin-right: 0.4rem;
  padding: 0.15rem 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #c30d23;
  border: 1px solid currentColor;
  border-radius: 999px;
  vertical-align: middle;
}

.news-list__badge--placeholder {
  visibility: hidden;
}

.news-list__title {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 0.8rem;
  min-width: 0;
  font-size: 1.9rem;
  color: #333;
  font-family: "LINE Seed JP", sans-serif;
  margin-left: -20px;
}

.news-list__text {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list__arrow {
  margin-left: auto;
  color: #aaa;
  font-size: 2.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.news-list__title:hover .news-list__arrow,
.news-list__title:focus .news-list__arrow {
  transform: translateX(5px);
}

.news-list__title:hover,
.news-list__title:focus {
  color: #c30d23;
}

.news-list__title:active {
  color: #333;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * testimonials
 * ------------------------------------------------------------------- */
@media screen and (max-width: 820px) {
  .testimonial-slider__slide {
    text-align: center;
  }

  .testimonial-slider__author {
    display: inline-block;
  }
}

@media screen and (max-width: 400px) {
  .testimonial-slider__author {
    margin: 0;
    padding: 0;
  }

  .testimonial-slider__avatar {
    position: static;
    margin-bottom: 2.4rem;
  }
}

/* ===================================================================
 * # CTA
 *
 * ------------------------------------------------------------------- */
.s-cta {
  padding-top: 12rem;
  background-color: #fff;
  font-size: 2.2rem;
  line-height: 1.818;
  text-align: center;
  font-family: "LINE Seed JP", sans-serif;
}

.s-cta h2 {
  margin-top: 0;
}

.cta-content {
  max-width: 800px;
}

.cta-content .btn {
  max-width: 600px;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * cta
 * ------------------------------------------------------------------- */
@media screen and (max-width: 820px) {
  .s-cta {
    font-size: 2rem;
  }

  .cta-content {
    max-width: 600px;
  }
}

@media screen and (max-width: 571px) {
  .s-cta {
    font-size: 1.8rem;
  }
}

/* ===================================================================
 * # group section
 *
 * ------------------------------------------------------------------- */
.s-group {
  /* padding-bottom: 16rem; */
  background-color: #fff;
  position: relative;
}

.s-group .right-vert-line {
  background-color: #c30d23;
}

.s-group__section--profile {
  padding-top: 28rem;
  padding-bottom: 4rem;
  min-height: 108rem;
  position: relative;
}

.s-group__section--profile::before {
  content: "";
  display: block;
  background-color: #fdeff2;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: calc(50% + 12vw);
}

.s-group__section--profile .row {
  position: relative;
}

.s-group__section--profile .profile-pic {
  width: 40vw;
  position: absolute;
  top: 8rem;
  left: calc(50% + 80px);
}

.s-group__section--profile .group-map {
  margin-top: 3.2rem;
}

.s-group__section--profile .group-map img {
  display: block;
  width: 100%;
  height: auto;
}
/* ===================================================================
 * # footer
 *
 * ------------------------------------------------------------------- */
.s-footer {
  padding-top: 24rem;
  padding-bottom: 7rem;
  background-image: url("assets/images/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: #333;
}

.s-footer .right-vert-line {
  background-color: #c30d23;
}

.s-footer .display-1 {
  color: #333;
}

.s-footer a {
  color: #333;
}

.s-footer a:hover,
.s-footer a:focus {
  color: #c30d23;
}

.s-footer__bottom {
  font-family: "LINE Seed JP", sans-serif;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 0;
}

.s-footer .footer-email-us {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: nowrap;
}

.s-footer .footer-email-us .btn {
  margin-right: 0;
}

.s-footer .footer-email-us .btn:hover,
.s-footer .footer-email-us .btn:focus {
  background-color: #fff;
  border-color: #c30d23;
  color: #333;
}

.s-footer .footer-contacts {
  margin-top: 7.2rem;
  margin-left: 8.33333%;
}

.s-footer .footer-contacts h4 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.s-footer .footer-contacts .footer-h4-map {
  display: inline-block;
  margin-left: 0.6rem;
  padding: 0;
  font-size: 0.6em;
  line-height: 1.1;
  border: 0;
  color: #555;
  background: transparent;
  opacity: 0.9;
  vertical-align: middle;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

.s-footer .footer-contacts .footer-h4-map:hover,
.s-footer .footer-contacts .footer-h4-map:focus {
  color: #333;
  opacity: 1;
}

.footer-contacts p.lead {
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5rem;
  max-width: 90%;
}

.s-footer .right-vert-line {
  width: 2px;
  height: 20rem;
  background-color: #c30d23;
  -webkit-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0);
  position: absolute;
  top: 0;
  left: 11.2rem;
}

/* ===================================================================
 * # page section
 *
 * ------------------------------------------------------------------- */
.s-page,
.s-single,
.s-404 {
  padding: 16rem 0;
  background-color: #fff;
}

.s-page__section,
.s-single__section {
  position: relative;
}

.s-page::before {
  content: "";
  display: block;
  background-color: #fdeff2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  /* left: 50%; */
  left: calc(50% + 12vw);
}

.s-single::before {
  content: "";
  display: block;
  background-color: #dbebc4;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: calc(50% + 12vw);
}

.s-404 .page-header {
  margin-bottom: 2.4rem;
}

.s-page p {
  font-size: 14px;
}

/* ------------------------------------------------------------------- 
 * ## contact block
 * ------------------------------------------------------------------- */
.footer-contact-block {
  font-family: "LINE Seed JP", sans-serif;
  /* font-weight: 400; */
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.footer-contact-block:last-child {
  margin-bottom: 0;
}

.footer-contact-block a {
  color: #333;
}

.footer-contact-block a:hover,
.footer-contact-block a:focus {
  color: #c30d23;
}

.footer-contact-block {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 1.2rem;
  row-gap: 0.6rem;
  align-items: center;
}

.footer-contact-block__content,
.footer-contact-block__list li {
  padding: 0;
}

.footer-contact-block__content {
  margin: 0;
}

.footer-contact-block__content span {
  margin-top: 0.8rem;
  display: block;
}

.footer-contact-block__list {
  list-style: none;
  margin-top: 0.2rem;
  margin-left: 0;
}

.footer-contact-block__list li {
  padding-left: 0;
}

.footer-contact-block__list--social {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.footer-contact-block__list--social li {
  padding: 0;
}

.footer-contact-block__list--social a {
  display: inline-flex;
  font-size: 2.4rem;
  line-height: 1;
}

.footer-contact-block__header {
  color: #c30d23;
  margin: 0;
}

/* ------------------------------------------------------------------- 
 * ## copyright
 * ------------------------------------------------------------------- */
.ss-copyright {
  z-index: 2;
  position: absolute;
  left: 2.4rem;
  bottom: 0.5rem;
  padding-right: 0;
  max-width: calc(100% - 4.8rem);
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
}

.ss-copyright a {
  color: #fff;
}

.ss-copyright a:hover,
.ss-copyright a:focus {
  color: #c30d23;
}

.ss-copyright span {
  font-size: 1.5rem;
  display: inline-block;
  line-height: 1;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ss-copyright span::after {
  display: none;
}

.ss-copyright .footer-contact-block__list--social a {
  font-size: 1.5rem;
}

.ss-copyright .footer-contact-block__list--social {
  margin: 0;
  padding: 0;
  align-items: center;
  line-height: 1;
}

.ss-copyright span:last-child::after {
  display: none;
}

/* ------------------------------------------------------------------- 
 * ## go top
 * ------------------------------------------------------------------- */
.ss-go-top {
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0);
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: fixed;
  bottom: 8.4rem;
  right: 8rem;
}

.ss-go-top a {
  text-decoration: none;
  border: 0 none;
  display: block;
  height: 6.4rem;
  width: 6.4rem;
  border-radius: 50%;
  background-color: #c30d23;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}

.ss-go-top a:hover,
.ss-go-top a:focus {
  background-color: #333;
}

.ss-go-top svg {
  height: 1.2rem;
  width: 1.2rem;
  position: absolute;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  left: 50%;
  top: 50%;
}

.ss-go-top svg path {
  fill: #fff;
}

.ss-go-top.link-is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * footer
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .ss-go-top {
    right: 6rem;
  }

  .ss-go-top a {
    height: 6rem;
    width: 6rem;
  }
  .s-footer .footer-email-us {
    flex-wrap: wrap;
  }
  .s-footer .footer-email-us .btn {
    width: 100%;
  }
}

@media screen and (max-width: 820px) {
  .s-footer .footer-contacts {
    margin-left: 0;
  }

  .s-footer__main .column {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 820px) {
  .s-footer {
    padding-top: 20rem;
  }

  .ss-copyright {
    left: 1.6rem;
    bottom: 0.5rem;
    padding-right: 0;
  }

  .ss-go-top {
    right: 3.6rem;
  }

  .ss-go-top a {
    height: 5.2rem;
    width: 5.2rem;
  }
}

@media screen and (max-width: 571px) {
  .ss-copyright {
    left: 1.2rem;
    bottom: 1.2rem;
    padding-right: 0;
    max-width: calc(100% - 2.4rem);
    color: #333;
  }

  .ss-copyright span {
    display: block;
    font-size: 1.2rem;
  }

  .ss-copyright a {
    color: #333;
  }

  .ss-copyright span::after {
    display: none;
  }

  .ss-go-top {
    right: 2.4rem;
    bottom: 4rem;
  }
}

.bg-white {
  background: #fff !important;
}

.font-middle {
  font-size: 1.2rem;
}

.font-small {
  font-size: 0.9rem;
}

/* radio */
.radio {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em 2em;
  border: none;
}

.radio label {
  display: flex;
  align-items: center;
  gap: 0 0.5em;
  position: relative;
  cursor: pointer;
}

.radio label::before,
.radio label::after {
  border-radius: 50%;
  content: "";
}

.radio label::before {
  width: 26px;
  height: 26px;
  border: 2px solid #dee5eb;
  box-sizing: border-box;
}

.radio label::after {
  position: absolute;
  top: 50%;
  left: 13px;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  background-color: #dee5eb;
}

.radio label:has(:checked)::after {
  background-color: #2589d0;
  animation: anim-radio-2 0.3s linear;
}

@keyframes anim-radio-2 {
  0% {
    box-shadow: 0 0 0 1px transparent;
  }
  50% {
    box-shadow: 0 0 0 10px #2589d033;
  }
  100% {
    box-shadow: 0 0 0 10px transparent;
  }
}

.radio input {
  display: none;
}

/* form */
.contact-form {
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid #ddd;
  /* border-radius: 14px; */
  overflow: hidden;
  background: #fff;
}

.form-row {
  display: flex;
  border-bottom: 1px solid #eee;
}

.contact-form .label {
  width: 28%;
  background: #333;
  color: #fff;
  padding: 10px 15px;
  font-weight: 700;
  display: flex;
  align-items: center; /* 縦中央 */
  font-size: 16px;
}

.contact-form .label span {
  font-size: 0.9em;
}

.contact-form .radio {
  display: block;
}

.contact-form .radio label {
  margin-bottom: 10px;
}

.field {
  flex: 1;
  padding: 10px 20px 0;
}

.field-inner {
  max-width: 100%;
}

.contact-form {
  --form-input-height: 40px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.contact-form .field input,
.contact-form .field select,
.contact-form .field textarea {
  border: 1px solid #ddd;
  background: #fff;
  padding: 10px 12px;
  color: #000;
}
.contact-form input[type="email"],
.contact-form input[type="number"],
.contact-form input[type="search"],
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form input[type="password"],
.contact-form select {
  height: var(--form-input-height);
  min-height: var(--form-input-height);
  line-height: 1.2;
  padding: 0 12px;
  box-sizing: border-box;
  display: block;
}
.contact-form textarea {
  height: 150px;
  min-height: 150px;
  padding: 12px;
  line-height: 1.4;
}

textarea {
  height: 150px;
}

.inline {
  display: flex;
  gap: 10px;
}

.inline input {
  width: 50%;
}

.zip,
.tel {
  display: flex;
  align-items: center;
  gap: 8px;
}

.zip input {
  width: 80px;
}

.tel input {
  width: 90px;
}
.zip span,
.tel span {
  margin-top: -12px;
}
.zip button {
  height: var(--form-input-height);
  line-height: normal;
  padding: 0 12px;
  background: #333;
  color: #fff;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(2px);
}

.agree {
  margin-top: 3em;
  padding: 20px;
  text-align: center;
}

.submit {
  display: inline-block;
  margin: 20px auto;
  padding: 12px 60px;
  background: #333;
  color: #fff;
  border-radius: 999px;
  border: none;
  font-size: 18px;
  cursor: pointer;
}
.return {
  display: inline-block;
  margin: 30px auto;
  padding: 12px 60px;
  background: #aaa;
  color: #fff;
  border-radius: 999px;
  border: none;
  font-size: 18px;
  cursor: pointer;
}
/* confirm button disabled: keep same style as stroke button */
#confirmBtn:disabled {
  background: transparent;
  border: 0.2rem solid #333;
  color: #333;
  opacity: 1;
  cursor: not-allowed;
}
#confirmBtn {
  background: transparent;
  border: 0.2rem solid #333;
  color: #333;
  border-radius: 0;
  padding: 0 3.2rem;
  margin: 0 0.4rem 1.6rem 0;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.6rem;
  text-transform: uppercase;
}
input.error::placeholder {
  color: #c30d23;
  font-size: 0.8em;
}

textarea.error::placeholder {
  color: #c30d23;
  font-size: 0.8em;
}

.text-red {
  color: #c30d23;
}

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

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

.contact-steps {
  list-style: none;
  display: flex;
  margin: 0 0 18px;
  padding: 0;
  counter-reset: step;
  gap: 8px;
}

.contact-steps__item {
  flex: 1 1 0;
  position: relative;
  text-align: left;
  padding: 12px 14px;
  --step-bg: #f5f5f5;
  background: var(--step-bg);
  border: none;
  border-radius: 0;
  color: #666;
  font-size: 1.35rem;
  letter-spacing: 0.05rem;
  line-height: 1.4;
  word-break: normal;
  z-index: 1;
}

.contact-steps__item::before {
  content: none;
}

.contact-steps__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: -12px;
  width: 12px;
  height: 100%;
  background: var(--step-bg);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 4;
  pointer-events: none;
}

.contact-steps__item:last-child::after {
  content: none;
}

.contact-steps__item.is-current {
  --step-bg: #c30d23;
  background: #c30d23;
  color: #fff;
  z-index: 3;
}

.contact-steps__item.is-current::after {
  background: var(--step-bg);
}

.contact-steps__item.is-done {
  --step-bg: #e9e9e9;
  background: #e9e9e9;
  color: #333;
  z-index: 2;
}

.contact-steps__item.is-done::after {
  background: var(--step-bg);
}

@media (max-width: 575px) {
  .contact-steps__item {
    font-size: 1.05rem;
    letter-spacing: 0.05rem;
    padding: 12px;
  }
  .contact-steps__item::after {
    right: -10px;
    width: 10px;
  }
}

.contact-steps__step {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  margin-bottom: 2px;
}

.contact-steps__text {
  display: block;
}

.contact-notes {
  border: #ccc 1px solid;
  padding: 0 25px 40px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 30px;
}

.contact-complete {
  padding: 20px 24px;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.contact-complete h3 {
  margin: 0 0 10px;
}
.contact-notes p {
  margin: 0 0 0.6em;
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.contact-form .field input:focus,
.contact-form .field select:focus,
.contact-form .field textarea:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 2px rgba(128, 189, 255, 0.4);
}

.contact-form .select-wrap:focus-within {
  box-shadow: 0 0 0 2px rgba(128, 189, 255, 0.4);
  border-radius: 6px;
}

/* スマホ対応 */
@media (max-width: 1025px) {
  .form-row {
    flex-direction: column;
  }
  .label {
    width: 100%;
  }
  .field-inner {
    max-width: 100%;
  }
  .contact-form .label {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .job-checks {
    grid-template-columns: 1fr;
  }

  .birth-inline input {
    width: 72px !important;
  }

  #zip_search_btn {
    font-size: 0.85rem;
  }
}

.select-wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
}

/* select本体 */
.select-wrap select {
  width: 100%;
  height: var(--form-input-height);
  padding: 0 58px 0 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;

  /* デフォルト矢印を消す */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* 右側の黒ボタン */
.select-wrap::after {
  content: "▼";
  position: absolute;
  top: 0;
  right: 0;
  width: var(--form-input-height);
  height: var(--form-input-height);
  background: #333;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 6px 6px 0;
  pointer-events: none; /* selectの操作を邪魔しない */
}
.form-buttons {
  text-align: center; /* ボタンを中央寄せ */
  margin: 0 0 50px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 12px;
  visibility: visible;
  opacity: 1;
}
.form-buttons .btn {
  display: inline-flex;
  opacity: 1;
  visibility: visible;
}
.contact-steps__item > span {
  position: relative;
  z-index: 2;
}

/* プライバシーポリシー */
.pp {
  --pp-bg: #f7f5f2;
  --pp-card: #ffffff;
  --pp-ink: #1f2937;
  --pp-muted: #6b7280;
  --pp-accent: #c2a06f;
  --pp-border: #e7e2db;

  font-family: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  color: var(--pp-ink);
  background: var(--pp-bg);
  padding: 48px 20px;
}

.pp__header {
  max-width: 860px;
  margin: 0 auto 32px;
  text-align: left;
}

.pp__eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pp-muted);
  margin: 0 0 8px;
}

.pp__title {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 12px;
  line-height: 1.2;
}

.pp__lead {
  color: var(--pp-muted);
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}

.pp__body {
  max-width: 860px;
  margin: 0 auto;
  background: var(--pp-card);
  border: 1px solid var(--pp-border);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pp__section + .pp__section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--pp-border);
}

.pp__heading {
  font-size: 18px;
  margin: 0 0 10px;
  position: relative;
  padding-left: 12px;
}

.pp__heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 4px;
  height: 1.1em;
  background: var(--pp-accent);
  border-radius: 2px;
}

.pp__list {
  margin: 10px 0 0 0;
  padding-left: 1.1em;
  color: var(--pp-ink);
  line-height: 1.9;
}
.pp__list li {
  font-size: 1.2rem;
}
.pp__list li + li {
  margin-top: 6px;
}

.pp__dl {
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.pp__dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
}

.pp__dl dt {
  color: var(--pp-muted);
}

.pp__dl dd {
  margin: 0;
}

/* -------------------------------------------------------------------
 * ## company philosophy
 * ------------------------------------------------------------------- */
.company-philosophy {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 3.2rem 3.6rem;
  border-radius: 16px;
  border: 1px solid #f0dfd0;
  background: linear-gradient(135deg, #fff7ef 0%, #ffffff 45%, #f1f7e6 100%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.company-philosophy::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #c30d23;
  opacity: 0.06;
}

.company-philosophy__eyebrow {
  font-family: "LINE Seed JP", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1.2rem;
  color: #8a6a58;
  margin-bottom: 0.8rem;
}

.company-philosophy__title {
  font-size: 3rem;
  margin: 0 0 1.2rem;
}

.company-philosophy__subtitle {
  font-size: 3rem;
  margin: 0 0 1rem;
}

.company-philosophy__text {
  font-size: 2.1rem;
  font-weight: 700;
  color: #2f2f2f;
  margin: 0 0 1.6rem;
  line-height: 1.7;
}

.company-philosophy p.company-philosophy__text {
  font-size: 2.1rem !important;
  font-weight: 700 !important;
}

.company-philosophy__divider {
  width: min(220px, 60%);
  height: 2px;
  background-color: #c30d23;
  margin: 1.2rem auto 2rem;
  opacity: 0.7;
}

@media screen and (max-width: 800px) {
  .company-philosophy {
    padding: 2.6rem 2.4rem;
  }

  .company-philosophy__title {
    font-size: 2.6rem;
  }

  .company-philosophy__subtitle {
    font-size: 2.6rem;
  }

  .company-philosophy__text {
    font-size: 1.9rem;
  }
}
