@charset "UTF-8";
/* 変数の定義
--------------------------------------------------*/
/* reset
--------------------------------------------------*/
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, svg, a, table, tr, th, td, figure {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font: inherit;
}

body, p {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
@media screen and (min-width: 769px) {
  body, p {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

h1, h2, h3, h4 {
  line-height: 1.2;
}
@media screen and (min-width: 769px) {
  h1, h2, h3, h4 {
    line-height: 1.4;
  }
}

article, header, footer, aside, figure, figcaption, nav, section {
  display: block;
}

ol, ul, li {
  list-style: none;
}

a {
  text-decoration: none;
  opacity: 1;
  transition: all 0.3s ease-out;
  cursor: pointer;
  word-break: break-all;
}

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

:focus {
  border-style: none;
  outline: none;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

article {
  overflow-wrap: break-word;
}

/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 色の定義
--------------------------------------------------*/
/* テキストパーツ
--------------------------------------------------*/
.white {
  color: #fff;
}

.black {
  color: #191919;
}

/* フォントの定義
--------------------------------------------------*/
html {
  font-size: 10px;
}

body, ul, ol, dl, li, dt, dd, p, div, span, img, svg, a, table, tr, th, td, figure, select, input, textarea {
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #1f2023;
}
@media screen and (max-width: 768px) {
  body, ul, ol, dl, li, dt, dd, p, div, span, img, svg, a, table, tr, th, td, figure, select, input, textarea {
    font-size: 1.5rem;
  }
}

h1, h2, h3, h4 {
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #1f2023;
}

/* 下層メインビジュアル
--------------------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/*----------------------------------------*/
.header_logo {
  width: 25%;
  max-width: 50px;
}
@media screen and (max-width: 768px) {
  .header_logo {
    max-width: 50px;
    width: 50%;
  }
}

.header {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1199px) {
  .header {
    padding: 1.25vw 0;
  }
}
@media screen and (max-width: 768px) {
  .header {
    background-color: rgb(255, 255, 255);
    padding: 15px 0;
  }
}
.header .pc_header_inner {
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .header .pc_header_inner {
    padding: 0 2%;
  }
}
@media screen and (max-width: 768px) {
  .header .pc_header_inner {
    padding: 0 0 0 20px;
  }
}
.header .pc_nav {
  display: block;
}
@media screen and (max-width: 768px) {
  .header .pc_nav {
    display: none;
  }
}
.header ul {
  display: flex;
  align-items: center;
}
.header ul li {
  margin-right: 40px;
}
@media screen and (max-width: 1199px) {
  .header ul li {
    margin-right: 3vw;
  }
}
.header ul li:last-of-type {
  margin-right: 0;
}
.header ul li .contact_btn {
  background-color: #191919;
  color: #fff;
  width: 248px;
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid #191919;
}
.header ul li .contact_btn:hover {
  background-color: #fff;
  color: #191919;
}
@media screen and (max-width: 1199px) {
  .header ul li .contact_btn {
    width: 17vw;
    font-size: 15px;
  }
}
.header ul li .pc_link, .header ul li .current {
  position: relative;
  transition: 0.3s;
}
.header ul li .pc_link::after, .header ul li .current::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: -5px;
  left: 0;
  /*線の形状*/
  width: 100%;
  height: 2px;
  background: #191919;
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: center top; /*上部中央基点*/
}
.header ul li .pc_link:hover, .header ul li .current:hover {
  color: #191919;
}
.header ul li .pc_link:hover::after, .header ul li .current:hover::after {
  transform: scale(1, 1); /*X方向にスケール拡大*/
}
@media screen and (max-width: 1199px) {
  .header ul li .pc_link, .header ul li .current {
    font-size: 15px;
  }
}
.header ul li .current {
  color: #191919;
}
.header ul li .current::after {
  transform: scale(1, 1); /*X方向にスケール拡大*/
}

/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/*---------------------------------------*/
.footer .footer_bg {
  width: 100%;
  height: 450px;
  background-image: url(../img/common/footer_ph.webp);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .footer .footer_bg {
    height: 320px;
  }
}
.footer .footer_contact {
  background-color: #f2f4f8;
  padding: 40px 0 60px;
  border-bottom: 1px solid #dcdfe9;
}
.footer .footer_contact h3 {
  font-size: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer .footer_contact h3 {
    font-size: 32px;
  }
}
.footer .footer_contact .btn {
  width: 440px;
  margin-top: 20px;
}
.footer .footer_contact .btn::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .footer .footer_contact .btn {
    font-size: 15px;
    width: 90%;
    padding: 0 10px;
    text-align: center;
  }
}
.footer .footer_lower {
  padding: 40px 0 60px;
  width: 90%;
  max-width: 980px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .footer .footer_lower {
    padding: 40px 0 20px;
  }
}
.footer .footer_lower .footer_nav_wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer .footer_lower .footer_nav_wrapper {
    display: block;
  }
}
.footer .footer_lower .footer_nav_wrapper .info .logo {
  width: 50px;
}
@media screen and (max-width: 768px) {
  .footer .footer_lower .footer_nav_wrapper .info .logo {
    width: 50%;
    max-width: 50px;
  }
}
.footer .footer_lower .footer_nav_wrapper .info .adress {
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .footer .footer_lower .footer_nav_wrapper .info .adress {
    margin: 15px auto;
  }
}
.footer .footer_lower .footer_nav_wrapper .info small {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .footer .footer_lower .footer_nav_wrapper .info small {
    font-size: 10px;
  }
}
.footer .footer_lower .footer_nav_wrapper .footer_nav {
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer .footer_lower .footer_nav_wrapper .footer_nav {
    display: none;
  }
}
.footer .footer_lower .footer_nav_wrapper .footer_nav a {
  font-size: 18px;
  display: block;
  transition: 0.3s;
}
.footer .footer_lower .footer_nav_wrapper .footer_nav a:hover {
  color: #191919;
}
.footer .footer_lower .footer_nav_wrapper .footer_nav .pc_link {
  margin-bottom: 5px;
}
.footer .footer_lower .footer_nav_wrapper .footer_nav .left {
  margin-right: 40px;
}
.footer .footer_lower .footer_nav_wrapper .footer_nav .left .sub_nav a {
  color: #b5b8c0;
  font-size: 12px;
  padding-left: 20px;
  position: relative;
  transition: 0.3s;
}
.footer .footer_lower .footer_nav_wrapper .footer_nav .left .sub_nav a::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #191919;
  left: 5px;
  top: 50%;
  transform: translateX(-50%);
}
.footer .footer_lower .footer_nav_wrapper .footer_nav .left .sub_nav a:hover {
  color: #191919;
}

/* 流用パーツ
--------------------------------------------------*/
.lg_none {
  display: none;
}
@media screen and (max-width: 999px) {
  .lg_none {
    display: block;
  }
}

