@charset "UTF-8";
/* =================================================== */
/* フォント読み込み */
/* =================================================== */
@font-face {
  font-family: "NotoSerifJP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    local('NotoSerifJPRegular'),
    url('../fonts/NotoSerifJP-Regular.woff') format('woff'),
    url('../fonts/NotoSerifJP-Regular.woff2') format('woff2')
}
@font-face {
  font-family: "NotoSerifJP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src:
    local('NotoSerifJPBold'),
    url('../fonts/NotoSerifJP-Bold.woff') format('woff'),
    url('../fonts/NotoSerifJP-Bold.woff2') format('woff2')
}
/* =================================================== */
/* ベース */
/* =================================================== */
body {
  /* ゴシック系 */
  font-family: "Helvetica Neue", "Helvetica", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Arial", "Meiryo", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

  /* デフォルト文字色 */
  color: #231815;
  line-height: 1.71;
  background-color: #fff;
  width: 100%;
  height: auto;
}
h2,h3 {
  color: #2c2f30;
}
h2 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0;
}
h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
}
ul {
  margin:0;
  padding: 0;
  list-style: none;
}
a {
  outline: none;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
table {
  table-layout: fixed; /* 列幅をwidth: 〇%で固定残りは均等分割 autoで自動調整 */
  width: 100%;
}

/* 改行切り替え */
.spOnly {
  display: none;
}
.pcOnly {
  display: inherit;
}

@media screen and (max-width: 519px) {
  .spOnly {
    display: inherit;
  }
  .pcOnly {
    display: none;
  }
}

/* =================================================== */
/* 共通部品 */
/* =================================================== */
.wrapper_large {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2%;
}
.wrapper_medium {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2%;
}
.wrapper_small {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2%;
}
.wrapper_slider {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto 50px;
  padding: 0 2%;
}

.flex_center {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
.flex_between {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.flex_end {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}
.headline_h2 {
  position: relative;
  color: #2c2f30;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  margin: 20px auto 20px;

}

.headline_p {
  color: #2c2f30;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 20px auto 50px;
  padding: 0 5%;
}
.headline_h3,
.headline_h3_line {
  color: #2c2f30;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  margin: 40px auto;
}
.headline_h3_line {
  position:relative;
  text-align: start;
  padding-left: 18px;
}
.headline_h3_line::before {
  content:"";
  display:block;
  width:4px;
  height:40px;
  background-color:#2c2f30;
  position:absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.headline_h4{
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (max-width:959px) { /*タブレット(Tb)*/
  .headline_h2 {
    font-size: 36px;
  }
  .headline_p {
    font-size: 16px;
  }
  .wrapper_slider {
    margin: 0 auto;
  }
}
@media screen and (max-width:519px) { /*スマホ(Sp)*/
  .headline_h2 {
    font-size: 24px;
    margin: 30px auto 10px;
  }
  .headline_h3_line::before {
    width:3px;
    height:30px;
  }
  .headline_h3,
  .headline_h3_line {
    font-size: 20px;
  }
}

/* 固定 (page.php) */
.mv_block {
  position: relative;
}
.mv_content {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin: 0;
  padding: 0;
  text-align: center;
}
.mv_h2,
.mv_h3 {
  color: #fff;
}
.mv_h2 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0;
}
.mv_h2::after {
  content: "";
  display: block;
  width: 130px;
  height: 2px;
  margin: 20px auto;
  background: #fff;
}
.mv_h3 {
  padding-top: 10px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.15rem;
}
.mv_img {
  width: 100%;
  height: auto;
  object-fit:cover
}
@media screen and (max-width:959px) { /*タブレット(Tb)*/
  .mv_h2 {
    font-size: 36px;
  }
  .mv_h2::after {
    width: 120px;
  }
  .mv_img {
    height: 40vh;
  }
}
@media screen and (max-width:519px) { /*スマホ(Sp)*/
  .mv_h2 {
    font-size: 24px;
  }
  .mv_h2::after {
    width: 100px;
    margin: 10px auto;
  }
  .mv_h3 {
    padding-top: 0;
    font-size: 18px;
  }
}
/* パンくず */
.breadcrumb_list_block {
  background-color: #f7f7f7;
}
.breadcrumb_list {
  margin: 0;
  padding: 7px 0;
  list-style: none;
}
.breadcrumb_item {
  display: inline;
  list-style: none;
}
.breadcrumb_item:after {
  content: '>';
  padding: 0 15px;
  color: #939494;
}
.breadcrumb_item:last-child:after {
  content: '';
}
.breadcrumb_link {
  display: inline-block;
  text-decoration: none;
}
.breadcrumb_link:hover {
  text-decoration: none;
}
.breadcrumb_text {
  color: #939494;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
.mb40 {
  margin-bottom: 40px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb100 {
  margin-bottom: 100px;
}
.inline_b {
  display: inline-block;
}

/* =================================================== */
/* レイアウト */
/* =================================================== */
/* header */
.privacy_nav_content {
  width: 100%;
  background-color: #f7f7f7;
}
.privacy_nav_list {
  align-items: center;
  width: 100%;
  height: 35px;
}
.header_link {
  padding: 10px 25px;
  cursor: pointer;
}
.header_logo_block {
  z-index: 1000;
  align-items: center;
  width: 100%;
  height: auto;
}
.header_logo {
  width: 90%;
  height: auto;
}
.privacy_nav_link,
.global_nav_link,
.global_nav_link2 {
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
.privacy_nav_link {
  color: #939494;
  padding: 5px 25px;
  letter-spacing: 0.075em;
  font-size: 13px;
  height: auto;
}
.global_nav_link {
  color: #2c2f30;
  padding: 10px 25px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  cursor: pointer;
}
.global_nav_link2 {
  color: #2c2f30;
  letter-spacing: 0.05em;
}
.privacy_nav_border,
.global_nav_border,
.global_nav_border2 {
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
}
.privacy_nav_border {
  color: #939494;
}
.global_nav_border,
.global_nav_border2 {
  color: #2c2f30;
}
.global_nav_list {
  align-items: center;
  width: 100%;
  height: auto;
}
.global_nav_list2 {
  display: none;
}
.burger {
  z-index: 1000;
  display: none;
  padding: 5px;
  cursor: pointer;
}
.line1,
.line2,
.line3 {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #2c2f30;
  margin: 5px;
  transition: 0.5s ease;
}
.open .line1,
.open .line2,
.open .line3 {
  background-color: #fff;
}
#modal {
  z-index: 900;
  display: none;
  transition: all 0.5s;
  position: absolute;
  background: #2c2f30;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.8;
}
.fixed {
  height: 100%;
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
}
.open #modal {
  display: block;
}
.open .burger span:nth-child(1) {
  transform: translateY(8px) rotate(-45deg);
}
.open .burger span:nth-child(2) {
  opacity: 0;
}
.open .burger span:nth-child(3) {
  transform: translateY(-8px) rotate(45deg);
}
.header_h1 {
  width: 270px;
  height: auto;
}
@media screen and (max-width:959px) { /*タブレット(Tb)*/
  .header_logo_block {
    padding: 0 4%;
    height: auto;
  }
  .privacy_nav_block {
    display: none;
  }
  .burger {
    display: block;
  }
  .header_logo {
    width: 80%;
  }

  .global_nav_menu {
    z-index: 1000;
    position: absolute;
    display: flex;
    flex-direction: column;
    left: -100%;
    top: 0;
    width: 70vw;
    height: 100vh;
    background-color: #434343;
  }
  .open .global_nav_menu {
    left: 0;
  }
  .global_nav_item {
    width: 100%;
    height: 17vh;
    margin: 0;
    border-bottom: 1px solid #f4f4f4;
  }
  .global_nav_link {
    color: #fff;
    font-size: 16px;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .global_nav_link:hover {
    background-color: rgba(247, 247, 247, .2);
  }
  .global_nav_link2 {
    color: #fff;
    padding: 10px 20px;
  }
  .global_nav_link2:hover {
    background-color: rgba(247, 247, 247, .2);
  }
  .global_nav_border2 {
    color: #fff;
  }
  .global_nav_list {
    justify-content: space-evenly;;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 70%;
    margin-bottom: 40px;
  }
  .global_nav_border {
    display: none;
  }
  .global_nav_list2 {
    display: block;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
  }
  .header_h1 {
    width: 250px;
  }
}
@media screen and (max-width:519px) { /*スマホ(Sp)*/
  .header_logo {
    width: 70%;
  }
  .header_h1 {
    width: 230px;
  }
}
/* main */
/* slider */
/* parts.cssに記載 */

/* concept_section */
.concept_block {
  width: 100%;
  height: auto;
  background-image: url(../images/bg.webp);
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  margin:0 auto;
  padding: 50px 0;
  object-fit: cover;
}
.concept_content {
  text-align: center;
}
.concept_text1 {
  font-family: "Times New Roman", "NotoSerifJP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "MS PMincho", serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: 0.1em;
  padding: 0 2%;
}
.concept_text2 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0;
  margin: 15px 0;
}
.concept_text3 {
  font-family: "Times New Roman", "NotoSerifJP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "MS PMincho", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 10px 0;
}
.concept_inner2 {
  width: 60%;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width:959px) { /*タブレット(Tb)*/
  .concept_text1 {
    font-size: 30px;
    line-height: 1.75;
  }
  .concept_text2 {
    font-size: 14px;
  }
  .concept_inner2 {
    width: 70%;
  }
}
@media screen and (max-width:519px) { /*スマホ(Sp)*/
  .concept_inner2 {
    width: 80%;
  }
}
/* forte_section */
.forte_item {
  margin-top: 60px;
}
.btn_black {
  color: #fff;
  background-color: #2c2f30;
  width: 170px;
  height: 35px;
  font-size: 13px;
  font-weight: bold;
  line-height: 35px;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 auto;
}
/* strength_section */
.strength_outer {
  text-align: center;
  gap: 20px;
}
.strength_content {
  width: 100%;
}
.strength_img {
  width: 100%;
  height: auto;
}
.strength_h3 {
  color: #2c2f30;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  margin: 20px 0;
}
.strength_h4,
.strength_h4_2 {
  color: #2c2f30;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0;
  width: 100%;
  height: 100px;
}
.strength_text {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
  letter-spacing: 0;
  margin-bottom: 10px;
}
@media screen and (max-width:959px) { /*タブレット(Tb)*/
  .strength_img {
    width: 70%;
    height: auto;
    margin: 0 auto;
  }
  .strength_outer {
    flex-direction: column;
  }
  .strength_text {
    width: 65%;
    margin: 0 auto 30px;
  }
  .strength_h4_2{
    height: 70px;
  }
}
@media screen and (max-width:519px) { /*スマホ(Sp)*/
  .strength_img {
    width: 90%;
  }
  .strength_text {
    width: 90%;
  }
}
/* printing_factory_section */
.printing_factory_content {
  width: 50%;
  margin-bottom: 0;
}
.printing_factory_img_inner {
  margin: auto;
  width: 50%;
  padding-left: 2%;
}
.printing_factory_img {
  width: 90%;
}
.printing_factory_inner {
  padding-right: 2%;
}
.printing_factory_text {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
  letter-spacing: 0;
  margin-top: 4%;
}
.printing_factory_tab {
  margin: 50px auto;
  background-color: #fff;
  max-width: 1134px;
  width: 100%;
  padding: 0 2%;
}
@media screen and (max-width:959px) { /*タブレット(Tb)*/
  .headline_block3 {
    width: 65%;
    margin: 0 auto;
  }
  .printing_factory_kawaguchi {
    flex-direction: column;
  }
  .printing_factory_content {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .printing_factory_inner {
    width: 65%;
    padding: 0;
    margin: 0 auto;
  }
  .printing_factory_img_inner {
    width: 70%;
    margin: 0 auto;
    padding: 0;
  }
  .printing_factory_img {
    width: 100%;
  }
}
@media screen and (max-width:519px) { /*スマホ(Sp)*/
  .headline_block3 {
    width: 90%;
  }
  .printing_factory_inner {
    width: 90%;
  }
  .printing_factory_img_inner {
    width: 90%;
  }
}
/*タブのスタイル*/
.tab_item {
  width: calc(94%/3);
  margin: 0 1%;
  height: 60px;
  border: 1px solid #2c2f30;;
  background-color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0;
  color: #2c2f30;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  text-align: center;
  padding: 0 0;
  transition: all 0.2s ease;
  cursor: pointer;
}
.tab_item:hover {
  opacity: 0.7;
}
/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}
/*タブ切り替えの中身のスタイル*/
.printing_factory_tab_content {
  display: none;
  /* padding: 50px 25px; */
  clear: both;
  overflow: hidden;
}
/*選択されているタブのコンテンツのみを表示*/
#printing_division:checked ~ #printing_division_content,
#ctp_department:checked ~ #ctp_department_content,
#processing_department:checked ~ #processing_department_content {
  display: block;
}
/*選択されているタブのスタイルを変える*/
.printing_factory_tab input:checked + .tab_item {
  background-color: #f4f4f4;
}
.printing_factory_tab_inner {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.printing_factory_tab_img_block {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  height: auto;
  gap: 20px;
  margin: 30px auto;
}
.printing_factory_tab_img {
  width: 32%;
  height: auto;
  margin: 0 auto;
  padding: 0;
}
.printing_factory_tab_table_block {
  width: 80%;
  max-width: 760px;
  margin: 50px auto;
}
.printing_factory_tab_th,
.printing_factory_tab_td {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.75;
  letter-spacing: 0;
}
.printing_factory_tab_th {
  width: 85%;
}
.printing_factory_tab_td {
  width: 15%;
  padding-right: 2%;
}

@media screen and (max-width:959px) { /*タブレット(Tb)*/
  .printing_factory_tab_inner {
    flex-direction: column;
  }
  .printing_factory_tab_img_block {
    width: 100%;
    margin: 30px auto;
    gap: 15px;
  }
  .printing_factory_tab_table_block {
    margin: 20px auto;
  }
}
@media screen and (max-width:519px) { /*スマホ(Sp)*/
  .printing_factory_tab_img_block {
    gap: 10px;
  }
  .printing_factory_tab_table_block {
    width: 90%;
  }
}

/* テーブル */
.table_grey {
  margin: 30px auto;
  border-collapse: collapse;
}
.table_grey_tr {
  border-color: #c5c5c5;
  border-style: solid;
  border-width: 1px 0;
}
.table_grey_th,
.table_grey_td {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  padding: 2%;
}
.table_grey_th {
  background-color: #f4f4f4;
  color: #737373;
  font-weight: bold;
  width: 30%;
}
.table_grey_td {
  font-weight: 500;
  width: 70%;
}
.table_grey_text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
  text-align: left;
  padding: 2%;
}
.table_grey_p {
  margin: 5px auto;
}
.table_grey_map {
  margin: auto 0;
}
.google_link {
  border: 1px solid #c5c5c5;
  color: #231815;
  padding: 10px;
  border-radius: 3px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
}
.google_link:hover {
  border: none;
  background-color: #434343;
  color: #fff;
}
.google_map_block {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 40vh;
}
.google_map_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45vh;
}
@media screen and (max-width:959px) { /*タブレット(Tb)*/
  .table_flex {
    flex-direction: column;
  }
  .table_grey_map {
    text-align: center;
    margin: 10px auto;
  }
}
@media screen and (max-width:519px) { /*スマホ(Sp)*/
  .google_link {
    padding: 5px;
    border-radius: 3px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
  }
}

/* sakae_group_section */
.sakae_group_menu {
  background-image: url(../images/bg2.webp);
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  margin:0 auto;
  padding: 0;
  object-fit: cover;
}
.sakae_group_list {
  width: 100%;
  max-width: 800px;
  height: 360px;
  align-items: center;
  gap: 30px;
}
.sakae_group_item  {
  width: 340px;
  height: 180px;
  border: 1px solid #fff;
}
.sakae_group_link {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: 0.1em;
  display: block;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 5%;
  background-color:  rgba(13, 97, 132,0.55);
}
.sakae_group_link:hover {
  background-color: rgb(0, 52, 74, 0.75);
}
.sakae_group_link::after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-left: 20px;
}
.sakae_group_history_table {
  border-collapse: separate;
  border-spacing: 40px 10px;
  width: 70%;
  margin: 0 auto;
  word-wrap: break-word;
}
.sakae_group_history_th {
  width: 35%;
  font-size: 14px;
  font-weight: bold;
  line-height: 2.85;
  letter-spacing: 0.1em;
}
.sakae_group_history_td {
  width: 65%;
  font-size: 16px;
  font-weight: bold;
  line-height: 2.5;
  letter-spacing: 0;
}

@media screen and (max-width:959px) { /*タブレット(Tb)*/
  .sakae_group_list {
    flex-direction: column;
    gap: 20px;
    padding: 40px 0;
    height: auto;
  }
  .sakae_group_item  {
    width: 50%;
    height: 10vh;
    border: 1px solid #fff;
  }
  .sakae_group_link {
    margin: 0 auto;
    padding: 0;
    font-size: 16px;
  }
  .sakae_group_history_table {
    border-spacing: 25px 10px;
    width: 80%;
    margin: 0 auto;
    word-wrap: break-word;
  }
  .sakae_group_history_th,
  .sakae_group_history_td {
    line-height: 2;
  }
}
@media screen and (max-width:519px) { /*スマホ(Sp)*/
  .sakae_group_history_table {
    border-spacing: 15px;
    width: 95%;
    margin: 0 auto;
    word-wrap: break-word;
  }
  .sakae_group_list {
    flex-direction: column;
    gap: 10px;
  }
  .sakae_group_item  {
    width: 80%;
    height: 5vh;
    border: 1px solid #fff;
  }
  .sakae_group_link {
    margin: 0 auto;
    padding: 0;
    font-size: 14px;
  }
}

/* footer */
.footer_nav {
  width: 100%;
  height: auto;
  background-color: #2c2f30;
  text-align: center;
  padding-bottom: 50px;
}
.footer_logo_block {
  display: inline-block;
  width: 300px;
  height: auto;
}
.footer_logo {
  width: 100%;
  height: auto;
  margin: 60px auto;
}
.footer_nav_list {
  align-items: center;
}
.footer_nav_border {
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
  color: #fff;
}
.footer_nav_link {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0;
  padding: 10px 25px;
}
.footer_privacy {
  background-color: #434343;
}
.footer_privacy_block {
  align-items: center;
  width: 100%;
  height: auto;
}
.footer_privacy_item {
  padding: 0;
}
.footer_privacy_link {
  color: #c7c7c7;
  font-size: 12px;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0;
}
.footer_privacy_list {
  margin: 20px 0 20px 20px;
}
.footer_privacy_text_menu {
  align-items: center;
}
.footer_privacy_text {
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0;
  margin-right: 10px;
}
.footer_copy {
  text-align: center;
  margin: 20px auto 60px;
  color: #858585;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.71;
  letter-spacing: 0;
}
@media screen and (max-width:959px) { /*タブレット(Tb)*/
  .footer_logo_block {
    width: 250px;
  }
  .footer_logo {
    margin: 50px auto 20px;
  }
  .footer_nav_list {
    flex-direction: column;
    width: 100%;
    height: auto;
  }
  .footer_nav_item {
    margin: 10px auto;
    width: 100%;
    height: auto;
    display: block;
  }
  .footer_nav_link {
    font-size: 16px;
    padding: 0;
    line-height: 1;
  }
  .footer_nav_border {
    display: none;
  }
  .footer_privacy_text {
    line-height: 1.5;
  }
  .footer_nav {
    padding-bottom: 35px;
  }
  .footer_privacy_block {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }
  .footer_privacy_menu {
    width: 100%;
    border-bottom: 1px solid #707070;
  }
  .footer_privacy_text {
    margin: 0 auto;
  }
  .footer_privacy_text_menu {
    padding: 15px 2%;
  }
}
@media screen and (max-width:519px) { /*スマホ(Sp)*/
  .footer_logo_block {
    width: 230px;
  }
  .footer_nav_link {
    font-size: 14px;
  }
  .footer_privacy_img {

    width: 30%;
  }
  .footer_privacy_text {
    color: #fff;
    font-size: 12px;
  }
}
/* =================================================== */
/* 固定ページ page.php*/
/* =================================================== */
/* 各社ページ */
.company_ayumi_block,
.company_ayumi_img_block {
  width: 50%;
}
.company_ayumi_block {
  margin: 0 20px 0 30px;
}
.company_ayumi_text {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
  letter-spacing: 0;
  padding: 15px 0;
}
.company_ayumi_img_block {
  text-align: center;
}
  .company_ayumi_img_block .txt {
    display: inline-block;
  }
.company_ayumi_img {
  width: 50%;
  height: auto;
  margin:100px auto 0;
}
.table_noborder_grey {
  margin: 0 auto;
  border-spacing: 20px;
  word-wrap: break-word;
}
.table_noborder_grey_th,
.table_noborder_grey_td {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0;
}
.table_noborder_grey_th {
  background-color: #f4f4f4;
  color: #737373;
  width: 35%;
  padding: 15px 5px;
}
.table_noborder_grey_td {
  width: 65%;
}
@media screen and (max-width:959px) { /*タブレット(Tb)*/
  .company_ayumi_section {
    flex-direction: column;
    align-items: center;
  }
  .company_ayumi_block {
    width: 65%;
    margin: 0 auto;
  }
  .company_ayumi_img_block {
    width: 70%;
  }
  .company_ayumi_img {
    margin:20px auto 0;
  }
  .table_noborder_grey_th {
    width: 30%;
  }
  .table_noborder_grey_td {
    width: 70%;
  }
}
@media screen and (max-width:519px) { /*スマホ(Sp)*/
  .company_ayumi_block,
  .company_ayumi_img_block {
    width: 90%;
  }
  .company_ayumi_img {
    width: 100%;
  }
}
/* 採用ページ */
.recruiting_content_block {
  text-align: center;
}
.recruiting_content_h3 {
  color: #2c2f30;
  font-size: 24px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: 50px;
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.rainbow_list,
.rainbow_list2 {
  align-items: center;;
  margin: 0 auto;
  width: 100%;
  height: 20px;
}
.rainbow_item {
  width: 10px;
  height: 10px;
  margin: 50px 5px;
}
.rainbow_item2 {
  width: 8px;
  height: 8px;
  margin: 50px 5px;
}
.color_blue1 {
  background-color: #1c94d4;
}
.color_blue2 {
  background-color: #1262a9;
}
.color_blue3 {
  background-color: #1c2a73;
}
.color_blue4 {
  background-color: #87157a;
}
.color_red1 {
  background-color: #d21277;
}
.color_red2 {
  background-color: #d50c4c;
}
.color_red3 {
  background-color: #d61419;
}
.color_red4 {
  background-color: #e89113;
}
.color_green1 {
  background-color: #f2e724;
}
.color_green2 {
  background-color: #88b928;
}
.color_green3 {
  background-color: #1f9244;
}
.recruiting_text {
  font-family: "Times New Roman", "NotoSerifJP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "MS PMincho", serif;
  color: #2c2f30;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.87;
  letter-spacing: 0.1em;
  margin: 40px 0;
}
@media screen and (max-width:959px) { /*タブレット(Tb)*/
  .recruiting_text_block {
    width: 80%;
  }
}
@media screen and (max-width:519px) { /*スマホ(Sp)*/
  .recruiting_content_h3 {
    font-size: 20px;
  }
  .rainbow_item {
    width: 8px;
    height: 8px;
    margin: 40px 4px;
  }
  .rainbow_item2 {
    width: 6px;
    height: 6px;
    margin: 40px 4px;
  }
}
/* 個人情報保護方針 */
.privacy_policy_headline {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0 20px;
}
.headline_block2 {
  width: 80%;
}

.privacy_policy_img_block {
  width: 20%;
}
.headline_block4 {
  width: 100%;
}
.privacy_policy_img {
  width: 75px;
  height: auto;
  margin-left: auto;
}
.privacy_policy_content {
  margin-top: 50px;
}
.defo_p_text,
.privacy_policy_text,
.privacy_policy_text2 {
  color: #231815;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.defo_p_text,
.privacy_policy_text {
  margin: 20px 0;
}
.privacy_policy_text2 {
  margin: 5px 0;
}
.privacy_policy_list1,
.privacy_policy_list2 {
  margin:20px 30px 20px 30px;
}
.privacy_policy_item1 {
  text-indent: -1rem;
  margin: 20px 0;
}
.privacy_policy_item2 {
  text-indent: -1rem;
  margin: 10px 0;
}
.privacy_policy_inner_right {
  text-align: right;
  margin: 20px 0;
}
.privacy_policy_inner_right2 {
  text-align: right;
  margin: 10px 0;
}
.privacy_policy_headline2 {
  margin: 80px 20px;
}
.privacy_policy_link,
.privacy_policy_link2,
.error_404_link {
  color: #0C3090;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-left: 15px;
}
.privacy_policy_link {
  margin: 5px 0;
}
.privacy_policy_link2 {
  margin: 0;
}
.acrobat_reader_block {
  align-items: center;
  gap: 10px;
}
.acrobat_reader_img {
  margin-right: 40px;
}
@media screen and (max-width:959px) { /*タブレット(Tb)*/

  .footer_privacy_img .privacy_policy_img {
    margin: 0;
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width:519px) { /*スマホ(Sp)*/
  .privacy_policy_img {
    width: 50px;
    height: 50px;
  }
  .privacy_policy_link,
  .privacy_policy_link2 {
    font-size: 14px;
    padding-left: 5px;
  }
  .privacy_policy_inner_right2 {
    padding-right: 2%;
  }
  .privacy_policy_text,
  .privacy_policy_text2 {
    font-size: 14px;
  }
  .privacy_policy_inner_end {
    flex-direction: column;
    text-align: right;
    padding-right: 2%;
  }
  .acrobat_reader_block {
    margin: 0 2% 100px;
    flex-flow: column-reverse;
    gap: 0;
  }
  .acrobat_reader_img {
    margin: 0 auto;
  }
}
/* 404 */
  .error_404_block {
    margin: 100px auto;
  }
  .error_404_content,
  .error_404_item {
    text-align: center;
  }

/* sdgs */
.sgdsBlock {
  width: 100%;
  height: auto;
  background: #fff url(../images/sdg_img03.webp);
  background-position: center 50%;
  background-size: 350px;
  background-repeat: no-repeat;
  margin: 0 auto 5.5%;
  padding: 0 0 0;
  object-fit: cover;
}
  @media screen and (max-width: 519px) {
  .sgdsBlock {
    margin: 0 auto 40px;
    background-size: 70%;
  }
  }
  .sgdsBlock > .inner {
  }
  .sdgs_bigTitle {
    padding: 4% 2% 2%;
    text-align: center;
    color: #9bbebc;
  }
  @media screen and (max-width: 519px) {
    .sdgs_bigTitle {
      padding: 40px 0;
      line-height: 1.3;
    }
  }
  .c_sec_imgBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
    .c_sec_imgBox .imgBox {
      width: 50%;
      max-width: 400px;
      margin: 0 auto;
    }
      .c_sec_imgBox img {
        width: 100%;
        height: auto;
        object-fit: cover;
      }

.sgdsBlock.b_02 {
  margin: 0 auto 40px;
  background-image: none;
}
  .headline_h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.1em;
    margin: 40px auto 40px;
  }
  @media screen and (max-width: 519px) {
    .headline_h3 {
      margin: 40px auto 20px;
      font-size: 25px;
    }
  }
  .sdgs_title_2col {
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sgdsBlock.b_02 .sdgs_title_2col .imgBox {
    width: 40%;
    min-width: 40%;
    text-align: right;
  }
    .sgdsBlock.b_02 .sdgs_title_2col .imgBox img {
      max-width: 100%;
      margin: 0 0 0 auto;
    }
  .sgdsBlock.b_02 .headline_h3_line {
    width: 100%;
    text-align: left;
    padding-left: 15px;
    margin: 0;
  }
    .sgdsBlock.b_02 .headline_h3_line::before {
      display: none;
    }
  @media screen and (max-width: 519px) {
    .sdgs_title_2col {
      flex-direction: column;
    }
    .sgdsBlock.b_02 .sdgs_title_2col .imgBox {
      width: 100%;
    }
        .sgdsBlock.b_02 .sdgs_title_2col .imgBox {
          text-align: center;
        }
          .sgdsBlock.b_02 .sdgs_title_2col .imgBox img {
            margin: 0 auto;
          }
    .sgdsBlock.b_02 .headline_h3_line {
      width: 100%;
      margin: 30px auto 3px;
      font-size: 20px;
      line-height: 1.3;
    }
    .sgdsBlock.b_02 .headline_h3_line::before {
      display: block;
      height: 100%;
    }
  }
