/*
Theme Name:株式会社でんくう
*/

/*ベースの設定*/
html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
  font-style: normal;
  font-family: var(--base-font);
  scroll-padding-top: 10rem;
}

:root {
  --base-font: "YakuHanJP", "Noto Sans JP", sans-serif;
  --base-blue: #002463;
  --base-lightblue1: #8B8BBB;
  --base-lightblue2: #C7D0DC;
  --base-green: #8DC21F;
  --base-orange: #EB5A02;
  --base-gray: #AFAFAF;
  --base-lightgray: #EEEEEE;
}

/*書体設定*/
.min {
  font-family: "Noto Serif JP", serif;
}

.oswald {
  font-family: "Oswald", sans-serif;
}

.jost {
  font-family: "Jost", sans-serif;
}


/* --- Header --- */
.pagehead {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 31, 0.50);
}

.pagehead .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.pagehead h1.logo {
  margin: 0;
  padding-left: 4rem;
}

.pagehead h1.logo img {
  width: 25rem;
  height: auto;
  display: block;
}

/* --- Header Navi --- */
.site-nav {
  display: flex;
  height: 8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  display: flex;
}


.site-nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.5rem;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  font-size: 1.6rem;
  transition: opacity 0.3s;
}

.site-nav li a:hover {
  opacity: 0.8;
}

.site-nav li.menu_recruit a {
  background: var(--base-green);
  padding: 0 3.5rem;
}

.site-nav li.menu_contact a {
  background: var(--base-orange);
  padding: 0 3.5rem;
}

.site-nav li img {
  margin-right: 0.8rem;
  width: auto;
  height: 1.6rem;
}

.home .site-nav li.menu_top a {
  position: relative;
}

.home .site-nav li.menu_top a::after {
  content: "";
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 2px;
  background: var(--base-orange);
}

/* --- Main Visual --- */
.mv {
  position: relative;
  width: 100%;
}

.mv .inner,
.mv figure {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  line-height: 0;
}

.mv figure>picture>img {
  width: 100%;
  height: auto;
  display: block;
}

.mv figcaption {
  position: absolute;
  top: calc(50% + 4rem);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  min-width: 40rem;
  max-width: 75rem;
  text-align: center;
}

.mv figcaption>picture>img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- News Section --- */
.news {
  background-color: var(--base-blue);
  padding: 8rem 0;
}

.news .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  gap: 6rem;
}

/* Left Box */
.news-left {
  flex: 0 0 24rem;
}

.news-left .box {
  border: 1px solid #fff;
  padding: 3.2rem 3.2rem 3.2rem 2rem;
  text-align: center;
  color: #fff;
}

.news-left .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.news-left .icon-leaf {
  width: 4.5rem;
  height: auto;
}

.news-left .en {
  font-family: 'Jost', sans-serif;
  font-size: 4.8rem;
  font-weight: 300;
  line-height: 1;
}

.news-left .ja {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0.8rem 0 1.6rem 0;
  letter-spacing: 0.15em;
}

.news-left .btn-list {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  transition: opacity 0.3s;
}

.news-left .btn-list:hover {
  opacity: 0.7;
}

/* Right List */
.news-right {
  flex: 1;
}

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

.news-list li {
  border-bottom: 1px dotted #fff;
}

.news-list li a {
  display: flex;
  align-items: center;
  padding: 2.2rem 0;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.news-list li a:hover {
  opacity: 0.7;
}

.news-list .meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 16rem;
}

.news-list .icon-arrow {
  width: 2.2rem;
  height: auto;
}

.news-list .date {
  font-size: 1.6rem;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.05em;
}

.news-list .title {
  font-size: 1.6rem;
  font-weight: 500;
  text-underline-offset: 4px;
}

/* --- Reusable Components --- */
.btn-orange,
.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50rem;
  height: 4.4rem;
  width: 100%;
  max-width: 20rem;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  transition: opacity 0.3s;
  position: relative;
}

.btn-orange {
  background-color: var(--base-orange);
}

.btn-green {
  background-color: var(--base-green);
}

.btn-orange:hover,
.btn-green:hover {
  opacity: 0.8;
}

.btn-orange::after,
.btn-green::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--base-lightblue1);
}

.section-title .icon-leaf {
  width: 4.5rem;
  height: auto;
}

.section-title .en {
  font-family: 'Jost', sans-serif;
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
}

.section-title .ja {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 1rem;
  letter-spacing: 0.15em;
  color: #333;
}

/* --- Business Section --- */
.top-business {
  padding: 8rem 0;
  background-color: #fff;
}

