@charset "UTF-8";

:root {
  --blue: #0140ac;
  --black: #303036;
  --red: #d7253c;
  --bgGray: #fbf8f8;
  --white: #fff;
  --titleBg: #efefef;
}

body {
  font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: normal;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #303036;
}

li {
  list-style: none;
}

#mainvisual {
  position: relative;
  width: 100%;
  min-height: 902px;
  display: flex;
  justify-content: center;
  align-items: center;

}

#mainvisual .fade li {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  animation: fade 15s infinite;
  z-index: -99;
}

/*
1枚目の画像のアニメーション実行タイミングを設定
「animation-delay: 0s;」ですぐに実行
*/
#mainvisual .fade li:nth-child(1) {
  animation-delay: 0s;
}

/*
2枚目の画像のアニメーション実行タイミングを設定
「animation-delay: 5s;」で5秒後に実行
*/
#mainvisual .fade li:nth-child(2) {
  animation-delay: 5s;
}

/*
3枚目の画像のアニメーション実行タイミングを設定
「animation-delay: 10s;」で10秒後に実行
*/
#mainvisual .fade li:nth-child(3) {
  animation-delay: 10s;
}

#mainvisual .fade li img {
  width: 100%;
  height: 902px;
  object-fit: cover;
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  45% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* * ハンバーガ―メニュー */
.hamburger {
  width: 70px;
  height: 70px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  cursor: pointer;
  transition: 0.3s;
  display: none;
}

.hamburger:hover {
  opacity: 0.7;
}

/* ハンバーガーメニューの線の設定（メニューが閉じている時） */
.hamburger span {
  width: 3.3rem;
  height: 3px;
  background: var(--red);
  position: absolute;
  left: -15px;
  transition: 0.3s ease-in-out;
}

/* 1本目の線の位置を設定 */
.hamburger span:nth-child(1) {
  top: 36px;
}

/* 2本目の線の位置を設定 */
.hamburger span:nth-child(2) {
  top: 50px;
}

/* 3本目の線の位置を設定 */
.hamburger span:nth-child(3) {
  top: 64px;
}

/*
ハンバーガーメニューの線の設定（メニューが開いている時）
1本目の線を-45度回転
*/
.hamburger.active span:nth-child(1) {
  top: 47px;
  left: -15px;
  background: var(--red);
  transform: rotate(-45deg);
}

/* 2本目と3本目は重ねて45度回転 */
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 47px;
  background: var(--red);
  transform: rotate(45deg);
}

/*
メニューの設定
最初は閉じている状態なので、「opacity: 0;」「visibility: hidden;」
で要素を非表示にしておく
*/
#navi {
  padding: 2rem;
  width: 100%;
  height: 100vh;
  background-color: var(--bgGray);
  color: var(--black);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  opacity: 0;
  text-align: left;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  visibility: hidden;
}

/*
ハンバーガーメニューがクリックされた際に、jQueryで#naviにactiveクラスを追加して、
メニューを表示させる。
*/
#navi.active {
  opacity: 1;
  visibility: visible;
}

#navi .sp-menu {
  margin: 5rem 4rem;
}

#navi .sp-menu li {
  margin-bottom: 3rem;
}

#navi .sp-menu a {
  color: var(--black);
  font-size: clamp(1.125rem, 0.943rem + 0.91vw, 1.625rem);
  font-weight: bold;
}

.gnavi li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  display: block;
  text-decoration: none;
  padding-bottom: 10%;
}

.gnavi li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  background: var(--white);
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: left top;
  /*左上基点*/
}

/*現在地とhoverの設定*/
.gnavi li a:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}

.site-title {
  position: absolute;
  width: 100%;
  padding-top: 1.5rem;
  padding-left: 2rem;
  z-index: 1;
}

.site-title img {
  margin-top: 0.5em;
  width: 269px;
  height: 70px;
}

#business-fv {
  background-image: url(../img/sub-fv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 25vh;
}

.course-business-box {
  background: var(--white);
  color: var(--red);
  position: absolute;
  top: 48%;
  left: 0;
  padding: 2rem 10rem 1.75rem 10rem;
  border-radius: 5px;
  display: flex;
  place-items: center;
}

.course-business-fv-text {
  font-size: clamp(1.25rem, 0.795rem + 2.27vw, 2.5rem);
  font-weight: bold;
}

.course-business-fv-ttl span {
  font-size: clamp(0.938rem, 0.597rem + 1.7vw, 1.875rem);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
  display: block;
  background-color: var(--titleBg);
  text-align: center;
}

#header {
  position: absolute;
  max-width: 1138px;
  height: 100px;
  top: 15px;
  right: 0;
  width: 100%;
  box-sizing: content-box;
  background-color: var(--red);
  color: var(--white);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 20px 0 0 20px;
  z-index: 9999;
}

.header-nav-list {
  display: flex;
}

.header-nav-list-item {
  margin-left: 3.5rem;
}

.header-nav-list-item:first-child {
  margin-left: 0;
}

.header-nav-list-item a {
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  color: var(--white);
}

.header-cta {
  display: flex;
  margin-left: 0;
}

.label-name a {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-style: italic;
  text-decoration: underline;
}

.header-cta-r.header-btn {
  margin-left: 8%;
}

.header-cta-l.header-btn a {
  color: var(--red);
  background-color: var(--white);
  display: inline-block;
  width: 10.5rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  transition: 0.3s;
  position: relative;
  border-radius: 30px;
  border: 1px solid #fff;
}

.header-cta-l.header-btn a:hover {
  color: var(--white);
  background-color: var(--red);
  border: 1px solid var(--white);
  transform: translateY(-1px);
}

.header-cta-r.header-btn a {
  color: var(--white);
  background-color: var(--red);
  display: inline-block;
  width: 10.5rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  transition: 0.3s;
  position: relative;
  border-radius: 30px;
  border: 1px solid var(--white);
}

.header-cta-r.header-btn a:hover {
  color: var(--red);
  background-color: var(--white);
  transform: translateY(-1px);
}

/*-------------------------------------------
パンくずリスト
-------------------------------------------*/

.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 22.5rem;
  max-width: 1600px;
  margin: 0 auto;
}

.breadcrumb li {
  display: inline;
  /*横に並ぶように*/
  list-style: none;
}

.breadcrumb li:after {
  /* >を表示*/
  content: ">";
  padding: 0 0.2em;
  color: #555;
}

.breadcrumb li:last-child:after {
  content: "";
}

.breadcrumb li a {
  font-size: 1rem;
  font-weight: normal;
  text-decoration: none;
  color: #040404;
  /*色*/
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

main {
  margin-top: 2.7rem;
}

.sp-footer {
  display: none;
}

/*-------------------------------------------
howto
-------------------------------------------*/

.howto-image {
  width: 48rem;
  height: 36rem;
}

.howto-box {
  margin-top: 1%;
  max-width: 1720px;
  margin-left: auto;
  position: relative;
  color: var(--white);
  height: 55rem;
}

.howto-image {
  position: absolute;
  top: 17%;
  left: -2%;
  z-index: 15;
}

.howto-image img {
  border-radius: 10px;
}


.howto-txt-box {
  padding-left: 33%;
  padding-top: 9%;
}

.howto-ttl {
  font-size: clamp(1.5rem, 0.773rem + 3.64vw, 3.5rem);
  margin-top: 2%;
  letter-spacing: 0.1em;
}

.howto-text {
  background-image: url(../img/know-how-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 55rem;
  text-align: center;
  width: 90%;
  margin-left: auto;
  letter-spacing: 0.1em;
}

.howto-subtext {
  font-size: clamp(0.938rem, 0.597rem + 1.7vw, 1.875rem);
  font-family: "Roboto", sans-serif;
  font-style: italic;
  background-color: var(--blue);
  display: inline-block;
  padding: 1%;
  letter-spacing: 0.03em;
}

.howto-txt01 {
  font-size: clamp(0.813rem, 0.653rem + 0.8vw, 1.25rem);
  font-weight: bold;
  line-height: 2.1;
  margin-top: 3%;
  letter-spacing: 0.1em;
}

.howto-txt02 {
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  padding: 0 10%;
  margin-top: 4%;
  line-height: 2;
  letter-spacing: 0.1em;
}

/*-------------------------------------------
point
-------------------------------------------*/

#point {
  background-color: var(--titleBg);
  margin-top: -4%;
  padding-top: 12%;
  padding-bottom: 10%;
}

.point-bg {
  background-image: url(../img/point-bg.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}

.inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.3rem;
  box-sizing: content-box;
}


.pb-01 {
  text-align: left;
}

.sec-sub-ttl {
  font-size: clamp(0.938rem, 0.597rem + 1.7vw, 1.875rem);
  font-family: "Roboto", sans-serif;
  font-style: italic;
  background-color: var(--blue);
  display: inline-block;
  color: var(--white);
  padding: 0.7%;
  letter-spacing: 0.1em;
  margin-top: -1%;
}

.sec-ttl {
  font-size: clamp(1.5rem, 0.773rem + 3.64vw, 3.5rem);
  color: var(--blue);
  letter-spacing: 0.1em;
  margin-top: 1%;
}

.point-box {
  width: 87%;
  background-color: var(--white);
  padding: 3%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 6%;
}

.point-text-area {
  color: var(--red);
  width: 45%;
}

.point-ttl-wrap {
  display: flex;
  align-items: center;
}

.point-ttl-num {
  width: 25%;
}

.point-ttl {
  font-size: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
  font-weight: bold;
  margin-left: 10%;
  margin-top: 5%;
}

.point-text {
  font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
  margin-top: 8%;
  line-height: 2;
}

.point-image-area {
  width: 46%;
}

.point-box.p-b-02 {
  margin: 3% auto 0;
}

.point-box.p-b-03 {
  margin-top: 3%;
  margin-left: auto;
}

.point-box.p-b-03 .point-text {
  margin-top: 11%;
}

/*-------------------------------------------
flow
-------------------------------------------*/

#flow {
  padding-top: 7%;
}

.sec-ttl-text {
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  font-weight: normal;
  margin-top: 1%;
  margin-bottom: 6%;
  line-height: 2;
}

.flow-header {
  background-color: var(--titleBg);
  padding: 0.5%;
}

.flow-ttl-wrap {
  color: var(--red);
  display: flex;
  align-items: flex-start;
}

.flow-ttl-num {
  font-size: clamp(1.25rem, 0.795rem + 2.27vw, 2.5rem);
  font-family: "Roboto", sans-serif;
  font-style: italic;
}

.flow-ttl {
  font-size: clamp(1.125rem, 0.807rem + 1.59vw, 2rem);
  font-weight: bold;
  margin-left: 1%;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.flow-content {
  position: relative;
  margin-top: 2%;
}

.grid {
  display: grid;
  gap: 65px;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(100px, auto);
}

.grid-item {
  width: 100%;
}

.grid-item-text {
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  margin-top: 2%;
}

.dli-arrow-down {
  display: inline-block;
  vertical-align: middle;
  color: var(--red);
  line-height: 1;
  position: relative;
  left: 1.5%;
  width: 0.2em;
  height: 27em;
  background: currentColor;
  margin-top: 1%;
}

.dli-arrow-down::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border: 0.1em solid currentColor;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
  transform-origin: bottom left;
  position: absolute;
  left: 50%;
  bottom: -0.05em;
  box-sizing: border-box;
}

