@charset "utf-8";

body {
  font-family: 'M PLUS 2c', sans-serif;
  /* font-weight: 900; */
  letter-spacing: 2px;
  margin: 0;
  padding: 0;
  overflow-y: auto;
}

svg {
  width: 100%;
  height: 100%;
  margin: auto;
}

text {
  fill: black;
  font-weight: 900;
}

.logo {
  margin: 30px auto 0 50px;
}

.copy {
  text-align: center;
  width: 90%;
  height: 60%;
}

#mv_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title {
  font-size: 180px;
}

.subTitle {
  font-size: 80px;
}

#mv_wrapper .top_company {
  font-size: 220px;
}

.suffix {
  font-size: 60px;
}

.mian {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .mian {
    width: 90%;
    max-width: unset;
  }
}

/* ====================
ヘッター
==================== */
header.top {
  position: fixed;
  width: 100%;
  height: 60px;
  z-index: 999999;
}

.hamburger-menu {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  position: fixed;
  top: 20px;
  right: 50px;
}

.hamburger-icon {
  width: 40px;
  height: 3px;
  background-color: #333;
  transition: background-color 0.3s, transform 0.3s;
}

.hamburger-menu.active .hamburger-icon:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  z-index: 999;
}

.hamburger-menu.active .hamburger-icon:nth-child(2) {
  background-color: transparent;
  z-index: 999;
}

.hamburger-menu.active .hamburger-icon:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  z-index: 999;
}

/* モバイルメニュー */
.mobile-head {
  background-color: #d3cab6;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 10px;
  position: relative;
}

.mobile-logo {
  height: 50px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #eae8e3;
  /* overflow: hidden; */
  overflow-y: auto;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}


.mobile-menu.open:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  z-index: 9;
}

.mobile-menu.open {
  width: 60%;
}

.mobile-menu.open:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: .6;
  transition: .4s ease-in-out;
  z-index: 9;
}

.mobile-menu ul {
  list-style: none;
  padding: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.mobile-menu ul li {
  margin: 10px 0;
  display: flex;
  align-items: flex-start;
}

.main_menu-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.mobile-menu ul li a {
  text-decoration: none;
  font-size: 18px;
  color: #333;
}

.mobile-menu ul.mobile-list a {
  font-size: 2.8rem;
  padding-right: 20px;
  font-weight: 900;
}

.main_menu .menu_text {
  padding-bottom: 40px;
}

.mobile-menu ul.mobile-list a span {
  font-size: 1.2rem;
  font-weight: 300;
  padding-left: 20px;
}

.mobile-menu .submenu {
  padding-left: 10px;
  padding-top: 0;
  border-left: 1px solid #26262f;
  width: 60%;
}

.submenu a::before {
  content: '・';
  padding-right: 5px;
  color: #26262f;
}

.mobile-menu .submenu a {
  font-size: 1.6rem !important;
}

.main_menu-box .main_menu-ttl {
  width: 80%;
}

.close-menu {
  position: absolute;
  top: 0;
  right: 50px;
  font-size: 60px;
  cursor: pointer;
  background: none;
  border: none;
  color: #26262f;
}

body.mobile-menu-open {
  overflow: hidden;
}

.mobile-menu ul.mobile-list a span {
  font-size: 1.2rem;
  font-weight: 300;
  padding-left: 20px;
}

ul.submenu.sns-hd {
  display: flex;
  border-left: none;
}

.submenu .sns-icon a::before {
  content: "";
}

@media screen and (max-width: 1400px) {
  .mobile-menu .submenu {
    padding-right: 0;
    width: 50%;
  }

  .mobile-menu .submenu a {
    font-size: 1.4rem !important;
  }
}

@media screen and (max-width: 1246px) {
  .mobile-menu ul.mobile-list a {
    font-size: 2.4rem;
    padding-right: 0;
    width: 100%;
  }

  .mobile-menu .submenu a {
    font-size: 1.2rem !important;
  }
}

@media screen and (max-width: 900px) {
  .mobile-menu.open {
    width: 80%;
  }

  .mobile-menu.open:before {
    width: 20%;
  }

  ul.submenu.sns-hd {
    gap: 20px;
  }
}

@media screen and (max-width: 785px) {
  .mobile-menu.open {
    width: 90%;
  }

  .mobile-menu.open:before {
    width: 10%;
  }

  .mobile-menu .submenu {
    width: 60%;
  }
}

@media screen and (max-width: 650px) {
  .mobile-menu.open {
    width: 100%;
  }

  .mobile-menu.open:before {
    width: 0;
  }
}

@media screen and (max-width: 600px) {
  .hamburger-menu {
    right: 20px;
  }
}

@media screen and (max-width: 550px) {
  .main_menu-box {
    flex-direction: column;
  }

  .mobile-menu .submenu {
    margin-top: 20px;
    width: 90%;
  }

  .close-menu {
    font-size: 50px;
  }
}

/* ====================
TOP_メインテキスト
======================= */

#mv {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  padding: 0;
  padding-top: 120px;
  background-image: linear-gradient(-29deg, #A4A5A566 0%, #C3BA9E33 83%, #C9BE9D00 100%);
  position: relative;
  z-index: 0;
}

#mv_wrapper {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

svg {
  width: 100%;
  height: auto;
  display: block;
}

.title {
  font-size: 180px;
}

.subTitle {
  font-size: 80px;
}

.top_company {
  font-size: 220px;
}

.suffix {
  font-size: 60px;
}

.main_txt {
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 3.0rem;
  font-size: 1.5rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.0);
  z-index: 2;
  text-align: left;
}

.main_txt span {
  font-size: 1.6em;
  font-weight: 900;
}

.mv_img {
  flex: 0 0 auto;
  width: 100%;
  margin-top: auto;
}

.mv_img img {
  display: block;
  width: 70%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  margin-bottom: -83px;
}

@media screen and (max-width: 1500px) {
  .mv_img img {
    margin-bottom: -63px;
  }
}

@media screen and (max-width: 1280px) {
  .mv_img img {
    display: block;
    width: 90%;
  }
}

@media screen and (max-width: 1100px) {
  .mv_img img {
    margin-bottom: -53px;
  }
}

@media screen and (max-width: 900px) {

  /* .title {
    font-size: 90px;
  } */
  #mv {
    min-height: auto;
  }

  .subTitle {
    font-size: 60px;
  }

  .top_company {
    font-size: 110px;
  }

  .suffix {
    font-size: 60px;
  }

  .main_txt {
    font-size: 1.1rem;
    line-height: 2.0rem;
    text-align: left;
  }

  .mv_img {
    width: 95%;
  }

  .mv_img img {
    width: 90%;
  }
}

@media screen and (max-width: 850px) {
  .main_txt {
    padding: 0 30px;
  }
}

@media screen and (max-width: 600px) {
  .mv_img img {
    margin-bottom: -35px;
  }

  .logo {
    margin: 20px auto 0 20px;
  }

  .logo img {
    width: 180px;
  }

  .title {
    font-size: 220px;
  }

  .target-text {
    transform: translateX(-100px);
    transform-origin: left center;
    transition: transform 0.3s ease;
  }

  .subTitle {
    transform: translateX(100px);
    transform-origin: left center;
    transition: transform 0.3s ease;
  }

  .suffix {
    /* transform: translateX(-100px); */
    transform-origin: left center;
    transition: transform 0.3s ease;
  }
}

@media screen and (max-width: 500px) {

  .main_txt span {
    font-size: 1.4rem;
  }
}

/* お知らせ */

#news {
  margin: 20px auto;
  margin-top: 100px;
  text-align: center;
}

.news_list-ttl,
.top_technical-ttl,
.top_company-ttl,
.top_recruit-ttl {
  text-align: left;
}

.news_list-ttl h2,
.top_technical-ttl h2,
.top_company-ttl h2,
.top_recruit-ttl h2 {
  font-weight: 900;
  line-height: 2.6rem;
  font-size: 1.6rem;
}

.news_list-ttl p,
.top_technical-ttl p,
.top_company-ttl p,
.top_recruit-ttl p {
  color: #d53c3c;
  font-size: .9rem;
}


.news_box {
  display: flex;
  flex-direction: column;
  border: 1px solid #333;
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
}

.news_list {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.news_list-box {
  padding: 20px 0;
  width: 70%;
}

.news_list-box li {
  list-style: none;
  text-align: left;
}

.news_list-box .news {
  display: flex;
  gap: 20px;
  line-height: 1.6rem;
  padding: 10px;
  border-left: 1px solid #333;
  margin-top: 10px;
  font-weight: 700;
}

.news_btn {
  padding: 10px;
  background-color: #333;
  color: #fff;
  font-weight: 600;
}

.news_day {
  font-size: .85rem;
  color: #acb5ba;
  font-weight: 500;
}

/* 西軽精機の技術力 */
#top_technical {
  position: relative;
  width: 80%;
  max-width: 960px;
  text-align: center;
  margin: 200px auto 0;
  padding: 70px 60px;
  border: 1px solid #333;
}