.top-business .inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.business-list {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

.business-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.business-item .image img {
  width: 100%;
  height: auto;
  display: block;
}

.business-item .text-box {
  border-left: 2px solid var(--base-orange);
  padding: 0 0 0 1.5rem;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.business-item .title {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.business-item .desc {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0 0 3rem 0;
  flex-grow: 1;
}

.business-item .btn-wrap {
  margin-top: auto;
}

/* --- Recruit Section --- */
.top-recruit {
  position: relative;
  background-color: var(--base-blue);
  padding: 8rem 0;
  overflow: hidden;
}

.top-recruit .section-title .en {
  font-weight: 600;
}


.top-recruit .bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
  z-index: 1;
}

.top-recruit .bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.top-recruit .inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.recruit-content {
  margin-left: 50%;
  color: #fff;
  padding-left: 2rem;
}

.recruit-content .highlight {
  display: inline-block;
  background-color: var(--base-orange);
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  margin-bottom: 2.5rem;
}

.recruit-content .catch {
  font-size: 5.6rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 3rem 0;
  letter-spacing: 0.1em;
}

.recruit-content .desc {
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0 0 4rem 0;
}

.section-title.title-white .title-wrap {
  color: #fff;
}

.section-title.title-white .ja {
  color: #fff;
}

/* --- About Section --- */
.about {
  position: relative;
  padding: 10rem 0;
  background-image: url('images/bg_top_about.webp');
  background-size: cover;
  background-position: center;
}

.about .inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.about-box {
  background-color: rgba(246, 250, 255, 0.95);
  border-radius: 12px;
  padding: 6rem 8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 6rem;
  margin-bottom: 5rem;
}

.about-content .image {
  flex: 0 0 45%;
  margin: 0;
  padding: 0;
}

.about-content .image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.about-content .text-box {
  flex: 1;
}

.about-content .title {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
  margin: 0 0 3rem 0;
}

.about-content .desc {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0;
  color: #333;
}

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

/* --- Footer CTA --- */
.footer-cta {
  padding: 8rem 0;
}

.footer-cta .cta-box {
  max-width: 640px;
  margin: 0 auto;
  border: 4px solid var(--base-green);
  border-radius: 20px;
  padding: 3.2rem 2.4rem;
  background-color: #fff;
  text-align: center;
}

.footer-cta .tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  margin: 0 0 2.5rem 0;
  padding: 0;
}

.footer-cta .tags li {
  border: 1px solid #777;
  padding: 0.3rem 0.8rem;
  font-size: 1.6rem;
  color: #333;
}

.footer-cta .logo {
  margin-bottom: 2rem;
}

.footer-cta .logo img {
  width: 40rem;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.footer-cta .address {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 1.6rem 0;
}

.footer-cta .tel-area {
  margin-bottom: 2.5rem;
}

.footer-cta .tel-title {
  color: var(--base-blue);
  font-weight: bold;
  font-size: 2.0rem;
  margin: 0 0 0.5rem 0;
}

.footer-cta .tel-title span {
  font-size: 1.3rem;
  font-weight: normal;
}

.footer-cta .tel-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.footer-cta .icon-tel {
  width: 4.5rem;
  height: auto;
}

.footer-cta .tel-number a {
  font-family: 'Oswald', sans-serif;
  font-size: 5.6rem;
  font-weight: bold;
  color: var(--base-blue);
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.05em;
  /* condensed bold feeling */
}

.footer-cta .btn-contact {
  max-width: 28rem;
  height: 5rem;
  font-size: 1.6rem;
}

.footer-cta .icon-mail {
  width: 1.8rem;
  height: auto;
  margin-right: 0.8rem;
}

/* --- Site Footer --- */
.site-footer {
  background-color: var(--base-blue);
  color: #fff;
}

.site-footer .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5rem 0;
}

.footer-left {
  display: flex;
  align-items: stretch;
  gap: 2.5rem;
}

.footer-left .company-img {
  width: 20rem;
  height: auto;
  aspect-ratio: 20 / 17;

}

.footer-left .company-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.footer-left .company-info .tags {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
}

.footer-left .company-info .tags li {
  border: 1px solid #fff;
  padding: 0.3rem 0.8rem;
  font-size: 1.4rem;
}

.footer-left .logo {
  margin-bottom: 2rem;
}

.footer-left .logo img {
  width: 28rem;
  max-width: 100%;
  height: auto;
}

.footer-left .address,
.footer-left .tel-fax {
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.6;
}

.footer-left .tel-fax {
  margin: 0;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-navi {
  margin-bottom: 3rem;
  width: 100%;
}

.footer-navi .site-nav {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.footer-navi .site-nav li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
}

.footer-navi .site-nav li a::before {
  content: "▶";
  font-size: 1rem;
}

.footer-navi .site-nav li a::after {
  display: none !important;
}



.footer-navi .menu_recruit,
.footer-navi .menu_contact {
  display: none;
}

.footer-btns {
  display: flex;
  gap: 2rem;
}

.footer-btns .btn-footer {
  width: 19rem;
  height: 4.6rem;
  border-radius: 50rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  text-decoration: none;
  gap: 0.8rem;
  max-width: none;
}

.footer-btns .btn-footer::after {
  display: none;
}

.footer-btns .btn-footer .icon {
  height: 1.8rem;
  width: auto;
}

.site-footer .copyright {
  background-color: var(--base-green);
  text-align: center;
  padding: 1.5rem 0;
}

.site-footer .copyright p {
  margin: 0;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
}

/* --- Lower Page MV --- */
.page-header {
  position: relative;
  width: 100%;
  height: 36rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-header .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.page-header .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-header .bg-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 36, 99, 0.65);
  display: none;
}

.page-header .title-box {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.page-header .title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transform: translateY(4rem);
}

.page-header .title .en {
  font-family: 'Jost', sans-serif;
  font-size: 5.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}

.page-header .title .ja {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.15em;
}

/* --- Introduction Section (Reusable) --- */
.introduction {
  padding: 8rem 0 6rem 0;
  background-color: #fff;
}

.introduction .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.introduction .intro-box {
  text-align: center;
}

.introduction .intro-label {
  display: inline-block;
  background-color: var(--base-orange);
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  padding: 0.4rem 6rem;
  margin: 0 0 3.5rem 0;
}

.introduction .intro-catch {
  color: var(--base-blue);
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 2.4rem 0;
}

.introduction .intro-text {
  font-size: 1.6rem;
  line-height: 2;
  color: #333;
  margin: 0;
}

/* --- Reusable Headings (Lower Pages) --- */
.page-heading {
  font-size: 2.4rem;
  font-weight: bold;
  color: #333;
  padding-left: 1.5rem;
  border-left: 4px solid var(--base-orange);
  margin: 0 0 4rem 0;
  line-height: 1.2;
}

/* --- Greeting Section --- */
.greeting {
  padding: 6rem 0 10rem 0;
}

.greeting .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.greeting .greeting-content {
  display: flex;
  gap: 4rem;
}

.greeting .greeting-content .image {
  flex: 0 0 42%;
}

.greeting .greeting-content .image img {
  width: 100%;
  height: auto;
  display: block;
}

.greeting .greeting-content .text-box {
  flex: 1;
}

.greeting .greeting-content .catch {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--base-blue);
  margin: 0 0 2rem 0;
}

