@charset "UTF-8";
/* base
=========================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&family=Roboto:wght@500;700&family=Rubik:wght@500;700&display=swap");
* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  line-height: unset;
  font-display: swap;
}

body {
  width: 100%;
  color: #1d1d1d;
  -webkit-text-size-adjust: 100%;
  position: relative;
  overflow: hidden;
}

html {
  font-size: 62.5%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

a {
  display: block;
  text-decoration: none;
  color: #1d1d1d;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

li {
  list-style-type: none;
}

.container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1080px) {
  .container {
    max-width: 94%;
  }
}

.sub_container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1080px) {
  .sub_container {
    max-width: 94%;
  }
}

img {
  display: block;
  max-width: 100%;
	height:auto;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.6;
}

.di {
  display: inline-block;
}

/* device-only
=========================================== */
.pc-only1 {
  display: block;
}
@media (max-width: 767px) {
  .pc-only1 {
    display: none;
  }
}

.sp-only1 {
  display: none;
}
@media (max-width: 767px) {
  .sp-only1 {
    display: block;
  }
}

.pc-only2 {
  display: block;
}
@media (max-width: 520px) {
  .pc-only2 {
    display: none;
  }
}

.sp-only2 {
  display: none;
}
@media (max-width: 520px) {
  .sp-only2 {
    display: block;
  }
}

.pc-only3 {
  display: block;
}
@media (max-width: 993px) {
  .pc-only3 {
    display: none;
  }
}

.sp-only3 {
  display: none;
}
@media (max-width: 993px) {
  .sp-only3 {
    display: block;
  }
}

/* font
=========================================== */
html {
  font-size: 62.5%;
}

body, p {
  font-size: 16px;
  font-size: 1.6rem; /* 16px*/
  line-height: 1.8;
  font-weight: 500;
}
@media (max-width: 767px) {
  body, p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.en {
  font-family: "Rubik", sans-serif;
}

.roboto {
  font-family: "Roboto", sans-serif;
  line-height: 1.8em;
}

span.line {
  background: -webkit-linear-gradient(transparent 70%, #FFEB3B 70%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #FFEB3B));
  background: linear-gradient(transparent 70%, #FFEB3B 70%);
  position: relative;
  display: inline;
}

p.text {
  margin-bottom: 20px;
}

/* iOS reset
=========================================== */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]:-webkit-search-decoration,
input[type=button]:-webkit-search-decoration {
  display: none;
}

input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

/* clearfix
=========================================== */
.clearfix:before,
.clearfix:after {
  content: "";
  display: block;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.left {
  float: left;
}

.right {
  float: right;
}

/* link
=========================================== */
a {
  text-decoration: none;
}
a:hover, a:link, a:active {
  text-decoration: none;
}

a.link {
  text-decoration: none;
  color: #F6F6F6;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding-bottom: 3px;
  line-height: 1.4;
  position: relative;
  display: inline-block;
}
a.link:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #FFFFFF;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 1;
}
a.link:hover {
  color: #FFFFFF;
  opacity: 0.8;
}
a.link:hover:before {
  opacity: 1;
}

.linkBox {
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding-bottom: 0;
}
.linkBox:before {
  display: none;
}
.linkBox:hover {
  color: #FFFFFF;
}

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

a > img {
  opacity: 1;
}
a > img:hover {
  opacity: 0.9;
}

/* btn
=========================================== */
.btn {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
}
.btn:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #FFFFFF;
  border: 1px solid #E60012;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
  color: #E60012;
}
.btn:hover {
  color: #E60012;
}
.btn:hover:before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  color: #E60012;
}

.btn01 {
  border: 1px solid #E60012;
  color: #E60012;
}
.btn01:before {
  background: #E60012;
  color: #fff;
}
.btn01:hover {
  color: #fff;
}
.btn01:hover:before {
  color: #fff;
}

.btn02 {
  background: #E60012;
  color: #fff;
}
.btn02:before {
  background: #fff;
  border: 1px solid #E60012;
  color: #E60012;
}
.btn02:hover {
  color: #E60012;
}
.btn02:hover:before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  color: #E60012;
}

