@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap");
/*
------------------------------------------------
共通部分
------------------------------------------------
*/
* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
  background-size: cover;
  background-position: center;
}

*::before,
*::after {
  background-size: cover;
  background-position: center;
}

body {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #1e0501;
  /* font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif; */
  font-family: "Noto Serif JP", serif;
}

img {
  display: block;
  object-position: center;
}

main {
  padding-top: 90px;
  overflow: hidden;
}

.fax a{
  pointer-events: none;
  color: #1e0501;
}

/*以下、アニメーション共通*/

.common_hover_opa {
  transition: 0.4s;
}

.common_hover_opa:hover {
  opacity: 0.6;
}

.common_fade_show {
  opacity: 0;
  transform: translateY(50px);
}

.common_fade_show.show {
  opacity: 1;
  transition-duration: 2s;
  transform: translateY(0);
}

.common_arrow_link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}

.common_arrow_link p {
  font-weight: 500;
  line-height: 1;
  color: rgba(227, 142, 79);
  margin-right: 64px;
}

.common_arrow_link .radi {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  position: relative;
}

.common_arrow_link .radi::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dotted rgba(227, 142, 79);
  transition: 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.common_arrow_link .radi .arrow {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: -35px;
  transition: 0.4s;
  margin: auto;
  width: 70px;
  height: 7px;
  object-fit: cover;
  object-position: right;
}

.common_arrow_link:hover .radi::before {
  transform: rotate(30deg) scale(0.9);
}

.common_arrow_link:hover .arrow {
  width: 75px;
}

/*以下、共通パーツ*/
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/*以下、共通セクション*/
header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
}

header .header_container {
  background-color: #fff;
  padding-left: 40px;
}

header .header_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .header_logo {
  width: 254px;
  height: 43px;
  display: block;
  position: relative;
}

header .header_logo .logo_flex {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}

header .header_logo .logo {
  width: 13%;
  transform: translateY(-6px);
}

header .header_logo .logo_title {
  width: 84%;
}

/* header .header_logo img{
  width:100%;
  position: absolute;
  top:0;
  left:0;
} */

header .header_right {
}

header .header_right .parent_list {
  display: flex;
  justify-content: flex-end;
}

header .header_right .parent_list .has_submenu {
  position: relative;
  z-index: 50;
}

header .submenu {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 50;
}

header .submenu.show {
  opacity: 1;
  pointer-events: auto;
}

header .submenu li {
  margin-bottom: 1px;
}

header .submenu li:last-child {
  margin-bottom: 0;
}

header .submenu li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1e0501;
  color: #fff;
  line-height: 1;
  font-weight: 500;
  padding: 18px 4px;
  transition: 0.4s;
}

header .submenu li a:hover {
  background-color: #e38e4f;
}

header .header_right .parent_link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 90px;
  border-left: 1px solid #a6a295;
  transition: 0.4s;
  color: #1e0501;
  font-weight: normal;
  white-space: nowrap;
  letter-spacing: 0.8px;
  font-weight: 600;
}

header .header_right .parent_link.off {
  opacity: 0.5;
  pointer-events: none;
}

header .header_right li:hover .parent_link {
  background-color: #1e0501;
  color: #fff;
}

header .header_right li .parent_link.active {
  background-color: #1e0501;
  color: #fff;
}

header .header_right li:hover .parent_link.off {
  color: #1e0501;
  background: none;
}

@media (max-width: 1600px) {
  header .header_right .parent_link {
    font-size: 14px;
    width: 155px;
  }
}

@media (max-width: 1400px) {
  header .header_right .parent_link {
    font-size: 14px;
    width: auto;
    padding: 0 24px;
  }
}

#page_top {
  position: absolute;
  top: -32px;
  left: calc(50% + 530px);
  cursor: pointer;
}

#page_top .radi {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  position: relative;
}

#page_top .radi::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dotted rgba(227, 142, 79);
  transition: 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #fff;
}

#page_top .radi .arrow {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: -30px;
  margin: auto;
  transition: 0.4s;
  width: 7px;
  height: 60px;
  object-fit: cover;
  object-position: top;
}

#page_top:hover .radi::before {
  transform: rotate(30deg) scale(0.9);
}

#page_top:hover .arrow {
  height: 65px;
}

footer {
  padding: 80px 0 48px;
  position: relative;
  border-top: 1px solid #a6a295;
  font-family: "Noto Sans JP", sans-serif;
}

footer .footer_logo {
  width: 255px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

footer .footer_logo .logo {
  width: 13%;
  transform: translateY(-6px);
}

footer .footer_logo .logo_title {
  width: 84%;
}

footer .flex {
  display: flex;
  justify-content: space-between;
}

footer .flex .footer_left {
}

footer .footer_left {
}

footer .footer_left .p01 {
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1;
}

footer .footer_left .p02 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}

footer .footer_left .p03 {
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}

footer .footer_left .p04 {
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 12px;
}

footer .footer_left .p05 {
  margin-bottom: 10px;
}

footer .footer_left .p05 .tel {
  pointer-events: none;
  font-weight: 500;
  line-height: 1;
  color: #1e0501;
}

footer .footer_left .p06 {
  font-weight: 500;
  line-height: 1;
  margin-bottom: 24px;
}

footer .footer_left iframe {
  display: block;
  width: 100%;
  height: 180px;
}