.greeting .greeting-content .desc p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0 0 2.5rem 0;
  color: #333;
}

.greeting .greeting-content .desc p:last-child {
  margin-bottom: 0;
}

.greeting .greeting-content .signature {
  text-align: right;
  margin: 4rem 0 0 0;
  font-size: 1.6rem;
  color: #333;
}

.greeting .greeting-content .signature .name {
  font-size: 2.6rem;
  font-weight: bold;
  margin-left: 1rem;
}

/* --- Data Section & Info Table --- */
.data {
  padding: 5rem 0 10rem 0;
}

.data .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 5rem 0;
  font-size: 1.6rem;
}

.info-table th,
.info-table td {
  border: 1px solid #ccc;
  padding: 2rem 3rem;
  line-height: 1.8;
  vertical-align: top;
}

.info-table th {
  background-color: #f5f5f5;
  width: 25%;
  font-weight: bold;
  text-align: left;
}

.info-table td {
  background-color: #fff;
  color: #333;
}

/* --- History Section --- */
.history {
  padding: 5rem 0 10rem 0;
}

.history .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.history-table th {
  text-align: center;
}

/* --- Access Section --- */
.access {
  padding: 5rem 0 10rem 0;
}

.access .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.access .map-wrap {
  width: 100%;
}

.access .map-wrap iframe {
  display: block;
  width: 100%;
  border: 0;
  aspect-ratio: 1 / 0.666;
}

/* --- Back to Top Button --- */
.top-btn {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 99;
  width: 7rem;
  display: block;
  transition: opacity 0.3s, transform 0.3s;
}

.top-btn img {
  width: 100%;
  height: auto;
  display: block;
}

.top-btn:hover {
  opacity: 0.8;
  transform: translateY(-3px);
}

/* --- Business Page --- */
.business-contents {
  padding: 5rem 0 10rem 0;
}

.business-contents .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.business-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6rem;
  margin-bottom: 12rem;
}

.business-content:nth-child(even) {
  flex-direction: row-reverse;
}

.business-content:last-child {
  margin-bottom: 0;
}

.business-content .image {
  flex: 0 0 calc(50% - 3rem);
}

.business-content .image img {
  width: 100%;
  height: auto;
  display: block;
}

.business-content .text-box {
  flex: 0 0 calc(50% - 3rem);
}

.business-content .title-area {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  color: var(--base-blue);
}

.business-content .title-area .num {
  font-family: 'Jost', sans-serif;
  font-size: 5.6rem;
  font-weight: bold;
  line-height: 1;
}

.business-content .title-area .line {
  width: 1px;
  height: 4.5rem;
  background-color: var(--base-blue);
}

.business-content .title-area .title {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1;
  margin: 0;
}

.business-content .catch {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--base-blue);
  margin-bottom: 3rem;
  line-height: 1.4;
}

.business-content .desc p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
}

.business-content .desc p:last-child {
  margin-bottom: 0;
}

.business-content .work-list {
  margin-top: 4rem;
  border-left: 4px solid var(--base-orange);
}

.business-content .work-list .page-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  padding-left: 1.2rem;
  border-left: none;
}

.business-content .work-list p {
  font-size: 1.4rem;
  line-height: 1.8;
  padding-left: 1.2rem;
  color: #333;
}

/* --- Recruit Page --- */
.recruit-mv {
  width: 100%;
}

.recruit-mv .inner {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.recruit-mv .mv-visual {
  position: relative;
  width: 100%;
  margin: 0;
}

.recruit-mv .mv-visual .bg-img {
  width: 100%;
  height: 70vh;
  min-height: 480px;
  object-fit: cover;
  display: block;
}

.recruit-mv .mv-content {
  position: absolute;
  top: calc(50% + 4rem);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.recruit-mv .catchcopy-img {
  height: 48rem;
  margin: 0 auto;

}

.recruit-mv .page-title {
  background-color: var(--base-green);
  color: #fff;
  font-size: 3.6rem;
  font-weight: bold;
  padding: 1.5rem 8rem;
  display: inline-block;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin: 0;
}

/* --- Recruit Intro Section --- */
.recruit-intro {
  padding: 8rem 0;
  text-align: center;
  background-color: #fff;
}

.recruit-intro .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.recruit-intro .intro-catch {
  font-size: 3.2rem;
  font-weight: bold;
  color: var(--base-blue);
  margin-bottom: 4.5rem;
}

.recruit-intro .intro-desc p {
  font-size: 1.6rem;
  line-height: 2.4;
  color: #333;
  margin-bottom: 5rem;
}

.recruit-intro .btn-green {
  max-width: 36rem;
  width: 100%;
  height: 6rem;
  font-size: 1.8rem;
}

.recruit-intro .icon-mail {
  width: 2.2rem;
  height: auto;
  margin-right: 1.5rem;
}

/* --- Recruit Nav Section --- */
.recruit-nav {
  background-color: #f2f2f2;
}

.recruit-nav .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.recruit-nav .nav-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 3rem 0;
}

.recruit-nav .nav-list li {
  flex: 1;
  position: relative;
  display: flex;
  align-items: stretch;
}

.recruit-nav .nav-list li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #8b99ae;
}

.recruit-nav .nav-list li:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #8b99ae;
}

.recruit-nav .nav-list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 1rem;
  position: relative;
  text-decoration: none;
  transition: opacity 0.3s;
}

