@charset "UTF-8";
/* -------------------------- */
/* basis */
/* -------------------------- */
html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  color: #262626;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4em;
  line-height: 1.6;
  overflow-y: scroll;
  position: relative;
}

.container {
  max-width: 1092px;
  margin: 0 auto;
  padding: 0 15px;
}
.container.container_l {
  max-width: 1284px;
}

.hidden_xs {
  display: none;
}

.hidden_all {
  display: none;
}

.txt_normal {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}

.txt_c {
  text-align: center;
}

.txt_r {
  text-align: right;
}

.img_responsive {
  width: 100%;
  height: auto;
}

.thum_img {
  line-height: 0;
}

.icon {
  width: 15px;
  height: 15px;
  vertical-align: middle;
}

/* -------------------------- */
/* reset */
/* -------------------------- */
h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

picture {
  display: block;
}

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

* {
  box-sizing: border-box;
}

/* -------------------------- */
/* link */
/* -------------------------- */
a {
  outline: none;
  transition: all 0.3s;
}

a:link, a:visited {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

/* -------------------------- */
/* flexbox */
/* -------------------------- */
/* x_type01 スマホ縦並び、TB横並び */
.flexible_x_type01 {
  display: flex;
  flex-direction: column;
}

/* x_type02 スマホ横並び、TB縦並び */
.flexible_x_type02 {
  display: flex;
  flex-direction: row;
}

/* x_type03 横並び */
.flexible_x_type03 {
  display: flex;
  flex-direction: row;
}

/* x_type04 横並び折返し */
.flexible_x_type04 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

/* y_type01 縦並び */
.flexible_y_type01 {
  display: flex;
  flex-direction: column;
}

/* -------------------------- */
/* bg */
/* -------------------------- */
.bg_color01 {
  background: linear-gradient(to right, #5CCE7A, #9DCE5C);
}

.bg_color02 {
  position: relative;
}
.bg_color02::after {
  width: 100%;
  height: 210px;
  background: linear-gradient(to bottom, #fff, #f5f5f5);
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
}
.bg_color02 .container {
  position: relative;
  z-index: 1;
}

/* -------------------------- */
/* title */
/* -------------------------- */
.title_section01 {
  margin-bottom: 16px;
  text-align: center;
}
.title_section01 > span {
  display: block;
  font-family: "Montserrat";
  font-size: 1.2rem;
  font-weight: 600;
}
.title_section01 em {
  display: block;
  font-style: normal;
  font-size: 2.4rem;
  font-weight: bold;
}
.title_section01 em span {
  color: #5CCE7A;
}

.title_section02 {
  margin-bottom: 8px;
  font-size: 2rem;
  font-weight: bold;
}

.title_section03 {
  font-size: 1.6rem;
  font-weight: bold;
}

.title_section04 {
  font-size: 1.8rem;
  font-weight: bold;
}

.title_section05 {
  margin-bottom: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

/* -------------------------- */
/* text */
/* -------------------------- */
.txt_color_white {
  color: #fff !important;
}

/* -------------------------- */
/* btn */
/* -------------------------- */
.btn_entry {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #5CCE7A, #9DCE5C);
  box-shadow: 20px 20px 20px 0 rgba(0, 0, 0, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat";
  position: relative;
}
.btn_entry:hover {
  background: #fff;
  color: #5CCE7A;
}
.btn_entry:hover::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid #5CCE7A;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

.btn_default01 {
  min-width: 240px;
  min-height: 45px;
  padding: 13px;
  background: #262626;
  border: 1px solid #262626;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto";
  position: relative;
  text-align: center;
  box-shadow: 20px 20px 20px 0 rgba(0, 0, 0, 0.15);
}
.btn_default01:hover {
  background: #fff;
  color: #262626;
}
.btn_default01.btn_color01 {
  border-color: #f00;
  color: #f00;
}
.btn_default01.btn_color01:hover {
  background: #f00;
  color: #fff;
}
.btn_default01.btn_color02 {
  border-color: #17547a;
  color: #17547a;
}
.btn_default01.btn_color02:hover {
  background: #17547a;
  color: #fff;
}

.btn_center {
  display: inline-block;
}

.btn_more {
  padding-right: 32px;
  display: inline-block;
  font-family: "Montserrat";
  position: relative;
}
.btn_more::after {
  width: 24px;
  height: 1px;
  margin: auto;
  background: #262626;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 0.3s;
}
.btn_more.btn_more_white {
  color: #fff;
}
.btn_more.btn_more_white::after {
  background: #fff;
}
.btn_more:hover {
  color: #5CCE7A;
}
.btn_more:hover.btn_more_white {
  color: #5CCE7A;
}
.btn_more:hover.btn_more_white::after {
  background: #5CCE7A;
}

.btn_back {
  padding-bottom: 72px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

/* -------------------------- */
/* form */
/* -------------------------- */
.input {
  width: 100%;
  height: 42px;
  padding: 16px 10px;
  background: #f5f5f5;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  font-size: 1.6rem;
  -webkit-appearance: none;
}
.input:focus {
  background-color: #C6ECB7;
  outline: none;
}

.input_size01 {
  width: 100%;
}

.input_size02 {
  width: 100%;
  height: 100px;
}

.input_size03 {
  width: 150px;
}

.input_size04 {
  width: 250px;
}

.input_size05 {
  width: 100%;
}

.input_size06 {
  width: 180px !important;
}

.cms_input_bottom {
  margin-bottom: 10px;
}

.input_btn {
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  transition: all 0.3s;
}
.input_btn:hover {
  opacity: 0.7;
}

.input_check {
  min-height: 24px;
  cursor: pointer;
  display: block;
  position: relative;
}
.input_check input[type=radio],
.input_check input[type=checkbox] {
  display: none;
  position: relative;
}
.input_check input[type=radio] + span,
.input_check input[type=checkbox] + span {
  min-height: 24px;
  padding: 0 0 0 32px;
  display: inline-block;
}
.input_check input[type=radio] + span::before,
.input_check input[type=checkbox] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.2s;
}
.input_check input[type=radio] + span::before {
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid #a7a7a7;
  border-radius: 40px;
}
.input_check input[type=checkbox] + span::before {
  width: 30px;
  height: 30px;
  border: 1px solid #D4D4D4;
  border-radius: 5px;
}
.input_check input[type=checkbox]:checked + span::before {
  background: #D42727;
  border: #D42727;
}
.input_check input[type=checkbox]:checked + span::after {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  content: "";
  position: absolute;
  left: 1px;
  top: 0;
  line-height: 1;
  vertical-align: middle;
}
.input_check input[type=radio]:checked + span::before {
  border-color: #D42727;
}
.input_check input[type=radio]:checked + span::after {
  width: 14px;
  height: 14px;
  background: #D42727;
  border-radius: 15px;
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
}
/* select */
.select_box {
  width: 100%;
  height: 42px;
  background: #f5f5f5;
  position: relative;
}
.select_box:after {
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 6.9px 4px 0 4px;
  border-color: #262626 transparent;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
}
.select_box::-ms-expand {
  display: none;
}
.select_box select {
  width: 100%;
  height: 100%;
  background: #f4f4f4;
  color: #262626;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  text-indent: 0.01px;
  padding: 0 25px 0 10px;
  border: none;
  border-radius: 3px;
  text-indent: 0.01px;
  background-size: auto 45px;
  font-size: 1.4rem;
  position: relative;
  z-index: 4;
}
.select_box select::-ms-expand {
  display: none;
}

.input_fileUpload {
  display: none;
}

.file_label {
  display: block;
}

.file_label_btn {
  margin-bottom: 5px;
}

.file_label_btn,
.file_label_del {
  width: 220px;
  height: 50px;
  background: #262626;
  box-shadow: 0 2px 6px 2px rgba(10, 10, 10, 0.1);
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.file_label_btn:hover,
.file_label_del:hover {
  opacity: 0.7;
}

.file_label_txt {
  margin: 5px 20px 5px 0;
  color: #D42727;
  display: inline-block;
  text-decoration: underline;
  vertical-align: middle;
}
.file_label_txt:empty {
  display: none;
}

.file_label_del {
  width: 80px;
  height: 35px;
  margin: 5px 0 10px;
  background: #D42727;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 35px;
  text-align: center;
  vertical-align: middle;
}

.filesend {
  display: none;
}

.required {
  width: 42px;
  height: 20px;
  margin-left: 10px;
  background: #D42727;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  position: absolute;
  right: 0;
  top: 10px;
  text-align: center;
  vertical-align: middle;
}

.error_txt {
  padding-top: 5px;
  color: #D42727;
  font-weight: 500;
}
.error_txt:empty {
  display: none;
}

/* -------------------------- */
/* list */
/* -------------------------- */
.list_disc01 > li {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.6;
  position: relative;
}
.list_disc01 > li::before {
  content: "・";
}

.list_disc02 {
  margin-left: 1em;
}
.list_disc02 > li {
  list-style: disc;
}

.list_decimel {
  padding: 0;
}
.list_decimel > li {
  margin-left: 1.2em;
  list-style: decimal;
  line-height: 1.6;
}

.list_caution > li {
  padding-left: 1em;
  font-size: 1.2rem;
  line-height: 1.4;
  text-indent: -1em;
}
.list_caution > li a {
  color: #444;
  text-decoration: underline;
}

.list_count {
  padding: 0;
  counter-reset: qumeru-counter;
  list-style: none;
}
.list_count > li {
  position: relative;
}
.list_count > li:before {
  content: counter(qumeru-counter);
  counter-increment: qumeru-counter 1;
}

.page_link {
  margin-bottom: 72px;
}
.page_link li:not(:last-child) {
  margin-bottom: 8px;
}
.page_link li .btn_default01 {
  min-width: auto;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
}

.pager {
  overflow: hidden;
}
.pager .container {
  display: flex;
  justify-content: center;
}
.pager .pager_list {
  margin: 0 -2px;
  display: flex;
  flex-wrap: wrap;
  letter-spacing: -4px;
}
.pager .pager_list li {
  margin: 0 2px;
  letter-spacing: 0;
}
.pager .pager_list li a, .pager .pager_list li span {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto";
  line-height: 1;
}
.pager .pager_list li a {
  background: #000;
  border: 1px solid #000;
  color: #fff;
  cursor: pointer;
}
.pager .pager_list li span, .pager .pager_list li a:hover {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  opacity: 1;
  text-decoration: none;
}
.pager .pager_list li.pager_list_link a, .pager .pager_list li.pager_list_link span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* -------------------------- */
/* table */
/* -------------------------- */
.table_default {
  background: #fff;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  text-align: center;
}
.table_default dt {
  width: 100%;
  padding-top: 10px;
  font-weight: bold;
}
.table_default dt:nth-of-type(even) {
  background: #f5f5f5;
}
.table_default dd {
  width: 100%;
  padding: 5px 10px 10px 10px;
}
.table_default dd:nth-of-type(even) {
  background: #f5f5f5;
}

.table_line {
  width: auto;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  align-items: center;
}
.table_line > dt, .table_line > dd {
  width: 100%;
}
.table_line > dt {
  padding: 10px 0 0;
  font-weight: bold;
  position: relative;
}
.table_line > dd {
  padding: 10px 0;
}
.table_line > dd:not(:last-of-type) {
  border-bottom: 1px solid #ddd;
}
.table_line > dd a {
  color: #D42727;
  text-decoration: underline;
  word-break: break-all;
}

/* -------------------------- */
/* flexbox */
/* -------------------------- */
/* x_type01 スマホ縦並び、TB横並び */
.flexible_x_type01 {
  display: flex;
  flex-direction: column;
}

/* x_type02 スマホ横並び、TB縦並び */
.flexible_x_type02 {
  display: flex;
  flex-direction: row;
}

/* x_type03 横並び */
.flexible_x_type03 {
  display: flex;
  flex-direction: row;
}

/* x_type04 横並び折返し */
.flexible_x_type04 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

/* y_type01 縦並び */
.flexible_y_type01 {
  display: flex;
  flex-direction: column;
}

/* -------------------------- */
/* bg */
/* -------------------------- */
.bg_color01 {
  background: linear-gradient(to right, #5CCE7A, #9DCE5C);
}

.bg_color02 {
  position: relative;
}
.bg_color02::after {
  width: 100%;
  height: 210px;
  background: linear-gradient(to bottom, #fff, #f5f5f5);
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
}
.bg_color02 .container {
  position: relative;
  z-index: 1;
}

/* -------------------------- */
/* title */
/* -------------------------- */
.title_section01 {
  margin-bottom: 16px;
  text-align: center;
}
.title_section01 > span {
  display: block;
  font-family: "Montserrat";
  font-size: 1.2rem;
  font-weight: 600;
}
.title_section01 em {
  display: block;
  font-style: normal;
  font-size: 2.4rem;
  font-weight: bold;
}
.title_section01 em span {
  color: #5CCE7A;
}

.title_section02 {
  margin-bottom: 8px;
  font-size: 2rem;
  font-weight: bold;
}

.title_section03 {
  font-size: 1.6rem;
  font-weight: bold;
}

.title_section04 {
  font-size: 1.8rem;
  font-weight: bold;
}

.title_section05 {
  margin-bottom: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

/* -------------------------- */
/* text */
/* -------------------------- */
.txt_color_white {
  color: #fff !important;
}

/* -------------------------- */
/* btn */
/* -------------------------- */
.btn_entry {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #5CCE7A, #9DCE5C);
  box-shadow: 20px 20px 20px 0 rgba(0, 0, 0, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat";
  position: relative;
}
.btn_entry:hover {
  background: #fff;
  color: #5CCE7A;
}
.btn_entry:hover::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid #5cce7a;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}
.btn_visit {
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to right, #5cce7a, #9dce5c); */
  background: #fff;
  box-shadow: 20px 20px 20px 0 rgba(0, 0, 0, 0.15);
  color: #5cce7a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat";
  position: relative;
  border: 1px solid #5cce7a;
}
.btn_visit:hover {
  background: #5cce7a;
  color: #fff;
}
.btn_visit:hover::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  /* border: 1px solid #fff; */
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

.btn_default01 {
  min-width: 240px;
  min-height: 45px;
  padding: 13px;
  background: #262626;
  border: 1px solid #262626;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto";
  position: relative;
  text-align: center;
  box-shadow: 20px 20px 20px 0 rgba(0, 0, 0, 0.15);
}
.btn_default01:hover {
  background: #fff;
  color: #262626;
}
.btn_default01.btn_color01 {
  border-color: #f00;
  color: #f00;
}
.btn_default01.btn_color01:hover {
  background: #f00;
  color: #fff;
}
.btn_default01.btn_color02 {
  border-color: #17547a;
  color: #17547a;
}
.btn_default01.btn_color02:hover {
  background: #17547a;
  color: #fff;
}

.btn_center {
  display: inline-block;
}

.btn_more {
  padding-right: 32px;
  display: inline-block;
  font-family: "Montserrat";
  position: relative;
}
.btn_more::after {
  width: 24px;
  height: 1px;
  margin: auto;
  background: #262626;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 0.3s;
}
.btn_more.btn_more_white {
  color: #fff;
}
.btn_more.btn_more_white::after {
  background: #fff;
}
.btn_more:hover {
  color: #5CCE7A;
}
.btn_more:hover.btn_more_white {
  color: #5CCE7A;
}
.btn_more:hover.btn_more_white::after {
  background: #5CCE7A;
}

.btn_back {
  padding-bottom: 72px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

/* -------------------------- */
/* form */
/* -------------------------- */
.input {
  width: 100%;
  height: 42px;
  padding: 16px 10px;
  background: #f5f5f5;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  font-size: 1.6rem;
  -webkit-appearance: none;
}
.input:focus {
  background-color: #C6ECB7;
  outline: none;
}

.input_size01 {
  width: 100%;
}

.input_size02 {
  width: 100%;
  height: 100px;
}

.input_size03 {
  width: 150px;
}

.input_size04 {
  width: 250px;
}

.input_size05 {
  width: 100%;
}

.input_size06 {
  width: 180px !important;
}

.cms_input_bottom {
  margin-bottom: 10px;
}

.input_btn {
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  transition: all 0.3s;
}
.input_btn:hover {
  opacity: 0.7;
}

.input_check {
  min-height: 24px;
  cursor: pointer;
  display: block;
  position: relative;
}
.input_check input[type=radio],
.input_check input[type=checkbox] {
  display: none;
  position: relative;
}
.input_check input[type=radio] + span,
.input_check input[type=checkbox] + span {
  min-height: 24px;
  padding: 0 0 0 32px;
  display: inline-block;
}
.input_check input[type=radio] + span::before,
.input_check input[type=checkbox] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.2s;
}
.input_check input[type=radio] + span::before {
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid #a7a7a7;
  border-radius: 40px;
}
.input_check input[type=checkbox] + span::before {
  width: 30px;
  height: 30px;
  border: 1px solid #D4D4D4;
  border-radius: 5px;
}
.input_check input[type=checkbox]:checked + span::before {
  background: #D42727;
  border: #D42727;
}
.input_check input[type=checkbox]:checked + span::after {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  content: "";
  position: absolute;
  left: 1px;
  top: 0;
  line-height: 1;
  vertical-align: middle;
}
.input_check input[type=radio]:checked + span::before {
  border-color: #D42727;
}
.input_check input[type=radio]:checked + span::after {
  width: 14px;
  height: 14px;
  background: #D42727;
  border-radius: 15px;
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
}
/* select */
.select_box {
  width: 100%;
  height: 42px;
  background: #f5f5f5;
  position: relative;
}
.select_box:after {
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 6.9px 4px 0 4px;
  border-color: #262626 transparent;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
}
.select_box::-ms-expand {
  display: none;
}
.select_box select {
  width: 100%;
  height: 100%;
  background: #f4f4f4;
  color: #262626;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  text-indent: 0.01px;
  padding: 0 25px 0 10px;
  border: none;
  border-radius: 3px;
  text-indent: 0.01px;
  background-size: auto 45px;
  font-size: 1.4rem;
  position: relative;
  z-index: 4;
}
.select_box select::-ms-expand {
  display: none;
}

.input_fileUpload {
  display: none;
}

.file_label {
  display: block;
}

.file_label_btn {
  margin-bottom: 5px;
}

.file_label_btn,
.file_label_del {
  width: 220px;
  height: 50px;
  background: #262626;
  box-shadow: 0 2px 6px 2px rgba(10, 10, 10, 0.1);
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.file_label_btn:hover,
.file_label_del:hover {
  opacity: 0.7;
}

.file_label_txt {
  margin: 5px 20px 5px 0;
  color: #D42727;
  display: inline-block;
  text-decoration: underline;
  vertical-align: middle;
}
.file_label_txt:empty {
  display: none;
}

.file_label_del {
  width: 80px;
  height: 35px;
  margin: 5px 0 10px;
  background: #D42727;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 35px;
  text-align: center;
  vertical-align: middle;
}

.filesend {
  display: none;
}

.required {
  width: 42px;
  height: 20px;
  margin-left: 10px;
  background: #D42727;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  position: absolute;
  right: 0;
  top: 10px;
  text-align: center;
  vertical-align: middle;
}

.error_txt {
  padding-top: 5px;
  color: #D42727;
  font-weight: 500;
}
.error_txt:empty {
  display: none;
}

/* -------------------------- */
/* list */
/* -------------------------- */
.list_disc01 > li {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.6;
  position: relative;
}
.list_disc01 > li::before {
  content: "・";
}

.list_disc02 {
  margin-left: 1em;
}
.list_disc02 > li {
  list-style: disc;
}

.list_decimel {
  padding: 0;
}
.list_decimel > li {
  margin-left: 1.2em;
  list-style: decimal;
  line-height: 1.6;
}

.list_caution > li {
  padding-left: 1em;
  font-size: 1.2rem;
  line-height: 1.4;
  text-indent: -1em;
}
.list_caution > li a {
  color: #444;
  text-decoration: underline;
}

.list_count {
  padding: 0;
  counter-reset: qumeru-counter;
  list-style: none;
}
.list_count > li {
  position: relative;
}
.list_count > li:before {
  content: counter(qumeru-counter);
  counter-increment: qumeru-counter 1;
}

.page_link {
  margin-bottom: 72px;
}
.page_link li:not(:last-child) {
  margin-bottom: 8px;
}
.page_link li .btn_default01 {
  min-width: auto;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
}

.pager {
  overflow: hidden;
}
.pager .container {
  display: flex;
  justify-content: center;
}
.pager .pager_list {
  margin: 0 -2px;
  display: flex;
  flex-wrap: wrap;
  letter-spacing: -4px;
}
.pager .pager_list li {
  margin: 0 2px;
  letter-spacing: 0;
}
.pager .pager_list li a, .pager .pager_list li span {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto";
  line-height: 1;
}
.pager .pager_list li a {
  background: #000;
  border: 1px solid #000;
  color: #fff;
  cursor: pointer;
}
.pager .pager_list li span, .pager .pager_list li a:hover {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  opacity: 1;
  text-decoration: none;
}
.pager .pager_list li.pager_list_link a, .pager .pager_list li.pager_list_link span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* -------------------------- */
/* table */
/* -------------------------- */
.table_default {
  background: #fff;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  text-align: center;
}
.table_default dt {
  width: 100%;
  padding-top: 10px;
  font-weight: bold;
}
.table_default dt:nth-of-type(even) {
  background: #f5f5f5;
}
.table_default dd {
  width: 100%;
  padding: 5px 10px 10px 10px;
}
.table_default dd:nth-of-type(even) {
  background: #f5f5f5;
}

.table_line {
  width: auto;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  align-items: center;
}
.table_line > dt, .table_line > dd {
  width: 100%;
}
.table_line > dt {
  padding: 10px 0 0;
  font-weight: bold;
  position: relative;
}
.table_line > dd {
  padding: 10px 0;
}
.table_line > dd:not(:last-of-type) {
  border-bottom: 1px solid #ddd;
}
.table_line > dd a {
  color: #D42727;
  text-decoration: underline;
  word-break: break-all;
}

/* -------------------------- */
/* webp */
/* -------------------------- */
.webp .contents_head {
  background-image: url(/images/recruit/common/bg_main.webp);
}

.no-webp .contents_head {
  background-image: url(/images/recruit/common/bg_main.jpg);
}

/* -------------------------- */
/* header */
/* -------------------------- */
.scroll {
  overflow: hidden;
}

.logo {
  position: relative;
}
.logo a {
  display: flex;
  align-items: center;
}
.logo a .thum_img {
  width: 106px;
  margin-right: 12px;
  display: block;
}
.logo a span {
  display: block;
  font-family: "Roboto";
  font-size: 1.2rem;
  line-height: 1.2;
}
.logo a:hover {
  opacity: 0.7;
}

.header {
  width: 100%;
  height: 60px;
  padding-left: 15px;
  display: flex;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  transition: all 0.3s;
  z-index: 100;
}
.header::before {
  width: 100%;
  height: 50px;
}
.header .logo a {
  color: #fff;
}
.header .logo a .logo_black {
  display: none;
}
.header .logo a span {
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.header .js_hamburger,
.header .js_hamburger span {
  display: inline-block;
  box-sizing: border-box;
}
.header .js_hamburger {
  width: 60px;
  height: 60px;
  background: linear-gradient(to right, #5CCE7A, #9DCE5C);
  cursor: pointer;
  position: fixed;
  right: 0;
  top: 0;
  text-align: center;
  z-index: 1000;
}
.header .js_hamburger span {
  width: 32px;
  height: 1px;
  background: #fff;
  position: absolute;
  right: 14px;
  transition: all 0.4s;
}
.header .js_hamburger span:first-child {
  top: 22px;
}
.header .js_hamburger span:nth-child(even) {
  top: 30px;
}
.header .js_hamburger span:last-child {
  top: 38px;
}
.header .js_hamburger.active span:first-child {
  transform: translateY(10px) rotate(-45deg);
  top: 19px;
}
.header .js_hamburger.active span:nth-child(even) {
  opacity: 0;
}
.header .js_hamburger.active span:last-child {
  transform: translateY(-5px) rotate(45deg);
  top: 35px;
}
.header .js_hamburger.active + .global_navi {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.header .global_navi {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  display: none;
}
.header .global_navi .global_navi_wrap {
  width: 80%;
}
.header .global_navi .global_navi_inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.header .global_navi .global_navi_inner .global_navi_inner_list {
  width: 100%;
  margin-bottom: 16px;
  border-top: 1px solid #ddd;
}
.header .global_navi .global_navi_inner .global_navi_inner_list > li {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  position: relative;
}
.header .global_navi .global_navi_inner .global_navi_inner_list > li > a {
  padding: 12px 16px;
  color: #262626;
  display: flex;
  align-items: center;
  font-weight: bold;
}
.header .global_navi .global_navi_inner .global_navi_inner_list > li > a span {
  min-width: 100px;
  padding-right: 8px;
  display: block;
  font-family: "Roboto";
  font-size: 1.3rem;
}
.header .global_navi .global_navi_inner .global_navi_inner_list > li > a em {
  display: block;
  font-style: normal;
  font-size: 1.6rem;
}
.header .global_navi .global_navi_inner .global_navi_inner_list > li > a:hover {
  color: #5CCE7A;
}
.header .header_entry {
  width: 50%;
  height: 60px;
  background: #fff;
  font-size: 2rem;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
}
.header .header_entry .btn_entry {
  box-shadow: 20px 20px 5px 0 rgba(0, 0, 0, 0.5);
}
.header .header_visit {
  width: 50%;
  height: 60px;
  background: #fff;
  font-size: 2rem;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.header .header_visit .btn_visit {
  box-shadow: 20px 20px 5px 0 rgba(0, 0, 0, 0.5);
}
.header.fixed {
  background: rgba(255, 255, 255, 0.8);
}
.header.fixed .logo a .logo_white {
  display: none;
}
.header.fixed .logo a .logo_black {
  display: block;
}
.header.fixed .logo a span {
  color: #262626;
  text-shadow: none;
}
.header.fixed .global_navi .global_navi_inner .global_navi_inner_list > li a {
  color: #262626;
}
.header.fixed .global_navi .global_navi_inner .global_navi_inner_list > li a:hover {
  color: #5CCE7A;
}
.header.fixed .header_entry .btn_entry {
  box-shadow: none;
}
.header.fixed .header_visit .btn_visit {
  box-shadow: none;
}

/* -------------------------- */
/* content */
/* -------------------------- */
.breadcrumb {
  padding: 8px 0 32px;
  position: relative;
}
.breadcrumb .breadcrumb_list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.breadcrumb .breadcrumb_list li {
  font-size: 1.4rem;
  overflow: hidden;
  position: relative;
}
.breadcrumb .breadcrumb_list li a {
  padding-right: 8px;
  color: #000;
  font-size: 1.2rem;
  font-weight: 500;
}
.breadcrumb .breadcrumb_list li a:hover {
  color: #5CCE7A;
  text-decoration: underline;
}
.breadcrumb .breadcrumb_list li:last-child a {
  color: #5CCE7A;
}
.breadcrumb .breadcrumb_list li:not(:last-child):after {
  margin: 0 9px 0 0;
  content: "－";
  font-size: 1.1rem;
  color: #000;
}

.contents_head {
  height: 250px;
  background: no-repeat center center/cover;
  position: relative;
}
.contents_head::before {
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), transparent);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}
.contents_head .container {
  height: 100%;
  display: flex;
  align-items: center;
}
.contents_head .title_section01 {
  padding-top: 60px;
  text-align: left;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.contents_head .title_section01 span {
  color: #fff;
  font-size: 1.4rem;
}
.contents_head .title_section01 em {
  color: #fff;
  font-size: 2.6rem;
}
.contents_head.contents_head_thin {
  height: 220px;
}

.tour-info {
  margin-bottom: 25px;
  margin-inline: 15px;
}

.tour-info .container {
  background: #f5f5f5;
  max-width: 800px;
  margin-inline: auto;
  padding: 16px;
}
.tour-info .txt_normal {
  margin-inline: auto;
  max-width: max-content;
  line-height: 2.2;
  color: #262626;
}
.tour-info .txt_normal a {
  margin-inline: auto;
  max-width: max-content;
  line-height: 2.2;
  color: #262626;
  text-decoration: underline;
  transform: opacity 0.3s;
}

.tour-info .txt_normal a:hover {
  opacity: 0.8;
}

.intro {
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.intro .txt_normal {
  max-width: 860px;
  margin: 0 auto;
  line-height: 2.2;
}
.intro .txt_normal:nth-of-type(2) {
  margin-top: 24px;
}

.work-scene_list {
  background: #fff;
}
.work-scene_list a {
  color: #262626;
}
.work-scene_list a:hover .thum_img {
  opacity: 0.7;
}
.work-scene_list a:hover .work-scene_list_inner .work-scene_list_title {
  color: #5CCE7A;
}
.work-scene_list .work-scene_list_inner {
  padding: 8px;
  text-align: left;
}
.work-scene_list .work-scene_list_inner .work-scene_list_txt {
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2;
}
.work-scene_list .work-scene_list_inner .work-scene_list_title {
  display: block;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: bold;
  transition: all 0.3s;
}
.work-scene_list .thum_img {
  transition: all 0.3s;
}

.contact_form {
  padding-bottom: 72px;
  text-align: left;
}
.contact_form .table_line {
  max-width: 864px;
  margin: 0 auto 32px;
}
.contact_form .input_check_list01 li {
  margin-bottom: 10px;
  font-weight: 500;
}
.contact_form .input_check_list01 li:not(:last-child) {
  margin-bottom: 10px;
}
.contact_form .input_check_list02 {
  display: flex;
  flex-wrap: wrap;
}
.contact_form .input_check_list02 li {
  margin-right: 25px;
  font-weight: 500;
}
.contact_form .add {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.contact_form .add span {
  width: 25px;
  display: inline-block;
}
.contact_form .add input:last-of-type {
  margin-top: 10px;
}
.contact_form .add input:last-of-type {
  width: calc(100% - 25px);
  margin-left: 25px;
}
.contact_form .add .txt_normal {
  padding: 0 0 10px 30px;
}
.contact_form .add .add_txt {
  width: 100%;
}
.contact_form .agree {
  width: 100%;
  height: 250px;
  padding: 15px;
  background: #f5f5f5;
  border: 2px solid #b1b1b1;
  border-radius: 5px;
  overflow-y: scroll;
}
.contact_form .input_agree {
  padding: 25px 0;
  text-align: center;
}
.contact_form .input_agree .input_check {
  display: inline-block;
}
.contact_form .btn_submit .txt_c {
  margin-top: 16px;
}
.contact_form .btn_submit .txt_c a {
  color: #D42727;
  text-decoration: underline;
}
.contact_form .btn_submit .txt_c a:hover {
  color: #D42727;
}
.contact_form .submit_box {
  text-align: center;
  transition: all 0.3s;
}
.contact_form .submit_box .btn_entry {
  max-width: 350px;
  height: 60px;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.3s;
}
.contact_form .submit_box .btn_entry input {
  width: 100%;
  height: 100%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  border: none;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  transition: all 0.3s;
  z-index: 1;
}
.contact_form .submit_box .btn_entry:hover input {
  color: #5cce7a;
}
.contact_form .submit_box .btn_visit {
  max-width: 350px;
  height: 60px;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.3s;
}
.contact_form .submit_box .btn_visit input {
  width: 100%;
  height: 100%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  border: none;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  transition: all 0.3s;
  z-index: 1;
}
.contact_form .submit_box .btn_visit:hover input {
  color: #5cce7a;
}
.contact_form .txt_normal {
  margin-top: 24px;
  text-align: center;
}
.contact_form .txt_normal a {
  color: #00B27B;
  font-weight: bold;
  text-decoration: underline;
}
.contact_form .txt_normal a:hover {
  text-decoration: none;
}

.entry_footer {
  position: relative;
  z-index: 1;
}
.entry_footer .container {
  position: relative;
}
.entry_footer .entry_footer_btn {
  width: calc((100% - 30px) / 2);
  height: 60px;
  position: absolute;
  /* left: 15px; */
  right: 15px;
  top: -30px;
  font-size: 1.6rem;
}

.entry_footer .visit_footer_btn {
  width: calc((100% - 30px) / 2);
  height: 60px;
  position: absolute;
  left: 15px;
  top: -30px;
  font-size: 1.6rem;
}

.link_anker {
  margin-top: -60px;
  padding-top: 60px;
}

/* -------------------------- */
/* footer */
/* -------------------------- */
.grecaptcha-badge {
  z-index: 10000;
}

.footer {
  padding-bottom: 60px;
}

.footer_contents {
  padding-top: 96px;
}

.footer_company {
  margin-bottom: 48px;
  text-align: center;
}
.footer_company .footer_company_logo {
  margin-bottom: 32px;
}
.footer_company .footer_company_logo a {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.footer_company .footer_company_logo span {
  color: #262626;
}
.footer_company .footer_company_list {
  display: inline-block;
  text-align: left;
}
.footer_company .footer_company_list dt {
  font-size: 1.6rem;
  font-weight: bold;
}
.footer_company .footer_company_list dd {
  font-size: 1.2rem;
}
.footer_company .footer_company_list dd:not(:last-of-type) {
  margin-bottom: 24px;
}

.footer_navi {
  margin-bottom: 24px;
}
.footer_navi .footer_navi_list {
  border: 1px solid #ddd;
}
.footer_navi .footer_navi_list li a {
  color: #262626;
  display: block;
}
.footer_navi .footer_navi_list li a:hover {
  color: #5CCE7A;
}
.footer_navi .footer_navi_list > li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.footer_navi .footer_navi_list > li > a {
  padding: 12px 8px;
  font-size: 1.6rem;
  font-weight: bold;
}
.footer_navi .footer_navi_list_third li {
  padding: 8px 8px 8px 24px;
  border-top: 1px dashed #ddd;
  position: relative;
}
.footer_navi .footer_navi_list_third li::before {
  width: 5px;
  height: 5px;
  background: #262626;
  border-radius: 100%;
  content: "";
  position: absolute;
  left: 12px;
  top: 16px;
}

.footer_navi_link a {
  color: #262626;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
}
.footer_navi_link a .icon {
  margin-right: 8px;
  fill: #262626;
  transition: all 0.3s;
}
.footer_navi_link a:hover {
  color: #5CCE7A;
}
.footer_navi_link a:hover .icon {
  fill: #5CCE7A;
}

.copyright {
  padding: 48px 0 32px;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .container {
    padding: 0 30px;
  }
  .visible_xs {
    display: none;
  }
  .hidden_xs {
    display: block;
  }
  .txt_normal {
    font-size: 1.4rem;
  }
  .flexible_x_type01 {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .flexible_x_type02 {
    flex-direction: column;
  }
  .btn_back {
    padding-bottom: 96px;
  }
  .required {
    top: 35px;
  }
  .page_link {
    margin: 0 -8px 96px;
    display: flex;
    justify-content: center;
  }
  .page_link li {
    width: 33.3333333333%;
    padding: 0 8px;
  }
  .page_link li:not(:last-child) {
    margin-bottom: 0;
  }
  .pager .container {
    justify-content: flex-start;
  }
  .pager .pager_list {
    margin: 0 -6px;
  }
  .pager .pager_list li {
    margin: 0 6px;
  }
  .pager .pager_list li a, .pager .pager_list li span {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  .table_default {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
  .table_default dt {
    width: 30%;
    padding: 10px 10px 10px 32px;
  }
  .table_default dd {
    width: 70%;
    padding: 10px;
  }
  .table_line {
    border-top: none;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .table_line > dt {
    width: 220px;
    padding: 25px 16px;
  }
  .table_line > dt:not(:last-of-type) {
    border-bottom: 1px solid #ddd;
  }
  .table_line > dt:first-of-type {
    border-top: 1px solid #ddd;
  }
  .table_line > dd {
    width: calc(100% - 220px);
    padding: 25px 16px;
  }
  .table_line > dd:first-of-type {
    border-top: 1px solid #ddd;
  }
  .flexible_x_type01 {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .flexible_x_type02 {
    flex-direction: column;
  }
  .btn_back {
    padding-bottom: 96px;
  }
  .required {
    top: 35px;
  }
  .page_link {
    margin: 0 -8px 96px;
    display: flex;
    justify-content: center;
  }
  .page_link li {
    width: 33.3333333333%;
    padding: 0 8px;
  }
  .page_link li:not(:last-child) {
    margin-bottom: 0;
  }
  .pager .container {
    justify-content: flex-start;
  }
  .pager .pager_list {
    margin: 0 -6px;
  }
  .pager .pager_list li {
    margin: 0 6px;
  }
  .pager .pager_list li a, .pager .pager_list li span {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  .table_default {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
  .table_default dt {
    width: 30%;
    padding: 10px 10px 10px 32px;
  }
  .table_default dd {
    width: 70%;
    padding: 10px;
  }
  .table_line {
    border-top: none;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .table_line > dt {
    width: 220px;
    padding: 25px 16px;
  }
  .table_line > dt:not(:last-of-type) {
    border-bottom: 1px solid #ddd;
  }
  .table_line > dt:first-of-type {
    border-top: 1px solid #ddd;
  }
  .table_line > dd {
    width: calc(100% - 220px);
    padding: 25px 16px;
  }
  .table_line > dd:first-of-type {
    border-top: 1px solid #ddd;
  }
  .logo a .thum_img {
    margin-right: 8px;
  }
  .header {
    padding-left: 30px;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list {
    margin-top: 0;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list > li > a {
    padding: 12px;
  }
  .breadcrumb {
    padding: 16px 0 48px;
  }
  .intro.intro_center .txt_normal {
    text-align: center;
  }
  .work-scene_list .work-scene_list_inner {
    padding: 16px;
  }
  .contact_form {
    padding-bottom: 96px;
  }
  .contact_form .table_line dt {
    padding: 35px 45px 35px 16px;
  }
  .contact_form .table_line.confirm > dt {
    padding: 32px 45px 32px 16px;
  }
  .contact_form .table_line.confirm > dt .required {
    top: 34px;
  }
  .contact_form .table_line.confirm > dd {
    padding: 32px 16px;
  }
  .contact_form .input_check_list01 {
    margin: 8px 0 0;
    display: flex;
    flex-wrap: wrap;
  }
  .contact_form .input_check_list01 li {
    margin: 0 25px 0 0;
  }
  .contact_form .input_check_list02 {
    margin: 8px 0 0;
  }
  .contact_form .add .txt_normal {
    padding: 0 0 0 15px;
  }
  .entry_footer .entry_footer_btn {
    width: calc((100% - 60px) / 2);
    height: 100px;
    /* left: 30px; */
    right: 30px;
    top: -50px;
    font-size: 1.8rem;
  }
  .entry_footer .visit_footer_btn {
    width: calc((100% - 60px) / 2);
    height: 100px;
    left: 30px;
    top: -50px;
    font-size: 1.8rem;
  }
  .footer_contents {
    padding-top: 112px;
  }
  .footer_navi .footer_navi_list {
    border: none;
    display: flex;
    flex-wrap: wrap;
  }
  .footer_navi .footer_navi_list > li {
    width: 25%;
  }
  .footer_navi .footer_navi_list > li:not(:last-child) {
    border: none;
  }
  .footer_navi .footer_navi_list > li > a {
    margin-bottom: 8px;
    padding: 0;
  }
  .footer_navi .footer_navi_list_third li {
    padding: 0 0 0 12px;
    border: none;
  }
  .footer_navi .footer_navi_list_third li::before {
    left: 0;
    top: 8px;
  }

  .tour-info {
    margin-inline: 30px;
  }

  .tour-info .container {
    padding: 22px 16px;
  }
}

@media only screen and (min-width: 1280px) {
  .container {
    padding: 0 50px;
  }
  .txt_normal {
    font-size: 1.6rem;
  }
  .title_section01 {
    margin-bottom: 24px;
    line-height: 1.4;
  }
  .title_section01 > span {
    font-size: 1.6rem;
  }
  .title_section01 em {
    font-size: 4.8rem;
  }
  .title_section02 {
    margin-bottom: 16px;
    font-size: 3.2rem;
  }
  .title_section03 {
    font-size: 1.8rem;
  }
  .title_section04 {
    font-size: 2.4rem;
  }
  .title_section05 {
    margin-bottom: 32px;
    font-size: 4rem;
  }
  .btn_default01 {
    min-height: 60px;
  }
  .btn_back {
    padding-bottom: 180px;
  }
  .input {
    height: 50px;
    padding: 16px;
  }
  .input_size02 {
    height: 160px;
  }
  .input_size05 {
    width: 400px;
  }
  .input_size06 {
    width: 250px !important;
  }
  .input_check input[type=checkbox] + span::before {
    width: 35px;
    height: 35px;
  }
  .input_check input[type=checkbox]:checked + span::after {
    width: 50px;
    height: 50px;
    background-size: 30px auto;
  }
  .select_box {
    height: 55px;
  }
  .select_box:after {
    border-width: 9px 5px 0 5px;
    right: 16px;
  }
  .select_box select {
    font-size: 1.6rem;
  }
  .file_label_btn,
.file_label_del {
    height: 45px;
  }
  .file_label_del {
    height: 35px;
  }
  .required {
    width: 50px;
    height: 20px;
    font-size: 1.2rem;
    top: 38px;
  }
  .list_disc01 > li {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .list_disc02 > li {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .list_decimel {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .list_caution > li {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .list_count > li {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .page_link {
    margin: 0 -12px 125px;
  }
  .page_link li {
    padding: 0 12px;
  }
  .page_link li .btn_default01 {
    height: 77px;
  }
  .table_default {
    font-size: 1.6rem;
  }
  .table_default dt {
    width: 25%;
    padding: 16px 16px 16px 60px;
  }
  .table_default dd {
    width: 75%;
    padding: 16px 60px 16px 16px;
  }
  .table_line {
    font-size: 1.6rem;
  }
  .table_line > dt {
    width: 260px;
    padding: 20px 80px 20px 20px;
  }
  .table_line > dd {
    width: calc(100% - 260px);
    padding: 20px 80px 20px 20px;
  }
  .title_section01 {
    margin-bottom: 24px;
    line-height: 1.4;
  }
  .title_section01 > span {
    font-size: 1.6rem;
  }
  .title_section01 em {
    font-size: 4.8rem;
  }
  .title_section02 {
    margin-bottom: 16px;
    font-size: 3.2rem;
  }
  .title_section03 {
    font-size: 1.8rem;
  }
  .title_section04 {
    font-size: 2.4rem;
  }
  .title_section05 {
    margin-bottom: 32px;
    font-size: 4rem;
  }
  .btn_default01 {
    min-height: 60px;
  }
  .btn_back {
    padding-bottom: 180px;
  }
  .input {
    height: 50px;
    padding: 16px;
  }
  .input_size02 {
    height: 160px;
  }
  .input_size05 {
    width: 400px;
  }
  .input_size06 {
    width: 250px !important;
  }
  .input_check input[type=checkbox] + span::before {
    width: 35px;
    height: 35px;
  }
  .input_check input[type=checkbox]:checked + span::after {
    width: 50px;
    height: 50px;
    background-size: 30px auto;
  }
  .select_box {
    height: 55px;
  }
  .select_box:after {
    border-width: 9px 5px 0 5px;
    right: 16px;
  }
  .select_box select {
    font-size: 1.6rem;
  }
  .file_label_btn,
.file_label_del {
    height: 45px;
  }
  .file_label_del {
    height: 35px;
  }
  .required {
    width: 50px;
    height: 20px;
    font-size: 1.2rem;
    top: 38px;
  }
  .list_disc01 > li {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .list_disc02 > li {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .list_decimel {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .list_caution > li {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .list_count > li {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .page_link {
    margin: 0 -12px 125px;
  }
  .page_link li {
    padding: 0 12px;
  }
  .page_link li .btn_default01 {
    height: 77px;
  }
  .table_default {
    font-size: 1.6rem;
  }
  .table_default dt {
    width: 25%;
    padding: 16px 16px 16px 60px;
  }
  .table_default dd {
    width: 75%;
    padding: 16px 60px 16px 16px;
  }
  .table_line {
    font-size: 1.6rem;
  }
  .table_line > dt {
    width: 260px;
    padding: 20px 80px 20px 20px;
  }
  .table_line > dd {
    width: calc(100% - 260px);
    padding: 20px 80px 20px 20px;
  }
  .scroll {
    overflow: auto;
  }
  .logo a .thum_img {
    width: 150px;
    margin-right: 16px;
  }
  .logo a span {
    font-size: 1.8rem;
  }
  .header {
    height: 100px;
    padding-left: 45px;
  }
  .header .js_hamburger {
    display: none;
  }
  .header .global_navi {
    width: auto;
    height: 50px;
    margin-right: 215px;
    background: none;
    display: block !important;
    flex: 1;
    position: relative;
    top: inherit;
    left: inherit;
    z-index: 500;
  }
  .header .global_navi .global_navi_wrap {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
  }
  .header .global_navi .global_navi_inner {
    flex-direction: row;
    justify-content: flex-end;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list {
    width: auto;
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    flex: 1;
    border-top: none;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list > li {
    height: 100%;
    border-bottom: none;
    display: flex;
    align-items: center;
    overflow: inherit;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list > li > a {
    padding: 0 13px;
    color: #fff;
    display: block;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list > li > a span {
    padding: 0 0 8px;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list > li > a em {
    letter-spacing: 1px;
  }
  .header .header_visit {
    /* width: 215px; */
    width: 107px;
    height: 100px;
    top: 0;
    right: 107px;
    left: unset;
    bottom: inherit;
    background-color: red;
  }
  .header .header_entry {
    /* width: 215px; */
    width: 107px;
    height: 100px;
    top: 0;
    right: 0;
    bottom: inherit;
  }
  .header.fixed .global_navi .global_navi_inner .global_navi_inner_list > li a {
    text-shadow: none;
  }
  .breadcrumb {
    min-height: 50px;
    padding: 20px 0 56px;
  }
  .breadcrumb .breadcrumb_list {
    min-height: 25px;
  }
  .breadcrumb .breadcrumb_list li a {
    padding-right: 10px;
    font-size: 1.4rem;
  }
  .breadcrumb .breadcrumb_list li:not(:last-child):after {
    margin: 0 10px 0 0;
  }
  .contents_head {
    height: 480px;
  }
  .contents_head::before {
    height: 150px;
  }
  .contents_head .title_section01 {
    padding-top: 100px;
  }
  .contents_head .title_section01 span {
    font-size: 1.6rem;
  }
  .contents_head .title_section01 em {
    font-size: 4.8rem;
  }
  .contents_head.contents_head_thin {
    height: 280px;
  }
  .intro {
    margin-bottom: 64px;
  }
  .intro .txt_normal {
    line-height: 2.6;
  }
  .intro .txt_normal:nth-of-type(2) {
    margin-bottom: 32px;
  }
  .work-scene_list .work-scene_list_inner {
    padding: 24px;
  }
  .work-scene_list .work-scene_list_inner .work-scene_list_txt {
    margin-bottom: 16px;
    font-size: 1.6rem;
  }
  .work-scene_list .work-scene_list_inner .work-scene_list_title {
    font-size: 2rem;
  }
  .contact_form {
    padding-bottom: 126px;
  }
  .contact_form .table_line {
    margin-bottom: 96px;
  }
  .contact_form .table_line dt {
    padding: 35px 64px 35px 48px;
  }
  .contact_form .table_line dd {
    padding: 20px 48px 20px 64px;
  }
  .contact_form .table_line.confirm > dt {
    padding: 32px 64px 32px 48px;
  }
  .contact_form .table_line.confirm > dt .required {
    top: 34px;
  }
  .contact_form .table_line.confirm > dd {
    padding: 32px 35px 32px 64px;
  }
  .contact_form .input_check_list01 {
    margin-top: 10px;
  }
  .contact_form .input_check_list01 li {
    margin-right: 30px;
  }
  .contact_form .input_check_list02 {
    margin-top: 15px;
  }
  .contact_form .input_check_list02 li {
    margin-right: 30px;
  }
  .contact_form .add .txt_normal {
    margin-bottom: 10px;
    padding-left: 25px;
  }
  .contact_form .agree {
    padding: 25px;
  }
  .contact_form .input_agree {
    padding: 45px 0;
  }
  .contact_form .btn_submit .txt_c {
    margin-top: 24px;
  }
  .contact_form .submit_box .btn_entry {
    height: 100px;
  }
  .contact_form .txt_normal {
    margin-top: 40px;
  }
  .entry_footer .entry_footer_btn {
    width: calc((100% - 120px) / 2);
    height: 146px;
    right: 50px;
    top: -73px;
    font-size: 2.4em;
  }
  .entry_footer .visit_footer_btn {
    width: calc((100% - 120px) / 2);
    height: 146px;
    left: 50px;
    top: -73px;
    font-size: 2.4em;
  }
  .link_anker {
    margin-top: -100px;
    padding-top: 100px;
  }
  .footer {
    padding-bottom: 0;
  }
  .footer_contents {
    padding-top: 180px;
    display: flex;
    justify-content: space-between;
  }
  .footer_company {
    margin-bottom: 0;
  }
  .footer_company .footer_company_logo a {
    flex-direction: row;
  }
  .footer_company .footer_company_list {
    display: block;
  }
  .footer_navi_wrap {
    min-width: 630px;
  }
  .footer_navi {
    margin-bottom: 40px;
  }
  .footer_navi .footer_navi_list > li {
    width: auto;
  }
  .footer_navi .footer_navi_list > li:not(:first-child) {
    padding-left: 48px;
  }
  .footer_navi .footer_navi_list_third li:not(:last-child) {
    margin-bottom: 5px;
  }
  .copyright {
    padding: 88px 0 64px;
  }
}
/*# sourceMappingURL=../map/recruit/import.css.map */