.sp_none {
  display: block;
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

.sp_none_space {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .sp_none_space {
    display: none;
  }
}

.pc_none {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

.pc-view {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc-view {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 850px) {
  .pc-view.blank {
    display: none;
  }
}

.sp-view {
  display: block;
}
@media screen and (min-width: 769px) {
  .sp-view {
    display: none;
  }
}

.pc-nav-view {
  display: block;
}
@media screen and (max-width: 999px) {
  .pc-nav-view {
    display: none;
  }
}

.lg_br {
  display: none;
}
@media screen and (max-width: 999px) {
  .lg_br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .lg_br {
    display: none;
  }
}

.sm_br {
  display: none;
}
@media screen and (max-width: 413px) {
  .sm_br {
    display: block;
  }
}

.t_blue {
  color: #191919;
}

/* ボタン
--------------------------------------------------*/
.btn {
  width: 90%;
  max-width: 398px;
  height: 78px;
  display: flex;
  background-color: #191919;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  position: relative;
  margin: auto;
  border: 1px solid #191919;
  transition: 0.3s;
}
.btn::after {
  content: "";
  height: 10px;
  width: 22px;
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: 0.3s;
  background: #fff;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='44' height='20' viewBox='0 0 22 10'%3E%3Cimage id='_200_arrow_blue.svg' data-name='200%25 arrow_blue.svg' width='22' height='10' xlink:href='data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAAUCAYAAAD7s6+GAAAA7UlEQVRIidXWMUoDQRSA4W/MHiGIqL0g2kSIZUAsvcDcQDyERSpPIN4gtwjMAZxGsBbBbq8gWLgpRHYzVWbzd2+Z4mPZeSyViylPYsrNtnMHu8D0FVM+wic+YsqXQ2erQnGGY5xgPYStCl0tZgkv3Tg1gK39RuFBATbslNRTTDngGffdoxY3q8XsbXNmFFC2Y0cDZRgbYsqHOK+m+1/AE+bd3GLe4BWntVQFTfE4hltfVIMrXGNS2bIpYImLbm6x3J/LVI/1t71YT3ux8EuQVIaWIqn/U3KrAMnveqrZO77wjbs+5CiKKYfuExjsB0bmWtSBJQHuAAAAAElFTkSuQmCC'/%3E%3C/svg%3E%0A");
}
.btn:hover {
  background-color: #fff;
  color: #191919;
}
.btn:hover::after {
  background: #191919;
  right: 15px;
}
@media screen and (max-width: 768px) {
  .btn:hover {
    background-color: #191919;
    color: #fff;
  }
  .btn:hover::after {
    right: 20px;
    background: #fff;
  }
}

/* 見出し
--------------------------------------------------*/
.title_wrap h3 {
  font-size: 40px;
  font-weight: 600;
  display: block;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .title_wrap h3 {
    font-size: 32px;
  }
}
.title_wrap h3 .sub_jp {
  font-size: 18px;
  color: #191919;
  display: block;
}
@media screen and (max-width: 768px) {
  .title_wrap h3 .sub_jp {
    font-size: 16px;
  }
}

/* TOPへ戻る　追従ボタン
--------------------------------------------------*/
.pagetop {
  position: fixed;
  right: 0;
  bottom: 30px;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .pagetop {
    bottom: 0;
    z-index: 997;
  }
}
.pagetop a {
  width: 60px;
  height: 60px;
  background-color: #191919;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .pagetop a {
    width: 40px;
    height: 40px;
  }
}
.pagetop a img {
  transform: rotate(-90deg);
  width: 20px;
  height: 10px;
}

/* 下層ページKV
--------------------------------------------------*/
.underlayer_kv .underlayer_kv_inner {
  position: relative;
}
.underlayer_kv .page_title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.underlayer_kv .page_title h2 {
  font-size: 40px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .underlayer_kv .page_title h2 {
    font-size: 28px;
  }
}
.underlayer_kv .page_title .en {
  font-size: 20px;
  color: #fff;
  text-align: center;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .underlayer_kv .page_title .en {
    font-size: 16px;
  }
}

/*フェードイン*/
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 800ms ease-in-out;
  transition-delay: 0.03s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/*フェードイン 左←右*/
.fadein-r {
  opacity: 0;
  transform: translate(50px, 0);
  transition: all 800ms ease-in-out;
  transition-delay: 0.03s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.fadein-r.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/*フェードイン 左→右*/
.fadein-l {
  opacity: 0;
  transform: translate(-50px, 0);
  transition: all 800ms ease-in-out;
  transition-delay: 0.03s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.fadein-l.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/*KV フェードイン*/
.kv-fadein-txt {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 800ms ease-in-out;
  transition-delay: 0.05s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.kv-fadein-txt.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.kv-fadein-r {
  opacity: 0;
  transform: translate(50px, 0);
  transition: all 1000ms ease-in-out;
  transition-delay: 0.1s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.kv-fadein-r.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.kv-fadein-l {
  opacity: 0;
  transform: translate(-50px, 0);
  transition: all 1000ms ease-in-out;
  transition-delay: 0.1s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.kv-fadein-l.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* ------------------------------------- */
/* TOP キーヴィジュアル */
/* ------------------------------------- */
.top_kv {
  position: relative;
}
@media screen and (max-width: 768px) {
  .top_kv {
    padding: 60px 0 0;
  }
}
.top_kv .catch_txt_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top_kv .catch_txt_wrap {
    top: 54%;
  }
}
.top_kv .catch_txt_wrap .main_catch {
  color: #fff;
  font-size: 50px;
}
@media screen and (max-width: 1199px) {
  .top_kv .catch_txt_wrap .main_catch {
    font-size: 4.17vw;
  }
}
@media screen and (max-width: 768px) {
  .top_kv .catch_txt_wrap .main_catch {
    font-size: clamp(2.2rem, 1.473rem + 3.64vw, 4.2rem);
  }
}
.top_kv .catch_txt_wrap .sub_catch {
  color: #fff;
  font-size: 25px;
}
@media screen and (max-width: 1199px) {
  .top_kv .catch_txt_wrap .sub_catch {
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 768px) {
  .top_kv .catch_txt_wrap .sub_catch {
    font-size: clamp(1.4rem, 1.182rem + 1.09vw, 2rem);
  }
}
.top_kv .scrolldown {
  position: absolute;
  left: 50%;
  bottom: 0;
  /*全体の高さ*/
  height: 50px;
  /*高さ・位置・透過が変化して線が上から下に動く*/
}
.top_kv .scrolldown span {
  /*描画位置*/
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -25px;
  /*テキストの形状*/
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 999px) {
  .top_kv .scrolldown span {
    font-size: 12px;
    top: -20px;
  }
}
.top_kv .scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 60px;
  background: #fff;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 60px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 80px;
    opacity: 0;
  }
}
.top_kv .movie_wrap {
  display: flex;
  width: 100%;
}
.top_kv .movie_wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

/* ------------------------------------- */
/* TOP　おしらせ */
/* ------------------------------------- */
.top_news {
  background-color: #f2f4f8;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .top_news {
    padding: 60px 0 40px;
  }
}
.top_news .flex {
  display: flex;
  width: 90%;
  max-width: 980px;
  margin: auto;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top_news .flex {
    display: block;
  }
}
.top_news .flex .news_list {
  width: 80%;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .top_news .flex .news_list {
    width: 100%;
    margin-top: 20px;
  }
}
.top_news .flex .news_list li {
  margin-top: 20px;
  border-bottom: 1px solid #b5b8c0;
}
.top_news .flex .news_list li:first-of-type {
  margin-top: 0;
}
.top_news .flex .news_list li .upper {
  margin-bottom: 10px;
}
.top_news .flex .news_list li .upper .date {
  display: inline;
}
.top_news .flex .news_list li .upper .cate_label {
  display: inline;
  background-color: #fff;
  margin-left: 20px;
}
.top_news .flex .news_list li .upper .cate_label a {
  padding: 0 20px;
  transition: 0.3s;
}
.top_news .flex .news_list li .upper .cate_label a:hover {
  opacity: 0.6;
  color: #191919;
}
.top_news .flex .news_list li .lower {
  padding-bottom: 20px;
}
.top_news .flex .news_list li .lower a {
  display: block;
  transition: 0.3s;
}
.top_news .flex .news_list li .lower a:hover {
  opacity: 0.6;
  color: #191919;
}
.top_news .btn {
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  .top_news .btn {
    margin: 30px auto 0;
  }
}

/* ------------------------------------- */
/* TOP 事業案内 */
/* ------------------------------------- */
.top_service {
  padding: 80px 0 100px;
  width: 100%;
  margin: auto;
}
.top_service .top_service_inner {
  display: flex;
  align-items: center;
  column-gap: 5vw;
}
@media screen and (max-width: 999px) {
  .top_service .top_service_inner {
    display: block;
    width: 90%;
    margin: auto;
  }
}
.top_service .txt_wrap {
  width: 45vw;
  margin-left: 5vw;
}
@media screen and (max-width: 999px) {
  .top_service .txt_wrap {
    width: 100%;
    margin-left: auto;
  }
}
.top_service .txt_wrap .body_text {
  margin-top: 30px;
}
.top_service .txt_wrap .btn {
  width: 100%;
  margin: 60px auto auto 0;
}
@media screen and (max-width: 999px) {
  .top_service .txt_wrap .btn {
    display: none;
  }
}
.top_service .ph {
  width: 50vw;
}
@media screen and (max-width: 999px) {
  .top_service .ph {
    width: 100%;
    margin-top: 40px;
  }
}
.top_service .sp_btn {
  margin: 40px auto 0;
  display: none;
}
@media screen and (max-width: 999px) {
  .top_service .sp_btn {
    display: flex;
    width: 100%;
  }
}

/* ------------------------------------- */
/* TOP 会社概要 */
/* ------------------------------------- */
.top_company {
  padding-bottom: 100px;
}
.top_company .company_ph {
  width: 100%;
}
.top_company .top_company_inner {
  width: 90%;
  max-width: 1120px;
  margin: 40px auto 0;
}
.top_company .top_company_inner .txt_area {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .top_company .top_company_inner .txt_area {
    display: block;
  }
}
.top_company .top_company_inner .txt_area .title_wrap {
  margin-right: 60px;
}
@media screen and (max-width: 768px) {
  .top_company .top_company_inner .txt_area .title_wrap {
    margin: auto auto 30px auto;
  }
}
.top_company .top_company_inner .btn {
  margin: 60px auto auto 0;
}
@media screen and (max-width: 768px) {
  .top_company .top_company_inner .btn {
    margin: 40px auto auto auto;
    width: 100%;
  }
}

/* ------------------------------------- */
/* TOP 採用情報 */
/* ------------------------------------- */
.top_recruit {
  padding: 80px 0 80px;
  position: relative;
  background-color: #f2f4f8;
}
@media screen and (max-width: 768px) {
  .top_recruit {
    padding: 60px 0 80px;
  }
}
.top_recruit .flex {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 60px;
  width: 90%;
  max-width: 1260px;
  margin: auto;
}
@media screen and (max-width: 999px) {
  .top_recruit .flex {
    display: block;
  }
}
.top_recruit .flex .movie_wrap {
  width: 50%;
}
@media screen and (max-width: 999px) {
  .top_recruit .flex .movie_wrap {
    width: 100%;
  }
}
.top_recruit .flex .movie_wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.top_recruit .flex .txt_area {
  width: calc(50% - 60px);
}
@media screen and (max-width: 999px) {
  .top_recruit .flex .txt_area {
    width: 100%;
    margin-bottom: 40px;
  }
}
.top_recruit .flex .txt_area .body_text {
  margin-top: 30px;
}
.top_recruit .flex .txt_area .pc_btn {
  margin: 60px auto auto 0;
}
@media screen and (max-width: 999px) {
  .top_recruit .flex .txt_area .pc_btn {
    display: none;
  }
}
.top_recruit .flex .sp_btn {
  display: none;
}
@media screen and (max-width: 999px) {
  .top_recruit .flex .sp_btn {
    display: flex;
    margin-top: 40px;
  }
}

/* ------------------------------------- */
/* TOP メディア */
/* ------------------------------------- */
.top_media {
  width: 90%;
  max-width: 980px;
  margin: 80px auto;
  display: flex;
}
@media screen and (max-width: 768px) {
  .top_media {
    display: block;
    margin: 60px auto 80px;
  }
}
.top_media .title_wrap {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .top_media .title_wrap {
    width: 100%;
  }
}
.top_media .line_wrap {
  width: calc(100% - 200px);
}
@media screen and (max-width: 768px) {
  .top_media .line_wrap {
    width: 100%;
  }
}
.top_media .line_wrap .headline {
  font-size: 28px;
  border-bottom: 1px solid #191919;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .top_media .line_wrap .headline {
    font-size: 20px;
    margin: 20px auto;
  }
}
.top_media .line_wrap ul li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 10px;
}
.top_media .line_wrap ul li:last-of-type {
  margin-bottom: 0;
}

/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* ------------------------------------- */
/* イントロテキスト */
/* ------------------------------------- */
.page_service .intro_txt {
  width: 90%;
  margin: auto;
  text-align: center;
  padding: 50px 5%;
  position: relative;
  background-color: #fff;
}
.page_service .intro_txt p {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .page_service .intro_txt p {
    font-size: 16px;
  }
}
.page_service #kimono, .page_service #samurai {
  background-color: #f2f4f8;
}
@media screen and (max-width: 768px) {
  .page_service #kimono .txt_wrap, .page_service #samurai .txt_wrap {
    height: auto;
    padding-bottom: 20px;
  }
}
.page_service #kimono .txt_wrap .title_jp, .page_service #samurai .txt_wrap .title_jp {
  width: 90%;
  max-width: 1120px;
  margin: auto;
  color: #191919;
  font-size: 32px;
  padding: 60px 0 0;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .page_service #kimono .txt_wrap .title_jp, .page_service #samurai .txt_wrap .title_jp {
    padding: 20px 0 0;
    font-size: 20px;
  }
}
.page_service #kimono .txt_wrap p, .page_service #samurai .txt_wrap p {
  width: 90%;
  max-width: 1120px;
  margin: 10px auto auto;
  color: #191919;
  text-align: left;
}
.page_service #kimono .movie_wrap, .page_service #samurai .movie_wrap {
  width: 100%;
  max-width: 700px;
  margin: 40px auto;
  padding-bottom: 40px;
}
.page_service #kimono .movie_wrap iframe, .page_service #samurai .movie_wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.page_service #kimono .product_list, .page_service #samurai .product_list {
  width: 90%;
  max-width: 1120px;
  margin: 40px auto auto;
}
@media screen and (max-width: 768px) {
  .page_service #kimono .product_list, .page_service #samurai .product_list {
    display: block;
    margin: auto auto;
  }
}
.page_service #kimono .product_list li, .page_service #samurai .product_list li {
  background-color: #fff;
  display: flex;
  margin-bottom: 20px;
}
.page_service #kimono .product_list li:last-of-type, .page_service #samurai .product_list li:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .page_service #kimono .product_list li, .page_service #samurai .product_list li {
    margin: auto auto 20px;
    display: block;
    max-width: 420px;
    width: 100%;
  }
}
.page_service #kimono .product_list li img, .page_service #samurai .product_list li img {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .page_service #kimono .product_list li img, .page_service #samurai .product_list li img {
    width: 100%;
  }
}
.page_service #kimono .product_list li .info_wrap, .page_service #samurai .product_list li .info_wrap {
  width: 100%;
  margin: auto 20px;
}
@media screen and (max-width: 768px) {
  .page_service #kimono .product_list li .info_wrap, .page_service #samurai .product_list li .info_wrap {
    margin: auto auto;
  }
}
.page_service #kimono .product_list li .info_wrap .name, .page_service #samurai .product_list li .info_wrap .name {
  text-align: left;
  padding: 10px 20px;
  border-bottom: 1px solid #f2f4f8;
}
.page_service #kimono .product_list li .info_wrap .map_link, .page_service #samurai .product_list li .info_wrap .map_link {
  padding: 20px 20px 5px;
  display: block;
  transition: 0.3s;
}
.page_service #kimono .product_list li .info_wrap .map_link:hover, .page_service #samurai .product_list li .info_wrap .map_link:hover {
  opacity: 0.6;
}
.page_service #kimono .product_list li .info_wrap .insta_link, .page_service #samurai .product_list li .info_wrap .insta_link {
  padding: 5px 20px 20px;
  display: block;
  transition: 0.3s;
}
.page_service #kimono .product_list li .info_wrap .insta_link:hover, .page_service #samurai .product_list li .info_wrap .insta_link:hover {
  opacity: 0.6;
}
.page_service #kimono .product_list li .info_wrap .movie_wrap, .page_service #samurai .product_list li .info_wrap .movie_wrap {
  display: flex;
  width: 100%;
  max-width: 500px;
  padding-bottom: 30px;
}
.page_service #kimono .product_list li .info_wrap .movie_wrap iframe, .page_service #samurai .product_list li .info_wrap .movie_wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  .page_service #kimono .product_list li .info_wrap .movie_wrap, .page_service #samurai .product_list li .info_wrap .movie_wrap {
    padding-bottom: 0;
  }
}
.page_service #samurai {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .page_service #samurai {
    padding: 40px 0 80px;
  }
}