.recruit-nav .nav-list a:hover {
  opacity: 0.7;
}

.recruit-nav .nav-list img {
  height: 4.5rem;
  width: auto;
  margin-bottom: 1.5rem;
}

.recruit-nav .nav-list .text {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--base-blue);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.recruit-nav .nav-list a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.2rem 1.4rem 0 1.4rem;
  border-color: var(--base-orange) transparent transparent transparent;
}

/* --- Recruit Section Title --- */
.recruit-sec-title {
  text-align: center;
  margin-bottom: 6rem;
  color: var(--base-blue);
}

.recruit-sec-title .en {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 1.6rem;
  line-height: 1;
}

.recruit-sec-title .ja {
  font-size: 1.6rem;
  font-weight: bold;
}

.recruit-sec-title.white {
  color: #fff;
}

/* --- Recruit Work Section --- */
.work {
  background-color: var(--base-blue);
  padding: 10rem 0;
  color: #fff;
}

.work .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.work .block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12rem;
  gap: 5rem;
}

.work .block:nth-child(odd) {
  flex-direction: row-reverse;
}

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

.work .image {
  flex: 0 0 calc(55% - 2.5rem);
}

.work .image img {
  width: 100%;
  height: auto;
  display: block;
}

.work .image .img-main {
  margin-bottom: 1.5rem;
}

.work .image .img-sub {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.work .image .img-sub img {
  width: calc(50% - 0.75rem);
}

.work .text {
  flex: 0 0 calc(45% - 2.5rem);
}

.work .title {
  display: inline-flex;
  align-items: center;
  background-color: var(--base-orange);
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  padding: 1.5rem 3rem;
  margin-bottom: 2.4rem;
  gap: 1.5rem;
  line-height: 1;
}

.work .title img {
  width: 4rem;
  height: auto;
}

.work .catch {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1.6rem;
}

.work .desc p {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 2rem;
}

.work .desc p:last-child {
  margin-bottom: 0;
}

/* --- Recruit Workplace Section --- */
.workplace {
  background-color: #d8dde6;
  padding: 10rem 0;
}

.workplace .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.workplace .box-wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 3rem;
}

.workplace .box {
  background-color: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.workplace .box .image {
  width: 100%;
  margin: 0;
}

.workplace .box .image img {
  width: 100%;
  height: auto;
  display: block;
}

.workplace .box .text-area {
  padding: 3rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.workplace .title {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--base-blue);
  line-height: 1.4;
  margin-bottom: 2.5rem;
}

.workplace .title .icon {
  width: 5.5rem;
  height: auto;
  flex-shrink: 0;
}

.workplace .check-list {
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--base-blue);
}

.workplace .check-list li {
  display: flex;
  align-items: flex-start;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--base-blue);
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.workplace .check-list li:last-child {
  margin-bottom: 0;
}

.workplace .check-list li img {
  width: 1.6rem;
  height: auto;
  margin-right: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.workplace .desc p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--base-blue);
  margin-bottom: 1.5rem;
}

.workplace .desc p:last-child {
  margin-bottom: 0;
}

/* --- Recruit Schedule Section --- */
.schedule {
  background-color: var(--base-blue);
  padding: 10rem 0;
  color: #fff;
}

.schedule .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.schedule .schedule-wrap {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 800px;
  margin: 0 auto;
  gap: 6rem;
}

.schedule .schedule-images {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.6rem
}

.schedule .schedule-images .image {
  width: 100%;
}

.schedule .schedule-images img {
  width: 100%;
  height: auto;
  display: block;
}

.schedule .schedule-timeline {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 4rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.schedule .schedule-timeline::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 0;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}

.schedule .item {
  display: flex;
  align-items: center;
  position: relative;
}

.schedule .dot {
  position: absolute;
  left: -4rem;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.6rem;
  height: 1.6rem;
  background-color: #fff;
  border-radius: 50%;
}

.schedule .item:first-child .dot,
.schedule .item:last-child .dot {
  width: 2.4rem;
  height: 2.4rem;
}


