@charset "UTF-8";
:root {
  --font-family: "BIZ UDPGothic", "Hiragino Kaku Gothic ProN", Meiryo,
    sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  background-color: #fff;
  color: #000;
  font-size: 1.4rem;
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  text-align: center;
  -webkit-text-size-adjust: 100%;
}
input,
button,
textarea,
select {
  font-family: var(--font-family);
  cursor: pointer;
}
img {
  height: auto;
  max-width: 100%;
}
figure {
  margin: 0;
}
hr {
  border-top: 1px dashed #707070;
  height: 0;
  padding: 0;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  margin: 20px 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: 1.2;
  margin: 0.2em 0;
}
form {
  margin: 0;
  padding: 0;
}
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="image"],
button {
  transition: all 0.2s;
}
label + input,
label + select {
  margin-left: 7px;
}
/*テキストフォーム*/
.input-text {
  padding: 3px 13px;
  max-width: 100%;
  min-height: 42px;
  border: none;
  vertical-align: middle;
  font-size: 1.4rem;
  border-radius: 10px;
  background: #eaf0f4;
  margin-bottom: 5px;
}
.input-text.is-zip {
  width: 14em;
}
.input-text.is-tel {
  width: 20em;
}
/*セレクトメニュー*/
.select-form {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #eaf0f4 url("../images/icon-select-arrow.png") no-repeat right
    12px center/13px auto;
  max-width: 100%;
  min-height: 42px;
  border: none;
  vertical-align: middle;
  font-size: 1.4rem;
  border-radius: 10px;
  padding: 3px 36px 3px 13px;
  margin-bottom: 5px;
}
.select-form-l {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 10px;
  border: 1px solid #2ebebe;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.12);
  background: #fff url("../images/icon-arrow-dl.png") no-repeat right 16px
    center/15px auto;
  max-width: 100%;
  min-height: 42px;
  vertical-align: middle;
  padding: 15px 36px 15px 20px;
  margin-bottom: 5px;
  font-size: 1.6rem;
  width: 100%;
}
.select-form-l::-ms-expand,
.select-form::-ms-expand {
  display: none;
}
/*チェックボックス　ラジオボタン*/
input.checkbox-btn,
input.radio-btn {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-left: 30px;
  vertical-align: text-top;
  position: relative;
  margin-top: 2px;
}
.label-name {
  line-height: 1.1;
  cursor: pointer;
  display: inline-block;
  margin: 5px 3px;
  font-size: 1.4rem;
}
input.radio-btn::before,
input.radio-btn::after,
input.checkbox-btn::before,
input.checkbox-btn::after {
  content: "";
  display: block;
  position: absolute;
  cursor: pointer;
}
input.checkbox-btn::before {
  background-color: #fff;
  border: 1px solid #b2b2b2;
  width: 17px;
  height: 17px;
  border-radius: 3px;
  top: -4px;
  left: 5px;
}
input.checkbox-btn::after {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  opacity: 0;
  height: 5px;
  width: 8px;
  transform: rotate(-45deg);
  top: 0px;
  left: 9px;
}
input.radio-btn::before {
  background-color: #fff;
  border: 1px solid #b7b5b5;
  width: 18px;
  height: 18px;
  border-radius: 20px;
  top: -5px;
  left: 5px;
}
input.radio-btn::after {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  opacity: 0;
  height: 5px;
  width: 8px;
  transform: rotate(-45deg);
  top: 0px;
  left: 10px;
}
input.radio-btn:checked::before,
input.checkbox-btn:checked::before {
  background-color: #219f9f;
  border-color: #219f9f;
}
input.checkbox-btn:checked::after,
input.radio-btn:checked::after {
  opacity: 1;
}
.is-error {
  background-color: #faefe5;
  border: 1px solid #dd7070;
}
.f-layout-list.is-error {
  border: none;
}
.block-license.is-error {
  border: 2px solid #dd7070;
}
.error-msg {
  font-size: 1.3rem;
  color: #a70909;
  margin: 0.2em 0.8em 0;
  background: url("../images/icon-error.png") no-repeat left center / 16px auto;
  padding: 2px 0 2px 20px;
  text-align: left;
}
.f-layout-list {
  list-style: none;
  margin: 0;
  padding: 7px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  border-radius: 10px;
}
.form-headline {
  text-align: left;
  font-size: 2.2rem;
  background: url("../images/line-dot.png") repeat-x left center / auto 3px;
  margin: 1em 0;
}
.form-headline-txt {
  display: inline-block;
  background: #fff;
  padding: 2px 0.7em 2px 27px;
  position: relative;
}
.form-headline-txt::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #2ebebe;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.form-headline-cate {
  text-align: left;
  font-size: 1.8rem;
  position: relative;
  padding: 2px 0.7em 2px 23px;
  margin-left: 4px;
}
.form-headline-cate::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 10px;
  background: #b4dede;
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
}
.form-headline-note {
  margin: 0 0 0 1em;
  font-size: 0.8em;
  color: #343434;
}
.icon-required {
  display: inline-block;
  background: #d51e1e;
  border-radius: 20px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.1;
  padding: 2px 6px 1px;
  margin: -3px 8px 0;
  vertical-align: middle;
  font-weight: normal;
}
.block-form {
  text-align: left;
  margin: 0 0 30px;
}
.block-form.is-narrow {
  width: 390px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.block-form.is-middle {
  width: 580px;
  max-width: 94%;
  margin-left: auto;
  margin-right: auto;
}
.form-title {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #076a6a;
  margin: 0 4px 0.6em;
}
.form-box + .form-title {
  margin-top: 25px;
}
.form-box.is-data {
  border-bottom: 2px solid #cccaca;
  padding: 0 10px 10px 30px;
  margin-top: 20px;
}
.form-box.dataonly {
  padding: 0 10px 10px 8px;
  margin-top: 20px;
}
.form-bottom {
  margin: 35px 0 30px;
  text-align: center;
}
.form-bottom-link {
  text-align: center;
}
.link-arrow {
  display: inline-block;
  text-decoration: none;
  color: #000;
  position: relative;
  padding: 0 0 0 20px;
}
.link-arrow::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #46b6b6;
  border-right: 2px solid #46b6b6;
  position: absolute;
  left: 0;
  top: 45%;
  transform: rotate(45deg) translateY(-50%);
}
.btn-login,
.btn-signup,
.btn-about,
.btn-arrow {
  width: 260px;
  max-width: 94%;
  border-radius: 4px;
  font-size: 1.8rem;
  padding: 15px 10px;
  border: none;
  display: inline-block;
  text-decoration: none;
  color: #fff;
}
.btn-login {
  background: #187c7c;
}
.btn-signup {
  background: #819e1f;
}
.btn-about,
.btn-arrow {
  background: #18a3a3;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
.btn-about::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  left: 10px;
  top: 45%;
  transform: rotate(45deg) translateY(-50%);
}
.btn-arrow::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  left: 12px;
  top: 45%;
  transform: rotate(-45deg) translateY(-50%);
}
.btn-main {
  /*  max-width: 94%;*/
  font-size: 1.4rem;
  padding: 12px 15px;
  border: none;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border-radius: 10px;
  background-color: #208383;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.12);
  line-height: 1.1;
}
.btn-main-l {
  /*  max-width: 94%;*/
  font-size: 1.6rem;
  padding: 14px 15px;
  border: none;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border-radius: 10px;
  background-color: #208383;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.12);
  line-height: 1.1;
}
.btn-main-l.btn-next {
  min-width: 210px;
  background-image: url("../images/icon-arrow-grn-r.png");
  background-repeat: no-repeat;
  background-size: 7px auto;
  background-position: right 12px center;
  padding-left: 30px;
  padding-right: 30px;
}
.btn-main-l.btn-dataview {
  width: 210px;
  background-image: url("../images/icon-list.png");
  background-repeat: no-repeat;
  background-size: 23px auto;
  background-position: 12px center;
}
.btn-sub-l {
  /*  max-width: 94%;*/
  font-size: 1.6rem;
  padding: 14px 15px;
  border: 1px solid #2ebebe;
  display: inline-block;
  text-decoration: none;
  color: #0c5858;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.12);
  line-height: 1.1;
}
.btn-sub-l.btn-return {
  min-width: 210px;
  background-image: url("../images/icon-arrow-wh-l.png");
  background-repeat: no-repeat;
  background-size: 7px auto;
  background-position: 12px center;
  padding-left: 30px;
  padding-right: 30px;
}
.btn-sub {
  /*  max-width: 94%;*/
  font-size: 1.4rem;
  padding: 12px 15px;
  border: 1px solid #2ebebe;
  display: inline-block;
  text-decoration: none;
  color: #0c5858;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.12);
  line-height: 1.1;
}
.btn-sub.btn-return {
  background-image: url("../images/icon-arrow-wh-l.png");
  background-repeat: no-repeat;
  background-size: 7px auto;
  background-position: 12px center;
  padding-left: 30px;
  padding-right: 20px;
}
.btn-sub.btn-next {
  background-image: url("../images/icon-arrow-wh-r.png");
  background-repeat: no-repeat;
  background-size: 7px auto;
  background-position: right 12px center;
  padding-left: 20px;
  padding-right: 30px;
}
.btn-arrow-wh-r {
  background-image: url("../images/icon-arrow-grn-r.png");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 6px auto;
  padding-left: 24px;
}
.btn-msg-entry {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background: #208383;
  border: 1px solid #208383;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.1;
}
.btn-memo {
  background-image: url("../images/icon-memo.png");
  background-repeat: no-repeat;
  background-position: 8px center;
  background-size: 25px auto;
  padding-left: 40px;
}
.btn-dl {
  background-image: url("../images/icon-dl.png");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 17px auto;
  padding-left: 36px;
}
.btn-main-l.btn-login {
  min-width: 210px;
  background-image: url("../images/icon-arrow-grn-r.png");
  background-repeat: no-repeat;
  background-size: 7px auto;
  background-position: right 12px center;
  padding-left: 30px;
  padding-right: 30px;
}
.data-age {
  display: inline-block;
  margin: 0 10px;
}
.mgb10 {
  margin-bottom: 10px !important;
}
.mgb0 {
  margin-bottom: 0px !important;
}
.mgt0 {
  margin-top: 0px !important;
}
.mgl0 {
  margin-left: 0px !important;
}
.mgl20 {
  margin-left: 20px !important;
}
.mgl30 {
  margin-left: 30px !important;
}
.w-full {
  width: 100%;
}
.w-f-pass {
  width: 30em;
}
.align-r {
  text-align: right;
}
.align-l {
  text-align: left;
}
.align-c {
  text-align: center;
}
.fc-red {
  color: #9f0104 !important;
}
.top-mainmenu-link .s-s {
  font-size: 0.9em;
  line-height: 1.4;
  margin-top: 4px !important;
}
/*ページのトップに戻るボタン*/
.navi-pagetop {
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 60px;
  width: 60px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
  border-radius: 100px;
}
.navi-pagetop a {
  display: block;
  height: 60px;
  width: 60px;
  padding-top: 25px;
  text-decoration: none;
  text-align: center;
}
.navi-pagetop a::before {
  content: "";
  width: 20px;
  height: 20px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  display: inline-block;
  transform: rotate(45deg);
}
.navi-pagetop a .txt {
  display: block;
  text-indent: -9999px;
  height: 1px;
}
/* メッセージのテキストエリア参考スタイル */
#comm_textarea {
  width: 100%;
  font-size: 1.6rem;
  padding: 8px;
  max-height: 300px !important;
  min-height: 100px !important;
  margin: 0;
}
/*グローバル*/
.page-footer {
  border-radius: 100px 100px 0px 0px;
  background: #8acfcf;
  border-bottom: 7px solid #009393;
  padding: 20px 10px 5px;
  position: relative;
  z-index: 2;
}
.footer-menu {
  list-style: none;
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 28px;
  margin: 20px;
  padding: 0;
}
.footer-menu .footer-menu-item .footer-menu-link {
  color: #000;
  text-decoration: none;
}
.footer-banner {
  margin: 25px 10px;
}
.footer-banner-img {
  width: 227px;
  height: auto;
  max-width: 100%;
}
.copy-r {
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin: 1em;
  line-height: 1.2;
}
.bg-pagetop {
  text-align: left;
  width: 0;
  height: 0;
  overflow: hidden;
}
.bg-content {
  background: url("../images/bg-contents.jpg");
  background-position: left bottom;
  background-size: 100% 60%;
}
.is-top {
  text-indent: -9999px;
  display: block;
  overflow: hidden;
}
.page-header {
  width: 100%;
  height: 280px;
  border-radius: 0px 0px 100px 100px;
  background: #2ebebe;
  position: relative;
  /*  z-index: 1;*/
}
.page-header.at-content {
  border-radius: 0px 0px 80px 80px;
  height: 230px;
}
.page-header::before {
  content: "";
  display: block;
  width: calc(100% - 32px);
  margin: 0 auto;
  height: 7px;
  border-radius: 0px 0px 7px 7px;
  background: #009393;
}
.logo-box-top {
  background: url("../images/bg-logo-top.png") no-repeat center bottom / contain;
  width: 890px;
  max-width: 94%;
  margin: 15px auto 0;
}
.logo-top {
  background: #2ebebe url("../images/logo-top.png") no-repeat center center /
    255px auto;
  height: 130px;
  width: 255px;
  margin: 0 auto;
  text-indent: -9999px;
}
.logo-box-contents {
  background: url("../images/bg-logo-contents.png") no-repeat center bottom /
    contain;
  width: 820px;
  max-width: 94%;
  margin: 10px auto 0;
  padding-top: 10px;
}
.logo-contents {
  background: #2ebebe url("../images/logo-contents.png") no-repeat center center /
    290px auto;
  height: 60px;
  width: 320px;
  margin: 0 auto;
  text-indent: -9999px;
}
.page-main-top {
  position: relative;
  z-index: 2;
  margin: -100px 0 60px;
}
.navi-global-fn {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}
.navi-btn {
  width: 80px;
  height: 80px;
  background: #a1e2e2;
  border: none;
  border-radius: 100px;
  position: absolute;
  left: 20px;
  top: 20px;
}
.navi-btn .btntxt::before {
  content: "MENU";
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: block;
  left: 0;
  font-size: 1.1rem;
}
.navi-btn .txt {
  text-indent: -9999px;
  display: block;
  text-align: left;
}
.navi-btn .bar {
  display: inline-block;
  transition: all 0.3s; /*アニメーションの設定*/
  position: absolute;
  left: 21px;
  height: 4px;
  border-radius: 3px;
  background: #000;
  width: 38px;
}
.navi-btn span:nth-of-type(1) {
  top: 19px;
}
.navi-btn span:nth-of-type(2) {
  top: 31px;
}
.navi-btn span:nth-of-type(3) {
  top: 43px;
}
.navi-btn.active span:nth-of-type(1) {
  top: 25px;
  left: 22px;
  transform: translateY(6px) rotate(-45deg);
}
.navi-btn.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.navi-btn.active span:nth-of-type(3) {
  top: 37px;
  left: 22px;
  transform: translateY(-6px) rotate(45deg);
}
.navi-btn.active {
  background: #d3efef;
}
.navi-btn.active .btntxt::before {
  content: "CLOSE";
}
.navi-global-block {
  border-radius: 0px 0px 30px 30px;
  background: #fff;
  border: 6px solid #8acfcf;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.16);
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  display: none;
  padding: 1px 1px 10px;
}
.navi-global-title {
  font-size: 2.8rem;
  letter-spacing: 0.13em;
  line-height: 1.1;
  text-align: center;
  color: #208383;
  margin: 40px 0 30px;
}
.navi-global-menu {
  border-top: 1px dashed #ccc;
  border-bottom: 1px dashed #ccc;
  margin: 20px 100px 0;
  padding: 20px 2%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  font-size: 1.9rem;
  line-height: 1.2;
  gap: 10px;
  text-align: left;
}
.navi-global-menu .navi-global-item .navi-global-link {
  color: #000;
  text-decoration: none;
  display: inline-block;
  padding: 5px 0 5px 34px;
  background: url("../images/mark-navi-arrow.png") no-repeat left center / 28px
    auto;
}
.navi-global-menu .navi-global-item .navi-global-link.is-logout {
  background-image: url("../images/mark-navi-logout.png");
}
.navi-home {
  position: absolute;
  right: 100px;
  top: 40px;
}
.navi-home-link {
  display: inline-block;
  background: url("../images/icon-home.png") no-repeat center top / 32px auto;
  width: 40px;
  height: 40px;
  padding-top: 32px;
  color: #208383;
  text-decoration: none;
  font-size: 1.3rem;
}
.bdr-t-d {
  border-top: 1px dashed #ccc;
}
.navi-global-submenu {
  list-style: none;
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0px 100px;
  font-size: 1.6rem;
  padding: 30px 2% 30px;
  gap: 10px;
}
.navi-global-submenu .navi-global-submenu-item .navi-global-submenu-link {
  color: #000;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 2px 2px 2px 25px;
}
.navi-global-submenu-link::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 3px solid #46b6b6;
  border-right: 3px solid #46b6b6;
  position: absolute;
  left: 0;
  top: 45%;
  transform: rotate(45deg) translateY(-50%);
}
.bnr-block {
  width: 970px;
  max-width: 96%;
  margin: 40px auto;
}
.bnr-title {
  font-size: 1.9rem;
  margin-bottom: 30px;
}
.bnr-title .bnr-title-sub {
  display: block;
  font-size: 1.3rem;
  color: #9f9f9f;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.bnr-block2 {
  width: 820px;
  max-width: 96%;
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
}
.bnr-block2 > div {
  width: 48%;
}
.bnr-block2 > div .bnr-col {
  width: 100%;
}
.bnr-block2 .bnr-title {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.bnr-box {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
.bnr-col {
  width: 48%;
  border-radius: 19px;
  background: #fff;
  border: 1px solid #ededed;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
}
.bnr-col .bnr-link {
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 14px;
  padding: 28px 25px 28px 20px;
  line-height: 1.2;
  height: 100%;
}
.bnr-col .bnr-link .bnr-img {
  width: 47%;
  text-align: center;
}
.bnr-col .bnr-link .bnr-txt {
  font-size: 1.3rem;
  flex: 1;
}
.bnr-col .bnr-link .bnr-txt p {
  margin: 0;
}
.page-main {
  width: 1000px;
  max-width: 96%;
  margin: -115px auto 30px;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0px 2px 13px rgba(0, 0, 0, 0.21);
  position: relative;
}
.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  flex-wrap: wrap;
}
.content-header.is-contact {
  padding: 15px 38px 0;
  height: 90px;
}
.content-title {
  font-size: 2.4rem;
  margin: 20px;
  background: url("../images/line-dot.png") repeat-x left bottom / auto 3px;
  padding: 0 1.4em 0.4em;
}
.content-title .subtitle {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
  color: #2ebebe;
}
.content-title.is-contact {
  background: url("../images/icon-contact-title.png") no-repeat left bottom/
    31px auto;
  padding: 0 40px 0;
  margin: 0 0;
}
.content-title .subtitle.is-profile {
  color: #f8a2a2;
}
.content-title .subtitle.is-career {
  color: #6ca12c;
}
.content-title .subtitle.is-contact {
  color: #579bde;
}
.content-title .subtitle.is-training {
  color: #b176bf;
}
.content-title .subtitle.is-memo {
  color: #807b09;
}
.content-header-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
}
.content-header-menu-r,
.content-header-menu-l {
  flex: 1;
}
.content-header-menu-l .content-header-menu-list {
  justify-content: flex-start;
}
.content-header-menu-r .content-header-menu-list {
  justify-content: flex-end;
}
/*ログイン画面*/
.login-block {
  display: flex;
  justify-content: space-between;
  width: 980px;
  max-width: 96%;
  margin: 0 auto 60px;
}
.login-block .login-box {
  width: 48%;
}
.login-box {
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e3e3e3;
  box-shadow: 0px 2px 13px rgba(0, 0, 0, 0.21);
  padding: 30px 45px;
  text-align: left;
}
.login-title {
  font-size: 1.9rem;
  border-bottom: 2px solid #2ebebe;
  padding: 0 2px 0.5em;
  margin: 0 0 0.8em;
}
.login-title.is-signup {
  border-bottom-color: #a7c937;
}
.login-title .login-title-sub {
  display: block;
  color: #767070;
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.6em;
}
.login-lead {
  margin: 1.2em 0;
  line-height: 1.7;
}
.login-box.is-flex {
  display: flex;
  flex-direction: column;
}
.login-box.is-flex .login-box-content {
  flex: 1;
  margin: auto 5px;
  display: flex;
  align-items: center;
}
.about-block {
  display: flex;
  margin: 50px auto;
  width: 940px;
  max-width: 94%;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  line-height: 1.7;
}
.about-block > div {
  width: 48%;
}
.about-title {
  font-size: 2.2rem;
  padding: 0 2px 0.5em;
  margin: 0 0 0.8em;
}
.about-title .about-title-sub {
  display: block;
  color: #bb7f7f;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.8em;
}
.about-img {
  text-align: center;
}
.top-mainmenu-list {
  list-style: none;
  margin: 0 auto 50px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  text-align: left;
  width: 984px;
  max-width: 94%;
  flex-wrap: wrap;
}
.top-mainmenu-item {
  border-radius: 20px;
  background: #fff url("../images/mark-navi-arrow.png") no-repeat right 10px top
    10px / 28px auto;
  border: 1px solid #e3e3e3;
  box-shadow: 0px 2px 13px rgba(0, 0, 0, 0.21);
  width: 22.5%;
}
.top-mainmenu-link {
  display: block;
  height: 100%;
  color: #000;
  text-decoration: none;
  /*  padding: 20px 25px 60px;*/
  padding: 20px 25px 45px;
  background-repeat: no-repeat;
  background-position: 20px bottom;
  background-size: 70px auto;
}
.top-mainmenu-link.is-profile {
  background-image: url("../images/top-mainmenu1.png");
}
.top-mainmenu-link.is-career {
  background-image: url("../images/top-mainmenu2.png");
  /*  padding-bottom: 30px;*/
}
.top-mainmenu-link.is-training {
  background-image: url("../images/top-mainmenu3.png");
}
.top-mainmenu-link.is-contact {
  background-image: url("../images/top-mainmenu4.png");
}
.top-mainmenu-title {
  font-size: 1.9rem;
}
.top-mainmenu-title-sub {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.top-mainmenu-link.is-profile .top-mainmenu-title-sub {
  color: #f79898;
}
.top-mainmenu-link.is-career .top-mainmenu-title-sub {
  color: #6ca12c;
}
.top-mainmenu-link.is-training .top-mainmenu-title-sub {
  color: #b176bf;
}
.top-mainmenu-link.is-contact .top-mainmenu-title-sub {
  color: #579bde;
}
.top-mainmenu-lead {
  line-height: 1.4;
}
.loginbody,
.topbody {
  background-image: url("../images/bg-img1.png"), url("../images/bg-img2.png");
  background-repeat: no-repeat, no-repeat;
}
.loginbody {
  background-position: -50px 530px, right -60px top 320px;
}
.topbody {
  background-position: -50px 430px, right -60px top 320px;
}
/*コンテンツページ -----------------------------------*/
.form-wrapper {
  margin: 0 8%;
  padding-bottom: 30px;
}
.main-wrapper,
.career-wrapper {
  padding-bottom: 30px;
}
.career-wrapper .content-wrapper {
  padding-left: 10px;
  padding-right: 10px;
}
.block-career {
  margin: 0 8%;
}
.line-form {
  margin-left: 20px;
  margin-top: 40px;
}
.form-wrapper .form-headline-cate {
  margin-left: 22px;
}
.form-navi-bottom {
  background: url("../images/line-dot.png") repeat-x left top / auto 3px;
  margin: 35px 0;
  padding: 35px 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 20px;
  flex-direction: row-reverse;
}
.form-enc-login-top {
  background: url("../images/line-dot.png") repeat-x left top / auto 3px;
  padding: 30px;
  margin-top: 30px;
}
.form-enc-login-bottom {
  background: url("../images/line-dot.png") repeat-x left top / auto 3px;
  padding: 20px;
}
.dotline {
  background: url("../images/line-dot.png") repeat-x left top / auto 3px;
  padding-top: 30px;
}
.block-dotline {
  background: url("../images/line-dot.png") repeat-x left top / auto 3px;
  /*  margin: 30px 0;*/
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 30px 3% 0;
}
.layout-f {
  margin: 15px 5px 0 12%;
  text-align: left;
}
.form-lead {
  line-height: 1.7;
  margin: 1em 4px 1.5em;
}
.form-note {
  font-size: 1.2rem;
  color: #535353;
  margin: 2px 0.6em 0;
  line-height: 1.4;
}
.is-one-ind {
  text-indent: -1em;
  margin-left: 1em;
}
.form-note.is-one-ind {
  margin-left: 1.6em;
}
.layout-col2 {
  display: flex;
  justify-content: space-between;
}
.layout-col2 > div {
  width: 47%;
}
.content-wrapper {
  text-align: left;
  margin: 0 9%;
  line-height: 1.8;
}
.content-wrapper p {
  margin-top: 0;
}
.content-wrapper ul,
.content-wrapper ol {
  padding-left: 2.2em;
  line-height: 1.5;
  margin-top: 0;
}
.content-wrapper ul {
  list-style: none;
}
.content-wrapper ul li {
  position: relative;
}
.content-wrapper ul li::before {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #2fbfbe;
  left: -1.4em;
  top: 0.4em;
}
.content-wrapper ul.dot li::before {
  position: absolute;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background: #565656;
  left: -1.1em;
  top: 0.5em;
}
.content-wrapper ul.one-ind {
  padding: 0;
}
.content-wrapper ul.one-ind li {
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.content-wrapper ul.one-ind li::before {
  display: none;
}
.content-wrapper li {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}
.content-wrapper h2 {
  font-size: 2rem;
  position: relative;
  padding: 2px 0 2px 27px;
  margin: 1em 0 1em -1%;
}
.content-wrapper h2::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #2ebebe;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.content-wrapper h2.align-c {
  padding-left: 0;
}
.content-wrapper h2.align-c::before {
  display: inline-block;
  position: relative;
  left: auto;
  top: auto;
  margin-right: 5px;
  transform: translateY(17%);
}
.content-wrapper h3 {
  font-size: 1.6rem;
  margin: 1.5em 0 1em;
  font-weight: bold;
}
.box-terms {
  height: 400px;
  overflow: hidden;
  overflow-y: auto;
  border: 1px solid #2fbfbe;
  margin: 10px 0 30px;
  padding: 20px;
  border-radius: 10px;
}
.block-license {
  border-radius: 10px;
  background: #fafdfd;
  border: 2px solid #9dd9d9;
  margin: 12px 5px 12px 35px;
  padding: 18px;
  text-align: left;
}
.block-license-title {
  font-weight: bold;
  font-size: 1.6rem;
  color: #456565;
  margin: 0 0 4px;
}
.box-license {
  display: flex;
  margin: 4px 1% 5px 7%;
  flex-wrap: wrap;
  gap: 15px 40px;
}
.box-license + .box-license {
  margin-top: 20px;
}
.box-license-col1 {
  width: 280px;
}
.checkpage .layout-col2 {
  display: block;
}
.checkpage .layout-col2 > div {
  width: 100%;
}
.checkpage .box-license {
  gap: 0;
  justify-content: space-between;
}
.checkpage .box-license > div {
  width: 48%;
}
.form-fn {
  text-align: center;
  margin-top: 20px;
}
.box-msg-normal {
  border-radius: 10px;
  background: #fff;
  border: 3px solid #8acfcf;
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.16);
  padding: 10px 20px;
  line-height: 1.5;
  font-size: 1.6rem;
  color: #0c5a5a;
  margin: 0 10px 20px;
}
.box-msg-normal p {
  margin: 0;
}
.box-msg-warning {
  border-radius: 10px;
  background: #fffcf6;
  border: 3px solid #ffcd00;
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.16);
  padding: 10px 20px;
  line-height: 1.5;
  font-size: 1.6rem;
  color: #2a1f00;
  margin: 0 10px 20px;
}
.box-msg-warning p {
  margin: 0;
}
.box-msg-error {
  border-radius: 10px;
  background: #fff url("../images/icon-error-l.png") no-repeat 10px center /
    30px auto;
  border: 3px solid #cf8a8a;
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.16);
  padding: 10px 20px 10px 48px;
  line-height: 1.5;
  font-size: 1.6rem;
  color: #930303;
  margin: 0 10px 20px;
}
.box-msg-error p {
  margin: 0;
}
/*お問い合わせ*/
.page-main.is-contact {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.page-contact-footer {
  border-radius: 100px 100px 0px 0px;
  background: #8acfcf;
  border-bottom: 7px solid #009393;
  padding: 162px 10px 5px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
  height: 200px;
}
.page-contact-footer .copy-r {
  font-size: 1rem;
}
.block-message {
  margin: 0 38px;
  background-color: #f0f4f7;
  border-radius: 10px 10px 0 0;
  height: calc(100vh - 240px);
  height: calc(100dvh - 240px);
  position: relative;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  -ms-grid-rows: 1fr auto;
  grid-template-rows: 1fr auto;
}
.block-message > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.block-message > *:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.block-message .message-view {
  overflow: hidden;
  overflow-y: auto;
  padding: 15px;
  border-top: 2px solid #f0f4f7;
}
.block-message .message-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ccdbdd;
  padding: 10px;
  gap: 0 10px;
}
.block-message .message-input .col-textarea {
  flex: 1;
}
.msg-textform {
  border-radius: 10px;
  background: #fff;
  border: 1px solid #c3d2dd;
  padding: 10px;
  line-height: 1.3;
  font-size: 1.4rem;
}
#msg-textarea {
  width: 100%;
  max-height: 200px !important;
  min-height: 80px !important;
  margin: 0;
}
.msg-fukidashi {
  margin: 0 22px 20px 30%;
}
.msg-fukidashi .msg-data {
  color: #146e6e;
  line-height: 1.1;
  text-align: right;
  margin: 0 5px 5px;
  font-size: 1.3rem;
}
.msg-fukidashi .msg-data .is-ncname {
  margin-left: 1em;
  margin-right: 1em;
}
.msg-fukidashi .msg-text {
  border-radius: 14px;
  background: #e9f7ea;
  border: 1px solid #8acfcf;
  text-align: left;
  padding: 12px;
  line-height: 1.4;
  position: relative;
  word-break: break-all;
}
.msg-fukidashi .msg-text::after {
  content: "";
  display: block;
  width: 22px;
  height: 16px;
  background: url("../images/bg-fukidashi1.png") no-repeat left center / 22px
    auto;
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
}
.msg-fukidashi.is-nc {
  margin: 0 30% 20px 22px;
}
.msg-fukidashi.is-nc .msg-data {
  text-align: left;
}
.msg-fukidashi.is-nc .msg-text {
  background: #fff;
  border: 1px solid #8acfcf;
}
.msg-fukidashi.is-nc .msg-text::after {
  background: url("../images/bg-fukidashi2.png") no-repeat right center / 22px
    auto;
  right: auto;
  left: -22px;
}
/*モーダル*/
.modal-block {
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.4s;
  z-index: 9999;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.modal-block.openmodal {
  opacity: 1;
  visibility: visible;
}
.modal-block.openmodal .modal-box {
  opacity: 1;
  visibility: visible;
  margin-top: 35px;
  height: auto;
  overflow: visible;
  left: 50%;
  top: calc(100vh - 50vh - 40px);
  top: calc(100dvh - 50dvh - 40px);
  transform: translate(-50%, -50%);
}
.modal-block::before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.3s;
  z-index: 99998;
}
.modal-block .modal-box {
  position: absolute;
  z-index: 99999;
  width: 900px;
  max-width: 90%;
  margin: 0 auto;
  text-align: left;
  opacity: 0;
  height: 0;
  visibility: hidden;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e3e3e3;
  box-shadow: 0px 2px 13px rgba(0, 0, 0, 0.21);
  padding: 15px 25px;
}
.modal-block .modal-close {
  position: absolute;
  top: -25px;
  right: 4px;
  width: 20px;
  height: 20px;
  background: url("../images/icon-close-wh.png") no-repeat center center / 20px
    auto;
  text-indent: -9999px;
  cursor: pointer;
}
.modal-msg-title {
  background: url("../images/icon-msg-modal.png") no-repeat left center / 26px
    auto;
  padding: 4px 0 5px 34px;
  color: #167474;
  font-size: 2rem;
}
.modal-footer-navi {
  padding: 20px 0 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 20px;
  flex-direction: row-reverse;
}
.msg-preview {
  padding: 20px;
  border-radius: 10px;
  background: #f0f4f7;
  line-height: 1.5;
  min-height: 100px;
  max-height: 50vh;
  max-height: 50dvh;
  overflow: hidden;
  overflow-y: auto;
  word-wrap: break-word;
}
.contactlist-wrapper {
  text-align: left;
  margin: 20px 9%;
  padding: 30px 0 50px;
  background: url("../images/line-dot.png") repeat-x left top / auto 3px;
}
.contact-list {
  list-style: none;
  margin: 0 10px;
  padding: 0;
}
.contact-list .contact-item {
  margin: 10px 0 20px;
  line-height: 1.2;
}
.contact-list .contact-item .contact-link {
  border-radius: 10px;
  background: #fff url("../images/icon-contact-title.png") no-repeat 14px center /
    24px auto;
  border: 1px solid #2ebebe;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  text-decoration: none;
  padding: 13px 15px 13px 50px;
  min-height: 64px;
}
.contact-list .contact-item .contact-link::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #148383;
  border-right: 2px solid #148383;
  transform: rotate(45deg);
}
.contact-list .contact-item .contact-link .contact-name {
  font-size: 1.8rem;
  margin-right: auto;
}
.contact-list .contact-item .contact-link .contact-date {
  border-radius: 100px;
  border: 1px solid #d38282;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  line-height: 1;
  margin-right: 20px;
  margin-left: 10px;
  white-space: nowrap;
}
.contact-list .contact-item .contact-link .contact-date .is-date {
  display: block;
  font-size: 1.2rem;
  text-align: center;
  padding: 4px 6px 4px 14px;
  flex: 1;
}
.contact-list .contact-item .contact-link .contact-date .is-day {
  display: block;
}
.contact-list .contact-item .contact-link .contact-date .is-time {
  display: block;
  margin-top: 2px;
}
.contact-list .contact-item .contact-link .contact-date .is-new {
  background: #b92727;
  border-radius: 100px;
  color: #fff;
  padding: 10px 10px 0;
}
.contact-add {
  padding: 0 10px;
}
.line-dot-nr {
  background: url("../images/line-dot-nr.png") no-repeat center top / auto 4px;
  height: 4px;
  margin: 30px 0;
}
/*研修情報*/
.table-wrapper {
  padding: 0 0 40px;
}
.table-navi {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 0 30px;
  align-items: center;
}
.col-result-num {
  color: #0b5757;
}
.col-login {
  text-align: left;
  margin-top: 30px;
}
.pagination-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1.4rem;
  line-height: 1;
}
.pagination-list .pagination-item .pgn {
  text-decoration: none;
  color: #208383;
  display: block;
  padding: 8px 5px;
  text-align: center;
  min-width: 32px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #2ebebe;
}
.pagination-list .pagination-item .pgn-start,
.pagination-list .pagination-item .pgn-prev,
.pagination-list .pagination-item .pgn-next,
.pagination-list .pagination-item .pgn-end {
  text-align: left;
  text-indent: -9999px;
  position: relative;
  width: 32px;
}
.pagination-list .pagination-item .pgn-start::before,
.pagination-list .pagination-item .pgn-start::after,
.pagination-list .pagination-item .pgn-prev::before,
.pagination-list .pagination-item .pgn-next::before,
.pagination-list .pagination-item .pgn-end::before,
.pagination-list .pagination-item .pgn-end::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-left: 2px solid #46b6b6;
  border-top: 2px solid #46b6b6;
  position: absolute;
  top: 50%;
}
.pagination-list .pagination-item .pgn-start::before {
  transform: translateY(-50%) rotate(-45deg);
  left: 9px;
}
.pagination-list .pagination-item .pgn-start::after {
  transform: translateY(-50%) rotate(-45deg);
  left: 16px;
}
.pagination-list .pagination-item .pgn-prev::before {
  left: 12px;
  transform: translateY(-50%) rotate(-45deg);
}
.pagination-list .pagination-item .pgn-next::before {
  right: 12px;
  transform: translateY(-50%) rotate(135deg);
}
.pagination-list .pagination-item .pgn-end::before {
  transform: translateY(-50%) rotate(135deg);
  right: 16px;
}
.pagination-list .pagination-item .pgn-end::after {
  transform: translateY(-50%) rotate(135deg);
  right: 9px;
}
.pagination-list .pagination-item .pgn-current {
  background-color: #c4e8e8;
  color: #044040;
}
.pagination-list .pagination-item .pgn-dot {
  border: none;
  min-width: auto;
  padding: 8px 0;
}
.btn-detaile {
  /*  background: transparent url("../images/icon-info.png") no-repeat center top / 20px auto;*/
  background: transparent url("../images/icon-info.png") no-repeat center;
  border: none;
  color: #187c7c;
  font-size: 1.1rem;
  line-height: 1.1;
  white-space: nowrap;
  padding: 24px 0 0;
  display: inline-block;
  text-decoration: none;
}
.btn-detaile:before {
  content: "\00A0\00A0\00A0\00A0\00A0\00A0\00A0\00A0\00A0";
}
.table-history {
  width: 100%;
  border-top: 1px dashed #208383;
  border-bottom: 2px solid #208383;
  margin: 12px 0;
  border-collapse: collapse;
  font-size: 1.3rem;
  line-height: 1.4;
}
.table-history thead th {
  text-align: center;
  border-bottom: 2px solid #208383;
  padding: 8px 5px;
  color: #187c7c;
  line-height: 1.1;
  white-space: nowrap;
}
.table-history tbody td {
  border-bottom: 1px solid #208383;
  padding: 10px 8px;
  text-align: left;
  vertical-align: middle;
}
.table-history tbody tr:nth-child(odd) {
  background-color: #eff5f5;
}
.table-history .is-date {
  display: block;
  padding-left: 2px;
  padding-right: 1px;
}
.table-history .is-date + .is-date {
  border-top: 1px dashed #707070;
  margin-top: 4px;
  padding-top: 4px;
}
.table-history .col01 {
  width: 10%;
}
.table-history .col02 {
  /*  width: 15%;*/
}
.table-history .col03 {
  /*  width: 15%;*/
}
.table-history .col04 {
  width: 15%;
}
.table-history .col05 {
  /*  width: 16%;*/
}
.table-history .col06 {
  width: 6%;
  text-align: center;
}
.table-history .col07 {
  text-align: center;
}
.table-history .col08 {
  text-align: center;
}
.table-history .col09 {
  width: 10%;
}
.table-history .col10 {
  width: 10%;
}
.table-history .col11 {
  text-align: center;
}
/*研修メモ*/
.content-header.is-low .content-title {
  background: none;
  margin-bottom: 0;
  margin-top: 10px;
}
.memo-wrapper {
  padding: 0 30px 40px;
}
.memo-area {
  width: 100%;
  height: 480px;
  border-radius: 10px;
  background: #f0f4f7;
  border: none;
  font-size: 1.4rem;
  padding: 15px;
  line-height: 1.8;
}
.block-memo-bottom {
  margin-top: 20px;
}
.btn-memo-save {
  width: 200px;
  border-radius: 10px;
  background: #208383 url("../images/icon-pen.png") no-repeat 10px center / 27px
    auto;
}
.dl-num-list {
  position: relative;
  margin: 1em 0 1.5em;
}
.dl-num-list > dt {
  position: absolute;
  left: 0;
  border-radius: 100px;
  background: #208383;
  color: #fff;
  width: 1.8em;
  height: 1.8em;
  text-align: center;
}
.dl-num-list > dd {
  margin: 0 0 0.5em 2.2em;
}
.hd-square {
  position: relative;
  padding-left: 1.3em;
}
.hd-square::before {
  content: "";
  width: 1em;
  height: 1em;
  display: block;
  position: absolute;
  left: 0;
  background: #2fbfbe;
  border-radius: 3px;
  top: 0.11em;
}
.hd-dline {
  display: flex;
  align-items: center;
}
.hd-dline::after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px dashed #2fbfbe;
  height: 1px;
  flex: 1;
  margin-left: 1em;
}
.form--box-sub {
  margin: 12px 0 0;
  line-height: 1.4;
}
.line-desh {
  border-bottom: 1px dashed #ccc;
  display: inline-block;
  padding-bottom: 4px;
}
.div-disable {
  pointer-events: none;
  cursor: default;
}
/*お知らせ枠*/
.news-block {
  margin: 20px auto 1px;
  width: 940px;
  max-width: 94%;
  text-align: left;
}
.news-block .news-hl {
  font-size: 2.2rem;
  margin: 0 0 0.2em;
  text-align: center;
}
.news-block .news-hl-sub {
  display: block;
  color: #c36868;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.4em;
}
.news-block .news-list {
  list-style: none;
  padding: 0;
}
.news-list .news-item {
  margin: 0;
  border-bottom: 1px dashed #ccc;
}
.news-list .news-item .news-link-box {
  text-decoration: none;
  color: #000;
  display: block;
  padding: 20px 5px;
}
.news-list .news-item .news-link-box .news-title {
  margin: 0;
  display: flex;
  align-items: flex-start;
}
.news-list .news-item .news-link-box .news-title .news-date {
  border-radius: 100px;
  background-color: #c5e4dd;
  font-size: 0.9em;
  padding: 2px 10px 1px;
  margin-right: 20px;
  min-width: 160px;
  text-align: center;
}
.news-list .news-item .news-link-box .news-title .news-title-txt {
  flex: 1;
}
.news-list .news-item .news-link-box .new-content {
  margin: 8px 0 0 170px;
}
.btn-arrow {
  background: #18a3a3;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
.btn-arrow::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  left: 12px;
  top: 45%;
  transform: rotate(-45deg) translateY(-50%);
}
.top-mainmenu-link .s-s {
  font-size: 0.9em;
  line-height: 1.4;
  margin-top: 4px !important;
}
.mgb0 {
  margin-bottom: 0px !important;
}
.mgt0 {
  margin-top: 0px !important;
}
/*======================================================

　レスポンシブ

======================================================*/
/*
　PC以上
*/
@media screen and (min-width: 1000px) {
  .contentbody {
    background: url("../images/bg-contents.jpg") no-repeat center 40vh / 100%
      auto;
    background-position: center 40dvh;
  }
  .footer-menu .footer-menu-item .footer-menu-link:hover,
  .navi-global-menu .navi-global-item .navi-global-link:hover,
  .link-arrow:hover,
  .navi-global-submenu
    .navi-global-submenu-item
    .navi-global-submenu-link:hover {
    text-decoration: underline;
  }
  input[type="button"],
  input[type="email"],
  input[type="password"],
  input[type="reset"],
  input[type="submit"],
  button,
  a,
  .top-mainmenu-item,
  .bnr-col .bnr-link {
    transition: all 0.2s;
  }
  input[type="button"]:hover,
  input[type="email"]:hover,
  input[type="password"]:hover,
  input[type="reset"]:hover,
  input[type="submit"]:hover,
  button:hover,
  a:hover {
    opacity: 0.85;
  }
  .btn-sub-l:hover,
  .btn-sub:hover,
  .pagination-list .pagination-item a.pgn:hover,
  .contact-list .contact-item .contact-link:hover {
    background-color: #e6f5f5 !important;
  }
  .top-mainmenu-item:hover,
  .bnr-col .bnr-link:hover {
    background-color: #fffceb !important;
  }
  .news-list .news-item .news-link-box:hover {
    background: #fffbe5;
  }
}
/*
　タブレット
*/
@media screen and (max-width: 999px) {
}
/*
　スマートフォン
*/
@media screen and (max-width: 800px) {
  .footer-menu {
    font-size: 1.4rem;
  }
  .copy-r {
    font-size: 1rem;
  }
  .navi-btn {
    width: 66px;
    height: 66px;
    left: 10px;
    top: 15px;
  }
  .navi-btn .btntxt::before {
    bottom: 12px;
    font-size: 1rem;
  }
  .navi-btn .bar {
    left: 18px;
    height: 3px;
    width: 30px;
  }
  .navi-btn span:nth-of-type(1) {
    top: 15px;
  }
  .navi-btn span:nth-of-type(2) {
    top: 25px;
  }
  .navi-btn span:nth-of-type(3) {
    top: 35px;
  }
  .navi-btn.active span:nth-of-type(1) {
    top: 20px;
    left: 19px;
  }
  .navi-btn.active span:nth-of-type(3) {
    top: 32px;
    left: 19px;
  }
  .navi-global-title {
    font-size: 2.6rem;
    margin: 30px 0 20px;
  }
  .navi-global-menu {
    margin: 30px 20px 20px;
    padding: 30px 0;
    justify-content: space-between;
    font-size: 1.6rem;
    gap: 20px 0;
  }
  .navi-global-menu .navi-global-item {
    width: 48%;
  }
  .navi-global-menu .navi-global-item .navi-global-link {
    padding: 5px 0 5px 28px;
    background-size: 22px auto;
  }
  .navi-global-submenu {
    line-height: 1.2;
    display: block;
    margin: 20px;
    font-size: 1.5rem;
    padding: 0;
    text-align: left;
  }
  .navi-global-submenu .navi-global-submenu-item {
    margin: 20px 0;
  }
  .page-header {
    height: auto;
    padding: 0 0 20px;
    border-radius: 0px 0px 50px 50px;
    position: relative;
  }
  .page-header.at-content {
    border-radius: 0px 0px 50px 50px;
    height: 130px;
  }
  .logo-box-top {
    max-width: 90%;
    background-image: url("../images/bg-logo-sp.png");
    background-position: center 80%;
    margin-top: 10px;
  }
  .logo-top {
    background-image: url("../images/logo-top-sp.png");
    background-size: 200px auto;
    height: 105px;
    width: 200px;
  }
  .logo-box-contents {
    background-image: url("../images/bg-logo-contents-sp.png");
    width: 270px;
  }
  .logo-contents {
    background-image: url("../images/logo-contents-sp.png");
    background-size: 104px auto;
    height: 40px;
    width: 130px;
  }
  .page-main-top {
    margin: 10px 0;
  }
  .page-footer {
    border-radius: 50px 50px 0px 0px;
  }
  .page-main {
    margin-top: -40px;
    border-radius: 20px;
  }
  .content-header {
    padding: 5px 10px;
    display: block;
  }
  .content-title {
    font-size: 2.2rem;
    margin: 10px auto 20px;
  }
  .content-title .subtitle {
    font-size: 1.2rem;
  }
  .bnr-title {
    margin-bottom: 20px;
  }
  .bnr-box {
    display: block;
  }
  .bnr-col {
    width: 400px;
    max-width: 100%;
    margin: 15px auto;
  }
  .bnr-col .bnr-link {
    gap: 10px;
    padding: 25px 20px;
  }
  .bnr-col .bnr-link .bnr-txt {
    font-size: 1.2rem;
  }
  /*ログイン画面*/
  .login-block {
    display: block;
  }
  .login-block .login-box {
    width: 100%;
    margin-bottom: 20px;
  }
  .login-box {
    padding: 20px 35px;
  }
  .about-block {
    display: block;
  }
  .about-block > div {
    width: 100%;
    margin: 40px 0;
  }
  .bnr-block2 {
    display: block;
  }
  .bnr-block2 > div {
    width: 100%;
  }
  .bnr-block2 > div .bnr-col {
    width: 400px;
    max-width: 100%;
    margin: 15px auto;
  }
  .loginbody,
  .topbody {
    background-image: none;
  }
  .top-mainmenu-list {
    margin-bottom: 30px;
  }
  .top-mainmenu-item {
    width: 48%;
    margin: 10px 0;
  }
  .top-mainmenu-link {
    padding: 20px 20px 55px;
  }
  .form-wrapper {
    margin: 0 12px;
  }
  .line-form {
    margin-left: 10px;
  }
  .form-wrapper .form-headline-cate {
    margin-left: 10px;
  }
  .layout-f {
    margin: 15px 3% 0;
  }
  .layout-col2 {
    display: block;
  }
  .layout-col2 > div {
    width: 100%;
  }
  .form-title {
    font-size: 1.5rem;
    margin-left: 0;
  }
  .block-form {
    margin-bottom: 40px;
  }
  .form-box {
    /*margin-left: 10px;*/
  }
  .form-headline {
    font-size: 2rem;
  }
  .form-headline-txt::before {
    width: 18px;
    height: 18px;
  }
  .content-wrapper {
    margin: 0 25px;
  }
  .block-career {
    margin: 0 10px;
  }
  .career-wrapper .content-wrapper {
    padding-left: 0px;
    padding-right: 0px;
  }
  .block-dotline.is-msg {
    background: none;
    margin-top: 0;
    padding-top: 0;
  }
  .career-wrapper .content-wrapper {
    background: url("../images/line-dot.png") repeat-x left top / auto 3px;
    padding-top: 10px;
  }
  .form-headline-note {
    margin: 4px 0;
    font-size: 0.7em;
    display: block;
  }
  .block-license {
    margin-left: 5px;
    margin-right: 5px;
    padding: 10px;
  }
  .block-license-title {
    margin: 0 0 10px;
    border-bottom: 1px dashed #46b6b6;
    text-align: center;
    padding-bottom: 8px;
  }
  .box-license {
    margin: 4px 0 5px 0;
  }
  .box-license-col1 {
    width: 100%;
  }
  .checkpage .box-license {
    gap: 30px;
  }
  .checkpage .box-license > div {
    width: 100%;
  }
  .btn-main-l.btn-next {
    width: 280px;
  }
  .btn-main-l.btn-login {
    width: 280px;
  }
  .form-navi-bottom {
    flex-direction: column;
  }
  .career-wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
  /*お問い合わせ*/
  .page-contact-footer {
    border-radius: 50px 50px 0px 0px;
    padding: 118px 10px 5px;
    height: 150px;
  }
  .page-contact-footer .copy-r {
    font-size: 0.9rem;
    letter-spacing: 0;
  }
  .block-message {
    margin: 0;
    border-radius: 0;
    height: calc(100vh - 200px);
    height: calc(100dvh - 200px);
  }
  .block-message .message-input {
    gap: 0 10px;
  }
  .msg-textform {
    padding: 5px;
  }
  .block-message .message-view {
    padding-left: 5px;
    padding-right: 5px;
  }
  #msg-textarea {
    /*  max-height: 250px !important;*/
    /*  min-height: 80px !important;*/
    max-width: calc(100vw - 117px);
  }
  .content-header.is-contact {
    padding: 0 10px;
    height: 80px;
    display: flex;
    flex-wrap: nowrap;
  }
  .content-title.is-contact {
    background: none;
    padding: 0 0 0 10px;
    text-align: left;
    font-size: 1.7rem;
  }
  .btn-msg-entry {
    width: 60px;
    height: 60px;
  }
  .msg-fukidashi {
    margin-left: 20%;
  }
  .msg-fukidashi .msg-data .is-ncname {
    margin-left: 0;
    margin-right: 0;
    display: block;
  }
  .msg-fukidashi.is-nc {
    margin-right: 20%;
  }
  .navi-home {
    right: 20px;
    top: 26px;
  }
  .contactlist-wrapper {
    margin: 20px 3%;
  }
  .contact-list .contact-item .contact-link {
    padding: 16px 15px 16px 50px;
    min-height: auto;
    flex-wrap: wrap;
    position: relative;
    background-position: 14px 15px;
  }
  .contact-list .contact-item .contact-link::after {
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    right: 12px;
    top: 50%;
  }
  .contact-list .contact-item .contact-link .contact-name {
    font-size: 1.6rem;
    margin-right: 10px;
    width: 100%;
  }
  .contact-list .contact-item .contact-link .contact-date {
    margin-right: 15px;
    margin-left: auto;
    margin-top: 8px;
  }
  .content-header-menu-r .content-header-menu-list {
    margin-bottom: 10px;
  }
  /*研修情報*/
  .table-wrapper {
    padding-top: 10px;
  }
  .table-navi {
    flex-direction: column-reverse;
  }
  .btn-detaile {
    /*    background: #fff url("../images/icon-info.png") no-repeat 10px center / 20px auto;*/
    background: #fff url("../images/icon-info.png") no-repeat 10px;
    border: 1px solid #46b6b6;
    border-radius: 10px;
    width: 210px;
    font-size: 1.4rem;
    padding: 12px 8px 12px 20px;
  }
  .btn-detaile:before {
    content: "出力";
  }
  .btn-detaile br {
    display: none;
  }
  .table-history {
    border-top: 2px solid #208383;
  }
  .table-history thead {
    display: none;
  }
  .table-history tbody,
  .table-history tbody tr,
  .table-history tbody td {
    display: block;
    width: 100% !important;
    text-align: left !important;
  }
  .table-history tbody tr {
    border-bottom: 1px solid #208383;
    padding: 10px;
  }
  .table-history tbody td {
    border-bottom: 1px dashed #208383;
  }
  .table-history .is-date + .is-date {
    display: inline-block;
  }
  .table-history .col07 br,
  .table-history .col08 br,
  .table-history .is-date br {
    display: none;
  }
  .table-history .col11 {
    border-bottom: none;
  }
  .table-history .col01,
  .table-history .col02,
  .table-history .col03,
  .table-history .col04,
  .table-history .col05,
  .table-history .col06,
  .table-history .col07,
  .table-history .col08,
  .table-history .col09,
  .table-history .col10,
  .table-history .col11 {
    padding-left: 7em;
  }
  .table-history .col01::before,
  .table-history .col02::before,
  .table-history .col03::before,
  .table-history .col04::before,
  .table-history .col05::before,
  .table-history .col06::before,
  .table-history .col07::before,
  .table-history .col08::before,
  .table-history .col09::before,
  .table-history .col10::before,
  .table-history .col11::before {
    color: #187c7c;
    display: block;
    position: absolute;
    left: 10px;
  }
  .table-history .col01::before {
    content: "主催者";
  }
  .table-history .col02::before {
    content: "開催年度";
  }
  .table-history .col03::before {
    content: "受講年月日";
  }
  .table-history .col04::before {
    content: "研修名";
  }
  .table-history .col05::before {
    content: "主な内容";
  }
  .table-history .col06::before {
    content: "講義・演習";
  }
  .table-history .col07::before {
    content: "受講日数";
  }
  .table-history .col08::before {
    content: "受講時間";
  }
  .table-history .col09::before {
    content: "ラダー";
  }
  .table-history .col10::before {
    content: "研修種別";
  }
  .table-history .col11::before {
    content: "受講証明書";
  }
  .content-header.is-low {
    display: flex;
  }
  .memo-wrapper {
    padding: 0 10px 40px;
  }
  /*お知らせ枠*/
  .news-list .news-item .news-link-box .news-title {
    display: block;
  }
  .news-list .news-item .news-link-box .news-title .news-title-txt {
    display: block;
    margin-top: 10px;
  }
  .news-list .news-item .news-link-box .new-content {
    margin-left: 0;
  }
}

@media screen and (min-width: 1043px) {
  #msg-textarea {
    max-width: 824px;
  }
}

@media screen and (min-width: 801px) and (max-width: 1042px) {
  #msg-textarea {
    max-width: calc(100dvw - 221px);
  }
}

div.mv_contents {
width: 100%;/*背景色を横幅いっぱいに広げる*/
text-align: center;
margin: auto;
padding: 4% 4% 4% 4%;/*ここで動画の周りの余白を調整*/
background: #e6e6e6;/*余白の背景色*/
}
video.mv_main {
width: 100%;
max-width: 920px;/*PC版での最大幅*/
}