footer .footer_right {
}

footer .footer_right .menu_flex {
  display: flex;
}

footer .menu_flex ul {
  min-width: 160px;
  min-height: 170px;
  padding-left: 20px;
  border-left: 1px solid #a6a295;
}

footer .menu_flex ul li {
  margin-bottom: 16px;
}

footer .menu_flex ul li a {
  transition: 0.4s;
  display: inline-block;
  font-weight: 500;
  line-height: 1;
  color: #1e0501;
}

footer .menu_flex ul li a.sub {
  position: relative;
  padding-left: 24px;
}

footer .menu_flex ul li a.sub::before {
  content: "";
  width: 7px;
  height: 2px;
  background-color: #1e0501;
  transition: 0.4s;
  position: absolute;
  top: 8px;
  left: 7px;
}

footer .menu_flex ul li a.blur {
  opacity: 0.5;
  pointer-events: none;
}

footer .menu_flex ul li a:hover {
  color: #e38e4f;
}

footer .menu_flex ul li a.sub:hover::before {
  background-color: #e38e4f;
}

footer .copy_flex {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

footer .copy_flex .privacy {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #1e0501;
}

footer .copy_flex .border {
  width: 1px;
  height: 20px;
  background-color: #a6a295;
  margin: 0 20px;
}

footer .copy_flex .copy {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
/*
------------------------------------------------
トップページ
------------------------------------------------
*/

body.top_body {
}

main.top_main {
}

.top_section h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  color: #1e0501;
  margin-bottom: 56px;
}

.top_section .page_bg {
  width: 100%;
}

.top_section .white_box {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: -50px auto 0;
  border-top: 4px solid #f39d64;
  background-color: #fff;
  padding: 90px 24px 24px;
}

.top_section .white_box .info_text {
  margin-bottom: 32px;
  text-align: center;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.64;
  letter-spacing: 0.08em;
}

.top_section01 {
}

.top_section01 .swiper_block {
  position: relative;
}

.top_section01 .swiper_block .text_block {
  position: absolute;
  z-index: 20;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_section01 .swiper_block .p01 {
  font-size: 66px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: #fff;
  margin-bottom: 32px;
  text-shadow: 0px 1px 15.8px rgba(19, 52, 76, 0.75);
}

.top_section01 .swiper_block .p02 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_section01 .swiper_block .p02 p {
  text-shadow: 0px 1px 15.8px rgba(19, 52, 76, 0.75);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  margin: 0 24px;
}

.top_section01 .swiper_block .p02 span {
  width: 60px;
  height: 1px;
  background-color: #fff;
}

.top_section01 .swiper-slide {
  width: 100%;
}

.top_section01 .swiper-slide img {
  width: 100%;
  height: 42vw;
}

.top_section01 .swiper_pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.top_section01 .swiper-pagination-bullet {
  background: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #1e0501;
  margin: 0 10px;
  opacity: 1;
}

.top_section01 .swiper-pagination-bullet:hover {
  background-color: #1e0501;
  transition: 0.4s;
}

.top_section01 .swiper-pagination-bullet-active {
  background-color: #1e0501;
}

.top_section02 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.top_section02 .p01 {
  text-align: center;
  font-size: 32px;
  line-height: 1.56;
  margin-bottom: 40px;
}

.top_section02 .p02 {
  display: flex;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.64;
  letter-spacing: 0.08em;
}

.top_section03 {
}

.top_section04 {
  padding-top: 48px;
  padding-bottom: 160px;
}

.top_section04 .link_flex {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 56px auto 0;
}

.top_section04 .link_flex .link {
  width: 398px;
  height: 398px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_section04 .link_flex .link::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #1e0501;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
  transition: 0.4s;
}

.top_section04 .link_flex .link::after {
  content: "";
  width: 98%;
  height: 98%;
  border: 1px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transition: 0.4s;
  transform: scale(0);
}

.top_section04 .link_flex .link h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 10px;
  color: #fff;
  position: relative;
}

.top_section04 .link_flex .link h3::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.top_section04 .link_flex .link .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -4;
  top: 0;
  left: 0;
}

.top_section04 .link_flex .link:hover::before {
  opacity: 0.7;
}

.top_section04 .link_flex .link:hover::after {
  transform: scale(1);
}

.top_section05 {
  padding-bottom: 88px;
}

.top_section06 {
  padding-bottom: 120px;
}

.top_section06 .banner {
  display: block;
  width: 100%;
}

.top_section06 .banner img {
  width: 100%;
}

.top_section06 .banner01 {
  margin-bottom: 120px;
}

.top_section07 {
  padding-bottom: 120px;
}

.top_section07 .news_frame {
  max-width: 830px;
  padding-right: 30px;
  margin: 0 auto;
  overflow-y: scroll;
  max-height: 460px;
  /* scrollbar-width: 1px;
  scrollbar-color: #e38e4f #a6a295 ; */
  /* scrollbar-width: none;
  -ms-overflow-style: none;/ */
}

.top_section07 .news_frame::-webkit-scrollbar {
  width: 1px;
}
.top_section07 .news_frame::-webkit-scrollbar-track {
  background-color: #a6a295;
}
.top_section07 .news_frame::-webkit-scrollbar-thumb {
  background-color: #e38e4f;
}

/* .top_section07 .news_frame::-webkit-scrollbar {
  display: none;
} */