/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* ------------------------------------- */
/* 経営理念 */
/* ------------------------------------- */
#philosophy {
  width: 90%;
  max-width: 840px;
  margin: 80px auto 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #philosophy {
    margin: -50px auto 0;
    padding-top: 100px;
  }
}
#philosophy .title_wrap {
  margin-bottom: 40px;
}
#philosophy .point_text {
  font-size: 28px;
  margin: 40px auto 40px;
  border-bottom: 1px solid #191919;
}
@media screen and (max-width: 768px) {
  #philosophy .point_text {
    margin: 20px auto 20px;
    font-size: 20px;
  }
}
#philosophy .txt {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #philosophy .txt {
    text-align: left;
    padding: 0 0;
  }
}
#philosophy .txt .title {
  display: block;
  font-size: 20px;
  background-color: #f2f4f8;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #philosophy .txt .title {
    text-align: left;
    padding: 0 10px;
    font-size: 16px;
  }
}
#philosophy .txt .indent {
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}
#philosophy .value_list {
  display: block;
  text-align: left;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  #philosophy .value_list {
    padding: 0;
  }
}
#philosophy .value_list .indent {
  display: inline-block;
}

/* ------------------------------------- */
/* 代表挨拶 */
/* ------------------------------------- */
#greeting {
  padding-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #greeting {
    padding-bottom: 40px;
    padding-top: 100px;
    margin-top: -100px;
  }
}
#greeting::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 410px;
  background-color: #f2f4f8;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  #greeting::after {
    height: 55%;
  }
}
#greeting .pc_greeting_inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1120px;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  #greeting .pc_greeting_inner {
    display: none;
  }
}
#greeting .pc_greeting_inner .image_wrap {
  width: 44%;
  margin-right: 5%;
}
#greeting .pc_greeting_inner .txt_wrap {
  width: 50%;
}
#greeting .pc_greeting_inner .txt_wrap .title_wrap {
  margin-bottom: 40px;
}
#greeting .pc_greeting_inner .txt_wrap .name {
  font-size: 24px;
  text-align: right;
  margin-top: 20px;
  line-height: 1.5;
}
#greeting .pc_greeting_inner .txt_wrap .name .small {
  font-size: 16px;
  display: block;
  line-height: 1.5;
}
#greeting .sp_greeting_inner {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: 40px auto 0;
  display: none;
}
@media screen and (max-width: 768px) {
  #greeting .sp_greeting_inner {
    display: block;
  }
}
#greeting .sp_greeting_inner .title_wrap {
  margin-bottom: 20px;
}
#greeting .sp_greeting_inner .image_wrap {
  margin-bottom: 20px;
}
#greeting .sp_greeting_inner .name {
  font-size: 18px;
  text-align: right;
  margin-top: 20px;
}
#greeting .sp_greeting_inner .name .small {
  font-size: 15px;
  display: block;
  line-height: 1.5;
}