.flow-content-inner {
  max-width: 1510px;
  position: absolute;
  width: 100%;
  top: 5%;
  left: 5%;
}

.flow-area {
  margin-top: 2%;
}

.dli-horizontal-line {
  display: inline-block;
  vertical-align: middle;
  color: var(--red);
  line-height: 1;
  position: relative;
  left: 1.5%;
  width: 0.2em;
  height: 26em;
  background: currentColor;
  margin-top: 1%;
}

.dli-horizontal-line::before {
  content: "";
  width: 1em;
  /* 横線の長さ */
  height: 0.2em;
  /* 横線の太さ */
  background: currentColor;
  position: absolute;
  left: 50%;
  bottom: -0.1em;
  /* 縦線の位置を調整 */
  transform: translateX(-50%);
}

/*-------------------------------------------
contact-area
-------------------------------------------*/
#contact-area {
  background-image: url(../img/contact-area-bg.png);
  background-position: center;
  background-size: cover;
  padding-top: 5%;
  padding-bottom: 5%;
  max-width: 1600px;
  margin: 8% auto 0;
}

.contact-area-wrap {
  display: flex;
  justify-content: center;
}

.contact-area-text {
  width: 44%;
  padding-left: 2%;
}

.contact-area-txt {
  font-size: clamp(1.25rem, 0.75rem + 2.5vw, 2.625rem);
  font-weight: bold;
  color: var(--white);
  line-height: 1.71;
  letter-spacing: 0.1em;
  margin-top: 4%;
}

.contact-area-info {
  margin-top: 3%;
  display: flex;
  color: var(--white);
}

.contact-area-info img {
  width: 13%;
}

.contact-area-tell {
  font-size: clamp(1.188rem, 0.801rem + 1.93vw, 2.25rem);
  font-family: "Roboto", sans-serif;
  font-style: italic;
  letter-spacing: 0.03em;
}

.contact-area-time {
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  font-weight: normal;
  letter-spacing: 0.1em;
}

.contact-area-image {
  display: flex;
  align-items: center;
  padding-left: 4%;
}

.contact-area-image img {
  width: 50%;
}

.contact-info-detail {
  margin-left: 2%;
}

#contact-area .sec-sub-ttl {
  margin-top: 0;
}

/*-------------------------------------------
footer
-------------------------------------------*/
#footer {
  margin-top: 5%;
  background-color: var(--titleBg);
  padding-bottom: 5%;
  font-weight: normal;
}

#footer .footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

#footer .footer-content {
  display: flex;
  justify-content: space-between;
  padding-top: 8%;
  padding-bottom: 2%;
}

#footer .footer-item {
  width: 30%;
}

#footer .footer-title img {
  width: 210%;
}

.footer-about-list {
  margin-top: 2%;
  width: 140%;
}

.about-address {
  margin-top: 20%;
}

.about-tell {
  margin-top: 5%;
}

.about-fax {
  margin-top: 2%;
}

.footer-item.f-i-01 {
  margin-left: 45%;
}

.footer-item.f-i-02 {
  margin-left: 2%;
}

.footer-item.f-i-03 {
  text-align: right;
}

#footer .footer-menu-list a {
  transition: all ease 0.3s;
}

#footer .footer-menu-list a:hover {
  opacity: 0.7;
}

#footer .footer-menu-list>li {
  padding-top: 6%;
  text-align: left;
}

#footer .copyright {
  font-size: clamp(0.688rem, 0.619rem + 0.34vw, 0.875rem);
}

#footer .footer-menu-list a::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1.5rem;
  background-image: url(../img/footer-arrow.png);
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
  margin-bottom: 0.2rem;
}

.sp {
  display: none;
}


@media screen and (min-width: 2100px) {
  .howto-box {
    max-width: 100%;
  }

  .howto-txt-box {
    padding-top: 6%;
    padding-left: 40%;
  }

  .howto-text {
    text-align: left;
  }

  .howto-txt02 {
    padding-left: 0;
  }

  .howto-image {
    left: 5%;
  }
}

@media screen and (max-width: 1799px) {
  .howto-txt-box {
    padding-left: 45%;
  }

  .howto-image {
    left: 2%;
    width: 45%;
    height: auto;
  }
}

@media screen and (max-width: 1599px) {
  .sub-inner {
    margin-bottom: 2rem;
  }

  .breadcrumb {
    margin-left: 10.5rem;
  }

  #point {
    padding: 10% 2% 10%;
  }

  .howto-image img {
    width: 100%;
    height: auto;
  }

  .howto-txt-box {
    text-align: left;
  }

  .howto-txt02 {
    padding-left: 0;
  }

  /* .howto-text {
    width: 100%;
  }

  .howto-txt-box {
    padding-left: 0;
  }

  .howto-image {
    top: 80%;
    left: 0;
    width: 100%;
  }

  .howto-image img {
    width: 100%;
    height: 600px;
    object-position: 0% 0%;
  } */

  .grid {
    gap: 3rem;
  }

  .flow-content-inner {
    max-width: 93%;
  }

  .flow-header {
    padding: 1%;
    padding-left: 3%;
  }

  .flow-title-wrap {
    padding: 0 4%;
  }
}

@media screen and (max-width: 1440px) {
  .site-title {
    position: fixed;
    top: 0;
    left: 0;
    padding: 1rem;
    background-color: var(--white);
    height: 90px;
    z-index: 999;
  }

  .site-title img {
    margin-top: 0;
    margin-left: 1rem;
    width: 13rem;
    height: auto;
  }

  #header {
    display: none;
  }

  #footer .footer-wrapper {
    padding: 0 2%;
  }

  .footer-item.f-i-01 {
    margin-left: 30%;
  }

  .footer-item.f-i-03 {
    text-align: left;
  }

  .course-business-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2% 10%;
  }

  .hamburger {
    display: block;
  }

  #navi.active img {
    width: 20%;
  }

  .sp-menu-cta-l.header-btn,
  .sp-menu-cta-r.header-btn {
    background-color: var(--red);
    display: inline-block;
    width: 35%;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
    transition: 0.3s;
    position: relative;
    border-radius: 20px;
  }

  #navi .sp-menu-cta-l.header-btn a,
  #navi .sp-menu-cta-r.header-btn a {
    color: var(--white);
  }

  .sp-menu-cta-r.header-btn {
    margin-top: 3%;
  }

  .sp-menu-cta {
    margin-top: 5%;
    display: flex;
    flex-direction: column;
  }

  .sp-menu-cta-r.header-btn {
    background-color: var(--blue);
  }

  .site-logo {
    padding-left: 2%;
  }

  #business-fv {
    width: 100%;
    padding-top: 50%;
    height: auto;
    margin-top: 90px;
  }
}

@media screen and (max-width: 1199px) {
  .howto-image {
    top: 80%;
    left: 0;
    width: 100%;
  }

  .howto-text {
    width: 100%;
    height: 45rem;
  }

  .howto-txt-box {
    padding-left: 5%;
  }

  .howto-image img {
    width: 100%;
    height: 600px;
    object-position: 0% 0%;
  }

  .dli-arrow-down {
    height: 20em;
  }


  #point {
    padding: 50% 2% 10%;
  }

  .inner.point-inner {
    box-sizing: border-box;
    padding: 0;
  }

  .point-box {
    flex-direction: column;
    width: 100%;
    padding: 3%;
  }

  .point-text-area {
    width: 100%;
  }

  .point-image-area {
    width: 100%;
    margin-top: 6%;
  }

  .point-ttl {
    margin-left: 2%;
    margin-top: 0;
  }

  .point-ttl-num {
    width: 7%;
  }

  .point-text {
    margin-top: 6%;
  }

  .point-box.p-b-02,
  .point-box.p-b-03 {
    margin: 7% auto 0;
  }

  .point-box.p-b-03 .point-text {
    margin-top: 5%;
  }

  .breadcrumb {
    margin-left: 10%;
  }

  #contact-area {
    height: auto;
    padding: 8% 4%;
  }

  .contact-area-image {
    text-align: center;
    padding-left: 0;
  }

  .contact-area-txt {
    line-height: 1.4;
  }

  .contact-area-info {
    margin-top: 5%;
    justify-content: center;
  }
}

@media screen and (max-width: 999px) {
  .howto-image {
    top: 70%;
  }
}

@media screen and (max-width: 878px) {
  .dli-arrow-down {
    height: 20em;
    display: none;
  }

  .howto-image {
    top: 65%;
  }

  #point {
    padding-top: 45%;
  }

  .dli-horizontal-line {
    display: none;
  }

  .grid {
    gap: 1rem;
  }

  .flow-content-inner {
    position: static;
  }

  .flow-content-inner {
    max-width: 90%;
    margin: 0 auto;
  }

  .contact-info-detail {
    margin-left: 5%;
  }
}

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

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

  .howto-image {
    top: 58%;
  }

  .howto-image img {
    height: 500px;
  }

  #point {
    padding: 30% 5% 10%;
  }

  .howto-txt01 {
    padding: 0 2%;
  }

  .flow-area {
    margin-top: 5%;
  }

  .course-business-box {
    padding: 4% 6%;
  }

  .site-title img {
    width: 12rem;
    height: auto;
    margin-left: 0;
  }

  .contact-area-wrap {
    flex-direction: column;
    align-items: center;
  }

  .contact-area-image {
    margin-top: 5%;
  }

  .contact-area-text {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }

  #footer .footer-content {
    flex-direction: column;
  }

  #footer .footer-title img {
    width: 50%;
  }

  .about-address {
    margin-top: 7%;
  }

  .footer-item.f-i-01,
  .footer-item.f-i-02,
  .footer-item.f-i-03 {
    margin-left: 0;
    margin-top: 5%;
  }

  #footer .copyright {
    text-align: center;
  }

  #footer .footer-content {
    padding-bottom: 10%;
  }

  #footer .footer-item {
    width: 100%;
  }

  .footer-about-list {
    width: 100%;
  }

  .sp-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    z-index: 1000
  }

  .sp-footer a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 60px
  }

  .sp-footer a span {
    position: relative;
    display: inline-block
  }

  .sp-footer .sp-f-left,
  .sp-footer .sp-f-right {
    width: 50%;
    height: 60px;
    padding-left: 35px;
    text-align: center
  }

  .sp-footer .sp-f-left a {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.2px
  }

  .sp-footer .sp-f-right a {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 1.2px
  }

  .sp-footer a span:before {
    content: "";
    position: absolute;
    top: 53%;
    left: -30px;
    transform: translateY(-50%);
    display: block;
    margin-right: 5px;
  }

  .sp-footer .sp-f-left a span:before {
    width: 20px;
    height: 20px;
    background: url(../img/tell-icon.png) no-repeat center center/cover
  }

  .sp-footer .sp-f-right a span:before {
    width: 25px;
    height: 32px;
    left: -38px;
    background: url(../img/cta-icon.png) no-repeat center center/cover
  }

  .sp-footer .sp-f-left {
    background: var(--blue);
  }

  .sp-footer .sp-f-right {
    background: var(--white);
    border: 1px solid var(--red);
  }


  .hamburger span {
    width: 2rem;
    height: 2px;
    left: 10px;
  }

  .hamburger.active span:nth-child(1) {
    left: 10px;
  }

  #navi.active img {
    width: 50%;
  }

  .sp-menu-cta-l.header-btn,
  .sp-menu-cta-r.header-btn {
    width: 100%;
  }

  .sp-menu-cta-r.header-btn {
    margin-top: 10%;
  }

  .about-tell {
    margin-top: 2%;
  }

  .footer-item.f-i-01 {
    margin-top: 7%;
  }

  #footer .footer-menu-list>li {
    padding-top: 2%;
  }

  .sp {
    display: block;
  }
}