.top_section07 .news_list {
  position: relative;
  border-top: 1px solid #a6a295;
  border-right: 1px solid #a6a295;
}

.top_section07 .news_list::before {
  content: "";
  width: 7%;
  height: 1px;
  background-color: #e38e4f;
  position: absolute;
  top: -1px;
  left: 0;
}

.top_section07 .news_block {
  display: flex;
  padding: 40px 40px 40px 0;
  position: relative;
  border-bottom: 1px solid #a6a295;
  font-family: "Noto Sans JP", sans-serif;
}

.top_section07 .news_block::before {
  content: "";
  width: 7%;
  height: 1px;
  background-color: #e38e4f;
  position: absolute;
  bottom: -1px;
  left: 0;
  transition: 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.top_section07 .news_block:hover::before {
  width: 100%;
}

.top_section07 .news_block .date {
  width: 100px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #1e0501;
  padding-top: 4px;
}

.top_section07 .news_block .news_category {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 80px;
  height: 24px;
  padding: 0 12px 2px;
  background-color: #1e0501;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #fff;
  flex-shrink: 0;
}

.top_section07 .news_block .news_title {
  padding-left: 10%;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.57;
  letter-spacing: 0.1em;
  text-align: left;
  color: #1e0501;
  /* margin-top: -6px; */
  /* flex-shrink: 0; */
}

/*
-----------------------------------------------------------------------------
下層共通
-----------------------------------------------------------------------------
*/

/*mv部分*/
main.page_main {
}

.common_mv_section {
  position: relative;
}

.common_mv_section .mv {
  width: 100%;
  height: 38.5vw;
  max-height: 740px;
  object-fit: cover;
}

.common_mv_section .title_block {
  position: absolute;
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: rgba(30, 5, 1, 0.5);
  padding: 20px;
}

.common_mv_section .title_frame {
  border: 1px solid #fff;
  height: 215px;
  padding: 0 24px;
  min-width: 490px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.common_mv_section .page_title {
  text-align: center;
  font-size: 50px;
  letter-spacing: 0.06em;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}

/*パンクズ*/

.common_bread_section {
  padding-top: 40px;
  font-family: "Noto Sans JP", sans-serif;
}

.common_bread_section .bread_flex {
  display: flex;
  flex-wrap: wrap;
}

.common_bread_section .bread_link {
  font-weight: 400;
  line-height: 1;
  color: #1e0501;
  margin-bottom: 16px;
  transition: 0.4s;
}

.common_bread_section .bread_link:hover {
  opacity: 0.6;
}

.common_bread_section .bread_current {
  font-weight: 400;
  line-height: 1;
  color: #8e8280;
  margin-bottom: 16px;
}

.common_bread_section .bread_arrow {
  width: 8px;
  margin: 0 16px;
  padding-top: 3px;
  margin-bottom: 16px;
}

.common_bread_section .bread_arrow img {
  width: 100%;
}

.common_section_h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: #1e0501;
  margin-bottom: 56px;
}

.common_section_mv {
  width: 100%;
  height: 27vw;
  max-height: 600px;
  /* min-height:400px; */
  object-fit: cover;
}

/*事業紹介のスライダー部分*/
.slider_section {
  position: relative;
}

.slider_section::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fbfafa;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -4;
}

.common_slider_block {
  padding: 72px 98px;
  border: solid 1px #1e0501;
}

.common_slider_block .slider_main {
  height: 610px;
  margin-bottom: 20px;
  position: relative;
}

.common_slider_block .slider_main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: 1s;
  opacity: 0;
}

.common_slider_block .slider_main img.show {
  opacity: 1;
  z-index: 3;
}

.common_slider_block .slider_main .img_text {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: #1e0501;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #fff;
  transition: 1s;
  opacity: 0;
}

.common_slider_block .slider_main .img_text.show {
  opacity: 1;
}

.common_slider_block .img_flex {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.common_slider_block .img_flex .thumb {
  width: 190px;
  height: 127px;
  object-fit: cover;
  cursor: pointer;
}

.common_slider_block .slide_arrow {
  position: absolute;
  width: 16px;
  cursor: pointer;
  top: 0;
  bottom: 0;
  margin: auto;
}

.common_slider_block .slide_arrow.prev {
  left: -40px;
}

.common_slider_block .slide_arrow.next {
  right: -40px;
}
/*
-----------------------------------------------------------------------------
会社情報
-----------------------------------------------------------------------------
*/

body.company_body {
}

main.company_main {
}

.company_section01 {
  padding-top: 120px;
  padding-bottom: 180px;
}

.company_section01 .p01 {
  max-width: 790px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.64;
}

.company_section02 {
}

.company_section02 .contents_area {
  padding-bottom: 120px;
  position: relative;
  margin-top: -156px;
}

.company_section02 .contents_area::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fbfafa;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}

.company_section02 .white_box {
  padding: 96px;
  background-color: #fff;
  border-top: 4px solid #f39d64;
  width: 1200px;
  max-width: 90%;
  margin: 0 auto 80px;
}

.company_section02 .white_box02 {
  margin: 0 auto;
}

.company_section02 .info_list {
  font-family: "Noto Sans JP", sans-serif;
}

.company_section02 .info_block {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid rgba(30, 5, 1, 0.2);
  position: relative;
}

