@charset "UTF-8";

/*
Theme Name: tsuruyama-tec
Author: Airily
Version: 1.0
*/
:root {
  --lh-table: 1.8;
  --ls-base: .15rem;
}

html {
  font-size: 62.5%;
}

@media (max-width: 1680px) {
  html {
    font-size: 54.6%;
  }
}

@media screen and (max-width: 1600px) {
  html {
    font-size: 52%;
  }
}

@media screen and (max-width: 1400px) {
  html {
    font-size: 45.5%;
  }
}

@media screen and (max-width: 1280px) {
  html {
    font-size: 41.6%;
  }
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 33.3%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

* {
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

div,
pre,
p,
blockquote,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
figure,
figcaption,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

body {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  color: #000;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, "MS PGothic", Osaka, "Hiragino Sans", sans-serif;
  -webkit-text-size-adjust: 100%;
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

#header {
  width: 100%;
  height: 12rem;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  border-top: solid 1px #BFBFBF;
  position: fixed;
  top: 0;
  transition: 1s;
  z-index: 10;
}

#header.hide {
  transform: translateY(calc(-12rem - 1px));
}

@media (max-width: 1150px) {
  #header {
    height: 70px;
  }
}

#header .header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

@media (max-width: 1150px) {
  #header .header-inner {
    display: block;
  }
}

#header .header-inner .header-l {
  width: 24%;
  display: flex;
  align-items: center;
  padding-left: 5rem;
}

@media (max-width: 1150px) {
  #header .header-inner .header-l {
    width: 100%;
    height: 100%;
    padding-right: 0;
    padding-left: 20px;
  }
}

#header .header-inner .header-l .logo img {
  aspect-ratio: 360/78;
}

@media (max-width: 1150px) {
  #header .header-inner .header-l .logo img {
    width: auto;
    max-width: none;
    height: 50px;
  }
}

#header .header-inner .header-r {
  width: calc(100% - 24%);
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1150px) {
  #header .header-inner .header-r {
    width: 100px;
    position: absolute;
    top: 0;
    right: 0;
  }
}

#header .header-inner .header-r .inner-r {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 34rem;
  padding-bottom: 0.5rem;
  padding-right: 5px;
  padding-left: 5px;
  text-align: center;
  letter-spacing: 0.14rem;
  position: relative;
}

#header .header-inner .header-r .inner-r::before {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 0;
  width: 1px;
  background: #7F7F7F;
}

@media (max-width: 1150px) {
  #header .header-inner .header-r .inner-r {
    display: none;
  }
}

#header .header-inner .header-r .inner-r .header-phone-title {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0 2rem;
  background: #000;
  border-radius: 50px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
}

#header .header-inner .header-r .inner-r .header-phone-time {
  font-size: 1.2rem;
  letter-spacing: normal;
}

#header .header-inner .header-r .inner-r a {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
  font-size: 2.667rem;
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, "MS PGothic", Osaka, "Hiragino Sans", sans-serif;
  font-weight: bold;
  line-height: 1;
}

#header .header-inner .header-r .inner-r a::before {
  content: "TEL";
  display: block;
  font-size: 1.4rem;
}

#header .header-inner .header-r .inner-l {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  width: calc(100% - 34rem);
  padding-top: 1.4rem;
  padding-bottom: 1rem;
  padding-right: 5rem;
}

@media (max-width: 1150px) {
  #header .header-inner .header-r .inner-l {
    width: 100%;
    background: none;
    padding: 0;
  }
}

h1 {
  color: #404040;
  font-size: 1.2rem;
  font-weight: normal;
}

@media (max-width: 1150px) {
  h1 {
    display: none;
  }
}

#nav-container {
  width: 100%;
}

@media (max-width: 1150px) {
  #nav-container {
    position: fixed;
    height: 100vh;
    pointer-events: none;
  }
}

@media (max-width: 1150px) {
  #nav-container .bg {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    background: #000;
  }

  #nav-container:focus-within .bg {
    visibility: visible;
    opacity: 0.6;
  }
}

#nav-container * {
  visibility: visible;
}

@media (max-width: 1150px) {
  .button {
    position: relative;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 11;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    border-radius: 0;
    height: 70px;
    width: 30px;
    cursor: pointer;
    pointer-events: auto;
    margin-left: auto;
    margin-right: 20px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  .icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    background: #000;
    transition: 0.3s;
  }

  .icon-bar+.icon-bar {
    margin-top: 8px;
  }

  #nav-container:focus-within .button {
    pointer-events: none;
  }

  #nav-container:focus-within .icon-bar:nth-of-type(1) {
    transform: translate3d(0, 11px, 0) rotate(45deg);
  }

  #nav-container:focus-within .icon-bar:nth-of-type(2) {
    opacity: 0;
  }

  #nav-container:focus-within .icon-bar:nth-of-type(3) {
    transform: translate3d(0, -11px, 0) rotate(-45deg);
  }
}

@media (max-width: 1150px) {
  #nav-container:focus-within #nav-content {
    transform: none;
  }
}

#nav-content {
  height: 100%;
  contain: paint;
}

@media (max-width: 1150px) {
  #nav-content {
    margin-top: calc(70px - 1px);
    width: 65%;
    max-width: 350px;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: #fff;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: translateX(100%);
    transition: transform 0.3s;
    will-change: transform;
  }
}

#nav-content ul {
  list-style: none;
  display: flex;
}

@media (min-width: 1151px) {
  #nav-content ul {
    align-items: center;
    justify-content: flex-end;
    gap: 0 4%;
  }
}

@media screen and (min-width: 1601px) {
  #nav-content ul {
    gap: 0 7.1%;
  }
}

@media (max-width: 1150px) {
  #nav-content ul {
    flex-direction: column;
    flex-wrap: unset;
  }
}

#nav-content ul li {
  padding-top: 2rem;
  line-height: 1;
}

@media (min-width: 1151px) {
  #nav-content ul li {
    min-width: 80px;
  }
}

#nav-content ul li a {
  display: block;
  padding-bottom: 1.2rem;
  text-decoration: none;
  color: #000;
}

@media (min-width: 1151px) {
  #nav-content ul li a.on .pick::before {
    content: "";
    width: 7rem;
    border-bottom: 1px solid #000;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
  }

  #nav-content ul li a .pick {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  #nav-content ul li a .pick:hover::before {
    content: "";
    width: 7rem;
    border-bottom: 1px solid #000;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
  }

  #nav-content ul li a .pick span {
    display: block;
    letter-spacing: 0.15rem;
  }

  #nav-content ul li a .pick span.eng {
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    font-size: 1.2rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 300;
  }

  #nav-content ul li a .pick span.jp {
    font-size: 1.9rem;
  }
}

@media (max-width: 1150px) {
  #nav-content ul li a {
    padding: 20px 5px;
    text-align: center;
    text-transform: uppercase;
    transition: color 0.1s;
  }

  #nav-content ul li a .jp {
    font-size: 14px;
  }

  #nav-content ul li a .eng {
    display: none;
  }
}

.main-movie {
  line-height: 0;
  position: relative;
}

@media (max-width: 768px) {
  .main-movie {
    margin-top: 71px;
  }
}

.main-movie video {
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  width: 100%;
  height: auto;
  aspect-ratio: 192/108;
  -o-object-fit: cover;
  object-fit: cover;
  outline: none;
  border: none;
}

.main-movie .movie-txt {
  position: absolute;
  bottom: 17rem;
  right: 0;
  left: 0;
  width: 86.0892388451%;
  max-width: 1640px;
  padding-left: 6rem;
  margin: 0 auto;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
  z-index: 1;
}

@media (max-width: 768px) {
  .main-movie .movie-txt {
    position: static;
    width: 100%;
    background: #0071BD;
    padding: 20px;
  }
}

.main-movie .movie-txt .mv-txt-1 {
  font-size: 5.334rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .main-movie .movie-txt .mv-txt-1 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
  }
}

.main-movie .movie-txt .mv-txt-2 {
  font-size: 3.734rem;
}

@media (max-width: 768px) {
  .main-movie .movie-txt .mv-txt-2 {
    font-size: 1.8rem;
  }
}

.scrolldown {
  position: absolute;
  bottom: 20rem;
  left: 4rem;
  color: #fff;
  writing-mode: vertical-rl;
  letter-spacing: 0.3rem;
  padding-bottom: 1rem;
  line-height: 1;
  font-size: 2.2rem;
}

@media (max-width: 768px) {
  .scrolldown {
    display: none;
  }
}

.scrolldown::before {
  content: "";
  width: 1px;
  height: 20.5rem;
  background-color: #fff;
  animation: arrow 2.5s ease 0s infinite normal;
  margin: auto;
  position: absolute;
  bottom: -20rem;
  left: 1rem;
}

@media (max-width: 768px) {
  .scrolldown::before {
    height: 30px;
    bottom: -30px;
    left: 8px;
  }
}

@keyframes arrow {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
}

section {
  letter-spacing: var(--ls-base);
}

section>p:last-child {
  margin-bottom: 0;
}

main {
  width: 100%;
}

main.sub-box {
  margin-top: 9rem;
}

@media (max-width: 768px) {
  main.sub-box {
    margin-top: 3rem;
  }
}

main.sub-box section,
main.sub-box .section-box {
  width: 95.5380577428%;
  max-width: 1820px;
  padding-top: 3rem;
  margin: 0 auto 10rem;
}

@media (max-width: 768px) {

  main.sub-box section,
  main.sub-box .section-box {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-bottom: 3rem;
  }
}

main.sub-box section:last-child,
main.sub-box .section-box:last-child {
  margin-bottom: 16rem;
}

@media (max-width: 768px) {

  main.sub-box section:last-child,
  main.sub-box .section-box:last-child {
    margin-bottom: 6rem;
  }
}

main.sub-box section .contents-wrap,
main.sub-box .section-box .contents-wrap {
  width: 90.1098901099%;
  max-width: 1640px;
  margin: 0 auto;
}

@media (max-width: 768px) {

  main.sub-box section .contents-wrap,
  main.sub-box .section-box .contents-wrap {
    width: 100%;
  }
}

main.sub-box section .contents-wrap p,
main.sub-box .section-box .contents-wrap p {
  line-height: var(--lh-table);
  letter-spacing: 0.1rem;
}

p {
  margin-bottom: 1.2em;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: 0;
}

a {
  color: #000;
}

a[href^="tel:"] {
  text-decoration: none;
}