@media screen and (max-width: 560px) {
  .point-box {
    padding: 4%;
  }

  .sp-footer .sp-f-left a {
    font-size: 0.875rem
  }

  .sp-footer .sp-f-right a {
    font-size: 0.875rem
  }
}

@media screen and (max-width: 499px) {
  main {
    margin-top: 2rem;
  }

  .howto-image img {
    height: 300px;
  }

  #point {
    padding-top: 45%;
    margin-top: -45%;
  }

  .flow-area {
    margin-top: 10%;
  }

  .howto-box {
    height: 50rem;
  }

  .howto-txt02 {
    padding: 0 2%;
  }

  #navi .sp-menu {
    margin: 3rem;
    margin-top: 5rem;
  }

  #navi .sp-menu li {
    margin-bottom: 2rem;
  }

  #navi .sp-menu li:nth-child(4) {
    margin-bottom: 3.5rem;
  }

  .site-title img {
    width: 7rem;
    height: auto;
  }

  .site-title {
    height: 70px;
  }

  #business-fv {
    margin-top: 70px;
  }

  .hamburger span {
    left: 22px;
  }

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

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

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

  .hamburger.active span:nth-child(1) {
    top: 37px;
    left: 22px;
  }

  .hamburger.active span:nth-child(2) {
    display: none;
  }

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

  .course-business-box {
    padding: 3% 6%;
  }



  .sp-menu-cta-l.header-btn,
  .sp-menu-cta-r.header-btn {
    height: 3rem;
    line-height: 3rem;
  }

  .breadcrumb li a {
    font-size: 0.85rem;
  }

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




/* ------------ TOPページ --------------*/

.fv-slogan-wrap {
  font-size: clamp(2.625rem, 1.648rem + 4.89vw, 5.313rem);
  font-weight: bold;
  color: var(--blue);
}

.fv-slogan01 {
  background-color: var(--white);
  padding: 0 1%;
  position: absolute;
  top: 256px;
  left: 9%;
  border-radius: 5px;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.fv-slogan02 {
  background-color: var(--white);
  padding: 0 1%;
  position: absolute;
  top: 382px;
  left: 16%;
  border-radius: 5px;
  letter-spacing: 0.05em;
  line-height: 1.3;
}


.fv-text {
  font-size: clamp(1rem, 0.682rem + 1.59vw, 1.875rem);
  font-weight: bold;
  color: var(--white);
  text-shadow: 0px 3px 13px rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 512px;
  left: 9%;
}


.main-visual__news {
  max-width: 1670px;
  margin: 0 auto;
  display: flex;
  position: absolute;
  width: 100%;
  bottom: .375rem;
  left: 7.375rem;
  right: 4.5rem;
  z-index: 3;
  margin-bottom: 1%;
  height: 4rem;
}

.main-visual__news-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8%;
  bottom: 0;
  left: 0;
  margin-bottom: 0;
  background: var(--blue);
  font-size: clamp(1rem, 0.682rem + 1.59vw, 1.875rem);
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: normal;
  color: #fff;
  border-radius: 5px 0 0 5px;

}

.main-visual__news-time {
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  font-weight: bold;
  white-space: nowrap;
}

.main-visual__news-text {
  display: flex;
  width: calc(100% - 11%);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0 5px 5px 0;
  padding-left: 2%;
}

.main-visual__news-title {
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  white-space: nowrap;
  margin-left: 10%;
}

.main-visual__news-link.text-body {
  display: flex;
  align-items: center;
}

.howto-image.home-howto-iamge {
  left: auto;
  right: -3%;
}

.howto-text.home-howto-text {
  background-image: url(../img/know-how-home-bg.png);
  margin-left: 0;
  position: relative;
  z-index: 1;
  height: 54rem;
}

.howto-txt-box.home-howto-txt-box {
  padding-left: 10%;
  padding-right: 40%;
  text-align: left;
}

.howto-txt02.home-howto-txt02 {
  padding: 0;
  margin-top: 5%;
}

#home main {
  margin-top: 0;
}

#home .howto-box {
  margin-top: 0;
  margin-left: 0;
  max-width: 90%;
}



.howto-txt01.home-howto-txt01 {
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  margin-top: 7%;
}

#home .howto-subtext {
  padding: 0.3% 1%;
}

.ttl-wrap {
  display: flex;
  justify-content: space-around;
  max-width: 1400px;
}

.ttl-text {
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  line-height: 2;
  margin-top: -2%;
  margin-left: 10%;
}

.ttl-content {
  white-space: nowrap;

}

#home .point-ttl-wrap {
  color: var(--blue);
}

#home #point {
  position: relative;
  padding-bottom: 17%;
}

.human-bg {
  width: 27rem;
  position: absolute;
  bottom: 5%;
  left: 1%;
}

#home .point-box.p-b-01 .point-text {
  margin-top: 9%;
}

#home .point-box.p-b-01 .point-ttl-num {
  width: 27%;
}

#home .point-box.p-b-02 .point-ttl-num {
  width: 32%;
}

#home .point-box.p-b-03 .point-ttl-num {
  width: 30%;
}


#home .point-box.p-b-03 .point-ttl-wrap {
  margin-top: 4%;
}

#home .point-box.p-b-03 .point-ttl {
  margin-top: 0%;
  margin-left: 6%;
  letter-spacing: 0.05em;
}

#home .point-box.p-b-03 .point-text {
  margin-top: 7%;
}

.more-btn-image {
  width: 8.75rem;
}

#home .point-box {
  position: relative;
}

.more-btn-wrap {
  position: absolute;
  top: 81%;
  left: 37%;
  transform: translateY(-50%) translateX(-50%);
}

.more-btn {
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  font-weight: bold;
  color: var(--red);
}

.details-inner {
  max-width: 1200px;
  margin: 0 auto;
}

#product-details {
  background-image: url(../img/product-details-bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 47rem;
  margin-top: -7.5%;
  max-width: 1760px;
  position: relative;
  z-index: 10;
}

#product-details .sec-sub-ttl {
  background: var(--red);
  color: var(--white);
}

#product-details .sec-ttl,
#product-details .details-text {
  color: var(--white);
}

.details-ttl {
  padding-top: 13%;
  padding-left: 7%;
}

.details-text {
  margin-top: 2%;
  width: 75%;
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  letter-spacing: 0.05em;
  line-height: 2;
}


.section-lineup {
  overflow: hidden;
}

.section-lineup .inner {
  margin: 0 auto;
  max-width: 1560px;
  padding-left: 8.5rem;
  padding-right: 2rem;
}

.section-lineup .lineup {
  position: relative;
}

.section-lineup .lineup-carousel li {
  text-align: center;
  margin-right: 2.8rem;
}

.section-lineup .lineup-carousel img {
  display: block;
  width: 100%;
}

.section-lineup {
  overflow: hidden;
  padding: 0;
  padding-left: 5.5%;
  margin-top: -9%;
  position: relative;
  z-index: 99;
}

.section-lineup .slick-list {
  overflow: visible;
}

.lineup-text-wrap {
  background-color: var(--red);
  text-align: center;
  position: relative;
}

.lineup-text {
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  font-weight: bold;
  text-align: left;
  color: var(--white);
  padding: 4%;
  padding-left: 17%;
  line-height: 2;
  transition: all ease 0.3s;
  letter-spacing: 0.05em;
}

.lineup-text::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 1.375rem;
  height: 1.5rem;
  background-image: url(../img/lineup-arrow.png);
  background-size: contain;
  vertical-align: middle;
  top: 25%;
  left: 4%;
}

.lineup-text-wrap:hover {
  background-color: var(--blue);
}


.slide-arrow.prev-arrow.slick-arrow.slick-disabled,
.slide-arrow.prev-arrow.slick-arrow,
.slide-arrow.next-arrow.slick-arrow {
  width: 4.3rem;
}

.arrow_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 4% 0 0;
  position: relative;
}

.slide-arrow.next-arrow.slick-arrow {
  margin-left: 2%;
  cursor:pointer;
}

.slide-arrow.prev-arrow.slick-arrow {
  position: absolute;
  top: 0;
  right: 7%;
  cursor:pointer;
}

#infomation {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 7.5%;
  padding-top: 4%;
  padding-bottom: 1.3%;
  border-top: 1.5px solid #0140AC;
  border-bottom: 1.5px solid #0140AC;
}

.infomation-ttl-wrap {
  display: flex;
  align-items: center;
}

.infomation-text {
  margin-top: 3rem;
  margin-left: 5.8rem;
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  color: var(--blue);
}

.infomation-text::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1.5rem;
  background-image: url(../img/blue-arrow.png);
  background-size: contain;
  vertical-align: middle;
  margin-left: 31px;
  margin-top: 0.2rem;
}

#infomation dl {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.8rem;
}

#infomation dt {
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  width: 13%;
  padding: 1rem;
  margin-left: 0.5rem;
  margin-bottom: 1.5rem;
}

#infomation dd {
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  width: 86%;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

#infomation .sec-sub-ttl {
  padding: 0.7% 1.5%;
}

.infomation-date02,
.infomation-detail02,
.infomation-date03,
.infomation-detail03,
.infomation-date04,
.infomation-detail04,
.infomation-date05,
.infomation-detail05 {
  margin-top: -1rem;
}


.infomation-date01:hover,
.infomation-detail01:hover,
.infomation-date01.hover,
.infomation-detail01.hover {
  background-color: #F3F3F3;
  color: var(--blue);
}

.infomation-date02:hover,
.infomation-detail02:hover,
.infomation-date02.hover,
.infomation-detail02.hover {
  background-color: #F3F3F3;
  color: var(--blue);
}

.infomation-date03:hover,
.infomation-detail03:hover,
.infomation-date03.hover,
.infomation-detail03.hover {
  background-color: #F3F3F3;
  color: var(--blue);
}

.infomation-date04:hover,
.infomation-detail04:hover,
.infomation-date04.hover,
.infomation-detail04.hover {
  background-color: #F3F3F3;
  color: var(--blue);
}

.infomation-date05:hover,
.infomation-detail05:hover,
.infomation-date05.hover,
.infomation-detail05.hover {
  background-color: #F3F3F3;
  color: var(--blue);
}

@media screen and (min-width: 2100px) {

  #home .howto-txt-box.home-howto-txt-box {
    padding-top: 6%;
  }

  #home .howto-text.home-howto-text {
    height: 60rem;
  }

  #home .howto-image.home-howto-iamge {
    left: auto;
    right: 2%;
    width: 50rem;
  }

}


