@charset "UTF-8";
:root {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0; }

body {
  font-family: YakuHanJP, "Hiragino Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  color: #212121;
  font-size: 16px;
  letter-spacing: 0.8px; }

p {
  margin: 0px;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: break-word; }

img {
  vertical-align: bottom;
  max-width: 100%; }

ul {
  padding: 0px; }

li {
  line-height: 1.5;
  padding: 0;
  margin: 0;
  list-style: none; }

a {
  display: inline-block;
  text-decoration: none;
  color: #212121;
  cursor: pointer; }

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  table th {
    font-size: 14px;
    letter-spacing: 0.42px;
    text-align: center;
    vertical-align: middle;
    padding: 16px 10px;
    background-color: #EBF4FF;
    border: solid 1px #ddd;
    min-height: 57px; }
  table td {
    font-size: 14px;
    letter-spacing: 0.42px;
    text-align: center;
    vertical-align: middle;
    padding: 16px 10px;
    background-color: #fff;
    border: solid 1px #ddd;
    min-height: 57px; }

.text_title h2 {
  font-family: YakuHanMP, "Noto Serif JP","Hiragino Mincho ProN",  "Yu Mincho", YuMincho, serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 2px; }
.text_title span {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #005AB7;
  margin-bottom: 16px;
  padding-left: 18px;
  position: relative; }
  .text_title span::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #005ab7;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%); }
    @media screen and (max-width: 768px) {
      .text_title span::before {
        width: 8px;
        height: 8px;
        left: 4px;
        -webkit-transform: translate(0, -65%);
                transform: translate(0, -65%); } }

.btn {
  display: inline-block;
  background-color: #ffffff;
  border: solid 1px #005AB7;
  position: relative;
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in; }
  .btn::after {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url("/asset/images/arrow_mainblue.svg");
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: calc(50% - 5px);
    right: 16px; }
  .btn:hover {
    background-color: #005AB7; }
    .btn:hover::after {
      background-image: url("/asset/images/arrow_white.svg"); }
  .btn a {
    display: inline-block;
    text-align: center;
    padding: 13px 0px 15px;
    width: 244px;
    max-height: 50px;
    color: #005AB7; }
    .btn a:hover {
      color: #ffffff; }
      .btn a:hover::after {
        background-image: url("/asset/images/main_cta_arrow2.png"); }

@media screen and (max-width: 768px) {
  .btn:hover {
    background-color: #ffffff; }
    .btn:hover::after {
      background-image: url("/asset/images/arrow_mainblue.svg"); }
  .btn a:hover {
    color: #005AB7; }
    .btn a:hover::after {
      background-image: url("/asset/images/arrow_mainblue.svg"); } }
.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden; }

#header {
  position: fixed;
  width: 100%;
  margin-top: -80px;
  background-color: #fff;
  -webkit-box-shadow: rgba(68, 68, 68, 0.1) 0px 3px 16px;
          box-shadow: rgba(68, 68, 68, 0.1) 0px 3px 16px;
  z-index: 30; }
  #header .header_container {
    width: 100%;
    padding: 20px 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  #header .header_logo {
    max-width: 190px;
    max-height: 40px; }
    #header .header_logo h1 {
      max-height: 40px;
      margin: 0px; }
      #header .header_logo h1 img {
        aspect-ratio: 190/40; }
  #header .menu_box {
    margin: 0px; }
    #header .menu_box a, #header .menu_box p {
      font-size: 14px;
      letter-spacing: 0;
      margin-right: 30px;
      -webkit-transition: all .15s ease-in-out;
      transition: all .15s ease-in-out; }
    #header .menu_box a:hover {
      color: #005AB7; }
    #header .menu_box .menu_last {
      margin-right: 50px; }
    #header .menu_box .menu_arrow {
      position: relative;
      margin-right: 46px; }
      #header .menu_box .menu_arrow::after {
        display: block;
        content: "";
        background-image: url("/asset/images/arrow_header_mainblue_under.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        width: 12px;
        height: 14px;
        position: absolute;
        right: -16px;
        top: 61%;
        -webkit-transform: translateY(-50%) rotate(0deg);
                transform: translateY(-50%) rotate(0deg);
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out; }
      #header .menu_box .menu_arrow:hover::after {
        -webkit-transform: translateY(-50%) rotate(180deg);
                transform: translateY(-50%) rotate(180deg); }
  #header .header_btn_container {
    gap: 1px; }
  #header .header_btn, #header .header_btn_02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-height: 40px;
    border: #005ab7 solid 1px;
    border-radius: 2px;
    padding: 10px 26px 10px 14px;
    position: relative;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    background-color: #005ab7;
    border: #005ab7 solid 1px; }
    #header .header_btn a, #header .header_btn_02 a {
      font-family: sans-serif;
      font-size: 14px;
      color: #ffffff;
      margin: 0px; }
    #header .header_btn_02 {
      background-color: #0C4696;
      border: #0C4696 solid 1px;
      margin: 0px 0px 0px 1px; }
      #header .header_btn_02:hover::after {
        background-image: url("/asset/images/arrow_mainblue.svg"); }
    #header .header_btn::after, #header .header_btn_02::after {
      content: "";
      background-image: url("/asset/images/arrow_white.svg");
      background-position: center center;
      background-size: contain;
      background-repeat: no-repeat;
      width: 8px;
      height: 13px;
      position: absolute;
      right: 10px;
      top: 52%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      -webkit-transition: .3s ease-in-out;
      transition: .3s ease-in-out; }
    #header .header_btn:hover, #header .header_btn_02:hover {
      background-color: #ffffff; }
      #header .header_btn:hover a, #header .header_btn_02:hover a {
        color: #005ab7; }
      #header .header_btn:hover::after, #header .header_btn_02:hover::after {
        background-image: url("/asset/images/arrow_header_mainblue.svg"); }
  #header .hamburger_container {
    display: none; }
  #header .hamburger {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001; }
    #header .hamburger span {
      display: inline-block;
      width: 36px;
      height: 2px;
      background-color: #005ab7;
      -webkit-transition: -webkit-transform 0.3s ease-in-out;
      transition: -webkit-transform 0.3s ease-in-out;
      transition: transform 0.3s ease-in-out;
      transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
      position: absolute; }
      #header .hamburger span:nth-of-type(1) {
        top: 25%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
      #header .hamburger span:nth-of-type(2) {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
      #header .hamburger span:nth-of-type(3) {
        top: 75%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
    #header .hamburger.active span:nth-of-type(1) {
      top: 50%;
      -webkit-transform: translate(-50%, -50%) rotate(45deg);
              transform: translate(-50%, -50%) rotate(45deg); }
    #header .hamburger.active span:nth-of-type(2) {
      opacity: 0; }
    #header .hamburger.active span:nth-of-type(3) {
      top: 50%;
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
              transform: translate(-50%, -50%) rotate(-45deg); }
  #header .menu_sp {
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    padding: 0px 20px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    margin-top: 80px; }
    #header .menu_sp.active {
      display: block;
      opacity: 1;
      -webkit-transform: translateX(0%);
              transform: translateX(0%);
      z-index: 50; }
    #header .menu_sp .sp_menu_box {
      width: 90%;
      margin: 30px auto 30px;
      padding: 0px; }
      #header .menu_sp .sp_menu_box li {
        font-size: 16px;
        letter-spacing: 0.42px; }
        #header .menu_sp .sp_menu_box li:nth-of-type(2) {
          padding: 16px 0px 0px 0px; }
        #header .menu_sp .sp_menu_box li:nth-of-type(3) {
          border-top: solid 1px #ddd; }
        #header .menu_sp .sp_menu_box li a, #header .menu_sp .sp_menu_box li p {
          font-family: YakuHanMP, "Noto Serif JP","Hiragino Mincho ProN",  "Yu Mincho", YuMincho, serif;
          -webkit-transition: all .15s ease-in-out;
          transition: all .15s ease-in-out; }
          #header .menu_sp .sp_menu_box li a:hover, #header .menu_sp .sp_menu_box li p:hover {
            color: #005ab7; }
        #header .menu_sp .sp_menu_box li a {
          display: inline-block;
          width: 100%;
          padding: 16px 0px;
          border-bottom: solid 1px #ddd; }
      #header .menu_sp .sp_menu_box .business_list {
        padding-left: 0px; }
        #header .menu_sp .sp_menu_box .business_list li {
          font-size: 16px;
          position: relative; }
          #header .menu_sp .sp_menu_box .business_list li a {
            border-bottom: none;
            padding: 10px 0px 4px 14px; }
          #header .menu_sp .sp_menu_box .business_list li::before {
            content: "";
            background-color: #212121;
            width: 6px;
            height: 1px;
            position: absolute;
            left: 0;
            top: calc(50% + 3px);
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
          #header .menu_sp .sp_menu_box .business_list li:nth-of-type(2) {
            padding: 0px 0px 0px 0px; }
            #header .menu_sp .sp_menu_box .business_list li:nth-of-type(2) a {
              border-bottom: none;
              padding: 4px 0px 16px 14px; }
            #header .menu_sp .sp_menu_box .business_list li:nth-of-type(2)::before {
              top: calc(50% - 6px); }
      #header .menu_sp .sp_menu_box .header_btn, #header .menu_sp .sp_menu_box .header_btn_02 {
        margin-top: 20px;
        max-height: 60px;
        text-align: center; }
        #header .menu_sp .sp_menu_box .header_btn a, #header .menu_sp .sp_menu_box .header_btn_02 a {
          font-size: 16px;
          padding: 8px 0px;
          margin: 0 auto;
          border: none; }
      #header .menu_sp .sp_menu_box .header_btn_02 {
        margin-top: 16px;
        max-height: 60px;
        text-align: center; }
        #header .menu_sp .sp_menu_box .header_btn_02 a {
          font-size: 16px;
          padding: 8px 0px;
          margin: 0 auto;
          border: none; }
  #header .menu_tab_parent {
    position: relative; }
    #header .menu_tab_parent:hover .menu_tab {
      opacity: 1;
      visibility: visible; }
  #header .menu_tab {
    padding: 25px;
    background-color: #fff;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    position: absolute;
    top: 47px;
    left: -248px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s ease,visibility 0.5s ease;
    transition: opacity 0.5s ease,visibility 0.5s ease;
    overflow: hidden; }
    #header .menu_tab .menu_tab_text {
      gap: 40px;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; }
      #header .menu_tab .menu_tab_text .text_title span {
        display: inline-block;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-style: italic;
        font-size: 12px;
        letter-spacing: 0.96px;
        color: #005AB7;
        margin-bottom: 10px;
        padding-left: 12px;
        position: relative; }
        #header .menu_tab .menu_tab_text .text_title span::before {
          content: "";
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background-color: #005AB7;
          position: absolute;
          top: 50%;
          left: 0;
          -webkit-transform: translateY(-50%);
                  transform: translateY(-50%); }
      #header .menu_tab .menu_tab_text .text_title h2 {
        font-family: YakuHanMP, "Noto Serif JP","Hiragino Mincho ProN",  "Yu Mincho", YuMincho, serif;
        font-size: 24px;
        font-weight: normal;
        letter-spacing: 2px;
        width: 104px; }
      #header .menu_tab .menu_tab_text .flex {
        gap: 36px;
        padding-left: 40px;
        border-left: solid 1px #ddd; }
        #header .menu_tab .menu_tab_text .flex .metal, #header .menu_tab .menu_tab_text .flex .fa {
          width: 150px; }
          #header .menu_tab .menu_tab_text .flex .metal p, #header .menu_tab .menu_tab_text .flex .fa p {
            font-size: 12px;
            width: 100%;
            margin-top: 15px;
            position: relative; }
            #header .menu_tab .menu_tab_text .flex .metal p::after, #header .menu_tab .menu_tab_text .flex .fa p::after {
              content: "";
              background-image: url("/asset/images/arrow_header_mainblue.svg");
              background-size: contain;
              background-repeat: no-repeat;
              background-position: center center;
              width: 6px;
              height: 11px;
              position: absolute;
              top: 50%;
              right: 0px;
              -webkit-transform: translateY(-50%);
                      transform: translateY(-50%); }

#mainvisual {
  height: 700px;
  margin-top: 80px;
  overflow: hidden;
  position: relative; }
  #mainvisual .mv_container {
    position: relative;
    height: 100%; }
    #mainvisual .mv_container .bg1 {
      background-image: url("/asset/images/mv_01.webp");
      background-size: cover;
      background-position: top center; }
    #mainvisual .mv_container .bg2 {
      background-image: url("/asset/images/mv_02.webp");
      background-size: cover;
      background-position: center center; }
    #mainvisual .mv_container .bg3 {
      background-image: url("/asset/images/mv_03.webp");
      background-size: cover;
      background-position: center right; }
    #mainvisual .mv_container .bg4 {
      background-image: url("/asset/images/mv_04.webp");
      background-size: cover;
      background-position: top left; }
    #mainvisual .mv_container::after {
      content: "";
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.25); }
    #mainvisual .mv_container .slick-list, #mainvisual .mv_container .slick-track, #mainvisual .mv_container .slide {
      height: 100%; }
  #mainvisual .mv_box {
    position: absolute;
    left: 55px;
    bottom: 70px; }
  #mainvisual .mv_title {
    max-width: clamp(250px, 33.33vw, 500px); }
  #mainvisual .mv_subtitle {
    margin-top: 36px;
    color: #ffffff;
    font-size: 15px;
    line-height: 2.0;
    letter-spacing: 2.25px; }
  #mainvisual .br {
    display: none; }
  #mainvisual .scroll {
    position: absolute;
    right: 0px;
    bottom: 99px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: left top;
            transform-origin: left top; }
    #mainvisual .scroll p {
      display: inline-block;
      font-size: 14px;
      color: #fff;
      -webkit-transform-origin: left top;
              transform-origin: left top;
      position: relative; }
      #mainvisual .scroll p::before {
        content: "";
        width: 64px;
        height: 2px;
        background-color: transparent;
        top: 50%;
        left: 66px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        position: absolute; }
      #mainvisual .scroll p::after {
        content: '';
        width: 64px;
        height: 2px;
        background-color: #fff;
        top: 50%;
        left: 66px;
        -webkit-transform: translateY(-50%) scaleX(0);
                transform: translateY(-50%) scaleX(0);
        position: absolute;
        opacity: 0;
        -webkit-animation: pathmove 2s ease-in-out infinite;
                animation: pathmove 2s ease-in-out infinite; }
@-webkit-keyframes pathmove {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
    -webkit-transform-origin: left;
            transform-origin: left; }
  20%, 50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1;
    -webkit-transform-origin: left;
            transform-origin: left; }
  51% {
    -webkit-transform-origin: right;
            transform-origin: right; }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
    -webkit-transform-origin: right;
            transform-origin: right; } }
@keyframes pathmove {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
    -webkit-transform-origin: left;
            transform-origin: left; }
  20%, 50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1;
    -webkit-transform-origin: left;
            transform-origin: left; }
  51% {
    -webkit-transform-origin: right;
            transform-origin: right; }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
    -webkit-transform-origin: right;
            transform-origin: right; } }
#feature {
  max-width: 1500px;
  margin: 148px auto 0px;
  position: relative; }
  #feature .text {
    max-width: 590px;
    margin-left: 100px;
    padding: 80px 182px 80px 30px;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    left: 0px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 15; }
    #feature .text .text_title {
      margin-bottom: 32px; }
    #feature .text p {
      line-height: 2.0;
      margin-bottom: 40px; }
  #feature .img {
    margin: 0 0 0 auto;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-shadow: 0px 30px 45px rgba(68, 68, 68, 0.1);
            box-shadow: 0px 30px 45px rgba(68, 68, 68, 0.1);
    position: relative;
    opacity: 0; }
    #feature .img::after {
      content: "";
      width: 160%;
      height: 100%;
      position: absolute;
      bottom: 0;
      left: -30%;
      background: #005AB7;
      z-index: 10;
      -webkit-transform: skewX(-25deg);
              transform: skewX(-25deg);
      -webkit-transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
      transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
      transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s;
      transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
      opacity: 1; }
    #feature .img.reveal::after {
      -webkit-transform: skewX(-25deg) translateX(150%);
              transform: skewX(-25deg) translateX(150%);
      opacity: 0; }
    #feature .img.reveal-target.reveal {
      -webkit-transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
      transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
      transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s;
      transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
      opacity: 1; }
    #feature .img img {
      max-width: 1090px;
      aspect-ratio: 109/71; }

