@charset "utf-8";
/* reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
html {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
q,
blockquote {
  quotes: none;
}
q:before,
q:after {
  content: "";
  content: none;
}
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}
a img {
  border: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
h1,
h2,
h3 {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
/* common */
html,
body {
  font-family: var(--font-family01);
  line-height: 1.2;
}
@media (max-width: 768px) {
  html,
  body {
    min-width: auto;
    width: 100%;
  }
}
p {
  font-family: var(--font-family02);
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  color: #333;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
header {
  background: var(--color-white);
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 500;
}
header .inner {
  max-width: var(--site-width-main);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 70px;
}
@media (max-width: 1200px) {
  header .inner {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  header .inner {
    height: 52px;
  }
}
header .inner .logo {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  header .inner .logo {
    padding: 0;
  }
}
header .inner .logo span {
  padding-left: 15px;
}
@media (max-width: 768px) {
  header .inner .logo span {
    padding-left: 10px;
  }
}
header .inner .logo img {
  max-height: 30px;
}
@media (max-width: 768px) {
  header .inner .logo img {
    max-height: 18px;
  }
}
header .inner nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .inner nav label {
  color: var(--color-blue);
  line-height: 1;
}
header .inner nav .entry a {
  margin-left: 10px;
}
@media (max-width: 768px) {
  header .inner nav .entry a.btn {
    padding: 0.75rem 0.5rem;
  }
}
@media (max-width: 768px) {
  header .inner nav .entry a.btn img {
    width: 46px;
  }
}
header #overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  *zoom: 1;
  background-color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  z-index: 4;
}
header ul.menu__box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  visibility: visible;
  display: none;
  overflow-y: auto;
  z-index: 5;
  margin: 80px auto 0;
  width: 350px;
}
header ul.menu__box.menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 1em 0 1.9em;
  color: #ffffff;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}
header ul.menu__box > li {
  font-size: 20px;
  position: relative;
  padding-left: 40px;
  margin-bottom: 30px;
}
header ul.menu__box > li::before {
  content: '';
  display: inline-block;
  background-image: url('/saiyo/images/common/icon_arrow_o1.png');
  background-size: cover;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -3px;
  left: 0;
}
header ul.menu__box > li a {
  font-weight: bold;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
header ul.menu__box > li a:hover {
  color: var(--color-orange);
}
header ul.menu__box > li.worker ul {
  margin-top: 30px;
}
header ul.menu__box > li.worker ul li {
  font-size: 14px;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}
header ul.menu__box > li.worker ul li::before {
  content: '';
  display: inline-block;
  background-image: url('/saiyo/images/common/icon_arrow_o2.png');
  background-size: cover;
  width: 9px;
  height: 14px;
  position: absolute;
  left: 0;
}
header ul.menu__box > li.worker ul li.new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
header ul.menu__box > li.worker ul li.new a {
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header ul.menu__box > li.worker ul li.new a span {
  padding-left: 5px;
}
header ul.menu__box > li.worker ul li.new img {
  width: 25px;
  height: 25px;
  padding-left: 5px;
}
header ul.menu__box > li.worker ul li:last-of-type {
  margin-bottom: 0;
}
header #menu__toggle {
  opacity: 0;
}
header #menu__toggle:checked ~ .menu__btn {
  background-color: var(--color-orange);
  color: var(--color-white);
  border: 2px solid var(--color-orange);
  content: 'CLOSE';
}
header #menu__toggle:checked ~ .menu__btn > span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: var(--color-white);
}
header #menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  background: var(--color-white);
}
header #menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: var(--color-white);
}
header #menu__toggle:checked ~ .menu__box {
  visibility: visible;
  margin: 80px auto;
  padding-top: 10px;
}
@media (max-width: 768px) {
  header #menu__toggle:checked ~ .menu__box {
    margin-top: 60px;
  }
}
header .menu__btn {
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  bottom: 2px;
  height: 26px;
  cursor: pointer;
  z-index: 7;
  color: var(--color-blue);
  border: solid 2px var(--color-blue);
  border-radius: 4px;
  padding: 0.75rem 0.75rem 0.75rem 2.75rem;
  height: 46px;
  margin-top: 4px;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 768px) {
  header .menu__btn {
    width: 34px;
    padding: 0.95rem;
    height: 32px;
  }
}
header .menu__btn span {
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: var(--color-blue);
  left: 14px;
}
@media (max-width: 768px) {
  header .menu__btn span {
    left: 5px;
  }
}
header .menu__btn span::before {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--color-blue);
  content: '';
  top: -8px;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}
@media (max-width: 768px) {
  header .menu__btn span::before {
    top: -7px;
  }
}
header .menu__btn span::after {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--color-blue);
  content: '';
  top: 8px;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}