@media screen and (max-width: 1799px) {
  #home .main-visual__news {
    width: 90%;
    left: 0;
    bottom: 1.75rem;
    margin-left: 5%;
  }

  #home .main-visual__news-heading {
    width: 10%;
  }

  #home .main-visual__news-text {
    width: 100%;
  }

  /* 
  #home .howto-image {
    width: 100%;
    height: auto;
  }

  #home .howto-text.home-howto-text {
    width: 100%;
  }

  #home .howto-box {
    max-width: 100%;
  }

  #home .howto-image.home-howto-iamge {
    top: 90%;
    left: 0;
  }

  #home .howto-image img {
    height: 42rem;
    object-position: 10% 0%;
  }

  #home .howto-txt-box.home-howto-txt-box {
    padding: 5%;
  } */
  .howto-txt-box.home-howto-txt-box {
    padding-left: 4%;
  }

  .howto-image.home-howto-iamge {
    left: auto;
    right: -5%;
  }

  .howto-image {
    width: 45%;
    height: auto;
  }

  #home #point {
    margin-top: -5%;
  }

  #home .howto-txt01.home-howto-txt01 {
    margin-top: 5%;
  }

  #home-fv {
    height: 820px;
  }

  #home .human-bg {
    width: 20rem;
    bottom: 3%;
  }

  #product-details {
    background-size: contain;
  }

  @media screen and (max-width: 1799px) {
    #mainvisual {
      min-height: 820px;
    }

    #mainvisual .fade li img {
      height: 820px;
    }
  }
}

@media screen and (max-width: 1599px) {
  #home #point {
    margin-top: -5%;
    padding: 0 4%;
    padding-top: 10%;
    padding-bottom: 8%;
  }

  .howto-image.home-howto-iamge {
    left: auto;
    right: -9%;
  }

  #home .howto-image img {
    width: 100%;
    height: auto;
  }

  #home .human-bg {
    width: 15rem;
    bottom: 0%;
  }

  #home .point-ttl {
    white-space: nowrap;
  }

  #home .howto-image {
    top: 17%;
  }

  #product-details {
    margin-top: -2.5%;
  }
}

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

  .howto-txt-box.home-howto-txt-box {
    padding-right: 30%;
  }
}

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

  #home .point-box.p-b-01 .point-ttl-num {
    width: 20%;
  }

  #home .point-box.p-b-02 .point-ttl-num {
    width: 23%;
  }

  #home .point-box.p-b-03 .point-ttl-num {
    width: 23%;
  }

  .details-text {
    width: 65%;
  }

  #infomation {
    padding: 0 2%;
    padding-top: 4%;
  }

  .howto-txt-box.home-howto-txt-box {
    padding-left: 2%;
  }



  #home .howto-image {
    width: 42%;
  }

  #home .howto-image {
    top: 25%;
    right: -10%;
  }
}

@media screen and (max-width: 1299px) {
  #home #point {
    margin-top: -5%;
  }

  .slide-arrow.prev-arrow.slick-arrow {
    right: 9%;
  }

  #product-details {
    margin-top: -1.5%;
  }

  .howto-txt-box.home-howto-txt-box {
    padding-right: 25%;
  }

}

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

  #home .point-box.p-b-01 .point-ttl-num,
  #home .point-box.p-b-02 .point-ttl-num,
  #home .point-box.p-b-03 .point-ttl-num {
    width: 10%;
  }


  #home .point-text {
    font-size: 1.2rem;
    line-height: 1.7;
  }

  #home .point-image-area {
    margin-top: 15%;
  }


  #home .point-box.p-b-01 .point-text,
  #home .point-box.p-b-03 .point-text {
    margin-top: 5%;
  }

  #home .point-box.p-b-03 .point-ttl-wrap {
    margin-top: 0%;
  }

  #home .more-btn-image {
    width: 5.75rem;
  }

  #home .more-btn-wrap {
    top: 22%;
    left: 70%;
    transform: none;
  }

  #home .human-bg {
    display: none;
  }

  #product-details {
    background-size: auto;
  }

  .lineup-text {
    padding-left: 10%;
  }

  .details-text {
    width: 95%;
  }

  .section-lineup {
    padding-left: 3.5%;
    margin-top: -15%;
  }

  #infomation dt {
    width: 20%;
    margin-left: 0;
  }

  #infomation dd {
    width: 80%;
  }

  .lineup-text::before {
    display: none;
  }

  #home .howto-box {
    max-width: 100%;
  }

  #home .howto-txt-box.home-howto-txt-box {
    padding-right: 2%;
    padding-left: 2%;
  }

  #home .howto-image {
    top: 85%;
    right: 0%;
    width: 100%;
  }

  #point {
    padding: 63% 4% 10%;
  }

  #home .point-box {
    padding: 4%;
  }

  #home #point {
    margin-top: 60%;
  }

  .howto-image {
    width: 100%;
  }
}


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

  #home .howto-txt-box.home-howto-txt-box {
    padding: 4%;
  }


  #home .howto-image.home-howto-iamge {
    top: 75%;

  }

  #home .howto-image img {
    height: 600px;
  }

  #home #point {
    margin-top: 35%;
  }

  #home .point-text {
    font-size: 1.1rem;
  }

  z .lineup-text {
    padding-left: 20%;
  }

  .lineup-text::before {
    display: block;
    left: 6%;
  }

  .section-lineup {
    padding-left: 3.5%;
    margin-top: -20%;
  }
}

@media screen and (max-width: 999px) {
  #home .main-visual__news-heading {
    width: 15%;
  }

  #home .fv-text {
    top: 65%;
  }

  #home .howto-txt-box.home-howto-txt-box {
    padding: 4%;
    padding-top: 7%;
  }

  #home .lineup-text {
    font-size: 1.3rem;
  }

  #home #point {
    margin-top: 38%;
  }

  .slide-arrow.prev-arrow.slick-arrow {
    right: 15%;
  }

  .section-lineup {
    margin-top: -25%;
  }
}

@media screen and (max-width: 899px) {
  #home #point {
    margin-top: 42%;
  }

  .section-lineup {
    margin-top: -35%;
  }
}

@media screen and (max-width: 768px) {
  #mainvisual {
    min-height: 700px;
  }

  #mainvisual .fade li img {
    height: 700px;
  }

  #home .main-visual__news-heading {
    width: 15%;
  }

  #home .fv-slogan01 {
    top: 35%;
    padding: 0 2%;
  }

  #home .fv-slogan02 {
    top: 50%;
    padding: 0 2%;
  }

  #home .howto-image img {
    height: 500px;
  }

  #home .howto-image.home-howto-iamge {
    top: 70%;
  }

  #home .ttl-wrap {
    flex-direction: column;
  }

  #home .ttl-text {
    margin-top: 3%;
    margin-left: 0;
  }

  #home #point {
    margin-top: 30%;
  }

  #home .point-text {
    font-size: 1rem;
  }

  #home .more-btn-image {
    width: 4.75rem;
  }

  #home .more-btn-wrap {
    top: 22.5%;
  }

  .slide-arrow.prev-arrow.slick-arrow {
    right: 20%;
  }

  .section-lineup {
    margin-top: -40%;
  }
}

@media screen and (max-width: 699px) {
  #home #point {
    margin-top: 36%;
  }

  #home .more-btn-wrap {
    top: 23.5%;
  }

  #home .more-btn-wrap {
    left: 65%;
  }

  .section-lineup {
    margin-top: -45%;
  }
}

@media screen and (max-width: 599px) {
  #mainvisual {
    min-height: 600px;
  }

  #mainvisual .fade li img {
    height: 600px;
  }

  #home .main-visual__news-link.text-body {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 2%;
  }

  .main-visual__news-title {
    margin-left: 0;
  }

  #home .howto-image.home-howto-iamge {
    top: 65%;
  }

  #home .howto-image img {
    height: auto;
  }

  #home .howto-text.home-howto-text {
    height: 50rem;
  }

  #home #point {
    margin-top: 20%;
  }

  #home .point-text {
    font-size: 0.9rem;
  }

  #home .more-btn-image {
    width: 3.5rem;
  }

  #home .more-btn-wrap {
    top: 24.5%;
  }

  #home .more-btn-wrap {
    left: 65%;
  }

  .section-lineup {
    margin-top: -60%;
  }

  #home .lineup-text {
    font-size: 1rem;
  }

  .slide-arrow.prev-arrow.slick-arrow {
    right: 25%;
  }

  #infomation dl {
    flex-direction: column;
  }

  #infomation dt {
    margin-bottom: 0;
    padding: 0;
  }

  #infomation dd {
    padding: 0;
    padding-top: 0.5%;
    padding-bottom: 2%;
    margin-bottom: 1rem;
  }

  .infomation-date02,
  .infomation-detail02,
  .infomation-date03,
  .infomation-detail03,
  .infomation-date04,
  .infomation-detail04,
  .infomation-date05,
  .infomation-detail05 {
    margin-top: 0rem;
  }

  .lineup-text {
    padding-left: 20%;
  }

  .lineup-text::before {
    display: block;
  }

  .infomation-text::after {
    width: 0.8rem;
    height: 1.2rem;
    margin-left: 20px;
    margin-top: 0.2rem;
  }

  #infomation dt {
    width: 25%;
  }

  #infomation {
    padding: 0 4%;
    padding-top: 4%;
  }

}

@media screen and (max-width: 549px) {
  #home #point {
    margin-top: 14%;
  }
}

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

  #home .main-visual__news-heading {
    width: 20%;
  }

  #home .fv-text {
    top: 62%;
    left: 7%;
  }

  #home .fv-slogan02 {
    top: 48%;
  }

  #home .howto-image.home-howto-iamge {
    top: 70%;
  }

  #home #point {
    margin-top: 21%;
  }

  #home .howto-txt-box.home-howto-txt-box {
    padding-top: 10%;
  }

  #home .point-image-area {
    margin-top: 25%;
  }

  #home .more-btn {
    width: 3.5rem;
  }

  #home .more-btn-wrap {
    left: 55%;
  }

  #home .more-btn-wrap {
    top: 30.5%;
  }

  .section-lineup {
    margin-top: -70%;
  }

  .slide-arrow.prev-arrow.slick-arrow.slick-disabled,
  .slide-arrow.prev-arrow.slick-arrow,
  .slide-arrow.next-arrow.slick-arrow {
    width: 3.5rem;
  }
}

@media screen and (max-width: 449px) {
  .section-lineup {
    margin-top: -83%;
  }

  .arrow_box {
    margin: 5.5% 0 0;
  }

  .slide-arrow.prev-arrow.slick-arrow {
    right: 28%;
  }

  #home .lineup-text {
    font-size: 0.8rem;
  }

  .section-lineup .inner {
    padding-left: 3.5rem;
  }

  .section-lineup .lineup-carousel li {
    text-align: center;
    margin-right: 1rem;
  }

  #home #point {
    margin-top: 17%;
  }
}

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

  .section-lineup {
    margin-top: -92%;
  }

  #home .howto-image.home-howto-iamge {
    top: 73%;
  }

  #mainvisual {
    min-height: 550px;
  }

  #mainvisual .fade li img {
    height: 550px;
  }

  #home .fv-text {
    left: 5%;
  }

  #home #point {
    margin-top: 17%;
  }

  #home .more-btn-wrap {
    top: 33.5%;
  }

  #home .more-btn-wrap {
    left: 50%;
  }

  #home .more-btn-image {
    width: 3.3rem;
  }

  #home .main-visual__news-heading {
    width: 25%;
  }
}