/* flexbox
=========================================== */
.flex {
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.flex.flex-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .flex.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media only screen and (max-width: 767px) {
  .spFlexRow {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
/* grid
=========================================== */
.grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 767px) {
  .grid {
    grid-template-rows: 2fr;
    grid-template-columns: 1fr;
  }
}

/* section
=========================================== */
section {
  padding: 100px 0;
}
@media (max-width: 767px) {
  section {
    padding: 60px 0;
  }
}

/* header
=========================================== */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 60px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  #header {
    height: 55px;
  }
}

.header_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  position: initial;
}

.header_logo {
  display: none;
  width: 123px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .header_logo {
    max-width: 113px;
  }
}
.header_logo a {
  width: 100%;
}
.header_logo .logo-none {
  opacity: unset;
}

.header_nav {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: -140%;
  width: 72%;
  height: 100vh;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  padding-top: 70px;
  z-index: 1000;
}
@media (max-width: 993px) {
  .header_nav {
    background: #fff;
    width: 100%;
  }
}
.header_nav .header_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 30px;
  gap: 20px;
  margin-bottom: 80px;
}
@media (max-width: 993px) {
  .header_nav .header_btn {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 25px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .header_nav .header_btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 30px;
  }
}
.header_nav .header_btn a {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
.header_nav .header_btn .btn01 {
  max-width: 161px;
  width: 100%;
  height: 48px;
}
.header_nav .header_btn .btn02 {
  max-width: 161px;
  width: 100%;
  position: relative;
  padding-right: 10px;
  height: 48px;
}
.header_nav .header_btn .btn02:before {
  background: #F6F6F6;
}
.header_nav .header_btn .btn02:after {
  content: "";
  position: absolute;
  background: url(/wp-content/uploads/common/open_icon.svg);
  width: 16px;
  height: 16px;
  top: 15px;
  left: 75%;
}
.header_nav .header_btn .btn02:hover:after {
  content: "";
  position: absolute;
  background: url(/wp-content/uploads/common/open_icon_hover.svg);
}

.header_content {
  background: #fff;
  max-width: 960px;
  width: 100%;
  height: 100%;
  margin: 0 0 0 auto;
  position: absolute;
  right: 0;
  top: 0;
}

.header_active {
  max-width: 670px;
  width: 100%;
  margin: 130px auto 0;
}
@media (max-width: 1080px) {
  .header_active {
    width: 96%;
  }
}
@media (max-width: 993px) {
  .header_active {
    width: 88%;
    padding-bottom: 100px;
  }
}

.nav_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media (max-width: 993px) {
  .nav_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 520px) {
  .nav_content {
    gap: 20px;
  }
}

.nav_wrapper .nav_title {
  font-size: 3.6rem;
  color: #E60012;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media (max-width: 993px) {
  .nav_wrapper .nav_title {
    margin-bottom: 16px;
  }
}
@media (max-width: 520px) {
  .nav_wrapper .nav_title {
    margin-bottom: 10px;
  }
}
.nav_wrapper .nav_item {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: left;
  margin-bottom: 12px;
}
.nav_wrapper .nav_item a {
  display: inline-block;
}
.nav_wrapper .nav_item a:hover {
  opacity: 0.7;
}
.nav_wrapper .nav_item:last-child {
  margin-bottom: 0;
}
.nav_wrapper .line {
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 8px;
}

.header_nav.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  right: 0;
  left: auto;
}
@media (max-width: 993px) {
  .header_nav.active {
    overflow-y: scroll;
  }
}

body.active {
  height: 100%;
  overflow: hidden;
  overflow-y: hidden;
}

#header.js-fixed {
  position: fixed;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

#header.display-non {
  display: none;
}

/*humburger
=========================================== */
.btn_open {
  display: block;
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 40px;
  z-index: 1001;
}
@media (max-width: 767px) {
  .btn_open {
    width: 35px;
    height: 30px;
  }
}