/* ------------------------------------- */
/* 会社概要 */
/* ------------------------------------- */
#company {
  width: 90%;
  max-width: 980px;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  #company {
    margin: -50px auto 0;
    padding-top: 100px;
  }
}
#company dl {
  display: flex;
  border-bottom: 1px solid #191919;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  #company dl {
    display: block;
  }
}
#company dl dt {
  width: 196px;
}
@media screen and (max-width: 768px) {
  #company dl dt {
    width: 100%;
    font-size: 16px;
  }
}
#company dl dd {
  width: calc(100% - 196px);
}
@media screen and (max-width: 768px) {
  #company dl dd {
    width: 100%;
    margin-top: 10px;
  }
}
#company dl dd .indent {
  padding-left: 1.5em;
  text-indent: -1.5em;
}
#company dl dd a {
  transition: 0.3s;
}
#company dl dd a i {
  color: #191919;
}
#company dl dd a:hover {
  opacity: 0.6;
}

/* ------------------------------------- */
/* 沿革 */
/* ------------------------------------- */
#history {
  width: 90%;
  max-width: 980px;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  #history {
    margin: -50px auto 0;
    padding-top: 100px;
  }
}
#history .history_inner {
  margin-top: 20px;
}
#history dl {
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #history dl {
    display: block;
  }
}
#history dl dt {
  line-height: 2;
  width: 145px;
}
@media screen and (max-width: 768px) {
  #history dl dt {
    width: 100%;
  }
}
#history dl dd {
  line-height: 2;
  width: calc(100% - 145px);
  position: relative;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  #history dl dd {
    margin-top: 10px;
    width: 100%;
    padding-left: 20px;
  }
}
#history dl dd::before {
  content: "";
  position: absolute;
  width: 30px;
  border-top: 1px solid #191919;
  left: 0;
  top: 1em;
  border-collapse: separate;
}
@media screen and (max-width: 768px) {
  #history dl dd::before {
    width: 15px;
  }
}

/* ------------------------------------- */
/* アクセス */
/* ------------------------------------- */
#access {
  width: 100%;
  margin: 80px auto 80px;
}
@media screen and (max-width: 768px) {
  #access {
    margin: 60px auto 80px;
    padding-top: 100px;
  }
}
#access .title_wrap {
  text-align: center;
}
#access .ad_list {
  width: 90%;
  max-width: 1120px;
  margin: 40px auto auto;
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
}
@media screen and (max-width: 768px) {
  #access .ad_list {
    display: block;
    margin: 20px auto auto;
  }
}
#access .ad_list li {
  width: calc(50% - 20px);
  border-bottom: 1px solid #b5b8c0;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  #access .ad_list li {
    width: 100%;
  }
}
#access .ad_list li .title {
  position: relative;
  padding-left: 15px;
}
#access .ad_list li .title::before {
  position: absolute;
  content: "";
  background-color: #fff;
  border: 1px solid #191919;
  height: 8px;
  width: 8px;
  border-radius: 5px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#access .ad_list li a {
  transition: 0.3s;
  display: block;
}
#access .ad_list li a i {
  color: #191919;
  transition: 0.3s;
}
#access .ad_list li a:hover {
  opacity: 0.6;
}
#access .ad_list li a:hover i {
  opacity: 0.6;
}

