/* =========================================
  01. VARIABLES
========================================= */
:root {
  --c-main: #008A83;
  --c-main-weak: #AACFCD;
  --c-line: #06C755;
  --c-black: #1E1E1E;
  --c-text: #524D4D;
  --c-txt-weak: #787878;
  --c-border: #e8e8e8;

  --container: 1100px;

  --gutter: 32px;
  --header-h: 60px;

  --fz-base: 15px;
  --lh: 1.85;
}

/* =========================================
  02. BASE
========================================= */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: var(--fz-base);
  color: var(--c-text);
}

p {
  margin-bottom: 1rem;
  font-feature-settings: "palt";
}

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

.sp-none{
  display:block;
}
.pc-none{
  display:none;
}

/* =========================================
  03. LAYOUT
========================================= */
.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.bg-gray {
  background: url(../img/common/bg-gray.jpg);
  background-size: cover;
  padding: 3.5rem 0;
}

.bg-gray__container {
  background: #fff;
  padding: 4.5rem;
}

/* =========================================
  04. COMMON / COMPONENT
========================================= */
.title-en {
  font-family: "Spline Sans Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.copy-read {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.front-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

.front-title span {
  display: block;
  font-size: 60%;
  position: relative;
  bottom: 5px;
  color: var(--c-main);
}

.ov__title {
  font-size: 1.8rem;
  text-align: center;
  margin: 3rem auto;
  color: var(--c-main);
}

.ov__subtitle {
  font-size: 1.3rem;
  text-align: center;
  border-bottom: 1px solid var(--c-main);
  padding-bottom: .25rem;
  margin-bottom: .5rem;
  color: var(--c-main);
}

.thumbnail {
  position: relative;
}

.thumbnail__title {
  position: absolute;
  bottom: 10%;
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

.thumbnail__title span {
  display: block;
  font-size: 1rem;
  position: relative;
  top: 12px;
}

.thanks{
  text-align: center;
  padding: 1rem 0;
}
.thanks__title{
  color: var(--c-main);
  font-size: 2rem;
  border-bottom: 1px solid;
  display: inline-block;
  margin: 2rem auto 1rem;
}
.thanks__text{
  background: #fafafa;
  padding: 1.5rem;
  margin: 2rem auto;
  border-radius: 5px;
}

.thanks__img{
  max-width: 200px;
  margin: 1rem auto;
}

.thanks__tel{
  font-size: 1.3rem;
  text-decoration: none;
}
/* button */
.btn-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: .5rem 1.8rem;
  border: 1.5px solid #0d7f77;
  border-radius: 9999px;
  letter-spacing: .08em;
  color: #0d7f77;
  text-decoration: none;
  font-size: 90%;
  transition: .5s;
  background-color: transparent;
}

.btn-more__icon {
  width: 20px;
  height: 20px;
  border: 1.5px solid #0d7f77;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.btn-more__icon::before {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1.5px solid #0d7f77;
  border-bottom: 1.5px solid #0d7f77;
  transform: rotate(-45deg);
  position: relative;
}

.btn-more:hover {
  background: #0d7f77;
  color: #fff;
}

.btn-more:hover .btn-more__icon {
  border-color: #fff;
}

.btn-more:hover .btn-more__icon::before {
  border-color: #fff;
}

.about .btn-more {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* fade */
.fade {
  opacity: 0;
  transition: 1.5s ease;
}

.fade--up {
  transform: translateY(20px);
}

.fade--up.is-show {
  transform: translateY(0);
  opacity: 1;
}

.fade--in.is-show {
  opacity: 1;
}

/* to top */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--c-main);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
}

.to-top.is-show {
  opacity: 1;
  pointer-events: auto;
  z-index: 1000;
}

/* =========================================
  05. HEADER / FOOTER
========================================= */
.site-header__inner {
  display: flex;
  align-items: center;
}

.site-header__inner--sp,
.sp-nav {
  display: none;
}

.site-header__logo {
  margin-right: auto;
  padding-left: 1.5rem;
  max-width: 250px;
}

.global-nav__list {
  display: flex;
  gap: 30px;
}

.global-nav a {
  text-decoration: none;
}

