@charset "UTF-8";
/* ======================================================================
 common style index
・reset
・setting
・mixin
・base
・sprite
・utility
・component
・layout
・z-index
====================================================================== */
/* ======================================================================
 reset
====================================================================== */
html {
  overflow-y: scroll;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  font-size: 10px;
}

body {
  line-height: 1;
  color: #000;
}

/* html5doctor.com Reset Stylesheet v1.6.1
  Last Updated: 2010-09-17 Author: Richard Clark - http://richclarkdesign.com Twitter: @rich_clark */
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* YUI 3.4.1 (build 4118) Copyright 2011 Yahoo! Inc. All rights reserved.
Licensed under the BSD License. http://yuilibrary.com/license/ */
/* ======================================================================
 setting
====================================================================== */
/* ======================================================================
 base
====================================================================== */
html {
  font-size: 62.5%;
}

body {
  min-width: 1240px;
  position: relative;
  background: #fff;
  color: #333;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    Meiryo, "hiragino kaku gothic pro", "游ゴシック", YuGothic, Verdana,
    sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  body {
    min-width: 100%;
  }
}
body.js_page_trans {
  opacity: 0;
}

html,
body {
  width: 100%;
  height: 100%;
}

.page {
  width: 100%;
  margin: 0 auto;
}

/* border-box */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* h1 - h6 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
}

/* a */
a:link {
  color: #333;
  text-decoration: none;
  cursor: pointer;
}
a:visited {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #333;
  text-decoration: none;
}
a:active {
  color: #333;
  text-decoration: none;
}
a.green:link {
  color: #0a8c54;
  text-decoration: underline;
  cursor: pointer;
}
a.green:visited {
  color: #0a8c54;
  text-decoration: none;
}
a.green:hover {
  color: #0a8c54;
  text-decoration: none;
}
a.green:active {
  color: #0a8c54;
  text-decoration: none;
}

a[href^="tel"] {
  color: #333;
  text-decoration: none;
  pointer-events: none;
  cursor: text;
}

.iphone a[href^="tel"],
.android a[href^="tel"] {
  color: #0a8c54;
  text-decoration: underline;
}
.iphone a[href^="tel"]:hover,
.android a[href^="tel"]:hover {
  text-decoration: none;
}

/* Text Highlight */
/* button */
button {
  display: block;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

/* input */
input,
textarea,
select {
  display: block;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  border-image: none;
  background: transparent;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
}
@media all and (-ms-high-contrast: none) {
  input,
  textarea,
  select {
    display: none;
  }
}
input::-ms-expand,
textarea::-ms-expand,
select::-ms-expand {
  display: none;
}

@media all and (-ms-high-contrast: none) {
  input[type="radio"] {
    display: none !important;
  }
}

textarea {
  resize: vertical;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #333;
}

/* placeholder */
input:placeholder-shown,
textarea:placeholder-shown {
  color: #333;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #333;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #333;
  opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #333;
  opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #333;
}
input:focus:placeholder-shown,
textarea:focus:placeholder-shown {
  color: #333;
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: #333;
}
input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: #333;
  opacity: 1;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: #333;
  opacity: 1;
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: #333;
}