/* ------------------------------------- */
/*  グループ会社 */
/* ------------------------------------- */
#group {
  background-color: #f2f4f8;
  padding: 60px 0;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  #group {
    margin: 50px auto 0;
    padding: 40px 0;
  }
}
#group .group_inner {
  width: 90%;
  max-width: 1120px;
  margin: auto;
}
#group .group_inner .group_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #group .group_inner .group_list {
    margin-top: 20px;
  }
}
#group .group_inner .group_list li {
  background-color: #fff;
  width: 47.5%;
  display: flex;
  align-items: center;
  padding: 20px 4%;
}
@media screen and (max-width: 768px) {
  #group .group_inner .group_list li {
    display: block;
    height: 180px;
  }
}
#group .group_inner .group_list li .logo_wrap {
  height: 86px;
}
#group .group_inner .group_list li .txt_wrap {
  margin-left: 10%;
}
@media screen and (max-width: 768px) {
  #group .group_inner .group_list li .logo_wrap {
    display: flex;
  }
  #group .group_inner .group_list li .logo_wrap img {
    width: 70px;
    margin: auto auto 0;
  }
  #group .group_inner .group_list li .txt_wrap {
    text-align: center;
    margin: 15px auto auto;
  }
  #group .group_inner .group_list li .txt_wrap p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* ------------------------------------- */
/* 採用情報 */
/* ------------------------------------- */
.page_recruit {
  /* メッセージ*/
  /* ------------------------------------- */
  /* データで見る */
  /* ------------------------------------- */
  /* インタビュー */
  /* ------------------------------------- */
  /* モーダルCSS */
  /* 募集要項 */
  /* ------------------------------------- */
}
.page_recruit body, .page_recruit ul, .page_recruit ol, .page_recruit dl, .page_recruit li, .page_recruit dt, .page_recruit dd, .page_recruit p, .page_recruit div, .page_recruit span, .page_recruit img, .page_recruit svg, .page_recruit a, .page_recruit table, .page_recruit tr, .page_recruit th, .page_recruit td, .page_recruit figure, .page_recruit select, .page_recruit input, .page_recruit textarea {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.page_recruit p {
  font-size: 15px;
}
.page_recruit h1, .page_recruit h2, .page_recruit h3, .page_recruit h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.page_recruit #message .txt_bg {
  padding: 60px 0 60px;
  background-color: #f2f4f8;
}
@media screen and (max-width: 768px) {
  .page_recruit #message .txt_bg {
    padding: 60px 0 60px;
  }
}
.page_recruit #message .txt_bg .txt_inner {
  position: relative;
  z-index: 2;
  background-color: #fff;
  width: 90%;
  max-width: 1120px;
  margin: auto;
  padding: 60px 60px 0;
}
@media screen and (max-width: 768px) {
  .page_recruit #message .txt_bg .txt_inner {
    padding: 40px 5% 0;
  }
}
.page_recruit #message .txt_bg .title_area {
  border-bottom: 2px solid #f2f4f8;
  padding-bottom: 20px;
}
.page_recruit #message .txt_bg .movie_wrap {
  width: 100%;
  max-width: 700px;
  margin: 40px auto;
  padding-bottom: 40px;
}
.page_recruit #message .txt_bg .movie_wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.page_recruit .bg_date {
  background-color: #f2f4f8;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .page_recruit .bg_date {
    padding-bottom: 60px;
  }
}
.page_recruit #date {
  width: 90%;
  max-width: 1120px;
  margin: auto;
}
.page_recruit #date .title_wrap {
  margin-bottom: 20px;
}
.page_recruit #date .date_note {
  margin-bottom: 20px;
}
.page_recruit #date .first_stage {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 999px) {
  .page_recruit #date .first_stage {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .page_recruit #date .first_stage {
    display: block;
  }
}
.page_recruit #date .first_stage .card {
  background-color: #191919;
  width: calc((100% - 20px - 20px) / 3);
}
@media screen and (max-width: 999px) {
  .page_recruit #date .first_stage .card {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 768px) {
  .page_recruit #date .first_stage .card {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.page_recruit #date .first_stage .card .title {
  font-size: 18px;
  color: #fff;
  padding: 20px 30px 0;
}
.page_recruit #date .first_stage .card .title .small {
  font-size: 70%;
  display: inline-block;
  color: #fff;
}
.page_recruit #date .first_stage .card .number {
  position: relative;
  z-index: 2;
  font-size: 80px;
  text-align: center;
  line-height: 1;
  padding: 20px 0;
  font-weight: 900;
  font-variant: tabular-nums;
  font-feature-settings: "tnum";
}
.page_recruit #date .first_stage .card .count {
  color: #fff;
  font-size: 80px;
  line-height: 1;
  font-weight: 900;
}
.page_recruit #date .first_stage .card .unit {
  color: #fff;
}
.page_recruit #date .first_stage .card .x60 {
  font-size: 60%;
}
.page_recruit #date .first_stage .card .yellow_txt {
  color: #fff;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}