.schedule .time {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.schedule .spacer {
  flex-grow: 1;
  border-bottom: 2px dotted rgba(255, 255, 255, 0.4);
  margin: 0 2rem;
}

.schedule .desc {
  font-size: 1.4rem;
  font-weight: bold;
  white-space: nowrap;
}

/* --- Recruit Career Section --- */
.career {
  background-color: #d8dde6;
  padding: 10rem 0;
}

.career .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.career-wrap {
  margin-top: 5rem;
}

.career-box {
  display: flex;
  background-color: #fff;
  align-items: stretch;
}

.career-box .box-left {
  flex: 0 0 18rem;
  background-color: var(--base-blue);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
  text-align: center;
}

.career-box .box-left img {
  height: 6rem;
  width: auto;
  margin-bottom: 1.5rem;
  object-fit: contain;
}

.career-box .box-left .year {
  font-size: 2.2rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.career-box .box-left .level {
  font-size: 2.2rem;
  font-weight: bold;
  display: block;
  line-height: 1.2;
}

.career-box .box-right {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 3rem 4rem;
  gap: 3rem;
}

.career-box .box-right .image {
  flex: 0 0 35%;
  margin: 0;
}

.career-box .box-right .image img {
  width: 100%;
  height: auto;
  display: block;
}

.career-box .box-right .desc {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.career-box .box-right .desc p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.career-arrow {
  width: 0;
  height: 0;
  border-left: 2rem solid transparent;
  border-right: 2rem solid transparent;
  border-top: 1.5rem solid var(--base-orange);
  margin: 2.5rem auto;
}

/* --- Recruit Interview Section --- */
.interview {
  padding: 10rem 0;
  background-color: #fff;
}

.interview .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.interview-header {
  text-align: center;
  margin-bottom: 5rem;
}

.interview-header .label {
  display: inline-block;
  background-color: var(--base-orange);
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  padding: 1.2rem 6rem;
}

.interview-content {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}

.interview-content .image {
  flex: 0 0 36%;
}

.interview-content .image img {
  width: 100%;
  height: auto;
  display: block;
}

.interview-content .text-box {
  flex: 1;
}

.interview-content .catch {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--base-blue);
  line-height: 1.6;
  margin: 0 0 3.5rem 0;
}

.interview-content .desc p {
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 0 2.5rem 0;
  color: #333;
}

.interview-content .desc p:last-child {
  margin-bottom: 0;
}

.interview-content .signature {
  text-align: right;
  margin-top: 4rem;
  font-size: 1.6rem;
  color: #333;
}

.interview-content .signature .name {
  font-size: 2.4rem;
  font-weight: bold;
  margin-left: 1rem;
}

/* --- Recruit Job Description Section --- */
.job_description {
  background-color: #d8dde6;
  padding: 10rem 0;
}

.job_description .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.job_description .job-desc-wrap {
  margin-top: 5rem;
}

.job_description .info-table {
  margin-bottom: 0;
}

/* --- Recruit Contact Section --- */
.contact-recruit {
  padding: 10rem 0;
  background-color: #fff;
}

.contact-recruit .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-recruit .recruit-sec-title {
  margin-bottom: 6rem;
}

.contact-recruit .page-heading-recruit {
  background-color: var(--base-green);
  color: #fff;
  font-size: 2.4rem;
  padding: 1.6rem 0;
  border-radius: 0.8rem;
  margin-bottom: 3.2rem;
}



.contact-recruit .message,
.introduction .message {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  line-height: 1.6;
}

.tel-box {
  max-width: 640px;
  margin: 0 auto 10rem;
  border: 4px solid var(--base-green);
  border-radius: 40px;
  padding: 2.5rem 4rem;
  background-color: #fff;
}

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

.tel-label {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--base-blue);
  margin-bottom: 0.8rem;
}

.tel-label span {
  font-size: 1.6rem;
  font-weight: normal;
}

.tel-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.tel-number .icon {
  width: 4.5rem;
  height: auto;
}

.tel-number a {
  font-size: 5.6rem;
  font-weight: bold;
  color: var(--base-blue);
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.05em;
}

.contact-recruit .contact-form-wrap {
  width: 100%;
}

.contact-recruit .contact-form-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-recruit .contact-form-title .icon {
  width: 4rem;
  height: auto;
}

.contact-recruit .contact-form-title .en {
  font-size: 5rem;
  color: var(--base-lightblue1);
  font-weight: 300;
}

.contact-recruit .form-desc {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1.5rem;
}

.contact-recruit .required-note {
  text-align: center;
  font-size: 1.4rem;
  color: var(--base-orange);
  font-weight: bold;
  margin-bottom: 4rem;
}

.recruit-form {
  max-width: 800px;
  margin: 0 auto;
}

.recruit-form .form-group {
  margin-bottom: 3.5rem;
}

.recruit-form label,
.recruit-form .label {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
  color: #333;
}

.recruit-form .req {
  color: var(--base-orange);
  margin-left: 0.4rem;
}

.recruit-form input[type="text"],
.recruit-form input[type="email"],
.recruit-form input[type="tel"],
.recruit-form textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
}

.recruit-form textarea {
  height: 24rem;
  resize: vertical;
}

.recruit-form .radio-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
}

.recruit-form .radio-wrap label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.4rem;
  margin-right: 1.6rem;
}

.recruit-form .radio-wrap input[type="radio"] {
  width: 1.8rem;
  height: 1.8rem;
  margin: 0;
}

.privacy-wrap {
  text-align: center;
  margin: 2.4rem 0;
}

.privacy-wrap label {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 0 1.5rem 0;
  cursor: pointer;
}

.privacy-wrap input[type="checkbox"] {
  width: 1.8rem;
  height: 1.8rem;
}

.privacy-wrap .privacy-link {
  display: block;
  font-size: 1.4rem;
  color: var(--base-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.recruit-form .btn-orange {
  height: 6rem;
  padding: 0 4rem;
  max-width: 32rem;
  font-size: 1.6rem;
}

.btn-wrap.center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.contact-intro {
  margin-bottom: 2.4rem;
}

.cf7-privacy {
  max-width: 800px;
  margin: 0 auto 2.4rem auto;
  padding: 1.6rem;
  height:24rem;
  overflow-y: scroll;
  font-size: 1.4rem;
  border:1px solid #ccc;
  text-align: left;
} 
.cf7-privacy h3{
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
} 

.cf7-privacy h4{
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
} 
.cf7-privacy strong{ 
  display: block;
  margin:0.8rem 0 0.4rem 0 ;
}



/* --- Archive Section (News List) --- */
.archive-section {
  padding: 8rem 0;
  background-color: #fff;
}

.archive-section .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.archive-header {
  text-align: center;
  margin-bottom: 6rem;
}

.archive-header .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
  transform: translateX(-2rem);
}

.archive-header .icon {
  width: 4rem;
  height: auto;
}

.archive-header .en {
  font-size: 5rem;
  color: var(--base-lightblue1);
  font-weight: 300;
}

.archive-header .ja {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
}

.news-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 680px;

}

.news-archive-wrap .news-item {
  border-bottom: 1px dotted #ccc;
}


.news-item a {
  display: flex;
  align-items: center;
  padding: 2.2rem 0;
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s;
}

.news-item a:hover {
  opacity: 0.7;
}

.news-item .item-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 32rem;
  flex-shrink: 0;
}