.global-nav a:hover {
  transition: .5s;
  color: var(--c-main);
}

header .cta {
  display: flex;
  align-items: stretch;
}

header .cta__tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 1rem;
}

.cta__tel a {
  font-size: 2rem;
  text-decoration: none;
  font-weight: 500;
}

.cta__tel p {
  color: var(--c-txt-weak);
  font-size: 80%;
  text-align: right;
  position: relative;
  bottom: 8px;
}

header .cta__mail {
  width: 88px;
  background: linear-gradient(30deg, rgba(0,138,131,1) 0%, rgba(43,116,113,1) 100%);
}

header .cta__mail a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

header .cta__mail img {
  width: 28px;
  height: auto;
}

footer{
  background: #fafafa;
  font-size: 90%;
}
.footer-tel{
  text-decoration: none;
  font-size: 1.3rem;
}
.footer__inner{
  display: flex;
  padding: 1rem 0;
  gap: 30px;
}
.footer-logo{
  width: 200px;
  margin-bottom: .5rem;
}
.footer-instagram{
  width: 20px;
}
.footer__nav {
    display: flex;
    gap: 30px;
}
.footer__nav a{
  text-decoration: none;
}
.footer__nav a:hover{
  color: var(--c-main);
}
.footer__nav li{
  margin-bottom: .5rem;
}
.footer__nav-sub li{
  font-size: 90%;
  margin-bottom: .25rem;
}
.footer__nav li::before{
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(../img/common/icon-arrow.svg);
  margin-right: .25rem;
}
.site-footer__copyright {
    background: #333;
    color: white;
    font-size: 12px;
    text-align: center;
    padding: .5rem;
    margin-bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
}

/* =========================================
  06. BREADCRUMB
========================================= */
.breadcrumb {
  font-size: 0.85rem;
  padding: .5rem 0 .75rem;
}

.breadcrumb__list {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding-right: 2rem;
}

.breadcrumb__item::after {
  content: ">";
  margin-left: 8px;
  color: var(--c-main);
}

.breadcrumb__item:last-child::after {
  display: none;
}

/* =========================================
  07. HERO / TOP
========================================= */
.hero {
  /*height: calc(100dvh - var(--header-h));*/
  height: calc(100svh - var(--header-h));
  position: relative;
  overflow: hidden;
}

.hero img {
  width: 100%;
  object-fit: cover;
}

.heroSlider,
.heroSlider__track {
  height: 100%;
}

.heroSlider__track {
  position: relative;
  margin: 0;
  padding: 0;
}

.heroSlider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.3s ease;
  pointer-events: none;
}

.heroSlider__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.heroSlider__media {
  position: absolute;
  inset: 0;
  display: block;
}

.heroSlider__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroSlider__content {
  position: absolute;
  left: 6%;
  bottom: 30%;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
  max-width: min(92%, 720px);
  z-index: 2;
}

.heroSlider__lead {
  position: relative;
  display: inline-block;
  margin: 0 0 .6rem;
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: .04em;
}

.heroSlider__lead::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 3s ease;
}

.heroSlider__lead.is-animated::after {
  transform: scaleX(1);
}

.heroSlider__catch {
  margin: 0;
  font-size: clamp(32px, 4vw, 64px);
  letter-spacing: .02em;
  line-height: 1.15;
}

/* about */
.about {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 3rem auto;
}
.about p {
    margin-bottom: .5rem;
}
.about img {
  max-width: 500px;
}

.about__title {
  font-size: 2.8rem;
  color: var(--c-main);
}

.about__title span {
  display: block;
  font-size: 60%;
  position: relative;
  top: 15px;
}

/* service */
.service__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service__link {
  position: relative;
  display: block;
  overflow: hidden;
}

.service__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.service__title {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  z-index: 2;
  font-size: var(--fz-base);
}

.service__arrow {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 25px;
  height: 25px;
  z-index: 3;
}

.service__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  transition: 0.3s;
}

.service__link:hover::after {
  background: rgba(0,0,0,0.4);
}

.service__link:hover img {
  transform: scale(1.05);
}

/* recruit */
.recruit img {
  margin: auto;
}

.recruit h3 {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin: 1.5rem auto;
}