#business {
  margin-top: 148px; }
  #business .text_title {
    max-width: 1300px;
    margin: 0px auto 32px;
    padding: 0px 60px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box; }
  #business .flex {
    position: relative;
    gap: 10px;
    padding: 0px 15px; }
    #business .flex .metal, #business .flex .fa {
      width: 100%;
      max-height: 700px;
      aspect-ratio: 730/700;
      position: relative;
      overflow: hidden; }
      #business .flex .metal::after, #business .flex .fa::after {
        content: "";
        width: 160%;
        height: 100%;
        position: absolute;
        bottom: 0;
        left: -30%;
        background: #005AB7;
        z-index: 10;
        -webkit-transform: skewX(-25deg);
                transform: skewX(-25deg);
        -webkit-transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
        transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
        transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s;
        transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
        opacity: 1; }
      #business .flex .metal.reveal::after, #business .flex .fa.reveal::after {
        -webkit-transform: skewX(-25deg) translateX(150%);
                transform: skewX(-25deg) translateX(150%);
        opacity: 0; }
      #business .flex .metal .btn, #business .flex .fa .btn {
        background-color: transparent;
        border: #ffffff solid 1px; }
        #business .flex .metal .btn:hover, #business .flex .fa .btn:hover {
          -webkit-transform: none;
                  transform: none; }
        #business .flex .metal .btn a, #business .flex .fa .btn a {
          color: #ffffff;
          display: inline-block; }
        #business .flex .metal .btn::after, #business .flex .fa .btn::after {
          background-image: url("/asset/images/arrow_white.svg"); }
  #business .metal .img, #business .fa .img {
    overflow: hidden; }
  #business .metal {
    -webkit-transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s;
    transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    opacity: 0; }
    #business .metal.reveal-target.reveal {
      opacity: 1; }
    #business .metal .text_subtitle {
      margin-bottom: 40px; }
      #business .metal .text_subtitle h3 {
        font-family: YakuHanMP, "Noto Serif JP","Hiragino Mincho ProN",  "Yu Mincho", YuMincho, serif;
        font-size: 36px;
        font-weight: 600;
        line-height: 0.89;
        letter-spacing: 3.6px;
        color: #ffffff;
        margin-bottom: 40px; }
      #business .metal .text_subtitle span {
        display: inline-block;
        font-size: 14px;
        font-weight: bold;
        font-style: italic;
        letter-spacing: 0.7px;
        color: #ffffff;
        margin-bottom: 16px; }
    #business .metal p {
      font-weight: 500;
      color: #ffffff;
      line-height: 1.5;
      letter-spacing: 1.6px;
      margin-bottom: 56px; }
  #business .fa {
    -webkit-transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s;
    transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    opacity: 0; }
    #business .fa.reveal-target.reveal {
      opacity: 1; }
    #business .fa .text_subtitle {
      margin-bottom: 40px; }
      #business .fa .text_subtitle h3 {
        font-family: YakuHanMP, "Noto Serif JP","Hiragino Mincho ProN",  "Yu Mincho", YuMincho, serif;
        font-size: 36px;
        font-weight: 600;
        line-height: 0.89;
        letter-spacing: 3.6px;
        color: #ffffff;
        margin-bottom: 40px; }
      #business .fa .text_subtitle span {
        display: inline-block;
        font-size: 14px;
        font-weight: bold;
        font-style: italic;
        letter-spacing: 0.7px;
        color: #ffffff;
        margin-bottom: 16px; }
    #business .fa p {
      font-weight: 500;
      color: #ffffff;
      line-height: 1.5;
      letter-spacing: 1.6px;
      margin-bottom: 56px; }
  #business .metal_container, #business .fa_container {
    padding: 0px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    height: 100%;
    max-height: 700px;
    position: relative;
    z-index: 1; }
  #business .metal::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 90, 183, 0.12)), to(rgba(0, 90, 183, 0.12))), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4))), url("/asset/images/metal.webp");
    background-image: linear-gradient(rgba(0, 90, 183, 0.12), rgba(0, 90, 183, 0.12)), linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/asset/images/metal.webp");
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
  #business .metal.hovered::before {
    background-image: url("/asset/images/metal.webp");
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }
  #business .metal.hovered a {
    color: #ffffff; }
  #business .fa::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4))), url("/asset/images/fa.webp");
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/asset/images/fa.webp");
    background-size: cover;
    background-position: center;
    z-index: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
  #business .fa.hovered::before {
    background-image: url("/asset/images/fa.webp");
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }
  #business .fa.hovered a {
    color: #ffffff; }
  #business .br {
    display: none; }

#works {
  margin: 0 auto;
  max-width: 1300px;
  margin-top: 148px;
  padding: 0px 60px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }
  #works .flex {
    gap: clamp(40px, 10vw, 80px); }
  #works .img {
    max-width: 780px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative; }
    #works .img img.works_front {
      width: 33.334%;
      aspect-ratio: 260/240;
      -webkit-box-shadow: 0px 30px 45px rgba(68, 68, 68, 0.1);
              box-shadow: 0px 30px 45px rgba(68, 68, 68, 0.1);
      position: absolute;
      bottom: -60px;
      right: 0px;
      z-index: 12; }
    #works .img .js_container {
      width: 90%;
      max-width: 700px;
      height: 100%;
      position: relative;
      overflow: hidden;
      -webkit-box-shadow: 0px 0px 25px rgba(68, 68, 68, 0.1);
              box-shadow: 0px 0px 25px rgba(68, 68, 68, 0.1);
      -webkit-transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
      transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
      transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s;
      transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
      opacity: 0; }
      #works .img .js_container.reveal-target.reveal {
        opacity: 1; }
      #works .img .js_container::after {
        content: "";
        width: 160%;
        height: 100%;
        position: absolute;
        bottom: 0;
        left: -30%;
        background: #005AB7;
        z-index: 10;
        -webkit-transform: skewX(-25deg);
                transform: skewX(-25deg);
        -webkit-transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
        transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
        transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s;
        transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
        opacity: 1; }
      #works .img .js_container.reveal::after {
        -webkit-transform: skewX(-25deg) translateX(150%);
                transform: skewX(-25deg) translateX(150%);
        opacity: 0; }
      #works .img .js_container img {
        width: 100%;
        max-width: 700px;
        aspect-ratio: 700/470; }
  #works .text {
    max-width: 440px;
    background-color: #ffffff; }
    #works .text .text_title {
      margin-bottom: 32px; }
    #works .text p {
      line-height: 2.0;
      margin-bottom: 40px; }

#facility {
  margin: 208px auto 0;
  padding: 80px 0px;
  background-color: #EFEFEF; }
  #facility .text_left {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: clamp(40px, 10.66vw, 160px); }
  #facility .text {
    max-width: 1300px;
    margin: 0px auto 64px;
    padding: 0px 60px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box; }
    #facility .text p {
      line-height: 2.0; }
      #facility .text p .br {
        display: none; }
  #facility .btn {
    background-color: transparent; }
    #facility .btn:hover {
      background-color: #005AB7; }
  #facility .facility_slide_container {
    overflow: hidden;
    height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s;
    transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    opacity: 0; }
    #facility .facility_slide_container.reveal-target.reveal {
      opacity: 1; }
    #facility .facility_slide_container::after {
      content: "";
      width: 160%;
      height: 100%;
      position: absolute;
      bottom: 0;
      left: -30%;
      background: #005AB7;
      z-index: 10;
      -webkit-transform: skewX(-25deg);
              transform: skewX(-25deg);
      -webkit-transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
      transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
      transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s;
      transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
      opacity: 1; }
    #facility .facility_slide_container.reveal::after {
      -webkit-transform: skewX(-25deg) translateX(150%);
              transform: skewX(-25deg) translateX(150%);
      opacity: 0; }
    #facility .facility_slide_container .slide {
      position: relative;
      width: 368px;
      margin-left: 4px;
      overflow: hidden; }
    #facility .facility_slide_container .slick-track {
      height: 100%; }
    #facility .facility_slide_container .bg1 {
      background-image: url("/asset/images/facility_01.webp");
      background-size: cover; }
    #facility .facility_slide_container .bg2 {
      background-image: url("/asset/images/facility_02.webp");
      background-size: cover; }
    #facility .facility_slide_container .bg3 {
      background-image: url("/asset/images/facility_03.webp");
      background-size: cover; }
    #facility .facility_slide_container .bg4 {
      background-image: url("/asset/images/facility_04.webp");
      background-size: cover; }
    #facility .facility_slide_container .bg5 {
      background-image: url("/asset/images/facility_05.webp");
      background-size: cover; }
    #facility .facility_slide_container .bg6 {
      background-image: url("/asset/images/facility_06.webp");
      background-size: cover; }
    #facility .facility_slide_container span {
      font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
      color: #fff;
      font-size: 12px;
      letter-spacing: 0.6px;
      position: absolute;
      bottom: 15px;
      left: 15px; }

#company {
  max-width: 1140px;
  margin: 148px auto 0px;
  padding: 0px 60px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }
  #company .text {
    width: 456px;
    margin-right: 80px; }
  #company .text_title {
    margin-bottom: 32px; }
  #company p {
    line-height: 2.0;
    margin-bottom: 40px; }
  #company .flex_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0px 56px;
    margin-bottom: 40px;
    padding: 0px; }
    #company .flex_wrap li {
      margin-bottom: 10px; }
      #company .flex_wrap li a {
        width: 200px;
        position: relative;
        padding: 18px 0px;
        border-bottom: solid 1px #ddd;
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out; }
        #company .flex_wrap li a::after {
          content: "";
          width: 10px;
          height: 10px;
          background-image: url("/asset/images/arrow_mainblue.svg");
          background-position: center center;
          background-repeat: no-repeat;
          position: absolute;
          top: calc(50% - 3px);
          right: 0px; }
        #company .flex_wrap li a:hover {
          color: #005ab7;
          border-bottom: solid 1px #005ab7; }
  #company .img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-shadow: 0px 30px 45px rgba(68, 68, 68, 0.1);
            box-shadow: 0px 30px 45px rgba(68, 68, 68, 0.1);
    position: relative;
    overflow: hidden;
    -webkit-transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s;
    transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    opacity: 0; }
    #company .img.reveal-target.reveal {
      opacity: 1; }
    #company .img::after {
      content: "";
      width: 160%;
      height: 100%;
      position: absolute;
      bottom: 0;
      left: -30%;
      background: #005AB7;
      z-index: 10;
      -webkit-transform: skewX(-25deg);
              transform: skewX(-25deg);
      -webkit-transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
      transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
      transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s;
      transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
      opacity: 1; }
    #company .img.reveal::after {
      -webkit-transform: skewX(-25deg) translateX(150%);
              transform: skewX(-25deg) translateX(150%);
      opacity: 0; }

#news {
  max-width: 1140px;
  margin: 148px auto 0px;
  padding: 0px 60px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }
  #news .text_title {
    margin-bottom: 32px; }
  #news .news_list .news_item {
    padding: 28px 24px;
    border-bottom: solid 1px #ddd;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    #news .news_list .news_item span {
      margin-right: 80px; }
    #news .news_list .news_item:first-of-type {
      border-top: solid 1px #ddd; }
    #news .news_list .news_item:last-of-type {
      margin-bottom: 40px; }
    #news .news_list .news_item a {
      -webkit-transition: -webkit-transform 0.15s ease-in-out;
      transition: -webkit-transform 0.15s ease-in-out;
      transition: transform 0.15s ease-in-out;
      transition: transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; }
      #news .news_list .news_item a:hover {
        color: #005AB7; }
  #news .flex_right {
    text-align: right; }

#recruit {
  margin-top: 148px;
  background-image: url("/asset/images/recruit.webp");
  background-size: cover;
  background-position: center right;
  height: 540px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative; }
  #recruit .text {
    margin: 0px 100px;
    z-index: 2; }
    #recruit .text .text_title {
      color: #fff;
      margin-bottom: 32px; }
      #recruit .text .text_title span {
        color: #fff; }
        #recruit .text .text_title span::before {
          background-color: #fff; }
      #recruit .text .text_title h2 {
        color: #fff; }
    #recruit .text p {
      color: #fff;
      line-height: 2.0;
      margin-bottom: 44px; }
    #recruit .text .btn {
      border: solid 1px  #fff;
      background-color: transparent; }
      #recruit .text .btn a {
        color: #fff; }
      #recruit .text .btn::after {
        background-image: url("/asset/images/arrow_white.svg"); }
      #recruit .text .btn:hover {
        background-color: #005AB7;
        border: #005AB7 solid 1px; }
  #recruit::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), -webkit-gradient(linear, left top, right top, from(black), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(to right, black, rgba(0, 0, 0, 0)); }

#footer {
  padding: 80px 100px 20px;
  background-color: #EFEFEF; }
  #footer .footer_info .footer_logo {
    width: 250px;
    margin-bottom: 12px; }
  #footer .footer_info .address_list p {
    font-family: "Noto sans JP", serif;
    font-size: 14px;
    margin-bottom: 6px; }
    #footer .footer_info .address_list p:nth-of-type(2) {
      margin-bottom: 12px; }
  #footer .flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: clamp(14px, 4vw, 60px); }
  #footer .footer_menu ul {
    font-family: "Noto sans JP", serif;
    padding: 0;
    width: 140px; }
    #footer .footer_menu ul li {
      font-size: 16px;
      margin-bottom: 20px; }
      #footer .footer_menu ul li a {
        width: 100%;
        padding-left: 3px;
        -webkit-transition: .15s ease-in-out;
        transition: .15s ease-in-out; }
        #footer .footer_menu ul li a:hover {
          color: #005AB7; }
      #footer .footer_menu ul li .footer_business {
        font-size: 14px;
        margin-top: 10px; }
        #footer .footer_menu ul li .footer_business span {
          display: inline-block;
          width: 100%;
          margin-bottom: 10px;
          padding-left: 12px;
          position: relative; }
          #footer .footer_menu ul li .footer_business span::after {
            content: "";
            background-color: #212121;
            width: 4px;
            height: 1px;
            position: absolute;
            left: 0;
            top: 50%;
            -webkit-transform: translateY(-50%);
                    transform: translateY(-50%); }
  #footer .footer_submenu {
    margin-top: 40px;
    padding: 0px 10px 20px;
    border-bottom: solid 1px #ddd; }
    #footer .footer_submenu ul {
      margin: 0px;
      padding: 0px;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      gap: 10px; }
      #footer .footer_submenu ul li {
        font-family: "Noto sans JP", serif;
        font-size: 12px;
        letter-spacing: 0.72px;
        padding-right: 10px;
        position: relative;
        -webkit-transition: .15s ease-in-out;
        transition: .15s ease-in-out; }
        #footer .footer_submenu ul li:last-of-type::after {
          display: none; }
        #footer .footer_submenu ul li::after {
          content: "";
          width: 1px;
          height: 14px;
          background-color: #212121;
          position: absolute;
          right: 0px; }
        #footer .footer_submenu ul li a:hover {
          color: #005AB7; }
  #footer .footer_right {
    margin-top: 20px;
    text-align: end; }
    #footer .footer_right small {
      font-family: "Noto sans JP", serif;
      font-size: 12px;
      letter-spacing: 0.72px; }