.page_recruit #date .first_stage .business .title {
  line-height: 1.3;
}
.page_recruit #date .first_stage .business .count {
  font-size: 70px;
}
.page_recruit #date .first_stage .worker .title {
  line-height: 1.3;
  display: block;
}
.page_recruit #date .first_stage .worker .count {
  width: 134px;
  display: inline-block;
}
.page_recruit #date .first_stage .male_to_female {
  position: relative;
}
.page_recruit #date .first_stage .male_to_female .img_bg {
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.page_recruit #date .first_stage .male_to_female .man_bg {
  left: 0;
}
.page_recruit #date .first_stage .male_to_female .woman_bg {
  right: 0;
}
.page_recruit #date .first_stage .male_to_female .count {
  width: 40px;
  display: inline-block;
}
.page_recruit #date .first_stage .male_to_female .man {
  position: relative;
}
.page_recruit #date .first_stage .male_to_female .man::after {
  content: "man";
  position: absolute;
  font-size: 16px;
  bottom: -20px;
  left: 0;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.075em;
}
.page_recruit #date .first_stage .male_to_female .woman {
  position: relative;
}
.page_recruit #date .first_stage .male_to_female .woman::after {
  content: "woman";
  position: absolute;
  font-size: 16px;
  bottom: -20px;
  right: -0.5em;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.075em;
}
.page_recruit #date .first_stage .age .count {
  width: 95px;
  display: inline-block;
}
.page_recruit #date .first_stage .sales {
  position: relative;
}
.page_recruit #date .first_stage .sales .count {
  width: 45px;
  display: inline-block;
}
.page_recruit #date .first_stage .sales .img_bg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.page_recruit #date .first_stage .paid {
  position: relative;
}
.page_recruit #date .first_stage .paid .img_bg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.page_recruit #date .first_stage .training {
  position: relative;
}
.page_recruit #date .first_stage .training .img_bg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.page_recruit #date .first_stage .overtime .number, .page_recruit #date .first_stage .training .number {
  font-size: 60px;
  padding: 0 0 20px;
}
.page_recruit #date .first_stage .overtime .count, .page_recruit #date .first_stage .training .count {
  font-size: 60px;
}
.page_recruit #date .first_stage .overtime .yellow_txt, .page_recruit #date .first_stage .training .yellow_txt {
  font-size: 80%;
  line-height: 1;
}
.page_recruit #date .first_stage .overtime .x35, .page_recruit #date .first_stage .training .x35 {
  font-size: 35%;
}
.page_recruit #date .first_stage .health_check .count {
  width: 134px;
  display: inline-block;
}
.page_recruit #date .first_stage .abroad .count {
  width: 60px;
  display: inline-block;
}
.page_recruit #date .first_stage .country .count {
  width: 100px;
  display: inline-block;
}
.page_recruit #date .add {
  margin-top: 20px;
}
@media screen and (max-width: 999px) {
  .page_recruit #date .add {
    margin-top: 0;
  }
}
.page_recruit #date .second_stage {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 20px;
}
@media screen and (max-width: 999px) {
  .page_recruit #date .second_stage {
    display: block;
  }
}
.page_recruit #date .second_stage .card {
  background-color: #191919;
  width: 50%;
  margin-top: 20px;
}
@media screen and (max-width: 999px) {
  .page_recruit #date .second_stage .card {
    width: 100%;
  }
}
.page_recruit #date .second_stage .card .title {
  font-size: 18px;
  color: #fff;
  padding: 20px 30px 0;
}
@media screen and (max-width: 999px) {
  .page_recruit #date .blood {
    margin-bottom: 20px;
  }
}
.page_recruit #date .blood .graph {
  padding: 30px 30px 20px 40px;
}
@media screen and (max-width: 999px) {
  .page_recruit #date .blood .graph {
    padding: 30px 0 30px 0;
    width: 90%;
    max-width: 480px;
    margin: auto;
  }
}
.page_recruit #date .blood .unknown {
  padding-top: 20px;
  text-align: right;
  color: #fff;
  font-size: 14px;
}
.page_recruit #date .style {
  min-width: 500px;
}
@media screen and (max-width: 999px) {
  .page_recruit #date .style {
    min-width: auto;
  }
}
.page_recruit #date .style .content {
  position: relative;
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 999px) {
  .page_recruit #date .style .content {
    width: 90%;
    max-width: 430px;
  }
}
.page_recruit #date .style .img_wrap {
  width: 240px;
  position: absolute;
  z-index: 2;
  top: 45%;
  transform: translateY(-50%);
  right: 160px;
}
@media (max-width: 500px) {
  .page_recruit #date .style .img_wrap {
    width: 48vw;
    right: 40%;
  }
}
.page_recruit figure {
  display: block;
  height: 0;
  margin: 0 0 auto auto;
  position: relative;
  width: 200px;
  padding-bottom: 280px;
}
@media (max-width: 500px) {
  .page_recruit figure {
    width: 40vw;
    padding-bottom: 56vw;
  }
}
.page_recruit figure::after {
  content: "";
  background-image: url(../img/recruit/zu_note_ryouhou.webp);
  background-size: cover;
  height: 48px;
  width: 48px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 500px) {
  .page_recruit figure::after {
    height: 9.6vw;
    width: 9.6vw;
    position: absolute;
    right: 6vw;
  }
}
.page_recruit figcaption {
  font-size: 1rem;
  text-align: center;
  color: #fff;
  width: 100%;
  position: absolute;
  left: 0;
  top: 40%;
  z-index: 2;
}
.page_recruit svg {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: visible;
}
.page_recruit circle {
  fill: rgba(0, 0, 0, 0);
  stroke-width: 31.8309886184;
  stroke-dasharray: 0, 0, 0, 100;
  stroke-dashoffset: 25;
}
.page_recruit .pie1 {
  stroke: hsl(221, 67%, 34%);
  animation: pie1 2.5s linear both;
}
.page_recruit .pie1_1 {
  stroke: hsl(0, 0%, 98%);
  animation: pie1_1 2.5s linear both;
}
.page_recruit .pie2 {
  stroke: hsl(0, 0%, 98%);
  animation: pie2 2.5s linear both;
}
.page_recruit .pie3 {
  stroke: hsl(54, 100%, 74%);
  animation: pie3 2.5s linear both;
}
@keyframes pie2 {
  50%, 100% {
    stroke-dasharray: 0, 0, 60, 40;
  }
}
@keyframes pie1 {
  50%, 100% {
    stroke-dasharray: 0, 1, 80, 20;
  }
}
@keyframes pie1_1 {
  50%, 100% {
    stroke-dasharray: 0, 0, 100.05, 0;
  }
}
@keyframes pie3 {
  50%, 100% {
    stroke-dasharray: 0, 80.05, 20, 0;
  }
}
.page_recruit .third_stage {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 20px;
}
@media screen and (max-width: 768px) {
  .page_recruit .third_stage {
    display: block;
  }
}
.page_recruit .third_stage .card {
  background-color: #59c1ce;
  width: 50%;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .page_recruit .third_stage .card {
    width: 100%;
  }
}
.page_recruit .third_stage .card .title {
  font-size: 18px;
  color: #fff;
  padding: 20px 30px 0;
}
.page_recruit .third_stage .number {
  position: relative;
  z-index: 2;
  font-size: 120px;
  text-align: center;
  line-height: 1;
  padding: 20px 0;
  font-weight: 900;
  font-variant: tabular-nums;
  font-feature-settings: "tnum";
}
@media screen and (max-width: 768px) {
  .page_recruit .third_stage .number {
    font-size: 80px;
  }
}
.page_recruit .third_stage .count {
  color: #fff17a;
  font-size: 120px;
  line-height: 1;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .page_recruit .third_stage .count {
    font-size: 80px;
  }
}
.page_recruit .third_stage .unit {
  color: #fff;
}
.page_recruit .third_stage .x60 {
  font-size: 60%;
}
.page_recruit .third_stage .yellow_txt {
  color: #fff17a;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}
.page_recruit .third_stage .number_hired {
  position: relative;
}
.page_recruit .third_stage .number_hired .content {
  width: 90%;
  margin: 30px auto auto;
}
@media screen and (max-width: 768px) {
  .page_recruit .third_stage .number_hired .content {
    max-width: 490px;
  }
}
.page_recruit .third_stage .number_hired .number_hired_bg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.page_recruit .third_stage .part {
  position: relative;
}
.page_recruit .third_stage .part .content {
  margin: 30px auto auto;
  width: 85%;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .page_recruit .third_stage .part .content {
    max-width: 490px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 413px) {
  .page_recruit .third_stage .part .content {
    padding-bottom: 40px;
  }
}
.page_recruit .third_stage .part .bg_01 {
  position: absolute;
  width: 26%;
  left: 0;
  bottom: 0;
  height: auto;
}
@media screen and (max-width: 768px) {
  .page_recruit .third_stage .part .bg_01 {
    width: 18%;
  }
}
.page_recruit .third_stage .part .bg_02 {
  position: absolute;
  width: 27%;
  right: 0;
  bottom: 0;
  height: auto;
}
@media screen and (max-width: 768px) {
  .page_recruit .third_stage .part .bg_02 {
    width: 19%;
  }
}
.page_recruit #interview {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .page_recruit #interview {
    margin-top: 40px;
    border-bottom: 2px solid #f2f4f8;
  }
}
.page_recruit #interview .interview_bg {
  position: relative;
  padding-bottom: 60px;
}
.page_recruit #interview .interview_bg::after {
  position: absolute;
  content: "";
  background-color: #f2f4f8;
  height: 300px;
  width: 100%;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page_recruit #interview .interview_bg::after {
    display: none;
  }
}
.page_recruit #interview .title_wrap {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .page_recruit #interview .title_wrap {
    margin-bottom: 20px;
  }
}
.page_recruit #interview .interview_list {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1120px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .page_recruit #interview .interview_list {
    display: block;
  }
}
.page_recruit #interview .interview_list li {
  width: 31%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .page_recruit #interview .interview_list li {
    width: 100%;
    margin-bottom: 40px;
  }
  .page_recruit #interview .interview_list li:last-of-type {
    margin-bottom: 0;
  }
}
.page_recruit #interview .interview_list .click_area {
  cursor: pointer;
  transition: 0.6s;
  display: flex;
  flex-direction: column;
}
.page_recruit #interview .interview_list .click_area:hover {
  opacity: 0.6;
}
.page_recruit #interview .interview_list .txt {
  margin-top: 10px;
}
.page_recruit #interview .interview_list .txt p {
  line-height: 1.5;
}
.page_recruit #interview .interview_list .txt .name {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .page_recruit #interview .interview_list .txt .name {
    font-size: 18px;
  }
}
.page_recruit #interview .interview_list .txt .post_name {
  margin: 10px auto;
  color: #191919;
}
.page_recruit #interview .interview_list .modal_btn {
  margin-top: 10px;
  background-color: #191919;
  color: #fff;
  width: 100%;
  display: inline-block;
  text-align: center;
  margin-top: auto;
}
.page_recruit .modalArea {
  display: none;
  position: fixed;
  z-index: 10000; /*サイトによってここの数値は調整 */
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page_recruit .modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(31, 32, 35, 0.5);
}
.page_recruit .modalWrapper {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1120px;
  padding: 80px 60px;
  background-color: #fff;
  overflow: scroll;
}
@media screen and (max-width: 768px) {
  .page_recruit .modalWrapper {
    top: 40px;
    padding: 40px 5%;
  }
}
.page_recruit .modalContents {
  height: 70vh;
}
.page_recruit .closeModal_wrap {
  position: fixed;
  z-index: 10001;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1120px;
}
@media screen and (max-width: 768px) {
  .page_recruit .closeModal_wrap {
    top: 40px;
  }
}
.page_recruit .closeModal {
  cursor: pointer;
  color: #fff;
  background-color: #191919;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  margin: auto 0 auto auto;
}
@media screen and (max-width: 768px) {
  .page_recruit .closeModal {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
.page_recruit .modalContents .profile {
  display: flex;
}
@media screen and (max-width: 768px) {
  .page_recruit .modalContents .profile {
    display: block;
  }
}
.page_recruit .modalContents .profile .left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .page_recruit .modalContents .profile .left {
    width: 100%;
  }
}
.page_recruit .modalContents .profile .right {
  margin-left: 30px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .page_recruit .modalContents .profile .right {
    margin: auto;
    display: block;
  }
}
.page_recruit .modalContents .profile .right .txt {
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .page_recruit .modalContents .profile .right .txt {
    margin-top: 10px;
  }
}
.page_recruit .modalContents .profile .right p {
  line-height: 1.5;
}
.page_recruit .modalContents .profile .right .name {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .page_recruit .modalContents .profile .right .name {
    font-size: 18px;
  }
}
.page_recruit .modalContents .profile .right .post_name {
  margin-top: 10px;
  color: #191919;
}
@media screen and (max-width: 768px) {
  .page_recruit .modalContents .profile .right .post_name {
    margin-top: 0;
  }
}
.page_recruit .modalContents .q_a {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .page_recruit .modalContents .q_a {
    margin-top: 20px;
  }
}
.page_recruit .modalContents .q_a .q_txt {
  font-size: 20px;
}
.page_recruit .modalContents .q_a .q_txt .question {
  color: #191919;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .page_recruit .modalContents .q_a .q_txt .question {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .page_recruit .modalContents .q_a .q_txt {
    font-size: 16px;
  }
}
.page_recruit .modalContents .q_a .answer {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .page_recruit .modalContents .q_a .answer {
    margin-top: 0;
  }
}
.page_recruit .modalContents .q_a .q_01, .page_recruit .modalContents .q_a .q_02, .page_recruit .modalContents .q_a .q_03, .page_recruit .modalContents .q_a .q_04, .page_recruit .modalContents .q_a .q_05 {
  margin-bottom: 30px;
}
.page_recruit .modalContents .schedule {
  padding-bottom: 80px;
}
.page_recruit .modalContents .schedule .schedule_list {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .page_recruit .modalContents .schedule .schedule_list {
    margin-top: 20px;
  }
}
.page_recruit .modalContents .schedule .schedule_list li {
  padding: 0 0 20px 30px;
  position: relative;
  display: flex;
}
.page_recruit .modalContents .schedule .schedule_list li:last-of-type {
  padding: 0 0 0 30px;
}
.page_recruit .modalContents .schedule .schedule_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 2em;
  width: 4px;
  background-color: #191919;
  z-index: 10002;
}
.page_recruit .modalContents .schedule .schedule_list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: #f2f4f8;
  z-index: 10001;
}
.page_recruit .modalContents .schedule .schedule_list li .time {
  color: #191919;
  width: 40px;
}
.page_recruit .modalContents .schedule .schedule_list li .content {
  margin-left: 20px;
}
.page_recruit .modalContents .schedule .schedule_list li .content .label {
  background-color: #f2f4f8;
  display: inline-block;
  padding: 2px 10px;
  line-height: 1.5;
}
.page_recruit #requirements {
  width: 90%;
  max-width: 840px;
  margin: 60px auto 0;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .page_recruit #requirements {
    margin: 40px auto 0;
    padding-bottom: 80px;
  }
}
.page_recruit #requirements .title_wrap {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .page_recruit #requirements .title_wrap {
    margin-bottom: 20px;
  }
}
.page_recruit #requirements .table_wrap {
  border-bottom: 1px solid #b5b8c0;
}
@media screen and (max-width: 768px) {
  .page_recruit #requirements .table_wrap {
    border: none;
  }
}
.page_recruit #requirements dl {
  display: flex;
  border-top: 1px solid #b5b8c0;
}
@media screen and (max-width: 768px) {
  .page_recruit #requirements dl {
    display: block;
    border-top: none;
  }
}
.page_recruit #requirements dl dt {
  width: 210px;
  background-color: #f2f4f8;
  padding: 20px 20px;
}
@media screen and (max-width: 768px) {
  .page_recruit #requirements dl dt {
    width: 100%;
    padding: 10px 10px;
  }
}
.page_recruit #requirements dl dd {
  width: calc(100% - 210px);
  padding: 20px 20px;
}
@media screen and (max-width: 768px) {
  .page_recruit #requirements dl dd {
    width: 100%;
    padding: 10px 10px;
  }
}