.recruit p {
  text-align: center;
  margin-bottom: 2rem;
}

.recruit__supplement {
  display: block;
  font-size: 80%;
  text-align: center;
  margin: .25rem auto;
}

.recruit .btn-more {
  position: static;
  margin: 2rem auto 0;
  display: flex;
  width: fit-content;
}

.news-list a {
    text-decoration: none;
}

.news-list li {
    border-bottom: 1px solid #ccc;
    padding-bottom: .25rem;
    margin-bottom: 1rem;
}
.news-list time {
    color: #666;
    margin-right: 1rem;
}
.news-list a:hover{
  color: var(--c-main);
}

/* =========================================
  08. LOWER / ARCHIVE
========================================= */
.archive-column__header {
  position: relative;
}

.archive-column__read {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90%, 620px);
  background: rgba(255, 255, 255, 0.7);
  padding: 2.5rem;
  border-radius: 10px;
  text-align: center;
}

.archive-column__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.archive-column__title span {
  color: var(--c-main);
  display: block;
  font-size: .8rem;
  position: relative;
  top: 5px;
}

/* post card */

.post-list{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 3rem;
}
.post-card{
  width: 100%;
}
.post-card {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 5px;
  max-width: 350px;
}

.post-card__link {
  text-decoration: none;
}

.post-card__thumb {
  overflow: hidden;
}

.post-card__thumb img {
  transition: transform .4s ease;
}

.post-card__link:hover .post-card__thumb img {
  transform: scale(1.05);
}

.post-card__date {
  font-size: 80%;
  display: block;
  text-align: right !important;
  color: #ccc;
}

.post-card__title {
  line-height: 1.5rem;
}

.post-card__cats {
  color: var(--c-main);
  font-size: 90%;
}



.archive-column .post-card__cat {
  font-size: 90%;
}

/* =========================================
  09. ARTICLE
========================================= */
.column-article__visual,
.works-article__visual {
  position: relative;
}

.column-article__thumb img,
.works-article__thumb img {
  width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto 2rem;
  border-radius: 5px;
}

.column-article__header,
.works-article__header {
  position: absolute;
  right: 5%;
  bottom: 10%;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  border-radius: 5px;
  font-size: 1.3rem;
}

.column-article__meta {
  display: flex;
  justify-content: space-between;
  margin: .25rem auto;
  font-size: 80%;
}

.column-article__content {
  max-width: 1000px;
  margin: auto;
}

.column-article__content img {
  margin-bottom: .5rem;
  border-radius: 5px;
}

.column-article__content .read,
.works-article__section .read {
  background: #F9F9F9;
  color: var(--c-main);
  padding: 1rem;
  margin: 0 auto 2rem;
  border-radius: 5px;
  font-size: 95%;
}

.column-article__content h2 {
  color: var(--c-main);
  font-size: 1.3rem;
  border-bottom: 1px solid;
  margin: 3rem 0 1rem;
}

.column-article__content h3 {
  color: var(--c-main);
  font-size: 1rem;
  border-left: 3px solid;
  padding-left: .5rem;
  margin-bottom: 1rem;
}

.wp-block-columns {
  margin-bottom: 30px;
}
.post-list--news .post-card{
  background: initial;
  max-width: initial;
  border-radius: 0;
  border-bottom: 1px solid #ccc;
  padding: 1rem;
}
.post-list--news .post-card__date{
  text-align: left !important;
}

/* =========================================
  10. WORKS
========================================= */
.works-article__read {
  border: 1px solid var(--c-main);
  padding: 2rem 2.5rem;
  margin: 3rem auto;
  border-radius: 5px;
}

.works-article__heading {
  font-size: 1.3rem;
  border-bottom: 1px solid;
  margin-bottom: .5rem;
  color: var(--c-main);
}

.works-article__meta {
  text-align: right;
  font-size: 80%;
}

.works-article__info {
  display: grid;
  grid-template-columns: 140px 1fr;
  font-size: 15px;
}

.works-article__info dt {
  font-weight: 600;
  color: #333;
  padding: .5rem 0;
  border-bottom: 1px solid #ccc;
}