@media screen and (max-width: 1300px) {
  #feature {
    padding: 0px 60px; }
    #feature .flex {
      gap: 40px; }
    #feature .text {
      width: 50%;
      margin-left: 0px;
      padding: 40px 0px;
      position: static;
      -webkit-transform: none;
              transform: none;
      background-color: transparent; }
    #feature .img {
      width: 50%; }
      #feature .img img {
        width: 100%; }

  #works {
    padding: 0px 60px; }

  #facility .text .text_left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 32px; }

  #footer {
    padding: 80px 60px 20px; } }
@media screen and (max-width: 1100px) {
  #header .menu_container {
    display: none; }
  #header .hamburger_container {
    display: block; }
  #header .menu_sp {
    width: 40%;
    height: 100vh; }
    #header .menu_sp .container {
      height: 100vh; } }
@media screen and (max-width: 1000px) {
  #feature .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
  #feature .text {
    padding: 0px;
    max-width: 100%;
    width: 100%;
    position: static;
    -webkit-transform: none;
            transform: none;
    background-color: transparent; }
  #feature .img {
    width: 100%; }
    #feature .img img {
      width: 100%; }

  #business .text_title {
    padding: 0px 60px; }
  #business .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    #business .flex .metal {
      width: 100%; }
    #business .flex .fa {
      width: 100%; }

  #works .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    #works .flex .img {
      width: 100%;
      max-width: 100%; }
    #works .flex .text {
      max-width: 100%;
      width: 100%;
      padding: 0px; }

  #facility .text {
    padding: 0px 20px; }
    #facility .text .text_left {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      #facility .text .text_left .text_title {
        text-align: center; }
  #facility .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    #facility .flex > .flex {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 32px; }
    #facility .flex p {
      margin-bottom: 40px;
      text-align: center; }

  #company .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 64px; }
  #company .text {
    margin: 0px;
    width: 100%; }
    #company .text li {
      width: calc((100% - 56px) / 2);
      text-align: left; }
      #company .text li a {
        width: 100%; }

  #recruit .text {
    margin: 0px 60px; }

  #footer .footer_menu {
    display: none; } }
@media screen and (max-width: 768px) {
  #header {
    margin-top: -60px; }
    #header .header_container {
      padding: 10px 20px; }
    #header .header_logo {
      aspect-ratio: 140 / 29; }
    #header .menu_sp {
      width: 100%;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      margin-top: 60px; }

  #mainvisual {
    height: 600px;
    margin-top: 60px; }
    #mainvisual .mv_container .bg1 {
      background-image: url("/asset/images/mv_01_sp.webp");
      background-position: center center; }
    #mainvisual .mv_container .bg2 {
      background-image: url("/asset/images/mv_02_sp.webp");
      background-position: center center; }
    #mainvisual .mv_container .bg3 {
      background-image: url("/asset/images/mv_03_sp.webp");
      background-position: center right; }
    #mainvisual .mv_container .bg4 {
      background-image: url("/asset/images/mv_04_sp.webp");
      background-position: top left; }
    #mainvisual .mv_box {
      position: absolute;
      left: 25px;
      bottom: 30px; }
    #mainvisual .mv_subtitle {
      margin-top: 32px;
      font-size: 13px;
      letter-spacing: 1.95px; }
    #mainvisual .br {
      display: block;
      height: 0; }
    #mainvisual .scroll {
      right: -45px; }
      #mainvisual .scroll p {
        font-size: 12px; }

  #feature {
    margin: 80px auto 0px;
    padding: 0px 20px; }
    #feature .flex {
      gap: 30px; }
    #feature p {
      font-size: 14px;
      letter-spacing: 1.4px; }
    #feature .text .text_title {
      margin-bottom: 14px; }
      #feature .text .text_title span {
        font-size: 12px;
        letter-spacing: 0.6px;
        margin-bottom: 10px; }
      #feature .text .text_title h2 {
        font-size: 26px;
        letter-spacing: 1.6px;
        margin: 0 0 20px; }
    #feature .text p {
      margin-bottom: 30px; }
    #feature .btn a {
      font-size: 14px;
      width: 164px;
      padding: 12px 0px; }

  #business {
    margin: 80px auto 0px; }
    #business .metal .text_subtitle h3, #business .fa .text_subtitle h3 {
      font-size: 28px;
      margin-top: 0px;
      margin-bottom: 30px; }
    #business p {
      font-size: 14px;
      letter-spacing: 1.4px;
      margin-bottom: 40px; }
    #business .text_title {
      padding: 0px 20px;
      margin-bottom: 20px; }
      #business .text_title span {
        font-size: 14px;
        letter-spacing: 0.7px;
        margin-bottom: 10px; }
      #business .text_title h2 {
        font-size: 32px;
        letter-spacing: 1.6px;
        margin: 0 0 20px; }
    #business .metal .text_subtitle, #business .fa .text_subtitle {
      margin-bottom: 26px; }
    #business .metal p, #business .fa p {
      margin-bottom: 30px; }
    #business .btn a {
      font-size: 14px;
      width: 164px;
      padding: 12px 0px; }
    #business .br {
      display: block;
      height: 0; }

  #works {
    margin: 80px auto 0px;
    padding: 0px 20px; }
    #works p {
      font-size: 14px;
      letter-spacing: 1.4px; }
    #works .text .text_title {
      margin-bottom: 14px; }
      #works .text .text_title span {
        font-size: 14px;
        letter-spacing: 0.7px;
        margin-bottom: 10px; }
      #works .text .text_title h2 {
        font-size: 32px;
        letter-spacing: 1.6px;
        margin: 0 0 20px; }
    #works .text p {
      margin-bottom: 30px; }
    #works .btn a {
      font-size: 14px;
      width: 164px;
      padding: 12px 0px; }

  #facility {
    margin: 140px auto 0px;
    padding: 80px 20px; }
    #facility p {
      font-size: 14px;
      letter-spacing: 1.4px; }
    #facility .text .text_title span {
      font-size: 14px;
      letter-spacing: 0.7px;
      margin-bottom: 10px; }
    #facility .text .text_title h2 {
      font-size: 32px;
      letter-spacing: 1.6px;
      margin: 0 0 20px; }
    #facility .text p {
      margin-bottom: 30px; }
      #facility .text p .br {
        display: block;
        height: 0; }
    #facility .flex > .flex {
      gap: 0px; }
    #facility .btn a {
      font-size: 14px;
      width: 164px;
      padding: 12px 0px; }
    #facility .facility_slide_container {
      height: 330px; }
      #facility .facility_slide_container .slide {
        width: 240px; }

  #company {
    margin: 80px auto 0px;
    padding: 0px 20px; }
    #company .flex_wrap {
      margin-bottom: 30px; }
      #company .flex_wrap li a {
        font-size: 14px;
        letter-spacing: 1.4px;
        padding: 14px 0px; }
    #company .text .text_title {
      margin-bottom: 20px; }
      #company .text .text_title span {
        font-size: 14px;
        letter-spacing: 0.7px;
        margin-bottom: 10px; }
      #company .text .text_title h2 {
        font-size: 32px;
        letter-spacing: 1.6px;
        margin: 0 0 20px; }
    #company .btn a {
      font-size: 14px;
      width: 164px;
      padding: 12px 0px; }

  #news {
    margin: 80px auto 0px;
    padding: 0px 20px; }
    #news p {
      font-size: 14px;
      letter-spacing: 1.4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    #news .text .text_title {
      margin-bottom: 20px; }
      #news .text .text_title span {
        font-size: 14px;
        letter-spacing: 0.7px;
        margin-bottom: 10px; }
      #news .text .text_title h2 {
        font-size: 32px;
        letter-spacing: 1.6px;
        margin: 0 0 20px; }
    #news .text .news_item {
      padding: 14px 12px; }
      #news .text .news_item span {
        font-size: 14px;
        margin-right: 40px; }
      #news .text .news_item a {
        overflow: hidden; }
    #news .btn a {
      font-size: 14px;
      width: 164px;
      padding: 12px 0px; }

  #recruit {
    background-image: url("/asset/images/recruit_sp.webp");
    height: 450px;
    margin: 80px auto 0px; }
    #recruit p {
      font-size: 14px;
      letter-spacing: 1.4px; }
    #recruit .text {
      margin: 0px 20px; }
      #recruit .text .text_title {
        margin-bottom: 20px; }
        #recruit .text .text_title span {
          font-size: 14px;
          letter-spacing: 0.7px;
          margin-bottom: 10px; }
        #recruit .text .text_title h2 {
          font-size: 32px;
          letter-spacing: 1.6px;
          margin: 0 0 20px; }
      #recruit .text p {
        margin-bottom: 30px; }
    #recruit .btn a {
      font-size: 14px;
      width: 164px;
      padding: 12px 0px; }

  #footer {
    padding: 40px 20px 10px; }
    #footer .footer_container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
    #footer .footer_info .address_list p {
      font-size: 12px;
      margin-bottom: 0px; }
      #footer .footer_info .address_list p:nth-of-type(2) {
        margin-bottom: 0px; }
    #footer .footer_info .footer_logo {
      width: 170px;
      margin-bottom: 12px; } }
@media screen and (max-width: 768px) {
  p, a, th, td, dt, dd {
    font-size: 14px;
    letter-spacing: 0.7px; } }
.c-breadcrumb {
  padding: 20px 120px 0px; }

.c-breadcrumb__list {
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px; }