.top_technical-box,
.top_recruit-box {
  text-align: left;
  padding-top: 40px;
  font-weight: 500;
}

.top_technical-box h3,
.top_recruit-box h3 {
  padding: 1.6rem 0;
  font-weight: 900;
  font-size: 2.0rem;
}

.top_technical-box h3 {
  line-height: 4.2rem;
}

.top_recruit-box h3 {
  line-height: 3.6rem;
}

.top_technical-box h3 span.wrap,
.top_recruit-box h3 span.wrap,
.company_subttl h3 span.wrap,
.technology_subttl h3 span.wrap,
.technology_special-btn2 span .wrap,
.recruit_subttl h3 span.wrap .top_technical-box span.wrap {
  display: block;
}

.red-border {
  border-bottom: 3px solid #d53c3c;
  line-height: 2.0rem;
}

.red {
  color: #d53c3c;
}

.bold {
  font-weight: 900;
}

.subttlb {
  font-size: 3.2rem;
}

.top_technical-box .red,
.top_recruit-box .red {
  font-size: 2.0rem;
  font-weight: 700;
}

.top_technical-box span.red-box,
.red-box {
  padding: 5px 10px;
  background-color: #d53c3c;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 700;
  border: 2px solid #333;
  margin: 0 8px;
}

.top_technical-txtbox {
  display: flex;
  gap: 60px;
  justify-content: space-between;
}

.top_technical-txt {
  line-height: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.top_technical-txtbox {
  display: flex;
  gap: 60px;
  justify-content: space-between;
}

#top_technical::before {
  position: absolute;
  content: "";
  top: -100px;
  left: -80px;
  background-image: url(../img/top/rokkaku-san_shadow.png);
  background-size: contain;
  width: 200px;
  height: 180px;
  background-repeat: no-repeat;
}

#top_technical::after {
  position: absolute;
  content: "";
  bottom: -60px;
  right: -40px;
  background-image: url(../img/top/usachitan_shadow.png);
  background-size: contain;
  width: 200px;
  height: 220px;
  background-repeat: no-repeat;
}

.top_technical-img img,
.top_recruit-img img {
  width: 400px;
  height: 300px;
  object-fit: contain;
}

@media screen and (max-width: 485px) {

  .top_technical-box span.red-box,
  .red-box {
    font-size: clamp(2.0rem, 3vw, 2.6rem);
  }

  .top_technical-box h3 {
    line-height: 3.6rem;
  }

  .top_technical-box h3 {
    font-size: 1.6rem;
  }
}

/* 会社について */
#top_company {
  background-color: #a5a4a440;
  margin-top: 80px;
  border-top: 3px solid #333;
  border-bottom: 3px solid #333;
}

.top_company {
  width: 80%;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  padding: 60px;
  font-size: 1.0rem;
}

.top_company-txt {
  padding: 30px;
  font-weight: 500;
  text-align: left;
  line-height: 1.6rem;
}

.top_company-btn_o {
  width: 250px;
  margin: 0 auto;
  height: 65px;
}

.top_company-btn {
  text-align: center;
  display: flex;
  align-items: center;
  padding: 20px;
  color: #fff;
  background-color: #333;
  position: relative;
  justify-content: center;
  width: 100%;
  height: auto;
}

.top_company-btn::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  transform: translateY(-40%);
  background-image: url(../img/traiangle_red.png);
  background-size: contain;
  width: 20px;
  height: 22px;
  background-repeat: no-repeat;
}

@media screen and (max-width: 600px) {
  .top_company {
    width: auto;
    max-width: none;
    text-align: center;
    margin: auto;
    padding: 30px;
    font-size: 1.0rem;
  }
}

/* 採用 */
#top_recruit {
  position: relative;
  width: 80%;
  max-width: 960px;
  text-align: center;
  margin: 120px auto;
  padding: 60px;
  border: 1px solid #333;
}

#top_recruit::before {
  position: absolute;
  content: "";
  top: -220px;
  right: -100px;
  background-image: url(../img/top/tajou-kun_shadow.png);
  width: 153px;
  height: 400px;
  background-size: contain;
  background-repeat: no-repeat;
}

.top_recruit-ttl {
  border-bottom: 3px solid #333;
  width: 196px;
}

.top_recruit-ttl p {
  padding-bottom: 4px;
}

.top_recruit-box h3 span.wrap {
  padding-bottom: 16px;
}

.top_recruit-txtbox {
  display: flex;
  gap: 60px;
}

.top_recruit-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.6rem;
}

.top_recruit-txtlist {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (max-width: 1400px) {
  .footer_contact::before {
    left: -180px;
  }
}

@media screen and (max-width: 1280px) {
  #top_technical::before {
    left: -60px;
  }

  #top_recruit::before {
    right: -60px;
  }
}

@media screen and (max-width: 1210px) {
  #top_recruit::before {
    right: -40px;
  }

  .footer_contact::before {
    left: -100px;
  }
}

@media screen and (max-width: 1100px) {
  #top_technical::before {
    left: -40px;
  }

  #top_technical::after {
    right: -20px;
  }

  #top_recruit::before {
    height: 300px;
  }
}

@media screen and (max-width: 900px) {
  #top_technical::before {
    left: -30px;
  }

  #top_recruit::before {
    right: -20px;
  }

  .top_recruit-txtbox {
    gap: 20px;
  }

  .top_recruit-img img {
    width: 100%;
  }

  .top_technical-img img {
    width: 100%;
  }
}

@media screen and (max-width: 850px) {
  #top_technical {
    padding: 70px 30px;
  }

  .top_technical-txtbox {
    gap: 20px;
  }

  .top_technical-txt {
    width: 50%;
  }

  .top_technical-img {
    width: 50%;
  }

  #top_recruit {
    padding: 60px 30px;
  }

  .top_recruit-txtlist {
    width: 50%;
  }

  .top_recruit-img {
    width: 50%;
  }
}



@media screen and (max-width: 750px) {
  .top_technical-txtbox {
    gap: 20px;
    flex-direction: column;
    text-align: center;
  }

  .top_technical-txt,
  .top_recruit-txtlist {
    width: 100%;
    text-align: left;
  }

  .top_recruit-txtlist {
    gap: 20px;
  }

  .top_technical-img,
  .top_recruit-img {
    width: 100%;
  }

  .top_recruit-txtbox {
    flex-direction: column;
  }
}

@media screen and (max-width: 650px) {
  .news_box {
    width: 90%;
  }

  .news_list {
    flex-direction: column;
  }

  .news_list-ttl p {
    text-align: center;
  }

  .news_list-box {
    width: 90%;
  }

  .news_list-box .news {
    border-left: none;
    border-bottom: 1px dotted #333;
  }

  #top_technical::before {
    left: inherit;
    right: 0;
    width: 160px;
  }

  #top_technical::after {
    bottom: -80px;
    width: 160px;
  }

  #top_recruit::before {
    right: -20px;
    height: 200px;
    top: -80px;
  }
}

@media screen and (max-width: 600px) {
  .main_txt {
    width: 90%;
    max-width: none;
    margin: auto;
    padding: 0;
  }

  #mv {
    min-height: 82vh;
  }

  .mv_img {
    margin-top: 0;
  }
}

@media screen and (max-width: 500px) {
  #top_technical::before {
    top: -60px;
    width: 100px;
  }

  #top_technical::after {
    bottom: -140px;
    width: 100px;
  }

  #top_recruit::before {
    height: 140px;
    width: 60px;
    top: -80px;
    right: -20px;
  }
}

@media screen and (max-width: 450px) {
  #top_technical {
    width: 90%;
  }

  .red-box {
    font-size: 2.0rem;
  }

  #top_technical::after {
    bottom: -120px;
    width: 120px;
    right: -10px;
  }
}

/* ====================
フッター
==================== */
#footer_contact {
  background-color: #a5a4a440;
  text-align: center;
  padding: 60px 0 20px;
}

.footer_contact {
  width: 80%;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  position: relative;
}

.footer_contact::before {
  position: absolute;
  content: "";
  background-image: url(../img/top/rokkaku-san_shadow02.png);
  top: -150px;
  left: -260px;
  background-size: contain;
  background-repeat: no-repeat;
  width: 200px;
  height: 135px;
}

.footer_contact-ttl {
  text-align: left;
}

.footer_contact-ttl h2 {
  font-weight: 900;
  line-height: 2.6rem;
  font-size: 1.6rem;
}

