@charset "UTF-8";
/*****レスポンシブデザイン*****/
/********************

共通

********************/
* {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

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

li {
  list-style: none;
}

html, body {
  height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

#main-in {
  margin: 0 auto;
  padding-left: 200px;
}
@media screen and (max-width: 767px) {
  #main-in {
    padding-left: 0;
  }
}

#main p {
  margin-bottom: 1em;
  line-height: 1.9;
}

.main-visual {
  background: url(../img/print-header.jpg) no-repeat center center/cover;
  width: 100%;
  height: 400px;
  z-index: -100;
  border-bottom: 1px solid #dddddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 200px;
}
@media screen and (max-width: 767px) {
  .main-visual {
    height: 120px;
    margin-top: 60px;
  }
}

/*****レスポンシブデザイン*****/
::-webkit-input-placeholder {
  color: #cccccc;
  font-size: 16px;
}
::-moz-placeholder {
  color: #cccccc;
  font-size: 16px;
}
:-ms-input-placeholder {
  color: #cccccc;
  font-size: 16px;
}
::-ms-input-placeholder {
  color: #cccccc;
  font-size: 16px;
}
::placeholder {
  color: #cccccc;
  font-size: 16px;
}

/*==================
問い合わせボタン
==================*/
/*追従ボタン*/
.fix-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  background: #2d88d8;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  text-align: center;
  color: #f9f9f9;
  padding: 20px 0;
  right: 20px;
  top: 20px;
  z-index: 9999;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.fix-btn:hover {
  cursor: pointer;
  background: #f18f25;
  text-shadow: 2px 2px 0 #5a5a5a, -1px -1px 0 #8d8d8d, -1px 1px 0 #8d8d8d, 1px -1px 0 #8d8d8d, 0px 1px 0 #8d8d8d, -1px 0 #8d8d8d, -1px 0 0 #8d8d8d, 1px 0 0 #8d8d8d;
}
@media screen and (max-width: 767px) {
  .fix-btn {
    display: none;
  }
}

.sp-tel {
  width: 170px;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .sp-tel {
    display: none;
  }
}

.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 21/5; /* 2520:600 */
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .slider-container {
    margin-top: 60px;
  }
}

.slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200%; /* 2枚分 */
  height: 100%;
  -webkit-animation: slideLoop 60s linear infinite;
          animation: slideLoop 60s linear infinite;
}

.slider-track img {
  width: 50%; /* 100% ÷ 2枚 = 50% */
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes slideLoop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes slideLoop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.catch-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  font-size: clamp(1.5rem, 4vw, 3rem);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  opacity: 0;
  -webkit-animation: fadeIn 4s ease-in-out forwards 2s;
          animation: fadeIn 4s ease-in-out forwards 2s;
  white-space: nowrap;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*==================
工場見学
==================*/
.btn,
a.btn,
button.btn {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-c {
  font-size: 10px;
  width: 150px;
  position: relative;
  padding: 5px 10px;
  color: #fff;
  background: #32b16c;
  -webkit-box-shadow: 0 5px 0 #2c9d60;
  box-shadow: 0 5px 0 #2c9d60;
}

a.btn-c span {
  font-size: 14px;
  display: inline-block;
  width: 100%;
  margin-bottom: 0.5em;
  padding: 0.2rem 0.5rem;
  color: #32b16c;
  border-radius: 4px;
  background: #fff;
}

a.btn-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: #38c578;
  -webkit-box-shadow: 0 2px 0 #2c9d60;
  box-shadow: 0 2px 0 #2c9d60;
}

a.btn-c:hover:before {
  left: 2rem;
}

.breadcrumb {
  margin: 0 auto;
  padding: 40px 0 0 10px;
  list-style: none;
  overflow: hidden;
  max-width: 1040px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    font-size: 10px;
  }
}

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

.breadcrumb li:after {
  /* >を表示*/
  font-family: FontAwesome;
  content: "\f101";
  padding: 0 0.2em;
  color: #8186a0;
}

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

.breadcrumb li a {
  text-decoration: none;
  color: #273376;
}

.breadcrumb li:first-child a:before { /*家アイコンに*/
  font-family: FontAwesome;
  content: "\f015";
  font-weight: normal;
  font-size: 1.1em;
}

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

/*==================
header
==================*/
#global-head {
  position: fixed;
  top: 15px;
  left: 25px;
  color: #ffffff;
  width: 150px;
  margin: 0 auto;
  padding-top: 10px;
  height: 50px;
  z-index: 11;
}

@media screen and (max-width: 767px) {
  #global-head {
    width: 100%;
    padding: 0px;
    top: 0;
    left: 0;
    height: 60px;
    background: #ffc486;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 200;
  }
}
#brand-logo {
  z-index: 100;
}
@media screen and (max-width: 767px) {
  #brand-logo img {
    max-width: 90%;
    max-height: 60px;
  }
}
@media screen and (max-width: 767px) {
  #brand-logo {
    width: 40%;
  }
}

.sp-contact {
  padding: 5px;
  display: none;
  width: 40%;
  height: 100%;
}
.sp-contact img {
  width: 150px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .sp-contact {
    display: block;
  }
}

.title-wrapper {
  text-align: center;
}

.top {
  background: url(../img/company__about-bg.png) no-repeat center center/cover;
}

.company__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 20px;
}
@media screen and (max-width: 767px) {
  .company__content {
    padding: 20px;
  }
}