.c-breadcrumb__item {
  font-size: 16px;
  letter-spacing: 0.8px;
  padding-right: 24px;
  position: relative; }
  .c-breadcrumb__item:first-of-type::after {
    content: ">";
    color: #707070;
    width: 6px;
    height: 11px;
    position: absolute;
    right: 3px; }
  .c-breadcrumb__item a {
    color: #707070;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out; }
    .c-breadcrumb__item a:hover {
      color: #005AB7; }

.l-mv {
  margin-top: 80px; }
  @media screen and (max-width: 768px) {
    .l-mv {
      margin-top: 60px; } }
  .l-mv .l-mv__container {
    height: 470px;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; }
    @media screen and (max-width: 768px) {
      .l-mv .l-mv__container {
        height: 200px; } }
    .l-mv .l-mv__container::after {
      content: "";
      inset: 0;
      position: absolute;
      background-color: rgba(0, 0, 0, 0.4); }
    .l-mv .l-mv__container .c-title {
      position: absolute;
      bottom: 60px;
      left: 120px;
      z-index: 10; }
      @media screen and (max-width: 1300px) {
        .l-mv .l-mv__container .c-title {
          bottom: 40px;
          left: 60px; } }
      @media screen and (max-width: 768px) {
        .l-mv .l-mv__container .c-title {
          bottom: 20px;
          left: 20px; } }
    .l-mv .l-mv__container .c-title__en {
      display: inline-block;
      font-family: "Roboto", sans-serif;
      font-weight: normal;
      font-style: italic;
      font-size: 16px;
      color: #fff;
      margin-bottom: 12px; }
    .l-mv .l-mv__container .c-title__ja {
      font-family: YakuHanMP, "Noto Serif JP","Hiragino Mincho ProN",  "Yu Mincho", YuMincho, serif;
      font-optical-sizing: auto;
      font-weight: bold;
      font-size: 48px;
      color: #fff; }
      @media screen and (max-width: 768px) {
        .l-mv .l-mv__container .c-title__ja {
          font-size: 40px; } }
      @media screen and (max-width: 460px) {
        .l-mv .l-mv__container .c-title__ja {
          font-size: 36px; } }

.c-title--company {
  text-align: center;
  margin-bottom: 32px; }

.c-title__en--company {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  color: #005ab7;
  margin-bottom: 18px; }
  @media screen and (max-width: 768px) {
    .c-title__en--company {
      font-size: 14px;
      margin-bottom: 10px; } }

.c-title__ja--company {
  font-family: YakuHanMP, "Noto Serif JP","Hiragino Mincho ProN",  "Yu Mincho", YuMincho, serif;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: 1.8px;
  color: #005ab7; }
  @media screen and (max-width: 768px) {
    .c-title__ja--company {
      font-size: 32px;
      letter-spacing: 1.6px; } }

.p-company .l-mv__container {
  background-image: url("/asset/images/company/company_mv.webp");
  background-position: left center; }

.c-intro.p-company {
  max-width: 960px;
  margin: 108px auto 0px;
  padding: 0 100px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

.p-company__message {
  line-height: 2.0; }

.p-company__signature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 30px;
  gap: 24px; }

.p-company__signature--role {
  font-family: YakuHanMP, "Noto Serif JP","Hiragino Mincho ProN",  "Yu Mincho", YuMincho, serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  color: #212121; }

.p-company__signature--image {
  max-width: 130px; }

.l-section.p-policy {
  margin: 148px auto 0px;
  padding: 0px 100px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }
  .l-section.p-policy .l-section__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px;
    background-color: #EBF5FF; }

.p-policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

.p-policy__list {
  width: 670px;
  margin-right: 34px; }

.p-policy__item {
  margin-bottom: 28px; }

.p-policy__term {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 2.4px;
  color: #005ab7; }
  .p-policy__term h3 {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
    .p-policy__term h3 > span {
      display: inline-block;
      font-family: "Noto sans JP", serif;
      font-weight: 500;
      font-size: 24px;
      letter-spacing: 2.4px;
      color: #005ab7; }
      .p-policy__term h3 > span:first-of-type {
        font-family: "Roboto", sans-serif;
        font-size: 20px;
        letter-spacing: 0px;
        margin-top: 1px;
        margin-right: 15px; }

.p-policy__desc {
  padding-left: 14px; }
  .p-policy__desc p {
    position: relative;
    margin-bottom: 10px; }
    .p-policy__desc p::after {
      content: "";
      width: 10px;
      height: 2px;
      background-color: rgba(0, 90, 183, 0.6);
      position: absolute;
      top: 12px;
      left: -14px; }

.p-policy__image {
  max-width: 435px; }
  .p-policy__image img {
    width: 100%; }

.l-section.p-overview {
  margin-top: 148px;
  padding: 0px 60px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }
  .l-section.p-overview .l-section__container {
    max-width: 960px;
    margin: 0px auto; }

.p-overview .l-overview__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .p-overview .l-overview__item:last-of-type {
    border-bottom: solid 1px #ddd; }

.p-overview__term, .p-overview__desc {
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  border-top: solid 1px #ddd; }

.p-overview__term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 210px;
  padding: 16px 20px;
  background-color: #f2f2f2;
  border-right: none;
  border-bottom: none; }

.p-overview__desc {
  width: calc(100% - 210px);
  padding: 16px 30px;
  border-left: none;
  border-bottom: none; }

.p-overview__text {
  padding-left: 1em; }

.p-overview__text.c-list--mark {
  position: relative; }
  .p-overview__text.c-list--mark::before {
    content: "・";
    width: 1em;
    height: 1em;
    position: absolute;
    top: 0px;
    left: 0%; }

.p-overview__tel {
  padding-left: 1em;
  text-indent: -1em; }

.p-overview__br {
  display: none; }

.l-section.p-history {
  margin-top: 148px;
  padding: 0px 60px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }
  .l-section.p-history .l-section__container {
    max-width: 960px;
    margin: 0px auto; }

.p-historyList__item {
  padding: 20px 0px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-top: solid 1px #ddd; }
  .p-historyList__item:last-of-type {
    border-bottom: solid 1px #ddd; }

.p-historyList__year {
  display: inline-block;
  width: 140px;
  margin-right: 100px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 58px;
  line-height: 58px;
  letter-spacing: 2.9px; }
  .p-historyList__year span {
    color: #fff;
    text-shadow: 1px  1px 1px  #005ab7 , -1px  1px 1px  #005ab7 , 1px -1px 1px  #005ab7 , -1px -1px 1px  #005ab7; }

.p-historyList__desc {
  width: 100%; }

.p-historyList__text:first-of-type {
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 0.9px;
  color: #005ab7; }
  .p-historyList__text:first-of-type span {
    font-family: "Roboto", sans-serif; }

.p-historyList__list.indent {
  padding-left: 1em;
  text-indent: 0em;
  position: relative; }
  .p-historyList__list.indent::before {
    content: "・";
    width: 1em;
    height: 1em;
    position: absolute;
    top: 0px;
    left: 0rem; }

.l-section.p-organization {
  margin-top: 148px;
  padding: 80px 60px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background-color: #EBF4FF; }
  .l-section.p-organization .l-section__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    background-color: #fff; }

.p-organizationChart {
  margin: 0 auto;
  max-width: 1140px;
  text-align: center; }

.l-section.p-access {
  margin: 148px auto 148px;
  padding: 0px 60px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }
  .l-section.p-access .l-section__container {
    max-width: 960px;
    margin: 0px auto; }

.p-accessInfo {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 36px; }

.p-accessInfo__image {
  width: 320px;
  margin-right: 36px; }

.p-accessInfo__text {
  max-width: 400px; }
  .p-accessInfo__text h3 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.9px;
    margin-bottom: 30px; }
  .p-accessInfo__text li {
    line-height: 1.5; }

.p-access__tabBr {
  display: none; }

.p-accessMap {
  width: 100%;
  height: 480px; }
  .p-accessMap iframe {
    width: 100%;
    height: 100%; }

@media screen and (max-width: 1300px) {
  .c-breadcrumb {
    padding: 20px 60px 0px; }

  .c-intro.p-company {
    padding: 0 60px; }

  .l-section.p-policy, .l-section.p-overview, .l-section.p-history, .l-section.p-access {
    padding: 0 60px; }

  .l-section.p-policy .l-section__container {
    width: 100%;
    padding: 80px 60px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; } }
@media screen and (max-width: 1100px) {
  .p-policy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px; }

  .p-policy__list {
    width: 100%;
    margin-right: 0px; }

  .p-policy__image {
    max-width: 80%;
    width: 100%;
    text-align: center;
    margin: 0 auto; } }
@media screen and (min-width: 600px) and (max-width: 899px) {
  .p-organizationChart img {
    width: 80%;
    display: inline-block;
    margin: 0 auto; } }
@media screen and (max-width: 820px) {
  .p-access__tabBr {
    display: block; }

  .p-access__tabBrNone {
    display: none; } }
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    padding: 10px 20px 0px; }

  .c-intro .c-title__ja, .p-company .c-title__ja, .p-overview .c-title__ja, .p-history .c-title__ja, .p-organization .c-title__ja, .p-access .c-title__ja {
    font-size: 24px;
    letter-spacing: 0.72px; }

  .c-intro.p-company {
    margin-top: 80px;
    padding: 0 20px; }
    .c-intro.p-company .c-title__ja {
      font-size: 24px;
      letter-spacing: 0.72px; }

  .p-company__signature--image {
    max-width: 110px; }

  .l-section.p-policy {
    margin-top: 80px;
    padding: 0 20px; }
    .l-section.p-policy .l-section__container {
      padding: 80px 20px; }

  .p-policy__term {
    margin-bottom: 16px; }
    .p-policy__term h3 > span {
      font-size: 20px;
      letter-spacing: 2.0px; }
      .p-policy__term h3 > span:first-of-type {
        font-size: 18px;
        letter-spacing: 0px; }

  .p-policy__desc {
    padding-left: 14px; }
    .p-policy__desc p::after {
      top: 11px; }

  .l-section.p-overview {
    margin-top: 80px;
    padding: 0 20px; }
    .l-section.p-overview .p-overview__term {
      width: 110px;
      font-size: 14px;
      padding: 14px 18px; }
    .l-section.p-overview .p-overview__desc {
      width: calc(100% - 110px);
      font-size: 14px;
      padding: 14px 28px; }

  .l-section.p-history {
    margin-top: 80px;
    padding: 0 20px; }

  .p-historyList__text:first-of-type {
    font-size: 16px; }

  .p-historyList__year {
    width: 110px;
    margin-right: 30px;
    font-size: 44px;
    line-height: 44px;
    letter-spacing: 2.5px; }

  .l-section.p-organization {
    margin-top: 80px;
    padding: 80px 20px; }

  .l-section.p-access {
    margin: 80px auto;
    padding: 0 20px; }

  .p-accessInfo__text h3 {
    margin-bottom: 10px; } }
@media screen and (max-width: 600px) {
  .p-policy__image {
    max-width: 100%; }

  .p-accessInfo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
    gap: 20px; }

  .p-accessInfo__image {
    width: 100%;
    margin: 0px; }
    .p-accessInfo__image img {
      width: 100%; }

  .p-accessInfo__text {
    width: 100%;
    max-width: 100%; } }
@media screen and (max-width: 460px) {
  .company_policy .container {
    padding: 80px 20px; }

  .p-overview__br {
    display: block; }

  .p-historyList__year {
    margin-right: 20px;
    font-size: 38px;
    letter-spacing: 1.9px; }

  .l-section.p-organization .l-section__container {
    padding: 40px 20px; }

  .p-accessInfo__text h3 {
    margin-bottom: 10px; } }
.p-features .l-mv__container {
  background-image: url("/asset/images/features/features_mv.webp"); }

.l-section.p-features {
  max-width: 1300px;
  margin: 0px auto 128px;
  padding: 0px 100px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }
  .l-section.p-features.first {
    margin-top: 108px; }
  .l-section.p-features.last {
    margin: 0px auto 148px; }

.p-features__body {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative; }

.p-features__text {
  max-width: 610px;
  min-height: 410px;
  padding: 45px;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 15; }
  .p-features__text p {
    line-height: 2.0; }

.p-featuresTitle__en {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 1.26px;
  color: #005AB7;
  margin-bottom: 10px; }

.p-featuresTitle__ja {
  font-family: YakuHanMP, "Noto Serif JP","Hiragino Mincho ProN",  "Yu Mincho", YuMincho, serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 2.8px;
  margin-bottom: 32px; }
  .p-featuresTitle__ja .title_br {
    display: none; }

.p-featuresTitle__highlight {
  color: #005AB7; }

.p-features__image {
  max-width: 750px;
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  opacity: 0;
  -webkit-box-shadow: 0px 30px 45px rgba(68, 68, 68, 0.1);
          box-shadow: 0px 30px 45px rgba(68, 68, 68, 0.1);
  overflow: hidden;
  position: relative;
  -webkit-transition: opacity 0.8s ease-out 0.2s, -webkit-transform 1.5s ease-out;
  transition: opacity 0.8s ease-out 0.2s, -webkit-transform 1.5s ease-out;
  transition: transform 1.5s ease-out, opacity 0.8s ease-out 0.2s;
  transition: transform 1.5s ease-out, opacity 0.8s ease-out 0.2s, -webkit-transform 1.5s ease-out; }
  .p-features__image.reveal {
    opacity: 1; }
  .p-features__image::after {
    content: "";
    width: 160%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: -30%;
    background: #005AB7;
    z-index: 10;
    -webkit-transform: skewX(-25deg);
            transform: skewX(-25deg);
    -webkit-transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s;
    transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    opacity: 1; }
  .p-features__image.reveal::after {
    -webkit-transform: skewX(-25deg) translateX(150%);
            transform: skewX(-25deg) translateX(150%);
    opacity: 0; }
  .p-features__image img {
    width: 1090px;
    aspect-ratio: 750/530; }

.p-features.right .flex {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }
.p-features.right .p-features__text {
  right: 50px;
  left: auto; }
.p-features.right .p-features__image {
  margin: 0 auto 0 0; }

.p-features__check {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.42px;
  color: #5a5a5a;
  margin-top: 10px;
  padding-left: 1em;
  text-indent: -1em; }

@media screen and (max-width: 1300px) {
  .c-breadcrumb {
    padding: 20px 60px 0px; }

  .l-section.p-features {
    padding: 0px 60px; }

  .p-features__body {
    gap: 40px; }

  .p-features__text {
    width: 50%;
    min-height: 0px;
    margin-left: 0px;
    padding: 0px;
    position: static;
    -webkit-transform: none;
            transform: none;
    background-color: transparent; }

  .p-features__image {
    width: 50%; }
    .p-features__image img {
      width: 100%; }

  .l-section.p-features.right .p-features__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; } }
@media screen and (max-width: 1000px) {
  .p-features__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }

  .p-features__text {
    padding: 0px;
    max-width: 100%;
    width: 100%;
    position: static;
    -webkit-transform: none;
            transform: none;
    background-color: transparent; }

  .p-features__image {
    width: 100%;
    max-width: 100%;
    margin: 0px; }
    .p-features__image img {
      width: 100%; }

  .l-section.p-features.right .p-features__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; } }
@media screen and (max-width: 768px) {
  .l-mv.p-features .l-mv__container {
    background-position: right center; }
    .l-mv.p-features .l-mv__container .c-title__ja {
      font-size: 36px; }

  .c-breadcrumb {
    padding: 10px 20px 0px; }

  .l-section.p-features {
    margin: 0px auto 108px;
    padding: 0px 20px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box; }
    .l-section.p-features.first {
      margin-top: 80px; }
    .l-section.p-features.last {
      margin: 0px auto 80px; }

  .p-features__body {
    gap: 30px; }

  .p-features__text p {
    line-height: 2.0;
    letter-spacing: 1.4px; }

  .p-featuresTitle__en {
    font-size: 12px;
    letter-spacing: 0.7px;
    margin-bottom: 8px; }

  .p-featuresTitle__ja {
    font-size: 24px;
    letter-spacing: 1.6px;
    margin-bottom: 20px; } }
@media screen and (max-width: 430px) {
  .p-featuresTitle__ja .title_br {
    display: block; } }
.p-metal .l-mv__container {
  background-image: url("/asset/images/metal-working/metal_mv.webp"); }

.c-intro.p-metal {
  text-align: center;
  margin-top: 108px;
  padding: 0 100px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }
  .c-intro.p-metal .c-title {
    font-family: YakuHanMP, "Noto Serif JP","Hiragino Mincho ProN",  "Yu Mincho", YuMincho, serif;
    font-size: 28px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 2.8px;
    margin-bottom: 32px; }
    .c-intro.p-metal .c-title span {
      color: #005AB7; }
  .c-intro.p-metal .intro_br, .c-intro.p-metal .intro_br02 {
    display: none; }

.p-metal__message {
  line-height: 2.0; }

.l-section.p-metalFlow {
  max-width: 1300px;
  margin: 148px auto 0px;
  padding: 0 60px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }
  .l-section.p-metalFlow .c-title {
    margin-bottom: 48px;
    text-align: center; }
  .l-section.p-metalFlow .c-title__heading {
    display: inline-block;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.96px;
    padding-bottom: 20px;
    position: relative; }
    .l-section.p-metalFlow .c-title__heading::after {
      content: "";
      width: 40px;
      height: 2px;
      background-color: #005ab7;
      position: absolute;
      bottom: 0px;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%); }

.p-metalFlow__list .flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 0px; }

.p-metalFlowStep {
  width: calc(100% / 6);
  padding-right: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative; }
  .p-metalFlowStep::after {
    content: "";
    width: 18px;
    height: 2px;
    background-color: #D9D9D9;
    position: absolute;
    top: 50%;
    right: 1px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
  .p-metalFlowStep:last-of-type::after {
    display: none; }

.p-metalFlowStep__item {
  min-height: 200px;
  background-color: #EBF5FF;
  padding: 20px 10px 10px 10px;
  text-align: center; }

.p-metalFlowStep__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 10px; }
  .p-metalFlowStep__label > span {
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 12px;
    line-height: 1.0;
    letter-spacing: 0px;
    color: #0C4696; }

.p-flowStep_number {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 28px;
  margin-left: 4px;
  position: relative;
  bottom: -2px; }

.p-metalFlowStep__text {
  font-family: YakuHanMP, "Noto Serif JP","Hiragino Mincho ProN",  "Yu Mincho", YuMincho, serif; }

.l-section.p-metalExample {
  margin: 148px auto 148px;
  max-width: 1140px;
  padding: 0 60px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }
  .l-section.p-metalExample .c-title {
    margin-bottom: 48px;
    text-align: center; }
  .l-section.p-metalExample .c-title__heading {
    display: inline-block;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.96px;
    padding-bottom: 20px;
    position: relative; }
    .l-section.p-metalExample .c-title__heading::after {
      content: "";
      width: 40px;
      height: 2px;
      background-color: #005ab7;
      position: absolute;
      bottom: 0px;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%); }

.p-metalExample__list {
  max-width: 1140px;
  margin: 0 auto; }

.p-metalExample__item {
  margin-bottom: 80px; }
  .p-metalExample__item:last-of-type {
    margin-bottom: 0px; }

.p-metalExample__item.noImage {
  margin-bottom: 40px; }

.p-metalExample__title h3 {
  font-family: YakuHanMP, "Noto Serif JP","Hiragino Mincho ProN",  "Yu Mincho", YuMincho, serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 1.4px;
  color: #005AB7;
  margin-bottom: 20px;
  padding-left: 18px;
  position: relative; }
  .p-metalExample__title h3::after {
    content: "";
    width: 10px;
    height: 2px;
    background-color: #005ab7;
    position: absolute;
    top: 20px;
    left: 0; }
  .p-metalExample__title h3 .br {
    display: none; }
.p-metalExample__title p {
  line-height: 2.0; }

.p-metalExample__image {
  margin-top: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }

.p-metalExample__imageBox {
  width: calc(50% - 20px); }
  .p-metalExample__imageBox span {
    display: inline-block;
    font-size: 14px;
    margin-top: 10px;
    letter-spacing: 0.7px; }

.p-metalExample__imageInner {
  width: 100%;
  overflow: hidden;
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-out 0.2s, -webkit-transform 1.5s ease-out;
  transition: opacity 0.8s ease-out 0.2s, -webkit-transform 1.5s ease-out;
  transition: transform 1.5s ease-out, opacity 0.8s ease-out 0.2s;
  transition: transform 1.5s ease-out, opacity 0.8s ease-out 0.2s, -webkit-transform 1.5s ease-out; }
  .p-metalExample__imageInner.reveal {
    opacity: 1; }
  .p-metalExample__imageInner::after {
    content: "";
    width: 160%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: -30%;
    background: #005AB7;
    z-index: 10;
    -webkit-transform: skewX(-25deg);
            transform: skewX(-25deg);
    -webkit-transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s;
    transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    opacity: 1; }
  .p-metalExample__imageInner.reveal::after {
    -webkit-transform: skewX(-25deg) translateX(150%);
            transform: skewX(-25deg) translateX(150%);
    opacity: 0; }
  .p-metalExample__imageInner img {
    width: 100%; }

@media screen and (max-width: 1300px) {
  .c-breadcrumb {
    padding: 20px 60px 0px; }

  .c-intro.p-metal, .l-section.p-metalFlow, .l-section.p-metalExample {
    padding: 0 60px; } }
@media screen and (max-width: 1100px) {
  .p-metalFlow__list .flex {
    margin-right: -20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px 0px; }

  .p-metalFlowStep {
    width: calc(100% / 3);
    max-height: 190px;
    min-height: 0px; }
    .p-metalFlowStep:nth-of-type(3)::after {
      display: none; }

  .p-metalFlowStep__item {
    min-height: 174px; } }
@media screen and (max-width: 1000px) {
  .c-intro.p-metal .intro_br {
    display: block; } }
@media screen and (max-width: 768px) {
  .p-metal.l-mv .l-mv__container .c-title__ja {
    font-size: 36px; }

  .c-breadcrumb {
    padding: 10px 20px 0px; }

  .p-metalExample__title h3 {
    font-size: 24px;
    letter-spacing: 1.2px; }
    .p-metalExample__title h3::after {
      top: 13px; }
  .p-metalExample__title .br {
    display: none; }
  .p-metalExample__title p {
    line-height: 2.0; }

  .c-intro.p-metal, .l-section.p-metalFlow, .l-section.p-metalExample {
    margin-top: 80px;
    margin: 80px auto 0px;
    padding: 0px 20px; }

  .l-section.p-metalFlow .c-title__heading, .l-section.p-metalExample .c-title__heading {
    font-size: 26px;
    letter-spacing: 0.78px; }

  .l-section.c-intro.p-metal .c-title {
    font-size: 24px;
    letter-spacing: 2.4px; }
  .l-section.c-intro.p-metal .br {
    display: block; }

  .p-metalFlowStep {
    width: calc(100% / 2); }
    .p-metalFlowStep:nth-of-type(2)::after, .p-metalFlowStep:nth-of-type(4)::after {
      display: none; }
    .p-metalFlowStep:nth-of-type(3)::after {
      display: block; }

  .p-metalFlowStep:nth-of-type(3) .p-metalFlowStep__item, .p-metalFlowStep:nth-of-type(4) .p-metalFlowStep__item {
    min-height: 174px; }

  .p-metalFlowStep__item {
    min-height: 102px; }

  .p-metalFlowStep__text {
    font-size: 16px; }

  .l-section.p-metalExample {
    margin-bottom: 80px; }
    .l-section.p-metalExample .c-title {
      font-size: 28px;
      letter-spacing: 1.4px; }

  .p-metalExample__image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }

  .p-metalExample__imageBox {
    width: 100%;
    margin-top: 20px; }

  .p-metalExample__title h3 {
    font-size: 24px;
    line-height: 1.2; } }
@media screen and (max-width: 480px) {
  .p-metal__message {
    text-align: left; }

  .c-intro.p-metal .intro_br02 {
    display: block; }
  .c-intro.p-metal .p_br {
    display: none; } }
@media screen and (max-width: 460px) {
  .p-metalFlow__list {
    margin-right: 0px; }
    .p-metalFlow__list .flex {
      margin-right: 0px;
      gap: 2px 0px; }

  .p-metalFlowStep {
    width: 100%;
    max-height: 220px;
    padding-right: 0px;
    padding-bottom: 20px; }
    .p-metalFlowStep::after {
      width: 2px;
      height: 18px;
      bottom: 0px;
      top: auto;
      right: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%); }
    .p-metalFlowStep:nth-of-type(2)::after, .p-metalFlowStep:nth-of-type(4)::after {
      display: block; }

  .p-metalFlowStep:nth-of-type(3) .p-metalFlowStep__item, .p-metalFlowStep:nth-of-type(4) .p-metalFlowStep__item {
    min-height: 0px;
    padding: 20px 10px; }

  .p-metalFlowStep__item {
    min-height: 0px;
    padding: 20px 10px; }

  .p-metalFlowStep__text {
    font-size: 16px; }

  .p-metalExample__title h3 .br {
    display: block; } }
.p-fa .l-mv__container {
  background-image: url("/asset/images/factory-automation/fa_mv.webp"); }

.c-intro.p-fa {
  text-align: center;
  margin-top: 108px;
  padding: 0 100px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }
  .c-intro.p-fa .c-title {
    font-family: YakuHanMP, "Noto Serif JP","Hiragino Mincho ProN",  "Yu Mincho", YuMincho, serif;
    font-size: 28px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 2.8px;
    margin-bottom: 32px; }
    .c-intro.p-fa .c-title span {
      color: #005AB7; }
  .c-intro.p-fa .intro_br {
    display: none; }
  .c-intro.p-fa .p-fa__message {
    line-height: 2.0; }

.l-section.p-faExplain {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-width: 1300px;
  margin: 148px auto 0px;
  padding: 0px 100px; }

.p-faExplain__text {
  width: 540px;
  margin-right: 40px; }
  .p-faExplain__text .c-title__en {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    font-style: italic;
    color: #005AB7;
    line-height: 1.0;
    padding-left: 12px;
    margin-bottom: 18px;
    position: relative; }
    .p-faExplain__text .c-title__en::before {
      content: "";
      width: 8px;
      height: 8px;
      background-color: #005AB7;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 0px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
  .p-faExplain__text .c-title__ja {
    font-family: YakuHanMP, "Noto Serif JP","Hiragino Mincho ProN",  "Yu Mincho", YuMincho, serif;
    font-size: 28px;
    color: #005AB7;
    line-height: 1.5;
    letter-spacing: 2.8px;
    margin-bottom: 32px; }
  .p-faExplain__text p {
    line-height: 2.0; }

.p-faExplain__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 710px;
  opacity: 0;
  -webkit-box-shadow: 0px 30px 45px rgba(68, 68, 68, 0.1);
          box-shadow: 0px 30px 45px rgba(68, 68, 68, 0.1);
  position: relative;
  overflow: hidden;
  -webkit-transition: opacity 0.8s ease-out 0.2s, -webkit-transform 1.5s ease-out;
  transition: opacity 0.8s ease-out 0.2s, -webkit-transform 1.5s ease-out;
  transition: transform 1.5s ease-out, opacity 0.8s ease-out 0.2s;
  transition: transform 1.5s ease-out, opacity 0.8s ease-out 0.2s, -webkit-transform 1.5s ease-out; }
  .p-faExplain__image.reveal {
    opacity: 1; }
  .p-faExplain__image::after {
    content: "";
    width: 160%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: -30%;
    background: #005AB7;
    z-index: 10;
    -webkit-transform: skewX(-25deg);
            transform: skewX(-25deg);
    -webkit-transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    transition: opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s;
    transition: transform 1.5s ease-out,opacity 0.8s ease-out 0.2s,-webkit-transform 1.5s ease-out;
    opacity: 1; }
  .p-faExplain__image.reveal::after {
    -webkit-transform: skewX(-25deg) translateX(150%);
            transform: skewX(-25deg) translateX(150%);
    opacity: 0; }
  .p-faExplain__image img {
    width: 100%; }

.p-faIndustry {
  margin: 148px auto 0px;
  max-width: 1300px;
  padding: 0px 80px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  text-align: center; }
  .p-faIndustry .c-title__heading {
    display: inline-block;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.96px;
    padding-bottom: 20px;
    position: relative; }
    .p-faIndustry .c-title__heading::after {
      content: "";
      width: 40px;
      height: 2px;
      background-color: #005ab7;
      position: absolute;
      bottom: 0px;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%); }

.p-faIndustry__inner {
  padding: 80px;
  background-color: #EBF4FF; }

.p-faIndustry__list {
  max-width: 960px;
  margin: 32px auto 0px; }
  .p-faIndustry__list ul {
    padding: 0px; }

.p-faIndustry__item {
  text-align: center; }
  .p-faIndustry__item p {
    font-size: 22px;
    color: #005AB7;
    text-align: center;
    margin-top: 20px; }

.p-faIndustry__icon {
  width: 216px;
  background-color: #fff;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .p-faIndustry__icon img {
    width: 100px; }

.p-faIndustry__result {
  background-color: #fff;
  max-width: 960px;
  margin: 64px auto 0px;
  padding: 40px; }
  .p-faIndustry__result .c-title {
    text-align: center; }
  .p-faIndustry__result .c-title__heading {
    display: inline-block;
    font-weight: normal;
    font-size: 22px;
    letter-spacing: 0.66px;
    padding-bottom: 5px;
    position: relative; }
    .p-faIndustry__result .c-title__heading::after {
      content: "";
      width: 100%;
      height: 1px;
      background-color: #005AB7;
      position: absolute;
      bottom: 0px; }

.p-faIndustry__resultList {
  margin-top: 36px; }
  .p-faIndustry__resultList ul {
    margin: 0px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px; }
  .p-faIndustry__resultList li {
    line-height: 2.0;
    min-width: 430px;
    text-align: left;
    background-color: #EBF4FF;
    border-radius: 2px;
    margin: 0px;
    padding: 10px 0px 10px 38px;
    position: relative;
    overflow-wrap: break-word;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    .p-faIndustry__resultList li::before {
      content: "";
      width: 16px;
      height: 16px;
      background-image: url("/asset/images/factory-automation/check.svg");
      background-size: contain;
      position: absolute;
      top: 19px;
      left: 10px; }

.p-faFlow {
  max-width: 1300px;
  margin: 148px auto 148px;
  padding: 0 100px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  text-align: center; }
  .p-faFlow .text_title {
    text-align: center; }
  .p-faFlow .c-title__heading {
    display: inline-block;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.96px;
    padding-bottom: 20px;
    position: relative;
    line-height: 1.2; }
    .p-faFlow .c-title__heading::after {
      content: "";
      width: 40px;
      height: 2px;
      background-color: #005ab7;
      position: absolute;
      bottom: 0px;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%); }

.flow_br {
  display: none; }

.p-faFlow__step {
  margin-top: 48px;
  position: relative; }
  .p-faFlow__step ul {
    padding: 0px; }

.c-faFlowStep {
  border-top: solid 1px #ddd;
  border-left: solid 1px #ddd;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }
  .c-faFlowStep .flex {
    width: 100%;
    max-width: 1160px;
    margin: 60px 0px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 80px; }
  .c-faFlowStep .flex.last {
    margin: 60px auto 0px; }

.c-faFlowStep__number {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #005AB7;
  background-color: #fff;
  margin-top: -13px;
  margin-left: 15px;
  padding: 0px 16px; }

.c-faFlowStep__number--number {
  margin-left: 4px; }

.c-faFlowStep__text {
  width: 410px; }
  .c-faFlowStep__text h3 {
    font-family: YakuHanMP, "Noto Serif JP","Hiragino Mincho ProN",  "Yu Mincho", YuMincho, serif;
    font-size: 24px;
    font-weight: normal;
    color: #005AB7;
    letter-spacing: 0.72px;
    text-align: left;
    margin-bottom: 20px;
    padding-left: 18px;
    position: relative; }
    .c-faFlowStep__text h3::before {
      content: "";
      width: 10px;
      height: 2px;
      background-color: #005AB7;
      position: absolute;
      top: 17px;
      left: 0px; }
    .c-faFlowStep__text h3 br {
      display: none; }
  .c-faFlowStep__text p {
    text-align: left;
    line-height: 2.0; }

.c-faFlowStep__image {
  max-width: 670px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }

@media screen and (max-width: 1300px) {
  .c-breadcrumb {
    padding: 20px 60px 0px; }

  .c-intro.p-fa, .l-section.p-faExplain, .l-section.p-faIndustry, .l-section.p-faFlow {
    padding: 0 60px; }

  .p-faExplain .flex {
    gap: 40px; }

  .p-faExplain__text {
    width: 50%;
    margin-right: 0px; }

  .p-faExplain__image {
    width: 50%; }

  .p-faIndustry__inner {
    padding: 80px 60px; }

  .c-faFlowStep__text {
    width: 50%; }
    .c-faFlowStep__text h3 {
      line-height: 1.5; }

  .c-faFlowStep__image {
    max-width: 470px; } }
@media screen and (max-width: 1200px) {
  .p-faIndustry__resultList ul {
    gap: 10px; }
  .p-faIndustry__resultList li {
    width: 100%;
    padding: 10px 10px 10px 38px; } }
@media screen and (max-width: 1100px) {
  .c-faFlowStep .flex {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px; }

  .c-faFlowStep__text {
    width: 100%; }

  .c-faFlowStep__image {
    width: 100%;
    max-width: 100%; }
    .c-faFlowStep__image img {
      width: 100%;
      max-width: 100%; } }
@media screen and (max-width: 1000px) {
  .l-section.p-faExplain .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }

  .p-faExplain__text {
    width: 100%; }

  .p-faExplain__image {
    width: 100%;
    max-width: 100%; }

  .p-faIndustry__list--content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px; } }
@media screen and (max-width: 970px) {
  .p-faIndustry__list--content li:first-child {
    width: 100%; }
    .p-faIndustry__list--content li:first-child .p-faIndustry__icon {
      margin: 0 auto; } }
@media screen and (max-width: 900px) {
  .p-fa__message {
    text-align: left; } }
@media screen and (max-width: 810px) {
  .p-faFlow .flow_br {
    display: block; } }
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    padding: 10px 20px 0px; }

  .c-intro.p-fa, .l-section.p-faExplain, .l-section.p-faIndustry, .l-section.p-faFlow {
    margin: 80px auto 0px; }

  .c-intro.p-fa, .l-section.p-faExplain, .l-section.p-faFlow {
    padding: 0px 20px; }

  .l-section.p-faIndustry {
    padding: 0px; }

  .c-intro.p-fa {
    margin: 80px auto 0px;
    padding: 0px 20px; }
    .c-intro.p-fa .c-title {
      font-size: 24px;
      letter-spacing: 2.4px; }
    .c-intro.p-fa .p_br {
      display: none; }

  .p-faExplain__text .c-title__en {
    font-size: 10px;
    margin-bottom: 8px; }
  .p-faExplain__text .c-title__ja {
    font-size: 24px;
    letter-spacing: 2.4px;
    margin-bottom: 20px; }

  .p-faIndustry__inner {
    padding: 80px 20px; }
    .p-faIndustry__inner .c-title__heading {
      font-size: 26px;
      letter-spacing: 1.3px; }

  .p-faIndustry__list {
    max-width: 960px;
    margin: 32px auto 0px; }

  .p-faIndustry__list--content {
    gap: 40px; }
    .p-faIndustry__list--content ul {
      padding: 0px; }

  .p-faIndustry__item {
    text-align: center; }
    .p-faIndustry__item p {
      font-size: 18px;
      margin-top: 10px; }

  .p-faIndustry__result {
    margin-top: 72px;
    padding: 30px 20px; }

  .p-faIndustry__resultList {
    margin-top: 32px; }
    .p-faIndustry__resultList .flex {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      gap: 0px; }
    .p-faIndustry__resultList li {
      width: 100%;
      line-height: 1.5;
      background-color: transparent; }
      .p-faIndustry__resultList li::before {
        top: 15px; }

  .p-faFlow .c-title__heading {
    font-size: 26px;
    letter-spacing: 1.78px; }

  .c-faFlowStep:last-of-type {
    margin-bottom: 80px; }
  .c-faFlowStep .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: -67px;
    gap: 40px; }
    .c-faFlowStep .flex.last {
      margin: 60px auto 0px -67px; }

  .c-faFlowStep__number {
    font-size: 14px;
    margin-top: -12px;
    margin-left: 8px;
    padding: 0px 8px; }

  .c-faFlowStep__text {
    width: 100%; }
    .c-faFlowStep__text h3 {
      font-size: 20px;
      letter-spacing: 0.6px;
      margin-bottom: 10px;
      padding-left: 18px; }
      .c-faFlowStep__text h3::before {
        top: 14px; }
    .c-faFlowStep__text p {
      line-height: 2.0; } }
@media screen and (max-width: 570px) {
  .c-intro.p-fa .intro_br {
    display: block; }

  .p-faIndustry__inner {
    padding: 80px 20px; }

  .p-faIndustry__icon {
    width: 176px; }
    .p-faIndustry__icon img {
      width: 80px; }

  .p-faIndustry__result li {
    width: 100%;
    min-width: 0px;
    padding: 10px 10px 10px 38px; }

  .p-faIndustry .flow_br {
    display: block; } }
@media screen and (max-width: 480px) {
  .p-faIndustry__list--content {
    gap: 20px; }

  .p-faIndustry__result {
    padding: 40px 30px; }

  .p-faIndustry__icon {
    width: 126px; }
    .p-faIndustry__icon img {
      width: 60px; }

  .c-faFlowStep__text h3 br {
    display: block; } }
.p-works .l-mv__container {
  background-image: url("/asset/images/works/works_mv.webp"); }

.l-section.p-metalWorks {
  max-width: 1300px;
  margin: 108px auto 0px;
  padding: 0px 100px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }
  .l-section.p-metalWorks .c-title {
    margin-bottom: 48px;
    text-align: center; }
  .l-section.p-metalWorks .c-title__heading {
    display: inline-block;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.96px;
    padding-bottom: 20px;
    position: relative; }
    .l-section.p-metalWorks .c-title__heading::after {
      content: "";
      width: 40px;
      height: 2px;
      background-color: #005ab7;
      position: absolute;
      bottom: 0px;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%); }

