@charset "UTF-8";
/* ---------- setting ---------- ---------- */
body {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
}
@media screen and (min-width: 768px) {
  main {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  main {
    font-size: 14px;
  }
  main img {
    max-width: 100%;
  }
}

/* ----------------------------------------------------------
.btn-pagetop
---------------------------------------------------------- */
.btn-pagetop {
  position: fixed;
  display: block;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
  visibility: hidden;
}
.btn-pagetop:after {
  content: "";
  position: absolute;
  top: 18px;
  left: 10px;
  width: 12px;
  height: 1px;
  background: #fff;
  transform: rotate(-45deg);
}
.btn-pagetop:before {
  content: "";
  position: absolute;
  top: 18px;
  right: 10px;
  width: 12px;
  height: 1px;
  background: #fff;
  transform: rotate(45deg);
}
.btn-pagetop.js-show {
  opacity: 1;
  visibility: visible;
}
.btn-pagetop.js-show:hover {
  opacity: 0.6;
}
.btn-pagetop.js-fixed {
  top: -60px;
  bottom: auto;
  position: absolute;
}

/* ----------------------------------------------------------
.area-modal
---------------------------------------------------------- */
.area-modal {
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.2s;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1000;
}
.area-modal.js-show {
  visibility: visible;
  opacity: 1;
}
.area-modal ._modal-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.85);
}
.area-modal ._modal-btn-close {
  position: absolute;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition-duration: 0.2s;
}
@media print, screen and (min-width: 768px) {
  .area-modal ._modal-btn-close {
    top: -50px;
    right: 0px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .area-modal ._modal-btn-close {
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
  }
}
.area-modal ._modal-btn-close:hover {
  opacity: 0.8;
}
.area-modal ._modal-btn-close:after, .area-modal ._modal-btn-close:before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8px;
  width: 25px;
  height: 4px;
  transform: rotate(-45deg);
}
@media print, screen and (min-width: 768px) {
  .area-modal ._modal-btn-close:after, .area-modal ._modal-btn-close:before {
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  .area-modal ._modal-btn-close:after, .area-modal ._modal-btn-close:before {
    background: #000;
  }
}
.area-modal ._modal-btn-close:before {
  transform: rotate(45deg);
}
.area-modal ._modal-box {
  position: absolute;
  background: #fff;
  box-sizing: border-box;
  border-radius: 5px;
}
@media print, screen and (min-width: 768px) {
  .area-modal ._modal-box {
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    margin: -300px 0 0 -300px;
  }
}
@media screen and (max-width: 767px) {
  .area-modal ._modal-box {
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    width: auto;
    height: auto;
    margin: 0;
  }
}
.area-modal ._modal-box ._modal-head {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: 15px 0 0 20px;
  height: 50px;
  background: #eee;
  box-sizing: border-box;
}
.area-modal ._modal-box ._modal-body {
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 0px;
  right: 0px;
  padding: 20px;
  background: #ccc;
  box-sizing: border-box;
  overflow-y: scroll;
}
.area-modal ._modal-box ._modal-body ._t1 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
}
.area-modal ._modal-box ._modal-body ._t2 {
  font-size: 14px;
  line-height: 1.8;
}
.area-modal ._modal-box ._modal-body ._t3 {
  font-size: 12px;
  line-height: 1.8;
}
.area-modal ._modal-box ._modal-foot {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 7px 0 0 0;
  height: 50px;
  background: #eee;
  box-sizing: border-box;
}
.area-modal ._modal-box ._modal-foot ._btn-do {
  display: block;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  width: 200px;
  margin: 0 auto;
  padding: 5px 0;
  font-size: 14px;
  background: #666;
  color: #fff;
}
.area-modal ._modal-box ._modal-foot ._btn-do:hover {
  background: #333;
}