.header-button {
	margin: 0 20px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 4px 10px;
    border-radius: 100px;
}
.header-button:after {
	content: "";
    background: url(/wp-content/uploads/common/open_icon_black.svg);
    width: 16px;
    height: 16px;
	margin-left: 5px;
}

/* ----- ここまで ----- */
/*ボタン内側*/
.btn_open {
  margin-top: 5px;
}
.btn_open span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 0;
  height: 5px;
  border-radius: 2.5px;
  background: #333;
  width: 100%;
}
@media (max-width: 767px) {
  .btn_open span {
    height: 4px;
  }
}
.btn_open span:nth-of-type(1) {
  top: 0;
}
.btn_open span:nth-of-type(2) {
  top: 13px;
}
.btn_open span:nth-of-type(3) {
  top: 26px;
}

/*activeクラスが付与されると線が回転して×に*/
.btn_open.active {
  width: 40px;
  height: 55px;
}
.btn_open.active span:nth-of-type(1) {
  top: 18px;
  left: -10px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 100%;
}
.btn_open.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.btn_open.active span:nth-of-type(3) {
  top: 30px;
  left: -10px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 100%;
}

.overlay {
  position: fixed;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* footer
=========================================== */
#footer {
  position: relative;
  padding: 80px 0 0;
  background: #F6F6F6;
}
@media only screen and (max-width: 767px) {
  #footer {
    padding: 40px 0 0;
  }
}
#footer .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}
@media only screen and (max-width: 993px) {
  #footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  #footer .container {
    display: block;
  }
}
#footer a, #footer p {
  font-size: 1.4rem;
}
#footer .copy {
  background: #1F2024;
  text-align: center;
  font-size: 1.1rem;
  color: #fff;
}
@media (max-width: 767px) {
  #footer .copy {
    padding: 23px 0;
  }
}
#footer .copy .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}
@media only screen and (max-width: 993px) {
  #footer .copy .container {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
}
@media only screen and (max-width: 767px) {
  #footer .copy .container {
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#footer .copy .other {
  margin: 22px 0;
}
@media (max-width: 767px) {
  #footer .copy .other a {
    margin-bottom: 10px;
  }
}
#footer .copy .other a span {
  font-size: 1.2rem;
  color: #fff;
  position: relative;
}
#footer .copy .other a span:before {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 6px;
  left: -20px;
}
#footer .copy .company {
  text-transform: capitalize;
  margin: 22px 0;
}
#footer .copy .company span {
  text-transform: uppercase;
}
#footer .footer_info {
  text-align: center;
  width: 40%;
}
@media only screen and (max-width: 993px) {
  #footer .footer_info {
    margin-bottom: 60px;
    width: 100%;
  }
}
#footer .footer_info .footer_info_logo {
  margin-bottom: 20px;
}
#footer .footer_info .footer_info_logo a {
  display: block;
  width: 200px;
  margin: 0 auto 0 0;
}
@media (max-width: 993px) {
  #footer .footer_info .footer_info_logo a {
    margin: 0 auto;
  }
}
@media (max-width: 993px) {
  #footer .footer_info .footer_info_logo a > img {
    margin: 0 auto;
  }
}
#footer .footer_info .footer_info_access {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  text-align: left;
}
@media (max-width: 993px) {
  #footer .footer_info .footer_info_access {
    text-align: center;
  }
}
#footer .footer_info .footer_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  gap: 20px;
}
@media (max-width: 993px) {
  #footer .footer_info .footer_btn {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  #footer .footer_info .footer_btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 30px;
  }
}
#footer .footer_info .footer_btn a {
  font-size: 1.4rem;
  font-weight: bold;
}
#footer .footer_info .footer_btn .btn01 {
  max-width: 161px;
  width: 100%;
  height: 48px;
}
#footer .footer_info .footer_btn .btn02 {
  max-width: 161px;
  width: 100%;
  position: relative;
  padding-right: 10px;
  height: 48px;
}
#footer .footer_info .footer_btn .btn02:before {
  background: #F6F6F6;
}
#footer .footer_info .footer_btn .btn02:after {
  content: "";
  position: absolute;
  background: url(/wp-content/uploads/common/open_icon.svg);
  width: 16px;
  height: 16px;
  top: 15px;
  left: 75%;
}
#footer .footer_info .footer_btn .btn02:hover:after {
  content: "";
  position: absolute;
  background: url(/wp-content/uploads/common/open_icon_hover.svg);
}
#footer .footer_sitemap {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
  width: 60%;
}
@media (max-width: 993px) {
  #footer .footer_sitemap {
    margin-bottom: 40px;
    width: 100%;
  }
}
@media (max-width: 993px) {
  #footer .footer_sitemap .sitemap_list {
    width: 31%;
  }
}
@media (max-width: 767px) {
  #footer .footer_sitemap .sitemap_list {
    width: 100%;
  }
}
#footer .footer_sitemap .sitemap_item .sitemap_item_title {
  display: inline-block;
  width: 100%;
  border-bottom: solid 1px #CCCCCC;
  padding-bottom: 12px;
}
@media (max-width: 767px) {
  #footer .footer_sitemap .sitemap_item .sitemap_item_title {
    padding-bottom: 0;
  }
}
#footer .footer_sitemap .sitemap_item .sitemap_item_title a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  #footer .footer_sitemap .sitemap_item .sitemap_item_title a {
    padding: 12px 0;
  }
}
#footer .footer_sitemap .sitemap_item .pc {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  #footer .footer_sitemap .sitemap_item .pc {
    border-bottom: solid 1px #CCCCCC;
  }
}
#footer .footer_sitemap .sitemap_item .pc a {
  padding-bottom: 12px;
}
@media (max-width: 767px) {
  #footer .footer_sitemap .sitemap_item .pc a {
    padding: 12px 0;
  }
}
#footer .footer_sitemap .sitemap_item_under {
  padding-bottom: 12px;
}
#footer .footer_sitemap .sitemap_item_under > a:hover {
  opacity: 0.7;
}
#footer .footer_sitemap .sitemap_item_under:first-child {
  padding: 12px 0;
}
#footer .footer_slider {
  max-width: 100%;
  margin: 0 auto 80px;
  border-top: 1px solid #CCCCCC;
}
@media (max-width: 767px) {
  #footer .footer_slider {
    border-top: none;
  }
}
#footer .footer_slider p {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin: 36px 0 30px;
}