/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* ------------------------------------- */
/* お問い合わせ */
/* ------------------------------------- */
.page_contact .form {
  width: 90%;
  max-width: 980px;
  margin: 40px auto 100px;
}
.page_contact .form .intro_txt {
  text-align: center;
}
.page_contact .form .txt_error {
  color: #B70000;
  margin-bottom: 20px;
  display: none;
}
.page_contact .form .txt_error.active {
  display: block;
}
.page_contact .form .mw_wrapper {
  margin-top: 40px;
}
.page_contact .form dl {
  margin-bottom: 20px;
}
.page_contact .form dl dt p {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .page_contact .form dl dt p {
    font-size: 16px;
  }
}
.page_contact .form dl dt p .reference_mark {
  color: #191919;
  font-size: 14px;
  margin-left: 5px;
  background-color: #f2f4f8;
  padding: 2px 8px;
}
@media screen and (max-width: 768px) {
  .page_contact .form dl dt p .reference_mark {
    font-size: 12px;
  }
}
.page_contact .form dl dd {
  margin-top: 10px;
}
.page_contact .form dl dd input {
  background-color: #f2f4f8;
  padding: 20px 20px;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .page_contact .form dl dd input {
    font-size: 14px;
    padding: 10px 10px;
  }
}
.page_contact .form dl dd input::placeholder {
  color: #afb1b6;
}
.page_contact .form dl dd .error {
  color: #B70000;
  font-size: 14px;
}
.page_contact .form dl dd textarea {
  background-color: #f2f4f8;
  padding: 20px 20px;
  width: 100%;
  max-width: 100%;
}
.page_contact .form dl dd .mwform-radio-field {
  margin-right: 10px;
}
.page_contact .form dl dd .horizontal-item {
  margin-left: 0 !important;
}
.page_contact .form dl dd input[type=radio] {
  appearance: none;
  display: none;
}
.page_contact .form dl dd input[type=radio] + span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.page_contact .form dl dd input[type=radio] + span:before {
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  display: inline-block;
  margin-right: 0.3em;
  font-weight: 400;
  color: #b5b8c0;
  font-size: 14px;
}
.page_contact .form dl dd input[type=radio]:checked + span:before {
  content: "\f192";
  font-weight: 400;
  color: #191919;
  font-size: 14px;
}
.page_contact .form dl dd .mwform-radio-field-text {
  font-size: 14px;
}
.page_contact .btn_box {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .page_contact .btn_box {
    display: block;
  }
}
.page_contact .btn_box input[type=submit] {
  background-color: #191919;
  color: #fff;
  width: 300px;
  height: 80px;
  display: block;
  border: 1px solid #191919;
  transition: 0.3s;
}
.page_contact .btn_box input[type=submit]:hover {
  background-color: #fff;
  color: #191919;
}
@media screen and (max-width: 768px) {
  .page_contact .btn_box input[type=submit] {
    margin: auto;
    width: 100%;
    max-width: 300px;
  }
}
.page_contact .btn_box input[type=submit]:last-of-type {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .page_contact .btn_box input[type=submit]:last-of-type {
    margin: auto;
    margin-top: 20px;
  }
}