.footer_contact-ttl p {
  color: #d53c3c;
  font-size: .9rem;
}

.footer_tcontact-txt {
  padding: 30px;
}

.footer_contact-btn {
  position: relative;
  border: 2px solid #333;
  padding: 80px;
  border-radius: 50%;
  background-color: #FFF;
  width: 40px;
  height: 40px;
  margin: 20px auto;
}

.footer_contact-btn a::before {
  position: absolute;
  content: "";
  background-image: url(../img/mail_icon.png);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-repeat: no-repeat;
  width: 80px;
  height: 65px;
}

.footer_contact-btn span {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -100%);
}

.footer_contact-btn span {
  position: absolute;
  left: 50%;
  bottom: 35px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: .9rem;
  font-weight: 500;
}

#footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.footer {
  padding: 30px;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 60px;
}


.footer_address {
  text-align: left;
  line-height: 1.4rem;
  padding-top: 10px;
}

.footer_menu {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  text-align: left;
}

.footer_menu-list li {
  padding: 10px;
}

.footer_box_s {
  display: flex;
  flex-direction: column;
}

.footer_sns-icon ul {
  display: flex;
  gap: 30px;
  padding-top: 50px;
  justify-content: space-between;
}

.sns-icon img {
  width: 40px;
  list-style: none;
}

@media screen and (max-width: 1280px) {
  .footer_contact::before {
    left: -120px;
  }
}

@media screen and (max-width: 1160px) {
  .footer_menu {
    gap: 20px;
  }
}

@media screen and (max-width: 1100px) {
  .footer_menu {
    gap: 30px;
    flex-wrap: wrap;
  }

  .footer_contact::before {
    left: -80px;
  }

  .footer_menu-list {
    width: 50%;
  }

  .footer_box_s {
    width: 100%;
  }

  .footer_sns-icon ul {
    padding-top: 20px;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 900px) {
  .footer {
    padding: 30px 0;
    width: 90%;
    gap: 30px;
  }

  .footer_contact::before {
    left: -60px;
  }

  .footer_tcontact-txt {
    padding: 30px 0;
    text-align: left;
    line-height: 1.4rem;
  }
}

@media screen and (max-width: 885px) {
  .footer {
    flex-direction: column;
  }

  .footer_box {
    order: 2;
    margin-top: -20px;
    display: flex;
    gap: 30px;
  }
}

@media screen and (max-width: 650px) {
  .footer_contact::before {
    top: -120px;
    left: -30px;
    width: 160px;
    height: 120px;
  }
}

@media screen and (max-width: 600px) {
  .footer {
    width: 100%;
  }

  .footer_contact::before {
    top: -100px;
    left: -30px;
    width: 120px;
    height: 90px;
  }
}

@media screen and (max-width: 550px) {
  .footer_menu {
    gap: 0;
    flex-direction: column;
    width: 60%;
    text-align: left;
    margin: auto;
  }

  .footer_box {
    order: 1;
    margin-top: -20px;
    gap: 10px;
    flex-direction: column;
    width: 60%;
    margin: auto;
  }

  .footer_logo {
    text-align: left;
  }

  .footer_address {
    text-align: left;
    padding-top: 0;
  }

  .footer_menu {
    gap: 0;
    flex-direction: column;
    width: 60%;
    text-align: left;
    margin: auto;
    order: 2;
  }

  .footer_menu-list {
    width: 100%;
  }
}

@media screen and (max-width: 445px) {

  .footer_box {
    width: 80%;
  }

  .footer_menu {
    width: 80%;
  }
}

@media screen and (max-width: 410px) {
  .footer_box {
    width: 90%;
  }

  .footer_menu {
    width: 90%;
  }

  .footer_logo img {
    width: 100%;
  }
}

/* ====================
パンくずリスト
==================== */
.bread {
  margin: 20px 50px;
}

.aioseo-breadcrumb {
  display: inline-block;
  position: relative;
  padding: 0 8px;
  line-height: 1.6rem;
}

.aioseo-breadcrumb a {
  color: #1d208a6e;
}

.aioseo-breadcrumbs a:hover {
  color: #d53c3c;
  font-weight: 500;
}

@media screen and (max-width: 450px) {
  .bread {
    margin: 20px;
  }
}

/* ====================
会社について
==================== */
#company_ttl,
#technology_ttl,
#recruit_ttl,
#contact_ttl,
#news-sub_ttl,
#pp_ttl {
  background-image: linear-gradient(-29deg, #A4A5A566 0%, #C3BA9E33 83%, #C9BE9D00 100%);
}

.company p,
.technology p,
.recruitp {
  font-size: 5.0rem;
  font-weight: 900;
  letter-spacing: 1.8rem;
}

.company_ttl,
.technology_ttl,
.contact_ttl,
.news-sub_ttl {
  position: relative;
  text-align: center;
  display: inline-block;
  padding: 240px 30px 80px;
}

.company_ttl>p,
.technology_ttl>p,
.recruit_ttl>p,
.contact_ttl>p,
.pp_ttl>p {
  margin: 0;
  font-size: 5.0rem;
  font-weight: 700;
  letter-spacing: 1.2rem;
}

.company_ttl>p.company_sub,
.technology_ttl>p.technology_sub,
.recruit_ttl>p.recruit_sub,
.contact_ttl>p.contact_sub,
.pp_ttl>p.contact_sub {
  position: static;
  margin-top: 10px;
  font-size: 1.1rem;
  color: #d53c3c;
  font-weight: 700;
  text-align: center;
  padding-top: 8px;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  letter-spacing: 0;
  padding-left: 60px;
}

.company_ttl>p.company_sub::before,
.company_ttl>p.company_sub::after,
.technology_ttl>p.technology_sub::before,
.technology_ttl>p.technology_sub::after,
.recruit_ttl>p.recruit_sub::before,
.recruit_ttl>p.recruit_sub::after,
.contact_ttl>p.contact_sub::before,
.contact_ttl>p.contact_sub::after,
.pp_ttl>p.contact_sub::before,
.pp_ttl>p.contact_sub::after {
  content: '';
  width: 70px;
  height: 3px;
  background-color: #333;
}

.company_ttl>p.company_sub::before,
.technology_ttl>p.technology_sub::before,
.recruit_ttl>p.recruit_sub::before,
.contact_ttl>p.contact_sub::before,
.pp_ttl>p.contact_sub::before {
  margin-right: 20px;
}

.company_ttl>p.company_sub::after,
.technology_ttl>p.technology_sub::after,
.recruit_ttl>p.recruit_sub::after,
.contact_ttl>p.contact_sub::after,
.pp_ttl>p.contact_sub::after {
  margin-left: 20px;
}

.company_subttl,
.technology_subttl {
  border-top: 1px solid #333;
  padding: 100px 30px 0;
}

.company_subttl h3,
.technology_subttl h3 {
  font-size: 2.5rem;
  font-weight: 700;
  padding-top: 8px;
  line-height: 3.2rem;
}

.company_ttl_txt {
  position: relative;
}

.company_ttl_txt::after {
  position: absolute;
  content: "";
  bottom: -80px;
  right: -600px;
  background-image: url(../img/top/rokkaku-san_shadow.png);
  background-size: contain;
  width: 200px;
  height: 180px;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {

  .company_ttl_txt,
  .technology_ttl_txt {
    width: 60%;
    margin: 0 auto;
  }
}

.company_ttl_txt,
.technology_ttl_txt {
  padding: 60px 30px 100px;
  width: 60%;
  line-height: 1.4rem;
  margin: 0;
}

#company_profile,
#company_history {
  padding: 80px;
}

#company_access {
  padding: 80px 20px;
}

.company_profile-ttl,
.company_history-ttl,
.company_access-ttl,
.recruit_profile-ttl,
.recruit_benefits-ttl {
  padding-bottom: 50px;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}

.company_profile-ttl::before,
.company_history-ttl::before,
.company_access-ttl::before,
.recruit_profile-ttl::before,
.recruit_benefits-ttl::before {
  position: absolute;
  content: "";
  background-image: url(../img/top/usachitan_shadow.png);
  top: -25px;
  left: -40px;
  background-size: contain;
  width: 71px;
  height: 78px;
  background-repeat: no-repeat;
}

.company_profile-ttl h2,
.company_history-ttl h2,
.company_access-ttl h2,
.recruit_profile h2,
.recruit_benefits h2 {
  margin-bottom: 0.2rem;
  padding: 1rem;
  box-shadow: 10px 10px 0 #333;
  border: 2px solid #333;
  color: #333;
  font-weight: bold;
  font-size: 2.0rem;
  text-align: center;
  background-color: #EAE8E3;
  max-width: 400px;
}

