@media (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
} /*@media (min-width:1201px){*/

@media (max-width: 767px) {
  .sp_hide {
    display: none !important;
  }

  /*
  ------------------------------------------------
  共通部分
  ------------------------------------------------
  */

  body.fixed {
    width: 100%;
    height: 100%;
    position: fixed;
  }

  main {
    padding-top: 50px;
  }

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

  .common_hover_opa {
    transition: 0.4s;
  }

  .common_hover_opa:hover {
    opacity: 1;
  }

  .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: 48px;
  }

  .common_arrow_link .radi {
    width: 48px;
    height: 48px;
    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: -28px;
    transition: 0.4s;
    margin: auto;
    width: 56px;
    height: 5px;
    object-fit: cover;
    object-position: right;
  }

  .common_arrow_link:hover .radi::before {
    transform: rotate(0) scale(1);
  }

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

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

  /*以下、共通セクション*/
  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: 16px;
    padding-right: 16px;
  }

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

  header .header_logo {
    width: 150px;
    height: 25px;
    display: block;
    position: relative;
  }

  header .header_logo .logo {
    transform: translateY(-5px);
  }

  header .header_right {
  }

  header .header_right nav {
    display: none;
  }

  header .drawer_menu_block {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 30px;
    height: 20px;
    cursor: pointer;
  }

  header .drawer_menu_block .bar {
    height: 2px;
    background-color: #1e0501;
    transition-duration: 0.5s;
  }

  header .drawer_menu_block.active .bar1 {
    transform: translateY(8.6px) rotate(-45deg);
  }
  header .drawer_menu_block.active .bar2 {
    display: none;
  }
  header .drawer_menu_block.active .bar3 {
    transform: translateY(-8.6px) rotate(45deg);
  }

  #drawer_menu_bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    transition: 0.5s;
    opacity: 0;
    pointer-events: none;
  }

  #drawer_menu_bg.show {
    opacity: 1;
  }

  #drawer_menu {
    position: fixed;
    top: 50px;
    height: calc(100vh - 50px);
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    transition: 0.5s;
    opacity: 0;
    z-index: 95;
    pointer-events: none;
    right: -100px;
    padding-bottom: 16px;
    /* transform: translateX(100px); */
  }

  #drawer_menu.show {
    opacity: 1;
    pointer-events: auto;
    right: 0;
  }

  #drawer_menu .frame {
    height: 100%;
    padding: 24px 16px;
    overflow-y: scroll;
  }

  #drawer_menu .parent_link {
    font-size: 20px;
    line-height: 1;
    color: #1e0501;
    font-weight: 500;
    position: relative;
    display: block;
    padding: 16px 12px;
    border-bottom: 1px solid #1e0501;
  }

  #drawer_menu .parent_link::after {
    content: ">";
    font-size: 20px;
    line-height: 1;
    color: #1e0501;
    font-weight: 500;
    position: absolute;
    right: 12px;
    top: 14px;
  }

  #drawer_menu .has_child {
    position: relative;
  }

  #drawer_menu .has_child .submenu_open {
    font-size: 20px;
    line-height: 1;
    color: #1e0501;
    font-weight: 500;
    position: absolute;
    z-index: 3;
    padding: 16px 12px;
    right: 0;
    transition: 0.4s;
    transform: rotate(90deg);
    cursor: pointer;
  }

  #drawer_menu .has_child .submenu_open.active {
    transform: rotate(270deg);
  }

  #drawer_menu .has_child .parent_link {
  }

  #drawer_menu .has_child .parent_link::after {
    content: none;
  }

  #drawer_menu .submenu {
  }

  #drawer_menu .submenu {
    padding-top: 16px;
    border-bottom: 1px solid #1e0501;
    padding-left: 24px;
    display: none;
  }

  #drawer_menu .submenu li {
    margin-bottom: 16px;
  }

  #drawer_menu .submenu li a {
    font-size: 18px;
    line-height: 1;
    color: #1e0501;
    font-weight: 500;
    position: relative;
    display: block;
  }

  #page_top {
    position: absolute;
    top: -24px;
    left: auto;
    right: 16px;
    cursor: pointer;
  }

  #page_top .radi {
    width: 48px;
    height: 48px;
    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: -24px;
    margin: auto;
    transition: 0.4s;
    width: 5px;
    height: 48px;
    object-fit: cover;
    object-position: top;
  }

  #page_top:hover .radi::before {
    transform: rotate(0) scale(1);
  }

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

  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: 24px;
  }

  footer .flex {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }

  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: auto;
    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 {
    display: none;
  }

  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: 3px;
    background-color: #1e0501;
    transition: 0.4s;
    position: absolute;
    top: 8px;
    left: 7px;
  }

  footer .menu_flex ul li a.blur {
    opacity: 0.5;
  }

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

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

  footer .copy_flex {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

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

  footer .copy_flex .border {
    display: none;
  }

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

  body.top_body {
  }

  main.top_main {
  }

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

  .top_section .page_bg {
    width: 100%;
    min-height: 300px;
    object-fit: cover;
  }

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

  .top_section .white_box .info_text {
    margin-bottom: 24px;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.64;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .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: 28px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    color: #fff;
    margin-bottom: 24px;
    text-shadow: 0px 1px 15.8px rgba(19, 52, 76, 1);
  }

  .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, 1);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    margin: 0 12px;
    text-align: center;
  }

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

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

  .top_section01 .swiper-slide img {
    width: 100%;
    height: 60vw;
    object-fit: cover;
  }

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

  .top_section01 .swiper-pagination-bullet {
    background: none;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid #1e0501;
    margin: 0 8px;
    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: 80px;
    padding-bottom: 80px;
  }

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

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

  .top_section03 {
  }

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

  .top_section04 .link_flex {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 350px;
    max-width: 100%;
    margin: 48px auto 0;
  }

  .top_section04 .link_flex .link {
    width: 350px;
    height: 150px;
    margin-bottom: 12px;
    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.46;
    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: 20px;
    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;
    object-fit: cover;
  }

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

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

  .top_section05 {
    padding-bottom: 88px;
  }

  .top_section06 {
    padding-bottom: 80px;
  }

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

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

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

  .top_section07 {
    padding-bottom: 120px;
  }

  .top_section07 .news_frame {
    max-width: 800px;
    margin: 0 auto;
    padding-right: 10px;
  }

  /* .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;
    flex-wrap: wrap;
    padding: 16px;
    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: 7%;
  }

  .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: 0;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.57;
    letter-spacing: 0.1em;
    text-align: left;
    color: #1e0501;
    width: 100%;
    flex-shrink: 0;
    /* flex-shrink: 0; */
  }

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

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

  .common_mv_section {
    position: relative;
  }

  .common_mv_section .mv {
    width: 100%;
    height: 300px;
    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: 16px;
  }

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

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

  /*パンクズ*/

  .common_bread_section {
    padding-top: 32px;
    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;
    font-size: 14px;
    line-height: 1;
    color: #1e0501;
    margin-bottom: 16px;
  }

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

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

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

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

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

  .common_section_mv {
    width: 100%;
    height: 200px;
    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: 40px 24px;
    border: solid 1px #1e0501;
  }

  .common_slider_block .slider_main {
    height: 183px;
    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: auto;
    padding: 8px 12px;
    background-color: #1e0501;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    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;
    flex-wrap: wrap;
    padding: 0 20px;
  }

  .common_slider_block .img_flex .thumb {
    /* width:190px;
    height:127px; */
    width: 120px;
    height: 80px;
    margin-bottom: 16px;
    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: -10px;
  }

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

  body.company_body {
  }

  main.company_main {
  }

  .company_section01 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

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

  .company_section02 {
  }

  .company_section02 .contents_area {
    padding-bottom: 80px;
    position: relative;
    margin-top: -50px;
  }

  .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: 32px 20px;
    background-color: #fff;
    border-top: 4px solid #f39d64;
    width: 350px;
    max-width: 90%;
    margin: 0 auto 64px;
  }

  .company_section02 .white_box02 {
    margin: 0 auto;
  }

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

  .company_section02 .info_block {
    display: flex;
    flex-direction: column;
    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: 100%;
    margin-bottom: 6px;
    line-height: 1.6;
    font-weight: 600;
  }

  .company_section02 .info_block.center_align {
    align-items: flex-start;
    padding: 20px 0;
  }

  .company_section02 .info_right {
    width: 100%;
    line-height: 1.6;
    font-size: 15px;
    font-feature-settings: "palt";
    font-weight: 500;
  }

  .company_section02 .info_right.stock {
    white-space: normal;
    display: flex;
    flex-wrap: wrap;
  }

  .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: auto;
  }

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

  .company_section02 .rule_text {
    max-width: 350px;
    margin: 0 auto 40px;
    font-size: 18px;
    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;
    flex-direction: column;
    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;
    margin-bottom: 16px;
  }

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

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

  .company_section03 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

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

  .company_section03 h3 {
    padding-left: 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-align: left;
    position: relative;
    white-space: normal;
    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: 56px;
    background-color: #f4f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .company_section03 .company_img02 {
    height: auto;
    padding: 24px 0;
  }

  .company_section03 .company_img02 img {
    width: 95%;
    max-width: 95%;
  }

  .company_section03 .company_img03 {
    height: auto;
    padding: 24px;
    overflow-x: scroll;
    margin-bottom: 0;
    display: block;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .company_section03 .company_img03::-webkit-scrollbar {
    display: none;
  }

  .company_section03 .company_img03 img {
    width: 500px;
    max-width: none;
  }

  .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: 9%;
  }

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

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

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

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

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

  .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: 15px;
    font-weight: bold;
    line-height: 1;
    color: #e38e4f;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }

  .company_section04 .history02 {
    font-size: 11px;
    line-height: 1.8;
    margin-bottom: 16px;
    font-feature-settings: "palt";
    font-weight: 500;
  }

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

  body.business_body {
  }

  main.business_main {
  }

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

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

  .business_section02 {
    padding-bottom: 80px;
  }

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

  .business_section02 .business_block {
    display: flex;
    flex-direction: column;
    margin-bottom: 64px;
    height: auto;
  }

  .business_section02 .business_block02 {
    flex-direction: column-reverse;
  }

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

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

  .business_section02 .business_block .text_block {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    border: 1px solid #1e0501;
  }

  .business_section02 .business_block .business_title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    padding-bottom: 12px;
    margin-bottom: 16px;
    position: relative;
  }

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

  .business_section02 .business_block .business_text {
    margin-bottom: 24px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }

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

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

  .business_section02 .business_block .business_link:active {
    background-color: #fff;
    color: #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: 80px;
    padding-bottom: 80px;
  }

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

  .carring_in_section02 {
    padding: 80px 0;
  }

  .carring_in_section03 {
    padding: 80px 0 80px;
  }

  .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: 12px;
    border-bottom: 3px solid #f39d64;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    text-align: left;
    margin-bottom: 24px;
  }

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

  .carring_in_section03 .in_block .img_block {
    width: 100%;
    margin-bottom: 24px;
  }

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

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

  .carring_in_section03 .in_block .min_title {
    margin-bottom: 16px;
    padding-left: 16px;
    font-size: 18px;
    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 tr{
    display: flex;
    flex-direction: column;
  } */

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

  .carring_in_section03 .in_block table td {
    border: solid 1px #c2bbba;
    width: 100%;
    border: solid 1px #c2bbba;
    padding: 12px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
  }

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

  body.storage_body {
  }

  main.storage_main {
  }

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

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

  .storage_section02 {
    padding: 80px 0;
  }

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

  .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: 40px;
  }

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

  .storage_section03 .storage_title::before {
    content: "";
    width: 24px;
    height: 3px;
    background-color: #f39d64;
    position: absolute;
    left: 0;
    top: 10px;
  }

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

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

  .storage_section03 .stotage_block ul.ul01 li {
    width: 100%;
    margin-bottom: 24px;
  }

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

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

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

  .storage_section03 .stotage_block ul.ul02 li {
    width: 100%;
    margin-bottom: 24px;
  }

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

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

  .storage_section03 .stotage_block ul.ul03 li {
    width: 100%;
    margin-bottom: 24px;
  }

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

  .storage_section04 {
    padding-bottom: 80px;
  }

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

  .storage_section04 .p01 {
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.08em;
  }

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

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

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

  .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: 80px;
    padding-bottom: 80px;
  }

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

  .carring_out_section02 {
    padding: 80px 0;
  }

  .carring_out_section03 {
    padding: 80px 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: 12px;
    border-bottom: 3px solid #f39d64;
    margin-bottom: 28px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
  }

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

  .carring_out_section03 .out_block ul li {
    width: 100%;
    margin-bottom: 24px;
  }

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

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

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

  .carring_out_section03 .out_block .flex .img_block {
    width: 100%;
    margin-bottom: 24px;
  }

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

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

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

  .carring_out_section04 {
    padding-bottom: 90px;
  }

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

  .carring_out_section04 .bg h2 {
    font-size: 24px;
    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;
    height: 240px;
    object-fit: cover;
  }

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

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

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

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

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

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

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

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

  body.facilities_body {
  }

  main.facilities_main {
  }

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

  .facilities_section01 .p01 {
    font-size: 18px;
    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: 16px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.36;
    letter-spacing: 0.08em;
    color: #fff;
  }

  .facilities_section02 .info_area {
    padding: 40px 0 32px;
    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: 50%;
    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: 13px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.08em;
  }

  .facilities_section03 {
    padding: 80px 0 80px;
  }

  .facilities_section03 .common_section_h2 {
    font-size: 22px;
  }

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

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

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

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

  .facilities_section03 .info_block .info_text {
    font-size: 13px;
    line-height: 1.8;
    width: fit-content;
    font-feature-settings: "palt";
    font-weight: 500;
  }

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

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

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

  .facilities_section03 .info_block .info_text02 span {
    font-size: 12px;
    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: 20px;
    padding-bottom: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    border-bottom: 3px solid #f39d64;
    margin-bottom: 20px;
  }

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

  .facilities_section04 .facilities_block .img_block {
    width: 100%;
    margin-bottom: 24px;
  }

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

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

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

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

  body.privacy_body {
  }

  main.privacy_main {
  }

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

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

  .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 {
    font-weight: 500;
    line-height: 1.8;
    font-size: 13px;
    margin-bottom: 30px;
    font-family: "Noto Sans JP", sans-serif;
  }

  .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;
    font-size: 14px;
    margin-bottom: 24px;
    font-family: "Noto Sans JP", sans-serif;
  }

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

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

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

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

  body.archive_body {
  }

  main.archive_main {
  }

  .archive_section01 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

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

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

  .archive_section01 .link_flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

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

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

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

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

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

  .archive_section01 .news_list .news_block {
    display: flex;
    flex-wrap: wrap;
    padding: 16px 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: 90px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .archive_section01 .news_block .cat_area {
    width: 120px;
    margin-right: 100px;
    padding-top: 2px;
  }

  .archive_section01 .news_block .cat_name {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 24px;
    border-radius: 12px;
    font-size: 12px;
    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% - 140px);
    padding-left: 20px;
    font-weight: normal;
    line-height: 1.8;
    font-size: 14px;
  }

  .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: 24px;
    height: 24px;
    background: #1e0501;
    color: #ffffff;
    font-size: 15px;
    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: 24px;
    height: 24px;
    color: #1e0501;
    font-size: 15px;
    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: none;
    color: #1e0501;
  }
  .archive_section01 .wp_pagenavi a.page-numbers:active {
    background: #1e0501;
    color: #ffffff;
  }

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

  .archive_section01 .wp_pagenavi a.page-numbers.prev:hover,
  .archive_section01 .wp_pagenavi a.page-numbers.prev:active {
    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: 16px;
  }

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

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

  body.single_body {
  }

  main.single_main {
  }

  .single_section01 {
    min-height: 250px;
    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 24px;
    background-color: rgba(30, 5, 1, 0.7);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
  }

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

  .single_section02 .flex {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
  }

  .single_section02 .single_area {
    width: 100%;
    margin-bottom: 64px;
  }

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

  .single_section02 .info_flex .date {
    line-height: 1;
    margin-right: 24px;
    font-size: 14px;
  }

  .single_section02 .info_flex .cat_name {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 12px;
    height: 24px;
    border-radius: 12px;
    font-size: 13px;
    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;
    font-size: 14px;
  }

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

  .single_section02 .single_block h2 {
    margin: 24px 0;
    font-size: 20px;
  }

  .single_section02 .single_block h3 {
    margin: 20px 0;
    font-size: 17px;
  }

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

  .single_section02 .sidebar {
    width: 100%;
    /* width:100; */
  }

  .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: 40px;
    font-size: 15px;
    line-height: 1;
    color: #1e0501;
    font-weight: 500;
  }

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

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

  .single_section02 .sidebar .recent_block {
    padding: 20px 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;
    font-size: 14px;
    margin-right: 24px;
  }

  .single_section02 .sidebar .recent_cat {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 12px;
    height: 24px;
    border-radius: 12px;
    font-size: 13px;
    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: 14px;
    line-height: 1.5;
  }

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

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

  body.pamphlet_body {
  }

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

  .pamphlet_section01 {
    padding: 80px 0;
  }

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

  .pamphlet_section02 {
    padding: 80px 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: 40px 0;
    border-top: 1px solid #1e0501;
    border-bottom: 1px solid #1e0501;
  }

  /*
  -----------------------------------------------------------------------------
  404
  -----------------------------------------------------------------------------
  */

  body.error404_body {
  }

  main.error404_main {
  }

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

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

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

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

  .error404_section01 .home_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0 32px;
    height: 50px;
    background-color: #1e0501;
    font-size: 16px;
    color: #fff;
    line-height: 1;
    font-weight: 400;
    margin: 0 auto;
  }
} /*@media (max-width:1200px){*/