.p-metalWorks__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 0px; }

.p-metalWorks__item {
  width: calc((100% / 3) - 15px); }
  .p-metalWorks__item span {
    display: inline-block;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.42px;
    margin-top: 10px;
    padding-left: 14px;
    position: relative; }
    .p-metalWorks__item span::after {
      content: "";
      width: 10px;
      height: 2px;
      background-color: #005AB7;
      position: absolute;
      top: 9px;
      left: 0px; }

.l-section.p-faWorks {
  max-width: 1300px;
  margin: 148px auto 148px;
  padding: 0px 100px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }
  .l-section.p-faWorks .c-title {
    margin-bottom: 32px;
    text-align: center; }
  .l-section.p-faWorks .c-title__heading {
    display: inline-block;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.96px;
    padding-bottom: 20px;
    position: relative; }
    .l-section.p-faWorks .c-title__heading::after {
      content: "";
      width: 40px;
      height: 2px;
      background-color: #005ab7;
      position: absolute;
      bottom: 0px;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%); }

.p-faWorks__list table th {
  text-align: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 16px 10px;
  background-color: #EBF4FF;
  border: solid 1px #ddd; }
  .p-faWorks__list table th.table_01 {
    width: 50%;
    font-size: 14px; }
  .p-faWorks__list table th.table_02 {
    width: 50%;
    font-size: 14px; }
.p-faWorks__list table td {
  text-align: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 16px 10px;
  background-color: #fff;
  border: solid 1px #ddd; }
  .p-faWorks__list table td.table_01 {
    width: 50%;
    font-size: 14px; }
  .p-faWorks__list table td.table_02 {
    width: 50%;
    font-size: 14px; }

.p-faWorks__listBr {
  display: none; }

.p-faWorks__continue {
  margin-top: 10px;
  text-align: right; }

@media screen and (max-width: 1300px) {
  .c-breadcrumb {
    padding: 20px 60px 0px; }

  .l-section.p-metalWorks, .l-section.p-faWorks {
    padding: 0 60px; } }
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    padding: 10px 20px 0px; }

  .l-section.p-metalWorks, .l-section.p-faWorks {
    margin: 80px auto 0px;
    padding: 0 20px; }
    .l-section.p-metalWorks .c-title, .l-section.p-faWorks .c-title {
      margin-bottom: 40px; }
      .l-section.p-metalWorks .c-title h2, .l-section.p-faWorks .c-title h2 {
        font-size: 26px;
        letter-spacing: 0.78px; }

  .p-metalWorks__item {
    width: calc((100% / 2) - 15px); }

  .l-section.p-faWorks {
    margin: 80px auto; }

  .p-faWorks__list table th, .p-faWorks__list table td {
    padding: 12px 10px; } }