.company_profile-ttl h2 span.ttl-s,
.company_history h2 span.ttl-s,
.company_access h2 span.ttl-s,
.recruit_profile h2 span.ttl-s,
.recruit_benefits h2 span.ttl-s {
  padding-left: 1.2rem;
  letter-spacing: 0;
}

.company_profile-ttl h2 span.ttl-s:first-child,
.company_history h2 span.ttl-s:first-child,
.company_access h2 span.ttl-s:first-child,
.recruit_profile h2 span.ttl-s:first-child,
.recruit_benefits h2 span.ttl-s:first-child,
.technology_special h2 span.ttl-s:first-child {
  padding-left: 0;
}

.technology_special h2 .ttl_space {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.company_profile-ttl h2 span.ttl-red,
.company_history h2 span.ttl-red,
.company_access h2 span.ttl-red,
.technology_product-ttl h2 span,
.recruit_profile-ttl h2 span.ttl-red,
.technology_special-ttl h2 span.ttl-red,
.recruit_benefits-ttl h2 span.ttl-red {
  color: #d53c3c;
  font-size: 1.0rem;
  display: block;
  padding-top: 4px;
  letter-spacing: 0;
  margin-left: -1.2rem;
}

.recruit_profile-ttl h2 span.ttl-red {
  font-size: .8rem;
}

.company_profile-ttl h2 span.ttl-red,
.company_history-ttl h2 span.ttl-red,
.company_access h2 span.ttl-red,
.recruit_profile-ttl h2 span.ttl-red,
.recruit_benefits-ttl h2 span.ttl-red {
  margin-left: 0;
}

.company-info table {
  width: 100%;
  border-collapse: collapse;
}

.company-info tr {
  height: 90px;
  text-align: left;
  border-top: 1px solid #333;
}

.company-info tr:last-child {
  border-bottom: 1px solid #333;
}

.company-info th {
  padding-left: 50px;
  font-weight: 700;
  width: 21%;
  vertical-align: middle;
  text-align: left;
}

.company-info td {
  position: relative;
  padding: 20px;
  padding-left: 40px;
  text-align: left;
  vertical-align: middle;
}

.company-info td::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background-color: #333;
}

.company-info_list {
  list-style-type: none;
  margin: 0;
}

.company-info_list li::before {
  content: "・";
  display: inline-block;
}

.company-info_list li {
  margin-bottom: 5px;
  font-size: 16px;
}

.awards-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.award-item {
  text-align: center;
  flex-shrink: 0;
}

.award-image {
  width: 100px;
  height: auto;
}

.award-caption {
  font-size: 14px;
  margin-top: 5px;
  color: #333;
}

.award-image {
  width: 150px;
  height: auto;
  display: block;
  margin: auto;
}

.award-item {
  display: flex;
  text-align: center;
  flex-direction: column;
}

.media-list {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: left;
}

.media-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
}

.media-caption p {
  line-height: 1.4rem;
}

.media-image {
  width: 150px;
  padding-bottom: 8px;
  margin: 0 auto;
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.media-caption {
  font-size: 14px;
  margin-top: 5px;
  color: #333;
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.image-modal__content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
}

.image-modal__close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

#you-tube {
  text-align: center;
}

.you-tube {
  position: relative;
  display: inline-block;
  text-align: center;
}

.youtube-link {
  position: relative;
  display: block;
}

.youtube-link img {
  display: block;
}

img.alignnone.size-full.wp-image-879 {
  width: 450px;
  height: auto;
}

.youtube-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.youtube-play-button::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #fff;
}

#company_history {
  padding-top: 120px;
}

.company-history_list {
  padding: 40px;
  position: relative;
}

.history-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.timeline {
  list-style: none;
  position: relative;
  padding-left: 20px;
}

.company-history_list::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: -80px;
  background-image: url(../img/top/tajou-kun_shadow.png);
  background-size: contain;
  width: 153px;
  height: 300px;
  background-repeat: no-repeat;
}

.timeline-item {
  border-left: 1px solid #333;
  padding-bottom: 60px;
  position: relative;
  padding-left: 20px;
  display: flex;
}

.timeline-item:last-child {
  border-left: none;
}

.timeline-item::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  left: -6px;
  top: 0;
}

.timeline-year-month {
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  width: 40%;
}

.timeline-year {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}

.timeline-month {
  display: inline-block;
  font-size: 14px;
  color: #666;
}

.timeline-content {
  margin-top: -5px;
  line-height: 1.6;
  width: 60%;
  padding-left: 1.2rem;
}

#company_access {
  margin-bottom: 80px;
}

.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1525px) {
  .company_ttl_txt::after {
    right: -400px;
  }
}

@media screen and (max-width: 1320px) {
  .company-history_list::after {
    width: 80px;
    height: 200px;
  }

}

@media screen and (max-width: 980px) {

  .company_ttl_txt,
  .technology_ttl_txt {
    width: 100%;
  }

  .company_ttl_txt::after {
    right: 0;
  }
}


@media screen and (max-width: 850px) {
  #company_profile {
    padding: 80px 0;
  }

  .company-info th {
    width: 25%;
  }

  .company_profile,
  .company_history {
    width: 90%;
    margin: auto;
  }

  .company-info th {
    padding-left: 20px;
  }

  .company-history_list {
    padding: 40px 0;
  }

}

@media (max-width: 768px) {
  .media-list {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 700px) {

  .company_ttl>p,
  .contact_ttl>p,
  .contact_ttl>p {
    font-size: clamp(2.2rem, 8vw, 5.0rem);
  }

  .pp_ttl>p {
    font-size: clamp(2.0rem, 6vw, 5.0rem);
  }

  .company_ttl_txt {
    width: 100%;
  }

  .company_ttl,
  .technology_ttl,
  .contact_ttl,
  .news-sub_ttl {
    padding: 180px 30px 80px;
  }

  .company_subttl,
  .technology_subttl {
    padding: 60px 30px 0;
  }

  .company-info {
    width: 100%;
    margin: auto;
  }
}

@media (max-width: 650px) {

  .company-info tr {
    display: flex;
    display: block;
    border-top: none;
  }

  .company-info th {
    display: block;
    text-align: center;
    width: 100%;
    padding: 10px 20px;
    background-color: #eae8e3;
    margin: auto;
  }

  .company-info td {
    display: block;
    width: 100%;
    padding: 10px 20px;
    margin: auto;
  }

  .company-info td::before {
    display: none;
  }

  .company-info tr {
    height: auto;
    line-height: 1.4rem;
  }

  .company-info tr:last-child {
    border-bottom: none;
  }

  #company_history {
    padding: 80px 0;
  }

  .company_ttl_txt::after {
    right: 0;
    width: 140px;
    height: 140px;
    bottom: -40px;
  }

  .company-history_list::after {
    width: 60px;
    height: 160px;
    right: -20px;
    bottom: -60px;
  }
}

@media screen and (max-width: 600px) {
  .company_ttl_txt::after {
    right: 20px;
    width: 140px;
    height: 140px;
  }

  .company-history_list::after {
    width: 60px;
    height: 140px;
    right: 0;
    bottom: -60px;
  }

  #company_access {
    padding: 80px 20px;
  }

  .awards-list {
    justify-content: center;
  }
}

@media screen and (max-width: 500px) {

  .company_ttl,
  .technology_ttl,
  .contact_ttl,
  .news-sub_ttl {
    padding: 100px 0 30px 30px;
    text-align: -webkit-center;
  }

  .company_subttl,
  .technology_subttl {
    padding: 60px 30px 0;
  }

  .company_ttl_txt,
  .technology_ttl_txt {
    padding: 0;
    padding-bottom: 20px;
    width: 80%;
    margin: 20px auto;
  }

  .company_ttl_txt {
    padding-bottom: 50px;
  }

  .company_ttl_txt::after {
    bottom: -50px;
    width: 100px;
    height: 100px;
    right: -20px;
  }

  #company_access {
    padding-top: 0;
  }

  .company_profile-ttl h2,
  .company_history-ttl h2,
  .company_access-ttl h2,
  .recruit_profile h2,
  .recruit_benefits h2 {
    font-size: 1.6rem;
  }


  .contact_ttl>p.contact_sub {
    padding-left: 30px;
  }

  .company_ttl>p.company_sub {
    padding-left: 0;
  }

  .company_ttl>p,
  .contact_ttl>p,
  .contact_ttl>p {
    font-size: clamp(1.6rem, 6vw, 5.0rem);
  }
}