/* pagetop
=========================================== */
#page-top {
  cursor: pointer;
  right: 4%;
  top: -28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #E60012;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  z-index: 1000;
}
#page-top:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  opacity: 0.7;
}
@media (max-width: 520px) {
  #page-top {
    width: 40px;
    height: 40px;
    right: 6%;
  }
}
#page-top:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 4px;
  height: 17.5px;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 10px;
  top: 20px;
  left: 23px;
}
@media (max-width: 520px) {
  #page-top:before {
    height: 13.5px;
    top: 12px;
    left: 14px;
  }
}
#page-top:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 4px;
  height: 18px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-radius: 10px;
  top: 20px;
  left: 33px;
}
@media (max-width: 520px) {
  #page-top:after {
    height: 14px;
    top: 12px;
    left: 22px;
  }
}

.page-top-diplay {
  display: none;
  opacity: 0;
}

/* accordion
=========================================== */
.js-accordion-title {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}
.js-accordion-title:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 15px;
  height: 2px;
  /*縦線に*/
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: #333;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.js-accordion-title:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  /*横線*/
  width: 15px;
  height: 2px;
  background: #333;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.js-accordion-title.open:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.js-accordion-title.open:after {
  opacity: 0;
}

.accordion-content {
  display: none;
}

@media only screen and (max-width: 767px) {
  .js-accordion-title_sp {
    cursor: pointer;
    position: relative;
    padding-right: 50px;
  }
  .js-accordion-title_sp:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 39%;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #1D1D1D;
    border-right: solid 2px #1D1D1D;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .js-accordion-title_sp.open:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 30%;
  }
  .accordion-content_sp {
    display: none;
    margin-top: 12px;
  }
}
/* title
=========================================== */
.section_title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.6;
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .section_title {
    font-size: 2.4rem;
  }
}
.section_title:before {
  position: absolute;
  color: #E60012;
  font-family: "Rubik", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .section_title:before {
    font-size: 1.8rem;
  }
}