.works-article__info dd {
  margin: 0;
  color: #666;
  padding: .5rem 0;
  border-bottom: 1px solid #ccc;
}

.works-article__gallery {
  max-width: 800px;
  margin: 1.5rem auto;
  overflow: hidden;
  position: relative;
}

.works-article__gallery .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.works-article__gallery .swiper-pagination {
  position: static;
  margin-top: 16px;
  text-align: center;
}

/* =========================================
  11. COMPANY / OVERVIEW / INITIATIVES
========================================= */
.ov-item {
  position: relative;
  margin-block: clamp(32px, 6vw, 72px);
}

.ov-item__media {
  width: min(760px, 92vw);
  height: clamp(220px, 34vw, 420px);
  overflow: hidden;
}

.ov-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ov-item__panel {
  position: absolute;
  top: clamp(12px, 2vw, 24px);
  width: min(600px, 86vw);
  padding: clamp(14px, 2vw, 2.5rem);
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(2px);
  box-shadow: 1px 8px 20px #f3f3f3bd;
}

.ov-item--right .ov-item__media {
  margin-left: auto;
}

.ov-item--right .ov-item__panel {
  left: clamp(16px, 4vw, 72px);
}

.ov-item--left .ov-item__media {
  margin-right: auto;
}

.ov-item--left .ov-item__panel {
  right: clamp(16px, 4vw, 72px);
}

.company__title.copy-read {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--c-main);
}

.company__read {
  margin: 3rem auto;
  display: flex;
  gap: 50px;
}

.company__ov.ov__subtitle {
  border-bottom: initial;
  text-align: left;
  font-size: 1.3rem;
  padding-bottom: 0;
  margin-bottom: 0;
}

.company__ov .ov__lead {
  color: var(--c-main);
  font-size: 1.8rem;
  margin-bottom: 1.3rem;
  position: relative;
  bottom: 5px;
}
.company-profile {
    margin-bottom: 3rem;
}

.philosophy__title {
  font-size: 1.8rem;
  text-align: center;
  position: relative;
  bottom: 10px;
  color: var(--c-text);
  margin: 3rem auto 1rem;
}

.philosophy__title .philosophy__title--deco {
  display: block;
  font-size: 1.3rem;
  color: var(--c-main);
  position: relative;
  top: 10px;
}

.philosophy__list {
  display: flex;
  gap: 50px;
}

.philosophy__list img {
  height: auto;
}

.philosophy__list p {
  text-align: center;
  margin-top: .5rem;
}

.guide .company__ov.ov__subtitle.copy-read {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

.initiatives {
  padding: 80px 0;
}

.initiatives__read {
  background: #fafafa;
  padding: 2rem;
  margin: 3rem auto;
  text-align: center;
}

.initiatives__read span {
  color: var(--c-main);
}

.initiatives__title {
  text-align: center;
  margin-bottom: 40px;
}

.initiatives__viewport {
  overflow: hidden;
  cursor: grab;
  padding-bottom: 1rem;
}

.initiatives__viewport:active {
  cursor: grabbing;
}

.initiatives__track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.initiatives-card {
  width: 320px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 10px rgba(0,0,0,.03);
}

.initiatives-card__media img {
  width: 100%;
  height: auto;
}

.initiatives-card__body {
  padding: 20px;
}

.initiatives-card__heading {
  text-align: center;
  color: var(--c-main);
  padding-bottom: .25rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--c-main);
}

.initiatives-card__text {
  font-size: .9rem;
  line-height: 1.7;
}

.attempt__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 2.5rem auto 5rem;
  align-items: center;
  align-content: center;
  color: var(--c-main);
}

.attempt-card {
  width: 320px;
  height: 250px;
  text-align: center;
  border: 1.5px solid var(--c-main);
  border-radius: 20px;
  padding: 2rem 1rem;
}

.attempt-card img {
  width: 90px;
  height: 90px;
  margin: 0 auto 1rem;
}

.company-profile__table-wrap {
  overflow-x: auto;
}

.company-profile__table {
  width: 100%;
  max-width: 950px;
  margin: auto;
  border-collapse: collapse;
}