@media (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a.u-line {
  text-decoration: underline !important;
}

a.u-line:hover {
  text-decoration: none !important;
}

a.hv-line {
  text-decoration: none;
}

a.hv-line:hover {
  text-decoration: underline;
}

a img:hover {
  opacity: 0.6;
}

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

.pc_on {
  display: block;
}

@media (max-width: 768px) {
  .pc_on {
    display: none;
  }
}

.sp_on {
  display: none;
}

@media (max-width: 768px) {
  .sp_on {
    display: block;
  }
}

.pc_br {
  display: block;
}

@media (max-width: 768px) {
  .pc_br {
    display: none;
  }
}

.sp_br {
  display: none;
}

@media (max-width: 768px) {
  .sp_br {
    display: block;
  }
}

@media (min-width: 769px) {
  .sp_br.non-br {
    white-space: nowrap;
  }
}

.sp_br.pad-r {
  padding-right: 1rem;
}

@media (max-width: 768px) {
  .sp_br.pad-r {
    padding-right: 0;
  }
}

.sp_br.pad-l {
  padding-left: 1rem;
}

@media (max-width: 768px) {
  .sp_br.pad-l {
    padding-left: 0;
  }
}

@keyframes ring {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

.h2-home {
  /*font-size: 4.667rem;*/
  font-size: 2.4vw;
  font-weight: normal;
}

@media (max-width: 768px) {
  .h2-home {
    font-size: 2.3rem;
  }
}

.h2-home.red::first-letter {
  color: #E6001A;
}

.h2-home.blu::first-letter {
  color: #0071BD;
}

.h2-home.m-bot {
  margin-bottom: 4rem;
}

.h2-home-sub {
  /*font-size: 2.267rem;*/
  font-size: 1.09vw;
  margin-top: 1rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .h2-home-sub {
    font-size: 1.8rem;
  }
}

.home-section {
  width: 100%;
  max-width: 1920px;
  display: flex;
  margin: 0 auto;
  overflow: hidden;
}

.home-section.home-v1 {
  padding-top: 7rem;
}

@media (max-width: 768px) {
  .home-section.home-v1 {
    padding-top: 4rem;
  }
}

.home-section.home-v1 .section-eng {
  padding-top: 2rem;
}

@media (max-width: 768px) {
  .home-section.home-v1 .section-eng {
    padding-top: 0;
  }
}

.home-section.home-v1 .section-contents {
  padding-top: 10rem;
  padding-right: 0;
}

@media (max-width: 768px) {
  .home-section.home-v1 .section-contents {
    padding-top: 3rem;
  }
}

.home-section.home-v2 {
  padding-top: 8rem;
}

@media (max-width: 768px) {
  .home-section.home-v2 {
    padding-top: 4rem;
  }
}

.home-section.home-v2 .section-contents {
  padding-top: 7rem;
}

@media (max-width: 768px) {
  .home-section.home-v2 .section-contents {
    padding-top: 3rem;
    padding-right: 20px;
  }
}

.home-section p {
  margin-bottom: 0;
}

.section-eng {
  width: 7.4%;
  max-width: 14rem;
  background: #fff;
  padding-left: 2rem;
  display: flex;
  align-items: flex-end;
  color: #F2F2F2;
  white-space: nowrap;
  font-size: 8rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  writing-mode: vertical-rl;
  line-height: 1;
}

@media (max-width: 768px) {
  .section-eng {
    width: 25px;
    padding-right: 5px;
    padding-left: 0;
    align-items: center;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
  }
}

@media (min-width: 769px) {
  .section-contents {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .section-contents {
    width: calc(100% - 25px);
  }
}

.home-box-01 {
  width: 100%;
  display: flex;
  gap: 3rem 5rem;
  margin-bottom: 12rem;
}

@media (max-width: 768px) {
  .home-box-01 {
    flex-wrap: wrap;
    padding-right: 20px;
    margin-bottom: 4rem;
  }
}

@media (min-width: 769px) {
  .home-box-01 .home01-txt-box {
    flex: 1;
    padding-top: 7rem;
  }

  .home-box-01 .home01-txt-box .home01-inner-txt {
    padding-left: 10rem;
    font-size: 1.9rem;
    line-height: var(--lh-table);
  }
}

@media (min-width: 769px) and (max-width: 768px) {
  .home-box-01 .home01-txt-box .home01-inner-txt {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .home-box-01 .home01-txt-box {
    width: 100%;
  }
}

.home-box-01 .home01-img-box {
  /*width: 94rem;*/
  width: 52.8%;
}

@media (max-width: 863px) {
  .home-box-01 .home01-img-box {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .home-box-01 .home01-img-box {
    width: 100%;
    text-align: center;
  }
}

a .ring-box {
  display: block;
  overflow: hidden;
  position: relative;
}

a:hover .ring-box::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  transform: translate(-50%, -50%);
  opacity: 1;
  animation: ring 0.8s;
}

a:hover .ring-box img {
  transform: scale(1.1, 1.1);
}

.home-card {
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  letter-spacing: normal;
}

.home-card picture {
  background: #fff;
}

.home-card picture img {
  width: 100%;
  transition: ease 0.35s;
}

.home-card picture img:hover {
  opacity: 1;
}

.txt-more {
  color: transparent;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  background: linear-gradient(to right, #E6001A 50%, #BFBFBF 50%) 100%;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.3s;
}

@media (max-width: 768px) {
  .txt-more {
    font-size: 14px;
    margin-top: auto;
    margin-bottom: 0;
  }
}

a:hover .txt-more {
  background-position: 0 100%;
}

.home-card-title {
  display: block;
  font-size: 2.667rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .home-card-title {
    font-size: 16px;
  }
}

.home-card-txt {
  display: block;
  text-align: left;
  font-size: 1.467rem;
  line-height: var(--lh-table);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .home-card-txt {
    font-size: 14px;
  }
}

@media (min-width: 769px) {
  .bg_home-box-02 {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 19%, #F8F8F8 19%, #F8F8F8 100%);
    padding-bottom: 12rem;
    padding-left: 6rem;
  }
}

@media (max-width: 768px) {
  .bg_home-box-02 {
    background: #F8F8F8;
    padding: 4rem 20px;
  }
}

.home-box-02 {
  max-width: 1520px;
  display: flex;
  gap: 4rem 7rem;
  margin-bottom: 8rem;
}

@media (min-width: 769px) {
  .home-box-02 {
    width: 89.1495601173%;
  }
}

@media (max-width: 768px) {
  .home-box-02 {
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 6rem;
  }
}

.home-box-02 .home02-card {
  width: 30.2632%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 768px) {
  .home-box-02 .home02-card {
    width: 100%;
  }
}

.home-box-02 .home02-card .home02-txt-box {
  display: block;
  padding: 0 2rem;
  text-align: center;
}

@media (min-width: 769px) {
  .bg_home-box-03 {
    padding-right: 20rem;
  }
}

.home-box-03 {
  max-width: 800px;
  padding: 2rem;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  border-top: solid 1px #BFBFBF;
  border-bottom: solid 1px #BFBFBF;
  text-decoration: none;
  letter-spacing: normal;
  cursor: pointer;
}

@media (min-width: 769px) {
  .home-box-03 {
    width: 53.1561461794%;
  }
}

@media (max-width: 768px) {
  .home-box-03 {
    width: 100%;
    flex-wrap: wrap;
  }
}

.home-box-03 .home03-img-box {
  width: 27rem;
  display: block;
}

@media (max-width: 768px) {
  .home-box-03 .home03-img-box {
    width: 100%;
    text-align: center;
  }
}

.home-box-03 .home03-txt-box {
  display: block;
}

@media (min-width: 769px) {
  .home-box-03 .home03-txt-box {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .home-box-03 .home03-txt-box {
    width: 100%;
  }
}

.home-box-03 .home03-txt-box .home03-txt-eng {
  display: block;
  color: #0071BD;
  font-size: 2.134rem;
  font-weight: bold;
}

@media (min-width: 769px) {
  .home-box-03 .home03-txt-box .home03-txt-eng {
    margin-top: -0.5rem;
  }
}

.home-box-03 .home03-txt-box .home03-txt-title {
  display: block;
  font-size: 2.934rem;
  letter-spacing: var(--ls-base);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .home-box-03 .home03-txt-box .home03-txt-title {
    font-size: 2rem;
  }
}

.home-box-03 .home03-txt-box .home03-txt-txt {
  display: block;
  font-size: 1.467rem;
  line-height: var(--lh-table);
}

@media (max-width: 768px) {
  .home-box-03 .home03-txt-box .home03-txt-txt {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}

.home-box-03 .home03-txt-box .home03-more {
  display: block;
  text-align: right;
  line-height: 1;
}

.home-box-04 {
  width: 92.9178470255%;
  max-width: 1640px;
  display: flex;
  gap: 4rem;
  margin-bottom: 17rem;
}

@media (max-width: 768px) {
  .home-box-04 {
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 4rem;
  }
}

.home-box-04 .home04-card {
  width: calc(100% - 2rem);
  max-width: 800px;
  display: block;
  text-align: center;
}

@media (max-width: 768px) {
  .home-box-04 .home04-card {
    width: 100%;
  }
}

.home-box-04 .home04-card .home04-txt-box {
  display: block;
  padding: 2rem 6rem 0 6rem;
}

@media (max-width: 768px) {
  .home-box-04 .home04-card .home04-txt-box {
    padding: 2rem 2rem 0;
  }
}

@media (min-width: 769px) {
  .bg_home-box-05 {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 19%, #F8F8F8 19%, #F8F8F8 100%);
    padding-bottom: 8rem;
    margin-bottom: 5rem;
  }
}

@media (max-width: 768px) {
  .bg_home-box-05 {
    width: 100vw;
    background: #F8F8F8;
    padding: 4rem calc(50vw - 50% + 30px) 4rem 20px;
    margin: 0 calc(50% - 50vw) 4rem 0;
  }
}

p.home05-txt {
  margin-top: 1rem;
  margin-bottom: 8rem;
  font-size: 2.134rem;
  letter-spacing: normal;
  line-height: var(--lh-table);
}

@media (max-width: 768px) {
  p.home05-txt {
    font-size: 1.6rem;
    margin-bottom: 4rem;
  }
}

.home-box-05 {
  width: 92.9178470255%;
}

@media (max-width: 768px) {
  .home-box-05 {
    width: 100%;
  }
}

.home-box-05,
.page-link {
  max-width: 1640px;
  display: flex;
  gap: 4rem;
}

@media (max-width: 768px) {

  .home-box-05,
  .page-link {
    flex-wrap: wrap;
  }
}

.home-box-05 .home05-card,
.page-link .home05-card {
  width: calc(100% - 3rem);
  max-width: 380px;
  display: block;
  text-align: center;
}

@media (max-width: 768px) {

  .home-box-05 .home05-card,
  .page-link .home05-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
}

.home-box-05 .home05-card .home05-img-box,
.page-link .home05-card .home05-img-box {
  margin-bottom: 1rem;
}

.home-box-05 .home05-card .home05-txt-title,
.page-link .home05-card .home05-txt-title {
  margin-bottom: 1rem;
}

.page-link {
  width: 100%;
  gap: 4rem;
}

@media (max-width: 768px) {
  .page-link {
    gap: 4rem 2rem;
  }
}

@media (max-width: 768px) {
  .page-link .home05-card {
    width: calc((100% - 2rem) / 2);
  }
}

.page-link .home05-txt-title {
  font-size: 2.134rem;
}

@media (max-width: 768px) {
  .page-link .home05-txt-title {
    font-size: 1.6rem;
  }
}

.bg_home-news {
  width: 92.9178470255%;
  max-width: 1640px;
  margin-bottom: 13rem;
}

@media (max-width: 768px) {
  .bg_home-news {
    width: 100%;
  }
}

.h3-home-box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .h3-home-box .h3-img {
    width: 70px;
  }
}

.h3-home {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: var(--ls-base);
  padding-bottom: 1rem;
}

@media (max-width: 768px) {
  .h3-home {
    font-size: 2.3rem;
  }
}

.h3-home::first-letter {
  color: #00B050;
}

.btn-news {
  padding-right: 11rem;
}

.btn-news a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
  font-size: 1.6rem;
  color: transparent;
  background: linear-gradient(to right, #E6001A 50%, #000 50%) 100%;
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  transition: background-position 0.3s;
}

.btn-news a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -9rem;
  transform: translateY(-50%);
  width: 8rem;
  height: 1px;
  border-bottom: 1px solid #000;
  transition: 0.5s;
}

.btn-news a:hover {
  background-position: 0 100%;
}

.btn-news a:hover::after {
  right: -10rem;
  border-bottom-color: #ff0000;
}

.bg-home-img {
  width: 100%;
  aspect-ratio: 192/65;
}

#h2-bg {
  width: 100%;
  height: 46rem;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  #h2-bg {
    margin-top: 70px;
    height: 150px;
    background-position: center top;
  }
}

.path-bg {
  display: flex;
  align-items: center;
  width: 100%;
  height: 4rem;
  background: #F8F8F8;
}

@media (max-width: 768px) {
  .path-bg {
    display: none;
  }
}

.path-bg .path-wrap {
  width: 95.5380577428%;
  max-width: 1820px;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  margin: 0 auto;
}

ol.topic-path {
  display: flex;
  list-style: none;
  line-height: 1;
  position: relative;
}

ol.topic-path li {
  display: inline;
  margin-left: 1.5rem;
}

ol.topic-path li:first-child {
  margin-left: 0;
  margin-right: 0;
}

ol.topic-path li a {
  padding-right: 2.5rem;
  background: url(img/topicpath-arrow.webp) no-repeat right center;
  text-decoration: none;
}

ol.topic-path li a:hover {
  text-decoration: underline;
}

ol.topic-path li:nth-last-of-type(1) a {
  background: none;
  padding-right: 0;
}

@media (max-width: 768px) {
  ol.topic-path {
    display: none;
  }
}

.page-path {
  margin-left: 3.5rem;
  display: flex;
  align-items: center;
  flex: 1;
  line-height: 1;
}

.page-path a {
  padding-right: 4rem;
  padding-left: 2rem;
  background: url(img/topicpath-arrow.webp) no-repeat;
  background-position: left center;
  text-decoration: none;
}

.page-path a:last-child {
  padding-right: 0;
}

.page-path a:hover {
  text-decoration: underline;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .page-path {
    display: none;
  }
}

.tab-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 7rem 0;
  position: relative;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .tab-content {
    padding-top: 0;
  }
}

.tab-content input[type=radio] {
  display: none;
}

.tab-content input[type=radio]:checked+label {
  z-index: 1;
}

.tab-content input[type=radio]:checked+label::after {
  content: "";
  display: block;
  border-bottom: 2px solid #624E45;
  width: 100%;
  max-width: 9rem;
  height: 2px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .tab-content input[type=radio]:checked+label::after {
    width: 50px;
  }
}

.tab-content label {
  width: 18.9025%;
  text-align: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .tab-content label {
    display: none;
  }
}

.tab-content label::after {
  content: "";
  display: block;
  border-bottom: 2px solid #EFEDEC;
  width: 100%;
  max-width: 9rem;
  height: 2px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .tab-content label::after {
    width: 50px;
  }
}

.tab-content label:hover::after {
  content: "";
  display: block;
  border-bottom: 2px solid #624E45;
  width: 100%;
  max-width: 9rem;
  height: 2px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .tab-content label:hover::after {
    width: 50px;
  }
}

.tab-content label .tab-txt {
  width: 100%;
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #423E3D;
  line-height: 1;
  position: relative;
}

.tab-content label .tab-txt .eng {
  color: #BFBFBF;
  font-size: 1.334rem;
  font-family: "Noto Serif JP", serif;
}

@media (max-width: 768px) {
  .tab-content label .tab-txt .eng {
    font-size: 1.2rem;
  }
}

.tab-content label .tab-txt .jp {
  font-size: 1.9rem;
}

@media (max-width: 768px) {
  .tab-content label .tab-txt .jp {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .tab-content label .tab-txt {
    padding: 0 5px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}

.tab-content .tab-box {
  width: 100%;
  height: 52rem;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  z-index: 0;
  background: #fff;
}

@media (max-width: 768px) {
  .tab-content .tab-box {
    margin-top: 0;
  }
}

.tab-content .tab-box>div {
  display: none;
}

#tab1:checked~.tab-box>#tabView1 {
  display: block;
}

#tab2:checked~.tab-box>#tabView2 {
  display: block;
}

#tab3:checked~.tab-box>#tabView3 {
  display: block;
}

#tab4:checked~.tab-box>#tabView4 {
  display: block;
}