.mw_wp_form_confirm {
  margin-top: 80px !important;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm {
    margin-top: 60px !important;
  }
}
.mw_wp_form_confirm .intro_txt {
  display: none;
}
.mw_wp_form_confirm .reference_mark {
  display: none;
}
.mw_wp_form_confirm dd {
  border-bottom: 1px solid #b5b8c0;
  padding: 0 20px 10px 20px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm dd {
    font-size: 14px;
    padding: 0 0px 10px 0px;
  }
}
.mw_wp_form_confirm .btn_box {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .btn_box {
    margin-top: 40px;
  }
}

.mw_wp_form_complete {
  margin-top: 80px !important;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_complete {
    margin-top: 60px !important;
  }
}
.mw_wp_form_complete .large_message {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
  color: #191919;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_complete .large_message {
    font-size: 18px;
  }
}
.mw_wp_form_complete .txt {
  text-align: center;
  margin-bottom: 40px;
}

/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* ------------------------------------- */
/* おしらせ一覧 */
/* ------------------------------------- */
.page_archive .news_archive {
  padding-bottom: 80px;
}
.page_archive .news_archive .news_list {
  width: 90%;
  max-width: 840px;
  margin: 80px auto 40px;
}
@media screen and (max-width: 768px) {
  .page_archive .news_archive .news_list {
    width: 90%;
    margin-top: 50px;
  }
}
.page_archive .news_archive .news_list li {
  margin-top: 20px;
  border-bottom: 1px solid #b5b8c0;
}
.page_archive .news_archive .news_list li:first-of-type {
  margin-top: 0;
}
.page_archive .news_archive .news_list li .upper {
  margin-bottom: 10px;
}
.page_archive .news_archive .news_list li .upper .date {
  display: inline;
}
.page_archive .news_archive .news_list li .upper .cate_label {
  display: inline;
  background-color: #f2f4f8;
  margin-left: 20px;
}
.page_archive .news_archive .news_list li .upper .cate_label a {
  padding: 0 20px;
  transition: 0.3s;
}
.page_archive .news_archive .news_list li .upper .cate_label a:hover {
  opacity: 0.6;
  color: #191919;
}
.page_archive .news_archive .news_list li .lower {
  padding-bottom: 20px;
}
.page_archive .news_archive .news_list li .lower a {
  display: block;
  transition: 0.3s;
}
.page_archive .news_archive .news_list li .lower a:hover {
  opacity: 0.6;
  color: #191919;
}
.page_archive .news_archive .wp-pagenavi {
  display: flex;
  justify-content: center;
}
.page_archive .news_archive .wp-pagenavi .current {
  color: #fff;
  background-color: #191919;
}
.page_archive .news_archive .wp-pagenavi a, .page_archive .news_archive .wp-pagenavi .extend {
  color: #191919;
  background-color: #fff;
}
.page_archive .news_archive .wp-pagenavi .extend {
  border: none;
}
.page_archive .news_archive .wp-pagenavi a, .page_archive .news_archive .wp-pagenavi span {
  width: 30px;
  height: 30px;
  padding: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  border: none;
}
.page_archive .news_archive .wp-pagenavi .last {
  margin-right: 0;
}
.page_archive .news_archive .wp-pagenavi a {
  transition: 0.3s;
  border: none;
}
.page_archive .news_archive .wp-pagenavi a:hover {
  color: #fff;
  background-color: #191919;
}

.cate_archive .cate_title {
  width: 90%;
  max-width: 840px;
  margin: 40px auto 40px;
  text-align: center;
}
.cate_archive .cate_title span {
  background-color: #f2f4f8;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  .cate_archive .cate_title {
    width: 90%;
    margin-top: 30px;
  }
}
.cate_archive .news_list {
  margin: 0 auto 40px !important;
}
@media screen and (max-width: 768px) {
  .cate_archive .news_list {
    width: 90%;
    margin-top: 30px;
  }
}

/* ------------------------------------- */
/* おしらせ詳細 */
/* ------------------------------------- */
.page_news_single .underlayer_kv {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page_news_single .underlayer_kv .underlayer_kv_inner {
    background-image: url(../img/news/sp_kv_news.webp);
    background-size: cover;
    background-position: top;
    height: 35vw;
    width: 100%;
  }
}
.page_news_single .news_single {
  background-color: #f2f4f8;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .page_news_single .news_single {
    padding-bottom: 60px;
  }
}
.page_news_single .bg_news {
  background-color: #fff;
  width: 90%;
  max-width: 1120px;
  margin: -180px auto 0;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 1200px) {
  .page_news_single .bg_news {
    margin: -16vw auto 0;
  }
}
@media screen and (max-width: 768px) {
  .page_news_single .bg_news {
    margin: -80px auto 0;
    padding: 40px 0;
  }
}
.page_news_single .bg_news .inner {
  width: 90%;
  margin: auto;
  max-width: 840px;
}
.page_news_single .bg_news .inner .title_area .upper {
  margin-bottom: 10px;
}
.page_news_single .bg_news .inner .title_area .upper .date {
  display: inline;
}
.page_news_single .bg_news .inner .title_area .upper .cate_label {
  display: inline;
  background-color: #f2f4f8;
  margin-left: 20px;
}
.page_news_single .bg_news .inner .title_area .upper .cate_label a {
  padding: 0 20px;
  transition: 0.3s;
}
.page_news_single .bg_news .inner .title_area .upper .cate_label a:hover {
  opacity: 0.6;
  color: #191919;
}
.page_news_single .bg_news .inner .title_area .lower {
  padding-bottom: 8px;
  border-bottom: #b5b8c0 solid 1px;
}
.page_news_single .bg_news .inner .title_area .lower .post_title {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .page_news_single .bg_news .inner .title_area .lower .post_title {
    font-size: 18px;
  }
}
.page_news_single .bg_news .inner .content_area {
  margin-top: 20px;
}
.page_news_single .bg_news .inner .content_area a {
  color: #191919;
  border-bottom: 1px solid #191919;
  transition: 0.3s;
}
.page_news_single .bg_news .inner .content_area a:hover {
  opacity: 0.6;
}
.page_news_single .bg_news .inner .content_area img {
  margin: 10px auto;
  height: auto;
}
.page_news_single .bg_news .inner .content_area h1 {
  font-size: 200%;
}
.page_news_single .bg_news .inner .content_area h2 {
  font-size: 180%;
}
.page_news_single .bg_news .inner .content_area h3 {
  font-size: 150%;
}
.page_news_single .bg_news .inner .content_area h4 {
  font-size: 120%;
}
.page_news_single .btn {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .page_news_single .btn {
    margin-top: 40px;
  }
}

/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* ------------------------------------- */
/* 404 */
/* ------------------------------------- */
.error_txt {
  width: 90%;
  max-width: 1120px;
  margin: auto;
  padding: 100px 0 100px;
}
.error_txt .txt {
  text-align: center;
}
.error_txt .txt .strong {
  color: #191919;
  font-size: 20px;
}/*# sourceMappingURL=style.css.map */