#title {
  position: relative;
  margin-top: 60px;
  padding: 0;
  height: 440px;
}
@media (max-width: 767px) {
  #title {
    height: 217px;
    margin-top: 55px;
    margin-bottom: 70px;
  }
}
@media (max-width: 520px) {
  #title {
    margin-bottom: 35px;
  }
}
#title::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 280px;
  background-repeat: repeat;
  background-color: #fff;
  background-image: -webkit-radial-gradient(#CCCCCC 10%, transparent 15%);
  background-image: radial-gradient(#CCCCCC 10%, transparent 15%);
  background-size: 20px 20px;
  top: -19%;
}
@media (min-width: 1367px) {
  #title::before {
    width: 680px;
  }
}
@media (max-width: 767px) {
  #title::before {
    display: none;
  }
}
#title .title {
  height: 100%;
  position: relative;
}
#title .page_title {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  #title .page_title {
    top: auto;
    bottom: -33%;
    -webkit-transform: none;
            transform: none;
  }
}
@media (max-width: 520px) {
  #title .page_title {
    bottom: -17%;
  }
}
#title .page_title .main_title {
  width: 100%;
  font-size: 6.4rem;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
  display: inline-block;
  padding: 8px 24px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  #title .page_title .main_title {
    font-size: 4rem;
  }
}
@media (max-width: 520px) {
  #title .page_title .main_title {
    font-size: 3.2rem;
    padding: 4px 8px;
  }
}
#title .page_title .sub_title {
  font-size: 2.8rem;
  color: #E60012;
  font-weight: bold;
  line-height: 1.2;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (max-width: 767px) {
  #title .page_title .sub_title {
    font-size: 2.3rem;
  }
}
@media (max-width: 520px) {
  #title .page_title .sub_title {
    font-size: 1.8rem;
  }
}
#title .title_bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  height: 100%;
  border-radius: 10px 0 0 10px;
  width: 72%;
  top: 0;
  right: 0;
}
@media (max-width: 767px) {
  #title .title_bg {
    background-size: cover;
    background-position: center;
    border-radius: 0;
    width: 100%;
  }
}
@media (max-width: 520px) {
  #title .title_bg {
    height: 90%;
  }
}

/* sec_title
=========================================== */
#sec_title {
  background: #F6F6F6;
  margin: 60px 0 0;
  padding: 0;
  height: 273px;
}
@media (max-width: 767px) {
  #sec_title {
    height: 200px;
  }
}
#sec_title .container {
  position: relative;
}
#sec_title .sec_title {
  text-align: center;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}
#sec_title span {
  font-size: 5.4rem;
  color: #E60012;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  #sec_title span {
    font-size: 4rem;
  }
}
@media (max-width: 520px) {
  #sec_title span {
    font-size: 3.2rem;
  }
}
#sec_title h1 {
  color: #E60012;
  font-size: 2.4rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  #sec_title h1 {
    font-size: 2rem;
  }
}
@media (max-width: 520px) {
  #sec_title h1 {
    font-size: 1.8rem;
  }
}

/* text-link-hover
=========================================== */
.txtLink:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}

/* フェードインアニメーション
=========================================== */
button {
  display: block;
}

.fadeIn {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  overflow: hidden;
  padding: 10px;
  position: relative;
  display: inline-block;
}

.fadeIn:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #E60012;
  position: absolute;
  left: -100%;
  bottom: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: -1;
}

.fadeIn span {
  font-family: "Rubik", sans-serif;
  display: inline-block;
  margin-left: -300%;
  -webkit-transition-property: margin-left;
  transition-property: margin-left;
  color: #fff;
}

.fadeIn.slide_on::before {
  left: 0;
}