#tab5:checked~.tab-box>#tabView5 {
  display: block;
}

span.icon {
  width: 12rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #000;
  background: #fff;
  color: #000;
  font-size: 1.467rem;
  line-height: 1;
}

@media (max-width: 768px) {
  span.icon {
    font-size: 1.4rem;
  }
}

span.icon.info {
  border: solid 1px #ED7D31;
  color: #ED7D31;
}

span.icon.area {
  border: solid 1px #E6001A;
  color: #E6001A;
}

span.icon.blog {
  border: solid 1px #00B050;
  color: #00B050;
}

.col2_news_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem 7rem;
}

@media (max-width: 768px) {
  .col2_news_wrap {
    gap: 3rem 0;
  }
}

.col2_news_wrap .div-news-box {
  width: calc((100% - 7rem) / 2);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (max-width: 768px) {
  .col2_news_wrap .div-news-box {
    width: 100%;
    justify-content: center;
  }
}

.col2_news_wrap .div-news-box .box_img {
  width: 24rem;
}

@media (max-width: 768px) {
  .col2_news_wrap .div-news-box .box_img {
    width: 100%;
    text-align: center;
  }
}

.col2_news_wrap .div-news-box .box_txt {
  padding-top: 1rem;
}

@media (min-width: 769px) {
  .col2_news_wrap .div-news-box .box_txt {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .col2_news_wrap .div-news-box .box_txt {
    width: 100%;
  }
}

.col2_news_wrap .div-news-box .box_txt p.news_tit {
  font-size: 1.9rem;
  margin: 1em 0;
}

@media (max-width: 768px) {
  .col2_news_wrap .div-news-box .box_txt p.news_tit {
    font-size: 1.4rem;
    font-weight: bold;
  }
}

.col2_news_wrap .div-news-box .box_txt p.news_tit a {
  text-decoration: none;
}

.entry-wrapp {
  display: flex;
  align-items: center;
  gap: 0 2rem;
}

.entry-wrapp .entry-day {
  color: #BFBFBF;
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  .entry-wrapp .entry-day {
    font-size: 1.4rem;
  }
}

#layout {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

#layout .main-box {
  width: calc(100% - 42rem);
}

@media (max-width: 768px) {
  #layout .main-box {
    width: 100%;
  }
}

#layout .side-box {
  width: 38rem;
}

@media (max-width: 768px) {
  #layout .side-box {
    width: 100%;
    margin: 0 auto;
  }
}

#layout .side-box ul {
  list-style: none;
  margin-bottom: 50px;
  padding-left: 35px;
}

#layout .side-box ul li {
  margin-bottom: 10px;
  border: solid 1px #BFBFBF;
}

#layout .side-box ul li:first-child {
  display: flex;
  align-items: center;
}

#layout .side-box ul li a {
  display: block;
  width: 100%;
  padding: 15px;
  text-decoration: none;
}

#layout .side-box ul li a:hover {
  background: #7F7F7E;
  color: #fff;
}

#layout .side-box ul li.current-cat {
  background-color: #7F7F7E;
}

#layout .side-box ul li.current-cat a {
  color: #ffffff;
}

.col2-archive {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 4rem;
  border-bottom: solid 1px #BFBFBF;
  padding: 3rem 0;
}

.col2-archive:nth-child(1) {
  border-top: solid 1px #BFBFBF;
}

.col2-archive .img-box {
  width: 19.672%;
  max-width: 240px;
}

@media (max-width: 768px) {
  .col2-archive .img-box {
    width: 100%;
    max-width: none;
    text-align: center;
  }
}

.col2-archive .img-box a {
  display: block;
}

.col2-archive .txt-box {
  flex: 1;
}

@media (max-width: 768px) {
  .col2-archive .txt-box {
    flex: auto;
    width: 100%;
  }
}

.col2-archive .txt-box .entry-wrapp {
  margin-bottom: 2rem;
}

.side-calen-wrap {
  width: 100%;
  padding-left: 35px;
}

.side-calen-wrap h2 {
  display: none;
}

.wp-calendar {
  width: 100%;
  border: solid 1px #BFBFBF;
}

.wp-calendar th {
  font-weight: normal;
}

.wp-calendar td {
  text-align: center;
}

.wp-calendar td.today {
  color: #E5000E;
  border-bottom: none;
}

.wp-calendar td a {
  display: block;
  color: #014DA1;
  font-weight: bold;
}

.wp-calendar td a:hover {
  background: #014DA1;
  color: #fff;
}

.wp-calendar-nav {
  position: relative;
}

.wp-calendar-nav .wp-calendar-nav-next {
  position: absolute;
  right: 0;
}

.wp-calendar-nav .wp-calendar-nav-next a {
  text-decoration: none;
}

.wp-calendar-nav .wp-calendar-nav-prev a {
  text-decoration: none;
}

.col2-single {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 4rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .col2-single {
    flex-direction: column;
    align-items: unset;
    gap: 2rem;
  }
}

.col2-single .img-box {
  width: 24rem;
}

@media (max-width: 768px) {
  .col2-single .img-box {
    width: 100%;
    max-width: none;
    text-align: center;
  }
}