/* ------------ 製品紹介 --------------*/

#products {
  padding-top: 5%;
}

#parts-area {
  background-color: var(--titleBg);
  margin-top: -4%;
  padding-top: 12%;
  padding-bottom: 10%;
}

.parts-item-grid {
  display: grid;
  gap: 5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.parts-item-ttl {
  color: var(--red);
  font-size: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
  margin-top: 1rem;
}

.parts-item-text {
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  line-height: 2;
  margin-top: 0.8rem;
}

.products-inner {
  max-width: 1200px;
  margin: 0 auto;
}

select {
  display: block;
  margin-bottom: 3.75rem;
  padding: 1.5rem 27rem 1.5rem 2rem;
  font-size: clamp(0.813rem, 0.653rem + 0.8vw, 1.25rem);
  font-weight: bold;
  border: 2.5px solid #d0d2d5;
  border-radius: 5px;
}

.select-area {
  position: relative;
  display: inline-block;
}

.select-box__item::-ms-expand {
  display: none;
}

.select-area::before {
  content: '';
  position: absolute;
  right: 2em;
  /* アイコンの位置を調整 */
  top: 30%;
  transform: translateY(-50%) rotate(135deg);
  display: inline-block;
  width: 0.5em;
  /* アイコンのサイズを調整 */
  height: 0.5em;
  /* アイコンのサイズを調整 */
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  pointer-events: none;
  /* アイコンがクリックを受けないようにする */
  color: #333;
}

.products-grid {
  display: grid;
  gap: 2.3rem;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.product-item {
  background-color: var(--red);
  color: var(--white);
  border-radius: 0 0 5px 5px;
}

.products-image-wrap {
  padding: 0.875rem;
  padding-bottom: 0;
}

.products-image-wrap img {
  border-radius: 5px;
  height: 210px;
  object-fit: cover;
}

.products-info {
  padding: 6.5% 2%;
}

.products-info-ttl {
  margin-bottom: 0.9rem;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: bold;
  letter-spacing: 0.05em;
  text-indent: -1em;
  padding-left: 2em;
}

.products-info-text01 {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  letter-spacing: 0.05em;
  margin-bottom: 0.625rem;
  text-indent: 1.5em;
}

.products-info-text02 {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  letter-spacing: 0.05em;
  padding-left: 1.5em;
}

.products-info-ttl::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1.5rem;
  background-image: url(../img/white-arrow.png);
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
  margin-bottom: 0.2rem;
}

#product .howto-box {
  max-width: 90%;
}

@media screen and (min-width: 2100px) {
  #product .howto-image {
    left: -3%;
  }

  #product .howto-txt-box {
    padding-top: 6%;
    text-align: left;
  }

  #product .howto-txt02 {
    padding: 0;
    text-align: left;
  }
}

@media screen and (max-width: 1799px) {
  #product .howto-image {
    width: 45%;
    height: auto;
  }
}

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

  #product .howto-txt-box {
    padding-left: 40%;
  }

  #product .howto-image {
    top: 17%;
    left: -7%;
  }

  #product .howto-image img {
    height: auto;
  }
}

@media screen and (max-width: 1299px) {
  #product .howto-image {
    top: 25%;
  }
}

@media screen and (max-width: 1199px) {
  #product .howto-box {
    max-width: 100%;

  }

  #product .howto-txt-box {
    padding: 0 2%;
    padding-top: 7%;
  }

  #product .howto-image {
    width: 100%;
    top: 78%;
    left: 0;
  }

  #product .howto-image {
    top: 68%;
  }

  .products-inner {
    padding: 0 4%;
  }

  #parts-area {
    padding-top: 60%;
  }

  .parts-item-grid {
    gap: 2rem;
  }
}

@media screen and (max-width: 999px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media screen and (max-width: 859px) {
  #product .howto-image {
    top: 60%;
  }

  #parts-area {
    padding-top: 50%;
  }

  select {
    padding-right: 20rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .select-area::before {
    top: 50%;
  }
}

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

  #parts-area {
    padding-top: 40%;
    margin-top: -10%;
  }

  select {
    padding-right: 13rem;
  }
}

@media screen and (max-width: 599px) {
  #product .howto-image {
    top: 55%;
  }

  #parts-area {
    padding-top: 20%;
  }

}

@media screen and (max-width: 499px) {
  #parts-area {
    padding-top: 25%;
  }

  select {
    padding: 1rem 10rem 1rem 2rem;
  }
}

@media screen and (max-width: 449px) {
  #parts-area {
    padding-top: 15%;
  }
}

@media screen and (max-width: 399px) {
  #product .howto-image {
    top: 50%;
  }

  #product .howto-text {
    height: 40rem;
  }

  #parts-area {
    margin-top: -38%;
  }
}


/* ------------ 海外拠点 --------------*/

#abroad .howto-box {
  margin-top: -1%;
}

#abroad .howto-subtext {
  padding: 1% 4%;
}

#abroad #parts-area {
  padding-top: 8.5%;
}

.common-tb-wrap {
  margin-top: 4rem;
}

.common-tb {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

#abroad .common-tb th {
  width: 16.5%;
  background: var(--blue);
  border-bottom: 1px solid var(--white);
  vertical-align: middle;
  font-size: clamp(0.9rem, 0.714rem + 0.68vw, 1.125rem);
  font-weight: bold;
  text-align: center;
  color: var(--white);
}

#abroad .common-tb td {
  padding: 1% 3%;
  border-bottom: 1px solid #D0D2D5;
  font-size: clamp(0.9rem, 0.714rem + 0.68vw, 1.125rem);
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.1em;
}

#abroad .common-tb-ttl02 {
  padding-bottom: 2%;
}

.common-tb .common-tb-ttl04 {
  vertical-align: top;
}

.common-tb .common-tb-text04 {
  line-height: 1.3;
  padding: 1.2rem 6.9rem 2.3rem 4.7rem;
}

.common-tb .common-tb-ttl05 {
  vertical-align: top;
}

.common-tb .common-tb-ttl07 {
  vertical-align: baseline;
}

.common-tb .common-tb-text07 {
  line-height: 1.3;
}

#abroad .common-tb-ttl02 {
  padding-bottom: 2%;
}

.abroad-grid {
  margin-top: 12.5%;
  display: grid;
  gap: 2.3rem;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.abroad-grid-item img {
  border-radius: 5px;
}


#abroad .common-tb-ttl10 {
  padding-bottom: 10%;
}

.abroad-info {
  margin-top: 5%;
}

.abroad-info-text {
  font-size: clamp(0.813rem, 0.653rem + 0.8vw, 1.25rem);
  font-weight: normal;
}

.abroad-info-text02,
.abroad-info-text03 {
  padding-left: 5%;
}

#address-area {
  padding: 0 2%;
  padding-top: 6%;
  max-width: 1280px;
  margin: 0 auto;
}

.address-title-wrap {
  margin-bottom: 2rem;
}

.address-image-wrap {
  margin-bottom: 3.75rem;
}

.address-image-wrap:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 1599px) {
  #abroad .howto-txt-box {
    padding-top: 11%;
  }

  #abroad .howto-box {
    height: 47rem;
  }

  #abroad .howto-text {
    height: 47rem;
  }

  #abroad #parts-area {
    margin-top: -5%;
  }
}

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

  #abroad .howto-text {
    height: 40rem;
  }

  #abroad #parts-area {
    margin-top: -13%;
  }
}

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

  #abroad .howto-txt-box {
    padding-top: 5%;
    padding-left: 45%;
  }

  #abroad .howto-image img {
    height: auto;
  }

  #abroad .howto-image {
    top: 7%;
    left: 2%;
    width: 40%;
    height: auto;
  }

  #abroad .howto-text {
    height: 30rem;
  }

  #abroad #parts-area {
    margin-top: -33%;
  }
}

@media screen and (max-width: 999px) {
  #abroad #parts-area {
    padding-top: 8.5%;
  }

  .abroad-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  #abroad .howto-text {
    height: 25rem;
  }

  #abroad #parts-area {
    margin-top: -45%;
  }
}


@media screen and (max-width: 768px) {
  #company .management-ttl-wrap .section-title {
    text-align: center;
  }

  #abroad .howto-txt-box {
    padding-top: 5%;
    padding-left: 5%;
  }

  #abroad .howto-image {
    top: 43%;
    left: 0;
    width: 100%;
    height: auto;
    text-align: center;
  }

  #abroad .howto-image img {
    width: 90%;
    height: auto;
  }

  #abroad .howto-text {
    height: 45rem;
  }

  #abroad .point-bg {
    margin-top: -50%;
  }

  #abroad #parts-area {
    padding-top: 60.5%;
  }
}

@media screen and (max-width: 699px) {
  #abroad #parts-area {
    margin-top: -65%;
  }
}

@media screen and (max-width: 599px) {
  #abroad .howto-text {
    height: 40rem;
  }

  #abroad .point-bg {
    margin-top: -70%;
  }

  .abroad-grid {
    margin-top: 13%;
  }

  #address-area {
    margin-top: 10%;
    padding: 0 7%;

  }
}

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

  .common-tb th,
  .common-tb td {
    width: 100%;
    display: block;
  }

  .common-tb td {
    text-align: center;
  }

  #abroad .common-tb th {
    width: 100%;
    padding: 3%;
    text-align: left;
  }

  #abroad .common-tb-ttl02,
  #abroad .common-tb-ttl10 {
    padding-bottom: 0;
  }

  #abroad .common-tb .common-tb-ttl01 {
    padding-left: 9%;
  }

  #abroad .common-tb td {
    padding: 3%;
    text-align: left;
  }

  #abroad .howto-image img {
    width: 80%;
  }

  #abroad .howto-image {
    top: 38%;
    text-align: center;
  }

  .address-image-wrap {
    margin-bottom: 2.75rem;
  }

  #abroad #parts-area {
    margin-top: -85%;
  }

  #abroad .howto-txt-box {
    padding-top: 7%;
  }
}

@media screen and (max-width: 499px) {
  #abroad .howto-text {
    height: 35rem;
  }

  #abroad .point-bg {
    margin-top: -85%;
  }

  #abroad #parts-area {
    margin-top: -100%;
  }

  #abroad .howto-txt-box {
    padding-top: 12%;
  }

}

@media screen and (max-width: 449px) {
  #abroad #parts-area {
    margin-top: -110%;
  }
}


/* ------------ 会社概要 --------------*/

.howto-btn-wrap {
  margin-top: 13%;
  margin-left: 12%;
}