/* リセットCSS */
html, body {
  width: 100%;
  height: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul, li, blockquote, pre, a, div {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: inherit;
  box-sizing: border-box;
}

body {
  -webkit-text-size-adjust: 100%;
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

th, td {
  vertical-align: top;
  text-align: left;
  font-weight: normal;
}

img {
  border: 0;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  /* ----------------------------------------------------------
  .area-footer
  ---------------------------------------------------------- */
  .area-footer {
    padding: 64px 0 120px 0;
    border-radius: 0 80px 0 0;
    color: #FFF;
  }
  .area-footer.is-mini {
    padding: 16px;
  }
  .area-footer ._cols {
    display: flex;
    justify-content: space-between;
    width: 920px;
    margin: 0 auto;
  }
  .area-footer ._cols ._col-main {
    width: 377px;
  }
  .area-footer ._cols ._col-main ._type {
    width: 377px;
  }
  .area-footer ._cols ._col-main ._add {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 230%; /* 50.5px */
    letter-spacing: 1.1px;
  }
  .area-footer ._cols ._col-texts {
    width: 360px;
    display: flex;
    gap: 56px;
  }
  .area-footer ._links {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .area-footer ._links a {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2; /* 40px */
    letter-spacing: 1px;
  }
  .area-footer ._btns {
    margin-top: 64px;
    display: flex;
    justify-content: center;
    gap: 80px;
  }
  .area-footer ._copy {
    /* margin-top: 48px; */
    margin-top: 32px;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 19.2px */
    letter-spacing: 0.6px;
  }
  .mod-footer-support {
    transition-duration: 0.2s;
    transform: translate(105%);
    position: fixed;
    left: 32px;
    right: 32px;
    z-index: 10;
    bottom: 16px;
    border-radius: 16px;
    border: 3px solid #F7EB8C;
    color: #00A0E9;
    padding: 16px 24px 16px 8px;
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 1.76px;
    cursor: pointer;
  }
  body.is-support-show .mod-footer-support {
    transform: translate(0%);
  }
  /* ----------------------------------------------------------
  .area-wrapper
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  .area-inner
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
}
@media screen and (min-width: 768px) and (max-width: 1120px) {
  .mod-footer-support {
    padding: 8px 24px 8px 8px;
    font-size: 16px;
  }
}
@media print, screen and (min-width: 768px) {
  .mod-footer-support:hover {
    filter: brightness(1.1);
  }
  .mod-footer-support:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: -24px;
    transform: translate(0, -50%);
    background: url(/common/images/icon/arrow_support.png) left top no-repeat;
    background-size: contain;
    width: 88px;
    height: 88px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1120px) {
  .mod-footer-support:after {
    width: 48px;
    height: 48px;
  }
}
@media print, screen and (min-width: 768px) {
  .area-header-waqpper {
    position: relative;
    height: 100px;
  }
  .area-header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 100;
    height: 100px;
    border-radius: 0px 0px 0px 100px;
    display: flex;
    padding: 21px 40px 21px 70px;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, rgba(11, 169, 95, 0.9) 0%, rgba(8, 191, 190, 0.9) 49.5%, rgba(0, 160, 233, 0.9) 100%);
  }
  .area-header ._sitetitle a {
    color: #fff;
  }
  .area-header ._sitetitle ._job {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
  }
  .area-header ._sitetitle ._name {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
  }
  .area-header ._sitetitle ._name span {
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
  }
  .area-header ._sitemenu {
    position: absolute;
    top: 35px;
    right: 25px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .area-header ._sitemenu {
    top: 20px;
    right: 15px;
  }
}
@media print, screen and (min-width: 768px) {
  .area-header ._menu-btn {
    display: none;
  }
  .mod-head-sidemenu {
    display: flex;
    justify-content: space-between;
    /* gap: 15px; */
    gap: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .mod-head-sidemenu {
    /* gap: 10px; */
    gap: 8px;
  }
  .mod-head-sidemenu a {
    font-size: 10px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .mod-head-sidemenu a {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
  }
  .mod-head-sidemenu a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  .mod-sitelinks {
    display: none;
  }
  .area-wrapper {
    overflow: hidden;
    position: relative;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1080px) {
  .area-wrapper {
    min-width: 1080px;
  }
}
@media print, screen and (min-width: 768px) {
  .area-inner {
    position: relative;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 768px) {
  .area-inner {
    margin: 0 auto;
    width: 1040px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1080px) {
  .area-inner {
    margin: 0 20px;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 768px) {
  .block-inner {
    margin: 0 auto;
    width: 1040px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1080px) {
  .block-inner {
    margin: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  /* ----------------------------------------------------------
  .area-footer
  ---------------------------------------------------------- */
  .area-footer {
    padding: 60px 40px 100px 40px;
    border-radius: 0 40px 0 0;
    color: #FFF;
  }
  .area-footer.is-mini {
    padding: 20px;
  }
  .area-footer img {
    width: 100%;
  }
  .area-footer ._cols ._col-main ._type {
    margin: 0 auto;
  }
  .area-footer ._cols ._col-main ._add {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 230%; /* 50.3px */
    letter-spacing: 1.1px;
  }
  .area-footer ._cols ._col-texts {
    display: flex;
    gap: 40px;
  }
  .area-footer ._links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .area-footer ._links a {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2; /* 21px */
    letter-spacing: 1px;
  }
  .area-footer ._btns {
    margin-top: 30px;
    display: flex;
    gap: 5px;
    flex-direction: column;
  }
  .area-footer ._copy {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 19.1px */
    letter-spacing: 0.4px;
  }
  .mod-footer-support {
    transition-duration: 0.2s;
    transform: translate(105%);
    position: fixed;
    left: 16px;
    right: 16px;
    z-index: 10;
    bottom: 0;
    border-radius: 8px 8px 0 0;
    border: 3px solid #F7EB8C;
    color: #00A0E9;
    border-bottom: none;
    padding: 8px 40px 8px 15px;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    cursor: pointer;
  }
  body.is-support-show .mod-footer-support {
    transform: translate(0%);
  }
  .mod-footer-support:hover {
    filter: brightness(1.1);
  }
  .mod-footer-support:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: -13px;
    transform: translate(0, -50%);
    background: url(/common/images/icon/arrow_support.png) left top no-repeat;
    background-size: contain;
    width: 45px;
    height: 45px;
  }
  .area-header-waqpper {
    position: relative;
    height: 60px;
  }
  .area-header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 100;
    height: 60px;
    border-radius: 0px 0px 0px 30px;
    display: flex;
    padding: 10px 0 10px 40px;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, rgba(11, 169, 95, 0.9) 0%, rgba(8, 191, 190, 0.9) 49.5%, rgba(0, 160, 233, 0.9) 100%);
  }
  .area-header ._sitetitle a {
    color: #fff;
  }
  .area-header ._sitetitle ._job {
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
  }
  .area-header ._sitetitle ._name {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
  }
  .area-header ._sitetitle ._name span {
    font-size: 13px;
    font-weight: 700;
    line-height: 120%;
  }
  .area-header ._sitemenu {
    display: none;
  }
  .area-header ._menu-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
  }
  .area-header ._menu-btn span {
    transition-duration: 0.2s;
    position: absolute;
    background: #fff;
    height: 1px;
    left: 10px;
    right: 10px;
  }
  .area-header ._menu-btn span:nth-child(1) {
    top: 15px;
  }
  .area-header ._menu-btn span:nth-child(2) {
    top: 24px;
  }
  .area-header ._menu-btn span:nth-child(3) {
    bottom: 15px;
  }
  body.js-gmenu-active .area-header ._menu-btn span:nth-child(1) {
    position: absolute;
    top: 25px;
    transform: rotate(45deg);
  }
  body.js-gmenu-active .area-header ._menu-btn span:nth-child(2) {
    display: none;
  }
  body.js-gmenu-active .area-header ._menu-btn span:nth-child(3) {
    position: absolute;
    top: 25px;
    transform: rotate(-45deg);
  }
  /* ----------------------------------------------------------
  area-mega-menu
  ---------------------------------------------------------- */
  .area-modal-menu {
    position: fixed;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.4s;
    transform: translate(0, -200px);
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    min-height: 140px;
    background: #fff;
    background: linear-gradient(90deg, rgba(11, 169, 95, 0.9) 0%, rgba(8, 191, 190, 0.9) 49.5%, rgba(0, 160, 233, 0.9) 100%);
    padding: 100px 20px 40px 60px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  body.js-gmenu-active .area-modal-menu {
    visibility: visible;
    z-index: 50;
    opacity: 1;
    transform: translate(0, 0);
  }
  .area-modal-menu a {
    color: #fff;
  }
  .area-modal-menu a.is-under {
    color: #ccc;
  }
  .area-modal-menu a.is-under:before {
    background: #ccc;
  }
  .mod-sitelinks {
    display: flex;
    gap: 20px;
    flex-direction: column;
  }
  .mod-sitelinks li {
    display: block;
    position: relative;
    padding: 5px 0 5px 5px;
    font-weight: bold;
  }
  .mod-sitelinks li.under {
    color: #ccc;
  }
  .mod-sitelinks li.under:before {
    background: #ccc;
  }
  /* ----------------------------------------------------------
  .area-wrapper
  ---------------------------------------------------------- */
  .area-wrapper {
    overflow: hidden;
    position: relative;
  }
  /* ----------------------------------------------------------
  .area-inner
  ---------------------------------------------------------- */
  .area-inner {
    position: relative;
  }
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
  .block-inner-sp {
    padding-right: 15px;
    padding-left: 15px;
  }
}