img {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ======================================================================
 sprite
====================================================================== */
/* =================================
 hoge
================================= */
/* =================================
 hoge
================================= */
/* =================================
 hoge
================================= */
/* ======================================================================
 utility
====================================================================== */
/* =================================
 layout
================================= */
.cf {
  *zoom: 1;
}
.cf:after {
  display: block;
  visibility: hidden;
  clear: both;
  overflow: hidden;
  height: 0;
  content: "\0020";
}

@media screen and (min-width: 769px) {
  .u_pc {
    display: block;
  }
  .topimg-sp .u_pc {
    width: 100%;
    object-fit: cover;
    height: 297px;
  }
  .u_sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .u_pc {
    display: none;
  }

  .u_sp {
    display: block;
  }
}
.u_fixed {
  position: fixed;
  top: 0;
  left: 0;
}

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

/* =================================
 text pt
================================= */
.u_txt_1 {
  font-size: 1.4em;
  line-height: 1.3;
  letter-spacing: 0;
}

.u_txt_2 {
  font-size: 1.1em;
  line-height: 1.3;
  letter-spacing: 0.1;
}

.u_txt_3 {
  font-size: 1.8em;
  line-height: 1.3;
  letter-spacing: 0;
}

.u_txt_4 {
  font-size: 2.6em;
  line-height: 1;
  letter-spacing: 0;
}

.u_txt_5 {
  font-size: 3.2em;
  line-height: 1.5;
  letter-spacing: 0;
}

.u_txt_6 {
  font-size: 1em;
  line-height: 1;
  letter-spacing: 0.1em;
}

/* =================================
 text weight
================================= */
.u_lighter {
  font-weight: lighter;
}

.u_bold {
  font-weight: bold;
}

.red {
  color: red;
}

/* =================================
 text marker
================================= */
.u_marker_1_1 {
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmY2NiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmY2NiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
  background: -moz-linear-gradient(top, #ffff66 0%, #ffff66 100%);
  background: -webkit-linear-gradient(top, #ffff66 0%, #ffff66 100%);
  background: linear-gradient(to bottom, #ffff66 0%, #ffff66 100%);
}

.u_marker_1_2 {
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmNjYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=");
  background: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    #ffff66 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    #ffff66 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    #ffff66 100%
  );
}

/* =================================
 box-shadow
================================= */
.u_box_shadow_1 {
  -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* =================================
 gradation
================================= */
.u_gradient_1 {
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2E5ZTlmMyIvPjxzdG9wIG9mZnNldD0iMTAlIiBzdG9wLWNvbG9yPSIjYTllOWYzIi8+PHN0b3Agb2Zmc2V0PSIyNSUiIHN0b3AtY29sb3I9IiMyZDlkYWUiLz48c3RvcCBvZmZzZXQ9IjM3JSIgc3RvcC1jb2xvcj0iIzJkOWRhZSIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMmQ5ZGFlIi8+PHN0b3Agb2Zmc2V0PSI4MyUiIHN0b3AtY29sb3I9IiMyZDlkYWUiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNiZGY1ZmQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=");
  background: -moz-linear-gradient(
    270deg,
    #a9e9f3 0%,
    #a9e9f3 10%,
    #2d9dae 25%,
    #2d9dae 37%,
    #2d9dae 50%,
    #2d9dae 83%,
    #bdf5fd 100%
  );
  background: -webkit-linear-gradient(
    270deg,
    #a9e9f3 0%,
    #a9e9f3 10%,
    #2d9dae 25%,
    #2d9dae 37%,
    #2d9dae 50%,
    #2d9dae 83%,
    #bdf5fd 100%
  );
  background: linear-gradient(
    180deg,
    #a9e9f3 0%,
    #a9e9f3 10%,
    #2d9dae 25%,
    #2d9dae 37%,
    #2d9dae 50%,
    #2d9dae 83%,
    #bdf5fd 100%
  );
}

/* =================================
 animation
================================= */
/* =================================
 hoge
================================= */
/* ======================================================================
 component
====================================================================== */
/* =================================
 title
================================= */
/* =================================
 buttons
================================= */
/* =================================
 icon
================================= */
.c_ico_1 > .inner {
  width: 50px;
  height: 50px;
  position: relative;
  background: #0a8c54;
  border-bottom: 5px solid #097847;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .c_ico_1 > .inner {
    width: 35px;
    height: 35px;
  }
}
.c_ico_1._pt1 > .inner:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8.5px 8px 8.5px 0;
  border-color: transparent #ffffff transparent transparent;
  top: 15px;
  left: 50%;
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}
@media screen and (max-width: 768px) {
  .c_ico_1._pt1 > .inner:before {
    top: 12px;
    border-width: 6px 6px 6px 0;
  }
}
.c_ico_1._pt1 > .inner:active {
  height: 45px;
  border-bottom: 5px solid #0a8c54;
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}
@media screen and (max-width: 768px) {
  .c_ico_1._pt1 > .inner:active {
    height: 35px;
    border-bottom: 5px solid #097847;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.c_ico_1._pt2 > .inner:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8.5px 0 8.5px 8px;
  border-color: transparent transparent transparent #ffffff;
  top: 15px;
  left: 50%;
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}
@media screen and (max-width: 768px) {
  .c_ico_1._pt2 > .inner:before {
    top: 12px;
    border-width: 6px 0 6px 6px;
  }
}
.c_ico_1._pt2 > .inner:active {
  height: 45px;
  border-bottom: 5px solid #0a8c54;
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}
@media screen and (max-width: 768px) {
  .c_ico_1._pt2 > .inner:active {
    height: 35px;
    border-bottom: 5px solid #097847;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* =================================
 alerts
================================= */
/* =================================
 pager
================================= */
/* =================================
 table
================================= */
/* =================================
 forms
================================= */
.c_input_1 > .inner form {
  background: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.c_input_1 > .inner form > input:placeholder-shown {
  color: #b1b1b1;
}
.c_input_1 > .inner form > input::-webkit-input-placeholder {
  color: #b1b1b1;
}
.c_input_1 > .inner form > input:-moz-placeholder {
  color: #b1b1b1;
  opacity: 1;
}
.c_input_1 > .inner form > input::-moz-placeholder {
  color: #b1b1b1;
  opacity: 1;
}
.c_input_1 > .inner form > input:-ms-input-placeholder {
  color: #b1b1b1;
}
.c_input_1 > .inner form input::-ms-clear {
  visibility: hidden;
}
.c_input_1 > .inner form .select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}
.c_input_1 > .inner form .select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  color: #fff;
  width: 160px;
  height: 55px;
}
.c_input_1 > .inner form .select._active {
  position: relative;
}
.c_input_1 > .inner form .select._active:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8.5px 8px 8.5px;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #097847 rgba(0, 0, 0, 0);
  position: absolute;
  bottom: -18px;
  left: 50px;
}
.c_input_1 > .inner form .select._active .arrows > .inner > .vertical {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c_input_1 > .inner form .select._active .arrows > .inner > .horizontal {
  right: -10px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c_input_1 > .inner form .select-styled {
  height: 55px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  color: #333;
  padding: 0 20px 0 15px;
  line-height: 55px;
  border-right: 1px solid #333;
  font-size: 14px;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.c_input_1 > .inner form .select-styled:hover {
  background-color: rgba(9, 120, 71, 0.2);
}
.c_input_1 > .inner form .select-styled:active,
.c_input_1 > .inner form .select-styled.active {
  background-color: rgba(9, 120, 71, 0.2);
}
.c_input_1 > .inner form .select-options {
  display: none;
  max-height: 260px;
  overflow-y: scroll;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 18px 0 0;
  padding: 10px;
  font-size: 14px;
  list-style: none;
  border-radius: 3px;
  border-top: 5px solid #097847;
  border-bottom: 5px solid #097847;
  border-left: 5px solid #097847;
  border-right: 5px solid #097847;
  background-color: #fff;
}
.c_input_1 > .inner form .select-options.list0 {
  width: 320px;
}
.c_input_1 > .inner form .select-options.list1 {
  width: 485px;
}
.c_input_1 > .inner form .select-options.list3 {
  width: 180px;
}
@media all and (-ms-high-contrast: none) {
  .c_input_1 > .inner form .select-options.list3 {
    width: 175px;
  }
}
.c_input_1 > .inner form .select-options::-webkit-scrollbar {
  width: 6px;
}
.c_input_1 > .inner form .select-options::-webkit-scrollbar-track {
  background: #fff;
}
.c_input_1 > .inner form .select-options::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #c8c8c8;
}
.c_input_1 > .inner form .select-options li {
  margin: 0;
  color: #333;
  padding: 10px 15px;
  border-top: 1px dotted #555;
  font-size: 14px;
}
.c_input_1 > .inner form .select-options li:hover {
  background-color: #eaf4f0;
}
.c_input_1 > .inner form .select-options li:nth-of-type(2) {
  border-top: none;
}
.c_input_1 > .inner form .select-options li[rel="hide"] {
  display: none;
}
.c_input_1 > .inner form .txt {
  width: 300px;
  padding: 0 15px;
  height: 55px;
  line-height: 55px;
  display: inline-block;
  font-size: 14px;
  background: #fff;
}
.c_input_1 > .inner form .submitbtn {
  cursor: pointer;
  width: 160px;
  height: 55px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  background-color: #097847;
}
.c_input_1 > .inner form .submitbtn:hover {
  background-color: #508b71;
}
.c_input_1 > .inner form .arrows {
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 15px;
  height: 15px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.c_input_1 > .inner form .arrows > .inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.c_input_1 > .inner form .arrows > .inner > .vertical,
.c_input_1 > .inner form .arrows > .inner > .horizontal {
  width: 7px;
  height: 1px;
  background: #707070;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.c_input_1 > .inner form .arrows > .inner > .vertical {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c_input_1 > .inner form .arrows > .inner > .horizontal {
  right: -10px;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c_input_2 > .inner form .select {
  position: relative;
}
.c_input_2 > .inner form .select:before {
  position: absolute;
  right: 15px;
  top: 50%;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8.7px 5px 0 5px;
  border-color: #333 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  z-index: 1;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.c_input_2 > .inner form .select select {
  width: 100%;
  height: 45px;
  margin: 10px 0 0;
  border-radius: 3px;
  background: #fff;
  padding: 0 25px 0 10px;
}
.c_input_2 > .inner form input.txt {
  width: 100%;
  height: 45px;
  margin: 10px 0 0;
  background: #fff;
  border-radius: 3px;
  padding: 0 10px;
}
.c_input_2 > .inner form .subbtn {
  width: 100%;
  height: 50px;
  background: #0a8c54;
  border-radius: 3px;
  margin: 10px 0 0;
  position: relative;
}
.c_input_2 > .inner form .subbtn .u_txt_3 {
  color: #fff;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.c_input_2 > .inner form .subbtn .u_txt_3 > img {
  margin: 0 10px 0 0;
}
.c_input_2 > .inner form input.submitbtn {
  width: 100%;
  height: 50px;
  background: transparent;
  border-radius: 3px;
  padding: 0 10px;
}
.c_input_2 > .inner > .u_txt_3 {
  text-align: right;
  margin: 10px 0 20px;
}
.c_input_2 > .inner > .u_txt_3 a {
  color: #fff;
  text-decoration: underline;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c_input_2 > .inner > .u_txt_3 a {
    font-size: 14px;
  }
}
.c_input_2 > .inner > .u_txt_3 a:before {
  content: "";
  position: absolute;
  background: url(../img/top/ico_clock.svg);
  background-size: cover;
  width: 17px;
  height: 17px;
  left: -25px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* =================================
 list
================================= */
/* =================================
 item
================================= */
/* =================================
 hoge
================================= */
/* ======================================================================
 layout
====================================================================== */
/* =================================
 l_content_size
================================= */
.l_content_size_sp_1 {
  padding: 0 4.6875%;
}
@media screen and (min-width: 1025px) {
  .l_content_size_sp_1 {
    max-width: 100%;
    margin: 0 auto;
  }
}

.l_content_size_pc_1 {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l_content_size_pc_1 {
    width: auto;
    padding: 0 4.6875%;
  }
}

/* =================================
 l_container
================================= */
.l_container {
  position: relative;
  padding: 140px 0 0;
}
@media screen and (max-width: 768px) {
  .l_container {
    padding: 0;
  }
}

/* =================================
 l_header_sp
================================= */
.l_header_sp {
  display: none;
  background: #097847;
  height: 80px;
  padding: 7px 10px 10px 10px;
}
@media screen and (max-width: 768px) {
  .l_header_sp {
    display: block;
    position: fixed;
    width: 100%;
  }
}
.l_header_sp > .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-end;
  padding: 0;
  height: 57px;
}
.l_header_sp > .inner .left a {
  width: 160px;
  display: block;
}
.l_header_sp > .inner .left img {
  max-width: 100%;
}
.l_header_sp > .inner .right {
  margin: 10px 0 0;
}
.l_header_sp > .inner .right .border {
  width: 25px;
  height: 1px;
  background: #fff;
}
.l_header_sp > .inner .right .border2 {
  margin: 6px 0;
}
.l_header_sp > .inner .right p {
  color: #fff;
  margin: 5px 0 0 -2px;
}

/* =================================
 l_menu_sp
================================= */
.l_menu_sp {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  background: #097847;
}
.l_menu_sp > .inner .logo {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  padding: 7px 10px 10px 10px;
  align-items: flex-end;
  height: 74px;
}
.l_menu_sp > .inner .logo .left a {
  width: 160px;
  display: block;
}
.l_menu_sp > .inner .logo .left img {
  max-width: 100%;
}
.l_menu_sp > .inner .logo .right {
  margin: 18px 0 0;
}
.l_menu_sp > .inner .logo .right .border {
  width: 25px;
  height: 1px;
  background: #fff;
}
.l_menu_sp > .inner .logo .right .border1 {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.l_menu_sp > .inner .logo .right .border2 {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.l_menu_sp > .inner .logo .right p {
  color: #fff;
  margin: 12px 0 0 0px;
}
.l_menu_sp > .inner .content > .inner {
  padding: 0 10px;
}
.l_menu_sp > .inner .content > .inner ul {
  margin: 10px 0 0;
}
.l_menu_sp > .inner .content > .inner ul li a {
  width: 100%;
  height: 50px;
  background: #055934;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin: 0 0 10px;
}
.l_menu_sp > .inner .content > .inner ul li a .u_txt_3 {
  color: #fff;
  margin: 0 auto;
}

/* =================================
 l_breadcrumbs
================================= */
/* =================================
 l_main_visual
================================= */
/* =================================
 l_content
================================= */
/* =================================
 l_main
================================= */
/* =================================
 l_mordal
================================= */
.l_mordal {
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l_mordal {
    padding: 75px 10px 0;
  }
}
.l_mordal > .inner {
  padding: 20px;
  background: #fff;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l_mordal > .inner {
    padding: 10px;
  }
}
.l_mordal > .inner._pt1 {
  width: 900px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l_mordal > .inner._pt1 {
    width: initial;
  }
}
.l_mordal > .inner._pt2 {
  width: 900px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l_mordal > .inner._pt2 {
    width: initial;
  }
}
.l_mordal > .inner._pt4 {
  width: 420px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l_mordal > .inner._pt4 {
    width: initial;
  }
}
.l_mordal > .inner .ttl {
  height: 50px;
  background: #097847;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.l_mordal > .inner .ttl:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 6.5px 0 6.5px;
  border-color: #097847 transparent transparent transparent;
  position: absolute;
  bottom: -5px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.l_mordal > .inner .ttl .u_txt_3 {
  color: #fff;
  letter-spacing: 0.05em;
}
.l_mordal > .inner .ttl .u_txt_3 > img {
  margin: 0 10px 0 0;
}
.l_mordal > .inner .txtttl {
  letter-spacing: 0.05em;
  text-align: center;
}
.l_mordal > .inner .wrap {
  margin: 25px 0 0;
  padding: 0 0 20px;
  border-bottom: 1px solid #555555;
  -webkit-overflow-scrolling: touch;
}
.l_mordal > .inner .wrap._pt1 {
  overflow-y: scroll;
  max-height: 650px;
}
@media screen and (max-width: 768px) {
  .l_mordal > .inner .wrap._pt1 {
    max-height: 500px;
  }
}
.l_mordal > .inner .wrap::-webkit-scrollbar {
  width: 6px;
}
.l_mordal > .inner .wrap::-webkit-scrollbar-track {
  background: #fff;
}
.l_mordal > .inner .wrap::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #c8c8c8;
}
.l_mordal > .inner .wrap .u_txt_1.bold {
  font-weight: bold;
}
.l_mordal > .inner .wrap .u_txt_1.bold + .u_txt_1 {
  margin: 10px 0 20px 0;
  line-height: 1.3;
}
.l_mordal > .inner .wrap > .inner {
  padding: 0 30px 0 0;
}
@media screen and (max-width: 768px) {
  .l_mordal > .inner .wrap > .inner {
    padding: 0 10px 0 0;
  }
}
.l_mordal > .inner .wrap > .inner .parent {
  margin: 20px 0 0;
  padding: 10px 10px 10px 35px;
  background: #333;
}
@media screen and (max-width: 768px) {
  .l_mordal > .inner .wrap > .inner .parent {
    border-radius: 3px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
.l_mordal > .inner .wrap > .inner .parent:nth-of-type(1) {
  margin: 0;
}
.l_mordal > .inner .wrap > .inner .parent label {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l_mordal > .inner .wrap > .inner .parent label {
    line-height: 1.3;
  }
}
.l_mordal > .inner .wrap > .inner .parent label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: -28px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.l_mordal > .inner .wrap > .inner .parent label:after {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  color: #fff;
  position: absolute;
  top: 70%;
  left: -24px;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  opacity: 0;
  font-size: 10px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .l_mordal > .inner .wrap > .inner .parent label:after {
    top: 50%;
    margin-top: 0;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.l_mordal
  > .inner
  .wrap
  > .inner
  .parent
  input[type="checkbox"]:checked
  + label::before {
  background: #0a8c54;
  border: 1px solid #0a8c54;
}
.l_mordal
  > .inner
  .wrap
  > .inner
  .parent
  input[type="checkbox"]:checked
  + label::after {
  z-index: 1;
  opacity: 1;
}
.l_mordal > .inner .wrap > .inner .child .check {
  cursor: pointer;
  font-size: 14px;
  display: inline-block;
  border: 1px solid #c0c0c0;
  border-radius: 3px;
  padding: 10px 10px 10px 35px;
  margin: 10px 10px 0 0;
}
@media screen and (max-width: 768px) {
  .l_mordal > .inner .wrap > .inner .child .check {
    display: inline-flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
}
.l_mordal > .inner .wrap > .inner .child .check:hover {
  background: rgba(191, 217, 206, 0.2);
}
.l_mordal > .inner .wrap > .inner .child .check._active {
  border: 1px solid #0a8c54;
  background: rgba(191, 217, 206, 0.2);
}
.l_mordal > .inner .wrap > .inner .child .check .flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.l_mordal > .inner .wrap > .inner .child .check .flex label {
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l_mordal > .inner .wrap > .inner .child .check .flex label {
    line-height: 1.3;
  }
}
.l_mordal > .inner .wrap > .inner .child .check .flex label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #555555;
  border-radius: 3px;
  position: absolute;
  top: -3px;
  left: -28px;
  margin: 0 5px 0 0;
}
@media screen and (max-width: 768px) {
  .l_mordal > .inner .wrap > .inner .child .check .flex label:before {
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.l_mordal > .inner .wrap > .inner .child .check .flex label:after {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  color: #fff;
  position: absolute;
  top: 11px;
  left: -24px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  opacity: 0;
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  .l_mordal > .inner .wrap > .inner .child .check .flex label:after {
    top: 50%;
    margin-top: 0;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.l_mordal
  > .inner
  .wrap
  > .inner
  .child
  .check
  .flex
  input[type="checkbox"]:checked
  + label::before {
  background: #0a8c54;
  border: 1px solid #097847;
}
.l_mordal
  > .inner
  .wrap
  > .inner
  .child
  .check
  .flex
  input[type="checkbox"]:checked
  + label::after {
  z-index: 1;
  opacity: 1;
}
.l_mordal > .inner .wrap > .inner .child .check .flex .close {
  margin: 0 0 0 5px;
}
.l_mordal > .inner .wrap > .inner > ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.l_mordal > .inner .wrap > .inner > ul > li {
  border-bottom: 1px dotted #555555;
}
@media screen and (max-width: 768px) {
  .l_mordal > .inner .wrap > .inner > ul > li {
    width: 100%;
  }
}
.l_mordal > .inner .wrap > .inner > ul > li:last-child {
  border-bottom: none;
}
.l_mordal > .inner .wrap > .inner > ul > li:nth-last-child(2) {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .l_mordal > .inner .wrap > .inner > ul > li:nth-last-child(2) {
    border-bottom: 1px dotted #555555;
  }
}
.l_mordal > .inner .wrap > .inner > ul > li label {
  cursor: pointer;
  width: 405px;
  height: 70px;
  padding: 10px 0;
  position: relative;
  margin: 0 0 0 2px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l_mordal > .inner .wrap > .inner > ul > li label {
    width: 100%;
    padding: 12px 0 10px;
  }
}
@media all and (-ms-high-contrast: none) {
  .l_mordal > .inner .wrap > .inner > ul > li label {
    width: 400px;
  }
}
.l_mordal > .inner .wrap > .inner > ul > li label:hover .img_wrap img {
  outline: 2px solid #0a8c54;
}
.l_mordal > .inner .wrap > .inner > ul > li label:hover .txt_wrap .u_txt_1 {
  color: #097847;
}
.l_mordal > .inner .wrap > .inner > ul > li label._active .img_wrap img {
  outline: 2px solid #0a8c54;
}
.l_mordal > .inner .wrap > .inner > ul > li label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #555555;
  border-radius: 3px;
  position: absolute;
  top: auto;
  left: 61px;
  margin: 0 5px 0 0;
}
@media all and (-ms-high-contrast: none) {
  .l_mordal > .inner .wrap > .inner > ul > li label:before {
    top: 25px;
  }
}
.l_mordal > .inner .wrap > .inner > ul > li label:after {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  color: #fff;
  font-weight: 900;
  position: absolute;
  top: 49%;
  left: 64px;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  opacity: 0;
  font-size: 12px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.l_mordal > .inner .wrap > .inner > ul > li label .img_wrap > img {
  width: 52px;
}
.l_mordal > .inner .wrap > .inner > ul > li label .txt_wrap {
  padding: 0 10px 0 35px;
}
.l_mordal
  > .inner
  .wrap
  > .inner
  > ul
  > li
  input[type="checkbox"]:checked
  + label::before {
  background: #0a8c54;
}
.l_mordal
  > .inner
  .wrap
  > .inner
  > ul
  > li
  input[type="checkbox"]:checked
  + label::after {
  z-index: 1;
  width: 6px;
  height: 9px;
  opacity: 1;
}
.l_mordal > .inner .wrap .add_btn {
  cursor: pointer;
  font-size: 1.4em;
  width: 95px;
  height: 30px;
  color: #0a8c54;
  background: #fff;
  border: 1px solid silver;
  border-bottom: 2px solid silver;
  border-radius: 3px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
@media screen and (max-width: 768px) {
  .l_mordal > .inner .wrap .add_btn {
    margin: 0 0 20px;
  }
}
.l_mordal > .inner .wrap .add_btn:hover {
  border-bottom: 1px solid silver;
  -moz-transform: translateY(1px);
  -ms-transform: translateY(1px);
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}
.l_mordal > .inner .wrap .add_btn span {
  font-weight: bold;
  font-size: 16px;
  margin: 0 10px 0 0;
}
.l_mordal > .inner .wrap .txt_area {
  position: relative;
}
.l_mordal > .inner .wrap .txt_area:last-child {
  margin: 0 0 20px;
}
.l_mordal > .inner .wrap .txt_area .inp_txt {
  width: 100%;
  border: 1px solid #c0c0c0;
  border-radius: 3px;
  margin: 10px 0 0;
  padding: 8px 25px 6px 10px;
  font-size: 14px;
}
.l_mordal > .inner .wrap .txt_area .inp_txt:placeholder-shown {
  color: #999;
}
.l_mordal > .inner .wrap .txt_area .inp_txt::-webkit-input-placeholder {
  color: #999;
}
.l_mordal > .inner .wrap .txt_area .inp_txt:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.l_mordal > .inner .wrap .txt_area .inp_txt::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.l_mordal > .inner .wrap .txt_area .inp_txt:-ms-input-placeholder {
  color: #999;
}
@media screen and (max-width: 768px) {
  .l_mordal > .inner .wrap .txt_area .inp_txt {
    height: 50px;
  }
}
@media all and (-ms-high-contrast: none) {
  .l_mordal > .inner .wrap .txt_area .inp_txt {
    display: block;
  }
}
.l_mordal > .inner .wrap .txt_area input::-ms-clear {
  visibility: hidden;
}
.l_mordal > .inner .wrap .txt_area.other .remove {
  cursor: pointer;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  right: 10px;
  font-size: 15px;
  font-weight: bold;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.l_mordal > .inner .btn_wrap {
  cursor: pointer;
  width: 200px;
  height: 50px;
  margin: 20px auto 0;
  background: #ef812b;
  border-radius: 3px;
  border-bottom: 3px solid #c7681d;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.l_mordal > .inner .btn_wrap:hover {
  border-bottom: 3px solid #ef812b;
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}
@media screen and (max-width: 768px) {
  .l_mordal > .inner .btn_wrap:hover {
    border-top: 3px solid #ef812b;
    border-bottom: 3px solid #c7681d;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.l_mordal > .inner .btn_wrap .u_txt_1 {
  letter-spacing: 0.05em;
  color: #fff;
}
.l_mordal button.mfp-close {
  background: #333;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  line-height: initial;
  opacity: 1;
  top: -30px;
  right: -22px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .l_mordal button.mfp-close {
    top: 15px;
    right: 10px;
  }
}

#l_mordal1 {
  width: 900px;
}
@media screen and (max-width: 768px) {
  #l_mordal1 {
    width: initial;
  }
}

#l_mordal-w_industry,
#l_mordal-e_industry,
#l_mordal-e_work,
#l_mordal-w_work,
#l_mordal-w_pref {
  width: 900px;
}
@media screen and (max-width: 768px) {
  #l_mordal-w_industry,
  #l_mordal-e_industry,
  #l_mordal-e_work,
  #l_mordal-w_work,
  #l_mordal-w_pref {
    width: initial;
  }
}

#l_mordal2 {
  width: 900px;
}
@media screen and (max-width: 768px) {
  #l_mordal2 {
    width: initial;
  }
}

#l_mordal3 {
  width: 900px;
}
@media screen and (max-width: 768px) {
  #l_mordal3 {
    width: initial;
  }
}

#l_mordal4 {
  width: 420px;
}
@media screen and (max-width: 768px) {
  #l_mordal4 {
    width: initial;
  }
}

.p_entry #l_mordal4 {
  width: 900px;
}
@media screen and (max-width: 768px) {
  .p_entry #l_mordal4 {
    width: initial;
  }
}

#l_mordal5 {
  width: 900px;
}
@media screen and (max-width: 768px) {
  #l_mordal5 {
    width: initial;
  }
}
#l_mordal5 > .inner > .wrap {
  border-bottom: none;
}

#l_mordal6 {
  width: 900px;
}
@media screen and (max-width: 768px) {
  #l_mordal6 {
    width: initial;
  }
}
#l_mordal6 .red_txt {
  margin-top: 20px;
  font-size: 1.4em;
  color: #e21b1b;
}
#l_mordal6 #mail-body .w_m {
  width: calc(100% - 20px);
  border: 1px solid #c0c0c0;
  border-radius: 3px;
  margin: 10px 10px 20px 10px;
  padding: 8px 25px 6px 10px;
  font-size: 14px;
  box-sizing: border-box;
}
#l_mordal6 #mail-body .w_m:placeholder-shown {
  color: #999;
}
#l_mordal6 #mail-body .w_m::-webkit-input-placeholder {
  color: #999;
}
#l_mordal6 #mail-body .w_m:-moz-placeholder {
  color: #999;
  opacity: 1;
}
#l_mordal6 #mail-body .w_m::-moz-placeholder {
  color: #999;
  opacity: 1;
}
#l_mordal6 #mail-body .w_m:-ms-input-placeholder {
  color: #999;
}
@media screen and (max-width: 768px) {
  #l_mordal6 #mail-body .w_m {
    height: 50px;
  }
}
@media all and (-ms-high-contrast: none) {
  #l_mordal6 #mail-body .w_m {
    display: block;
  }
}
#l_mordal6 #mail-body .parent {
  color: #fff;
  padding: 10px;
}
#l_mordal6 #mail-body .child p {
  margin: 10px;
}

