@charset "UTF-8";
@import url(fs.css);

/*
global > font-face
------------------------------
*/

@font-face {
  font-family: 'Noto Sans JP';
  src: url('../font/NotoSansJP-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url('../font/NotoSansJP-Medium.woff2') format('woff2');
  font-weight: medium;
  font-style: normal;
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url('../font/NotoSansJP-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Roboto Slab";
  src: url('../font/Roboto-Slab-Bold.woff2') format('woff2');
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/*
global
------------------------------
*/
:root {
  --color-base: #fff;
  --color-accent: #008CB7;
  --color-black: #000;
  --color-gray: #EAEAEA;
  --color-light-blue: #EEF5FD;
  --color-accent-cta: #F7743C;
  --color-font-base: #333333;

  --color-border-gray: #CACACA;

  --width-content-s: 920px;
  --width-content: 1140px;

  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-en: "Roboto Slab", sans-serif;
}


/*
foundation
------------------------------
*/
html {
  background-color: var(--color-base);
    scroll-behavior: smooth;
}

body {
  color: var(--color-font-base);
  font-size: var(--fs16);
  font-family: var(--font-family-base);
  line-height: 1.7;
}

/*
utility
------------------------------
*/
.pc-show {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc-show {
    display: none;
  }
}

.sp-show {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-show {
    display: block;
  }
}


/* ------------------------------
Common
------------------------------ */
.contents-wrapper {
  max-width: calc(90% - 250px);
  margin: 0 auto 150px;
}

@media screen and (max-width: 1440px) {
  .contents-wrapper {
    max-width: 950px;
  }
}

@media screen and (max-width: 1240px) {
  .contents-wrapper {
    max-width: 90%;
  }
}

@media screen and (max-width: 1020px) {
  .contents-wrapper {
    max-width: 95%;
  }
}

@media screen and (max-width: 767px) {
  .contents-wrapper {
    max-width: 90%;
    margin-bottom: 120px;
  }
}

.contents-wrapper.--compact {
  margin-bottom: 0;
}

.sec-title {
  margin-bottom: 30px;
}

.sec-title-en {
  font-family: var(--font-family-en);
  font-size: var(--fs64);
  line-height: 1;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .sec-title-en {
    font-size: var(--fs50);
  }
}

.sec-center-link {
  align-items: center;
  display: flex;
  justify-content: center;
}

.link-button {
  background-color: var(--color-accent);
  border-radius: 5px;
  color: var(--color-base);
  margin-top: 50px;
  overflow: hidden;
  padding: 14px 45px 14px 30px;
  position: relative;
  transition: color 0.3s ease;
  z-index: 2;
}

.link-button::before {
  background-color: var(--color-black);
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: width 0.4s ease;
  width: 0;
  z-index: -1;
}

@media(hover: hover) {
  .link-button:hover::before {
    width: 100%;
  }

  .link-button:hover {
    color: var(--color-base);
  }
}

.link-button::after {
  background: no-repeat center/contain url(../img/cmn/button-arrow-w.svg);
  content: '';
  display: block;
  height: 16px;
  position: absolute;
  top: 20px;
  transition: transform 0.2s linear;
  right: 30px;
  width: 9px;
  z-index: 3;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media(hover: hover) {
  .link-button:hover::after {
    transform: translateX(10px);
  }
}

.main-container, .footer-container {
  margin-left: 250px;
  width: calc(100% - 250px);
}

@media screen and (max-width: 1240px) {
  .main-container, .footer-container {
    margin-left: 0px;
    width: 100%;
  }
}

/*
header 
------------------------------
*/
header {
  width: 100%;
  margin: 0 auto;
}

.globalnav-wrap {
  box-sizing: border-box;
  position: fixed;
  height: 100vh;
  left: 0;
  padding: 0;
  top: 0;
  width: 250px;
  z-index: 1000;
}

@media screen and (max-width: 1240px) {
  .globalnav-wrap {
    align-items: center;
    background: var(--color-base);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    height: 63px;
    position: fixed;
    width: 100%;
  }
}

.globalnav-wrap h1.site-id {
  margin: 20px 0 20px 20px;
  width: 186px;
}

@media screen and (max-width: 1240px) {
  .globalnav-wrap h1.site-id {
    margin: 0;
    width: 311px;
  }
}

.globalnav .nav {
  margin: 0 20px;
}

.globalnav .nav a {
  color: var(--color-black);
  box-sizing: border-box;
  padding: 14px 20px 14px 0px;
  position: relative;
}

.globalnav .nav .nav-current {
  pointer-events: none;
  user-select: none;
}

.globalnav .nav a.link-button {
  color: var(--color-base);
  display: block;
  padding: 14px 45px 14px 30px;
  width: 176px;
}

.globalnav .nav.active {
  background: var(--color-black);
  padding: 0 20px;
  margin: 0;
}

.globalnav .nav.active a {
  color: var(--color-base);
}

@media screen and (max-width: 767px) {
  .globalnav .nav.active {
    background: unset;
    padding: 0;
  }

  .globalnav .nav.active a {
    color: var(--color-black);
  }
}

@media screen and (max-width: 1240px) {
  .globalnav {
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 500px;
    position: fixed;
    top: 63px;
    left: 0;
    transform: translate(100%, 0);
    width: 100%;
    z-index: 999;
  }

  .transition-transform {
    transition: transform 0.5s ease;
  }

  .globalnav ul:first-child {
    margin-top: 50px;
  }

  .globalnav .nav:not(:last-child) {
    border-bottom: 1px solid var(--color-black);
    margin: 0 40px;
    padding-left: 20px;
    position: relative;
  }

  .globalnav .nav:last-child {
    display: flex;
    justify-content: center;
  }

  .globalnav.open {
    transform: translate(0px, 0px);
  }

  .globalnav .nav.nav:not(:last-child)::after {
    background: no-repeat center/contain url(../img/cmn/button-arrow-blue.svg);
    content: '';
    display: block;
    height: 16px;
    position: absolute;
    right: 10px;
    top: 21px;
    width: 9px;
  }
}

@media screen and (max-width: 1240px) {
  .no-js .globalnav-wrap {
    display: block;
    height: 63px;
    width: 100%;
    position: relative;
    top: 0px;
    left: 0px;
  }

  .no-js .nav-button {
    display: none;
  }

  .no-js .globalnav {
    display: flex;
    height: 500px;
    width: 100%;
    position: relative;
    top: 0px;
    left: 0px;
    transform: translate(0px, 0px);
  }

  .no-js main {
    display: block;
    height: auto;
    width: 100%;
    position: relative;
    top: 563px;
    left: 0px;
  }

  .no-js footer {
    margin-top: 563px;
  }
}

/* menu hover */
.link-underline {
  display: inline-block;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link-underline::after {
  background-color: var(--color-accent);
  bottom: 5px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transition: width .5s ease;
  width: 0;
}

@media(hover: hover) {
  .globalnav .nav a:not(.link-button):hover {
    color: var(--color-accent);
  }

  .link-underline:hover::after {
    width: 100%;
  }
}

/* SP menu */
@media screen and (max-width: 1240px) {
  .nav-button-wrap {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1100;
  }

  .nav-button {
    cursor: pointer;
    height: 25px;
    position: relative;
    width: 30px;
  }

  .nav-button span {
    background: var(--color-accent-cta);
    height: 1px;
    left: 0;
    position: absolute;
    transition: 0.3s;
    width: 100%;
  }

  .nav-button span:nth-child(1) {
    top: 0;
  }

  .nav-button span:nth-child(2) {
    top: 11px;
  }

  .nav-button span:nth-child(3) {
    bottom: 0;
  }

  .nav-button.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 15px;
  }

  .nav-button.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-button.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 15px;
  }

}


/*
Footer
------------------------------
*/
.footer-container {
  border-top: 1px solid var(--color-black);
  margin-top: 50px;
  padding-top: 30px;
}

.footer-contents {
  display: flex;
}

@media (max-width: 767px) {
  .footer-contents {
    flex-direction: column;
  }
}

.footer-column {
  flex: 0 0 50%;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

@media (max-width: 767px) {
  .footer-logo img {
    height: unset;
    margin-bottom: 10px;
    width: 100%;
  }
}

.footer-info {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 10px 0 0 15px;
}

@media (max-width: 767px) {
  .footer-info {
    margin: 0;
  }
}

.footer-info .tel {
  font-size: var(--fs20);
  font-weight: bold;
  line-height: 1;
  margin: 18px 0 10px;
}

.footer-info .hour {
  font-size: var(--fs12);
  line-height: 1;
}

.footer-link {
  display: flex;
}

.link-column {
  list-style: none;
  margin-top: 50px;
  width: 50%;
}

@media (max-width: 767px) {
  .link-column {
    margin-top: 31px;
  }
}

.link-column li {
  margin-bottom: 40px;
  position: relative;
}

.link-column li:last-child {
  margin-bottom: 70px;
}

.link-column a {
  align-items: center;
  color: #000;
  display: inline-flex;
  gap: 10px;
  position: relative;
  text-decoration: none;
}

.link-column a::before {
  background-image: url(../img/cmn/icon-footer-link.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  flex-shrink: 0;
  height: 16px;
  width: 16px;
}

.link-column a::after {
  background-color: var(--color-black);
  bottom: -5px;
  content: '';
  height: 1px;
  left: -5px;
  position: absolute;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform .4s ease-out;
  width: calc(100% + 10px);
}

@media(hover: hover) {
  .link-column a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
}

.copy-right {
  text-align: center;
  margin-bottom: 23px;
}

.page-top-wrap {
  background: url(../img/cmn/top-to-icon.svg) no-repeat center center;
  bottom: 50px;
  cursor: pointer;
  opacity: 1;
  position: fixed;
  right: 30px;
  z-index: 2;
}

.transition-all {
  transition: .3s;
}

@media(hover: hover) {
  .page-top-wrap:hover {
    background: url(../img/cmn/top-to-icon-hv.svg) no-repeat center center;
  }
}

@media (max-width: 767px) {
  .page-top-wrap {
    bottom: 50px;
    right: 20px;
  }
}

.page-top-link {
  display: block;
  height: 50px;
  width: 50px;
}

/*
Top
------------------------------
*/
.top-mv .mv-txt {
  font-size: var(--fs20);
  margin: 100px 0 80px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .mv-img {
    display: block;
    margin-top: 63px;
  }
  
  .top-mv .mv-txt {
    margin: 60px auto 120px;
    max-width: 90%;
    text-align: unset;
  }
}

.news-wrapper {
  background: var(--color-accent);
  box-sizing: border-box;
  position: relative;
  padding: 70px 0;
}

.news-list {
  background: var(--color-base);
  padding: 50px 25px;
}

.news-item {
  border-top: 1px dashed #000;
  display: flex;
  flex-direction: column;
}

.news-item:last-child {
  border-bottom: 1px dashed #000;
}

.news-item-info {
  align-items: center;
  display: flex;
  flex-direction: row;
  position: relative;
  z-index: 1;
}

.news-item-info .date {
  margin-right: 15px;
}

.news-item-info .category {
  border: 1px solid #000;
  border-radius: 5px;
  letter-spacing: .1em;
  padding: 5px 15px;
}

.news-item-title {
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.news-link {
  display: block;
  overflow: hidden;
  position: relative;
  padding: 25px 10px;
  text-decoration: none;
}

.news-link::before {
  background-color: var(--color-gray);
  content: '';
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transition: left 0.4s ease;
  width: 100%;
  z-index: 0;
}

@media(hover: hover) {
  .news-link:hover::before {
    left: 0;
  }
}

.news-list-empty {
  text-align: center;
  font-size: 200%
}

.vertical-deco-txt {
  color: var(--color-gray);
  font-family: var(--font-family-en);
  font-size: var(--fs200);
  font-weight: bold;
  letter-spacing: .1em;
  margin-left: 250px;
  position: absolute;
  pointer-events: none;
  transform: rotate(90deg);
  transform-origin: left top;
  white-space: nowrap;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .vertical-deco-txt {
    font-size: var(--fs180);
  }
}


.contents-col2-wrapper {
  display: flex;
  flex-direction: row;
}

@media screen and (max-width: 767px) {
  .contents-col2-wrapper {
    flex-direction: column;
    gap: 0;
  }

  .contents-col2-wrapper.--rev {
    flex-direction: column-reverse;
  }
}

.top-service .contents-col2-wrapper {
  margin-bottom: 75px;
}

.contents-col2-item.--img {
  flex: 0 0 52.7%;
}

@media screen and (max-width: 767px) {
  .contents-col2-item.--img {
    flex: unset;
  }
}

.contents-col2-item.--txt {
  flex: 0 0 47.3%;
}

@media screen and (max-width: 1240px) {
  .contents-col2-item.--txt {
    flex: unset;
  }
}

.contents-col2-item:last-child {
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  .contents-col2-item:last-child {
    margin-left: unset;
  }
}

.contents-col2-title {
  font-size: var(--fs28);
  font-weight: bold;
  letter-spacing: .1em;
  margin-bottom: 20px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contents-col2-title {
    font-size: var(--fs24);
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .contents-col2-wrapper.--rev .contents-col2-title {
    margin-top: 36px;
  }
}

.contents-col2-txt {
  letter-spacing: .1em;
  margin-bottom: 30px;
}

.contents-col2-item .link-button {
  margin-top: 0px;
  float: right;
}

@media screen and (max-width: 767px) {
  .contents-col2-item .link-button {
    display: block;
    float: none;
    margin: auto;
    max-width: 192px;
  }
}

contents-col2-title.--sub {
  margin-top: 32px;
  position: relative;
}

.contents-col2-title span {
  color: #FFB08E;
  font-size: var(--fs80);
  position: absolute;
  top: -70px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .contents-col2-title span {
    font-size: var(--fs60);
    top: -50px;
  }
}

.recruitment-wrapper {
  background: url(../img/top/top-recruitment-bg.jpg) no-repeat center/cover;
  max-height: 472px;
  margin-bottom: 150px;
  overflow: hidden;
  padding: 50px 0;
}

@media screen and (max-width: 767px) {
  .recruitment-wrapper {
    background: url(../img/top/top-recruitment-bg-sp.jpg) no-repeat center/cover;
    max-height: 800px;
  }
}

.contact-wrapper {
  background: url(../img/cmn/contact-bg.jpg) no-repeat center/cover;
  padding: 50px 0;
  margin-bottom: 150px;
}

@media screen and (max-width: 767px) {
  .contact-wrapper {
    background: url(../img/cmn/contact-bg-sp.jpg) no-repeat center/cover;
    margin-bottom: 120px;
  }
}

.contact-wrapper.--compact {
  margin-bottom: 0;
}

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

.contact-txt.--lead {
  font-size: var(--fs28);
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-btn-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  padding: 0px calc((100% - 850px) / 2);
}

@media screen and (max-width: 767px) {
  .contact-btn-wrapper {
    flex-direction: column;
  }
}

.contact-tel {
  height: 104px;
  margin-right: 10px;
  overflow: hidden;
  position: relative;
  width: 375px;
}

.contact-mail {
  height: 104px;
  margin-left: 10px;
  overflow: hidden;
  position: relative;
  width: 375px;
}

@media screen and (max-width: 1019px) {
  .contact-btn-wrapper {
    padding: 0px calc((100% - 790px) / 2);
  }
}

@media screen and (max-width: 767px) {
  .contact-tel, .contact-mail {
    margin: 0px;
    width: 100%;
  }
}

.contact-tel {
  background: var(--color-base);
  border-top: 2px solid var(--color-accent-cta);
  border-bottom: 2px solid var(--color-accent-cta);
}

@media screen and (max-width: 767px) {
  .contact-tel {
    margin-bottom: 70px;
  }
}

.contact-tel::before {
  background: no-repeat center/contain url(../img/cmn/cta-icon-tel.svg);
  background-size: 40px 40px;
  content: '';
  height: 40px;
  left: 15px;
  position: absolute;
  top: 26px;
  transition: all .4s ease;
  width: 40px;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .contact-tel::before {
    left: 8px;
  }
}

.contact-tel::after {
  background-color: var(--color-accent-cta);
  content: '';
  left: -100%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: left 0.4s ease;
  width: 100%;
  z-index: 1;
}

.contact-mail {
  background: var(--color-accent-cta);
  color: var(--color-base);
  font-size: var(--fs24);
}

.contact-mail::before {
  background: no-repeat center/contain url(../img/cmn/cta-icon-mail.svg);
  content: '';
  display: block;
  height: 40px;
  left: 40px;
  position: absolute;
  top: 34px;
  transition: all .4s ease;
  width: 40px;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .contact-mail::before {
    left: 15px;
  }
}

.contact-mail::after {
  background-color: var(--color-base);
  content: '';
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transition: left 0.4s ease;
  width: 100%;
  z-index: 1;
}

.contact-tel a, .contact-mail a {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: relative;
  transition: color 0.3s ease;
  width: 100%;
  z-index: 2;
}

.contact-tel a {
  padding-left: 40px;
}

.contact-mail a {
  padding-left: 50px;
}

.contact-tel .number {
  font-family: var(--font-family-en);
  font-size: var(--fs40);
  letter-spacing: .1em;
  line-height: 1;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .contact-tel .number {
    font-size: var(--fs38);
  }
}

.contact-tel .hour {
  font-size: var(--fs12);
  letter-spacing: .1em;
  line-height: 1;
}

@media(hover: hover) {

  .contact-tel:hover::after,
  .contact-mail:hover::after {
    left: 0;
  }

  .contact-mail a:hover {
    border-top: 2px solid var(--color-accent-cta);
    border-bottom: 2px solid var(--color-accent-cta);
    color: var(--color-black);
  }
}

.contact-tel .number,
.contact-tel .hour {
  transition: color 0.3s ease;
}

@media(hover: hover) {

  .contact-tel a:hover .number,
  .contact-tel a:hover .hour {
    color: var(--color-base);
  }

  .contact-tel:hover::before {
    background-image: url(../img/cmn/cta-icon-tel-w.svg);
  }

  .contact-mail:hover::before {
    background-image: url(../img/cmn/cta-icon-mail-b.svg);
  }
}

.member-wrapper {
  background: var(--color-accent);
  box-sizing: border-box;
  padding: 70px 0;
}

@media screen and (max-width: 767px) {
  .member-wrapper {
    padding: 50px 0;
  }
}

.member-item-wrapper {
  background: var(--color-base);
  padding: 50px;
}

@media screen and (max-width: 767px) {
  .member-item-wrapper {
    padding: 50px 10px;
  }
}

.member-item-wrapper p {
  text-align: center;
  margin-bottom: 30px;
}

.member-item-box {
  column-gap: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  justify-content: center;
  row-gap: 40px;
}

@media screen and (max-width: 767px) {
  .member-item-box {
    column-gap: 12px;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 10px;
  }
}

.member-img {
  width: 170px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto 15px;
}

.member-img img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .member-img {
    width: 100%;
  }
}

/*
Page > Common
------------------------------
*/
.page-header {
  border-bottom: 10px solid var(--color-accent);
  position: relative;
  margin-bottom: 150px;
}

@media (max-width: 767px) {
  .page-header {
    padding-top: 63px;
    margin-bottom: 100px;
  }
}


.page-header .mv-img img {
  height: 283px;
}

.page-title-wrapper {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  z-index: 1;
}

@media (max-width: 767px) {
  .page-title-wrapper {
    top: 52%;
  }
}

.page-title-wrapper::before {
  background: url('../img/cmn/circle-icon.svg') no-repeat center center;
  content: "";
  display: block;
  height: 30px;
  margin: 0 auto 16px;
  width: 30px;
}

.page-title-en {
  font-family: var(--font-family-en);
  font-size: var(--fs32);
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1;
  margin-bottom: 10px;
}

.page-title {
  letter-spacing: .1em;
}

.bread-crumbs {
  bottom: 16px;
  display: flex;
  left: 50px;
  position: absolute;
}

@media (max-width: 767px) {
  .bread-crumbs {
    bottom: 10px;
    left: 20px;
  }
}

.bread-crumbs li {
  padding-right: 40px;
}

.bread-crumbs li:not(:last-child)::after {
  content: "/";
  font-size: 1rem;
  position: absolute;
  top: 50%;
  transform: translate(18px, -50%);
}

.bread-crumbs li a {
  font-size: var(--fs14);
}

.page-sec-title-wrapper {
  margin-left: 40px;

}

.page-sec-title {
  color: var(--color-accent);
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1;
  margin-bottom: 17px;
  position: relative;
}

.page-sec-title::before {
  background: url('../img/cmn/circle-icon.svg') no-repeat center center;
  content: "";
  display: block;
  left: -40px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
}

.page-sec-title-en {
  font-size: var(--fs32);
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .page-sec-title-en {
    font-size: var(--fs24);
    margin-bottom: 25px;
  }
}

/*
Page > About
------------------------------
*/
.message-txt {
  margin-bottom: 30px;
  line-height: 1.7
}

.message-name {
  font-size: var(--fs20);
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1;
  text-align: right;
}

.established-list {
  background: var(--color-light-blue);
  padding: 30px 30px 30px 51px;
}

@media (max-width: 767px) {
  .established-list {
    padding: 25px 15px 25px 36px;
  }
}

.established-list-item {
  margin-bottom: 26px;
  position: relative;
}

.established-list-item:last-child {
  margin-bottom: unset;
}

.established-list-item::before {
  content: "◆";
  font-size: 1rem;
  position: absolute;
  top: 50%;
  transform: translate(-22px, -49%);
  color: var(--color-accent);
}

@media (max-width: 767px) {
  .established-list-item::before {
    top: 15px;
  }
}

.officer-table {
  max-width: 460px;
}

.officer-table th {
  font-size: var(--fs18);
  font-weight: bold;
  border-right: 2px solid var(--color-accent);
  width: 110px;
}

.officer-table .first-row {
  line-height: 1;
}

.officer-table th {
  text-align: right;
  padding-right: 30px;
  padding-bottom: 30px;
}

.officer-table td {
  padding-right: 25px;
  padding-bottom: 30px;
  display: flex;
}

.officer-table .last-row th,
.officer-table .last-row td {
  padding-bottom: 0px;
}

.officer-table td {
  margin-left: 30px;
}

.officer-name {
  width: 80px;
}

.officer-company {
  padding-left: 25px;
}

@media (max-width: 767px) {
  .officer-table td {
    flex-direction: column;
  }

  .officer-company {
    padding-left: 0px;
    padding-top: 10px;
  }
}

.history-table th {
  border-top: 2px solid var(--color-accent);
  padding: 25px 10px;
  width: 215px;
  font-weight: bold;
}

.history-table td {
  border-top: 2px solid var(--color-border-gray);
  padding-left: 15px;
}

@media (max-width: 767px) {
  .history-table tr {
    display: flex;
    flex-direction: column;
  }

  .history-table th,
  .history-table td {
    display: block;
    width: 100%;
  }

  .history-table th {
    padding: 25px 10px 20px;
  }

  .history-table td {
    border-top: none;
    padding-left: 10px;
    padding-bottom: 20px;
  }
}

.access-map {
  margin-bottom: 20px;
}

.access-address {
  line-height: 1.7;
}

.access-hour {
  font-size: var(--fs12);
}

/*
Page > Member
------------------------------
*/
.company-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 25px;
  padding: 0;
  margin: 30px 0 0 0;
  list-style: none;
}

.company-nav-item {
  flex: 0 0 calc((100% - 50px) / 3);
  box-sizing: border-box;
  border-bottom: 1px solid var(--color-black);
  position: relative;
}

.company-nav-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.company-nav-item::after {
  background: no-repeat center/contain url(../img/page/local-link-arrow.svg);
  content: '';
  display: block;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: 5px;
  width: 16px;
}

@media (max-width: 768px) {
  .company-nav-item {
    flex: 0 0 calc((100% - 25px) / 2);
  }

  .company-nav-item::after {
    content: unset;
  }
}

.company-info-wrapper {
  margin-top: 130px;
}

.company-info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 70px 25px;
  padding: 0;
  margin: 30px 0 0 0;
  list-style: none;
}

.company-info-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 calc((100% - 50px) / 3);
  box-sizing: border-box;
  box-shadow: 5px 4px 10px 5px rgba(0, 0, 0, 0.25);
  padding: 20px 10px;
  scroll-margin-top: 20px;
}

@media (max-width: 768px) {
  .company-info-item {
    flex: 0 0 100%;
    scroll-margin-top: 80px;
  }
}

.company-info-item .company-logo {
  width: 170px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto 15px;
}

.company-info-item .company-logo img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: cover;
  display: block;
}


.company-info-item .company-name {
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: .1em;
}

.company-info-item .company-type-wrap {
  margin-bottom: 15px;
}
.company-type-wrap {
  display: flex;
  align-items: flex-start;
}

.company-type-label {
  flex: 0 0 4em; /* ラベル部分の固定幅（必要に応じて調整） */
}

.company-type-text {
  flex: 1;
}


.company-info-item .company-desc {
  margin-bottom: 30px;
}

.company-info-item .company-link {
  display: block;
  margin: 0 auto;
  width: 176px;
}

/*
Page > recruitment
------------------------------
*/
.about-membership .contents-col2-txt {
  line-height: 1.7;
  letter-spacing: .1em;
}

@media (max-width: 768px) {
  .about-membership .contents-col2-txt {
    margin-bottom: 0px;
  }

  .about-membership .contents-col2-item.--img {
    margin-bottom: 20px;
  }
}

.conditions-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 70px 50px;
}

.conditions-item {
  box-shadow: 5px 4px 10px 5px rgba(0, 0, 0, 0.25);
  padding: 20px;
  width: calc((100% - 50px) / 2);
}

.conditions-item img {
  margin-bottom: 20px;
}

.conditions-item p {
  line-height: 1.7;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .conditions-item {
    width: 100%;
  }
}

.membership-fee-table {
  border-collapse: collapse;
  margin-bottom: 20px;
  table-layout: fixed;
  width: 100%;
}

.membership-fee-table th,
.membership-fee-table td {
  border: 1px solid #B9B9B9;
  letter-spacing: .1em;
  padding: 8px 20px;
  text-align: left;
  width: 33.33%;
}

.membership-fee-table th {
  background: #F0F0F0;
}

@media screen and (max-width: 767px) {
  .membership-fee-table thead {
    display: none;
  }

  .membership-fee-table tbody tr {
    border: 1px solid #000;
    display: block;
  }

  .membership-fee-table tbody tr:last-child {
    border-top: none;
  }

  .membership-fee-table tbody td {
    border: none;
    border-top: 1px solid #B9B9B9;
    display: block;
    width: 100%;
  }

  .membership-fee-table tbody td:first-child {
    background: #f0f0f0;
    border-top: none;
  }
}

.membership-fee-txt {
  line-height: 1.7;
  letter-spacing: .1em;
}

.flow-item {
  column-gap: 25px;
  display: flex;
  min-height: 160px;
  margin-bottom: 35px;
}

@media screen and (max-width: 767px) {
  .flow-item {
    flex-direction: column;
  }
}

.flow-step {
  align-items: center;
  background: var(--color-accent);
  color: var(--color-base);
  display: flex;
  font-size: var(--fs20);
  font-weight: bold;
  flex-direction: column;
  justify-content: center;
  letter-spacing: .1em;
  max-height: 132px;
  position: relative;
  width: calc((100% - 25px) * 1 / 4.625);
}

@media screen and (max-width: 767px) {
  .flow-step {
    padding-bottom: 20px;
    width: 100%;
  }
}

.flow-step:not(.--last)::after {
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid var(--color-accent);
  bottom: -25px;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
}

.flow-step-no {
  font-size: var(--fs32);
  font-weight: bold;
}

.flow-step-title {
  text-align: center;
}

.flow-detail {
  display: flex;
  flex-direction: column;
  width: calc((100% - 25px) * 3.625 / 4.625);
}

@media screen and (max-width: 767px) {
  .flow-detail {
    margin-top: 40px;
    width: 100%;
  }
}

.flow-detail-title {
  border-bottom: 2px solid var(--color-border-gray);
  font-size: var(--fs20);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1em;
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.flow-detail-txt {
  line-height: 1.7;
  letter-spacing: .1em;
}

.flow-note-title {
  font-weight: 500;
  margin-bottom: 15px;
}

.flow-note-txt {
  line-height: 1.7;
  letter-spacing: .1em;
}

/*
Page > news
------------------------------
*/
.page-news {
  margin-top: -70px;
}

@media screen and (max-width: 767px) {
  .page-news {
    margin-top: -30px;
  }
}

.page-news .contents-wrapper {
  position: relative;
}

.page-news .news-wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
  margin-bottom: 150px;
}

@media screen and (max-width: 767px) {
  .page-news .news-wrapper {
    margin-bottom: 100px;
  }
}

.page-news .news-list {
  padding-top: 120px;
}

@media screen and (max-width: 767px) {
  .page-news .news-list {
    padding-top: 50px;
  }

  .page-news .news-item-title {
    margin-top: 15px;
  }

  .page-news .news-item-title {
    line-height: 1.5;
  }
}

.category-items {
  display: flex;
  position: absolute;
  top: 50px;
  left: 25px;
}

@media screen and (max-width: 767px) {
  .category-items {
    display: none;
  }
}

.category-items li {
  border: 1px solid var(--color-black);
  background: var(--color-base);
  border-radius: 5px;
  letter-spacing: .1em;
  padding: 5px 15px;
  margin-right: 30px;
}

.news-pager-wrapper {
  background: var(--color-base);
  padding: 20px 0 50px;
}

@media screen and (max-width: 767px) {
  .news-pager-wrapper {
    padding-top: 0;
  }
}

.news-list-pager {
  display: flex;
  justify-content: space-between;
  max-width: 420px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .news-list-pager {
    max-width: 90%;
  }
}

.news-list-pager-item {
  position: relative;
  color: var(--color-base);
  background: var(--color-accent);
}

.news-list-pager-item a {
  display: block;
  height: 100%;
  padding: 8px 20px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .news-list-pager-item a {
    padding: 8px 12px;
  }
}

.news-list-pager-item--current {
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  background: var(--color-base);
}

.news-list-pager-item--current a {
  padding: 8px 18px;
}

@media screen and (max-width: 767px) {
  .news-list-pager-item--current a {
    padding: 8px 11px;
  }
}

.news-list-pager-item--next a,
.news-list-pager-item--prev a {
  padding: 8px 22px;
}

@media screen and (max-width: 767px) {

  .news-list-pager-item--next a,
  .news-list-pager-item--prev a {
    padding: 8px 18px;
  }
}

.news-list-pager-item--next::before,
.news-list-pager-item--prev::before {
  content: '';
  background: url(../img/page/news-pager-arrow.svg) no-repeat top center;
  background-size: 100%;
  display: block;
  height: 16px;
  position: absolute;
  pointer-events: none;
  right: 14px;
  top: 15px;
  width: 16px;
}

@media screen and (max-width: 767px) {

  .news-list-pager-item--next::before,
  .news-list-pager-item--prev::before {
    right: 10px;
  }
}

.news-list-pager-item--next::before {
  transform: rotateY(180deg);
}


.news-article {
  background: var(--color-base);
  padding: 50px 25px;
}

@media screen and (max-width: 767px) {
  .news-article {
    padding-top: 70px;
  }
}

.article-header .news-title {
  border-bottom: 2px solid var(--color-border-gray);
  padding-bottom: 15px;
  font-size: var(--fs20);
  letter-spacing: .1em;
  margin: 20px auto 30px;
}

.article-body {
  margin-bottom: 70px;
}

.article-body p {
  line-height: 1.7;
  letter-spacing: .1em;
  margin-bottom: 30px;
}

.news-article .link-button {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/*
Page > Contact
------------------------------
*/
.contact-heading {
  color: var(--color-accent);
  font-size: var(--fs32);
  font-weight: bold;
  letter-spacing: .1em;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .contact-heading {
    font-size: var(--fs24);
  }
}

.contact-desc {
  letter-spacing: .1em;
  margin-bottom: 30px;
}

.contact-tel-box {
  background: var(--color-light-blue);
  padding: 25px 0;
}

.contact-tel-wrapper .contact-tel {
  background: unset;
  border-top: unset;
  border-bottom: unset;
  height: unset;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .contact-tel-wrapper .contact-tel {
    max-width: 375px;
  }
}


@media screen and (max-width: 767px) {
  .contact-tel-wrapper .contact-tel .number {
    font-size: var(--fs32);
  }
}

.contact-tel-wrapper .contact-tel::before {
  top: 10px;
}

@media screen and (max-width: 767px) {
  .contact-tel-wrapper .contact-tel::before {
    top: 10px;
  }
}

.contact-tel-wrapper .contact-tel::after {
  content: none;
}

@media (hover: hover) {

  .contact-tel-wrapper .contact-tel a:hover .number,
  .contact-tel-wrapper .contact-tel a:hover .hour {
    color: var(--color-black);
  }

  .contact-tel-wrapper .contact-tel:hover::before {
    background-image: url(../img/cmn/cta-icon-tel.svg);
  }
}

.form-field {
  border-top: 2px solid var(--color-border-gray);
  display: flex;
  flex-wrap: wrap;
  padding: 30px 10px 0;
  margin: 0 auto 25px;
}

@media screen and (max-width: 767px) {
  .form-field {
    flex-direction: column;
  }
}

input[type=checkbox] {
  display: none;
}

.field-label {
  display: inline-block;
  text-align: start;
  width: 280px;
}

.wpcf7-form-control-wrap:not(.wpcf7-form-control-wrap[data-name="privacy"]) {
  flex: 1;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap:not(.wpcf7-form-control-wrap[data-name="privacy"]) {
    margin-top: 15px;
  }
}

.wpcf7-form-control {
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 8px 16px;
}

.wpcf7-form-control-wrap.wpcf7-form-control-wrap[data-name="privacy"] .wpcf7-form-control {
  box-sizing: border-box;
  box-shadow: none;
  padding-right: 0;
  display: inline-block;
}

.form-field.form-button {
  align-items: center;
  border-top: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.form-required {
  background: var(--color-accent-cta);
  color: var(--color-base);
  padding: 2px 8px;
  border-radius: 5px;
  margin-left: 10px;
}

.form-field.field-contents {
  margin: 0 auto 30px;
}

@media screen and (max-width: 767px) {
  .form-field.field-contents {
    margin: 0 auto 25px;
  }
}

.google-notice {
  font-size: var(--fs14);
  text-align: center;
  margin-top: 30px;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .google-notice {
    text-align: start;
    line-height: 1.7;
    letter-spacing: .1em;
  }
}
.google-notice a {
  text-decoration: underline;
} 

.field-privacy {
  padding-top: 70px;
  margin: 0 auto;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .field-privacy {
    flex-direction: row;
  }
}

.field-privacy input[type="checkbox"] {
  background: var(--color-bg-white);
  border: 1px solid var(--color-black);
  display: block;
  height: 20px;
  left: 0px;
  margin-right: 15px;
  position: relative;
  top: 0;
  width: 20px;
  cursor: pointer;
}

.form-input-checkbox {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px;
  position: relative;
  width: auto;
}

.form-privacy-link {
  text-decoration: underline;
}

.field-privacy input[type=checkbox]:checked:before {
  border-bottom: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
  content: "";
  height: 10px;
  left: 6px;
  position: absolute;
  top: 3px;
  transform: rotate(45deg);
  width: 5px;
}

.link-button .wpcf7-form-control {
  width: unset;
  box-sizing: unset;
  box-shadow: unset;
  padding: 0px;
  cursor: pointer;
}

.wpcf7-spinner {
  display: none;
}

.link-button input[type="submit"] {
  padding: 14px 45px 14px 30px;
  box-sizing: border-box;
}

.link-button.--submit {
  padding: 0;
}

/*
Page > Thanks
Page > 404
------------------------------
*/
.thanks-wrapper,
.notfound-wrapper {
  margin-top: 150px;
}

@media screen and (max-width: 767px) {

  .thanks-wrapper,
  .notfound-wrapper {
    margin-top: 180px;
  }
}

.thanks-wrapper .contact-heading,
.notfound-wrapper .contact-heading {
  text-align: center;
  font-weight: 500;
}

@media screen and (max-width: 767px) {

  .thanks-wrapper .contact-heading,
  .notfound-wrapper .contact-heading {
    text-align: center;
    line-height: 1.5;
    letter-spacing: .1em;
  }
}

.thanks-wrapper .contact-desc,
.notfound-wrapper .contact-desc {
  text-align: center;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .1em;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {

  .thanks-wrapper .contact-desc,
  .notfound-wrapper .contact-desc {
    text-align: start;
  }
}

.thanks-wrapper .link-button,
.notfound-wrapper .link-button {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/*
Page > Privacy
------------------------------
*/
.privacy-item {
  margin-bottom: 70px;
}

@media screen and (max-width: 767px) {
  .privacy-item {
    margin-bottom: 50px;
  }
}

.privacy-item h2 {
  border-bottom: 1px solid var(--color-accent);
  font-size: var(--fs20);
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 20px;
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .privacy-item h2 {
    font-size: var(--fs18);
    margin-bottom: 15px;
  }
}

.privacy-item p {
  line-height: 1.7;
  letter-spacing: .1em;
}

.privacy-item.--cookie a {
  text-decoration: underline;
}

.achievements-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.achievements-table th:first-child {
  border-radius: 5px 0 0 0;
}

.achievements-table th:last-child {
  border-radius: 0 5px 0 0;
  border-right: 1px solid #3c6690;
}

.achievements-table th {
  text-align: center;
  color: white;
  background: linear-gradient(#829ebc, #225588);
  border-left: 1px solid #3c6690;
  border-top: 1px solid #3c6690;
  border-bottom: 1px solid #3c6690;
  box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset;
  width: 25%;
  padding: 10px 0;
}

.achievements-table td {
  text-align: center;
  border-left: 1px solid #a8b7c5;
  border-bottom: 1px solid #a8b7c5;
  border-top: none;
  box-shadow: 0px -3px 5px 1px #eee inset;
  width: 25%;
  padding: 10px 0;
}

.achievements-table td:last-child {
  border-right: 1px solid #a8b7c5;
}

.achievements-table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}

.achievements-table tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}

.about-gicts-page.main-container section {
	letter-spacing: 0.1em;
	line-height: 1.8;
}

.about-gicts-page section ul {
  list-style: disc;
  padding-left: 40px;
}

.about-gicts-page section li {
  padding-bottom: 10px;
}

.about-gicts-page section p {
    padding-left: 10px;
	padding-bottom: 10px;
}

.greeting-name {
	text-align: right;
	margin-top: 20px;
}

.about-gicts-page .page-sec-title-wrapper p {
	padding-left: 0;
}

.introduction .page-sec-title-wrapper{
	margin-left: 10px;
}
.recruitment-membership .emphasis-text {
	font-weight:bold;
}

.recruitment-membership section ul {
  list-style: disc;
  padding-left: 40px;
}

.recruitment-membership .main-container section {
	letter-spacing: 0.1em;
	line-height: 1.8;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.transition-opacity {
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

.no-js .fade-in {
  opacity: 1;
  transform: translateY(0);
}