.company_section02 .info_block::before {
  content: "";
  width: 11%;
  height: 2px;
  background-color: #e38e4f;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.company_section02 .info_left {
  width: 32%;
  line-height: 1.6;
  font-weight: 600;
}

.company_section02 .info_block.center_align {
  align-items: center;
  padding: 10px 0;
}

.company_section02 .info_right {
  width: 68%;
  line-height: 1.6;
  font-weight: 500;
}

.company_section02 .info_right.stock {
  white-space: nowrap;
}

.company_section02 .info_right .map {
  color: #f87118;
  font-weight: 500;
  display: inline-block;
}

.company_section02 .info_right .map span {
  border-bottom: 1px solid #f87118;
}

.company_section02 .info_right .tel {
  color: #1e0501;
  font-weight: 500;
  pointer-events: none;
}

.company_section02 .info_right .fax {
  pointer-events: none;
}

.company_section02 .info_right .recruit_banner {
  display: block;
  width: 300px;
  max-width: 100%;
}

.company_section02 .info_right .recruit_banner img {
  width: 100%;
}

.company_section02 .rule_text {
  max-width: 780px;
  margin: 0 auto 56px;
  font-size: 22px;
  line-height: 1.64;
  letter-spacing: 0.08em;
}

.company_section02 .rule_list {
  font-family: "Noto Sans JP", sans-serif;
}

.company_section02 .rule_block {
  display: flex;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(30, 5, 1, 0.2);
}

.company_section02 .rule_left {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #e38e4f;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #e38e4f;
}

.company_section02 .rule_left.orange {
  background-color: #e38e4f;
  color: #fff;
  line-height: 1.2;
}

.company_section02 .rule_right {
  width: calc(100% - 100px);
  padding-left: 48px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.67;
  letter-spacing: 0.08em;
  color: #1e0501;
}

.company_section03 {
  padding-top: 108px;
  padding-bottom: 118px;
}

.company_section03 .p01 {
  max-width: 810px;
  margin: 0 auto 120px;
  font-size: 22px;
  line-height: 1.64;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
}

.company_section03 h3 {
  padding-left: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: left;
  position: relative;
  white-space: nowrap;
  margin-bottom: 32px;
}

.company_section03 h3::before {
  content: "";
  width: 4px;
  height: 100%;
  background-color: #f39d64;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.company_section03 .img_box {
  margin-bottom: 80px;
  background-color: #f4f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.company_section03 .company_img02 {
  height: 600px;
}

.company_section03 .company_img02 img {
  width: 740px;
  max-width: 100%;
}

.company_section03 .company_img03 {
  height: 654px;
}

.company_section03 .company_img03 img {
  width: 890px;
  max-width: 100%;
}

.company_section04 {
  padding-bottom: 210px;
}

.company_section04 .history_list {
  position: relative;
  margin-top: 72px;
  font-family: "Noto Sans JP", sans-serif;
}

.company_section04 .history_list::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #1e0501;
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -2;
}

.company_section04 .history_list::after {
  content: "";
  width: 1px;
  height: 95px;
  border-left: 2px dashed #1e0501;
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -2;
}

.company_section04 .history_block {
  width: 50%;
  margin-bottom: 48px;
  position: relative;
  padding-right: 17%;
}

.company_section04 .history_block:last-child {
  margin-bottom: 0 !important;
  height: 0;
}

.company_section04 .history_block::before {
  content: "";
  width: 21px;
  height: 21px;
  background-color: #e38e4f;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  right: -10.5px;
}

.company_section04 .history_block::after {
  content: "";
  width: 31%;
  border-top: 2px dotted #e38e4f;
  position: absolute;
  top: 12.5px;
  right: 0;
}

.company_section04 .history_block.history_block_right {
  padding-right: 0;
  padding-left: 17%;
  margin: 0 0 48px auto;
}

.company_section04 .history_block.history_block_right::before {
  right: auto;
  left: -10.5px;
}

.company_section04 .history_block.history_block_right::after {
  right: auto;
  left: 0;
  right: auto;
}

.company_section04 .history_block.mb0 {
  margin-bottom: 0;
}

.company_section04 .history01 {
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  color: #e38e4f;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.company_section04 .history02 {
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 500;
}

/*
-----------------------------------------------------------------------------
事業案内
-----------------------------------------------------------------------------
*/

body.business_body {
}

main.business_main {
}

.business_section01 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.business_section01 .p01 {
  max-width: 800px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.64;
  letter-spacing: 0.08em;
}

.business_section02 {
  padding-bottom: 120px;
}

.business_section02 .business_list {
  margin-top: 120px;
  margin-bottom: 120px;
}

.business_section02 .business_block {
  display: flex;
  height: 440px;
}

.business_section02 .business_block .img_block {
  width: 50%;
  height: 100%;
}

.business_section02 .business_block .img_block img {
  width: 100%;
  height: 100%;
}

.business_section02 .business_block .text_block {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 72px;
  padding-right: 48px;
}

.business_section02 .business_block .business_title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 20px;
  margin-bottom: 32px;
  position: relative;
}

.business_section02 .business_block .business_title::after {
  content: "";
  width: 40px;
  height: 3px;
  background-color: #f39d64;
  position: absolute;
  bottom: 0;
  left: 0;
}

.business_section02 .business_block .business_text {
  margin-bottom: 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.67;
}