.howto-btn {
  position: relative;
  font-size: clamp(0.813rem, 0.653rem + 0.8vw, 1.25rem);
  color: var(--red);
  background-color: var(--white);
  display: inline-block;
  width: 20rem;
  height: 3.1rem;
  line-height: 3.1rem;
  text-align: center;
  transition: 0.3s;
  position: relative;
  border-radius: 20px;
  margin-left: 2%;
}

.howto-btn:hover {
  color: var(--white);
  background-color: var(--red);
  border: 1px solid var(--white);
  transform: translateY(-1px);
}

.howto-btn-l::after,
.howto-btn-c::after,
.howto-btn-r::after {
  position: absolute;
  top: 60%;
  right: 10%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1.5rem;
  background-image: url(../img/btn-arrow-red.png);
  background-size: contain;
  vertical-align: middle;
  margin-left: 2%;
}

.howto-btn-c:hover:after,
.howto-btn-c:hover:after,
.howto-btn-r:hover::after {
  background-image: url(../img/btn-arrow-white.png);
}

#company .howto-text {
  height: 61rem;
}

#company #parts-area {
  padding-top: 16.5%;
  background-color: var(--white);
}

.common-tb-wrap {
  margin-top: 4rem;
}

.common-tb {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

#company .common-tb th {
  width: 16.5%;
  background: var(--blue);
  border-bottom: 1px solid var(--white);
  vertical-align: middle;
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  font-weight: bold;
  text-align: center;
  color: var(--white);
}

#company .common-tb td {
  padding: 1% 3%;
  border-bottom: 1px solid #D0D2D5;
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.1em;
}

#company .common-tb-ttl02 {
  padding-bottom: 2%;
}

.common-tb .common-tb-ttl04 {
  vertical-align: top;
}

.common-tb .common-tb-text04 {
  line-height: 1.3;
  padding: 1.2rem 6.9rem 2.3rem 4.7rem;
}

.common-tb .common-tb-ttl05 {
  vertical-align: top;
}

.common-tb .common-tb-ttl07 {
  vertical-align: baseline;
}

.common-tb .common-tb-text07 {
  line-height: 1.3;
}

#company .common-tb-ttl02 {
  padding-bottom: 2%;
}

.company-map-ttl {
  font-size: clamp(1.125rem, 0.807rem + 1.59vw, 2rem);
  background-color: var(--titleBg);
  color: var(--red);
  margin-top: 13%;
  padding: 1% 2%;
}

.company-map-wrap {
  margin-top: 5%;
}

iframe {
  width: 100%;
  height: 590px;
}


#history {
  margin-top: -2.5%;
  padding-top: 8.5%;
  padding-bottom: 10%;
  background-color: var(--titleBg);
}

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



.timeline-entry {
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  display: flex;
  align-items: center;
  margin-top: 2.5%;
  margin-bottom: 1rem;
  position: relative;
}

.year {
  font-weight: bold;
  flex-shrink: 0;
  text-align: right;
  margin-right: 3rem;
}

.event {
  padding: 1% 5%;
  letter-spacing: 0.05em;
  flex-grow: 1;
}

.timeline-entry::before {
  content: '';
  position: absolute;
  left: 10.5%;
  width: 15px;
  height: 15px;
  background-color: red;
  border-radius: 50%;
}

.timeline-entry::after {
  content: '';
  position: absolute;
  left: 11%;
  top: 54%;
  bottom: -120%;
  width: 2px;
  background-color: red;
}

.timeline-entry:last-child::after {
  display: none;
}


#facillity {
  margin-top: 9%;
}

.table-container {
  margin-top: 5%;
  max-width: 1200px;
  width: 100%;
  background-color: var(--white);
  overflow-x: auto;
}

#facillity table {
  width: 100%;
  border-collapse: collapse;
}

#facillity thead {
  background-color: var(--red);
  color: white;
}

#facillity th,
#facillity td {
  padding: 1rem;
  border: 1px solid #D0D2D5;
  text-align: center;
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  font-weight: bold;
}



#company .howto-subtext {
  padding: 1% 4%;
}

#company .howto-ttl {
  margin-top: 1%;
}

#company .howto-txt02 {
  text-align: left;
}

.timeline:nth-last-of-type(2) {
  margin-top: 5%;
}

.timeline-entry.timeline-entry02 {
  margin-top: -1%;
}


.timeline-entry.timeline-entry03 .year {
  margin-top: -2%;
}

.timeline-entry.timeline-entry03::before {
  top: 25%;
}

.timeline-entry.timeline-entry03,
.timeline-entry.timeline-entry04,
.timeline-entry.timeline-entry05 {
  margin-top: -0.5%;
}

.timeline-entry.timeline-entry06 {
  margin-top: -1%;
}

.timeline-entry.timeline-entry07 {
  margin-top: -2%;
}

.timeline-entry.timeline-entry07 .event {
  padding-top: 2%;
}

.timeline-entry.timeline-entry08,
.timeline-entry.timeline-entry11,
.timeline-entry.timeline-entry16 {
  margin-top: 0;
}

.timeline-entry.timeline-entry09,
.timeline-entry.timeline-entry10,
.timeline-entry.timeline-entry12,
.timeline-entry.timeline-entry13,
.timeline-entry.timeline-entry14,
.timeline-entry.timeline-entry15,
.timeline-entry.timeline-entry18,
.timeline-entry.timeline-entry19 {
  margin-top: -1%;
}

.timeline-entry.timeline-entry17 {
  margin-top: -3%;
}

.timeline-entry.timeline-entry17 .event {
  padding-top: 3%;
  line-height: 1.8;
}

.timeline-entry.timeline-entry17 .year {
  margin-top: -4%;
}

.timeline-entry.timeline-entry17::before {
  top: 25%;
}

#history {
  padding-bottom: 8%;
}

#facillity .company-map-ttl {
  margin-top: 3%;
}

#facillity .table-head01 .t-head-01 {
  width: 9%;
  padding: 0 1rem;
}

#facillity .table-head01 .t-head-02 {
  padding: 0;
  width: 12.5%;
}

#facillity .table-head01 .t-head-03 {
  width: 12.5%;
}

#facillity .table-head01 .t-head-04 {
  width: 12.5%;
}

#facillity .table-head01 .t-head-05 {
  width: 12.5%;
}

#facillity .table-head01 .t-head-06 {
  width: 12.5%;
}

#facillity .table-head01 .t-head-07 {
  width: 12.5%;
}

#facillity .company-map-ttl02 {
  margin-top: 13%;
}

#facillity .table-head02 th {
  padding: 1.5rem;
}

#facillity .table-head02 .t-head-01 {
  width: 21%;
}

#facillity .table-head02 .t-head-02 {
  width: 21%;
}

#facillity .table-head02 .t-head-03 {
  width: 37%;
}

#facillity .company-map-ttl03 {
  margin-top: 13%;
}

#facillity .table-head03 th {
  padding: 1.5rem;
}

#facillity .table-head03 .t-head-01 {
  width: 25%;
}

#facillity .table-head03 .t-head-02 {
  width: 37%;
}

#facillity .table-head03 .t-head-03 {
  width: 37%;
}


#facillity .company-map-ttl04 {
  margin-top: 13%;
}

#facillity .table-head04 th {
  padding: 1.5rem;
}

#facillity .table-head04 .t-head-01 {
  width: 21%;
}

#facillity .table-head04 .t-head-02 {
  width: 21%;
}

#facillity .table-head04 .t-head-03 {
  width: 37%;
}

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


  #company .howto-btn.howto-btn-r {
    margin-top: 2%;
  }

  #company .howto-btn-wrap {
    margin-top: 6%;
    margin-left: auto;
  }

  /* 
  #company #parts-area {
    padding-top: 50.5%;
  } */
}

@media screen and (min-width: 2100px) {
  .howto-btn-wrap {
    margin-top: 4%;
    margin-left: 38%;
  }
}

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

  #history {
    padding: 0 4%;
    padding-top: 8.5%;
    padding-bottom: 8%;
  }

  .timeline-entry::after {
    bottom: -130%;
  }
}

@media screen and (max-width: 1199px) {
  #company #parts-area {
    padding: 50% 2% 7%;
  }

  #company .howto-image {
    top: 85%;
  }

  #company .products-inner {
    padding: 0;
  }

  #facillity {
    padding: 0 4%;
  }

  .timeline-entry::before {
    left: 12.5%;
  }

  .timeline-entry::after {
    left: 13.2%;
  }
}

@media screen and (max-width: 999px) {
  #company #parts-area {
    padding-top: 60.5%;
  }

  .timeline-entry::before {
    left: 12.5%;
  }

  .timeline-entry::after {
    left: 13.2%;
  }
}

@media screen and (max-width: 849px) {
  #company .howto-image {
    top: 80%;
  }

  #company .common-tb th {
    width: 30.5%;
  }

  #company .common-tb-ttl01 {
    padding-left: 3%;
  }

  #company .common-tb-wrap {
    margin-top: 2rem;
  }

  iframe {
    height: 450px;
  }
}

@media screen and (max-width: 749px) {
  .timeline-entry01 .event {
    padding-top: 5%;
  }

  .timeline-entry::before {
    left: 12.5%;
  }

  .timeline-entry::after {
    left: 13.4%;
  }
}

@media screen and (max-width: 699px) {
  #company .howto-image {
    top: 78%;
  }

  #company #parts-area {
    padding-top: 65.5%;
  }

  #company .howto-btn-l,
  #company .howto-btn-c {
    margin-top: 2%;
  }

  .timeline-entry::before {
    left: 13.5%;
  }

  .timeline-entry::after {
    left: 14.4%;
  }

}

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

  #company #parts-area {
    padding-top: 68.5%;
  }

  .timeline-entry::before {
    left: 14.5%;
  }

  .timeline-entry::after {
    left: 15.8%;
  }

  .timeline-entry.timeline-entry02 .event {
    padding-top: 10%;
  }

  .timeline-entry.timeline-entry03 .event {
    padding-top: 3%;
  }

  .timeline-entry.timeline-entry12 .event,
  .timeline-entry.timeline-entry14 .event,
  .timeline-entry.timeline-entry16 .event,
  .timeline-entry.timeline-entry17 .event,
  .timeline-entry.timeline-entry19 .event {
    padding-top: 5%;
  }

  .timeline-entry.timeline-entry17 .year {
    margin-top: -8%;
  }

  .timeline-entry.timeline-entry16 {
    margin-top: -3%;
  }

  #facillity .table-head02 th,
  #facillity .table-head03 th,
  #facillity .table-head04 th {
    padding: 1rem 0;
  }

  #facillity .table-head02 .t-head-02 {
    width: 24%;
  }

  #facillity td {
    padding: 0.5rem;
    text-align: left;
  }

  #facillity .table-head01 .t-head-01 {
    padding: 0;
  }

  #facillity .table-body01 td {
    padding: 0.75rem 2.5rem;
    white-space: nowrap;
  }

}

@media screen and (max-width: 549px) {
  #company #parts-area {
    padding-top: 77.5%;
  }

  #company .howto-text {
    height: 50rem;
  }

  iframe {
    height: 300px;
  }

  .timeline-entry::before {
    left: 16.5%;
  }

  .timeline-entry::after {
    left: 17.6%;
  }


}