.fadeIn.slide_on span {
  margin-left: 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

/* dot背景
=========================================== */
.dot_bg {
  position: relative;
}
.dot_bg:after {
  content: "";
  position: absolute;
  width: 480px;
  height: 385px;
  background-repeat: repeat;
  background-image: -webkit-radial-gradient(#CCCCCC 10%, transparent 15%);
  background-image: radial-gradient(#CCCCCC 10%, transparent 15%);
  background-size: 20px 20px;
  z-index: -2;
}

/* top_section_title
=========================================== */
.top_section_title {
  text-align: left;
  position: relative;
  font-size: 3.2rem;
  color: #E60012;
  display: block;
  padding-top: 60px;
  margin-bottom: 60px;
  z-index: 1;
}
@media (max-width: 767px) {
  .top_section_title {
    font-size: 2rem;
    padding-top: 20px;
    margin-bottom: 30px;
  }
}
.top_section_title:before {
  text-transform: uppercase;
  position: absolute;
  font-size: 12.2rem;
  color: #F6F6F6;
  font-family: "Rubik", sans-serif;
  font-weight: bold;
  line-height: 1;
  z-index: -1;
  left: 0;
  top: 0;
}
@media (max-width: 767px) {
  .top_section_title:before {
    font-size: 5rem;
  }
}

/* bread
=========================================== */
.bread {
  margin-bottom: 20px;
}
.bread .container {
  -webkit-box-pack: start !important;
  -webkit-justify-content: start !important;
      -ms-flex-pack: start !important;
          justify-content: start !important;
  margin-top: 60px;
  margin-bottom: 20px;
}
.bread ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.bread li {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
  position: relative;
  display: inline-block;
  padding: 0 12px;
}
@media (max-width: 520px) {
  .bread li {
    font-size: 1.1rem;
  }
}
.bread li:after {
  content: "";
  position: absolute;
  border-top: 1px solid #1D1D1D;
  border-right: 1px solid #1D1D1D;
  height: 5px;
  width: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 0;
  bottom: 6px;
}
.bread li:first-child {
  padding-left: 0;
}
.bread li:last-child {
  padding-right: 0;
}
.bread li:last-child:after {
  content: none;
}
.bread a:hover {
  opacity: 0.7;
}

/* pager
=========================================== */
.pager .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
}
.pager a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1D1D1D;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  width: 44px;
  height: 44px;
}
.pager .current {
  background: #E60012;
  border-radius: 100%;
  width: 44px;
  height: 44px;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.pager .next, .pager .prev {
  background: none;
  position: relative;
  width: 44px;
  height: 44px;
}
.pager .next:before, .pager .prev:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 3px;
  height: 14px;
  background: #1D1D1D;
  border-radius: 10px;
  bottom: 20px;
}
.pager .next:after, .pager .prev:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 3px;
  height: 14px;
  background: #1D1D1D;
  border-radius: 10px;
  bottom: 11px;
}
.pager .prev:before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.pager .prev:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.pager .next:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.pager .next:after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* news一覧三つ
=========================================== */
.news_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 20px;
  position: relative;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 767px) {
  .news_content {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.news_content a {
  max-width: 30%;
  height: 100%;
}
@media (max-width: 767px) {
  .news_content a {
    max-width: 280px;
  }
}
.news_content a .news_img {
  position: relative;
}
.news_content a .news_img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 210px;
  width: 100%;
  margin-bottom: 16px;
}
.news_content a .news_img .mini_cate {
  position: absolute;
  background: #E60012;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 7px 14px;
  bottom: 0;
  line-height: 1.4;
}
.news_content a .news_title {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: left;
  word-wrap: break-word;
  margin-bottom: 10px;
}
.news_content a .post {
  font-size: 1.4rem;
  word-wrap: break-word;
  text-align: left;
}
.news_content .slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.news_content .slick-slide {
  height: auto !important;
}

/* news card
=========================================== */
.list_content {
  margin-bottom: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 36px;
}
@media (max-width: 993px) {
  .list_content {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .list_content {
    margin-bottom: 40px;
    gap: 30px;
  }
}

.one_content {
  width: 31%;
  background: #fff;
  -webkit-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}
@media (max-width: 1080px) {
  .one_content {
    width: 47%;
  }
}
@media (max-width: 767px) {
  .one_content {
    width: 70%;
  }
}
@media (max-width: 520px) {
  .one_content {
    width: 90%;
  }
}
.one_content:hover {
  opacity: 0.7;
}
.one_content .news_img {
  padding: 31%;
  background-position: 50%;
  background-size: cover;
  border-radius: 5px 5px 0 0;
  background-repeat: no-repeat;
}
.one_content .news_inner {
  padding: 16px 20px 30px;
}
.one_content .other {
  margin-bottom: 10px;
}
.one_content .news_text {
  border-radius: 5px;
}
.one_content h2, .one_content h4 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  margin-bottom: 14px;
  min-height: 6rem;
  max-height: 6rem;
}
.one_content .news_text p {
  font-size: 1.4rem;
  min-height: 5.25rem;
  max-height: 5.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}

.date {
  font-size: 1.4rem;
  color: #B5B5B5;
  display: inline-block;
  margin-right: 10px;
}

.cate {
  font-size: 1.2rem;
  color: #fff;
  background: #E60012;
  padding: 4px 6px;
  display: inline-block;
}

/* job_subsection_title(事業紹介詳細)
=========================================== */
.job_subsection_title {
  font-size: 3rem;
  color: #E60012;
  margin-bottom: 60px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .job_subsection_title {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
@media (max-width: 520px) {
  .job_subsection_title {
    font-size: 1.8rem;
  }
}

/* job_branch_box
=========================================== */
.job_branch_box {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 21px;
}
.job_branch_box:after {
  content: "";
  display: block;
  width: 711px;
}
@media (max-width: 993px) {
  .job_branch_box:after {
    width: 48%;
  }
}

.branch_one {
  background: #F6F6F6;
  border-radius: 10px;
  padding: 20px;
  width: 32%;
}
@media (max-width: 993px) {
  .branch_one {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .branch_one {
    padding: 16px;
    width: 100%;
  }
}

.branch_name {
  border-bottom: 1px solid #E60012;
  padding-bottom: 14px;
  position: relative;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  .branch_name {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.branch_name:before {
  content: "";
  position: absolute;
  border-bottom: 1px solid #CCCCCC;
  width: 70%;
  right: 0;
  bottom: -1px;
}
@media (max-width: 767px) {
  .branch_name:before {
    content: none;
  }
}
@media (max-width: 767px) {
  .branch_name:after {
    top: 28%;
  }
}
.branch_name > h4 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
  display: inline-block;
  margin-right: 12px;
}
.branch_name > a {
  text-transform: uppercase;
  background: #E60012;
  border-radius: 21px;
  padding: 0px 10px;
  display: inline-block;
  vertical-align: text-top;
  text-align: center;
}
.branch_name > a > .roboto {
  color: #fff;
  font-size: 1.4rem;
  position: relative;
  padding-right: 15px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.branch_name > a > .roboto:after {
  content: "";
  position: absolute;
  background: url(/wp-content/uploads/staffing/icon_map.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  -webkit-filter: invert(0) brightness(1);
          filter: invert(0) brightness(1);
  right: -2px;
  top: 4px;
}

.branch_info {
  width: 100%;
}
@media (max-width: 767px) {
  .branch_info {
    margin-top: 24px;
  }
}
.branch_info tr {
  border-bottom: none;
}
.branch_info th, .branch_info td {
  font-size: 1.6rem;
  text-align: left;
  padding-bottom: 14px;
  margin-bottom: 0;
  line-height: 1.6;
}
.branch_info th {
  width: 20%;
}
.branch_info td {
  width: 80%;
}
.branch_info tr:last-child th, .branch_info tr:last-child td {
  padding-bottom: 0;
}

/* lineup-carousel
=========================================== */
.lineup-carousel {
  z-index: 100;
}