@media screen and (max-width: 450px) {

  .recruit_ttl>p,
  .technology_ttl>p {
    font-size: 4.0rem;
  }

  .recruit_ttl>p.technology_sub,
  .technology_ttl>p.technology_sub {
    padding-left: 30px;
  }

  .company_subttl h3,
  .technology_subttl h3 {
    font-size: clamp(1.4rem, 8vw, 2.0rem);
    line-height: 2.4rem;
  }

  .company_ttl_txt::after {
    bottom: -80px;
    width: 120px;
    height: 100px;
    right: -40px;
  }

  .recruit_profile-ttl::before,
  .recruit_benefits-ttl::before {
    left: -18px;
  }

  .company-info table {
    table-layout: fixed;
    word-wrap: anywhere;
    word-break: break-word;
  }

  .company-info td {
    padding: 10px;
  }
}

@media screen and (max-width: 400px) {
  .timeline-item {
    flex-direction: column;
    gap: 20px;
  }

  .timeline-year-month {
    width: 50%;
    flex-direction: column;
    justify-content: flex-start;
  }

  .timeline-content {
    width: 100%;
    padding-left: .5rem;
  }

  .company_profile-ttl::before,
  .company_history-ttl::before,
  .company_access-ttl::before,
  .recruit_profile-ttl::before,
  .recruit_benefits-ttl::before {
    left: -20px;
  }
}

@media screen and (max-width: 365px) {
  .company_ttl {
    padding: 140px 0 30px 20px;
  }

  .company_ttl_txt::after {
    bottom: -40px;
  }

  .company_profile-ttl::before,
  .company_history-ttl::before {
    left: -20px;
  }
}

@media screen and (max-width: 350px) {

  .company_profile-ttl::before,
  .company_history-ttl::before,
  .company_access-ttl::before,
  .recruit_profile-ttl::before,
  .recruit_benefits-ttl::before {
    left: -28px;
    width: 60px;
  }
}

/* ===================
技術
==================== */

.technology_product-ttl h2,
.technology_equipment-ttl h2 {
  margin-bottom: 0.2rem;
  padding: 1rem;
  box-shadow: 10px 10px 0 #333;
  border: 2px solid #333;
  color: #333;
  font-weight: bold;
  font-size: 2.0rem;
  text-align: center;
  letter-spacing: 1.2rem;
  background-color: #EAE8E3;
  max-width: 400px;
  margin: 0 auto;
}

.technology_product-ttl h2 span,
.technology_equipment-ttl h2 span {
  color: #d53c3c;
  font-size: 1.0rem;
  display: block;
  padding-top: 4px;
  letter-spacing: 0;
}

#technology_special {
  margin: 80px auto;
  padding-top: 80px;
  width: 100%;
  max-width: 900px;
}

.technology_special {
  margin: 0 auto;
  padding: 40px;
  border: 1px solid #333;
  position: relative;
}

.technology_special::before {
  position: absolute;
  content: "";
  top: -100px;
  right: -50px;
  background-image: url(../img/top/usachitan_shadow.png);
  background-size: contain;
  width: 200px;
  height: 220px;
  background-repeat: no-repeat;
}

.technology_special-ttl {
  padding-bottom: 50px;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}

.technology_special-ttl h2 {
  margin-bottom: 0.2rem;
  padding: 1rem;
  box-shadow: 10px 10px 0 #333;
  border: 2px solid #333;
  color: #333;
  font-weight: bold;
  font-size: 2.0rem;
  text-align: center;
  background-color: #EAE8E3;
  max-width: 400px;
}

/* .technology_special-ttl h2 span.ttl-red {
  letter-spacing: 0;
  font-size: 1.0rem;
  font-weight: 500;
  color: #d53c3c;
  padding: 8px;
} */

.special-list {
  list-style: none;
}

.technology_special-num {
  font-weight: 900;
  font-size: 1.2rem;
}

.technology_special-box {
  display: flex;
  vertical-align: middle;
  justify-content: space-between;
}

.technology_special-btn,
.technology_special-btn2 {
  display: flex;
  background-color: #d53c3c;
  border: 3px solid #333;
  padding: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 6px 0;
}

.technology_special-btn {
  width: 320px;
  font-size: clamp(1.1rem, 1vw, 1.5rem);
  line-height: 1.4rem;
}

.technology_special-btn2 {
  width: 350px;
  flex-direction: column;
  font-size: 1.27rem;
  line-height: 1.6rem;
}

.special-list {
  list-style: none;
  padding: 20px 0;
}

.technology_special-txt {
  width: 50%;
  padding: 10px;
  line-height: 1.4rem;
}

.technology_special-ttl .space {
  margin-right: -1.2rem;
}

#technology_product {
  position: relative;
}

#technology_product::before {
  position: absolute;
  content: "";
  top: -100px;
  left: -50px;
  background-image: url(../img/top/tajou-kun_shadow.png);
  background-size: contain;
  width: 153px;
  height: 300px;
  background-repeat: no-repeat;
}

.technology_product {
  padding: 80px 0 120px;
}

@media screen and (max-width: 1180px) {
  .technology_special::before {
    right: -20px;
  }
}

@media screen and (max-width: 950px) {

  .technology_special-box {
    flex-direction: column;
  }

  .technology_special-txt {
    width: 100%;
  }

  .technology_special-btn2 {
    width: 80%;
  }

  .wrap-inline {
    display: flex;
    flex-direction: row;
  }
}

@media screen and (max-width: 730px) {
  .technology_special-btn2 {
    width: 90%;
  }
}

@media screen and (max-width: 660px) {
  .wrap-inline {
    display: block;
  }

  .technology_special::before {
    width: 100px;
    height: 110px;
    top: -60px;
  }

  #technology_product::before {
    height: 200px;
  }
}


@media screen and (max-width: 550px) {
  #technology_special {
    padding-top: 0;
  }

  .technology_special::before {
    width: 80px;
    height: 90px;
    right: -10px;
  }
}

@media screen and (max-width: 500px) {
  .technology_special-btn {
    width: 90%;
  }

  #technology_product::before {
    height: 130px;
    width: 60px;
    left: 0px;
    top: -0px;
  }

  .technology_special-ttl h2 {
    font-size: 1.6rem;
  }

  .technology_product {
    padding: 80px 0 60px;
  }
}

/* 製品情報 */
.technology_product-list {
  width: 100%;
  display: flex;
  margin-top: 80px;
  flex-wrap: wrap;
}

.product-list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.product-item {
  width: calc(33.3% - 60px);
  text-align: center;
  box-shadow: 0px 0px 20px #d1d0d5;
}

.product-list::after {
  content: "";
  display: block;
  width: calc(33.3% - 60px);
  height: 0;
}

.product-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 10px 0;
}

.product-name {
  font-weight: 600;
  padding-bottom: 8px;
}

.product-info-box {
  text-align: left;
  padding: 0 20px;
  line-height: 1.2rem;
}

.product-info-box p {
  padding-bottom: 4px;
  font-size: .95rem;
}

#factory-img {
  width: 100%;
  padding-bottom: 120px;
}

.factory-img {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0;
}

.factory-img img {
  flex: 1;
  max-width: calc(33.3333% - 10px);
  margin-right: 10px;
  height: auto;
}

.factory-img img:last-child {
  margin-right: 0;
}

.factory-img figure {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1100px) {
  .product-item {
    width: 40%;
  }
}

@media screen and (max-width: 660px) {
  .product-item {
    width: 80%;
    margin: auto;
  }
}

/* 主要設備 */
#technology_equipment {
  position: relative;
}

.technology_equipment::after {
  position: absolute;
  content: "";
  top: 0;
  right: -50px;
  background-image: url(../img/top/rokkaku-san_shadow.png);
  background-size: contain;
  width: 200px;
  height: 120px;
  background-repeat: no-repeat;
}

.technology_equipment {
  padding: 80px 0 120px;
}

.technology_equipment-list {
  margin: 40px auto;
}

.technology_equipment-list table {
  width: 100%;
  border-collapse: collapse;
}

.technology_equipment-list th,
.technology_equipment-list td {
  border: 1px solid #ccc;
  padding: 8px;
}

.technology_equipment-list th {
  text-align: center;
  background-color: #1d2086;
  color: #fff;
  font-weight: 700;
}

.technology_equipment-list thead th {
  position: sticky;
  top: 0;
  z-index: 2;
}

.technology_equipment-list td {
  text-align: left;
}

.technology_equipment-list .equipment-annotation td {
  width: 100%;
  font-size: .8rem;
  text-align: right;
}

.technology_equipment-list table {
  width: 100%;
  border-collapse: collapse;
}