.company-profile__table th,
.company-profile__table td {
  padding: 24px 20px;
  border-top: 1px solid rgba(0,0,0,.55);
  border-bottom: 1px solid rgba(0,0,0,.55);
  border-left: none;
  border-right: none;
  vertical-align: top;
}

.company-profile__table th {
  width: 200px;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
  background: #fafafa;
}

.company-profile__list {
  margin: 0;
  padding-left: 1.2em;
}

.company-profile__list li {
  margin: 0.2em 0;
}

.strengths {
  overflow: hidden;
  width: 100%;
  margin-bottom: 1rem;
}

.strengths__inner {
  display: flex;
  width: max-content;
  animation: strengths-scroll 50s linear infinite;
}

.strengths__list {
  display: flex;
}

.strengths__list img {
  width: 400px;
  margin-right: 20px;
}

.strengths__text {
  text-align: center;
}

@keyframes strengths-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================================
  12. SWIPER
========================================= */
.swiper {
  --swiper-theme-color: var(--c-main);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 10px;
}


/* =========================================
  13. CONTACT
========================================= */

.contact__title {
  color: var(--c-main);
    font-size: 1.2rem;
    border-bottom: 1px solid;
    margin: 2em auto;
}

.contact-tel {
    background: #fafafa;
    padding: 1.5rem 1rem;
    border-radius: 5px;
}
.contact-tel a {
    font-size: 2rem;
    text-decoration: none;
}
.contact-tel .contact__title{
  margin: 0 auto 1rem;
}

.contact .required {
    background: #FA4569;
    color: white;
    font-weight: 100;
    padding: 2px .75rem;
    margin-left: .5rem;
    border-radius: 3px;
    font-size: 10px;
}

.contact-form label{
display:block;
margin-bottom:20px;
font-weight:600;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
width:100%;
padding:10px;
border:1px solid #ccc;
border-radius:4px;
}
.wpcf7 input[type="submit"]{
  background:#0d7f77;
  color:#fff;
  border:none;
  padding:12px 40px;
  border-radius:4px;
  cursor:pointer;
}

.wpcf7 input[type="submit"]{
  background:#0d7f77;
  color:#fff;
  border:none;
  padding:12px 40px;
  border-radius:4px;
  cursor:pointer;
  transition:.3s;
}

.wpcf7 input[type="submit"]:hover{
  background:#09625c;
}
.contact-submit{
text-align:center;
margin-top:30px;
}

.no-post {
    text-align: center;
}
/* =========================================
  14. MEDIA QUERY
========================================= */
@media (max-width: 1299px) {
  .site-header__inner--pc {
    display: none;
  }

  .site-header__inner--sp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
  }

.hamburger {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: .3s ease;
}

.hamburger span:nth-child(1) {
  top: 14px;
}

.hamburger span:nth-child(2) {
  top: 21px;
}

.hamburger span:nth-child(3) {
  top: 28px;
}

/* 開いたとき */
.hamburger.is-open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}


  .sp-nav {
    display: block;
    position: fixed;
    inset: 0;
    padding: 80px 20px 24px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    z-index: 999;
  }
.sp-nav__logo {
    width: 200px;
    margin: 2rem 0;
}
  .sp-nav.is-open {
    background: white;
    transform: translateX(0);
  }

  .sp-nav__list {
    display: grid;
    gap: 14px;
    color: var(--c-main);
  }
  .sp-nav__list a{text-decoration: none;}

.sp-nav__list li {
    border-bottom: 1px solid #ccc;
    margin-bottom: .5rem;
    padding-bottom: .25rem;
}
.sp-nav__list li::before{
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(../img/common/icon-arrow.svg);
  margin-right: .5rem;
  
}

}