.business_section02 .business_block .business_link {
  width: 200px;
  height: 46px;
  background-color: #1e0501;
  border: 1px solid #1e0501;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  transition: 0.4s;
}

.business_section02 .business_block .business_link:hover {
  background-color: #fff;
  color: #1e0501;
}

.business_section02 .business_block01 .text_block {
  border-top: 1px solid #1e0501;
  border-right: 1px solid #1e0501;
}

.business_section02 .business_block02 .text_block {
  border-left: 1px solid #1e0501;
}

.business_section02 .business_block03 .text_block {
  border-bottom: 1px solid #1e0501;
  border-right: 1px solid #1e0501;
}

.business_section02 .pdf_link {
  display: block;
  width: 100%;
}

.business_section02 .pdf_link img {
  width: 100%;
}

/*
-----------------------------------------------------------------------------
搬入業務
-----------------------------------------------------------------------------
*/

body.carring_in_body {
}

main.carring_in_main {
}

.carring_in_section01 {
  padding-top: 120px;
  padding-bottom: 150px;
}

.carring_in_section01 .p01 {
  display: flex;
  justify-content: center;
  font-size: 22px;
  line-height: 1.64;
  letter-spacing: 0.08em;
}

.carring_in_section02 {
  padding: 100px 0;
}

.carring_in_section03 {
  padding: 160px 0 100px;
}

.carring_in_section03 .in_block {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 72px;
}

.carring_in_section03 .in_block02 {
  margin-bottom: 0;
}

.carring_in_section03 .in_block .in_title {
  position: relative;
  padding-bottom: 20px;
  border-bottom: 3px solid #f39d64;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  margin-bottom: 28px;
}

.carring_in_section03 .in_block .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.carring_in_section03 .in_block .img_block {
  width: 48%;
}

.carring_in_section03 .in_block .img_block img {
  width: 100%;
}