@media screen and (max-width: 750px) {
  .technology_equipment-list {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 30px;
    scrollbar-gutter: stable both-edges;
  }

  .technology_equipment-list table {
    min-width: 800px;
    border-collapse: collapse;
  }

  .technology_equipment-list thead th {
    position: sticky;
    top: 0;
    background-color: #1d2086;
    color: #fff;
    z-index: 3;
  }

  .technology_equipment-list::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    z-index: 2;
  }

  .technology_equipment-list.show-scroll-hint::after {
    content: "⇆ スクロールできます";
    position: absolute;
    bottom: 0;
    left: 8px;
    font-size: 12px;
    line-height: 1;
    color: #333;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    z-index: 4;
    /* 少し目を引く登場アニメ（対応環境のみ） */
    animation: scrollHintPop .35s ease-out both;
  }

  @keyframes scrollHintPop {
    from {
      transform: scale(.95);
      opacity: 0;
    }

    to {
      transform: scale(1);
      opacity: 1;
    }
  }
}

@media screen and (max-width: 530px) {
  .technology_equipment::after {
    top: -20px;
    right: 0;
    width: 150px;
  }
}

@media screen and (max-width: 500px) {

  #technology_equipment::before {
    height: 130px;
    width: 60px;
    left: 0px;
    top: -0px;
  }
}

/* ====================
採用
==================== */
#recruit_ttl {
  text-align: center;
}

.recruit_ttl {
  position: relative;
  display: inline-block;
  padding: 120px 30px 80px;
}

.recruit_ttl>p.recruit_sub {
  padding-left: 0;
  margin-left: -1.2rem;
}

.recruit_subttl {
  width: 40%;
  margin: 0 auto;
  max-width: 600px;
}

.recruit_subttl span.wrap {
  display: block;
}

.recruit_subttl h3 {
  position: relative;
  padding: 1rem 1.5rem;
  font-size: 2.1rem;
  line-height: 3.2rem;
  font-weight: 700;
  text-align: center;
}

.recruit_subttl h3::before,
.recruit_subttl h3::after {
  position: absolute;
  width: 37px;
  height: 37px;
  content: '';
}

.recruit_subttl h3::before {
  border-left: solid 1px;
  border-top: solid 1px;
  top: 0;
  left: 0;
}

.recruit_subttl h3::after {
  border-right: solid 1px;
  border-bottom: solid 1px;
  bottom: 0;
  right: 0;
}

.page-recruit .no-job-message {
  text-align: center;
  margin: 50px auto;
}

.recruit_ttl_txt {
  width: 60%;
  margin: 0 auto;
  padding: 60px 0;
}

.recruit_ttl_txt {
  width: 80%;
  max-width: 650px;
  margin: 0 auto;
  padding: 60px 0;
  text-align: left;
  line-height: 1.85rem;
}

.recruit_ttl_txt .red.bold,
.recruit_ttl_txt .bold {
  font-size: 1.25rem;
}

.recruit_main-img {
  position: relative;
  width: 80%;
  max-width: 650px;
  margin: 20px auto 0;
}

.recruit_main-img img {
  width: 100%;
}

.recruit_main-img a::before {
  position: absolute;
  content: "";
  top: -60px;
  right: -100px;
  background-image: url(../img/top/rokkaku-san_shadow.png);
  background-size: contain;
  width: 200px;
  height: 180px;
  background-repeat: no-repeat;
}

#recruit_profile {
  padding: 80px 0;
}

.recruit-info table {
  width: 100%;
  border-collapse: collapse;
}

.recruit-info tr {
  height: 90px;
  text-align: left;
  border-top: 1px solid #333;
}

.recruit-info tr:last-child {
  border-bottom: 1px solid #333;
}

.recruit-info th {
  padding-left: 50px;
  font-weight: 700;
  width: 21%;
  vertical-align: middle;
  text-align: left;
}

.recruit-info td {
  position: relative;
  padding: 20px;
  padding-left: 40px;
  text-align: left;
  vertical-align: middle;
}

.recruit-info td::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background-color: #333;
}

h3.position-title {
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
  padding: 1rem 2rem;
  border-radius: 5px;
  box-shadow: 7px 7px #dddbb3, 7px 7px 0 3px #353535;
  outline: 3px solid #353535;
  background-color: #fefefe;
  color: #353535;
  text-align: center;
  /* letter-spacing: 1.6rem; */
  /* padding-right: 1.6rem; */
  width: auto;
  margin-bottom: 20px;
}

h3.position-title span {
  padding-left: 1.6rem;
}

h3.position-title span:first-child {
  padding-left: 0;
}

#recruit_benefits {
  position: relative;
  padding-bottom: 100px;
  padding-top: 80px;
}

#recruit_benefits::before {
  position: absolute;
  content: "";
  bottom: 80px;
  right: 0;
  background-image: url(../img/top/tajou-kun_shadow.png);
  width: 153px;
  height: 300px;
  background-size: contain;
  background-repeat: no-repeat;
}

.recruit_benefits-box {
  width: 80%;
  max-width: 1200px;
  padding: 0 60px;
  margin: 0 auto;
}

.recruit_benefits-item {
  margin-bottom: 60px;
}

.recruit_benefits-box h3 {
  position: relative;
  text-align: center;
  width: 320px;
  background-color: #d53c3c;
  color: #fff;
  font-size: clamp(1.0rem, 1vw, 1.25rem);
  padding: 10px;
  font-weight: 700;
}

.recruit_benefits-box h3::before {
  position: absolute;
  content: "";
  border: 2px solid #d53c3c;
  background-color: #fff;
  width: 30px;
  height: 30px;
  top: -15px;
  left: -15px;
}

.benefits_txt {
  padding: 20px 30px;
}

.benefits_txt p {
  padding-bottom: 6px;
}

@media screen and (max-width: 1500px) {
  .recruit_subttl {
    width: 80%;
    max-width: 700px;
  }
}

@media screen and (max-width: 850px) {
  .recruit_main-img a::before {
    top: -60px;
    width: 180px;
    height: 150px;
    right: -80px;
  }

  #recruit_benefits::before {
    right: -60px;
    width: 143px;
    height: 200px;
  }
}

@media screen and (max-width: 800px) {
  .recruit-info th {
    width: 25%;
  }
}

@media screen and (max-width: 750px) {

  .spwrap750 {
    display: block;
  }
}

@media screen and (max-width: 700px) {
  .recruit_main-img a::before {
    width: 140px;
    right: -60px;
  }
}

@media(max-width: 650px) {
  .recruit-info tr {
    display: flex;
    display: block;
    border-top: none;
  }

  .recruit-info th {
    display: block;
    text-align: center;
    width: 90%;
    padding: 10px 20px;
    background-color: #eae8e3;
    margin: auto;
  }

  .recruit-info td {
    display: block;
    width: 90%;
    padding: 10px 20px;
    margin: auto;
  }

  .recruit-info td::before {
    display: none;
  }

  .recruit-info tr {
    height: auto;
    line-height: 1.4rem;
  }

  h3.position-title {
    margin: 20px auto;
  }

  .recruit_benefits-box {
    padding: 0;
  }

  .benefits_txt {
    padding: 20px 10px;
  }

  #recruit_benefits::before {
    right: -60px;
    width: 100px;
  }

  .recruit-info tr:last-child {
    border-bottom: none;
  }
}

@media screen and (max-width: 665px) {
  .recruit_subttl h3 {
    font-size: 1.8rem;
  }

  .subttlb {
    font-size: clamp(2.8rem, 4vw, 3.2rem);
  }

}

@media screen and (max-width: 600px) {
  .recruit_main-img a::before {
    right: -40px;
  }

  #recruit_benefits::before {
    right: -20px;
    width: 70px;
    bottom: 40px;
    height: 140px;
  }

}

@media screen and (max-width: 550px) {
  .recruit_benefits-box {
    width: 100%;
  }
}

@media screen and (max-width: 450px) {
  .recruit_subttl h3 {
    font-size: clamp(1.4rem, 8vw, 2.0rem);
  }
}

@media screen and (max-width: 410px) {
  .recruit_main-img a::before {
    right: -30px;
    width: 120px;
    height: 120px;
  }

  .recruit_benefits-box {
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }

  .benefits_txt {
    padding: 20px 0;
    width: 100%;
  }

  #recruit_benefits::before {
    right: 0px;
    width: 60px;
    bottom: 0;
  }
}

/* ====================
404
==================== */
._404_bk {
  background: #33cc99;
  color: #fff;
  max-height: 700px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 20px 0;
}

.c {
  text-align: center;
  display: block;
  position: relative;
  width: 80%;
  margin: 100px auto;
  z-index: 3;
}

._404 {
  font-size: 220px;
  position: relative;
  display: inline-block;
  z-index: 2;
  height: 250px;
  letter-spacing: 15px;
}

._1 {
  text-align: center;
  display: block;
  position: relative;
  letter-spacing: 12px;
  font-size: 4em;
  line-height: 80%;
}