@media screen and (max-width: 499px) {
  #company .howto-image img {
    height: 300px;
  }

  #company #parts-area {
    padding-top: 45%;
  }

  .timeline-entry::before {
    left: 19.5%;
  }

  .timeline-entry::after {
    left: 21.2%;
  }

  .event {
    padding-right: 0;
    padding-left: 3.3%;
  }

  #facillity .table-head02 .t-head-01 {
    width: 28%;
  }

}

@media screen and (max-width: 399px) {
  #company #parts-area {
    padding-top: 80%;
  }
}


/* ------------ 採用情報 --------------*/

#about-us {
  position: relative;
  margin-top: 1rem;
}

.about-us-text.howto-text {
  background-image: url(../img/about-us-bg.png);
  width: 100%;
  color: var(--white);
  height: 46rem;
}

#about-us .howto-txt-box {
  width: 50%;
  padding-left: 0;
}

#about-us .howto-subtext {
  padding: 1% 8%;
  margin-top: 4%;
}

#about-us .about-us-image {
  position: absolute;
  top: 0;
  right: 0;
}

#about-us .about-us-image img {
  border-radius: 0 0 0 100px;
}

#about-us .howto-txt01 {
  margin-top: 6%;
  margin-left: -2%;
  line-height: 2;
  letter-spacing: 0.05em;
}

#about-us .howto-txt-box {
  padding: 5.5rem;
  padding-left: 9%;
  padding-top: 6%;
}

#about-us .howto-txt-wrap {
  text-align: left;
}

#features {
  background-color: var(--titleBg);
  padding-bottom: 5%;
}

.features-box {
  padding-top: 5%;
  display: flex;
}

.features-image {
  width: 48%;
}

.features-txt-content {
  width: 50%;
  padding: 3%;
  margin-left: 2%;
}

.features-ttl {
  display: inline-block;
  font-size: clamp(1.125rem, 0.489rem + 3.18vw, 2.875rem);
  font-weight: bold;
  background-color: var(--blue);
  color: var(--white);
  padding: 0.5% 3%;
  margin-bottom: 2%;
}

.features-txt {
  background-color: var(--white);
  font-size: clamp(0.813rem, 0.653rem + 0.8vw, 1.25rem);
  line-height: 1.8;
  margin-top: 0.8%;
  padding: 10px;
}

.reverse {
  flex-direction: row-reverse;
}

.features-box.reverse .features-txt-content {
  padding-top: 0;
  padding-left: 7%;
}


#voice {
  padding-top: 16%;
}

.voice-subttl {
  font-size: clamp(0.938rem, 0.597rem + 1.7vw, 1.875rem);
  font-family: "Roboto", sans-serif;
  font-style: italic;
  background-color: var(--blue);
  color: var(--white);
  display: inline-block;
  padding: 0.3%;
  letter-spacing: 0.03em;
}


.voice-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4%;
  box-sizing: content-box;
}

.voice-ttl {
  font-size: clamp(1.5rem, 0.773rem + 3.64vw, 3.5rem);
  color: var(--blue);
  letter-spacing: 0.05em;
}

.voice-box {
  display: grid;
  gap: 5rem;
  grid-template-columns: repeat(auto-fit, minmax(760px, 1fr));
  margin-top: 3.5%;
}

.voice-box > * {
  max-width: 760px; /* アイテム幅を制限し、崩れ防止 */
  width: 92%; /* 幅を100%に調整 */
}

.voice-content {
  border: 2.5px solid #DFDDDD;
  border-radius: 10px;
  padding: 6% 4%;
}

.voice-image {
  position: relative;
}

.voice-name {
  display: inline-block;
  font-size: clamp(1rem, 0.636rem + 1.82vw, 2rem);
  font-weight: bold;
  background-color: var(--white);
  border-radius: 5px;
  padding: 1% 4%;
  padding-left: 0;
  position: absolute;
  bottom: -1%;
  left: 0;
}

.voice-name span {
  font-size: clamp(0.813rem, 0.653rem + 0.8vw, 1.25rem);
}

.voice-question {
  background-color: var(--red);
  color: var(--white);
  display: inline-block;
  padding: 1%;
  margin-top: 3%;
}

.voice-answer {
  margin-top: 2%;
  line-height: 2;
}

.voice-faq {
  margin-top: 2%;
}

.howto-btn.recruitment-btn {
  border-radius: 40px;
  border: 2px solid var(--red);
  width: 13.75rem;
  height: auto;
  margin-left: 0;
}

.howto-btn.recruitment-btn::after {
  position: absolute;
  top: 60%;
  right: 10%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1.5rem;
  background-image: url(../img/btn-arrow-red.png);
  background-size: contain;
  vertical-align: middle;
  margin-left: 2%;
}

.howto-btn.recruitment-btn:hover::after {
  background-image: url(../img/btn-arrow-white.png);
}

#recruitment {
  background-image: url(../img/recruitment-bg.jpg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 5%;
  padding-bottom: 5%;
  margin-top: 8.5%;
  background-color: #0140AC;
}

.recruitment-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4%;
  box-sizing: content-box;
}

.recruitment-subttl {
  font-size: clamp(0.938rem, 0.597rem + 1.7vw, 1.875rem);
  font-family: "Roboto", sans-serif;
  font-style: italic;
  background-color: var(--red);
  color: var(--white);
  display: inline-block;
  padding: 0.3%;
  letter-spacing: 0.03em;
  margin-top: 3%;
}

.recruitment-ttl {
  font-size: clamp(1.5rem, 0.773rem + 3.64vw, 3.5rem);
  color: var(--white);
  letter-spacing: 0.05em;
}

.recruitment-job-list {
  display: grid;
  gap: 3.1rem;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  margin-top: 3.5%;
}

.recruitment-job-list > * {
  max-width: 500px; /* 子要素の最大幅を500pxに制限 */
  width: 100%; /* 幅を100%に調整 */
}

.recruitment-job-item {
  background: var(--white);
  font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
}


.recruitment-job-item dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 6% 5%;
}

.recruitment-job-item dt {
  width: 20%;
  background-color: #EFEFEF;
  display: inline-block;
  color: #303036;
  padding: 1%;
  margin-top: 2%;
  text-align: center;
}

.recruitment-job-item dd {
  width: 75%;
  font-weight: normal;
  margin-top: 2%;
  margin-left: 4%;
}

.recruitment-job-header {
  font-size: clamp(0.875rem, 0.693rem + 0.91vw, 1.375rem);
  font-weight: bold;
  background-color: var(--red);
  color: var(--white);
  padding: 2%;
}

.recruitment-btn-wrap {
  margin: 5% auto 0;
}

#apply {
  margin-top: 7%;
}

.apply-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4%;
  box-sizing: content-box;
}

#apply .common-tb th {
  width: 12.5%;
  background: var(--blue);
  border-bottom: 1px solid var(--white);
  vertical-align: middle;
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  font-weight: bold;
  text-align: center;
  color: var(--white);
}

#apply .common-tb td {
  padding: 1%;
  border-bottom: 1px solid #D0D2D5;
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.1em;
}

.company-map-ttl.apply-ttl {
  margin-top: 2%;
}

#apply .common-tb-wrap {
  margin-top: 3rem;
}

#apply .common-tb .common-tb-ttl02 {
  padding-bottom: 2%;
}

#apply .common-tb .common-tb-ttl06,
#apply .common-tb .common-tb-ttl14 {
  padding-bottom: 4%;
}

#apply .common-tb .common-tb-ttl13 {
  padding-bottom: 8%;
}

#apply .common-tb .common-tb-text02,
#apply .common-tb .common-tb-text04,
#apply .common-tb .common-tb-text06,
#apply .common-tb .common-tb-text08,
#apply .common-tb .common-tb-text10,
#apply .common-tb .common-tb-text11 {
  padding-top: 0;
}


.apply-btn-wrap {
  margin-top: 7%;
  text-align: center;
}

.apply-btn {
  position: relative;
  font-size: clamp(0.813rem, 0.653rem + 0.8vw, 1.25rem);
  color: var(--white);
  background-color: var(--red);
  display: inline-block;
  width: 15rem;
  height: 3.1rem;
  line-height: 3.1rem;
  text-align: center;
  transition: 0.3s;
  position: relative;
  border-radius: 25px;
  border: 1px solid var(--red);
}

.apply-btn:hover {
  color: var(--red);
  background-color: var(--white);
  border: 1px solid var(--red);
  transform: translateY(-1px);
}

.apply-btn::after {
  position: absolute;
  top: 55%;
  right: 18%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 2rem;
  background-image: url(../img/ei-send-icon.png);
  background-size: contain;
  vertical-align: middle;
  margin-left: 2%;
}

.apply-btn:hover::after {
  background-image: url(../img/ei-send-red.png);
}


@media screen and (min-width: 2100px) {
  #about-us .howto-txt-box {
    padding-left: 15%;
    padding-top: 3%;
  }
}

@media screen and (max-width: 1799px) {
  #about-us .howto-txt-box {
    text-align: left;
    padding-left: 2%;
    padding-top: 3%;
  }

  #about-us .howto-txt-wrap {
    width: 85%;
  }

  .features-box {
    padding-top: 10%;
  }

  #voice {
    padding-top: 10%;
  }

  .features-txt-content {
    padding-top: 0;
  }

  .voice-box {
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }
  
}

@media screen and (max-width: 1599px) {
  #about-us .about-us-image img {
    border-radius: 0 0 0 100px;
    width: 50rem;
    height: auto;
  }

  .about-us-text.howto-text {
    height: 38rem;
  }

  #about-us .howto-txt-box {
    padding-top: 0;
  }

  #features {
    padding-bottom: 10%;
  }
}

@media screen and (max-width: 1399px) {
  .features-box.reverse .features-txt-content {
    padding-left: 0;
  }

  .recruitment-job-item dt {
    width: 30%;
  }

  .recruitment-job-item dd {
    white-space: nowrap;
  }

  #about-us .about-us-image img {
    width: 30rem;
    border-radius: 0;
  }

  #about-us .about-us-image {
    top: 17%;
    right: 2%;
  }

  #about-us .howto-txt-box {
    padding: 0;
    padding-left: 5%;
  }

  #about-us .howto-txt-wrap {
    width: 100%;
  }
}


@media screen and (max-width: 1306px) {
  #voice {
    padding-top: 10%;
  }

  .voice-box {
    gap: 2rem;
  }
}

@media screen and (max-width: 1199px) {
  #recruitment {
    background-image: none;
    height: auto;
    background-color: #0140AC;
    padding-bottom: 8%;
  }

  #about-us .about-us-image {
    top: 95%;
    right: 0;
    width: 100%;
  }

  #about-us .about-us-image img {
    width: 100%;
    height: 600px;
    object-position: top;
  }

  .about-us-text.howto-text {
    height: 35rem;
  }

  #about-us .howto-txt-box {
    padding: 0;
    padding-left: 5%;
    width: 100%;
  }

  #about-us .howto-txt01 {
    margin-left: 0;
  }

  #about-us .howto-txt-wrap {
    width: 95%;
  }

  #features {
    padding: 55% 4% 10%;
  }

  .recruitment-job-list {
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }
  
}

