@charset "utf-8";
html {
  font-size: 62.5%;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  word-wrap: break-word;
  font-feature-settings: "palt";
  letter-spacing: 1px;
  color: #000;
  background: #f7f7f7;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.fit {
  width: 100%;
  height: auto;
}
.pc-none {
  display: none;
}
.sp-none {
  display: initial;
}
@media (max-width: 768px) {
  .pc-none {
    display: initial;
  }
  .sp-none {
    display: none;
  }
}
img {
  vertical-align: top;
}
p {
  line-height: 1.5;
}

/* --------------------------------------------------------------------------

Container

-------------------------------------------------------------------------- */
.container {
  width: 800px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .container {
    width: auto;
    padding: 0 16px;
  }
}

/* --------------------------------------------------------------------------

Elements

-------------------------------------------------------------------------- */
a.btn {
  width: 240px;
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  background: #000;
  border: 2px solid #000;
  border-radius: 8px;
  text-align: center;
  padding: 20px 0;
  transition: .3s;
}
a.btn:hover {
  color: #000;
  background: unset;
}
a.btn--green {
  background: #0c5951;
  border-color: #0c5951;
}
a.btn--green:hover {
  color: #0c5951;
  background: unset;
}
a.btn--arrow {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.25;
  padding-left: 22px;
  transition: .3s;
}
a.btn--arrow::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0c5951;
  border-right: 2px solid #0c5951;
  transform: rotate(45deg);
}
a.btn--arrow:hover {
  color: #0c5951;
}
a.btn--box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 0 24px;
  height: 48px;
  white-space: nowrap;
  margin: 0 auto;
  transition: .3s;
}
a.btn--box img {
  width: 24px;
  height: auto;
}
a.btn--box:hover {
  color: #fff;
  background: #0c5951;
  border: 1px solid #0c5951;
}
a.btn--box--gray {
  pointer-events: none;
  color: #fff;
  background: #ccc;
  border-color: #ccc;
}
/* --------------------------------------------------------------------------

Section

-------------------------------------------------------------------------- */
.page-title {
  position: relative;
  height: 160px;
  width: 100%;
  display: flex;
  background-color: #0c5951;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  height: 120px;
  transform: translate(-50%, -50%);
  background-image: url('../../assets/img/content/logo-symbol.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.page-title__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .page-title {
    height: 120px;
  }
  .page-title::before {
    width: 285px;
    height: 90px;
  }
  .page-title__text {
    font-size: 2.4rem;
  }
}