._2 {
  text-align: center;
  display: block;
  position: relative;
  font-size: 20px;
  padding: 20px;
}

.text {
  font-size: 70px;
  text-align: center;
  position: relative;
  display: inline-block;
  margin: 19px 0px 0px 0px;
  /* top: 256.301px; */
  z-index: 3;
  width: 100%;
  line-height: 1.2em;
  display: inline-block;
}


.btn {
  background-color: rgb(255, 255, 255);
  position: relative;
  display: inline-block;
  width: 358px;
  padding: 5px;
  z-index: 5;
  font-size: 25px;
  margin: 0 auto;
  color: #33cc99;
  text-decoration: none;
  margin-right: 10px
}

.right {
  float: right;
  width: 60%;
}

hr {
  padding: 0;
  border: none;
  border-top: 5px solid #fff;
  color: #fff;
  text-align: center;
  margin: 0px auto;
  width: 420px;
  height: 10px;
  z-index: -10;
}

hr:after {
  content: "\2022";
  display: inline-block;
  position: relative;
  top: -0.75em;
  font-size: 2em;
  padding: 0 0.2em;
  background: #33cc99;
}

.cloud {
  width: 350px;
  height: 120px;

  background: #FFF;
  background: linear-gradient(top, #FFF 100%);
  background: -webkit-linear-gradient(top, #FFF 100%);
  background: -moz-linear-gradient(top, #FFF 100%);
  background: -ms-linear-gradient(top, #FFF 100%);
  background: -o-linear-gradient(top, #FFF 100%);

  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;

  position: absolute;
  margin: 120px auto 20px;
  z-index: 2;
  transition: ease 1s;
}

.cloud:after,
.cloud:before {
  content: '';
  position: absolute;
  background: #FFF;
  z-index: 2
}

.cloud:after {
  width: 100px;
  height: 100px;
  top: -50px;
  left: 50px;

  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
}

.cloud:before {
  width: 180px;
  height: 180px;
  top: -90px;
  right: 50px;

  border-radius: 200px;
  -webkit-border-radius: 200px;
  -moz-border-radius: 200px;
}

.x1 {
  top: -50px;
  left: 100px;
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  transform: scale(0.3);
  opacity: 0.9;
  -webkit-animation: moveclouds 15s linear infinite;
  -moz-animation: moveclouds 15s linear infinite;
  -o-animation: moveclouds 15s linear infinite;
}

.x1_5 {
  top: -80px;
  left: 250px;
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  transform: scale(0.3);
  -webkit-animation: moveclouds 17s linear infinite;
  -moz-animation: moveclouds 17s linear infinite;
  -o-animation: moveclouds 17s linear infinite;
}

.x2 {
  left: 250px;
  top: 30px;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  transform: scale(0.6);
  opacity: 0.6;
  -webkit-animation: moveclouds 25s linear infinite;
  -moz-animation: moveclouds 25s linear infinite;
  -o-animation: moveclouds 25s linear infinite;
}

.x3 {
  left: 250px;
  bottom: -70px;

  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  transform: scale(0.6);
  opacity: 0.8;

  -webkit-animation: moveclouds 25s linear infinite;
  -moz-animation: moveclouds 25s linear infinite;
  -o-animation: moveclouds 25s linear infinite;
}

.x4 {
  left: 470px;
  botttom: 20px;

  -webkit-transform: scale(0.75);
  -moz-transform: scale(0.75);
  transform: scale(0.75);
  opacity: 0.75;

  -webkit-animation: moveclouds 18s linear infinite;
  -moz-animation: moveclouds 18s linear infinite;
  -o-animation: moveclouds 18s linear infinite;
}

.x5 {
  left: 200px;
  top: 300px;

  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0.8;

  -webkit-animation: moveclouds 20s linear infinite;
  -moz-animation: moveclouds 20s linear infinite;
  -o-animation: moveclouds 20s linear infinite;
}

/* キャラクター共通スタイル */
.character {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  transition: ease 1s;
}


.tajou-kun {
  width: 150px;
  height: 300px;
  background-image: url(../img/top/tajou-kun_shadow.png);
  bottom: 80px;
  left: 300px;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-animation: moveclouds 22s linear infinite;
  animation: moveclouds 22s linear infinite;
}

.rokkaku-san {
  width: 400px;
  height: 600px;
  background-image: url(../img/top/rokkaku-san_shadow.png);
  bottom: -280px;
  left: 500px;
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-animation: moveclouds 19s linear infinite;
  animation: moveclouds 19s linear infinite;
}

.rokkaku-san2 {
  width: 400px;
  height: 300px;
  background-image: url(../img/top/rokkaku-san_shadow02.png);
  bottom: 10px;
  left: 400px;
  -webkit-transform: scale(0.45);
  transform: scale(0.45);
  -webkit-animation: moveclouds 24s linear infinite;
  animation: moveclouds 24s linear infinite;
}

.usachitan {
  width: 300px;
  height: 300px;
  background-image: url(../img/top/usachitan_shadow.png);
  top: 150px;
  left: 100px;
  -webkit-transform: scale(0.55);
  transform: scale(0.55);
  -webkit-animation: moveclouds 21s linear infinite;
  animation: moveclouds 21s linear infinite;
}

@-webkit-keyframes moveclouds {
  0% {
    margin-left: 1000px;
  }

  100% {
    margin-left: -1000px;
  }
}

@-moz-keyframes moveclouds {
  0% {
    margin-left: 1000px;
  }

  100% {
    margin-left: -1000px;
  }
}

@-o-keyframes moveclouds {
  0% {
    margin-left: 1000px;
  }

  100% {
    margin-left: -1000px;
  }
}

.not-found-content {
  width: 80%;
  max-width: 900px;
  margin: 20px auto 80px;
  text-align: center;
}

.not-found-content p {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 20px;
}

.not-found-content .cause li {
  list-style: circle;
  line-height: 1.4rem;
  text-align: left;
}

.not-found-content h3.solution.blue {
  padding: 6px;
  font-weight: 500;
  font-size: 1.2rem;
  background-color: #33cc99;
  margin: 10px 0;
  color: #fff;
}

.not-found-content ul li {
  text-align: left;
  line-height: 1.6rem;
}

a.to-the-top {
  text-decoration: underline 3px;
}

a.to-the-top:hover {
  color: #33cc99;
}

/* ====================
問い合わせ
==================== */
#contact_ttl {
  border-bottom: 1px solid #333;
}

.contact_ttl_txt {
  text-align: center;
  margin: 40px auto;
}

#cf-area {
  margin-bottom: 120px;
}

.cf_inq {
  display: flex;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 23px;
  justify-content: center;
  gap: 10px;
}

.cf-q .strong_red {
  background-color: #d53c3c;
  padding: 2px 10px;
  border-radius: 10vw;
  font-size: .8rem;
  color: #fff;
}

.cf-q {
  width: 25%;
  text-align: right;
  padding-right: 20px;
}

.cf-a {
  width: 60%;
}

input.wpcf7-form-control.wpcf7-text {
  width: 100% !important;
  max-width: 400px !important;
  height: 30px !important;
}

#your-message {
  width: 100%;
  max-width: 400px;
  background-color: #fff;
  height: auto;
  padding: 10px;
  text-align: left;
}

.count {
  padding-top: 10px;
  text-align: right;
  width: 100%;
  max-width: 400px;
}

.cf-accept-check a {
  padding-left: 8px;
}

.cf-submit {
  text-align: center;
}

.wpcf7-form-control.wpcf7-submit.has-spinner {
  padding: 6px 20px;
  width: 200px;
  background-color: #333;
  color: #fff;
  border-radius: 10vw;
  margin: 20px auto;
  cursor: pointer;
}

.cf-previous {
  display: block !important;
}

.cf_cfm {
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
}

.cf-q_cfm {
  text-align: right;
  width: 40%;
}

.cf-c_cfm {
  width: 60%;
  text-align: left;
}

@media screen and (max-width: 980px) {
  .cf-q {
    width: 30%;
  }
}

@media screen and (max-width: 450px) {
  .cf_cfm {
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    flex-direction: column;
  }

  .cf-q_cfm {
    text-align: center;
    width: auto;
    background-color: #333;
    color: #fff;
    padding: 8px 0;
  }

  .cf-c_cfm {
    width: auto;
    text-align: center;
    padding-top: 8px;
  }
}

/* ===================
プライバシーポリシー
==================== */
#pp_ttl {
  border-bottom: 1px solid #333;
}

.pp_ttl {
  position: relative;
  text-align: center;
  display: inline-block;
  margin: 240px auto 80px;
  width: 100%;
}

#pp_ttl p.contact_sub {
  justify-content: center;
}