@media screen and (max-width: 999px) {
  .features-box {
    flex-direction: column;
  }

  .features-box.reverse {
    margin-top: 5%;
  }

  .features-txt-content,
  .features-image {
    width: 100%;
  }

  .features-txt-content {
    padding: 0;
    margin-left: 0;
    line-height: 1.4;
  }


  .features-ttl {
    margin-top: 2%;
    margin-bottom: 0;
  }

  #about-us .howto-txt01 {
    margin-left: 0;
  }

  #features {
    padding: 63% 4% 10%;
  }

  .features-txt {
    padding: 8px;
    margin-top: 2%;
  }

}

@media screen and (max-width: 899px) {
  #about-us .howto-txt-box {
    padding-top: 6%;
    padding: 2.5rem;
  }

  #features {
    padding: 55% 4% 10%;
  }

  #about-us .about-us-image img {
    height: 500px;
  }

  .recruitment-job-list {
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  #features {
    padding: 65% 4% 10%;
  }


}

@media screen and (max-width: 699px) {
  #about-us .howto-txt-wrap {
    width: 100%;
  }

  #about-us .howto-txt01 {
    margin-top: 2%;
    padding: 0;
  }

  #about-us .howto-txt-box {
    padding: 2%;
  }

  #about-us .about-us-image {
    top: 75%;
  }

  #apply .common-tb th {
    width: 20%;
  }

  #apply .common-tb td {
    padding-left: 2%;
  }

  #features {
    padding: 55% 4% 10%;
  }

}

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

  #about-us .about-us-image img {
    height: 300px;
  }

  .voice-box {
    gap: 1rem;
  }

  .recruitment-job-item dt {
    width: 100%;
  }

  .recruitment-job-item dd {
    width: 100%;
    font-weight: normal;
    margin-top: 2%;
    text-align: center;
    margin-left: 0;
  }

  #features {
    padding: 30% 4% 10%;
  }

  #apply .common-tb th {
    width: 100%;
    text-align: left;
    padding: 2%;
  }

  #apply .common-tb td {
    width: 100%;
    text-align: left;
  }

  .voice-box {
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }

  .recruitment-job-list {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}

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

  #about-us .howto-txt-box {
    padding: 1.5rem;
  }

  #about-us .about-us-image {
    top: 70%;
  }

  #features {
    padding: 40% 4% 10%;
  }
}





/* ------------ お問い合わせ --------------*/

.contact {
  width: 100%;
  margin-top: 8em;
  margin-bottom: 200px;
}

.contact p {
  font-weight: normal;
  margin-bottom: 3em;
  line-height: 180%;
}

.contact a {
  text-decoration: underline;
}

.contact table {
  width: 100%;
  margin-bottom: 70px;
  border-collapse: collapse;
}

.contact tr {
  width: 100%;
}

.contact th {
  color: #000;
  vertical-align: middle;
  text-align: right;
  white-space: nowrap;
  font-weight: 400;
  font-family: "Noto Sans CJK JP";
  padding: 15px 30px 30px 0;
  font-size: 16px;
  letter-spacing: 4px;
}

.contact td {
  padding: 15px 0 30px 0;
}

.contact th span {
  font-size: 1.2rem;
}

.contact form#mailformpro label {
  display: block;
}

.contact input[type=checkbox], input[type=radio] {
  margin-top: -.2em;
  padding: 5px;
  margin-right: 0.5em;
}

.contact input {
  padding: 5px;
  font-size: 16px;
  vertical-align: middle;
  padding: 15px 16px 14px;
  border: 1px solid #999999;
  border-radius: 6px;
}

.contact textarea {
  padding: 10px;
  font-size: 16px;
  vertical-align: top;
  width: 95%;
  font-family: "Noto Sans CJK JP";
  padding: 15px 16px 14px;
  border-radius: 0px;
  border: 1px solid #999999;
  border-radius: 6px;
}

.contact select {
  padding: 10px;
  font-size: 16px;
  vertical-align: middle;
  font-family: "Noto Sans CJK JP";
  border: 1px solid #999999;
  border-radius: 6px;
}

.contact-btn {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 3em;
}

.contact-btn input {
  padding: 15px;
  background-color: #fff;
  color: #000;
  cursor: pointer;
  font-size: 18px;
  margin: 0 auto;
  font-weight: bold;
  width: 300px;
  border-radius: 50px;
}

@media screen and (max-width: 1000px) {
  .contact .w01 {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .contact th {
   display: block;
   text-align: left;
   padding: 15px 30px 0 0;
  }

  .contact td {
    display: block;
   }

   .contact .w01 {
    width: 90%;
  }
}

@media screen and (max-width: 560px) {
  .contact .w01 {
    width: 82%;
  }

  .contact input.r01 {
    padding: 1px;
  }

  .contact textarea {
    width: 85%
  }
  
}

/* ------------ プライバシーポリシー --------------*/
.privacy {
  font-weight: normal;
  margin-top: 8em;
}

.privacy p {
  font-weight: normal;
}

.privacy p {
  margin-top: 3em;
  margin-bottom: 3em;
}

.privacy dl {
  margin-top: 30px;
  padding-top: 30px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #ccc;
  line-height: 30px;
}

.privacy dt {
  width: 100%;
  font-weight: 700;
  font-size: 110%;
}

.privacy dd {
  width: 100%;
  padding-bottom: 30px;
  font-weight: normal;
}

@media screen and (max-width: 560px) {
  .privacy p {
    margin-top: 60px;
  }
}


/* ------------ お知らせ詳細 --------------*/

#info-con {
  margin-top: 8em;
}

.info-title {
  color: #0140AC;
}

.info-title h2 {
  color: #0140AC;
  font-size: 32px;
  border-bottom: 4px solid #0140AC;
  margin-top: 5px;
  font-weight: bold;
  margin-bottom: 1em;
  padding-bottom: 0.2em;
}

.news {
  font-size: 18px;
  line-height: 34px;
  letter-spacing: 2.1px;
  padding-bottom: 50px;
}

.news p {
  line-height: 34px;
}

.news a {
  text-decoration: underline;
  color: #000;
}

.news h2 {
  color: #000;
  font-size: 28px;
  font-weight: bold;
  border-left: 4px solid #0140AC;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 0.4em;
}

.news h3 {
  color: #000;
  font-size: 24px;
  border-left: 4px solid #0140AC;
  font-weight: bold;
  margin-bottom: 20px;
  padding-left: 0.4em;
}

.news h4 {
  color: #000;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.news h5 {
  color: #000;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 0;
}

.news h6 {
  color: #000;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 0;
}

.news ul {
  padding-top: 10px;
  padding-bottom: 10px;
}

.news li {
  padding-left: 18px;
  margin-bottom: 10px;
}

.news li::before {
  content: '・';
  margin-left: -1em;
}

.news ol {
  padding-left: 2em;
}

.news ol li {
  list-style-position: outside;
  list-style-type: decimal;
  background-image: none;
  padding-left: 0px;
}

.news ol li::before {
  display: none;
}

.news table {
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  width: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
}

.news th {
  font-weight: bold;
  background-color: #0140AC;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  color: #fff;
}

.news td {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  line-height: 160%;
}

.news img {
  height: auto;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
  margin-left: 5px;
}

.alignleft {
  float: left;
  margin-right: 5px;
}

.btn_c {
  margin-top: 5em;
  margin-bottom: 40px;
  text-align: center;
}

.btn_c a {
  color: var(--white);
  background-color: var(--red);
  display: inline-block;
  width: 24%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
  border-radius: 20px;
}

.btn_c a:hover {
  background-color: #E7E7E7;
}

.info-list li {
  border-bottom: 1px solid #ccc;
  line-height: 3.4rem;
}

.info-list a {
  color: #666;
}

.info-list .news-date {
  vertical-align: top;
}

@media (max-width: 900px) {
  #info .fl {
    display: block;
  }

  .info-list .news-item {
    padding: 0px 0;
  }

  .info-list li {
    padding-bottom: 10px;
  }

  .btn_c a {
    width: 80%;
  }
}

@media (max-width: 600px) {
  .info-title h2 {
    font-size: 24px;
    line-height: 140%;
  }

  .info-title {
    font-size: 16px;
  }

  .news p {
    font-size: 18px;
    line-height: 34px;
  }
}

/*-------------------------------------------
お知らせ一覧
-------------------------------------------*/
.news-list-inner {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 4rem;
  padding: 0 1.25rem;
  box-sizing: content-box;
}

.news-section-title {
  font-size: 2.5rem;
  text-align: center;
}

.font-blue {
  color: #0140AC;
  margin-top: 5rem;
  margin-bottom: 3.75rem;
}

.news-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #1B224C;
  margin-bottom: 4rem;
}

.news-list-wrapper dt {
  width: 12%;
  border-bottom: solid 1px #D5D5D5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 5rem;
}

.news-list-wrapper dd {
  width: 75%;
  border-bottom: solid 1px #D5D5D5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 5rem;
  padding-left: 2.5rem;
}

.news-list-wrapper dd a {
  text-decoration: underline;
  color: #1B224C;
}

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

  .news-list-wrapper dl {
    flex-direction: column;
  }

  .news-list-wrapper dt {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-end;
    border-bottom: none;
    padding: 0 0.625rem;
  }

  .news-list-wrapper dd {
    width: 100%;
    padding-left: 0;
    padding: 0.625rem;
  }

  .news-section-title {
    font-size: 1.5rem;
  }

  .font-blue {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .news-list-wrapper dt {
    height: 2rem;
  }

  .news-list-wrapper dd {
    height: 2rem;
  }

}

/*-------------------------------------------
ページネーション
-------------------------------------------*/

#wp_page_numbers,
#wp_page_numbers ul,
#wp_page_numbers li,
#wp_page_numbers a {
  font-size: 1.5rem;
}

#wp_page_numbers {
    margin: 0;
    width: 100%;
    text-align: center;
    padding-top: 3em;
    clear: both;
}

#wp_page_numbers ul {
    width: 760%;
    margin-bottom: 10px;
    padding: 0;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    text-align: center;
    display: inline;
    font-size: 12px;
}

#wp_page_numbers li {
    margin: 0.5px;
    padding: 0px;
    display: inline;
}

#wp_page_numbers a {
    padding: 5px 5px 10px 5px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 2px;
    margin-right: 2px;
    margin-bottom: 5px;
    color: #333;
    display: inline;
    text-align: center;
    border: 1px solid #000;
    background-color: #ffffff;
}

#wp_page_numbers li a:hover {
    text-decoration: underline;
    background-color: #cccccc;
    border-color: #000 #000 #000;
}

#wp_page_numbers li.active_page a {
    border-color: #f0df85 #f0df85 #f0df85 #f0df85;
    background-color: #000;
    color: #ffffff;
}

#wp_page_numbers li.active_page a:hover {
    color: #fff;
    /* IE fix */
    text-decoration: none;
    border-color: #000 #000 #000;
}

#wp_page_numbers li.page_info {
    display: inline;
    padding: 3px;
    padding-left: 5px;
    padding-right: 5px;
    margin-right: 2px;
    color: #666;
    font-size: 11px;
    border: 1px solid #bfbfbf;
}