@media (min-width: 769px) {
  .col2-single .txt-box {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .col2-single .txt-box {
    width: 100%;
  }
}

p.txt-contents {
  margin-bottom: 0;
}

p.txt-contents a {
  text-decoration: none;
}

.box-spc {
  padding-top: 3rem;
}

.box-n-spc {
  padding-top: 0 !important;
  margin-bottom: 6rem !important;
}

@media (max-width: 768px) {
  .box-n-spc {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

.h2-sub {
  color: #0071BD;
  font-size: 3.734rem;
  font-weight: normal;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .h2-sub {
    font-size: 2.3rem;
  }
}

.h2-sub .h2-eng {
  display: block;
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}

@media (max-width: 768px) {
  .h2-sub .h2-eng {
    font-size: 1.6rem;
  }
}

.h3-sub {
  font-weight: normal;
}

.h3-sub.v1 {
  font-size: 2.667rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .h3-sub.v1 {
    font-size: 1.8rem;
  }
}

.h3-sub.v2 {
  width: 100%;
  padding-left: 3rem;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: var(--ls-base);
  line-height: 1.2;
  margin-bottom: 2rem;
  position: relative;
}

@media (max-width: 768px) {
  .h3-sub.v2 {
    padding-left: 2rem;
    font-size: 1.8rem;
  }
}

.h3-sub.v2::before {
  content: "";
  display: block;
  width: 2.1rem;
  height: 2.1rem;
  background: url(img/h3-icon.webp) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0.5rem;
  left: 0;
}

@media (max-width: 768px) {
  .h3-sub.v2::before {
    width: 1.6rem;
    top: 0;
  }
}

.h3-sub.v2 .f-sml {
  font-size: 1.9rem;
}

@media (max-width: 768px) {
  .h3-sub.v2 .f-sml {
    font-size: 1.4rem;
  }
}

.h3-sub.v2.h3-recruit {
  color: #ED7D31;
  font-size: 2.667rem;
  font-weight: normal;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .h3-sub.v2.h3-recruit {
    padding-left: 2rem;
    font-size: 1.8rem;
  }
}

.h3-sub.v2.h3-recruit::before {
  background-image: url(img/h3-icon-recruit.webp);
  top: 0.7rem;
}

@media (max-width: 768px) {
  .h3-sub.v2.h3-recruit::before {
    width: 1.6rem;
    top: 0;
  }
}

.p-work {
  font-size: 1.9rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .p-work {
    font-size: 1.4rem;
  }
}

.pic-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.pic-list.v4 {
  gap: 3.5rem 4rem;
}

@media (max-width: 768px) {
  .pic-list.v4 {
    gap: 2rem;
  }
}

.pic-list.v4 .v4-div {
  width: calc((100% - 12rem) / 4);
}

@media (max-width: 768px) {
  .pic-list.v4 .v4-div {
    width: 100%;
  }
}

.pic-list.v4 .v4-fig {
  width: calc((100% - 12rem) / 4);
  text-align: center;
}

@media (max-width: 768px) {
  .pic-list.v4 .v4-fig {
    width: 100%;
  }
}

.pic-list.v4 .v4-fig figcaption {
  margin-top: 1rem;
}

.pic-list.v3 {
  gap: 4rem;
}

@media (max-width: 768px) {
  .pic-list.v3 {
    gap: 2rem;
  }
}

.pic-list.v3 .v3-div {
  width: calc((100% - 8rem) / 3);
}

@media (max-width: 768px) {
  .pic-list.v3 .v3-div {
    width: 100%;
  }
}

.pic-list.v3 .v3-div .txt-blu {
  text-align: center;
  color: #0071BD;
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
  .pic-list.v3 .v3-div .txt-blu {
    font-size: 14px;
  }
}

.col2-box-01 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1rem;
  margin-bottom: 4rem;
}

.col2-box-01 .col2-01-img-box {
  width: 18rem;
}

@media (max-width: 768px) {
  .col2-box-01 .col2-01-img-box {
    width: 100%;
    text-align: center;
  }
}

.col2-box-01 .col2-01-txt-box {
  width: calc(100% - 20rem);
}

@media (min-width: 769px) {
  .col2-box-01 .col2-01-txt-box {
    padding-top: 0.5rem;
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .col2-box-01 .col2-01-txt-box {
    width: 100%;
    font-size: 1.4rem;
  }
}

.col2-box-01 .col2-01-txt-box p {
  margin-bottom: 0;
}

.factory-machine {
  display: flex;
  gap: 4rem;
  margin-bottom: 9rem;
}

@media (max-width: 768px) {
  .factory-machine {
    flex-direction: column;
    margin-bottom: 4rem;
  }
}

.factory-machine .factory-machine-l {
  width: 38rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .factory-machine .factory-machine-l {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .factory-machine .factory-machine-r {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .factory-machine .factory-machine-r {
    width: 100%;
  }
}

.factory-machine.v2 .factory-machine-l {
  width: 52rem;
}

@media (max-width: 768px) {
  .factory-machine.v2 .factory-machine-l {
    width: 100%;
  }
}

.factory-image {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

@media (max-width: 768px) {
  .factory-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 0 2rem;
  }
}

@media (max-width: 768px) {
  .factory-image .in-img-box {
    grid-row: span 2;
    display: grid;
    grid-template-rows: subgrid;
  }
}

@media (min-width: 769px) {
  .factory-image .in-img-box.w160 {
    width: 13.1147540984%;
  }

  .factory-image .in-img-box.w160s {
    width: 14.8148148148%;
  }

  .factory-image .in-img-box.w180 {
    width: 14.7540983607%;
  }

  .factory-image .in-img-box.w190 {
    width: 15.5737704918%;
  }

  .factory-image .in-img-box.w210s {
    width: 19.4444444444%;
  }

  .factory-image .in-img-box.w260 {
    width: 21.3114754098%;
  }

  .factory-image .in-img-box.w260s {
    width: 24.0740740741%;
  }

  .factory-image .in-img-box.w280 {
    width: 22.9508196721%;
  }

  .factory-image .in-img-box.w310s {
    width: 28.7037037037%;
  }

  .factory-image .in-img-box.w320 {
    width: 26.2295081967%;
  }

  .factory-image .in-img-box.w320s {
    width: 29.6296296296%;
  }
}

.factory-image .in-img-box .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
}

.factory-image .in-img-box .img-box img {
  width: auto;
  height: auto;
}

.factory-image .in-img-box .img-caption {
  margin-top: 0.5rem;
  text-align: left;
  font-size: 1.334rem;
  letter-spacing: normal;
}

@media (max-width: 768px) {
  .factory-image .in-img-box .img-caption {
    display: flex;
    margin-bottom: 2rem;
  }
}

.col2-tbl-factory {
  display: flex;
  gap: 0 4rem;
}

@media (max-width: 768px) {
  .col2-tbl-factory {
    flex-direction: column;
  }
}

.col2-tbl-factory .col-in-tbl {
  width: calc((100% - 4rem) / 2);
}

@media (max-width: 768px) {
  .col2-tbl-factory .col-in-tbl {
    width: 100%;
  }
}

.tbl-factory {
  border-collapse: collapse;
  width: 100%;
  border-bottom: solid 1px #BFBFBF;
  letter-spacing: normal;
  word-break: break-all;
}

.tbl-factory th,
.tbl-factory td {
  padding: 1rem;
  font-size: 1.9rem;
}

@media (max-width: 768px) {

  .tbl-factory th,
  .tbl-factory td {
    font-size: 1.4rem;
  }
}

.tbl-factory th {
  padding-top: 0;
  text-align: left;
  font-weight: normal;
}

.tbl-factory td {
  border-top: solid 1px #BFBFBF;
}

.tbl-factory td.td-1 {
  width: 45rem;
}

@media (max-width: 768px) {
  .tbl-factory td.td-1 {
    width: 60%;
  }
}

.tbl-factory td.td-2 {
  width: calc(100% - 45rem);
}

@media (max-width: 768px) {
  .tbl-factory td.td-2 {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .tbl-factory.v1 {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .tbl-factory.v2 th {
    display: none;
  }
}

.tbl-factory.v3 th.th-1 {
  width: 41rem;
}

@media (max-width: 768px) {
  .tbl-factory.v3 th.th-1 {
    width: 50%;
  }
}

.tbl-factory.v3 th.th-2 {
  width: calc(100% - 41rem);
}

@media (max-width: 768px) {
  .tbl-factory.v3 th.th-2 {
    width: 50%;
  }
}

dl.privacy {
  margin: 0;
  padding: 0;
}

dl.privacy dt,
dl.privacy dd {
  margin: 0;
  padding: 0;
}

dl.privacy dt {
  counter-increment: title;
  font-weight: bold;
}

dl.privacy dt::before {
  content: counter(title) "．";
}

dl.privacy dd {
  margin: 0 0 3rem 2.5rem;
}

.col2-greeting {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 5rem;
}

@media (max-width: 768px) {
  .col2-greeting {
    flex-direction: column;
  }
}

.col2-greeting .greeting-r {
  width: 28rem;
}

@media (min-width: 769px) {
  .col2-greeting .greeting-r {
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .col2-greeting .greeting-r {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 769px) {
  .col2-greeting .greeting-l {
    flex: 1;
    margin-top: -0.5rem;
  }
}

@media (max-width: 768px) {
  .col2-greeting .greeting-l {
    width: 100%;
  }
}

.col2-greeting .greeting-l p {
  font-size: 1.9rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .col2-greeting .greeting-l p {
    font-size: 14px;
  }
}

.col2-greeting .greeting-l p:nth-last-of-type(1) {
  margin-bottom: 2rem;
}

.ceo-comment-title {
  font-size: 3.2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .ceo-comment-title {
    font-size: 2rem;
  }
}

.ceo-name-box {
  text-align: right;
  font-size: 2.134rem;
  font-family: "Noto Serif JP", serif;
}

@media (max-width: 768px) {
  .ceo-name-box {
    font-size: 1.6rem;
  }
}

.ceo-name-box .ceo-name {
  display: inline-block;
  font-size: 2.667rem;
}

@media (min-width: 769px) {
  .ceo-name-box .ceo-name {
    padding-left: 1em;
  }
}

@media (max-width: 768px) {
  .ceo-name-box .ceo-name {
    display: block;
    text-align: right;
    font-size: 1.8rem;
  }
}

.col2-company {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5rem 4rem;
}

.col2-company .col-company {
  width: calc((100% - 4rem) / 2);
}

@media (max-width: 768px) {
  .col2-company .col-company {
    width: 100%;
  }
}

.col2-company .col-full {
  width: 100%;
}

.scr-box {
  width: 100%;
  height: 92rem;
  border-top: solid 1px #BFBFBF;
  border-bottom: solid 1px #BFBFBF;
  overflow: scroll;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .scr-box {
    height: 400px;
  }
}

.tbl-company {
  border-collapse: collapse;
  width: 100%;
  border-bottom: solid 1px #BFBFBF;
}

.tbl-company th,
.tbl-company td {
  border-top: solid 1px #BFBFBF;
  padding: 1rem;
  vertical-align: top;
  text-align: left;
  font-weight: normal;
  line-height: var(--lh-table);
}

@media (max-width: 768px) {

  .tbl-company th,
  .tbl-company td {
    display: block;
  }
}

.tbl-company th a,
.tbl-company td a {
  text-decoration: none;
}

.tbl-company th .fax,
.tbl-company td .fax {
  display: inline-block;
  margin-left: 1rem;
}

@media (max-width: 768px) {

  .tbl-company th .fax,
  .tbl-company td .fax {
    display: block;
    margin-left: 0;
  }
}

.tbl-company th p,
.tbl-company td p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .tbl-company th {
    font-weight: bold;
  }
}

@media (max-width: 768px) {
  .tbl-company td {
    border-top: none;
    padding-top: 0;
  }
}

.tbl-company.company-profile th {
  width: 15rem;
}

@media (max-width: 768px) {
  .tbl-company.company-profile th {
    width: 100%;
  }
}

.tbl-company.company-profile td {
  width: calc(100% - 15rem);
}

@media (max-width: 768px) {
  .tbl-company.company-profile td {
    width: 100%;
  }
}

.tbl-company.company-history {
  border-bottom: none;
}

.tbl-company.company-history tr:first-child th,
.tbl-company.company-history tr:first-child td {
  border-top: none;
}

.tbl-company.company-history th {
  width: 8rem;
}

@media (max-width: 768px) {
  .tbl-company.company-history th {
    width: 100%;
  }
}

.tbl-company.company-history td:nth-of-type(1) {
  width: 13rem;
  letter-spacing: 0.1rem;
}

@media (min-width: 769px) {
  .tbl-company.company-history td:nth-of-type(1) {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .tbl-company.company-history td:nth-of-type(1) {
    width: 100%;
    padding-left: 2rem;
  }
}

.tbl-company.company-history td:nth-of-type(2) {
  width: calc(100% - 21rem);
  letter-spacing: 0.1rem;
}

@media (min-width: 769px) {
  .tbl-company.company-history td:nth-of-type(2) {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .tbl-company.company-history td:nth-of-type(2) {
    width: 100%;
    padding-left: 2rem;
  }
}

@media (min-width: 769px) {
  .tbl-company.company-history td.td-n-spc {
    padding-bottom: 0;
  }
}

.tbl-company.company-history td.td-n-line {
  border-top: none;
  padding-top: 0;
}

.col3-company {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
  padding: 1rem;
  border-top: solid 1px #BFBFBF;
  border-bottom: solid 1px #BFBFBF;
}

.col3-company .in-col3-box {
  width: calc((100% - 4rem) / 3);
}

@media (max-width: 768px) {
  .col3-company .in-col3-box {
    width: 100%;
  }
}

.col3-company .in-col3-box p {
  margin-bottom: 0;
}

.col3-company-02 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
  padding: 2rem 1rem;
  border-top: solid 1px #BFBFBF;
  border-bottom: solid 1px #BFBFBF;
}

.col3-company-02 .in-col3-img {
  width: 17rem;
}

@media (max-width: 768px) {
  .col3-company-02 .in-col3-img {
    width: 100%;
    text-align: center;
  }
}

.col3-company-02 .in-col3-map {
  width: 56.1rem;
}

@media (max-width: 768px) {
  .col3-company-02 .in-col3-map {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 769px) {
  .col3-company-02 .in-col3-txt {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .col3-company-02 .in-col3-txt {
    width: 100%;
  }
}

.col3-company-02 .in-col3-txt p {
  margin-bottom: 0;
}

p.sdgs-txt {
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  p.sdgs-txt {
    margin-bottom: 2rem;
  }
}

.sdgs-box {
  /*width: 59.3902439024%;*/
  max-width: 974px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem 12rem;
  margin-bottom: 7rem;
}

@media (max-width: 768px) {
  .sdgs-box {
    width: 100%;
    justify-content: center;
    margin-bottom: 4rem;
  }

  .sdgs-box .sdgs-img {
    text-align: center;
  }

  .sdgs-box .sdgs-img.chiba img {
    width: 60%;
    max-width: 243px;
  }
}

.col-employee {
  width: 100%;
  display: flex;
  gap: 4rem;
}

@media (max-width: 768px) {
  .col-employee {
    flex-wrap: wrap;
  }
}

.col-employee p {
  margin-bottom: 0;
}

.col-employee .in-employee {
  width: calc((100% - 4rem) / 2);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 768px) {
  .col-employee .in-employee {
    width: 100%;
  }
}

.col-employee.company-ver .h3-sub {
  margin-bottom: 0 !important;
}

.col-employee.company-ver picture {
  margin-top: auto;
}

.col-employee.recruit-ver {
  margin-bottom: 8rem;
}

.col-employee.recruit-ver .h3-sub {
  margin-bottom: 1.5rem !important;
}

.col-employee.recruit-ver p {
  font-size: 1.9rem;
}

@media (min-width: 769px) {
  .col-employee.recruit-ver p {
    margin-top: -0.5rem;
  }
}

@media (max-width: 768px) {
  .col-employee.recruit-ver p {
    font-size: 1.4rem;
  }
}

.ul-dot {
  list-style: none;
}

.ul-dot li {
  padding-left: 1em;
  position: relative;
  margin-bottom: 0.1rem;
}

.ul-dot li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.tab-btn {
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 9rem;
  position: relative;
}

@media (max-width: 768px) {
  .tab-btn {
    padding: 0 1rem;
  }
}

.tab-btn::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px solid #404040;
  z-index: 1;
}

.tab-btn li {
  display: block;
  width: 50%;
  border: 1px solid #F8F8F8;
  background-color: #F8F8F8;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}

.tab-btn li img {
  filter: grayscale(100%);
}

.tab-btn li.on {
  background-color: #FFF;
  z-index: 2;
  border: 1px solid #404040;
  border-bottom-color: #FFF;
}

.tab-btn li.on+li {
  border-left: none;
}

.tab-btn li.on a {
  color: #000;
}

.tab-btn li.on img {
  filter: grayscale(0);
}

.tab-btn li a {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
  height: 100%;
  padding: 2rem 4rem 1rem;
  text-decoration: none;
  color: #7F7F7F;
}

@media (max-width: 768px) {
  .tab-btn li a {
    flex-direction: column-reverse;
    justify-content: flex-end;
    gap: 2rem;
    padding: 1rem;
  }
}

.tab-btn li a .tab-txt-box {
  flex: 1;
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  .tab-btn li a .tab-txt-box {
    width: 100%;
    font-size: 1.4rem;
  }
}

.tab-btn li a .tab-txt-box .tab-title {
  display: block;
  font-size: 3.2rem;
  letter-spacing: 1.3rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .tab-btn li a .tab-txt-box .tab-title {
    font-size: 1.6rem;
  }
}

.tab-btn li a .tab-txt-box .tab-txt {
  letter-spacing: var(--ls-base);
  margin-bottom: 0;
}

.tab-btn li a .tab-img-box {
  width: 28rem;
}

@media (max-width: 768px) {
  .tab-btn li a .tab-img-box {
    width: 100%;
  }
}

.slick-wrap {
  aspect-ratio: 192/99;
  position: relative;
}

@media (max-width: 768px) {
  .slick-wrap {
    margin-top: 70px;
  }
}

.slick-img {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

.slick-img img {
  width: 100%;
  max-width: auto;
  height: auto;
}

@media (max-width: 768px) {
  .slick-img img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.add-animation {
  animation: zoomUp 7s linear 0s normal both;
}

.slick-txt-box {
  width: 100%;
  background: rgba(0, 113, 189, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  font-weight: bold;
}

@media (min-width: 769px) {
  .slick-txt-box {
    position: absolute;
    bottom: 6rem;
    left: 0;
    width: 122rem;
    min-height: 29rem;
    clip-path: polygon(0 0, 100% 0%, 89% 100%, 0% 100%);
    padding-right: 11rem;
    padding-left: 5rem;
  }
}

@media (max-width: 768px) {
  .slick-txt-box {
    align-items: center;
    padding: 2rem;
  }
}

.txt-1 {
  color: #fff;
  font-size: 6.4rem;
}

@media (max-width: 768px) {
  .txt-1 {
    font-size: 2.3rem;
  }
}

.txt-2 {
  background-color: #fff;
  border-radius: 50px;
  text-align: center;
  color: #0070C0;
  font-size: 3.467rem;
}

@media (max-width: 768px) {
  .txt-2 {
    padding: 1rem 2rem;
    font-size: 1.8rem;
  }
}

.txt-3 {
  color: #fff;
  font-size: 2.667rem;
}

@media (max-width: 768px) {
  .txt-3 {
    font-size: 1.6rem;
  }
}

.txt-recruit-title {
  color: #ED7D31;
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .txt-recruit-title {
    font-size: 2rem;
  }
}

.txt-recruit {
  font-size: 1.9rem;
  margin-bottom: 3em;
}

@media (max-width: 768px) {
  .txt-recruit {
    font-size: 1.4rem;
  }
}

.recruit-inner-box {
  display: flex;
  flex-direction: column;
  gap: 9rem;
}

@media (max-width: 768px) {
  .recruit-inner-box {
    gap: 4rem;
  }
}

.col4-recruit {
  width: 100%;
  display: flex;
  gap: 4rem;
}

@media (max-width: 768px) {
  .col4-recruit {
    flex-wrap: wrap;
  }
}

.col4-recruit .col4-card {
  width: calc(100% - 3rem);
  max-width: 380px;
  display: block;
  text-align: center;
}

@media (max-width: 768px) {
  .col4-recruit .col4-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
}

.col4-recruit .col4-card .col4-recruit-title {
  margin-top: 1rem;
  font-size: 2.134rem;
}

@media (max-width: 768px) {
  .col4-recruit .col4-card .col4-recruit-title {
    font-size: 1.4rem;
  }
}

.tile-wrapp {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

@media (max-width: 768px) {
  .tile-wrapp {
    gap: 2rem;
  }
}

.tile-wrapp .tile-box {
  width: calc((100% - 20rem) / 6);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1rem 2rem;
  background-color: #E5F7FD;
  border-radius: 2rem;
}

@media (max-width: 768px) {
  .tile-wrapp .tile-box {
    width: calc((100% - 2rem) / 2);
  }
}

@media (min-width: 769px) {
  .tile-wrapp .tile-box .tile-img {
    width: 6rem;
    height: 6rem;
  }
}

@media (max-width: 768px) {
  .tile-wrapp .tile-box .tile-img {
    width: 6rem;
    height: 6rem;
  }
}

.tile-wrapp .tile-box .tile-img {
  filter: brightness(0) saturate(100%) invert(17%) sepia(99%) saturate(1313%) hue-rotate(203deg) brightness(106%) contrast(93%);
}

.tile-wrapp .tile-box .tile-title {
  /*font-size: 2.134rem;*/
  font-size: 1.1114583333333334vw;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .tile-wrapp .tile-box .tile-title {
    font-size: 16px;
    letter-spacing: normal;
  }
}

.tile-wrapp .tile-box .tile-count {
  color: #ED7D31;
  font-size: 1.9rem;
}

@media (max-width: 768px) {
  .tile-wrapp .tile-box .tile-count {
    font-size: 14px;
  }
}

.tile-wrapp .tile-box .tile-count .countup,
.tile-wrapp .tile-box .tile-count .count {
  display: inline-block;
  font-size: 5.334rem;
}

@media (max-width: 768px) {

  .tile-wrapp .tile-box .tile-count .countup,
  .tile-wrapp .tile-box .tile-count .count {
    font-size: 2.5rem;
  }
}

.tile-wrapp .tile-box .tile-txt {
  /*font-size: 1.334rem;*/
  font-size: 0.6947916666666667vw;
  letter-spacing: normal;
}

.col2-recruit {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

@media (max-width: 768px) {
  .col2-recruit {
    gap: 2rem;
  }

  .tile-wrapp .tile-box .tile-txt {
    font-size: 1.334rem;
  }
}

.col2-recruit .col2-recruit-img {
  width: 24rem;
}

@media (max-width: 768px) {
  .col2-recruit .col2-recruit-img {
    width: 100%;
    text-align: center;
  }
}

.col2-recruit .col2-recruit-txt {
  letter-spacing: 0.08rem;
}

@media (min-width: 769px) {
  .col2-recruit .col2-recruit-txt {
    flex: 1;
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .col2-recruit .col2-recruit-txt {
    width: 100%;
    font-size: 1.4rem;
  }
}

.col6-recruit {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .col6-recruit {
    gap: 2rem;
  }
}

.col6-recruit .recruit-fig {
  width: calc((100% - 20rem) / 6);
}

@media (max-width: 768px) {
  .col6-recruit .recruit-fig {
    width: calc((100% - 2rem) / 2);
    text-align: center;
  }
}

.col6-recruit .recruit-caption {
  padding-top: 1rem;
  text-align: center;
  font-size: 1.9rem;
}

@media (max-width: 768px) {
  .col6-recruit .recruit-caption {
    font-size: 1.4rem;
  }
}

.tbl-recruit-reception tbody,
.tbl-recruit-reception tr {
  display: contents;
}

.tbl-recruit-reception {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 9rem;
}

@media (max-width: 768px) {
  .tbl-recruit-reception {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.tbl-recruit-reception td {
  background-color: #F8F8F8;
  font-size: 1.9rem;
}

@media (min-width: 769px) {
  .tbl-recruit-reception td {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .tbl-recruit-reception td {
    padding-right: 1rem;
    padding-left: 1rem;
    font-size: 1.4rem;
  }

  .tbl-recruit-reception td:nth-of-type(1) {
    padding-top: 1rem;
  }

  .tbl-recruit-reception td:nth-of-type(3) {
    padding-bottom: 1rem;
  }
}

.tbl-recruit-reception td p {
  margin-bottom: 0;
}

.col-sports {
  width: 100%;
  display: flex;
  gap: 4rem;
  margin-bottom: 15.5rem;
}

@media (max-width: 768px) {
  .col-sports {
    flex-wrap: wrap;
    margin-bottom: 6rem;
  }
}

.col-sports p {
  margin-bottom: 0;
}

.col-sports .in-sports {
  width: calc((100% - 4rem) / 2);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .col-sports .in-sports {
    width: 100%;
  }
}

.col-sports .in-sports video {
  max-width: 800px;
  aspect-ratio: 192/108;
}

@media (min-width: 769px) {
  .col-sports .logo-sports {
    margin-bottom: 3rem;
  }
}

.col-sports .logo-sports picture {
  display: inline-block;
  width: 33%;
  margin-bottom: 1rem;
}

.video-js {
  aspect-ratio: 192/108;
  width: 100%;
  height: auto;
  background-color: transparent;
}

.video-js.vjs-user-inactive .vjs-control-bar {
  display: flex;
  visibility: visible;
  opacity: 1;
}

.recruit-button-box {
  background-color: #E5F7FD;
  border-radius: 2rem;
  padding: 6.5rem 10rem 8rem;
  text-align: center;
}

@media (max-width: 768px) {
  .recruit-button-box {
    padding: 4rem 2rem;
  }
}

.recruit-button-box p {
  margin-bottom: 0;
}

.recruit-button-box .recruit-button-title {
  color: #002060;
  font-size: 4.8rem;
  font-weight: bold;
  margin-bottom: 6rem;
}

@media (max-width: 768px) {
  .recruit-button-box .recruit-button-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
  }
}

.recruit-button-flex {
  display: flex;
  gap: 2rem 9rem;
}

@media (max-width: 768px) {
  .recruit-button-flex {
    flex-wrap: wrap;
  }
}

.recruit-button-flex .recruit-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: calc((100% - 18rem) / 3);
  min-height: 8rem;
  background-color: #0071BD;
  border: 2px solid #0071BD;
  border-radius: 100px;
  padding: 1rem 2rem 1rem 4rem;
  color: #fff;
  text-decoration: none;
  /*font-size: 3.2rem;*/
  font-size: 1.6666666666666667vw;
  font-weight: bold;
  letter-spacing: normal;
  position: relative;
  transition: 0.2s ease-in-out;
  overflow: hidden;
  z-index: 0;
}

@media (max-width: 768px) {
  .recruit-button-flex .recruit-button {
    width: 100%;
    font-size: 2rem;
  }
}

.recruit-button-flex .recruit-button img:hover {
  opacity: 1;
}

.recruit-button-flex .recruit-button .recruit-button-txt {
  text-align: left;
}

@media (min-width: 769px) {
  .recruit-button-flex .recruit-button .recruit-button-txt {
    flex: 1;
  }
}

.recruit-button-flex .recruit-button .recruit-button-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  border-radius: 50px;
  line-height: 0;
  transition: 0.2s;
}

.recruit-button-flex .recruit-button .recruit-button-arrow picture {
  width: 42.5%;
}

.recruit-button-flex .recruit-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  transition: 0.2s;
  background-color: #fff;
}

.recruit-button-flex .recruit-button:hover {
  color: #0071BD;
}

.recruit-button-flex .recruit-button:hover::after {
  width: 100%;
  z-index: -1;
}

.recruit-button-flex .recruit-button:hover .recruit-button-arrow {
  background-color: #0071BD;
}

.recruit-button-flex .recruit-button:hover .recruit-button-arrow img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(239deg) brightness(110%) contrast(101%);
}

@media (max-width: 768px) {
  .recruit-button-flex .recruit-button {
    font-size: 1.6rem;
  }
}

.col2-bosyu {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.col2-bosyu .in-col {
  width: calc((100% - 4rem) / 2);
  font-size: 1.9rem;
}

@media (max-width: 768px) {
  .col2-bosyu .in-col {
    width: 100%;
    font-size: 1.4rem;
  }
}

.col2-bosyu .in-col p {
  letter-spacing: normal !important;
  margin-bottom: 1.9em;
}

.tbl-bosyu {
  border-collapse: collapse;
  width: 100%;
  border-bottom: solid 1px #BFBFBF;
}

.tbl-bosyu th,
.tbl-bosyu td {
  border-top: solid 1px #BFBFBF;
  padding: 1rem;
  vertical-align: top;
}

@media (max-width: 768px) {

  .tbl-bosyu th,
  .tbl-bosyu td {
    display: block;
  }
}

.tbl-bosyu th p,
.tbl-bosyu td p {
  margin-bottom: 0 !important;
}

.tbl-bosyu th {
  width: 13rem;
  text-align: left;
  font-weight: normal;
}

@media (max-width: 768px) {
  .tbl-bosyu th {
    width: 100%;
    font-weight: bold;
  }
}

.tbl-bosyu td {
  width: calc(100% - 13rem);
}

@media (max-width: 768px) {
  .tbl-bosyu td {
    width: 100%;
    border-top: none;
    padding-top: 0;
  }
}

p.form-guide {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  p.form-guide {
    font-size: 1.4rem;
  }
}

.tab-group {
  display: flex;
  list-style: none;
  flex-flow: row nowrap;
  padding-left: 1px;
  overflow-y: hidden !important;
}

@media only screen and (min-width: 1525px) {
  .tab-group {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .tab-group {
    padding-left: 5px;
  }
}

.tab-group .tab {
  flex-shrink: 0;
  width: 26rem;
  min-width: 260px;
  background: #F2F2F2;
  padding: 1.7rem;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  border-left: 3px solid #fff;
  color: #000;
  list-style: none;
  text-align: center;
  cursor: pointer;
  position: relative;
  top: 1px;
  z-index: 0;
}

@media (max-width: 768px) {
  .tab-group .tab {
    width: 15rem;
    min-width: auto;
    padding: 1rem;
  }
}

.tab-group .tab+.tab {
  margin-left: -3px;
}

.tab-group .tab.is-active {
  background: #E5F7FD;
  border-top: 3px solid #D9D9D9;
  border-right: 3px solid #D9D9D9;
  border-left: 3px solid #D9D9D9;
  border-bottom: 3px solid #E5F7FD;
  z-index: 1;
}

.tab-group .tab img {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin-bottom: 1.5rem;
}

.tab-group .tab .caption-01 {
  display: block;
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .tab-group .tab .caption-01 {
    font-size: 1.6rem;
  }
}

.tab-group .tab .caption-02 {
  display: block;
  line-height: 1.9;
}

.panel-group {
  min-height: 63rem;
  background-color: #E5F7FD;
  border-top: 3px solid #D9D9D9;
  padding: 8rem 4rem;
  position: relative;
  top: -3px;
  z-index: 0;
}

@media (max-width: 768px) {
  .panel-group {
    padding: 4rem 2rem;
  }
}

.panel-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  aspect-ratio: 1/1;
  width: 38.4146341463%;
  background-image: linear-gradient(40deg, #ffffff, transparent 50% 100%);
}

.panel-group .panel {
  display: none;
}

.panel-group .panel.is-show {
  display: block;
}

.panel-group .panel.is-show .col2-senior {
  width: 100%;
  margin: 0;
  padding: 0;
}

.panel-group .panel.is-show .col2-senior dt,
.panel-group .panel.is-show .col2-senior dd {
  margin: 0;
  padding: 0;
}

.panel-group .panel.is-show .col2-senior {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  gap: 4rem;
  margin-bottom: 4rem;
}

.panel-group .panel.is-show .col2-senior dt {
  width: 48rem;
}

@media (max-width: 768px) {
  .panel-group .panel.is-show .col2-senior dt {
    width: 100%;
    text-align: center;
  }
}

.panel-group .panel.is-show .col2-senior dt img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.panel-group .panel.is-show .col2-senior dd {
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 769px) {
  .panel-group .panel.is-show .col2-senior dd {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .panel-group .panel.is-show .col2-senior dd {
    flex: auto;
    width: 100%;
  }
}

.panel-group .panel.is-show .col2-senior dd p {
  font-size: 1.9rem;
  margin-bottom: 1.7em;
}

@media (max-width: 768px) {
  .panel-group .panel.is-show .col2-senior dd p {
    font-size: 1.4rem;
  }
}

.panel-group .panel.is-show .col2-senior dd .senior-contents {
  padding-left: 3rem;
}

@media (max-width: 768px) {
  .panel-group .panel.is-show .col2-senior dd .senior-contents {
    padding-left: 1rem;
  }
}

.panel-group .panel.is-show .col2-senior dd .senior-contents:nth-last-of-type(1) p {
  margin-bottom: 0;
}

.panel-group .panel.is-show .col2-senior-02 {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.panel-group .panel.is-show .col2-senior-02 .col2-senior-02-img {
  width: 62rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (max-width: 768px) {
  .panel-group .panel.is-show .col2-senior-02 .col2-senior-02-img {
    width: 100%;
    align-items: center;
  }
}

@media (min-width: 769px) {
  .panel-group .panel.is-show .col2-senior-02 .col2-senior-02-txt {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .panel-group .panel.is-show .col2-senior-02 .col2-senior-02-txt {
    width: 100%;
  }
}

.panel-group .panel.is-show .col2-senior-02 .col2-senior-02-title {
  color: #0071BD;
  font-size: 2.134rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .panel-group .panel.is-show .col2-senior-02 .col2-senior-02-title {
    font-size: 1.6rem;
  }
}

.parm-box {
  width: 100%;
  min-height: 4rem;
  background: rgba(0, 113, 189, 0.8);
  padding: 0.5rem 3rem;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  transform: skew(-20deg);
}

@media (max-width: 768px) {
  .parm-box {
    padding-right: 1rem;
    padding-left: 1.5rem;
  }
}

.parm-box-txt {
  color: white;
  font-size: 2.134rem;
  font-weight: bold;
  transform: skew(20deg);
}

@media (max-width: 768px) {
  .parm-box-txt {
    font-size: 1.6rem;
  }
}

.tbl-senior-flow {
  border-collapse: collapse;
  width: 100%;
}

.tbl-senior-flow p {
  line-height: normal;
  margin-bottom: 0;
}

.tbl-senior-flow td {
  padding: 1rem 0.5rem;
  background-color: #fff;
  border-top: solid 1px #BFBFBF;
  vertical-align: top;
  font-size: 1.9rem;
}

@media (max-width: 768px) {
  .tbl-senior-flow td {
    font-size: 1.4rem;
  }
}

.tbl-senior-flow td:nth-of-type(1) {
  width: 10rem;
  text-align: center;
}

@media (max-width: 768px) {
  .tbl-senior-flow td:nth-of-type(1) {
    width: 7rem;
  }
}

.tbl-senior-flow td:nth-of-type(2) {
  width: 14rem;
  background-color: #CEEAF6;
  text-align: center;
}

@media (max-width: 768px) {
  .tbl-senior-flow td:nth-of-type(2) {
    width: 10rem;
  }
}

@media (min-width: 769px) {
  .tbl-senior-flow td:nth-of-type(3) {
    width: calc(100% - 24rem);
  }
}

@media (max-width: 768px) {
  .tbl-senior-flow td:nth-of-type(3) {
    width: calc(100% - 17rem);
  }
}

.tbl-senior-flow tr:first-child td {
  border-top: none;
}

.scroll-hint-icon {
  z-index: 1;
}

.tab-recruit {
  display: flex;
  list-style: none;
  overflow-y: hidden !important;
}

@media (min-width: 769px) {
  .tab-recruit {
    justify-content: center;
  }
}

.tab-recruit .r-tab {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26rem;
  max-width: 260px;
  background: #F2F2F2;
  padding: 2.1rem 1rem;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  border-left: 3px solid #fff;
  color: #000;
  text-align: center;
  font-size: 2.134rem;
  cursor: pointer;
  position: relative;
  z-index: 0;
}

.tab-recruit .r-tab+.r-tab {
  margin-left: -3px;
}

@media (max-width: 768px) {
  .tab-recruit .r-tab {
    width: 150px;
    padding: 1.5rem 1rem;
    font-size: 1.4rem;
  }
}

.tab-recruit .r-tab.is-active-r {
  background: #fff;
  border-top: 3px solid #7F7F7F;
  border-right: 3px solid #7F7F7F;
  border-left: 3px solid #7F7F7F;
  border-bottom: 3px solid #FFFFFF;
  z-index: 1;
}

.tab-recruit .scroll-hint-icon {
  top: 10px;
}

.panel-group-recruit {
  border-top: 3px solid #7F7F7F;
  border-bottom: 3px solid #7F7F7F;
  padding-top: 4.5em;
  padding-bottom: 9rem;
  position: relative;
  top: -3px;
  z-index: 0;
}

@media (max-width: 768px) {
  .panel-group-recruit {
    padding-top: 4rem;
  }
}

.panel-group-recruit .r-panel {
  display: none;
}

.panel-group-recruit .r-panel.is-show-r {
  display: block;
}

@media (min-width: 769px) {
  .panel-group-recruit .r-panel .h4-sub {
    margin-bottom: 1rem;
  }
}

.panel-group-recruit .r-panel p {
  line-height: 1.7;
}

.scroll-hint-icon {
  z-index: 1;
}

.contact-box {
  width: 74.3902439024%;
  max-width: 1220px;
}

@media (max-width: 768px) {
  .contact-box {
    width: 100%;
  }
}

.clr-org {
  color: #ED7D31;
}

p.txt-contact {
  font-size: 1.9rem;
  margin-bottom: 4.5rem;
}

@media (max-width: 768px) {
  p.txt-contact {
    font-size: 14px;
    margin-bottom: 4rem;
  }
}

.tbl-contact {
  border-collapse: collapse;
  width: 100%;
  width: 100%;
  border-bottom: solid 1px #BFBFBF;
  font-size: 1.9rem;
}

@media (max-width: 768px) {
  .tbl-contact {
    font-size: 14px;
  }
}

.tbl-contact th,
.tbl-contact td {
  padding: 1.4rem 1rem;
  border-top: solid 1px #BFBFBF;
}

.tbl-contact th p,
.tbl-contact td p {
  margin-bottom: 0;
}

.tbl-contact th {
  width: 33.606557377%;
  font-weight: normal;
}

@media (min-width: 769px) {
  .tbl-contact th {
    padding-left: 8.1967213115%;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .tbl-contact th {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: bold;
  }
}

@media (max-width: 768px) {
  .tbl-contact td {
    border-top: none;
    padding-top: 0;
    text-align: center;
  }
}

.tbl-contact td:nth-of-type(1) {
  width: 45.9016393443%;
}

@media (max-width: 768px) {
  .tbl-contact td:nth-of-type(1) {
    display: block;
    width: 100%;
  }
}

@media (min-width: 769px) {
  .tbl-contact td:nth-of-type(1) .txt-address {
    padding-left: 1em;
  }
}

@media (max-width: 768px) {
  .tbl-contact td:nth-of-type(1) .txt-address {
    display: block;
  }
}

.tbl-contact td:nth-of-type(2) {
  width: 20.4918032787%;
  font-size: 2.134rem;
  font-family: "Noto Serif JP", serif;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .tbl-contact td:nth-of-type(2) {
    display: block;
    width: 100%;
    font-size: 14px;
  }
}

.tbl-contact a {
  text-decoration: none;
}

div.wpcf7 form dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

div.wpcf7 form dl dt,
div.wpcf7 form dl dd {
  margin: 0;
  padding: 0;
}

div.wpcf7 form dl {
  width: 100%;
  padding: 0.8rem 0;
  font-size: 1.9rem;
  line-height: 1;
}

@media (max-width: 768px) {
  div.wpcf7 form dl {
    padding: 1rem 0;
    font-size: 1.4rem;
  }
}

div.wpcf7 form dl.first {
  padding: 3rem 0;
}

@media (max-width: 768px) {
  div.wpcf7 form dl.first {
    padding: 1rem 0;
  }
}

div.wpcf7 form dl.v-top {
  align-items: flex-start;
}

div.wpcf7 form dl.v-top dt {
  padding-top: 0.8rem;
}

@media (max-width: 768px) {
  div.wpcf7 form dl dt {
    font-weight: bold;
  }
}

div.wpcf7 form dl dd input {
  width: 100%;
  background: none;
  border: solid 1px #D9D9D9;
  padding: 0.4rem;
  font-size: 1.9rem;
  margin-top: 2px;
  margin-bottom: 2px;
}

@media (max-width: 768px) {
  div.wpcf7 form dl dd input {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.6rem;
  }
}

div.wpcf7 form dl dd input[type=file] {
  border: none;
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  div.wpcf7 form dl dd input[type=file]::file-selector-button {
    padding: 0.5rem 1rem;
  }
}

div.wpcf7 form dl dd input.wsiz-s {
  width: 6rem;
}

div.wpcf7 form dl dd input.wsiz-m {
  width: 12rem;
}

div.wpcf7 form dl dd input.spc-mt {
  margin-top: 5px;
}

div.wpcf7 form dl dd input.fbox-age {
  margin-left: 15%;
}

@media (max-width: 768px) {
  div.wpcf7 form dl dd input.fbox-age {
    margin-top: 5px;
    margin-left: 0;
  }
}

div.wpcf7 form dl dd textarea {
  width: 100%;
  background: none;
  border: solid 1px #D9D9D9;
  padding: 0.4rem;
  font-size: 1.9rem;
  margin-top: 2px;
  margin-bottom: 2px;
  height: 23rem;
}

div.wpcf7 form dl dd .wpcf7-list-item {
  margin: 0 4.5rem 0 0;
}

div.wpcf7 form dl dd .wpcf7-list-item input {
  width: auto;
  margin: 0 0.5rem 0 0;
}

div.wpcf7 form dl dd .list-colm {
  display: flex;
  flex-direction: column;
  line-height: var(--lh-table);
}

div.wpcf7 form dl dd .list-colm .wpcf7-list-item {
  display: block;
}

div.wpcf7 form dl dd .list-row {
  min-height: 3.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2px;
  margin-bottom: 2px;
}

@media (max-width: 768px) {
  div.wpcf7 form dl dd .list-row {
    min-height: auto;
    flex-direction: column;
    align-items: baseline;
    line-height: 1.5;
  }
}

div.wpcf7 form dl p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .wpcf7 .ajax-loader {
    display: block;
    margin: 0 auto;
  }

  .wpcf7-spinner {
    display: block;
    margin: 0 auto;
  }
}

.wpcf7 .wpcf7-submit:disabled {
  border: solid 1px #a8a8a8;
  color: #a8a8a8 !important;
}

.txt_req::after {
  content: "(必須)";
  display: inline-block;
  margin-left: 5px;
  color: #ED7D31;
}

p.txt-att {
  margin-top: 0.8rem;
  margin-bottom: 0;
  color: #C00000;
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  p.txt-att {
    font-size: 1.4rem;
  }
}

.txt-ex {
  font-size: 1.467rem;
}

@media (max-width: 768px) {
  .txt-ex {
    display: block;
    margin-top: 5px;
  }
}

.form-wrap.app {
  width: 71%;
  max-width: 1160px;
  margin: 0 auto;
  margin-top: 2em;
}

@media (max-width: 768px) {
  .form-wrap.app {
    width: 100%;
    max-width: none;
  }
}

.form-wrap.app form dl {
  border-bottom: solid 1px #BFBFBF;
  font-size: 1.734rem;
}

@media (max-width: 768px) {
  .form-wrap.app form dl {
    font-size: 1.4rem;
  }
}

.form-wrap.app form dl:nth-of-type(1) {
  border-top: solid 1px #BFBFBF;
}

.form-wrap.app form dl p {
  line-height: normal;
  letter-spacing: normal;
}

.form-wrap.app form dl dt {
  width: 41rem;
  padding-right: 1rem;
  padding-left: 4rem;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .form-wrap.app form dl dt {
    width: 100%;
    padding-bottom: 1rem;
    padding-left: 1rem;
  }
}

.form-wrap.app form dl dd {
  padding-left: 1rem;
}

@media (min-width: 769px) {
  .form-wrap.app form dl dd {
    flex: 1;
    padding-right: 10rem;
  }
}

@media (max-width: 768px) {
  .form-wrap.app form dl dd {
    width: 100%;
    padding-right: 1rem;
  }
}

.form-wrap.app form dl dd textarea {
  height: 9rem;
}

.form-wrap.app .txt_req::after {
  color: #f00;
}

.form-wrap.ctct {
  width: 100%;
  border-top: solid 1px #BFBFBF;
  border-bottom: solid 1px #BFBFBF;
}

@media (max-width: 768px) {
  .form-wrap.ctct {
    width: 100%;
  }
}

.form-wrap.ctct div.wpcf7 form dl dt {
  width: 33.606557377%;
  padding-right: 1rem;
  padding-left: 8.1967213115%;
}

@media (max-width: 768px) {
  .form-wrap.ctct div.wpcf7 form dl dt {
    width: 100%;
    padding-left: 1rem;
  }
}

.form-wrap.ctct div.wpcf7 form dl dd {
  width: 66.393442623%;
  padding-right: 16.393442623%;
  padding-left: 1rem;
}

@media (max-width: 768px) {
  .form-wrap.ctct div.wpcf7 form dl dd {
    width: 100%;
    padding: 1rem;
  }
}

.form-wrap.ctct div.wpcf7 form ::-moz-placeholder {
  color: #A6A6A6;
  font-size: 1.9rem;
}

.form-wrap.ctct div.wpcf7 form ::placeholder {
  color: #A6A6A6;
  font-size: 1.9rem;
}

@media (max-width: 768px) {
  .form-wrap.ctct div.wpcf7 form ::-moz-placeholder {
    font-size: 1.6rem;
  }

  .form-wrap.ctct div.wpcf7 form ::placeholder {
    font-size: 1.6rem;
  }
}

.acc-wrap {
  border-top: solid 1px #BFBFBF;
  padding-top: 4rem;
  padding-bottom: 2rem;
  margin-top: 4rem;
  text-align: center;
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  .acc-wrap {
    font-size: 1.4rem;
  }
}

.acc-wrap p {
  margin-bottom: 0;
}

.acc-wrap p.acc-txt {
  margin-bottom: 4rem;
}

.acc-wrap p.acc-check {
  font-size: 1.9rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .acc-wrap p.acc-check {
    font-size: 1.4rem;
  }
}

.surr {
  width: 100%;
  margin: 0 auto 3.5em;
  text-align: center;
}

.surr p {
  letter-spacing: normal;
}

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

.surr .surr-box {
  border-bottom: solid 1px #BFBFBF;
  padding: 3rem 1rem 4.5rem;
  font-size: 1.467rem;
}

@media (max-width: 768px) {
  .surr .surr-box {
    padding: 2rem 1rem;
    font-size: 1.4rem;
  }
}

.surr .surr-box p {
  line-height: unset;
}

.surr .surr-box p.please-check {
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, "MS PGothic", Osaka, "Hiragino Sans", sans-serif;
}

.surr .surr-box p.surr-tit {
  margin-bottom: 0.8em;
  font-size: 2.134rem;
  line-height: unset;
}

@media (max-width: 768px) {
  .surr .surr-box p.surr-tit {
    font-size: 1.6rem;
  }
}

.surr .surr-box ul {
  list-style: none;
  margin-top: 2.5em;
  margin-bottom: 2.2em;
  text-align: left;
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, "MS PGothic", Osaka, "Hiragino Sans", sans-serif;
}

.surr .surr-box ul>li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.surr .surr-box ul>li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.surr .surr-box ul>li p {
  margin-bottom: 0;
  letter-spacing: normal;
}

.surr .surr-box .surr-contact {
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  .surr .surr-box .surr-contact {
    font-size: 1.4rem;
  }
}

.surr .surr-box .surr-contact p {
  margin-bottom: 2em;
}

.surr .surr-box.und {
  padding: 2.5rem 1rem;
}

.surr .surr-box.und p {
  margin-bottom: 1.5em;
  letter-spacing: normal;
}

.surr .surr-box .tit,
.surr .surr-box .txt-b {
  font-weight: bold;
  font-size: 1.6rem;
}

@media (max-width: 768px) {

  .surr .surr-box .tit,
  .surr .surr-box .txt-b {
    font-size: 1.4rem;
  }
}

.surr .surr-box .tit p,
.surr .surr-box .txt-b p {
  margin-bottom: 0;
}

input[type=submit] {
  -webkit-appearance: none;
  display: block;
  width: auto;
  margin: auto;
  padding: 3px 10px;
  background: #EFEFEF;
  border: solid 1px #787878;
  color: #000 !important;
  border-radius: 2px;
}

@media (max-width: 768px) {
  input[type=submit] {
    padding: 7px 20px;
    font-size: 16px;
  }
}

input[type=submit]:hover {
  background: #E5E5E5;
}

#footer {
  width: 100%;
  padding-top: 5.5rem;
  background: url("img/footer-bg.webp") no-repeat center top;
  background-size: cover;
  position: relative;
}

@media (min-width: 769px) {
  #footer {
    aspect-ratio: 192/80;
  }
}

@media (max-width: 768px) {
  #footer {
    padding-top: 2rem;
  }
}

.footer-inner {
  /*width: 33.5958005249%;*/
  /*max-width: 640px;*/
  width: 95%;
  max-width: 1640px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-inner {
    width: 100%;
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-bottom: 4rem;
  }
}

.footer-logo-box a {
  text-decoration: none;
  width: 28.04878048780488%;
  display: block;
  margin: 0 auto;
}

.footer-logo-box {
  /*width: 71.875%;*/
  /*max-width: 460px;*/
  text-align: center;
  margin: 0 auto 2.5rem;
}

.footer-logo-box .footer-chatchcopy {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: var(--ls-base);
  margin-bottom: 1rem;
  padding-left: 1.5%;
}

.tbl-footer-address {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 2rem;
  font-size: clamp(1.2rem, 1.151rem + 0.21vw, 1.4rem);
  display: flex;
  justify-content: center;
}

.tbl-footer-address th,
.tbl-footer-address td {
  padding-bottom: 0.6rem;
}

@media (max-width: 768px) {

  .tbl-footer-address th,
  .tbl-footer-address td {
    width: 100%;
    display: block;
    text-align: center;
  }

  .footer-logo-box a {
    width: 90%;
  }

  .footer-logo-box .footer-chatchcopy {
    padding-left: 5%;
  }
}

@media (min-width: 769px) {
  .tbl-footer-address th {
    /*width: 25%;*/
    text-align: left;
    font-weight: normal;
    white-space: nowrap;
  }
}

.tbl-footer-address td {
  padding-left: 1.5rem;
}

@media (min-width: 769px) {
  .tbl-footer-address td:nth-of-type(1) {
    /*width: 53.125%;*/
    letter-spacing: 0.05rem;
    white-space: nowrap;
    text-align: left;
  }
}

.tbl-footer-address td:nth-of-type(2) {
  white-space: nowrap;
  text-align: left;
}

@media (max-width: 768px) {
  .tbl-footer-address td:nth-of-type(2) {
    margin-bottom: 1rem;
    text-align: center;
  }

  .tbl-footer-address td {
    padding-left: 0;
  }
}

.footer-ban-icon {
  width: 77.9032258065%;
  max-width: 483px;
  margin: 0 auto;
  display: flex;
  list-style: none;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 768px) {
  .footer-ban-icon {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.footer-banner-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 3rem 0 1rem;
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .footer-banner-bg {
    position: static;
    font-size: 12px;
  }
}

.footer-banner {
  width: 61.9422572178%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  list-style: none;
  gap: 1.7rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .footer-banner {
    width: 80%;
    padding-right: 20px;
    padding-left: 20px;
    flex-direction: column;
  }

  .footer-banner li {
    text-align: center;
  }
}

.footer-banner a {
  display: inline-block;
  background: #fff;
}

.footer-banner a:hover {
  opacity: 1;
}

.copyright {
  padding: 1rem 2rem 0.5rem;
  text-align: center;
  color: #fff;
}

.s2v {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

@media (max-width: 768px) {
  .s2v {
    bottom: 0;
    right: 0;
  }
}

.s2v img {
  width: 50px;
  height: 50px;
}

.pageNum {
  text-align: center;
  font-size: 16px;
}

@media (max-width: 768px) {
  .pageNum {
    font-size: 14px;
  }
}

.pageNum a {
  text-decoration: none;
}

.pageNum a.numb2 {
  padding: 0 2em;
}

.pagination {
  width: 100%;
  overflow: hidden;
  text-align: center;
  clear: both;
  background-color: transparent;
  padding-top: 4em;
}

.pagination a {
  padding: 5px 10px;
  display: inline-block;
  border: solid 1px #cccccc;
  color: #000000;
  background-color: #ffffff;
  font-size: 15px;
  text-decoration: none;
}

.pagination a:hover {
  background-color: #e8e8e8;
}

.pagination span {
  padding: 5px 10px;
  display: inline-block;
}

.pagination span.current {
  padding: 5px 10px;
  display: inline-block;
  border: solid 1px #cccccc;
  color: #000000;
  background-color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  font-weight: bold;
}

/*募集要項円揃え*/
.salary-row {
  display: flex;
  justify-content: flex-start;
}

.salary-row span:first-of-type {
  width: 15%;
  margin-right: 2rem;
}

.salary-row span:last-of-type {
  text-align: right;
  width: 36%;
}

@media (max-width: 1279px) {
  .salary-row {
    width: 85%;
  }
  .salary-row span:first-of-type {
    width: 40%;
  }

  .salary-row span:last-of-type {
    width: 60%;
  }
}

.recruit-button-flex.newgraduate-box {
    justify-content: center;
}