.news-item .icon-play {
  width: 2.4rem;
  height: 2.4rem;
  background-color: var(--base-green);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.news-item .icon-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 0.7rem solid #fff;
  border-top: 0.4rem solid transparent;
  border-bottom: 0.4rem solid transparent;
}

.news-item .date {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

.news-item .category {
  display: inline-block;
  border: 1.5px solid var(--base-orange);
  color: var(--base-orange);
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0.4rem 1.4rem;
  border-radius: 50rem;
  text-align: center;
  min-width: 9rem;
}

.news-item .title {
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--base-blue);
}

/* Pagination Overrides */
.pagenation {
  margin-top: 6rem;
  padding-bottom: 0;
}

.pagenation ul {
  display: flex;
  justify-content: center;
  gap: 0;
}

.pagenation li {
  margin: 0;
}

.pagenation li a,
.pagenation li.active {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  padding: 0;
  font-size: 1.8rem;
  border-radius: 0;
  text-shadow: none;
  margin-left: -1px;
}

.pagenation li:first-child a,
.pagenation li:first-child.active {
  margin-left: 0;
}

.pagenation li.active {
  background-color: #f5f5f5;
  cursor: default;
}

.pagenation li.prev a,
.pagenation li.next a {
  width: auto;
  padding: 0 2rem;
}

/* --- Single Post Article --- */
.article-wrap {
  padding: 8rem 0;
  background-color: #fff;
}

.article-wrap .inner {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  border-left: 2px solid var(--base-orange);
  padding-left: 2.5rem;
  margin-bottom: 5rem;
}

.article-header .date {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.8rem;
}

.article-header .title {
  font-size: 3.2rem;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  margin: 0 0 1.5rem 0;
}

.article-header .category {
  display: inline-block;
  border: 1px solid var(--base-orange);
  color: var(--base-orange);
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0.3rem 2rem;
  border-radius: 50rem;
}

.article-content {
  margin-bottom: 8rem;
}

.article-content .featured-image {
  margin-bottom: 4rem;
}

.article-content .featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.entry-content {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
}

.entry-content p {
  margin-bottom: 2.5rem;
}

.entry-content p:last-child {
  margin-bottom: 0;
}

.article-footer {
  margin-top: 5rem;
  padding-top: 5rem;
}

.article-footer .btn-orange {
  max-width: 28rem;
}


/*==============================================
●ハンバーガーメニュー（ベーススタイル）
===============================================*/
.hamburger-trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  width: 6rem;
  height: 6rem;
  background-color: var(--base-orange);
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  z-index: 200;
}

.hamburger-trigger span {
  display: block;
  width: 2.4rem;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger-trigger.active span:nth-child(1) {
  transform: translateY(0.8rem) rotate(45deg);
}

.hamburger-trigger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-trigger.active span:nth-child(3) {
  transform: translateY(-0.8rem) rotate(-45deg);
}

/* ドロワーナビ */
.hamburger-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 32rem;
  height: 100%;
  background-color: var(--base-blue);
  z-index: 300;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  visibility: hidden;
}

.hamburger-menu.active {
  right: 0;
  visibility: visible;
}

.hamburger-menu-inner {
  padding: 2rem 0 4rem;
  position: relative;
}

/* 閉じるボタン */
.hamburger-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s;
}

.hamburger-close:hover {
  background-color: rgba(255, 255, 255, 0.22);
}

.hamburger-close span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.6rem;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}

.hamburger-close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger-close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

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

.sp-nav li a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.8rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color 0.2s;
}

.sp-nav li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.sp-nav li.menu_recruit a {
  background-color: var(--base-green);
  font-weight: bold;
}

.sp-nav li.menu_contact a {
  background-color: var(--base-orange);
  font-weight: bold;
}

/* オーバーレイ */
.hamburger-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.hamburger-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/*==============================================
●PC版非表示
===============================================*/
.sp {
  display: none !important;
}

.tablet {
  display: none !important;
}


/*===============================================
●レスポンシブ  画面の横幅が1080pxまで
===============================================*/
@media screen and (max-width:1080px) {
  html {
    font-size: 1vw
  }

  .tablet {
    display: block !important;
  }

  .pagehead .header-menu ul {
    font-size: 1.4rem
  }

  .site-nav li a {
    font-size: 1.4rem;
  }

  /* contact-recruit responsive */
  .contact-recruit,
  .introduction {
    padding: 8rem 0;
  }

  .tel-box {
    margin-bottom: 7rem;
    padding: 2.5rem 3rem;
  }

  .tel-number a {
    font-size: 5rem;
  }

  /* news list responsive */
  .news-item .item-meta {
    width: 28rem;
  }

  .news-item .date {
    font-size: 1.8rem;
  }

  /* single post responsive */
  .article-header {
    padding-left: 2rem;
    margin-bottom: 4rem;
  }

  .article-header .title {
    font-size: 2.8rem;
  }
}