@media screen and (max-width: 460px) {
  .p-metalWorks__item {
    width: 100%; }

  .p-faWorks__list table th, .p-faWorks__list table td {
    line-height: 1.5;
    text-align: left; }

  .p-faWorks__listBr {
    display: block; } }
.p-facility .l-mv__container {
  background-image: url("/asset/images/facility/facility_mv.webp"); }

.l-section.p-mainProcessingFacility {
  margin: 108px auto 0px;
  padding: 0px 100px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-width: 1300px; }
  .l-section.p-mainProcessingFacility .c-title {
    text-align: left;
    margin-bottom: 48px; }
    .l-section.p-mainProcessingFacility .c-title .c-title__heading {
      display: inline-block;
      font-size: 32px;
      font-weight: 400;
      letter-spacing: 0.96px;
      padding-bottom: 20px;
      position: relative; }
      .l-section.p-mainProcessingFacility .c-title .c-title__heading::after {
        content: "";
        width: 40px;
        height: 2px;
        background-color: #005ab7;
        position: absolute;
        bottom: 0px;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        left: 0;
        -webkit-transform: none;
                transform: none; }

.p-mainProcessingFacility__list {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px; }

.p-mainProcessingFacility__item {
  max-width: calc((100% - 60px) / 3); }
  .p-mainProcessingFacility__item span {
    display: inline-block;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.42px;
    margin-top: 10px;
    padding-left: 14px;
    position: relative; }
    .p-mainProcessingFacility__item span::after {
      content: "";
      width: 10px;
      height: 2px;
      background-color: #005AB7;
      position: absolute;
      top: 9px;
      left: 0px; }

.p-mainProcessingFacility__table table {
  min-width: 1040px; }

.l-section.p-mainProcessingFacility table th.table_01 {
  width: 30.793%; }
.l-section.p-mainProcessingFacility table th.table_02 {
  width: 16.937%; }
.l-section.p-mainProcessingFacility table th.table_03 {
  width: 6.159%; }
.l-section.p-mainProcessingFacility table th.table_04 {
  width: 23.0555%; }
.l-section.p-mainProcessingFacility table th.table_05 {
  width: 23.0555%; }
.l-section.p-mainProcessingFacility table td {
  text-align: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 16px 10px;
  background-color: #fff;
  border: solid 1px #ddd; }
  .l-section.p-mainProcessingFacility table td.table_01 {
    width: 30%; }
  .l-section.p-mainProcessingFacility table td.table_02 {
    width: 16%; }
  .l-section.p-mainProcessingFacility table td.table_03 {
    width: 6%; }
  .l-section.p-mainProcessingFacility table td.table_04 {
    width: 24%; }
  .l-section.p-mainProcessingFacility table td.table_05 {
    width: 24%; }

.p-mainProcessingFacility_check_box {
  display: inline-block; }
  .p-mainProcessingFacility_check_box p {
    text-align: left; }

.p-mainProcessingFacility_check p {
  font-size: 12px;
  letter-spacing: 0.6px;
  color: #898989;
  text-align: left;
  margin-top: 3px; }

.l-section.p-mainWeldingFacility {
  margin: 120px auto 0px;
  padding: 0px 100px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-width: 1300px; }
  .l-section.p-mainWeldingFacility .c-title {
    text-align: left;
    margin-bottom: 32px; }
    .l-section.p-mainWeldingFacility .c-title .c-title__heading {
      display: inline-block;
      font-size: 32px;
      font-weight: 400;
      letter-spacing: 0.96px;
      padding-bottom: 20px;
      position: relative; }
      .l-section.p-mainWeldingFacility .c-title .c-title__heading::after {
        content: "";
        width: 40px;
        height: 2px;
        background-color: #005ab7;
        position: absolute;
        bottom: 0px;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        left: 0;
        -webkit-transform: none;
                transform: none; }

.p-mainWeldingFacility__table table {
  min-width: 1040px; }
  .p-mainWeldingFacility__table table .table_01 {
    width: 37%; }
  .p-mainWeldingFacility__table table .table_02 {
    width: 20%; }
  .p-mainWeldingFacility__table table .table_03 {
    width: 8%; }
  .p-mainWeldingFacility__table table .table_04 {
    width: 35%; }

.p-mainProcessingFacility.p-scrollAttention, .p-mainWeldingFacility.p-scrollAttention, .p-checkFacility.p-scrollAttention {
  display: none;
  margin-bottom: 8px; }
  .p-mainProcessingFacility.p-scrollAttention p, .p-mainWeldingFacility.p-scrollAttention p, .p-checkFacility.p-scrollAttention p {
    font-size: 12px; }

.l-section.p-checkFacility {
  margin: 120px auto 0px;
  padding: 0px 100px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-width: 1300px; }
  .l-section.p-checkFacility .c-title {
    text-align: left;
    margin-bottom: 32px; }
    .l-section.p-checkFacility .c-title .c-title__heading {
      display: inline-block;
      font-size: 32px;
      font-weight: 400;
      letter-spacing: 0.96px;
      padding-bottom: 20px;
      position: relative; }
      .l-section.p-checkFacility .c-title .c-title__heading::after {
        content: "";
        width: 40px;
        height: 2px;
        background-color: #005ab7;
        position: absolute;
        bottom: 0px;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        left: 0;
        -webkit-transform: none;
                transform: none; }

.p-checkFacility__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

.p-checkFacility__content {
  margin-right: 40px;
  overflow: hidden; }

.p-checkFacility__container {
  padding-right: 1px; }
  .p-checkFacility__container table {
    margin: 0px;
    min-width: 870px; }
    .p-checkFacility__container table .table_01 {
      width: 22%; }
    .p-checkFacility__container table .table_02 {
      width: 16%; }
    .p-checkFacility__container table .table_03 {
      width: 10%; }
    .p-checkFacility__container table .table_04 {
      width: 28%; }
    .p-checkFacility__container table .table_05 {
      width: 24%; }

.p-checkFacility__attention {
  font-size: 14px;
  letter-spacing: 0.42px;
  margin-top: 10px; }

.p-checkFacility__image {
  width: 380px; }

.l-facilityColumn {
  margin: 120px auto 148px;
  padding: 0px 100px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-width: 1300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

.l-section.p-designFacility, .l-section.p-otherFacility {
  width: calc(50% - 60px); }
  .l-section.p-designFacility .c-title, .l-section.p-otherFacility .c-title {
    text-align: left;
    margin-bottom: 32px; }
    .l-section.p-designFacility .c-title .c-title__heading, .l-section.p-otherFacility .c-title .c-title__heading {
      display: inline-block;
      font-size: 32px;
      font-weight: 400;
      letter-spacing: 0.96px;
      padding-bottom: 20px;
      position: relative; }
      .l-section.p-designFacility .c-title .c-title__heading::after, .l-section.p-otherFacility .c-title .c-title__heading::after {
        content: "";
        width: 40px;
        height: 2px;
        background-color: #005ab7;
        position: absolute;
        bottom: 0px;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        left: 0;
        -webkit-transform: none;
                transform: none; }
  .l-section.p-designFacility .table_01, .l-section.p-otherFacility .table_01 {
    width: 80%; }
  .l-section.p-designFacility .table_02, .l-section.p-otherFacility .table_02 {
    width: 20%; }

@media screen and (max-width: 1489px) {
  .p-checkFacility__container {
    overflow-x: scroll; }

  .p-checkFacility__tableContainer {
    position: relative; }
    .p-checkFacility__tableContainer::after {
      content: "";
      display: block;
      position: absolute;
      width: 10px;
      height: 100%;
      top: 0;
      z-index: 5;
      right: 0;
      background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.05)), to(transparent));
      background: linear-gradient(-90deg, rgba(0, 0, 0, 0.05), transparent); }

  .p-checkFacility.p-scrollAttention {
    display: block; } }
@media screen and (max-width: 1300px) {
  .c-breadcrumb {
    padding: 20px 60px 0px; }

  .l-section.p-mainProcessingFacility, .l-section.p-mainWeldingFacility, .l-section.p-checkFacility, .l-facilityColumn {
    padding: 0 60px; }

  .p-mainProcessingFacility__tableContainer, .p-mainWeldingFacility__tableContainer {
    position: relative; }
    .p-mainProcessingFacility__tableContainer::after, .p-mainWeldingFacility__tableContainer::after {
      content: "";
      display: block;
      position: absolute;
      width: 10px;
      height: 100%;
      top: 0;
      z-index: 5;
      right: 0;
      background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.05)), to(transparent));
      background: linear-gradient(-90deg, rgba(0, 0, 0, 0.05), transparent); }

  .p-mainProcessingFacility__table, .p-mainWeldingFacility__table {
    overflow-x: scroll; } }
@media screen and (max-width: 1159px) {
  .p-mainProcessingFacility.p-scrollAttention, .p-mainWeldingFacility.p-scrollAttention {
    display: block; } }
@media screen and (max-width: 1100px) {
  .p-checkFacility__container {
    overflow-x: scroll; }

  .l-section.p-designFacility, .l-section.p-otherFacility {
    width: calc(50% - 30px); } }
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    padding: 10px 20px 0px; }

  .l-section.p-mainProcessingFacility, .l-section.p-mainWeldingFacility, .l-section.p-checkFacility, .l-facilityColumn {
    margin: 80px auto 0px;
    padding: 0 20px; }
    .l-section.p-mainProcessingFacility .c-title, .l-section.p-mainWeldingFacility .c-title, .l-section.p-checkFacility .c-title, .l-facilityColumn .c-title {
      margin-bottom: 40px; }
      .l-section.p-mainProcessingFacility .c-title .c-title__heading, .l-section.p-mainWeldingFacility .c-title .c-title__heading, .l-section.p-checkFacility .c-title .c-title__heading, .l-facilityColumn .c-title .c-title__heading {
        font-size: 26px;
        letter-spacing: 0.78px; }
    .l-section.p-mainProcessingFacility table th, .l-section.p-mainProcessingFacility table td, .l-section.p-mainWeldingFacility table th, .l-section.p-mainWeldingFacility table td, .l-section.p-checkFacility table th, .l-section.p-checkFacility table td, .l-facilityColumn table th, .l-facilityColumn table td {
      padding: 12px 10px; }

  .p-mainProcessingFacility__item {
    max-width: calc((100% - 30px) / 2); }

  .p-checkFacility__table {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px; }

  .p-checkFacility__content {
    width: 100%;
    margin-right: 0px; }

  .p-checkFacility__image {
    width: 100%; }
    .p-checkFacility__image img {
      width: 100%; }

  .l-facilityColumn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px;
    margin: 80px auto 80px; }

  .l-section.p-designFacility, .l-section.p-otherFacility {
    width: 100%; } }
@media screen and (max-width: 460px) {
  .p-mainProcessingFacility__item {
    max-width: 100%; }

  .p-checkFacility__image {
    width: 100%; } }
.p-recruit .l-mv__container {
  background-image: url("/asset/images/recruit/recruit_mv.webp");
  background-position: right center; }

.l-section.c-intro.p-recruit {
  max-width: 960px;
  margin: 108px auto 0px;
  padding: 0 60px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }
  .l-section.c-intro.p-recruit .c-intro__title {
    font-family: YakuHanMP, "Noto Serif JP","Hiragino Mincho ProN",  "Yu Mincho", YuMincho, serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 2.8px;
    text-align: center;
    color: #005AB7;
    margin-bottom: 32px; }
  .l-section.c-intro.p-recruit .c-intro__message {
    line-height: 2.0;
    letter-spacing: 0.8px;
    text-align: center; }
  .l-section.c-intro.p-recruit .c-intro__message--conclusion {
    margin-top: 24px;
    text-align: center; }

.l-section.p-recruitList {
  margin-top: 148px;
  position: relative; }

.p-recruitList__container {
  padding: 80px 60px;
  background-color: #EBF5FF; }
  .p-recruitList__container .c-title {
    margin-bottom: 48px;
    text-align: center; }
    .p-recruitList__container .c-title .c-title__heading {
      display: inline-block;
      font-size: 32px;
      font-weight: 400;
      letter-spacing: 0.96px;
      padding-bottom: 20px;
      position: relative; }
      .p-recruitList__container .c-title .c-title__heading::after {
        content: "";
        width: 40px;
        height: 2px;
        background-color: #005ab7;
        position: absolute;
        bottom: 0px;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%); }

.p-occupation {
  max-width: 1140px;
  margin: 0 auto; }