.iphone .search_blk .right .check {
  padding-left: 20px !important;
}
.iphone .l_mordal > .inner .wrap > .inner {
  padding: 0 30px 0 0;
}
@media screen and (max-width: 768px) {
  .iphone .l_mordal > .inner .wrap > .inner {
    padding: 0 10px 0 0;
  }
}
.iphone .l_mordal > .inner .wrap > .inner .parent {
  padding-left: 20px;
}
.iphone .l_mordal > .inner .wrap > .inner .parent input {
  height: 0;
}
.iphone .l_mordal > .inner .wrap > .inner .parent label:after {
  top: 50%;
  left: -24px;
  margin: 2px 0 0 0;
}
.iphone .l_mordal > .inner .wrap > .inner .child .check {
  display: inline-block;
}
.iphone .l_mordal > .inner .wrap > .inner .child .check .flex {
  display: inline-block;
}
.iphone .l_mordal > .inner .wrap > .inner .child .check .flex input {
  height: 0;
}
.iphone .l_mordal > .inner .wrap > .inner .child .check .flex label:after {
  top: 50%;
  left: -24px;
  margin: 2px 0 0 0;
}
.iphone .l_mordal > .inner .wrap > .inner > ul > li label:after {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  color: #fff;
  position: absolute;
  top: 54%;
  left: 65px;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  opacity: 0;
  font-size: 12px;
}