.company-title {
  color: rgb(18, 39, 145);
  font-size: 56px;
  letter-spacing: 0.05em;
  font-family: "Source Sans Pro", sans-serif;
  margin: 60px auto;
  text-shadow: 2px 2px 2px #9d9da4, 0 0 #c6c6c6;
  font-weight: bold;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .company-title {
    font-size: 26px;
    margin: 20px 0;
  }
}

.company__item-lead {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  font-size: 22px;
}
.company__item-lead p {
  color: #072a9c;
  font-weight: 400;
  line-height: 2.1;
}
@media screen and (max-width: 767px) {
  .company__item-lead p {
    font-size: 16px;
    line-height: 1.7;
  }
}

.company__item-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .company__item-img {
    display: block;
  }
}

.box {
  border: 3px solid #5294d6; /* 青枠 */
  border-radius: 16px;
  padding: 40px 24px 24px;
  position: relative;
  max-width: 900px;
  margin: 60px 0;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 2;
}

.box-title {
  position: absolute;
  top: -22px;
  left: 24px;
  background-color: #a3c7f0;
  color: #1c2c71;
  font-weight: bold;
  padding: 8px 24px;
  border-radius: 24px;
  font-size: 1.3rem;
  white-space: nowrap;
}

.box-content {
  font-size: 1.1rem;
  color: #222;
}

@media (max-width: 600px) {
  .box {
    padding: 36px 16px 16px;
  }
  .box-title {
    font-size: 1rem;
    padding: 6px 16px;
  }
  .box-content {
    font-size: 0.85rem;
  }
}
.about {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 60px;
  padding: 0 20px;
}
.about__title {
  margin-bottom: 10px;
  border-left: 7px solid #5aa7ff;
  padding-left: 6px;
  padding-bottom: 3px;
  line-height: 16px;
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .about__title {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 13px;
  }
}

.about__lead {
  font-size: 24px;
  margin-top: 15px;
}
.about__lead p {
  font-weight: 300;
  font-size: 20px;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .about__lead p {
    font-size: 14px;
    line-height: 1.7;
  }
}

.about__item {
  margin-top: 40px;
}

.about__itemWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.about__img {
  width: 250px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .about__img {
    margin-top: 10px;
  }
}

@media (max-width: 960px) {
  .company__content {
    display: block;
  }
  .about__itemWrapper {
    display: block;
  }
}
.container {
  margin: 60px auto;
  border: 4px solid #c7d9f0;
  border-radius: 10px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .container {
    margin: 30px auto 60px auto;
  }
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media (max-width: 960px) {
  .wrapper {
    display: block;
  }
}
.title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 16px;
    text-align: center;
  }
}

.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .content {
    display: block;
  }
}

/* 左側の資格リスト */
.qualifications {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.qualifications .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.qualifications .item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  border: 2px solid #2d7ef7;
  border-radius: 5px;
  padding: 8px;
  font-weight: bold;
  color: #2d7ef7;
  background: #fff;
  white-space: nowrap;
  width: 150px;
}
@media screen and (max-width: 767px) {
  .qualifications .item {
    font-size: 12px;
    white-space: normal;
  }
}

.qualifications .full {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* カード画像 */
.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .cards {
    margin-top: 20px;
  }
}

.cards img {
  width: 150px;
  min-width: 150px;
  border-radius: 5px;
}

/* バナーとイラスト */
@media (max-width: 960px) {
  .banner-section {
    margin-top: 30px;
  }
}
/* リボン風バナー */
.banner {
  position: relative;
  display: inline-block;
  background: #d0e4f8;
  color: #2d2f7f;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 30px;
  border-radius: 5px;
}

.banner::before,
.banner::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 10px solid transparent;
}

.banner::before {
  left: -20px;
  border-right-color: #d0e4f8;
}

.banner::after {
  right: -20px;
  border-left-color: #d0e4f8;
}

.illustration img {
  width: 450px;
}

.recruit-message {
  text-align: center;
  margin: 60px auto;
}
.recruit-message p {
  font-size: 18px;
  font-weight: 300;
  display: inline-block;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .recruit-message p {
    font-size: 14px;
  }
}

/*==================
footer
==================*/
footer {
  width: 100%;
  position: relative;
  background: url(../img/footer.jpg) no-repeat center center/cover;
}

.footer_content {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  margin: 0px auto;
}
@media screen and (max-width: 767px) {
  .footer_content {
    font-size: 11px;
  }
}
.footer_content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer_content ul .footer-content-list {
  border-right: 1px solid rgba(207, 207, 207, 0.6);
}
@media screen and (max-width: 767px) {
  .footer_content ul .footer-content-list {
    border-right: none;
  }
}
.footer_content ul ul {
  display: block;
  letter-spacing: 0.4em;
  padding: 15px 30px;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .footer_content ul ul {
    border-right: none;
    padding: 15px;
  }
}
.footer_content ul ul li {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .footer_content ul ul li {
    margin-top: 10px;
  }
}
.footer_content ul ul li a {
  color: #fff;
}

.vegetable-mark {
  width: 45px;
  height: 45px;
}

.low-2 {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .low-2 {
    display: none !important;
  }
}

.low-3 {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .low-3 {
    display: none !important;
  }
}

.footer-button-wrapper {
  margin-top: 0 !important;
}
.footer-button-wrapper img {
  padding-top: 5px;
}