@media (max-width: 768px) {
  header .menu__btn span::after {
    top: 7px;
  }
}
footer {
  color: var(--color-white);
  background-color: var(--color-orange);
  margin-top: 180px;
  padding: 30px 0 15px;
  position: relative;
}
@media (max-width: 768px) {
  footer {
    margin-top: 90px;
  }
}
footer .footContent {
  max-width: var(--site-width-main);
  margin: 0 auto;
}
@media (max-width: 1200px) {
  footer .footContent {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  footer .footContent {
    padding: 0 15px;
  }
}
footer .footContent .flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  footer .footContent .flexbox {
    display: block;
  }
}
footer .footContent .flexbox .leftContents p {
  margin-bottom: 25px;
  font-size: 14px;
}
footer .footContent .flexbox .leftContents p:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
footer .footContent .flexbox .leftContents p:first-of-type span {
  padding-left: 12px;
  font-size: 13px;
}
footer .footContent .flexbox .leftContents p img {
  max-width: 186px;
  width: 100%;
  height: 24px;
}
footer .footContent .flexbox .leftContents .eng {
  font-weight: bold;
}
footer .footContent .flexbox .rightContents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .footContent .flexbox .rightContents ul li {
  position: relative;
  margin-bottom: 16px;
  font-weight: bold;
}
footer .footContent .flexbox .rightContents ul li::before {
  content: '';
  display: inline-block;
  background-image: url('/saiyo/images/common/icon_arrow_w2.png');
  background-size: cover;
  width: 5px;
  height: 8px;
  position: relative;
  top: -2px;
  left: -6px;
}
@media (max-width: 768px) {
  footer .footContent .flexbox .rightContents ul li::before {
    left: 0;
  }
}
footer .footContent .flexbox .rightContents ul li:last-of-type {
  margin-bottom: 0;
}
footer .footContent .flexbox .rightContents ul li a {
  display: inline-block;
  position: relative;
}
footer .footContent .flexbox .rightContents ul li a::after {
  content: '';
  background-color: var(--color-white);
  width: 100%;
  height: 2px;
  visibility: hidden;
  display: inline;
  position: absolute;
  top: 20px;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
footer .footContent .flexbox .rightContents ul li a:hover::after {
  visibility: visible;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
footer .footContent .flexbox .rightContents ul:first-of-type {
  margin-right: 95px;
}
footer .footContent .flexbox .home {
  border: 1px solid #FEE9D1;
  border-radius: 4px;
  padding: 5px 10px 5px 20px;
  font-weight: bold;
  margin-top: 20px;
  font-size: 14px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  line-height: 1;
}
@media (max-width: 768px) {
  footer .footContent .flexbox .home {
    margin-top: 20px;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  footer .footContent .flexbox .home.spDisp {
    display: inline-block;
  }
}
footer .footContent .flexbox .home::before {
  content: '';
  display: inline-block;
  background-image: url('/saiyo/images/common/icon_arrow_w2.png');
  background-size: cover;
  width: 5px;
  height: 8px;
  position: relative;
  top: -1px;
  left: -6px;
}
footer .footContent .flexbox .home:hover {
  background-color: var(--color-white);
  color: var(--color-orange);
}
footer .footContent .flexbox .home:hover::before {
  background-image: url('/saiyo/images/common/icon_arrow_o2.png');
  width: 5px;
  height: 7px;
}
footer .footContent .copyright {
  text-align: right;
  margin-top: 40px;
  font-size: 12px;
}
@media (max-width: 768px) {
  footer .footContent .copyright {
    font-size: 10px;
    text-align: center;
  }
}
footer a {
  color: var(--color-white);
}
.pagetop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: block;
  width: 60px;
  height: 60px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  opacity: 0;
  pointer-events: none;
  outline: none;
  z-index: 50;
}
@media (max-width: 768px) {
  .pagetop {
    right: 12px;
    bottom: 12px;
  }
}
.pagetop.show {
  opacity: 1;
  pointer-events: auto;
}
.pagetop.absolute {
  position: absolute;
  opacity: 1;
  pointer-events: auto;
  top: -90px;
  bottom: auto;
}
@media (max-width: 768px) {
  .pagetop.absolute {
    top: -65px;
  }
}
.pagetop:hover {
  text-decoration: none;
  opacity: 0.8;
  cursor: pointer;
}
@media (max-width: 768px) {
  .pagetop img {
    width: 50px;
  }
}
.topContent h2 {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .topContent h2 {
    font-size: 26px;
  }
}
.topContent h2.heading {
  text-align: center;
  font-weight: bold;
  position: relative;
  z-index: 10;
}
.topContent h2.heading::after {
  content: '';
  background-image: url('/saiyo/images/common/bg_heading_o.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 350px;
  height: 95px;
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
@media (max-width: 768px) {
  .topContent h2.heading::after {
    width: 260px;
  }
}
.topContent h2.heading span {
  color: var(--color-blue);
  font-size: 16px;
  display: block;
}
.topContent h2 span {
  font-size: 16px;
  padding-left: 15px;
}
@media (max-width: 768px) {
  .topContent h2 span {
    font-size: 13px;
    padding-left: 8px;
  }
}
.btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  padding: 1.05rem 0.95rem;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
  background-color: var(--color-blue);
  border-radius: 4px;
  display: block;
}
@media (max-width: 768px) {
  .btn {
    padding: 0.5rem;
  }
}
.bgleft:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  /*色や形状*/
  background: var(--color-orange);
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.bgleft:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.bgleft:hover img,
.bgleft:hover span {
  position: relative;
}
.bgleft img {
  display: block;
}
@media (max-width: 768px) {
  .pcDisp {
    display: none;
  }
}
.spDisp {
  display: none;
}
@media (max-width: 768px) {
  .spDisp {
    display: block;
  }
}