.carring_in_section03 .in_block .text_block {
  width: 48%;
  font-size: 18px;
  line-height: 1.67;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.carring_in_section03 .in_block .min_title {
  margin-bottom: 16px;
  padding-left: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  position: relative;
}

.carring_in_section03 .in_block .min_title::before {
  content: "";
  width: 3px;
  height: 150%;
  background-color: #f39d64;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.carring_in_section03 .in_block table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}

.carring_in_section03 .in_block table th {
  width: 41%;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  color: #1e0501;
  background-color: #fbfafa;
  border: solid 1px #c2bbba;
  padding: 16px 24px;
}

.carring_in_section03 .in_block table td {
  border: solid 1px #c2bbba;
  width: 59%;
  border: solid 1px #c2bbba;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

/*
-----------------------------------------------------------------------------
保管業務
-----------------------------------------------------------------------------
*/

body.storage_body {
}

main.storage_main {
}

.storage_section01 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.storage_section01 .p01 {
  display: flex;
  justify-content: center;
  font-size: 22px;
  line-height: 1.64;
  letter-spacing: 0.08em;
}

.storage_section02 {
  padding: 100px 0;
}

.storage_section03 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.storage_section03 .stotage_block {
  margin-bottom: 80px;
  font-family: "Noto Sans JP", sans-serif;
}

.storage_section03 .stotage_block03 {
  margin-bottom: 0;
}

.storage_section03 .storage_img01 {
  width: 100%;
  margin-bottom: 56px;
}

.storage_section03 .storage_title {
  padding-left: 48px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-align: left;
  position: relative;
  margin-bottom: 24px;
}

.storage_section03 .storage_title::before {
  content: "";
  width: 30px;
  height: 5px;
  background-color: #f39d64;
  position: absolute;
  left: 0;
  top: 13px;
}

.storage_section03 .storage_text {
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  font-weight: 500;
}

.storage_section03 .stotage_block ul.ul01 {
  display: flex;
  justify-content: space-between;
}

.storage_section03 .stotage_block ul.ul01 li {
  width: 48%;
}

.storage_section03 .stotage_block ul.ul01 li img {
  width: 100%;
}

.storage_section03 .stotage_block ul.ul01 li .caption {
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  margin-top: 12px;
  font-weight: 500;
}

.storage_section03 .stotage_block ul.ul02 {
  display: flex;
  justify-content: space-between;
}

.storage_section03 .stotage_block ul.ul02 li {
  width: 31.6%;
}

.storage_section03 .stotage_block ul.ul02 li img {
  width: 100%;
}

.storage_section03 .stotage_block ul.ul03 {
  display: flex;
  justify-content: space-between;
}

.storage_section03 .stotage_block ul.ul03 li {
  width: 48%;
}

.storage_section03 .stotage_block ul.ul03 li img {
  width: 100%;
}

.storage_section04 {
  padding-bottom: 150px;
}

.storage_section04 .storage_img09 {
  width: 100%;
  margin-bottom: 56px;
}

.storage_section04 .p01 {
  margin-bottom: 48px;
  line-height: 2.25;
  letter-spacing: 0.08em;
}

.storage_section04 ul {
  display: flex;
  justify-content: space-between;
}

.storage_section04 ul li {
  width: 31.6%;
}

.storage_section04 ul li img {
  width: 100%;
  margin-bottom: 32px;
}

.storage_section04 ul li p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

/*
-----------------------------------------------------------------------------
搬出業務
-----------------------------------------------------------------------------
*/

body.carring_out_body {
}

main.carring_out_main {
}

.carring_out_section01 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.carring_out_section01 .p01 {
  display: flex;
  justify-content: center;
  font-size: 22px;
  line-height: 1.64;
  letter-spacing: 0.08em;
}

.carring_out_section02 {
  padding: 100px 0;
}

.carring_out_section03 {
  padding: 120px 0;
}

.carring_out_section03 .out_block {
  margin-bottom: 80px;
  font-family: "Noto Sans JP", sans-serif;
}

.carring_out_section03 .out_block02 {
  margin-bottom: 0;
}

.carring_out_section03 .out_title {
  padding-bottom: 16px;
  border-bottom: 3px solid #f39d64;
  margin-bottom: 28px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}

.carring_out_section03 .out_block ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}

.carring_out_section03 .out_block ul li {
  width: 48%;
}

.carring_out_section03 .out_block ul li img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.carring_out_section03 .out_block .out_text {
  font-size: 18px;
  line-height: 1.67;
  font-weight: 500;
}

.carring_out_section03 .out_block .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.carring_out_section03 .out_block .flex .img_block {
  width: 48%;
}

.carring_out_section03 .out_block .flex .img_block img {
  width: 100%;
}

.carring_out_section03 .out_block .flex .text_block {
  width: 48%;
}

.carring_out_section03 .out_block .flex .text_block p {
  font-size: 18px;
  line-height: 1.67;
  font-weight: 500;
}

.carring_out_section04 {
  padding-bottom: 90px;
}

.carring_out_section04 .bg {
  position: relative;
  margin-bottom: 96px;
}

.carring_out_section04 .bg h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.carring_out_section04 .bg img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}

.carring_out_section04 .product_text {
  font-size: 22px;
  line-height: 1.64;
  letter-spacing: 0.08em;
  margin-bottom: 96px;
  display: flex;
  justify-content: center;
  font-weight: 500;
}

.carring_out_section04 ul {
  display: flex;
  justify-content: space-between;
  font-family: "Noto Sans JP", sans-serif;
}

.carring_out_section04 ul li {
  width: 31.6%;
}

.carring_out_section04 ul li img {
  width: 100%;
  margin-bottom: 12px;
}

.carring_out_section04 ul li .product_title {
  padding-left: 48px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-align: left;
  position: relative;
  margin-bottom: 16px;
}

.carring_out_section04 ul li .product_title::before {
  content: "";
  width: 30px;
  height: 5px;
  background-color: #f39d64;
  position: absolute;
  left: 0;
  top: 13px;
}

.carring_out_section04 ul li .product_info {
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/*
-----------------------------------------------------------------------------
設備紹介
-----------------------------------------------------------------------------
*/

body.facilities_body {
}

main.facilities_main {
}

.facilities_section01 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.facilities_section01 .p01 {
  font-size: 22px;
  line-height: 1.64;
  letter-spacing: 0.08em;
  display: flex;
  justify-content: center;
}

.facilities_section02 {
  font-family: "Noto Sans JP", sans-serif;
}

.facilities_section02 .img_frame {
}

.facilities_section02 .img_frame img {
  width: 100%;
}

.facilities_section02 .caption {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1e0501;
  padding: 20px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.36;
  letter-spacing: 0.08em;
  color: #fff;
}

.facilities_section02 .info_area {
  padding: 80px 0 40px;
  background-color: #fbfafa;
}

.facilities_section02 .info_area ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.facilities_section02 .info_area ul li {
  display: flex;
  align-items: center;
  width: 20%;
  margin-bottom: 40px;
}

.facilities_section02 .info_area ul li .num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  padding-bottom: 2px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
  color: #56931f;
  border: 1px solid #56931f;
  margin-top: 2px;
}

.facilities_section02 .info_area ul li:nth-child(N + 18) .num {
  color: #e9545d;
  border: 1px solid #e9545d;
}

.facilities_section02 .info_area ul li p {
  width: calc(100% - 20px);
  padding-left: 8px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.facilities_section03 {
  padding: 120px 0 140px;
}

.facilities_section03 .flex {
  display: flex;
  justify-content: space-between;
}

.facilities_section03 .flex .left,
.facilities_section03 .flex .right {
  width: 48%;
}

.facilities_section03 .info_block {
  margin-bottom: 56px;
  font-family: "Noto Sans JP", sans-serif;
}

.facilities_section03 .info_block .info_title {
  padding-bottom: 8px;
  margin-bottom: 4px;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  border-bottom: 3px solid #f39d64;
}

.facilities_section03 .info_block .info_text {
  font-size: 18px;
  line-height: 1.5;
  width: fit-content;
  font-weight: 500;
}

.facilities_section03 .info_block .right_text {
  text-align: right;
  font-weight: 500;
}

.facilities_section03 .info_block .info_text02 {
  padding-right: 32px;
  margin-top: -4px;
  margin-bottom: 4px;
  font-weight: 500;
}

.facilities_section03 .info_block .info_text03 {
  width: auto;
  margin-top: 4px;
  font-weight: 500;
}

.facilities_section03 .info_block .info_text02 span {
  font-size: 16px;
  font-weight: 500;
}

.facilities_section04 {
  padding-bottom: 120px;
}

.facilities_section04 .facilities_list {
}

.facilities_section04 .facilities_block {
  margin-bottom: 64px;
  font-family: "Noto Sans JP", sans-serif;
}

.facilities_section04 .facilities_block:last-child {
  margin-bottom: 0;
}

.facilities_section04 .facilities_block .facilities_title {
  font-size: 28px;
  padding-bottom: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  border-bottom: 3px solid #f39d64;
  margin-bottom: 28px;
}

.facilities_section04 .facilities_block .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.facilities_section04 .facilities_block .img_block {
  width: 48%;
}

.facilities_section04 .facilities_block .img_block img {
  width: 100%;
}

.facilities_section04 .facilities_block .text_block {
  width: 48%;
}

.facilities_section04 .facilities_block .text_block p {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.67;
  letter-spacing: 0.08em;
}

/*
-----------------------------------------------------------------------------
個人情報の取り扱いについて
-----------------------------------------------------------------------------
*/

body.privacy_body {
}

main.privacy_main {
}

.privacy_section01 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.privacy_section01 h1 {
  font-size: 50px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 80px;
}

.privacy_section01 .privacy_title {
  padding-left: 28px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}

.privacy_section01 .privacy_title:before {
  content: "";
  width: 20px;
  height: 4px;
  background-color: #f39d64;
  position: absolute;
  left: 0;
  top: 8px;
}

.privacy_section01 .privacy_text {
  line-height: 1.5;
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.privacy_section01 .privacy_text .orange {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #f39d64;
  margin-right: 8px;
  margin-bottom: 3px;
}

.privacy_section01 .privacy_text a {
  color: #2e7ec2;
  text-decoration: underline;
  font-weight: 500;
}

.privacy_section01 .border {
  max-width: 600px;
  height: 1px;
  background-color: #1e0501;
  margin: 56px 0 40px;
}

.privacy_section01 .p01 {
  font-weight: 500;
  margin-bottom: 24px;
  font-family: "Noto Sans JP", sans-serif;
}

.privacy_section01 .p02 {
  line-height: 1.5;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.privacy_section01 .p02 .tel {
  color: #1e0501;
  font-weight: 500;
  pointer-events: none;
}

.privacy_section01 .p02 .fax {
  color: #1e0501;
  font-weight: 500;
  pointer-events: none;
}

/*
-----------------------------------------------------------------------------
新着情報一覧
-----------------------------------------------------------------------------
*/

body.archive_body {
}

main.archive_main {
}

.archive_section01 {
  padding-top: 90px;
  padding-bottom: 160px;
}

.archive_section01 h1 {
  font-size: 50px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 90px;
}

.archive_section01 .p01 {
  max-width: 780px;
  margin: 0 auto 104px;
  font-size: 22px;
  line-height: 1.5;
}

.archive_section01 .link_flex {
  display: flex;
  justify-content: center;
}

.archive_section01 .link_flex .link {
  width: 170px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #1e0501;
  margin: 0 16px;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  color: #1e0501;
  margin-bottom: 56px;
  transition: 0.4s;
  font-weight: 500;
}

.archive_section01 .link_flex .link.active {
  color: #fff;
  background-color: #1e0501;
}

.archive_section01 .link_flex .link:hover {
  color: #fff;
  background-color: #1e0501;
}

.archive_section01 .news_list {
  margin-bottom: 120px;
}

.archive_section01 .news_list .news_block {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid rgba(30, 5, 1, 0.2);
  color: #1e0501;
  font-family: "Noto Sans JP", sans-serif;
}

.archive_section01 .news_block .date {
  width: 100px;
  font-weight: normal;
  line-height: 1.8;
}

.archive_section01 .news_block .cat_area {
  width: 120px;
}

.archive_section01 .news_block .cat_name {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 30px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.archive_section01 .news_block .cat_name.info {
  color: #e38e4f;
  border: 1px solid #e38e4f;
}
.archive_section01 .news_block .cat_name.recruit {
  color: #80b57a;
  border: 1px solid #80b57a;
}
.archive_section01 .news_block .cat_name.other {
  color: #7a7a7a;
  border: 1px solid #7a7a7a;
}

.archive_section01 .news_block .thumb {
  width: 140px;
  height: 90px;
}

.archive_section01 .news_block .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive_section01 .news_block .thumb .no_thumb {
  width: 100%;
  height: 100%;
  background-color: #ebebeb;
}

.archive_section01 .news_block .news_title {
  width: calc(100% - 360px);
  padding-left: 8px;
  font-weight: normal;
  line-height: 1.8;
  font-size: 16px;
}

.archive_section01 .wp_pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
}

.archive_section01 .wp_pagenavi span.current {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 30px;
  height: 30px;
  background: #1e0501;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 6px;
  padding: 0 6px 2px;
}

.archive_section01 .wp_pagenavi a.page-numbers {
  /*指定のページ移動ボタン*/
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 30px;
  height: 30px;
  color: #1e0501;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 6px;
  padding: 0 6px 2px;
  transition: 0.4s;
}

.archive_section01 .wp_pagenavi a.page-numbers.next,
.archive_section01 .wp_pagenavi a.page-numbers.prev {
  /*next prevボタン*/
  width: 24px;
  height: 10.5px;
}

.archive_section01 .wp_pagenavi a.page-numbers:hover {
  background: #1e0501;
  color: #ffffff;
}

.archive_section01 .wp_pagenavi a.page-numbers.prev {
  background-image: url("../img/common/prev.png");
  margin-right: 24px;
}

.archive_section01 .wp_pagenavi a.page-numbers.prev:hover {
  background: url("../img/common/prev.png");
  background-size: cover;
  background-position: center;
}

.archive_section01 .wp_pagenavi a.page-numbers.next {
  background-image: url("../img/common/next.png");
  margin-left: 24px;
}

.archive_section01 .wp_pagenavi a.page-numbers.next:hover {
  background: url("../img/common/next.png");
  background-size: cover;
  background-position: center;
}

/*
-----------------------------------------------------------------------------
記事詳細
-----------------------------------------------------------------------------
*/

body.single_body {
}

main.single_main {
}

.single_section01 {
  height: 38vw;
  max-height: 730px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.single_section01 .mv {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}

.single_section01 .title_frame {
  width: 1240px;
  padding: 0 20px;
  max-width: 100%;
}

.single_section01 .single_title {
  width: fit-content;
  padding: 12px 64px 12px 32px;
  background-color: rgba(30, 5, 1, 0.7);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}

.single_section02 {
  padding-top: 80px;
  padding-bottom: 112px;
  font-family: "Noto Sans JP", sans-serif;
}

.single_section02 .flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 128px;
}

.single_section02 .single_area {
  width: 780px;
}

.single_section02 .info_flex {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.single_section02 .info_flex .date {
  line-height: 1;
  margin-right: 32px;
}

.single_section02 .info_flex .cat_name {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  height: 30px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.single_section02 .info_flex .cat_name.info {
  color: #e38e4f;
  border: 1px solid #e38e4f;
}
.single_section02 .info_flex .cat_name.recruit {
  color: #80b57a;
  border: 1px solid #80b57a;
}
.single_section02 .info_flex .cat_name.other {
  color: #7a7a7a;
  border: 1px solid #7a7a7a;
}

.single_section02 .single_block {
}

.single_section02 .single_block p {
  line-height: 1.8;
  margin: 20px 0;
}

.single_section02 .single_block p a {
  line-height: 1.8;
  color: #1e0501;
  text-decoration: underline;
}

.single_section02 .single_block h2 {
  margin: 24px 0;
}

.single_section02 .single_block h3 {
  margin: 20px 0;
}

.single_section02 .single_block .wp-block-image {
  margin: 24px 0;
}

.single_section02 .sidebar {
  width: 320px;
}

.single_section02 .sidebar .category_list {
  border: 1px solid #1e0501;
  border-bottom: none;
  margin-bottom: 64px;
}

.single_section02 .sidebar .category_block {
  border-bottom: 1px solid #1e0501;
}

.single_section02 .sidebar .category_link {
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  font-size: 18px;
  line-height: 1;
  color: #1e0501;
  font-weight: 500;
}

.single_section02 .sidebar .category_link:hover {
  background-color: #1e0501;
  color: #fff;
}

.single_section02 .sidebar .recent_head {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  font-size: 18px;
  line-height: 1;
  border: 1px solid #1e0501;
  margin-bottom: 12px;
  font-weight: 500;
}

.single_section02 .sidebar .recent_block {
  padding: 24px 0;
  border-bottom: 2px dotted #e38e4f;
  color: #1e0501;
  display: block;
}

.single_section02 .sidebar .recent_info {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.single_section02 .sidebar .recent_date {
  line-height: 1;
  margin-right: 32px;
}

.single_section02 .sidebar .recent_cat {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  height: 30px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.single_section02 .sidebar .recent_cat.info {
  color: #e38e4f;
  border: 1px solid #e38e4f;
}
.single_section02 .sidebar .recent_cat.recruit {
  color: #80b57a;
  border: 1px solid #80b57a;
}
.single_section02 .sidebar .recent_cat.other {
  color: #7a7a7a;
  border: 1px solid #7a7a7a;
}

.single_section02 .sidebar .recent_title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

.single_section02 .back_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 70px;
  background-color: #1e0501;
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  margin: 0 auto;
}

/*
-----------------------------------------------------------------------------
デジタルパンプレット
-----------------------------------------------------------------------------
*/

body.pamphlet_body {
}

main.pamphlet_main {
  padding-bottom: 112px;
}

.pamphlet_section01 {
  padding: 80px 0 100px;
}

.pamphlet_section01 .p01 {
  font-size: 22px;
  line-height: 1.64;
  letter-spacing: 0.08em;
  display: flex;
  justify-content: center;
}

.pamphlet_section02 {
  padding: 120px 0;
  position: relative;
}

.pamphlet_section02::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fbfafa;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
}

.pamphlet_section02 .pdf_frame {
  padding: 80px 40px;
  border-top: 1px solid #1e0501;
  border-bottom: 1px solid #1e0501;
}

/*
-----------------------------------------------------------------------------
デジタルパンプレット
-----------------------------------------------------------------------------
*/

body.error404_body {
}

main.error404_main {
}

.error404_section01 {
  padding: 80px 0 100px;
}

.error404_section01 .error404_title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 32px;
}

.error404_section01 .error404_title span {
  font-size: 40px;
}

.error404_section01 .error404_text {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  font-size: 18px;
}

.error404_section01 .home_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 40px;
  height: 60px;
  background-color: #1e0501;
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  margin: 0 auto;
}