.ipad .search_blk .right .check {
  padding-left: 25px !important;
}
.ipad .l_mordal > .inner .wrap > .inner .parent {
  padding: 0 10px 15px 43px;
}
.ipad .l_mordal > .inner .wrap > .inner .child .check {
  padding-left: 25px;
}

/* =================================
 l_footer
================================= */
/* =================================
 l_hoge
================================= */
/* ======================================================================
 layout p_top
====================================================================== */
/* =================================
 l_container_top
================================= */
.l_container_top {
  position: relative;
  padding: 140px 0 0;
}
@media screen and (max-width: 768px) {
  .l_container_top {
    padding: 0;
  }
}

/* =================================
 l_header
================================= */
.l_header {
  width: 100%;
  min-width: 1240px;
  position: fixed;
  top: 0;
  left: 0;
  background: #097847;
}
@media screen and (max-width: 768px) {
  .l_header {
    display: none;
  }
}
.l_header > .inner > .line1 {
  width: 1100px;
  height: 90px;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  position: relative;
}
.l_header > .inner > .line1 > .img_wrap {
  position: relative;
}
.l_header > .inner > .line1 > .img_wrap .u_txt_2 {
  position: absolute;
  white-space: nowrap;
  color: #fff;
  left: 30px;
  font-weight: normal;
}
.l_header > .inner > .line1 > .img_wrap a {
  width: 245px;
  display: block;
}
.l_header > .inner > .line1 > .img_wrap a > img {
  width: 100%;
}
.l_header > .inner > .line1 .header_btn_wrap {
  position: relative;
  height: 90px;
}
.l_header > .inner > .line1 .btn {
  width: 200px;
  height: 37px;
  display: block;
  color: #fff;
  border-radius: 3px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.l_header > .inner > .line1 .btn .u_txt_1 {
  margin: 0 auto;
}
.l_header > .inner > .line1 .btn.entry {
  border-bottom: 3px solid #c7681d;
  background: #ef812b;
  position: absolute;
  top: 40px;
  right: 0;
}
.l_header > .inner > .line1 .btn.entry:hover {
  height: 34px;
  border-bottom: 0;
  transform: translateY(3px);
}
.l_header > .inner > .line1 .btn.line {
  border-bottom: 3px solid #018f3b;
  background: #06c755;
  position: absolute;
  bottom: 6px;
  right: 0;
}
.l_header > .inner > .line1 .btn.line::before {
    content: "";
    background: url(/assets/img/common/ico_line.png) no-repeat;
    background-size: contain;
    width: 35px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
}
.l_header > .inner > .line1 .btn.line:hover {
  height: 34px;
  border-bottom: 0;
}
.l_header > .inner > .line1 .bnr_wrap {
  display: flex;
  align-items: center;
  right: 210px;
  position: absolute;
  width: 290px;
}

.l_header > .inner > .line1 .no1 {
  width: calc(100% / 4);
  padding-right: 5px;
}
.l_header > .inner > .line1 .no1:last-child {
  padding-right: 0;
}
.l_header > .inner > .line1 .no1 img {
  width: 100%;
  height: 65px;
  object-fit: cover;
}

.l_header > .inner > .line1 .campaign_wrap a {
  width: 170px;
  right: 510px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.l_header > .inner > .line1 .campaign_wrap a:hover {
  opacity: 0.8;
}

.l_header > .inner > .line1 .campaign_wrap img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l_header_sp {
  }
  .l_header_sp > .inner .bnr_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 0;
    position: absolute;
    right: 12%;
  }
  .l_header_sp > .inner .bnr_wrap .no1 {
    width: 30px;
    margin-bottom: 2px;
    margin-right: 3px;
  }
  .l_header_sp > .inner .bnr_wrap .no1 img {
    width: 100%;
  }
  .l_header_sp > .inner .header_btn_wrap .btn.line {
    color: #fff;
    background-color: #06c755;
    display: block;
    padding: 7px 3px 7px 19px;
    border-radius: 3px;
    position: relative;
  }
  .l_header_sp > .inner .header_btn_wrap .btn.line p {
    font-size: 1.1em;
  }
  .l_header_sp > .inner .header_btn_wrap .btn.line::before {
    content: "";
    background: url(/assets/img/common/ico_line.png) no-repeat;
    background-size: contain;
    width: 25px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
  

  .campaign_wrap_sp a {
    display: block;
    text-align: center;
    background-color: #fff;
    margin-top: 10px;
    padding: 2px 0;
  }

  .campaign_wrap_sp a:hover {
    opacity: 0.8;
  }

  .campaign_wrap_sp a img {
    width: 100%;
  }
}

.l_header > .inner > .line2 {
  width: 100%;
  background: #055934;
  margin: 0 auto;
}
.l_header > .inner > .line2 ul {
  width: 1100px;
  height: 50px;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.l_header > .inner > .line2 ul li {
  border-right: 1px solid #097847;
  width: -moz-calc(100% / 7);
  width: -o-calc(100% / 7);
  width: -webkit-calc(100% / 7);
  width: calc(100% / 7);
}
.l_header > .inner > .line2 ul li:nth-of-type(1) {
  border-left: 1px solid #097847;
}
.l_header > .inner > .line2 ul li:hover {
  background: #508b71;
}
.l_header > .inner > .line2 ul li a {
  height: 50px;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.l_header > .inner > .line2 ul li a.active {
  background: #fff;
}
.l_header > .inner > .line2 ul li a.active .u_txt_1 {
  color: #097847;
}
.l_header > .inner > .line2 ul li a .u_txt_1 {
  color: #fff;
  margin: 0 auto;
}

/* =================================
 l_main_visual_top
================================= */
@media screen and (min-width: 769px) {
  .l_main_visual_top > .inner {
    height: 297px;
    overflow: hidden;
    position: relative;
    background: #e6e6e6;
  }
}
@media screen and (min-width: 769px) {
  .l_main_visual_top > .inner h1 > img {
    position: absolute;
    left: 50%;
    margin-left: -960px;
  }
}
@media screen and (max-width: 768px) {
  .l_main_visual_top > .inner .topimg-sp > img {
    width: 100%;
  }
}
.l_main_visual_top > .inner .u_txt_3 {
  height: 80px;
  font-weight: bold;
  background: #e6e6e6;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

/* =================================
 l_content_top
================================= */
/* =================================
 l_main_top
================================= */
/* =================================
 l_footer
================================= */
.l_footer > .inner {
  width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .l_footer > .inner {
    width: 100%;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 20px 20px 20px;
  }
}
.l_footer > .inner .left {
  width: 700px;
}
@media screen and (max-width: 768px) {
  .l_footer > .inner .left {
    width: 100%;
  }
}
.l_footer > .inner .left > ul {
  margin: 0 0 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .l_footer > .inner .left > ul {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
  }
}
.l_footer > .inner .left > ul li {
  padding: 0 6px;
  border-right: 1px solid #333;
}
@media screen and (max-width: 768px) {
  .l_footer > .inner .left > ul li {
    width: 50%;
    margin: 0 0 20px;
    border-right: none;
    padding: 0 0 0 20px;
    position: relative;
  }
  .l_footer > .inner .left > ul li:before {
    content: url(../img/common/ico_link.svg);
    width: 15px;
    height: 15px;
    position: absolute;
    top: -2px;
    left: 0;
  }
}
.l_footer > .inner .left > ul li:nth-of-type(1) {
  padding: 0 6px 0 0;
}
@media screen and (max-width: 768px) {
  .l_footer > .inner .left > ul li:nth-of-type(1) {
    padding: 0 0 0 20px;
  }
}
.l_footer > .inner .left > ul li:nth-of-type(6) {
  border-right: none;
}
.l_footer > .inner .left > ul li a {
  font-size: 1.4em;
}
@media screen and (max-width: 768px) {
  .l_footer > .inner .left > ul li a {
    color: #0a8c54;
    font-size: 1.4em;
    text-decoration: underline;
  }
}
.l_footer > .inner .left > ul li a:hover {
  color: #0a8c54;
}
.l_footer > .inner .left .u_sp ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin: 10px 0 20px;
}
.l_footer > .inner .left .u_sp .logo-bottom {
  text-align: center;
  width: 150px;
  margin: 0 auto;
  display: block;
}
.l_footer > .inner .left .u_sp .logo-bottom img {
  width: 150px;
}
.l_footer > .inner .left .u_sp ul li {
  margin: 0 10px 0 0;
}
.l_footer > .inner .left .u_sp ul li a {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.l_footer > .inner .left .u_sp ul li a.face {
  background: url(../img/common/ico_fb.svg);
}
.l_footer > .inner .left .u_sp ul li a.face:hover {
  background: url(../img/common/ico_fb_hov.svg);
}
.l_footer > .inner .left .u_sp ul li a.twi {
  background: url(../img/common/ico_twi.svg);
}
.l_footer > .inner .left .u_sp ul li a.twi:hover {
  background: url(../img/common/ico_twi_hov.svg);
}
.l_footer > .inner .left .u_sp ul li a.rss {
  background: url(../img/common/ico_rss.svg);
}
.l_footer > .inner .left .u_sp ul li a.rss:hover {
  background: url(../img/common/ico_rss_hov.svg);
}
@media screen and (max-width: 768px) {
  .l_footer > .inner .left .u_txt_2 {
    text-align: center;
  }
}
.l_footer > .inner .right {
  width: 400px;
}

.l_footer > .inner .right .logo-bottom {
  display: block;
  width: 250px;
  height: 100%;
  float: left;
}

@media screen and (max-width: 768px) {
  .l_footer > .inner .right {
    width: 100%;
  }
}
.l_footer > .inner .right ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}
.l_footer > .inner .right ul li {
  margin: 0 0 0 10px;
}
.l_footer > .inner .right ul li a {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.l_footer > .inner .right ul li a.face {
  background: url(../img/common/ico_fb.svg);
}
.l_footer > .inner .right ul li a.face:hover {
  background: url(../img/common/ico_fb_hov.svg);
}
.l_footer > .inner .right ul li a.twi {
  background: url(../img/common/ico_twi.svg);
}
.l_footer > .inner .right ul li a.twi:hover {
  background: url(../img/common/ico_twi_hov.svg);
}
.l_footer > .inner .right ul li a.rss {
  background: url(../img/common/ico_rss.svg);
}
.l_footer > .inner .right ul li a.rss:hover {
  background: url(../img/common/ico_rss_hov.svg);
}

/* =================================
 l_hoge_top
================================= */
/* =================================
 l_trailling_sp
================================= */
.l_trailling_sp {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  opacity: 1;
  z-index: 100;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media screen and (max-width: 768px) {
  .l_trailling_sp {
    display: block;
  }
}
.l_trailling_sp .inner {
  width: 100%;
  padding: 10px;
  height: 65px;
  background: #333;
  display: flex;
  justify-content: space-between;
}
.l_trailling_sp .inner .u_txt_3 {
  width: 100%;
  height: 45px;
  color: #fff;
  background: #ef812b;
  border-bottom: 3px solid #c7681d;
  border-radius: 1.5px;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.l_trailling_sp .inner .u_txt_line {
  width: calc((100% - 10px) / 2);
  color: #fff;
  background: #11C755;
  border-bottom: 3px solid #029238;
  font-size: 1.8em;
  line-height: 1.3;
  border-radius: 1.5px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.l_trailling_sp .inner .u_txt_line img {
  height: 38px;
  margin-left: -10px;
}


/* =================================
 l_breadcrumbs
================================= */
.l_breadcrumbs > .inner {
  width: 1100px;
  height: 55px;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l_breadcrumbs > .inner {
    width: 100%;
    padding: 0 10px;
    height: initial;
    min-height: 35px;
  }
}
.l_breadcrumbs > .inner a {
  cursor: pointer;
  color: #0a8c54;
}
.l_breadcrumbs > .inner span {
  margin: 0 5px 0 0;
}

/* =================================
 l_job_offer
================================= */
.l_job_offer > .inner {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner {
    width: 100%;
  }
}
.l_job_offer > .inner > .ttl {
  height: 50px;
  background: #333;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .ttl {
    height: initial;
    width: 100%;
    display: block;
    padding: 10px;
  }
}
.l_job_offer > .inner > .ttl > .left > .ico_1 {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  background: #e21b1b;
  padding: 8px 12px;
  border-radius: 3px;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .ttl > .left > .ico_1 {
    padding: 8px 6px;
    margin: 0 10px 10px 0;
  }
}
.l_job_offer > .inner > .ttl > .left > .u_txt_1 {
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  border: 1px solid #fff;
}
@media screen and (max-width: 314px) {
  .l_job_offer > .inner > .ttl > .left > .u_txt_1 {
    margin: 0 0 10px 0;
  }
}
.l_job_offer > .inner > .ttl > .u_txt_1 {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .ttl > .u_txt_1 {
    margin: 0;
  }
}
.l_job_offer > .inner > .inner {
  width: 100%;
  padding: 20px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner {
    padding: 10px 10px 20px 10px;
  }
}
.l_job_offer > .inner > .inner .tag_list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner .tag_list {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.l_job_offer > .inner > .inner .tag_list .u_txt_1 {
  margin: 0 10px 0 0;
  color: #097847;
  padding: 4px 10px 2px;
  border: 1px solid #097847;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner .tag_list .u_txt_1 {
    margin: 0 10px 10px 0;
  }
}
.l_job_offer > .inner > .inner .ttl_wrap {
  margin: 20px 0 0;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner .ttl_wrap {
    margin: 10px 0 0;
  }
}
.l_job_offer > .inner > .inner .ttl_wrap .u_txt_3 {
  font-weight: bold;
  pointer-events: none;
}
.l_job_offer > .inner > .inner .txt_wrap {
  margin: 30px 0 0;
}
.l_job_offer > .inner > .inner .txt_wrap .txt_row {
  border-top: 1px dotted #333333;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner .txt_wrap .txt_row {
    display: block;
    border-top: none;
  }
}
.l_job_offer > .inner > .inner .txt_wrap .txt_row:last-child {
  border-bottom: 1px dotted #333333;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner .txt_wrap .txt_row:last-child {
    border-bottom: none;
  }
}
.l_job_offer > .inner > .inner .txt_wrap .txt_row .left {
  width: 220px;
  min-height: 60px;
  background: #f5f5f5;
  padding: 0 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner .txt_wrap .txt_row .left {
    min-height: initial;
    width: 100%;
    padding: 8px 10px;
  }
}
.l_job_offer > .inner > .inner .txt_wrap .txt_row .left .u_txt_1 {
  font-weight: bold;
}
.l_job_offer > .inner > .inner .txt_wrap .txt_row .right {
  min-height: 60px;
  padding: 20px 10px 20px 20px;
  width: -moz-calc(100% - 220px);
  width: -o-calc(100% - 220px);
  width: -webkit-calc(100% - 220px);
  width: calc(100% - 220px);
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner .txt_wrap .txt_row .right {
    width: 100%;
    min-height: initial;
    padding: 10px 0;
  }
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner .txt_wrap .txt_row .right .u_txt_1 {
    line-height: 1.7;
  }
}
.l_job_offer > .inner > .inner .txt_wrap .txt_row .right .subttl {
  font-weight: bold;
}
.l_job_offer > .inner > .inner .txt_wrap .txt_row .right .subttl + .u_txt_1 {
  margin: 10px 0 0;
}
.l_job_offer > .inner > .inner .txt_wrap .txt_row .right .u_txt_1 + .subttl {
  margin: 20px 0 0;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner .txt_wrap .txt_row .right .u_txt_1 + .subttl {
    margin: 30px 0 0;
  }
}
.l_job_offer > .inner > .inner .txt_wrap .txt_row .right .subttl + .txt_list {
  margin: 10px 0 0;
}
.l_job_offer > .inner > .inner .txt_wrap .txt_row .right .txt_list .u_txt_1 {
  padding: 0 0 0 18px;
  position: relative;
  line-height: 1.7;
}
.l_job_offer
  > .inner
  > .inner
  .txt_wrap
  .txt_row
  .right
  .txt_list
  .u_txt_1:before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  background: #333333;
  top: 7px;
  left: 0;
  border-radius: 50%;
}
.l_job_offer > .inner > .inner > .toggle {
  width: 100%;
  margin: 20px auto 0;
  padding: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner > .toggle {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.l_job_offer > .inner > .inner > .toggle._active {
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px dotted #999;
}
.l_job_offer > .inner > .inner > .toggle > .btn {
  width: 220px;
  height: 41px;
  border-radius: 3px;
  border: 1px solid #c0c0c0;
  margin: 0 auto;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.l_job_offer > .inner > .inner > .toggle > .btn:hover {
  -moz-transform: translateY(2px);
  -ms-transform: translateY(2px);
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner > .toggle > .btn:hover {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.l_job_offer > .inner > .inner > .toggle > .btn > .inner {
  width: 100%;
  height: 38px;
  border-bottom: 3px solid #e6e6e6;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.l_job_offer > .inner > .inner > .toggle > .btn > .inner:hover {
  border-top: 3px solid #fff;
  border-bottom: 3px solid transparent;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner > .toggle > .btn > .inner:hover {
    border-top: none;
    border-bottom: 3px solid #e6e6e6;
  }
}
.l_job_offer > .inner > .inner > .toggle > .btn > .inner .u_txt_1 {
  color: #097847;
}
.l_job_offer > .inner > .inner > .btn_wrap1 {
  width: 100%;
  margin: 20px auto 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner > .btn_wrap1 {
    margin: 0 auto;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
  }
}
.l_job_offer > .inner > .inner > .btn_wrap1 > .btn {
  width: 300px;
  height: 52px;
  border-radius: 3px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.l_job_offer > .inner > .inner > .btn_wrap1 > .btn.btn_1 {
  background: #097847;
  border-bottom: 3px solid #055934;
}
.l_job_offer > .inner > .inner > .btn_wrap1 > .btn.btn_1:hover {
  border-top: 3px solid #fff;
  border-bottom: 3px solid #097847;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner > .btn_wrap1 > .btn.btn_1:hover {
    border-top: 3px solid #097847;
    border-bottom: 3px solid #055934;
  }
}
.l_job_offer > .inner > .inner > .btn_wrap1 > .btn.btn_2 {
  background: #ef812b;
  border-bottom: 3px solid #c7681d;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner > .btn_wrap1 > .btn.btn_2 {
    margin: 15px 0 0;
  }
}
.l_job_offer > .inner > .inner > .btn_wrap1 > .btn.btn_2:hover {
  border-top: 3px solid #fff;
  border-bottom: 3px solid #ef812b;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner > .btn_wrap1 > .btn.btn_2:hover {
    border-top: 3px solid #ef812b;
    border-bottom: 3px solid #c7681d;
  }
}
.l_job_offer > .inner > .inner > .btn_wrap1 > .btn .u_txt_1 {
  color: #fff;
}
.l_job_offer > .inner > .inner > .btn_wrap1 > .btn .u_txt_1.imgtxt {
  padding: 0 0 0 27px;
  position: relative;
}
.l_job_offer > .inner > .inner > .btn_wrap1 > .btn .u_txt_1.imgtxt::before {
  content: url("/assets/img/common/ico_mail.svg");
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
}
.l_job_offer > .inner > .inner > .entry_txt {
  margin: 20px 0 0;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner > .entry_txt {
    text-align: center;
  }
}
.l_job_offer > .inner > .inner > .entry_txt > a {
  color: #097847;
  text-decoration: underline;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner > .entry_txt > a {
    padding: 0 0 0 20px;
  }
}
.l_job_offer > .inner > .inner > .entry_txt > a:before {
  content: url("/assets/img/common/ico_link.svg");
  position: absolute;
  top: 2px;
  left: -20px;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner > .entry_txt > a:before {
    left: 0;
  }
}
.l_job_offer > .inner > .inner > .entry_txt > a:hover {
  text-decoration: none;
}
.l_job_offer > .inner > .inner > .btn_wrap2 {
  width: 100%;
  margin: 20px auto 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner > .btn_wrap2 {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.l_job_offer > .inner > .inner > .btn_wrap2 > .btn {
  width: 220px;
  height: 41px;
  border-radius: 3px;
  border: 1px solid #c0c0c0;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.l_job_offer > .inner > .inner > .btn_wrap2 > .btn:hover {
  -moz-transform: translateY(2px);
  -ms-transform: translateY(2px);
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner > .btn_wrap2 > .btn:hover {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.l_job_offer > .inner > .inner > .btn_wrap2 > .btn > .inner {
  width: 100%;
  height: 38px;
  border-bottom: 3px solid #e6e6e6;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.l_job_offer > .inner > .inner > .btn_wrap2 > .btn > .inner:hover {
  border-top: 3px solid #fff;
  border-bottom: 3px solid transparent;
}
@media screen and (max-width: 768px) {
  .l_job_offer > .inner > .inner > .btn_wrap2 > .btn > .inner:hover {
    border-top: none;
    border-bottom: 3px solid #e6e6e6;
  }
}
.l_job_offer > .inner > .inner > .btn_wrap2 > .btn > .inner .u_txt_1 {
  color: #097847;
  padding: 0 0 0 23px;
}
.l_job_offer > .inner > .inner > .btn_wrap2 > .btn > .inner .u_txt_1.imgtxt {
  position: relative;
}
.l_job_offer
  > .inner
  > .inner
  > .btn_wrap2
  > .btn
  > .inner
  .u_txt_1.imgtxt:before {
  content: url("/assets/img/common/ico_link.svg");
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
}

/* =================================
 l_search
================================= */
.l_search {
  opacity: 0;
  width: 1100px;
  position: fixed;
  top: 150px;
  left: 50%;
  z-index: 1;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .l_search {
    width: 100%;
    top: 70px;
  }
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner {
    padding: 0 10px;
  }
}
.l_search .search_blk > .inner > .ttl {
  width: 100%;
  height: 50px;
  padding: 0 10px;
  background: #097847;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
.l_search .search_blk > .inner > .ttl .u_txt_3 {
  color: #fff;
  padding: 0 0 0 30px;
  font-weight: bold;
  position: relative;
}
.l_search .search_blk > .inner > .ttl .u_txt_3:before {
  content: "";
  background: url("/assets/img/top/ico_search.svg");
  width: 13px;
  height: 13px;
  position: absolute;
  top: 4px;
  left: 8px;
}
.l_search .search_blk > .inner > .ttl .u_txt_1 {
  cursor: pointer;
  height: 30px;
  padding: 6px 10px 0;
  color: #fff;
  border: 1px solid #fff;
  position: relative;
}
.l_search .search_blk > .inner .content {
  display: none;
  padding: 20px;
  border-right: 1px solid #0a8c54;
  border-left: 1px solid #0a8c54;
  border-bottom: 1px solid #0a8c54;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner .content {
    padding: 20px 10px;
  }
}
.l_search .search_blk > .inner .content._active {
  display: block;
}
.l_search .search_blk > .inner .content .row {
  width: 100%;
  min-height: 70px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-bottom: 1px dotted silver;
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner .content .row {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: none;
  }
}
.l_search .search_blk > .inner .content .row .left {
  width: 260px;
  background: rgba(191, 217, 206, 0.2);
  padding: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner .content .row .left {
    width: 100%;
    padding: 0 0 0 10px;
    min-height: 30px;
  }
}
.l_search .search_blk > .inner .content .row .left .u_txt_1 {
  font-weight: bold;
  margin: 10px 0 0 0;
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner .content .row .left .u_txt_1 {
    margin: 8px 0 0 0;
  }
}
.l_search .search_blk > .inner .content .row .left .mordal_btn {
  cursor: pointer;
  font-size: 1.4em;
  width: 95px;
  height: 30px;
  color: #0a8c54;
  background: #fff;
  border: 1px solid silver;
  border-bottom: 2px solid silver;
  border-radius: 3px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.l_search .search_blk > .inner .content .row .left .mordal_btn:hover {
  border-bottom: 1px solid silver;
  -moz-transform: translateY(1px);
  -ms-transform: translateY(1px);
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}
.l_search .search_blk > .inner .content .row .left .mordal_btn span {
  font-weight: bold;
  font-size: 16px;
  margin: 0 10px 0 0;
}
.l_search .search_blk > .inner .content .row .right {
  width: -moz-calc(100% - 260px);
  width: -o-calc(100% - 260px);
  width: -webkit-calc(100% - 260px);
  width: calc(100% - 260px);
  padding: 20px 20px 10px 20px;
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner .content .row .right {
    width: 100%;
    padding: 20px 0 10px;
  }
}
.l_search .search_blk > .inner .content .row .right .check {
  cursor: pointer;
  font-size: 14px;
  display: inline-block;
  border: 1px solid #c0c0c0;
  border-radius: 3px;
  padding: 8px 10px 6px 35px;
  margin: 0 5px 10px 0;
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner .content .row .right .check {
    padding: 12px 10px 12px 35px;
  }
}
.l_search .search_blk > .inner .content .row .right .check._active {
  border: 1px solid #0a8c54;
  background: rgba(191, 217, 206, 0.2);
}
.l_search .search_blk > .inner .content .row .right .check .flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.l_search .search_blk > .inner .content .row .right .check .flex label {
  cursor: pointer;
  position: relative;
}
.l_search .search_blk > .inner .content .row .right .check .flex label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #555555;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: -28px;
  margin: 0 5px 0 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.l_search .search_blk > .inner .content .row .right .check .flex label:after {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  color: #fff;
  position: absolute;
  top: 50%;
  left: -24px;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  opacity: 0;
  font-size: 10px;
  margin: -1px 0 0 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.l_search
  .search_blk
  > .inner
  .content
  .row
  .right
  .check
  .flex
  input[type="checkbox"]:checked
  + label::before {
  background: #0a8c54;
  border: 1px solid #0a8c54;
}
.l_search
  .search_blk
  > .inner
  .content
  .row
  .right
  .check
  .flex
  input[type="checkbox"]:checked
  + label::after {
  z-index: 1;
  width: 6px;
  height: 9px;
  opacity: 1;
}
.l_search .search_blk > .inner .content .row .right .check .flex .close {
  margin: 0 0 0 5px;
}
.l_search .search_blk > .inner .content .row .right.select input {
  display: none;
}
.l_search .search_blk > .inner .content .row .right.select label {
  border: 1px solid #c0c0c0;
  text-align: center;
  display: inline-block;
  padding: 8px 30px 6px;
  font-size: 14px;
  border-radius: 3px;
  margin: 0 10px 10px 0;
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner .content .row .right.select label {
    padding: 16px 30px 13px;
  }
}
.l_search .search_blk > .inner .content .row .right.select label:hover {
  cursor: pointer;
}
.l_search
  .search_blk
  > .inner
  .content
  .row
  .right.select
  input[type="radio"]:checked
  + label {
  background: #097847;
  border: 1px solid #097847;
  color: #fff;
}
.l_search .search_blk > .inner .content .result {
  width: 100%;
  height: 70px;
  text-align: center;
  margin: 20px 0 0;
  padding: 17px 0 0;
  border: 1px solid #097847;
}
.l_search .search_blk > .inner .content .result span {
  font-weight: bold;
}
.l_search .search_blk > .inner .content .result span._pt1 {
  font-size: 26px;
  color: #e21b1b;
  margin: 0 0 0 10px;
}
.l_search .search_blk > .inner .content .result span._pt2 {
  font-size: 18px;
  color: #333333;
  margin: 0 0 0 3px;
}
.l_search .search_blk > .inner .content .btn_wrap {
  width: 420px;
  margin: 20px auto 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner .content .btn_wrap {
    width: 100%;
    padding: 0 10px;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.l_search .search_blk > .inner .content .btn_wrap > .btn {
  width: 200px;
  height: 54px;
  border-radius: 3px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner .content .btn_wrap > .btn {
    width: 100%;
  }
}
.l_search .search_blk > .inner .content .btn_wrap > .btn.btn_1 {
  background: #333333;
  border-bottom: 5px solid #000000;
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner .content .btn_wrap > .btn.btn_1 {
    margin: 10px 0 0;
  }
}
.l_search .search_blk > .inner .content .btn_wrap > .btn.btn_1:hover {
  border-top: 5px solid #fff;
  border-bottom: 5px solid #333333;
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner .content .btn_wrap > .btn.btn_1:hover {
    border-top: none;
    border-bottom: 5px solid #000000;
  }
}
.l_search .search_blk > .inner .content .btn_wrap > .btn.btn_2 {
  background: #097847;
  border-bottom: 5px solid #055934;
}
.l_search .search_blk > .inner .content .btn_wrap > .btn.btn_2:hover {
  border-top: 5px solid #fff;
  border-bottom: 5px solid #097847;
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner .content .btn_wrap > .btn.btn_2:hover {
    border-top: none;
    border-bottom: 5px solid #055934;
  }
}
.l_search .search_blk > .inner .content .btn_wrap > .btn .u_txt_1 {
  color: #fff;
}
.l_search .search_blk > .inner .content .btn_wrap > .btn .u_txt_1.imgtxt {
  padding: 0 0 0 19px;
  position: relative;
}
.l_search
  .search_blk
  > .inner
  .content
  .btn_wrap
  > .btn
  .u_txt_1.imgtxt:before {
  content: "";
  background: url(/assets/img/top/ico_search.png);
  width: 13px;
  height: 13px;
  position: absolute;
  top: 2px;
  left: 0px;
}
.l_search .search_blk > .inner .list_result {
  width: 100%;
  height: 70px;
  margin: 20px 0 0;
  padding: 0 20px;
  background: #e6e6e6;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner .list_result {
    height: initial;
    padding: 10px 0;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner .list_result > .left {
    margin: 0 auto;
  }
}
.l_search .search_blk > .inner .list_result > .left .u_txt_1 span._pt1 {
  font-size: 26px;
  color: #e21b1b;
  font-weight: bold;
  margin: 0 1px 0 10px;
}
.l_search .search_blk > .inner .list_result > .left .u_txt_1 span._pt2 {
  font-size: 18px;
  color: #333333;
  font-weight: bold;
  margin: 0 5px 0 0;
}
.l_search .search_blk > .inner .list_result > .left .u_txt_1 span._pt3 {
  color: #e21b1b;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner .list_result > .right {
    margin: 15px auto 0;
  }
}
.l_search .search_blk > .inner .list_result > .right ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.l_search .search_blk > .inner .list_result > .right ul li {
  margin: 0 0 0 5px;
}
.l_search .search_blk > .inner .list_result > .right ul li._active .u_txt_1 {
  background: #097847;
  color: #fff;
}
.l_search
  .search_blk
  > .inner
  .list_result
  > .right
  ul
  li._active
  .u_txt_1:hover {
  background: #097847;
}
.l_search .search_blk > .inner .list_result > .right ul li.next .u_txt_1 {
  position: relative;
}
.l_search .search_blk > .inner .list_result > .right ul li.next .u_txt_1:hover {
  background: #f2f8f5;
}
.l_search
  .search_blk
  > .inner
  .list_result
  > .right
  ul
  li.next
  .u_txt_1
  .vertical,
.l_search
  .search_blk
  > .inner
  .list_result
  > .right
  ul
  li.next
  .u_txt_1
  .horizontal {
  content: "";
  position: absolute;
  width: 5px;
  height: 1px;
  background: #333333;
}
.l_search
  .search_blk
  > .inner
  .list_result
  > .right
  ul
  li.next
  .u_txt_1
  .vertical {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -moz-transform-origin: top right;
  -ms-transform-origin: top right;
  -webkit-transform-origin: top right;
  transform-origin: top right;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.l_search
  .search_blk
  > .inner
  .list_result
  > .right
  ul
  li.next
  .u_txt_1
  .horizontal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -moz-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.l_search .search_blk > .inner .list_result > .right ul li.prev .u_txt_1 {
  position: relative;
}
.l_search .search_blk > .inner .list_result > .right ul li.prev .u_txt_1:hover {
  background: #f2f8f5;
}
.l_search
  .search_blk
  > .inner
  .list_result
  > .right
  ul
  li.prev
  .u_txt_1
  .vertical,
.l_search
  .search_blk
  > .inner
  .list_result
  > .right
  ul
  li.prev
  .u_txt_1
  .horizontal {
  content: "";
  position: absolute;
  width: 5px;
  height: 1px;
  background: #333333;
}
.l_search
  .search_blk
  > .inner
  .list_result
  > .right
  ul
  li.prev
  .u_txt_1
  .vertical {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -moz-transform-origin: top left;
  -ms-transform-origin: top left;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.l_search
  .search_blk
  > .inner
  .list_result
  > .right
  ul
  li.prev
  .u_txt_1
  .horizontal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -moz-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.l_search .search_blk > .inner .list_result > .right ul li .u_txt_1 {
  width: 26px;
  height: 26px;
  border: 1px solid #c0c0c0;
  background: #fff;
  border-radius: 3px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.l_search .search_blk > .inner .list_result > .right ul li .u_txt_1:hover {
  background: #f2f8f5;
}
.l_search .search_blk > .inner > div:nth-child(4) {
  margin: 20px 0 0;
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner > div:nth-child(4) {
    margin: 10px 0 0;
  }
}
.l_search .search_blk > .inner .l_job_offer {
  margin: 40px 0 0;
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner .l_job_offer {
    margin: 20px 0 0;
  }
}
.l_search
  .search_blk
  > .inner
  .l_job_offer
  > .inner
  > .inner
  .ttl_wrap
  .u_txt_3 {
  pointer-events: all;
  color: #097847;
  text-decoration: underline;
}
.l_search .search_blk > .inner .l_job_offer > .inner > .inner .txt_wrap .row4 {
  border-bottom: 1px dotted #333;
}
.l_search .search_blk > .inner .l_job_offer > .inner > .inner .txt_wrap .row5,
.l_search .search_blk > .inner .l_job_offer > .inner > .inner .txt_wrap .row6,
.l_search .search_blk > .inner .l_job_offer > .inner > .inner .txt_wrap .row7 {
  display: none;
}
.l_search .search_blk > .inner .l_job_offer > .inner > .inner > .btn_wrap1 {
  display: none;
}
.l_search .search_blk > .inner .l_job_offer > .inner > .inner > .entry_txt {
  display: none;
}
.l_search .search_blk > .inner .list_result1 {
  width: 100%;
  height: 70px;
  margin: 20px 0 0;
  padding: 0 20px;
  background: #e6e6e6;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner .list_result1 {
    margin: 10px 0 0;
    height: initial;
    padding: 0;
    background: #fff;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner .list_result1 > .right {
    width: 100%;
    background: #e6e6e6;
    padding: 10px 0;
  }
}
.l_search .search_blk > .inner .list_result1 > .right ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner .list_result1 > .right ul {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
  }
}
.l_search .search_blk > .inner .list_result1 > .right ul li {
  margin: 0 0 0 5px;
}
@media screen and (max-width: 768px) {
  .l_search .search_blk > .inner .list_result1 > .right ul li {
    margin: 0 0 0 10px;
  }
}
.l_search .search_blk > .inner .list_result1 > .right ul li._active .u_txt_1 {
  background: #097847;
  color: #fff;
}
.l_search
  .search_blk
  > .inner
  .list_result1
  > .right
  ul
  li._active
  .u_txt_1:hover {
  background: #097847;
}
.l_search .search_blk > .inner .list_result1 > .right ul li.next .u_txt_1 {
  position: relative;
}
.l_search
  .search_blk
  > .inner
  .list_result1
  > .right
  ul
  li.next
  .u_txt_1:hover {
  background: #f2f8f5;
}
.l_search
  .search_blk
  > .inner
  .list_result1
  > .right
  ul
  li.next
  .u_txt_1
  .vertical,
.l_search
  .search_blk
  > .inner
  .list_result1
  > .right
  ul
  li.next
  .u_txt_1
  .horizontal {
  content: "";
  position: absolute;
  width: 5px;
  height: 1px;
  background: #333333;
}
.l_search
  .search_blk
  > .inner
  .list_result1
  > .right
  ul
  li.next
  .u_txt_1
  .vertical {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -moz-transform-origin: top right;
  -ms-transform-origin: top right;
  -webkit-transform-origin: top right;
  transform-origin: top right;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.l_search
  .search_blk
  > .inner
  .list_result1
  > .right
  ul
  li.next
  .u_txt_1
  .horizontal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -moz-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.l_search .search_blk > .inner .list_result1 > .right ul li.prev .u_txt_1 {
  position: relative;
}
.l_search
  .search_blk
  > .inner
  .list_result1
  > .right
  ul
  li.prev
  .u_txt_1:hover {
  background: #f2f8f5;
}
.l_search
  .search_blk
  > .inner
  .list_result1
  > .right
  ul
  li.prev
  .u_txt_1
  .vertical,
.l_search
  .search_blk
  > .inner
  .list_result1
  > .right
  ul
  li.prev
  .u_txt_1
  .horizontal {
  content: "";
  position: absolute;
  width: 5px;
  height: 1px;
  background: #333333;
}
.l_search
  .search_blk
  > .inner
  .list_result1
  > .right
  ul
  li.prev
  .u_txt_1
  .vertical {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -moz-transform-origin: top left;
  -ms-transform-origin: top left;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.l_search
  .search_blk
  > .inner
  .list_result1
  > .right
  ul
  li.prev
  .u_txt_1
  .horizontal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -moz-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.l_search .search_blk > .inner .list_result1 > .right ul li .u_txt_1 {
  width: 26px;
  height: 26px;
  border: 1px solid #c0c0c0;
  background: #fff;
  border-radius: 3px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.l_search .search_blk > .inner .list_result1 > .right ul li .u_txt_1:hover {
  background: #f2f8f5;
}

/* ======================================================================
 z-index
====================================================================== */
.l_loader {
  z-index: 1000;
}

.l_menu_sp {
  z-index: 999;
}

.l_header {
  z-index: 1000;
}

.l_header_sp {
  z-index: 998;
}

.c_btn_p_top {
  z-index: 997;
}

.l_side {
  z-index: 996;
}

/* =================================
 p_top
================================= */
.l_menu_sp_top {
  z-index: 999;
}

.l_header_top {
  z-index: 998;
}

.l_header_sp_top {
  z-index: 998;
}

.c_btn_p_top_top {
  z-index: 997;
}

.l_side_top {
  z-index: 996;
}

/**
 *  仕事情報詳細
 */
.recommend-point {
  margin-top: 24px;
  font-size: 1.6em;
  line-height: 1.5;
}

.recommend-point h2 {
  margin-bottom: 6px;
}

.recommend-point p {
  margin-left: 8px;
}


/* TOP MV */
.topimg-sp {
  position: relative;
}
.center {
  position: absolute;
  top: 34%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 68px;
}
  
.center-bottom {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  background-color: white;
  opacity: 0.7;
  text-align:center;
  padding: 20px;
}
.form_bnr {
  margin: 10px auto;
  width: 100%;
}
.topimg-sp_bnr.u_pc {
  position: absolute;
  left: 18%;
  bottom: 18%;
  width: 220px;
  height: auto;
  object-fit: contain;
  transition: opacity 0.5s;
  transform: translateX(-50%);
}
.topimg-sp_bnr.u_pc:hover {
  opacity: .7;
}
.topimg-sp_bnr.u_pc img {
  width: 100%;
}
.topimg-sp_bnr.u_sp {
  margin: 10px auto 0;
  text-align: center;
}
.topimg-sp_bnr.u_sp img {
  width: 230px;
}
.topimg-sp_bnr.u_sp p {
  padding-top: 3px;
}

@media screen and (max-width: 768px) {
  .center,
  .center-bottom {
    display: none;
  }
  .center_sp {
    top: 20%;
    font-size: 7.5vw;
    position: absolute;
    text-align: center;
    width: 100%;
    margin: 15px 0 0 0;
  }
  .center-bottom_sp {
    bottom: 19%;
    left: 50%;
    font-size: 4.6vw;
    background-color: white;
    opacity: 0.75;
    text-align: center;
    padding: 20px;
    width: 81%;
    margin: 0 -40.5%;
    position: absolute;
  }
}

@media screen and (max-width: 570px) {
  .center-bottom_sp {
    font-size: 4.4vw;
  }
}

@media screen and (max-width: 375px) {
  .center,
  .center-bottom {
    display: none;
  }
  .center_sp {
    font-size: 34px!important;
  }
  .center-bottom_sp {
    left: 50%;
    font-size: 18px!important;
    padding: 20px;
    bottom: 15%;
    width: 330px;
    margin: 0px -165px;
  }
}
  
  