.p-occupation__tab {
  width: calc((100% / 4) - 1px);
  height: 76px;
  padding: 23px 0px;
  background-color: #D9D9D9;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  cursor: pointer; }
  .p-occupation__tab p {
    font-size: 20px;
    margin: 0 auto;
    font-weight: bold; }
  .p-occupation__tab:hover {
    background-color: #005ab7; }
    .p-occupation__tab:hover p {
      color: #fff; }
  .p-occupation__tab.active {
    background-color: #005ab7; }
    .p-occupation__tab.active p {
      color: #fff; }

.p-tabAction {
  min-height: 1320px;
  position: relative; }

.p-tabAction__item {
  padding: 80px;
  background-color: #fff;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: none; }

.p-tabAction__item.active {
  display: block; }

.p-tabActionList__container {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 30px; }
  .p-tabActionList__container .p-tabActionList__text {
    max-width: 520px;
    margin-right: 70px;
    margin-bottom: 0px; }
    .p-tabActionList__container .p-tabActionList__text .p-tabActionList__term {
      margin-bottom: 20px; }
    .p-tabActionList__container .p-tabActionList__text .p-tabActionList__desc {
      width: 100%; }

.p-tabActionList__text {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 100%;
  margin-bottom: 30px; }

.p-tabActionList__term {
  color: #005ab7;
  width: 130px;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1.6px;
  padding-left: 16px;
  position: relative; }
  .p-tabActionList__term::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 30px;
    background-color: #005ab7;
    top: 50%;
    left: 0px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }

.p-tabActionList__desc {
  width: calc(100% - 130px);
  margin-left: 20px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.8px; }

.p-tabActionList__descList li {
  padding-left: 1em;
  position: relative; }
  .p-tabActionList__descList li::before {
    content: "・";
    width: 1em;
    height: 1em;
    position: absolute;
    top: 0px;
    left: -1px; }

.p-tabActionList__image {
  width: 390px;
  aspect-ratio: 390/250;
  background-color: #005ab7;
  margin-bottom: 20px; }

.p-tabActionSchedule {
  margin-top: 60px; }

.p-tabActionSchedule__title {
  font-size: 24px;
  font-weight: normal;
  color: #005ab7;
  letter-spacing: 1.92px; }

.p-tabActionSchedule__list {
  margin-top: 32px; }

.p-tabActionSchedule__item {
  background-color: #F2F2F2;
  margin-bottom: 10px;
  padding: 30px; }
  .p-tabActionSchedule__item:last-of-type {
    margin-bottom: 0px; }

.p-tabActionSchedule__container {
  gap: 80px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

.p-tabActionSchedule__date {
  font-family: "Roboto", sans-serif;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1.8px;
  color: #005ab7; }

.p-tabActionSchedule__term {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.9px;
  font-weight: 500; }

.p-tabActionSchedule__desc {
  line-height: 1.6; }

.l-section.p-recruitVoice {
  margin-top: 148px;
  padding: 0px 60px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }
  .l-section.p-recruitVoice .c-title {
    margin-bottom: 48px;
    text-align: center; }
  .l-section.p-recruitVoice .c-title__heading {
    display: inline-block;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.96px;
    padding-bottom: 20px;
    position: relative; }
    .l-section.p-recruitVoice .c-title__heading::after {
      content: "";
      width: 40px;
      height: 2px;
      background-color: #005ab7;
      position: absolute;
      bottom: 0px;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%); }

.p-recruitVoice__list {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #F2F2F2; }

.p-recruitVoice__item {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #fff;
  padding: 60px;
  -webkit-box-shadow: 0px 0px 25px rgba(68, 68, 68, 0.1);
          box-shadow: 0px 0px 25px rgba(68, 68, 68, 0.1);
  margin-bottom: 40px; }
  .p-recruitVoice__item:last-of-type {
    margin-bottom: 0px; }

.p-recruitVoice__image {
  min-width: 210px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .p-recruitVoice__image img {
    width: 164px;
    margin-bottom: 10px; }
  .p-recruitVoice__image span {
    max-width: 164px;
    font-size: 14px;
    line-height: 2.0;
    letter-spacing: 0.7px; }

.p-recruitVoice__text {
  margin-left: 20px; }
  .p-recruitVoice__text h3 {
    font-family: YakuHanMP, "Noto Serif JP","Hiragino Mincho ProN",  "Yu Mincho", YuMincho, serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.6px;
    color: #005ab7;
    margin-bottom: 10px; }
  .p-recruitVoice__text p {
    line-height: 2.0; }

.l-section.p-recruitInfo {
  margin-top: 148px;
  padding: 0px 60px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }
  .l-section.p-recruitInfo .c-title {
    margin-bottom: 48px;
    text-align: center; }
  .l-section.p-recruitInfo .c-title__heading {
    display: inline-block;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.96px;
    padding-bottom: 22px;
    position: relative; }
    .l-section.p-recruitInfo .c-title__heading::after {
      content: "";
      width: 40px;
      height: 2px;
      background-color: #005ab7;
      position: absolute;
      bottom: 0px;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%); }

.p-recruitInfoList__container {
  max-width: 960px;
  margin: 0 auto; }

.p-recruitInfo__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .p-recruitInfo__item:last-of-type {
    border-bottom: solid 1px #ddd; }

.p-recruitInfo__term, .p-recruitInfo__desc {
  text-align: left;
  border-bottom: none; }

.p-recruitInfo__term {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.48px;
  width: 210px;
  background-color: #F0F7FF;
  padding: 16px 20px;
  border-right: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.p-recruitInfo__desc {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.48px;
  width: calc(100% - 210px);
  background-color: #fff;
  padding: 16px 30px;
  border-left: none; }

.p-recruitInfo__listItem {
  padding-left: 1em;
  text-indent: -1em; }

.p-recruitInfo__itemBr {
  display: none; }

.l-section.p-recruitCta {
  margin-top: 148px;
  margin-bottom: 148px;
  height: 430px;
  background-image: url("/asset/images/recruit/recruit_cta_bg.webp");
  background-position: right center;
  background-size: cover;
  -webkit-box-shadow: 0px 30px 45px rgba(68, 68, 68, 0.1);
          box-shadow: 0px 30px 45px rgba(68, 68, 68, 0.1);
  position: relative; }
  .l-section.p-recruitCta::before {
    content: "";
    inset: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4); }

.p-recruitCta__container {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 108px; }
  .p-recruitCta__container .c-title {
    position: relative;
    z-index: 2; }
  .p-recruitCta__container .c-title__heading {
    font-family: YakuHanMP, "Noto Serif JP","Hiragino Mincho ProN",  "Yu Mincho", YuMincho, serif;
    font-weight: bold;
    font-size: 28px;
    letter-spacing: 0.84px;
    color: #fff;
    margin-bottom: 34px; }

.p-recruitCta__tel {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 10px; }

.p-recruitCta__telIcon {
  width: 35px;
  aspect-ratio: 1/1;
  margin-right: 14px;
  position: relative;
  bottom: -1px; }

.p-recruitCta__telNumber {
  font-family: "Roboto", sans-serif;
  font-size: 44px;
  line-height: 1.2;
  font-weight: bold;
  color: #fff; }

.p-recruitCta__ceo {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  position: relative;
  bottom: 5px;
  left: 6px; }

.p-recruitCta__time {
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.48px; }

.p-recruitCta__br {
  display: none; }

@media screen and (max-width: 1300px) {
  .c-breadcrumb {
    padding: 10px 60px 0px; }

  .c-intro.p-recruit {
    padding: 0 60px; }

  .l-section.p-recruitVoice, .l-section.p-recruitInfo, .l-section.p-recruitCta {
    padding: 0 60px; }

  .p-tabAction__item, .p-recruitVoice__list {
    padding: 80px 60px; }

  .p-recruitVoice__item {
    padding: 60px; } }
@media screen and (max-width: 1100px) {
  .l-section.c-intro.p-recruit .c-intro__message {
    text-align: left; }
  .l-section.c-intro.p-recruit .c-intro__message--conclusion {
    text-align: left; }

  .p-occupation__tab:first-child p {
    font-size: 17px; }

  .p-tabActionList__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
    .p-tabActionList__container .p-tabActionList__text {
      max-width: 100%;
      margin-right: 0px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; }
      .p-tabActionList__container .p-tabActionList__text .p-tabActionList__term {
        color: #005ab7;
        width: 130px;
        padding-left: 16px; }
      .p-tabActionList__container .p-tabActionList__text .p-tabActionList__desc {
        width: calc(100% - 130px);
        margin-left: 20px; }
    .p-tabActionList__container .p-tabActionList__image {
      width: 100%; }
      .p-tabActionList__container .p-tabActionList__image img {
        width: 100%; } }
@media screen and (max-width: 1000px) {
  .p-recruitVoice__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px; }

  .p-recruitVoice__image {
    margin: 0 auto;
    text-align: left; }

  .p-recruitVoice__text {
    max-width: 100%;
    margin: 0px; }

  .p-recruitCta__container {
    left: 88px; } }
@media screen and (max-width: 880px) {
  .p-occupation__tab {
    width: calc((100% / 2) - 1px);
    padding: 10px 0px;
    height: 64px; }

  .p-occupation__container.flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2px 0px; } }
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    padding: 10px 20px 0px; }

  .l-section.c-intro.p-recruit {
    margin: 80px auto 0px; }
    .l-section.c-intro.p-recruit .c-intro__message--conclusion {
      margin-top: 21px; }

  .l-section.p-recruitList {
    margin: 80px auto 0px; }

  .l-section.p-recruitVoice, .l-section.p-recruitInfo {
    margin: 80px auto 0px;
    padding: 0 20px; }
    .l-section.p-recruitVoice .c-title, .l-section.p-recruitInfo .c-title {
      margin-bottom: 40px; }
      .l-section.p-recruitVoice .c-title h2, .l-section.p-recruitInfo .c-title h2 {
        font-size: 28px;
        letter-spacing: 0.84px; }

  .l-section.p-recruitCta {
    margin: 80px auto 0px; }

  .l-section.c-intro.p-recruit {
    padding: 0 20px; }

  .p-recruitList__container {
    padding: 80px 20px; }

  .p-occupation__tab {
    padding: 0px;
    height: 50px; }
    .p-occupation__tab p {
      font-size: 18px; }

  .p-tabAction__item {
    padding: 80px 20px; }

  .p-tabActionList__container {
    margin-bottom: 30px; }
    .p-tabActionList__container .p-tabActionList__text .p-tabActionList__term {
      margin-bottom: 10px; }
      .p-tabActionList__container .p-tabActionList__text .p-tabActionList__term::after {
        width: 3px;
        height: 23px; }
    .p-tabActionList__container .p-tabActionList__text .p-tabActionList__desc {
      width: calc(100% - 20px); }

  .p-tabActionList__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }

  .p-tabActionList__term {
    font-size: 18px;
    letter-spacing: 1.44px;
    width: 100%;
    margin-bottom: 10px; }
    .p-tabActionList__term::after {
      width: 3px;
      height: 23px; }
    .p-tabActionList__term br {
      display: none; }

  .p-tabActionList__desc {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.7px;
    width: calc(100% - 20px); }

  .p-tabActionSchedule__title {
    font-size: 20px;
    letter-spacing: 1.6px; }

  .p-tabActionSchedule__container {
    gap: 30px; }

  .p-recruitVoice__list {
    padding: 80px 20px; }

  .p-tabActionSchedule__item {
    padding: 20px; }

  .p-tabActionSchedule__date {
    font-size: 16px;
    letter-spacing: 1.6px; }

  .p-tabActionSchedule__term {
    font-size: 16px;
    letter-spacing: 0.8px; }

  .p-recruitVoice__item {
    padding: 60px 30px; }

  .p-recruitVoice__image img {
    width: 144px; }
  .p-recruitVoice__image span {
    max-width: 144px; }

  .p-recruitInfo__term {
    width: 120px; }

  .p-recruitInfo__desc {
    width: calc(100% - 120px); }

  .l-section.p-recruitCta {
    height: 270px;
    margin-bottom: 80px;
    background-position: calc(100% - -110px) center; }

  .p-recruitCta__container {
    left: 28px; }
    .p-recruitCta__container .c-title__heading {
      font-size: 24px;
      line-height: 1.5;
      letter-spacing: 0.72px;
      margin-bottom: 24px; }

  .p-recruitCta__br {
    display: block; }

  .p-recruitCta__telNumber {
    font-size: 40px; } }
@media screen and (max-width: 600px) {
  .p-recruitInfo__itemBr {
    display: block; }

  .p-tabActionSchedule__desc {
    margin-left: -80px; } }
@media screen and (max-width: 460px) {
  .l-section.c-intro.p-recruit .c-intro__message {
    text-align: left; }

  .p-occupation__tab p {
    font-weight: 600;
    font-size: 16px; }

  .p-occupation__tab:first-child p {
    font-size: 15px; }

  .p-tabAction__item {
    padding: 60px 20px; }

  .p-tabActionSchedule__item {
    padding: 20px; }

  .p-recruitList__container {
    padding: 80px 20px; }

  .p-recruitVoice__item {
    padding: 60px 30px; }

  .recruit_list .schedule .schedule_list li .schedule_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px; }

  .p-recruitInfo__term {
    width: 110px;
    padding: 14px 18px; }

  .p-recruitInfo__desc {
    width: calc(100% - 110px);
    padding: 14px 28px; }

  .p-recruitCta__container .c-title__heading {
    font-size: 20px;
    letter-spacing: 0.6px;
    margin-bottom: 24px; }

  .p-recruitCta__telIcon {
    width: 28px;
    margin-right: 8px; }

  .p-recruitCta__telNumber {
    font-size: 30px; }

  .p-recruitCta__ceo {
    font-size: 15px; } }
.p-contact .l-mv__container {
  background-image: url("/asset/images/contact/contact_mv.webp"); }

.l-section.p-formInfo {
  text-align: center;
  max-width: 960px;
  margin: 108px  auto 80px;
  padding: 0px 100px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

.p-formInfo__container {
  padding: 25px;
  border: solid 1px #ddd; }

.p-formInfo--text__capture {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.72px;
  margin-bottom: 22px; }

.p-formInfo--text__heading {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 1.8px;
  color: #005AB7;
  margin-bottom: 12px; }

.p-formInfo--text__date {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.54px; }

@media screen and (max-width: 1300px) {
  .l-section.p-formInfo {
    padding: 0 60px; } }
@media screen and (max-width: 768px) {
  .l-section.p-formInfo {
    margin: 80px auto 40px;
    padding: 0 20px; }

  .p-formInfo--text__capture {
    font-size: 20px;
    letter-spacing: 0.6px;
    margin-bottom: 12px; }

  .p-formInfo--text__heading {
    font-size: 32px;
    letter-spacing: 1.6px;
    margin-bottom: 6px; } }
@media screen and (max-width: 460px) {
  .p-formInfo__container {
    padding: 20px; }

  .p-formInfo--text__capture {
    font-size: 16px;
    letter-spacing: 0.8px; }

  .p-formInfo--text__heading {
    font-size: 24px;
    letter-spacing: 1.2px; }

  .p-formInfo--text__date {
    font-size: 14px;
    letter-spacing: 0.42px; } }
.p-newsArchive .l-mv__container {
  background-image: url("/asset/images/news/news_mv.webp");
  background-position: right; }

.l-section.p-newsArchive {
  max-width: 960px;
  margin: 108px auto 148px;
  padding: 0px 100px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }
  .l-section.p-newsArchive .l-section__container {
    border-bottom: solid 1px #ddd; }

.p-newsArchive__item {
  border-top: solid 1px #ddd;
  padding: 30px 0px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }
  .p-newsArchive__item :hover p {
    color: #005ab7;
    cursor: pointer; }
  .p-newsArchive__item a {
    width: 100%; }

.p-newsArchive__dateBox {
  width: 140px;
  margin-right: 50px;
  padding-left: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.p-newsArchive__date {
  font-size: 18px;
  letter-spacing: 0.54px;
  color: #005ab7; }

.p-newsArchive__title {
  width: calc(100% - 190px);
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.8px; }

.p-newsArchive__pagenation {
  margin-top: 80px;
  text-align: center; }

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }
  .wp-pagenavi span {
    padding: 7px 5px !important; }
  .wp-pagenavi span.current {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    color: #fff;
    border-color: #005AB7;
    background-color: #005ab7;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
  .wp-pagenavi .page {
    padding: 7px 5px; }
  .wp-pagenavi .page.larger, .wp-pagenavi .page.smaller {
    font-size: 16px;
    color: #212121;
    padding: 7px 5px;
    border-color: #005AB7 !important;
    vertical-align: baseline;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
  .wp-pagenavi .page.larger:hover, .wp-pagenavi .page.smaller:hover {
    display: inline-block;
    color: #005AB7; }
  .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
    vertical-align: baseline;
    padding: 7px 5px; }

@media screen and (max-width: 1300px) {
  .c-breadcrumb {
    padding: 20px 60px 0px; }

  .l-section.p-newsArchive {
    padding: 0 60px; } }
@media screen and (max-width: 768px) {
  .p-newsArchive .l-mv__container {
    background-position: right; }

  .c-breadcrumb {
    padding: 10px 20px 0px; }

  .l-section.p-newsArchive {
    margin: 80px auto 80px;
    padding: 0 20px; }

  .p-newsArchive__container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }

  .p-newsArchive__dateBox {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 5px;
    padding-left: 0px; }

  .p-newsArchive__item {
    padding: 14px 12px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }

  .p-newsArchive__date {
    font-size: 14px;
    letter-spacing: 0.42px;
    color: #005ab7; }

  .p-newsArchive__title {
    width: 100%; }

  .p-newsArchive__pagenation {
    margin-top: 40px; }

  .wp-pagenavi span.current {
    padding: 7px 5px; }
  .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
    vertical-align: baseline;
    padding: 8px 5px; } }
.p-newsSingle .l-mv__container {
  background-image: url("/asset/images/news/news_mv.webp");
  background-position: right; }
.p-newsSingle .c-breadcrumb__item:first-of-type::after, .p-newsSingle .c-breadcrumb__item:nth-of-type(2)::after {
  content: ">";
  color: #707070;
  width: 6px;
  height: 11px;
  position: absolute;
  right: 3px; }

.l-section.p-newsSingle {
  margin: 108px auto 148px;
  max-width: 960px;
  padding: 0px 100px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

.p-newsSingle__item {
  margin-bottom: 80px; }

.p-newsSingle__container {
  margin-bottom: 24px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }

.p-newsSingle__date {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 18px;
  letter-spacing: 0.54px;
  max-width: 120px;
  margin-right: 20px; }

.p-newsSingle__tag {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 18px;
  letter-spacing: 0.54px; }

.p-newsSingle__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 2.4px;
  margin-bottom: 40px; }

.p-newsSingle__text h3 {
  font: bold 24px/1.5  YakuHanJP, "Hiragino Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; }
  .p-newsSingle__text h3 + p, .p-newsSingle__text h3 + img, .p-newsSingle__text h3 + h4, .p-newsSingle__text h3 + h5 {
    margin-top: 10px; }
.p-newsSingle__text h4 {
  font: bold 18px/1.5  YakuHanJP, "Hiragino Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; }
  .p-newsSingle__text h4 + p, .p-newsSingle__text h4 + img, .p-newsSingle__text h4 + h4, .p-newsSingle__text h4 + h5 {
    margin-top: 10px; }
.p-newsSingle__text h5 {
  font: bold 14px/1.5  YakuHanJP, "Hiragino Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; }
  .p-newsSingle__text h5 + p, .p-newsSingle__text h5 + img, .p-newsSingle__text h5 + h4, .p-newsSingle__text h5 + h5 {
    margin-top: 10px; }
.p-newsSingle__text p {
  font: normal 16px/1.5  YakuHanJP, "Hiragino Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0.8px; }
  .p-newsSingle__text p a {
    text-decoration: underline; }
    .p-newsSingle__text p a:hover {
      text-decoration: none; }
  .p-newsSingle__text p + img, .p-newsSingle__text p + p {
    margin-top: 10px; }
  .p-newsSingle__text p + h3, .p-newsSingle__text p + h4, .p-newsSingle__text p + h5 {
    margin-top: 30px; }
.p-newsSingle__text img {
  width: 100%;
  max-width: 500px; }
  .p-newsSingle__text img.aligncenter {
    margin: 0 auto;
    display: block; }

.p-newsSingle__text p {
  line-height: 2.0; }

.btn_container.p-newsSingle {
  text-align: center; }
  .btn_container.p-newsSingle .btn {
    display: inline-block;
    background-color: #ffffff;
    border: solid 1px #005AB7;
    position: relative;
    -webkit-transition: .3s ease-in;
    transition: .3s ease-in; }
    .btn_container.p-newsSingle .btn::after {
      content: "";
      width: 10px;
      height: 10px;
      background-image: url("/asset/images/arrow_mainblue.svg");
      background-position: center center;
      background-repeat: no-repeat;
      position: absolute;
      top: calc(50% - 3px);
      right: 16px; }
    .btn_container.p-newsSingle .btn:hover {
      background-color: #005AB7; }
      .btn_container.p-newsSingle .btn:hover::after {
        background-image: url("/asset/images/arrow_white.svg"); }
    .btn_container.p-newsSingle .btn a {
      display: inline-block;
      text-align: center;
      padding: 15px 0px;
      min-width: 244px;
      max-height: 50px;
      color: #005AB7; }
      .btn_container.p-newsSingle .btn a:hover {
        color: #ffffff; }
        .btn_container.p-newsSingle .btn a:hover::after {
          background-image: url("/asset/images/main_cta_arrow2.png"); }

@media screen and (max-width: 1300px) {
  .c-breadcrumb {
    padding: 20px 60px 0px; }

  .l-section.p-newsSingle {
    padding: 0 60px; } }
@media screen and (max-width: 768px) {
  .p-newsSingle .l-mv__container {
    background-position: right; }

  .c-breadcrumb {
    padding: 10px 20px 0px; }

  .l-section.p-newsSingle {
    margin: 80px auto;
    padding: 0 20px; }

  .p-newsSingle__item {
    margin-bottom: 60px; }

  .p-newsSingle__container {
    margin-bottom: 10px; }

  .p-newsSingle__date {
    font-size: 16px;
    letter-spacing: 0.48px;
    width: 120px; }

  .p-newsSingle__title {
    font-size: 20px;
    letter-spacing: 2.0px;
    line-height: 1.6;
    margin-bottom: 20px; }

  .btn_container.p-newsSingle .btn a {
    font-size: 14px;
    width: 164px;
    padding: 12px 0px; }

  .btn_container.p-newsSingle .btn:hover {
    background-color: #ffffff; }
    .btn_container.p-newsSingle .btn:hover::after {
      background-image: url("/asset/images/arrow_mainblue.svg"); }
  .btn_container.p-newsSingle .btn a:hover {
    color: #005AB7; }
    .btn_container.p-newsSingle .btn a:hover::after {
      background-image: url("/asset/images/arrow_mainblue.svg"); } }
.p-sdgs .l-mv__container {
  background-image: url("/asset/images/sdgs/sdgs_mv.webp");
  background-position: right center; }

.l-section.p-sdgs {
  max-width: 960px;
  margin: 108px auto 148px;
  padding: 0px 100px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

.p-p-sdgsPolicy {
  margin-bottom: 100px; }

.p-sdgsPolicy__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 2.4px;
  color: #005ab7;
  margin-bottom: 24px; }

.p-sdgsPolicy__text {
  line-height: 2.0;
  letter-spacing: 0.8px; }

.p-effort__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 2.4px;
  color: #005ab7;
  margin-bottom: 24px; }

.p-effort__itemNumber, .p-effort__priorityItem, .p-effort__priorityNumber {
  line-height: 2.0; }

.p-effort__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }
  .p-effort__text p {
    line-height: 2.0; }

.p-effort__itemNumber {
  margin-right: 4px; }

.p-effort__priorityItem {
  margin-left: 20px;
  text-indent: -0.9em;
  padding-left: 2em; }

.p-effort__priorityNumber {
  display: inline-block;
  margin-right: 4px; }

@media screen and (max-width: 1300px) {
  .c-breadcrumb {
    padding: 20px 60px 0px; }

  .l-section.p-sdgs {
    padding: 0 60px; } }
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    padding: 10px 20px 0px; }

  .l-section.p-sdgs {
    margin: 80px auto;
    padding: 0 20px; }

  .p-sdgsPolicy__title, .p-effort__title {
    font-size: 20px;
    letter-spacing: 2.0px;
    margin-bottom: 10px; }

  .p-p-sdgsPolicy {
    margin-bottom: 80px; } }
.p-privacy-policy .l-mv__container {
  background-image: url("/asset/images/privacy-policy/privacy-policy_mv.webp"); }

.l-section.p-privacy-policy {
  max-width: 960px;
  margin: 108px auto 148px;
  padding: 0px 100px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

.p-privacy-policy__item {
  margin-bottom: 40px; }

.p-privacy-policy_title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 2.4px;
  color: #005ab7;
  margin-bottom: 24px; }

.c-title__ja--br {
  display: none; }

.p-privacy-policy_text {
  font-size: 16px;
  line-height: 2.0;
  letter-spacing: 0.8px; }

.p-window__title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 1.44px;
  color: #212121;
  margin-bottom: 20px; }

.p-window_text {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.42px; }

@media screen and (max-width: 1300px) {
  .c-breadcrumb {
    padding: 20px 60px 0px; }

  .l-section.p-privacy-policy {
    padding: 0 60px; } }
@media screen and (max-width: 768px) {
  .p-privacy-policy .l-mv .c-title__ja {
    font-size: 36px; }

  .c-breadcrumb {
    padding: 10px 20px 0px; }

  .l-section.p-privacy-policy {
    margin: 80px auto 80px;
    padding: 0 20px; }

  .p-privacy-policy__item {
    margin-bottom: 48px; }

  .p-privacy-policy_title {
    font-size: 20px;
    letter-spacing: 2.0px;
    margin-bottom: 10px; }

  .p-privacy-policy_text {
    font-size: 14px;
    line-height: 2.0;
    letter-spacing: 0.7px; } }
@media screen and (max-width: 390px) {
  .c-title__ja--br {
    display: block; } }
.p-thanks .l-mv__container {
  background-image: url("/asset/images/thanks/thanks_mv.webp"); }

.c-intro.p-thanks {
  text-align: center;
  margin: 108px 0px 148px;
  padding: 0px 100px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

.p-thanks__content {
  margin-bottom: 80px; }

.p-thanks__title {
  font-family: YakuHanMP, "Noto Serif JP","Hiragino Mincho ProN",  "Yu Mincho", YuMincho, serif;
  font-size: 36px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 3.6px;
  margin-bottom: 32px; }
  .p-thanks__title span {
    color: #005AB7; }
  .p-thanks__title .intro_br {
    display: none; }

.p-thanks__text {
  line-height: 2.0;
  margin-bottom: 20px; }
  .p-thanks__text:last-of-type {
    margin-bottom: 0px; }

.btn_container.p-thanks {
  text-align: center; }
  .btn_container.p-thanks .btn {
    display: inline-block;
    background-color: #ffffff;
    border: solid 1px #005AB7;
    position: relative;
    -webkit-transition: .3s ease-in;
    transition: .3s ease-in; }
    .btn_container.p-thanks .btn::after {
      content: "";
      width: 10px;
      height: 10px;
      background-image: url("/asset/images/arrow_mainblue.svg");
      background-position: center center;
      background-repeat: no-repeat;
      position: absolute;
      top: calc(50% - 3px);
      right: 16px; }
    .btn_container.p-thanks .btn:hover {
      background-color: #005AB7; }
      .btn_container.p-thanks .btn:hover::after {
        background-image: url("/asset/images/arrow_white.svg"); }
    .btn_container.p-thanks .btn a {
      display: inline-block;
      text-align: center;
      padding: 13px 0px;
      width: 244px;
      max-height: 50px;
      color: #005AB7; }
      .btn_container.p-thanks .btn a:hover {
        color: #ffffff; }
        .btn_container.p-thanks .btn a:hover::after {
          background-image: url("/asset/images/main_cta_arrow2.png"); }

@media screen and (max-width: 1300px) {
  .c-breadcrumb {
    padding: 20px 60px 0px; }

  .c-intro.p-thanks {
    padding: 0 60px; } }
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    padding: 10px 20px 0px; }

  .c-intro.p-thanks {
    margin: 80px auto;
    padding: 0px 20px; }

  .p-thanks__content {
    margin-bottom: 40px; }

  .p-thanks__title {
    font-size: 28px;
    letter-spacing: 2.8px; }
    .p-thanks__title .intro_br {
      display: block; }

  .btn_container.p-thanks .btn:hover {
    background-color: #ffffff; }
    .btn_container.p-thanks .btn:hover::after {
      background-image: url("/asset/images/arrow_mainblue.svg"); }
  .btn_container.p-thanks .btn a {
    font-size: 14px;
    width: 164px;
    padding: 12px 0px; }
    .btn_container.p-thanks .btn a:hover {
      color: #005AB7; }
      .btn_container.p-thanks .btn a:hover::after {
        background-image: url("/asset/images/arrow_mainblue.svg"); } }
@media screen and (max-width: 600px) {
  .p-thanks__text {
    text-align: left; }

  .p-thanks__textBr {
    display: none; } }
.p-noEntory .l-mv__container {
  background-image: url("/asset/images/404/404_mv.webp"); }

.c-intro.p-noEntory {
  text-align: center;
  margin: 108px 0px 148px;
  padding: 0px 100px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

.p-noEntory__content {
  margin-bottom: 80px; }

.p-noEntory__title {
  font-family: YakuHanMP, "Noto Serif JP","Hiragino Mincho ProN",  "Yu Mincho", YuMincho, serif;
  font-size: 36px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 3.6px;
  margin-bottom: 32px; }
  .p-noEntory__title span {
    color: #005AB7; }

.p-noEntory__text {
  line-height: 2.0; }

.btn_container.p-noEntory {
  text-align: center; }
  .btn_container.p-noEntory .btn {
    display: inline-block;
    background-color: #ffffff;
    border: solid 1px #005AB7;
    position: relative;
    -webkit-transition: .3s ease-in;
    transition: .3s ease-in; }
    .btn_container.p-noEntory .btn::after {
      content: "";
      width: 10px;
      height: 10px;
      background-image: url("/asset/images/arrow_mainblue.svg");
      background-position: center center;
      background-repeat: no-repeat;
      position: absolute;
      top: calc(50% - 3px);
      right: 16px; }
    .btn_container.p-noEntory .btn:hover {
      background-color: #005AB7; }
      .btn_container.p-noEntory .btn:hover::after {
        background-image: url("/asset/images/arrow_white.svg"); }
    .btn_container.p-noEntory .btn a {
      display: inline-block;
      text-align: center;
      padding: 13px 0px;
      width: 244px;
      max-height: 50px;
      color: #005AB7; }
      .btn_container.p-noEntory .btn a:hover {
        color: #ffffff; }
        .btn_container.p-noEntory .btn a:hover::after {
          background-image: url("/asset/images/main_cta_arrow2.png"); }

@media screen and (max-width: 1300px) {
  .c-breadcrumb {
    padding: 20px 60px 0px; }

  .c-intro.p-nopEntory {
    padding: 0 60px; } }
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    padding: 10px 20px 0px; }

  .c-intro.p-noEntory {
    margin: 80px auto;
    padding: 0 20px; }

  .p-noEntory__content {
    margin-bottom: 40px; }

  .p-noEntory__title {
    font-size: 28px;
    letter-spacing: 2.8px; }

  .btn_container.p-noEntory .btn:hover {
    background-color: #ffffff; }
    .btn_container.p-noEntory .btn:hover::after {
      background-image: url("/asset/images/arrow_mainblue.svg"); }
  .btn_container.p-noEntory .btn a {
    font-size: 14px;
    width: 164px;
    padding: 12px 0px; }
    .btn_container.p-noEntory .btn a:hover {
      color: #005AB7; }
      .btn_container.p-noEntory .btn a:hover::after {
        background-image: url("/asset/images/arrow_mainblue.svg"); } }
@media screen and (max-width: 460px) {
  .p-noEntory__text {
    text-align: left; } }

/*# sourceMappingURL=style.css.map */