.pp_box {
  margin-bottom: 140px;
}

.pp_box p {
  line-height: 1.4rem;
}

.pp_box h2 {
  font-size: 1.4rem;
  padding: 20px 0;
  margin-top: 30px;
  font-weight: 700;
}

ul.wp-block-list {
  padding-left: 2rem;
}

.pp_box li {
  list-style: disc;
  line-height: 1.4rem;
}

.cf7-submit {
  text-align: center;
}

.cf-accept-check p {
  line-height: 1.6rem;
}

/* thank you */
.thank-you {
  text-align: center;
  font-size: 1.2rem;
  margin: 80px auto;
  line-height: 1.8rem;
}

@media screen and (max-width: 800px) {
  .mian.contact {
    width: 90%;
  }
}

@media screen and (max-width: 750px) {
  .cf_inq {
    flex-direction: column;
    text-align: center;
    width: 90%;
    max-width: 400px;
  }

  .cf-q {
    width: 100%;
    text-align: left;
  }

  .cf-a {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .pp_txt {
    text-align: left;
  }

  .wpcf7-list-item {
    margin: 0 !important;
  }
}

/* ====================
お知らせ
==================== */
.news {
  width: 90%;
  margin: 0 auto;
}

.news-cat-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.news-cat-list li {
  margin: .2rem 0;
}

.news-cat-list li.current a {
  font-weight: 700;
  text-decoration: underline;
}

.news-box {
  display: flex;
  gap: 2rem;
  margin: 30px auto;
  padding-bottom: 80px;
}

.archive_cat {
  flex: 0 0 200px;
  position: sticky;
  top: 80px;
  margin: 30px 0;
}

.archive-list {
  flex: 1 1 auto;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.archive-list-padding {
  padding-left: 300px;
}

.news-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-cat-list li {
  margin: 0 0 .5em;
}

.news-cat-list li a {
  display: block;
  padding: .4em .6em;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: .2s;
}

.news-cat-list li a:hover {
  background: #f5f5f5;
}

.news-cat-list li.current a {
  background: #333;
  color: #fff;
  border-color: #333;
  pointer-events: none;
  text-decoration: none;
}

.news-archive_li .thumb {
  width: 20%;
}

.news-archive_li .thumb img {
  width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
}

.news-archive_txt {
  display: flex;
  gap: 30px;
  align-content: flex-start;
  align-items: center;
}

.archiv-list_date .meta {
  margin: 20px 0;
}

.archiv-list_date .meta span.date {
  font-size: .9rem;
  color: #aaa8a4;
}

.archive-list li.news-archive_li {
  border-bottom: 1px solid #aaa8a4;
  padding: 40px;
}

.archiv-list_date h2.title {
  font-size: 1.6rem;
  padding: 40px 0;
}

.archive_cat h2 {
  font-size: 1.2rem;
  font-weight: 600;
  padding-bottom: 30px;
}

.archiv-list_date h2.title {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 20px 0;
}

.pagination {
  margin: 3rem auto 0;
  display: flex;
  gap: .5rem;
  justify-content: center;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid #333;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: .2s;
}

.pagination .page-numbers:hover {
  background: #333;
  color: #fff;
}

.pagination .page-numbers.current {
  background: #333;
  color: #fff;
  pointer-events: none;
}

.pagination .page-numbers.dots {
  border: none;
  width: auto;
  height: auto;
  padding: 0 6px;
}

.pagination .prev,
.pagination .next {
  width: auto;
  padding: 0 .8rem;
}

.cat {
  padding: 6px 12px;
  border-radius: 10vw;
  font-size: .8rem;
  font-weight: 600;
  display: inline-block;
  margin: 0 1rem;
}

.cat-topics {
  background-color: #333;
  color: #fff;
}

.cat-cat01 {
  background-color: #d53c3c;
  color: #fff;
}

.cat-cat02 {
  background-color: #7a7474;
  color: #fff;
}

.cat-cat03 {
  background-color: #00388b;
  color: #fff;
}

.news_sub {
  text-align: left;
  display: flex;
  padding: 0 30px 10px;
  vertical-align: middle;
}

.archive-list.fixed-archive-list {
  padding-left: 280px;
}

.news-box.fixed-cat .archive-list {
  width: 100%;
  max-width: none;
}

@media screen and (max-width: 1250px) {
  .archive_cat {
    margin-left: 30px;
  }
}

@media screen and (max-width: 810px) {
  .cat {
    margin: 8px;
  }
}

@media screen and (max-width: 750px) {
  .archive_cat {
    width: 90%;
    margin: 0 auto;
  }

  .archive-list li.news-archive_li {
    padding: 40px 20px;
  }

  .news-archive_txt {
    flex-direction: column;
  }

  .news-archive_li .thumb {
    width: 60%;
  }

  .archiv-list_date {
    width: 100%;
  }

  .archiv-list_date h2.title {
    padding: 0;
  }
}

@media screen and (max-width: 700px) {
  .news-box {
    flex-direction: column;
  }

  .archive_cat {
    flex: 0;
    position: static !important;
    top: auto !important;
    width: 90%;
    margin: 0 auto;
  }

  .archive_cat ul.news-cat-list {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: center;
  }

  .news-cat-list li {
    width: calc(33.3% - 13.33px);
  }

  .news-cat-list lilast-child {
    margin-left: auto;
  }

}

@media screen and (max-width: 600px) {
  .archive-list-padding {
    padding-left: 300px;
  }
}

/* 詳細 */
.news_sub {
  text-align: left;
  display: flex;
  padding: 0 30px 10px 0;
  vertical-align: middle;
  align-items: center;
}

time.news-date {
  padding-top: 4px;
  color: #aaa8a4;
}

.main_news {
  border-bottom: 1px solid #333;
}

.news_ {
  width: 80%;
  max-width: 1200px;
  margin: 80px auto 120px;
  text-align: center;
  padding-bottom: 80px;
}

.news_ p {
  text-align: left;
  line-height: 1.8rem;
}

.news-nav {
  border-top: 1px solid #ccc;
  padding: 40px 0;
  text-align: center;
}

.news-nav-inner {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.news-nav a {
  display: inline-block;
  padding: 8px 24px;
}

.news-nav a.news_btn {
  border: 1px solid #000;
  border-radius: 24px;
  color: #333;
}

.news-nav a.news_btn:hover {
  background-color: #333;
  color: #fff;
}

.nav-archive a {
  background: #fff;
}

.news-sub_ttl>p {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: .6rem;
}

.news-thumb img {
  width: 100%;
  object-fit: contain;
  max-height: 600px;
  height: auto;
  max-width: 600px;
}

@media screen and (max-width: 600px) {
  .news-sub_ttl>p {
    font-size: clamp(1.6rem, 8vw, 2.8rem);
  }
}

@media screen and (max-width 360px) {
  .news-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 100px;
  }

  .nav-prev,
  .nav-next,
  .nav-archive {
    width: 33.33%;
    box-sizing: border-box;
  }

  .nav-prev {
    text-align: left;
  }

  .nav-archive {
    text-align: center;
  }

  .nav-next {
    text-align: right;
  }
}

@media screen and (max-width: 485px) {
  .archive_cat {
    margin: 0 10px;
  }

  .archive_cat ul.news-cat-list {
    flex-direction: column;
  }

  .news-cat-list li {
    width: 80%;
    margin: 6px auto;
  }
}

@media screen and (max-width: 420px) {
  .archive-list {
    width: 90%;
  }

  .archive-list li.news-archive_li {
    padding: 40px 0;
  }
}

/* ===================
サイトマップ
==================== */
.site-map {
  width: 80%;
  max-width: 1200px;
  margin: 80px auto;
}

.site-map ul {
  line-height: 1.6rem;
  display: flex;
  justify-content: space-around;
}

.site-map .site-map_box ul.submenu {
  display: flex;
  flex-direction: column;
}

.site-map_ttl {
  top: 100px;
  width: 180px;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 4px 10px;
  background-color: #333;
  color: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
}

.site-map_ttl.small {
  font-size: 1.0rem;
}

.full-link-li {
  cursor: pointer;
}

.full-link-li a {
  display: block;
  box-sizing: border-box;
  padding: 4px 16px;
  background: #333;
  border: 1px solid #333;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  width: auto;
}

.full-link-li:hover a {
  background: #fff;
  border: 1px solid #333;
  color: #333;
}

@media screen and (max-width: 850px) {
  .site-map ul {
    flex-direction: column;
    gap: 10px;
  }

  .site-map_box {
    width: 80%;
    margin: 10px auto;
  }

  .full-link-li {
    margin: 20px 10px 10px;
  }
}

[id] {
  scroll-margin-top: 90px;
}