/*===============================================
●レスポンシブ  画面の横幅が660pxまで
===============================================*/
@media screen and (max-width:660px) {
  html {
    font-size: 2.2vw
  }

  body {
    min-width: 320px;
    background-image: none;
    font-size: 1.8rem
  }

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

  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .bc {
    display: none;
  }

  .tel a {
    pointer-events: auto;
  }

  /* --- Header SP --- */
  .pagehead .inner {
    justify-content: space-between;
    padding: 0;
    height: 6rem;
  }

  .pagehead h1.logo {
    padding-left: 2rem;
  }

  .pagehead h1.logo img {
    width: 18rem;
  }

  .pc-nav {
    display: none !important;
  }

  .hamburger-trigger {
    display: flex;
    height: 6rem;
    width: 6rem;
  }

  .hamburger-menu {
    visibility: hidden;
  }

  .hamburger-overlay {
    pointer-events: none;
    opacity: 0;
  }

  /* --- Main Visual SP --- */
  .mv figcaption {
    top: 32%;
    width: 66%;
    min-width: unset;
    max-width: 100%;
  }

  /* --- News Section SP --- */
  .news {
    padding: 4rem 0 3rem;
  }

  .news .inner {
    flex-direction: column;
    gap: 0;
    padding: 0 4.8rem;
  }

  /* タイトルボックス */
  .news-left {
    flex: none;
    width: 100%;
    margin-bottom: 2.5rem;
  }

  .news-left .box {
    padding: 2.4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
  }

  .news-left .title-wrap {
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.6rem;
  }

  .news-left .icon-leaf {
    width: 3.2rem;
  }

  .news-left .en {
    font-size: 4rem;
  }

  .news-left .ja {
    font-size: 1.8rem;
    margin: 0.4rem 0 0;
  }

  /* PCのbtn-listはHTMLのpc/spクラスで出し分けのため追記不要 */

  /* ニュースリスト */
  .news-right {
    width: 100%;
  }

  .news-list li a {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 1.6rem 0;
  }

  .news-list .meta {
    width: auto;
    gap: 1rem;
  }

  .news-list .icon-arrow {
    width: 2.4rem;
    height: 2.4rem;
  }

  .news-list .date {
    font-size: 1.6rem;
  }

  .news-list .title {
    font-size: 1.6rem;
    padding-left: 3.2rem;
  }

  /* SP専用「お知らせ一覧」リンク */
  .news-sp-link {
    text-align: center;
    padding: 2.4rem 0 1rem;
  }

  .news-sp-link a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
  }

  .news-sp-link a:hover {
    opacity: 0.7;
  }

  /* --- Business Section SP --- */
  .top-business {
    padding: 5rem 0;
  }

  .top-business .inner {
    padding: 0 4.8rem;
  }

  .business-list {
    flex-direction: column;
    gap: 4rem;
  }

  .business-item .title {
    font-size: 2.8rem;
  }

  /* --- Recruit Section SP --- */
  .top-recruit {
    padding: 3.2rem 0;
  }

  .top-recruit .bg-wrap {
    width: 100%;
    height: 50%;
    top: 0;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  }

  .top-recruit .inner {
    padding: 0 4.8rem;
  }

  .recruit-content {
    margin-left: 0;
    padding-left: 0;
    padding-top: 70%;
  }

  .recruit-content .highlight {
    padding: 0.6rem 1.2rem;
    margin-bottom: 2rem;
    font-size: 2.2rem;
  }

  .recruit-content .catch {
    font-size: 4.2rem;
    margin: 0 0 2rem 0;
  }

  .recruit-content .desc {
    font-size: 1.6rem;
    margin: 0 0 3rem 0;
  }

  .recruit-content .btn-wrap {
    display: flex;
    justify-content: center;
  }

  /* --- About Section SP --- */
  .about {
    padding: 5rem 0;
  }

  .about .inner {
    padding: 0 2rem;
  }

  .about-box {
    padding: 3rem 2rem;
  }

  .about-content {
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .about-content .image {
    flex: none;
    width: 100%;
  }

  .about-content .desc br {
    display: none;
  }

  /* --- Section Title SP --- */
  .section-title {
    margin-bottom: 3rem;
  }

  /* --- Inner Padding SP --- */
  .inner {
    padding: 0 3.2rem;
    ;
  }

  /* contact-recruit responsive sp */
  .contact-recruit,
  .introduction {
    padding: 6rem 0;
  }

  .contact-recruit .recruit-sec-title,
  .introduction .intro-box {
    margin-bottom: 4rem;
  }

  .tel-box {
    border-radius: 20px;
    padding: 1.5rem 1rem;
    margin-bottom: 5rem;
    border-width: 2px;
  }

  .tel-label {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
  }

  .tel-label span {
    display: block;
    font-size: 1.2rem;
  }

  .tel-number .icon {
    width: 2.4rem;
  }

  .tel-number a {
    font-size: 7.5vw;
  }

  .contact-recruit .contact-form-title .en {
    font-size: 8vw;
  }

  .contact-recruit .contact-form-title .icon {
    width: 3rem;
  }

  .contact-recruit .form-desc {
    font-size: 1.4rem;
  }

  .recruit-form .radio-wrap {
    flex-direction: column;
    gap: 1.2rem;
  }

  .recruit-form .radio-wrap label {
    font-size: 1.4rem;
  }

  .privacy-wrap {
    margin: 3.5rem 0 4rem;
  }

  .privacy-wrap label {
    font-size: 1.4rem;
  }

  .recruit-form .btn-orange {
    height: 5.5rem;
    max-width: 100%;
    font-size: 1.4rem;
  }

  /* news list responsive sp */
  .archive-section {
    padding: 6rem 0;
  }

  .archive-header {
    margin-bottom: 4rem;
  }

  .archive-header .en {
    font-size: 8vw;
  }

  .archive-header .ja {
    font-size: 1.4rem;
  }

  .news-item a {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.6rem 0;
  }

  .news-item .item-meta {
    width: 100%;
    margin-bottom: 1rem;
    gap: 1rem;
    justify-content: flex-start;
  }

  .news-item .icon-play {
    width: 2rem;
    height: 2rem;
  }

  .news-item .icon-play::after {
    border-left-width: 0.5rem;
    border-top-width: 0.3rem;
    border-bottom-width: 0.3rem;
  }

  .news-item .date {
    font-size: 1.6rem;
  }

  .news-item .category {
    font-size: 1.2rem;
    padding: 0.2rem 1rem;
    min-width: 7rem;
  }

  .news-item .title {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .pagenation {
    margin-top: 4rem;
  }

  .pagenation li a,
  .pagenation li.active {
    width: 4rem;
    height: 4rem;
    font-size: 1.4rem;
  }

  /* single post responsive sp */
  .article-wrap {
    padding: 6rem 0;
  }

  .article-header {
    padding-left: 1.5rem;
    margin-bottom: 3.5rem;
  }

  .article-header .date {
    font-size: 1.4rem;
  }

  .article-header .title {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }

  .article-header .category {
    padding: 0.2rem 1.5rem;
  }

  .article-content {
    margin-bottom: 5rem;
  }

  .article-content .featured-image {
    margin-bottom: 2.5rem;
  }

  .entry-content {
    font-size: 1.5rem;
  }

  .article-footer {
    margin-top: 3.5rem;
    padding-top: 3.5rem;
  }

  /*CTA-SP*/
  .footer-cta .tel-number a {
    font-size: 4.2rem;
  }

  /*Footer-SP*/
  .footer-wrap {
    flex-direction: column;
  }

  .footer-left {
    flex-direction: column;
  }

  .footer-left .company-img {
    width: 66%;
    margin: 0 auto;
  }

  .footer-left .company-info .tags {
    justify-content: center;
  }

  .footer-left .company-info .tags li {
    font-size: 1.6rem;
  }

  .footer-left .logo img {
    margin: 0 auto 2rem;
    width: 80%
  }

  .footer-left .address,
  .footer-left .tel-fax {
    text-align: center;
    font-size: 1.6rem;
  }

  .footer-right {
    padding-top: 3.2rem;
    display: flex;
    flex-direction: column-reverse;
  }


  /*固定ページ-SP*/
  .page-header {
    height: 32rem
  }

  .page-header .title .ja {
    font-size: 1.8rem;
  }

  .page-heading {
    font-size: 3.2rem
  }

  /*会社概要-SP*/

  .introduction .intro-catch {
    font-size: 3.6rem;
  }

  .introduction .intro-text {
    font-size: 1.8rem;
  }

  .greeting .inner {
    padding: 0 4.8rem
  }

  .greeting .greeting-content {
    flex-direction: column;
  }

  .greeting .greeting-content .catch {
    text-align: center;
    font-size: 3.2rem
  }

  .greeting .greeting-content .desc p {
    font-size: 1.8rem;
  }

  .data .inner {
    padding: 0 4.8rem
  }

  .info-table th {
    white-space: nowrap;
    padding: 2rem 1.5rem;
  }

  .history .inner {
    padding: 0 4.8rem
  }

  .history-table tbody tr {
    display: flex;
    flex-direction: column;
    font-size: 1.8rem;
  }

  .history-table tbody th {
    width: 100%;
    text-align: left;
  }

  .history-table tbody td {
    padding: 2rem 1.5rem;
  }

  .access .inner {
    padding: 0 4.8rem
  }

  /*事業内容-SP */
  .business-content {
    flex-direction: column !important;
  }

  .business-content {
    gap: 0;
  }

  .business-content .catch {
    font-size: 3.2rem
  }

  .business-content .desc p {
    font-size: 1.8rem
  }

  .business-contents .inner {
    padding: 0 4.8rem
  }

  /*採用情報-SP*/
  .recruit-mv .mv-visual .bg-img {
    height: 100vh;
  }

  .recruit-mv .catchcopy-img {
    height: 64vh;
  }

  .recruit-mv .page-title {
    margin-top: 3.2rem;
    font-size: 2.8rem
  }

  .recruit-nav .inner {
    padding: 0
  }

  .recruit-nav .nav-list {
    padding: 0;
    flex-wrap: wrap;
    border-top: 1px solid var(--base-blue);
  }

  .recruit-nav .nav-list li {
    flex: 50%;
    border-bottom: 1px solid var(--base-blue);
    padding: 1.6rem 0;
  }

  .recruit-nav .nav-list .text {
    font-size: 1.8rem;
  }

  .recruit-nav .nav-list img {
    display: none;
  }

  .work .block {
    flex-direction: column !important;
  }

  .work .desc p {
    font-size: 1.6rem;
  }

  .workplace .box-wrap {
    flex-direction: column;
  }

  .schedule .schedule-wrap {
    flex-direction: column;
  }

  .schedule .schedule-images {
    flex-wrap: wrap;
    gap: 2%;
    flex: auto;
    flex-direction: row;
  }

  .schedule .schedule-images .image {
    width: 49%;
    margin-bottom: 2%;
  }

  .schedule .schedule-images .image:last-child {
    display: none;
  }

  .career-box {
    flex-direction: column;
  }

  .career-box .box-left {
    justify-content: center;
    flex-direction: row;
    flex: auto;
  }

  .career-box .box-right {
    width: 100%;
  }

  .career-box .box-left img {
    display: none;
  }

  .career-box .box-left .level,
  .career-box .box-left .year {
    margin-bottom: 0;
    font-size: 2.8rem
  }

  .career-box .box-right {
    flex-direction: column;
  }

  .career-box .box-right .desc p {
    font-size: 1.6rem;
  }

  .interview-content {
    flex-direction: column;
  }

  .interview-content .catch {
    font-size: 2.4rem
  }

  .info-table tr {
    display: flex;
    flex-direction: column;
  }

  .info-table th,
  .info-table td {
    width: 100%;
    padding: 2rem 1.5rem;
  }

}



.submit-button-wrap>p{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cf7-cf-turnstile-wrap{
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 1.6rem 1.6rem 0 1.6rem;
  width:100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5.0rem;
  border:1px solid #ccc;
}
.cf7-cf-turnstile-wrap p{
  font-size: 1.4rem ;
  margin-bottom: 0.8rem;
}
.cf7-cf-turnstile-wrap p strong{
  display: block;
}
@media screen and (max-width: 640px) {
	.cf7-cf-turnstile-wrap{
		flex-direction:column;
	}
}