/* --------------------------------------------------------------------------
Hero
-------------------------------------------------------------------------- */
.hero {
  position: relative;
}
.hero__video {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  padding-left: 8%;
}
.hero__video-element {
  width: 100%;
  height: auto;
}
.hero__text {
  position: absolute;
  bottom: -20px;
  left: 4%;
  z-index: 2;
}
.hero__heading {
  display: flex;
  flex-direction: column;
  gap: 0.3vw;
  margin-bottom: 0.4vw;
}
.hero__heading-line {
  align-self: flex-start;
  font-size: 4.2vw;
  font-weight: 700;
  color: #fff;
  background: #0c5951;
  padding: 0.5vw 0.8vw;
}
.hero__lead {
  display: flex;
  flex-direction: column;
  gap: 0.3vw;
}
.hero__lead-line {
  align-self: flex-start;
  font-size: 3.2vw;
  font-weight: 700;
  background: #fff;
  padding: 0.5vw 0.8vw;
}
.hero__heading-line,
.hero__lead-line {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero__heading-line:nth-child(1) { transition-delay: 0.2s }
.hero__heading-line:nth-child(2) { transition-delay: 0.4s }
.hero__lead-line:nth-child(1) { transition-delay: 1.4s }
.hero__lead-line:nth-child(2) { transition-delay: 1.6s }
.hero__lead-line:nth-child(3) { transition-delay: 1.8s }
.is-animated .hero__heading-line,
.is-animated .hero__lead-line {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 900px) {
  .hero {
    height: 80vw;
    margin-bottom: 40px;
  }
  .hero__video {
    padding-left: 16px;
  }
  .hero__text {
    bottom: 4%;
    left: 8px;
  }
  .hero__heading {
    gap: 2px;
    margin-bottom: 6px;
  }
  .hero__heading-line {
    font-size: 6.4vw;
    padding: 4px 4px;
  }
  .hero__lead {
    gap: 2px;
  }
  .hero__lead-line {
    font-size: 5.2vw;
    padding: 4px 4px;
  }
}

/* --------------------------------------------------------------------------
Home
-------------------------------------------------------------------------- */
.home-section {
  position: relative;
  overflow: hidden;
  padding: 10vw 8% 20px;
  margin-bottom: 60px;
}
.home-section:last-child {
  margin-bottom: 100px;
}
.home-section__background {
  position: absolute;
  top: -3.8vw;
  left: 0;
  font-size: 22vw;
  font-weight: 800;
  color: #0c5951;
  opacity: 0.05;
  white-space: nowrap;
  letter-spacing: -10px;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.home-section__title {
  position: relative;
  z-index: 2;
  font-size: 2.4vw;
  font-weight: 700;
  color: #0c5951;
  margin-bottom: 30px;
}
.home-flex {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}
.home-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home-card__image {
  margin-bottom: 30px;
}
.home-card__image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.home-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-card__title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.home-card__description {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.home-news-section {
  padding: 0 8%;
  margin-bottom: 30px;
}
.home-news__btn {
  text-align: right;
  margin-top: 30px;
}
.home-work-icons {
  display: flex;
  align-items: center;
  column-gap: 80px;
  margin: 15px auto 50px;
}
.home-work-icons__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.home-work-icons__circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.home-work-icons__img {
  width: 60px;
  height: auto;
}
.home-work-icons__label {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}
.home-card-message p {
  font-size: 1.8rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .home-section {
    padding: 40px 16px 20px;
    margin-bottom: 20px;
  }
  .home-section:last-child {
    margin-bottom: 60px;
  }
  .home-section__background {
    font-size: 22vw;
    letter-spacing: -2px;
  }
  .home-section .container {
    padding: 0;
  }
  .home-section__title {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .home-card__description {
    font-size: 1.6rem;
  }
  .home-flex {
    flex-direction: column;
  }
  .home-flex-reverse {
    flex-direction: column-reverse;
    gap: 8px;
  }
  .home-card__image {
    margin-bottom: 20px;
  }
  .home-card__image img {
    border-radius: 15px;
  }
  .home-card__title {
    font-size: 2.0rem;
    margin-bottom: 15px;
  }
  .home-news-section {
    padding: 0 15px;
    margin-bottom: 30px;
  }
  .home-news__btn {
    margin-top: 20px;
  }
  .home-work-icons {
    column-gap: 30px;
    margin: 10px auto 40px;
  }
  .home-work-icons__circle {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }
  .home-work-icons__img {
    width: 40px;
    height: auto;
  }
  .home-work-icons__label {
    font-size: 1.4rem;
  }
  .home-card-message p {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}

/* --------------------------------------------------------------------------
Company
-------------------------------------------------------------------------- */
.company-section {
  position: relative;
  overflow: hidden;
  padding-top: 140px;
  margin-bottom: 80px;
}
.company-section__background {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 28.0rem;
  font-weight: 800;
  color: #0c5951;
  opacity: 0.05;
  white-space: nowrap;
  letter-spacing: -10px;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.company-section__title {
  position: relative;
  z-index: 2;
  font-size: 4.0rem;
  font-weight: 800;
  color: #0c5951;
}
.company-section__title span {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  padding-top: 0.5vw;
}
.company-mission__item {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 100px;
}
.company-mission__heading {
  font-size: 5.7rem;
  font-weight: 800;
  line-height: 1.25;
}
.company-mission__lead {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.75;
  padding-top: 40px;
}
.company-value {
  margin-top: 30px;
}
.company-value__item {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 60px;
}
.company-value__heading {
  font-size: 5.0rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}
.company-value__lead {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 15px;
}
.company-principle {
  margin-top: 30px;
}
.company-principle__item {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  margin-top: 20px;
}
.company-principle__heading {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}
.company-principle__lead {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 15px;
}
.company-principle__description {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 10px;
}
@media (max-width: 900px) {
  .company-section {
    padding-top: 60px;
    margin-bottom: 40px;
  }
  .company-section__background {
    font-size: 22vw;
    letter-spacing: -2px;
  }
  .company-section__title {
    font-size: 2.4rem;
  }
  .company-section__title span {
    font-size: 1.5rem;
    padding-top: 8px;
  }
  .company-mission__item {
    padding-top: 50px;
  }
  .company-mission__heading {
    font-size: 2.2rem;
  }
  .company-mission__lead {
    font-size: 1.5rem;
    line-height: 1.5;
    padding-top: 30px;
  }
  .company-value {
    margin-top: 0;
  }
  .company-value__item {
    padding-top: 40px;
  }
  .company-value__heading {
    font-size: 2.8rem;
  }
  .company-value__lead {
    font-size: 1.6rem;
    padding-top: 10px;
  }
  .company-principle {
    margin-top: 30px;
  }
  .company-principle__item {
    padding: 24px;
    margin-top: 20px;
  }
  .company-principle__heading {
    font-size: 1.9rem;
  }
  .company-principle__lead {
    font-size: 1.5rem;
    padding-top: 10px;
  }
  .company-principle__description {
    font-size: 1.5rem;
    padding-top: 8px;
  }
}

.company-middle-section {
  text-align: center;
  margin: 100px 0;
}
.company-middle__lead {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0;
}
@media (max-width: 900px) {
  .company-middle-section {
    margin: 40px 0;
  }
  .company-middle__lead {
    font-size: 2.0rem;
  }
}

.company-info-section {
  margin: 100px 0;
}
.company-info__title {
  font-size: 3.0rem;
  font-weight: 700;
  color: #0c5951;
  margin-bottom: 30px;
}
.company-info__container {
  background: #fff;
  border-radius: 16px;
  padding: 80px 80px;
}
.company-info__grid {
  display: grid;
  gap: 30px;
}
.company-info__row {
  display: grid;
  grid-template-columns: 1fr 3fr;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 30px;
}
.company-info__row:last-child {
  border: none;
  padding: 0;
}
.company-info__label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.company-info__value {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .company-info-section {
    margin: 40px 0;
  }
  .company-info__title {
    font-size: 2.0rem;
    margin-bottom: 0;
  }
  .company-info__container {
    margin: 20px 16px;
    padding: 40px 24px;
  }
  .company-info__grid {
    gap: 20px;
  }
  .company-info__row {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
  }
  .company-info__label {
    font-size: 1.5rem;
    color: #0c5951;
    margin-bottom: 8px;
  }
  .company-info__value {
    font-size: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
Careers
-------------------------------------------------------------------------- */
.careers-section {
  margin: 100px 0;
}
.careers__header {
  text-align: center;
  margin-bottom: 60px;
}
.careers__heading {
  font-size: 4.0rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0c5951;
  margin-bottom: 30px;
}
.careers__description {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.careers__item {
  background: #fff;
  border-radius: 15px;
  padding: 60px;
  margin-bottom: 40px;
}
.careers__tag {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background: #0c5951;
  border-radius: 3px;
  padding: 4px 6px;
  margin-bottom: 20px;
}
.careers__title {
  font-size: 2.8rem;
  font-weight: 700;
  border-bottom: 2px solid #0c5951;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.careers__button {
  text-align: center;
}
@media (max-width: 900px) {
  .careers-section {
    margin: 40px 0;
  }
  .careers__header {
    text-align: left;
    margin-bottom: 40px;
  }
  .careers__heading {
    font-size: 3.0rem;
    margin-bottom: 10px;
  }
  .careers__description {
    font-size: 1.7rem;
  }
  .careers__item {
    background: #fff;
    border-radius: 15px;
    padding: 30px 16px;
    margin-bottom: 20px;
  }
  .careers__tag {
    margin-bottom: 15px;
  }
  .careers__title {
    font-size: 2.2rem;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
  .careers__button {
    margin-top: 30px;
  }
}

/* --------------------------------------------------------------------------
News
-------------------------------------------------------------------------- */
.news-section {
  margin: 100px 0;
}
.news-list__item {
  display: flex;
  line-height: 1.5;
  border-bottom: 1px solid #ccc;
  padding: 24px 0;
}
.news-list__label {
  white-space: nowrap;
  flex-shrink: 0;
  color: #0c5951;
  padding-right: 30px;
}
.news-list__link {
  flex: 1;
}
.news-list__item a {
  text-decoration: underline;
}
.news-list__item a:hover {
  text-decoration: none;
}
.news-list__pagination {
  margin-top: 60px;
}
.news-list__pagination ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.news-list__pagination li > * {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  height: 40px;
}
.news-list__pagination li > *:not(.dots) {
  width: 40px;
  border-radius: 50%;
  color: #000000;
  background: #eee;
  transition: color 0.3s ease, background 0.3s ease;
}
.news-list__pagination li > .current,
.news-list__pagination li > a:hover {
  color: #ffffff;
  background: #000000;
}
@media (max-width: 900px) {
  .news-section {
    margin: 40px 0;
  }
  .news-list__item {
    display: block;
    padding: 20px 0;
  }
  .news-list__label {
    padding-bottom: 4px;
  }
  .news-list__pagination {
    margin-top: 30px;
  }
}

.news-single-section {
  margin: 100px 0;
}
.news-single__header {
  text-align: center;
  margin-bottom: 60px;
}
.news-single__item {
}
.news-single__date {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0c5951;
  margin-bottom: 20px;
}
.news-single__title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.25;
  border-bottom: 2px solid #0c5951;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.news-single__button {
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 900px) {
  .news-single-section {
    margin: 40px 0;
  }
  .news-single__item {
    background: #fff;
    border-radius: 15px;
    padding: 30px 16px;
  }
  .news-single__date {
    margin-bottom: 15px;
  }
  .news-single__title {
    font-size: 2.2rem;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
  .news-single__button {
    margin-top: 30px;
  }
}

/* --------------------------------------------------------------------------
Privacy Policy
-------------------------------------------------------------------------- */
.privacy-section {
  margin: 100px 0;
}
@media (max-width: 900px) {
  .privacy-section {
    margin: 40px 0;
  }
}

/* --------------------------------------------------------------------------
Contact Complete
-------------------------------------------------------------------------- */
.contact-complete-section {
  margin: 200px 0;
}
.contact-complete__header {
  text-align: center;
  margin-bottom: 60px;
}
.contact-complete__heading {
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0c5951;
  margin-bottom: 30px;
}
.contact-complete__lead {
  font-size: 1.7rem;
  line-height: 1.5;
}
.contact-complete__button {
  text-align: center;
}
@media (max-width: 900px) {
  .contact-complete-section {
    margin: 40px 0;
  }
  .contact-complete__header {
    margin-bottom: 40px;
  }
  .contact-complete__heading {
    font-size: 2.4rem;
  }
  .contact-complete__lead {
    font-size: 1.6rem;
  }
}

/* --------------------------------------------------------------------------
Contact
-------------------------------------------------------------------------- */
.contact-section {
  margin: 100px 0;
}
.contact-lead {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 50px;
}
.contact-form__container {
  background: #fff;
  border-radius: 16px;
  padding: 80px 0;
}
.contact-section a {
  text-decoration: underline;
}
.contact-section a:hover {
  text-decoration: none;
}
@media (max-width: 900px) {
  .contact-section {
    margin: 40px 0;
  }
  .contact-lead {
    text-align: left;
    margin-bottom: 30px;
  }
  .contact-form__container {
    padding: 32px 16px;
  }
}

/* --------------------------------------------------------------------------

Content

-------------------------------------------------------------------------- */
.content h1 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 40px;
  margin-bottom: 15px;
}
.content h2 {
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 40px;
  margin-bottom: 15px;
}
.content h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0c5951;
  margin-top: 40px;
  margin-bottom: 15px;
}
.content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0c5951;
  margin-top: 40px;
  margin-bottom: 15px;
}
.content h5 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0c5951;
  margin-top: 30px;
  margin-bottom: 15px;
}
.content h6 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0c5951;
  margin-top: 30px;
  margin-bottom: 15px;
}
.content p {
  margin-bottom: 15px;
}
.content img {
  display: block;
  max-width: 90%;
  height: auto;
  margin: 30px auto;
}
.content .iframe-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  width: 90%;
  height: auto;
  /*aspect-ratio: 16 / 9;*/
  padding-top: 56.25%;
  margin: 30px auto;
}
.content iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.content .wp-video {
  display: block;
  position: relative;
  overflow: hidden;
  width: 90% !important;
  height: auto !important;
  /*aspect-ratio: 16 / 9;*/
  padding-top: 56.25%;
  margin: 30px auto;
}
.content .wp-video-shortcode {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
}
.content ul {
  margin-bottom: 15px;
}
.content ul li {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.5;
  padding-left: 14px;
  margin-bottom: 5px;
}
.content ul li::before {
  position: absolute;
  display: inline-block;
  content: "-";
  top: 0;
  left: 0;
}
.content ol {
  margin-left: 25px;
  margin-bottom: 15px;
}
.content ol li {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 5px;
}
.content a {
  text-decoration: underline;
  transition: .3s;
}
.content a:hover {
  opacity: .5;
}
.content hr {
  margin: 30px 0;
}
@media (max-width: 900px) {
  .content h1 {
    font-size: 2.8rem;
  }
  .content h2 {
    font-size: 2.4rem;
  }
  .content h3 {
    font-size: 2.0rem;
  }
  .content .iframe-wrap {
    width: 100%;
  }
  .content .wp-video {
    width: 100% !important;
  }
}

/* --------------------------------------------------------------------------

Contact Form

-------------------------------------------------------------------------- */
.form-tabList {
  display: flex;
}
.form-tabList li {
  width: 50%;
}
.form-tabList li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(0,0,0,0.5);
  background-color: #f2f2f2;
  padding: 25px 10px;
  cursor: pointer;
  transition: .3s;
}
.form-tabList li a:hover {
  color: rgba(0,0,0,1);
}
.form-tabList li a.active {
  color: rgba(0,0,0,1);
  background-color: #fff;
  border-top: 3px solid #d0121b;
  cursor: text;
}
.form-tabContent > div {
  display: none;
}
.form-tabContent > div.active {
  display: block;
}
.form-container {
  overflow: hidden;
}

.cf7-area {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
}
.cf7-item {
  display: block;
  margin-bottom: 30px;
}
.cf7-q {
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
}
.cf7-a {
  width: 100%;
}
.cf7-area input[type='text'], .cf7-area input[type='email'], .cf7-area input[type='tel'],
.cf7-area select, .cf7-area textarea {
  display: block;
  width: 100%;
  height: 60px;
  font-size: 16px;
  color: #000;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  padding: 0 15px;
}
.cf7-area input[type='text']:focus, .cf7-area input[type='email']:focus,
.cf7-area input[type='tel']:focus, .cf7-area select:focus, .cf7-area textarea:focus {
  border: 1px solid #0c5951;
}
.cf7-select {
  position: relative;
  width: 100%;
}
.cf7-select::before {
  position: absolute;
  top: 25px;
  right: 20px;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #000;
  pointer-events: none;
  z-index: 2;
}
.cf7-area textarea {
  height:200px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cf7-accept-check {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  margin: 40px 0;
}
.cf7-accept-check a {
  text-decoration: underline;
}
.cf7-accept-check a:hover {
  text-decoration: none;
}
.cf7-area input[type='checkbox'] {
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  padding-left: 16px;
}
.cf7-area input[type='checkbox']::before,
.cf7-area input[type='checkbox']::after {
  content: "";
  display: block; 
  position: absolute;
}
.cf7-area input[type='checkbox']::before {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 3px;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.cf7-area input[type='checkbox']::after {
  border-bottom: 3px solid #0c5951;
  border-left: 3px solid #0c5951;
  opacity: 0;
  height: 8px;
  width: 12px;
  transform: rotate(-45deg);
  top: -6px;
  left: 4px;
}
.cf7-area input[type='checkbox']:checked::after {
  opacity: 1;
}
.cf7-area input[type='submit'] {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 240px;
  height: 60px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid #000;
  background-color: #000;
  border-radius: 8px;
  margin: 0 auto;
  padding: 12px 20px;
  transition: .3s;
}
.cf7-area input[type='submit']:hover {
  color: #000;
  background-color: initial;
}
.cf7-req {
  font-size: 13px;
  color: #d0121b;
  margin-left: 10px;
}
.cf7-area .wpcf7-list-item {
  display: block;
  margin: 0;
}
.screen-reader-response {
  display: none;
}
.wpcf7-not-valid-tip {
  color: #d0121b;
}
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  text-align: center;
  color: #d0121b;
  font-weight: 700;
  border: 1.5px solid #d0121b;
  border-radius: 5px;
  padding: 10px 15px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .form-wrapper {
  }
  .form-tabList li a {
    font-size: 1.4rem;
  }
  .form-container {
    padding: 0 16px;
  }
  .form-tabList li a {
    padding: 15px 10px;
  }
  .cf7-area {
    width: 100%;
  }
  .cf7-area input[type='text'], .cf7-area input[type='email'], .cf7-area input[type='tel'], .cf7-area textarea {
    margin-left: 0;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

/* --------------------------------------------------------------------------

Header

-------------------------------------------------------------------------- */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.header__logo {
  margin-left: 40px;
}
.header__logo img {
  height: 24px;
  width: auto;
}
.header__nav-wrap {
  display: flex;
  align-items: center;
}
.header__nav-items {
  display: flex;
}
.header__nav-item {
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 30px;
}
.header__nav-item:last-child {
  margin-right: 0;
}
.header__nav-item a {
  transition: .3s;
}
.header__nav-item a:hover {
  opacity: 0.5;
}
.header__toggle {
  display: none;
}
@media(max-width: 900px) {
  .header {
    height: 60px;
  }
  .header__logo {
    margin-left: 16px;
  }
  .header__logo img {
    height: 20px;
    width: auto;
  }
  .header__nav-list {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    top: 0;
    right: 0;
  }
  .header__nav-wrap {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  .header__nav-items {
    display: block;
    opacity: 0;
  }
  .header__nav-item {
    display: block;
    text-align: center;
    color: #fff;
    padding: 20px;
    margin: 0;
  }
  .js-nav.is-open {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #0c5951;
    z-index: 5;
  }
  .js-nav.is-open::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 253.33px;
    height: 80px;
    transform: translate(-50%, -50%);
    background-image: url('../../assets/img/content/logo-symbol.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
  }
  .js-nav.is-open .header__nav-list {
    display: block;
  }
  .js-nav.is-open .header__nav-items,
  .js-nav.is-open .header__nav-items {
    opacity: 1;
  }
  .js-nav.is-open .header__nav-item,
  .js-nav.is-open .bogo-language-switcher {
    animation-name: navFadeIn;
    animation-duration: 1s;
    animation-delay: .2s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes navFadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .header__toggle {
    display: block;
    position: fixed;
    top: 5px;
    right: 12px;
    z-index: 9999;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  .header__toggle span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 13px;
    height: 2px;
    background-color: #0c5951;
  }
  .header__toggle span:nth-of-type(1) {
    top: 20px; 
    width: 60%;
  }
  .header__toggle span:nth-of-type(2) {
    top: 30px;
    width: 60%;
  }
  .header__toggle.is-active span:nth-of-type(1) {
    top: 20px;
    right: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 60%;
    background-color: #fff;
  }
  .header__toggle.is-active span:nth-of-type(2) {
    top: 32px;
    right: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 60%;
    background-color: #fff;
  }
}

/* Bogo
----------------------------------------------------------------- */
.bogo-language-switcher {
  display: flex;
  margin: 40px;
}
.bogo-language-switcher li:first-child::after {
  content: "/";
  font-weight: 400;
  color: #cccccc;
  padding: 0 8px;
}
.bogo-language-switcher li a {
  color: #000;
  transition: .3s;
}
.bogo-language-switcher li.current a {
  color: #e6e6e6;
}
@media(max-width: 900px) {
  .bogo-language-switcher li:first-child::after {
    color: #789793;
  }
  .bogo-language-switcher li a {
    color: #fff;
  }
  .bogo-language-switcher li.current a {
    color: #3d706a;
  }
}

/* --------------------------------------------------------------------------

Footer

-------------------------------------------------------------------------- */
.footer__top {
  display: flex;
  text-align: center;
  align-items: stretch;
  background: #fff;
  padding: 60px 8%;
}
.footer__box {
  display: flex;
  flex: 0 0 50%;
  align-items: stretch;
  padding: 0 16px;
}
.footer__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0c5951;
  margin-bottom: 24px;
}
.footer__lead {
  line-height: 1.5;
  margin-bottom: 24px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  color: #fff;
  background: #0c5951;
  padding: 40px 8%;
}
.footer__logo-area {
  width: 200px;
}
.footer__symbol img,
.footer__wordmark img {
  width: 100%;
  height: auto;
}
.footer__wordmark img {
  filter: brightness(0) invert(1);
}
.footer__symbol {
  margin-bottom: 20px;
}
.footer__info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer__info a {
  transition: .3s;
}
.footer__info a:hover {
  opacity: 0.5;
}
.footer__nav {
  display: flex;
  margin-bottom: 30px;
}
.footer__nav-item {
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 20px;
}
.footer__nav-item:last-child {
  margin-right: 0;
}
.footer__sns {
  display: flex;
  align-items: center;
}
.footer__sns-label,
.footer__sns-icon {
  font-size: 1.5rem;
  margin-right: 20px;
}
.footer__sns-icon:last-child {
  margin-right: 0;
}
.footer__sns-icon img {
  width: 24px;
  height: auto;
  filter: brightness(0) invert(1);
}
.footer__legal {
  display: flex;
  margin-top: auto;
}
.footer__legal-item {
  font-size: 1.4rem;
  margin-right: 20px;
}
.footer__legal-item:last-child {
  margin: 0;
}
@media(max-width: 900px) {
  .footer__top {
    flex-wrap: wrap;
    padding: 40px 0;
    gap:  40px;
  }
  .footer__box {
    flex: 0 0 100%;
  }
  .footer__box:first-child {
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 40px;
  }
  .footer__contact {
    padding: 40px 0;
  }
  .footer__bottom {
    display: block;
  }
  .footer__logo-area {
    margin: 0 auto;
  }
  .footer__info {
    display: block;
    text-align: center;
  }
  .footer__nav {
    display: block;
    margin: 32px auto;
  }
  .footer__nav-item {
    margin-right: 0;
    padding: 16px;
  }
  .footer__sns {
    justify-content: center;
  }
  .footer__legal {
    display: block;
    margin-top: 32px;
  }
  .footer__legal-item {
    font-size: 1.4rem;
    margin: 0 0 24px 0;
  }
  .footer__legal-item:last-child {
    margin: 0;
  }
}


/* --------------------------------------------------------------------------

Animation

-------------------------------------------------------------------------- */
.js-up {
  transform: translate3d(0,40px,0);
  opacity: 0 !important;
  transition: transform 1.3s, opacity 1.3s;
  transition-delay: .3s;
}
.js-down {
  transform: translate3d(0,-40px,0);
  opacity: 0 !important;
  transition: transform 1.3s, opacity 1.3s;
  transition-delay: .3s;
}
.js-fade {
  opacity: 0 !important;
  transition: opacity 1.3s;
  transition-delay: .3s;
}
.js-up.is-shown,
.js-down.is-shown {
  transform: none;
  opacity: 1 !important;
}
.js-fade.is-shown {
  opacity: 1 !important;
}