@media (max-width: 1024px) {
  :root {
    --gutter: 24px;
  }
  .bg-gray__container{
    padding: 1rem;
  }
    .sp-none{
    display:none;
  }
  .pc-none{
    display:block;
  }
  .about {
    flex-direction: column;
    text-align: center;
    margin: 3rem auto;
    gap: 10px;
  }
  .about__title{
    font-size: 2rem;
  }
  .about__title span{
    font-size: 70%;
    top: 10px;
  }

  .about img {
    max-width: max-content;
  }

  .about p,.recruit p {
    margin: .5rem auto;
  }

.about .btn-more{
  position: initial;
    margin: 2rem auto 1rem;
  }

  .service__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .company__read{
    flex-direction: column;
  }
    .ov-item__media {
    width: 100%;
    margin: 0;
  }
    .ov-item__media img {
    object-fit: contain;
  }

  .ov-item__panel {
    position: static;
    width: 100%;
    margin-top: 16px;
    backdrop-filter: none;
  }

  .ov-item--right .ov-item__panel,
  .ov-item--left .ov-item__panel {
    left: auto;
    right: auto;
  }

  .post-list.post-list--column {
    grid-template-columns: repeat(2, 1fr);
  }
  .post-card{
  width: 80%;
  padding: 2rem;
  margin: 3rem auto;
}
  .post-card img {
    width: 80%;
    margin: auto;
}
}



@media (max-width: 768px) {
  :root {
    --gutter: 16px;
  }
  body{
    font-size: 14px;
  }
  .bg-gray{
    padding: 1rem 0;
  }
  .heroSlider__lead{
    font-size: 1.2rem;
  }
  .heroSlider__catch{
    font-size: 1.8rem;
  }
/*  .heroSlider__track {
    min-height: 78vh;
  }

  .heroSlider__media img {
    height: 78vh;
  }

  */
  .heroSlider__content{
    left: 5%;
    right: 5%;
    bottom: 120px;
  }
.hero {
  height: calc(100svh - var(--header-h));
}

  .breadcrumb__list {
    font-size: 12px;
    padding-right: 1rem;
  }
  .service__title{
    font-size: 1rem;
}
.service__arrow{
  width: 30px;
  height: 30px;
}
  .service__list,
  .post-list.post-list--column {
    grid-template-columns: 1fr;
  }
  .post-card{ 
    width: 100%;
    padding: 1rem;
    margin: 0 auto;
  }
  .post-card__thumb{
    margin: .25rem 0;
  }
  .post-card__body {
    font-size: 90%;
}
  .news-list{
      margin-bottom: 3rem;
      font-size: 90%;
    }
  .news-list a {
    display: flex;
    flex-direction: column;
}
.recruit h3{
  font-size: 1.2rem;
}

.company__title.copy-read{
  font-size: 1.5rem;
}
.company__ov .ov__lead{
  font-size: 1.5rem;
}
.company__ov.ov__subtitle{
  font-size: 1.2rem;
}

  .ov-item__media {
    width: 100%;
    height: clamp(200px, 56vw, 320px);
    margin: 0;
  }

  .ov-item__panel {
    position: static;
    margin-top: 12px;
    width: 100%;
    backdrop-filter: none;
  }

.philosophy__list{
  flex-direction: column;
}
.philosophy__title{
  font-size: 1.4rem;
}
.strengths__text{
  text-align: left;
}
.initiatives {
    padding: 10px 0;
}
.initiatives__read{
  text-align: left;
  padding: 1rem;
}
.thumbnail__title{
  font-size: 1.5rem;
}
.column-article__header, .works-article__header{
  font-size: 1rem;
  padding: .5rem;
}
.works-article__heading,.column-article__content h2{
  font-size: 1rem;
}
.column-article__content h3{
  font-size: .9rem;
}
  .column-article__title {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .post-card__cats,
  .column-article__date {
    font-size: 80%;
  }

  .column-article__header,
  .works-article__header {
    width: min(90%, 600px);
  }
  .works-article__read{
    padding: 1rem;
  }

  .works-article__info {
    grid-template-columns: 1fr;
    font-size: 14px;
  }

  .works-article__info dt {
    padding-bottom: 4px;
    border-bottom: none;
  }

  .works-article__info dd {
    padding-top: 0;
  }

    .post-list{
    grid-template-columns: 1fr;
  }
.footer__inner,.footer__nav{
  flex-direction: column;
}
.footer__nav{
  gap: 10px;
}


}

@media (max-width: 640px) {
  .company-profile__table th {
    width: 120px;
  }

  .company-profile__table th,
  .company-profile__table td {
    padding: 16px 14px;
    font-size: 0.95rem;
  }
}