@charset "UTF-8";
html {
  font-size: 100%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  margin: 0;
  font-size: 1rem;
}

.inner {
  margin: 0 auto;
  min-width: 800px;
  max-width: 1100px;
  padding: 0 20px;
}

body.theme-a {
  /* 緑系 */
  --nav-bg: #005720;
  --nav-bg2: #003011;
  --section-bg: #D7F6E3;
  --section-bg2: #ECFFF3;
}

body.theme-b {
  /* 水色系 */
  --nav-bg: #062D45;
  --nav-bg2: #092232;
  --section-bg: #D6EAF6;
  --section-bg2: #EBF7FF;
}

.menu {
  background-color: var(--nav-bg);
  width: 100%;
}

.menu-container {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.menu-item {
  width: calc(100% / 4);
}
.menu-item a {
  width: 100%;
  height: 5.0rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.0rem;
  text-align: center;
  line-height: 1.4;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
  cursor: pointer;
}
.menu-item a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.menu-item.cs {
  opacity: .5;
  pointer-events: none;
}
.menu-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.menu-item.active a {
  background-color: rgba(255, 255, 255, 0.15);
}
.menu-item .sub-text {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  margin-top: 0.25rem;
}

.header {
  padding: 15px 0px;
}
.header__title {
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.4;
}
.header__title span {
  font-size: 1.0em;
  font-weight: 600;
  display: inline-block;
  padding-bottom: 5px;
}

.page__title {
  background: var(--section-bg);
  text-align: center;
  padding: 20px 0px 40px;
}
.page__title .main-title {
  font-size: 1.3rem;
  background: #fff;
  padding: .3rem 1.0rem;
}
.page__title_h1 {
  margin-top: 20px;
  font-size: 1.6rem;
}

.contact {
  padding: 60px 0;
  background-color: #eee;
  text-align: center;
  font-size: 1.15rem;
}
.contact__title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.contact__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 880px;
  margin: 0 auto;
}
.contact__office {
  margin-bottom: 24px;
}
.contact__time {
  margin-bottom: 15px;
}

.top .contact {
  border-top: 1px solid #316ea9;
}

.contactNo .contact {
  display: none;
}

.footer {
  padding: 40px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  width: 15em;
}
.footer-left img {
  height: 40px;
  width: auto;
}

.footer-center {
  font-size: 0.875rem;
  color: #666;
}

.footer-right a {
  font-size: 0.875rem;
  color: #333;
  text-decoration: none;
}
.footer-right a:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.hero .inner {
  max-width: 830px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-box {
  background: rgba(245, 248, 250, 0.95);
  padding: 2rem 1rem;
  text-align: center;
}
.hero-box p {
  font-size: 1.5rem;
  margin-bottom: .5rem;
  font-weight: bold;
}
.hero-box h1 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.54;
  margin: 0rem 0 1rem;
}
.hero-box h1 span {
  font-size: 1.4rem;
}

.main-title {
  display: inline-block;
  border: 2px solid var(--nav-bg);
  padding: .5rem 1.5rem;
  color: var(--nav-bg);
  font-weight: 700;
  font-size: 1.6rem;
  margin-top: 1.0rem;
}

.news {
  padding: 80px 0;
  max-width: 1000px;
  margin: 0 auto;
}
.news__inner {
  display: flex;
  flex-direction: row;
}
.news__title {
  font-size: 1.5rem;
  font-weight: bold;
  width: 20%;
  margin-bottom: 0;
}
.news__list {
  width: 80%;
}
.news__list .news__date {
  width: 8.4em;
}
.news__list .news__text {
  width: calc(100% - 8.4em);
}
.news__item {
  border-bottom: 1px solid #dddddd;
}
.news__item:first-child {
  border-top: 1px solid #dddddd;
}
.news__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 0;
  padding-right: 45px;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.news__header::after {
  content: '';
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23333333' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.news__header:hover .news__text {
  text-decoration: underline;
}
.news__header:hover::after {
  border-color: #3571ff;
}
.news__header.none {
  pointer-events: none;
}
.news__header.none::after {
  display: none;
}
.news__item.is-open .news__header::after {
  transform: translateY(-50%) rotate(180deg);
}
.news__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.is-open .news__content {
  grid-template-rows: 1fr;
}
.news__content-inner {
  overflow: hidden;
}
.news__detail {
  padding-bottom: 20px;
  line-height: 1.7;
  background-color: #fafafa;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 15px;
  margin-left: 130px;
}

.purpose {
  border-top: 1px solid #ddd;
  padding: 60px 0;
}

.kobo-info {
  padding-bottom: 100px;
}

.po_disp {
  display: -webkit-box;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
  flex-wrap: wrap;
}
.po_disp li {
  width: calc(100% / 3 - 20px);
}

main.page {
  padding-top: 60px;
  padding-bottom: 60px;
}

.ib {
  display: inline-block;
}

.marT30 {
  margin-top: 30px;
}

.marB30 {
  margin-bottom: 30px;
}

.marL15 {
  margin-left: 15px;
}

.sec_margin {
  margin: 0 10px;
  font-size: 1.05rem;
}
.sec_margin_in {
  margin-bottom: 40px;
}
.sec_margin_in dl {
  display: grid;
  /* 1列目をdtの幅、2列目をddの幅にする */
  /* min-content を使うとdtの長さに合わせて自動調整されます */
  grid-template-columns: min-content 1fr;
  gap: 5px 20px;
  /* 行間と列間を指定 */
  align-items: flex-start;
  /* 縦方向の中央揃え */
}
.sec_margin_in dt {
  white-space: nowrap;
}
.sec_margin_in dd {
  margin: 0;
  /* デフォルトの余白をリセット */
}

.sec_margin p {
  margin-bottom: 25px;
  line-height: 1.7;
}

.sec_margin h6 {
  margin-bottom: 10px;
}

.list-ol {
  padding-left: 2em;
  margin-bottom: 1em;
}
.list-ol li {
  list-style-type: decimal;
}

.list-ul {
  padding-left: 2em;
}
.list-ul li {
  list-style-type: disc;
}

.list-kome {
  padding-left: 2em;
}
.list-kome li {
  list-style-type: '※';
}

.list-ol, .list-ul, .list-kome {
  margin-bottom: 30px;
}

.list-ol li, .list-ul li, .list-kome li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

.sec_tit {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.bio .sec_tit {
  background: #c9def2;
}

.notes {
  background: #ebebeb;
  padding: 20px 20px;
}

.breadcrumb {
  padding: 15px 20px;
  background-color: #ffffff;
  font-size: 0.85rem;
  color: #666666;
}
.breadcrumb__inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
.breadcrumb a {
  color: #333333;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

.main-content__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0px;
  width: 100%;
}

.content-section {
  margin-bottom: 50px;
}
.content-section__title {
  font-size: 1.4rem;
  font-weight: 700;
  border-bottom: 1px solid #666;
  padding-bottom: 8px;
  margin-bottom: 25px;
  position: relative;
}
.content-section__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 3px;
  background: var(--nav-bg);
}
.content-section__title_sub {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.content-section__date {
  font-size: 1.2rem;
  font-weight: 700;
}
.content-section__subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.content-section__text {
  margin-bottom: 15px;
}
.content-section__btn-wrapper {
  margin: 20px 0 40px;
}

.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--nav-bg);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(53, 113, 255, 0.2);
  transition: all 0.3s ease;
  min-width: 320px;
  padding: 25px 25px;
}
.btn-primary em {
  font-size: 1.3rem;
  margin-right: 3px;
  display: inline-block;
  font-style: normal;
}
.btn-primary:hover {
  opacity: 0.8;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(53, 113, 255, 0.3);
}

.download_box {
  margin: 40px 10px 40px;
}
.download_box:first-of-type {
  margin-top: 0;
}
.download_box .flex {
  display: -webkit-box;
  display: flex;
  gap: 20px;
}
.download_box .flex > div {
  width: 100%;
  max-width: 313px;
}

.download_ichiran {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 18px;
  padding: 0;
}
.download_ichiran li {
  width: 100%;
  max-width: 313px;
  min-height: 150px;
  background-color: #fff;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px #ccc solid;
}
.download_ichiran li span {
  width: 85%;
  display: block;
  margin: 0 auto;
  padding-top: 20px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
}
.download_ichiran li .dl_btn {
  position: absolute;
  width: calc(100% - 40px);
  min-height: 50px;
  bottom: 15px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  background-color: var(--nav-bg);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.download_ichiran li .dl_btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.download_ichiran li .dl_btn p {
  margin: 0 0 0 20px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  z-index: 99;
}
.download_ichiran li .dl_btn img {
  z-index: 99;
  margin-right: 20px;
  width: 16px;
  height: auto;
}
.download_ichiran li.allcover {
  margin-right: 65px;
}

.point {
  display: block;
  text-align: center;
}

.apply-main {
  background-color: var(--nav-bg);
}

.d_btn {
  padding: 38px 65px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  border-radius: 100px;
  filter: drop-shadow(0px 5px 0px rgba(0, 0, 0, 0.16));
  position: relative;
  /*margin: 70px 0 155px;*/
  margin: 50px 0;
}

.d_btn:hover {
  opacity: 0.8;
  transition: .4s;
}

.d_btn:active {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  filter: initial;
  opacity: initial;
}

.d_btn::after {
  content: "";
  position: absolute;
  top: 51%;
  left: 87%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left: 14px solid #fff;
}

#form {
  margin: 0 auto;
  width: 100%;
  border-radius: 5px;
  margin-top: 40px;
  border: solid 3px #bcbcbc;
  padding: 60px 0;
}

.c-formset {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 60px;
}

.c-formset__box {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.c-formset__tit {
  width: 100%;
  margin-bottom: 7px;
}

.c-formset__tit > span {
  color: #FFFFFF;
  border-radius: 5px;
  padding: 0 5px 2px 5px;
  margin: auto 0;
  margin-left: 10px;
  font-size: 16px;
  /* height: 50px; */
}

.c-formset__tit > span.kyousou {
  background-color: #0A5F8C;
}

.c-formset__tit > span.jinzai {
  background-color: #DE7841;
}

.c-formset__tit > span.maas {
  background-color: #DE7841;
}

.c-formset__tit > span.type1 {
  background-color: #DE7841;
}

.c-formset__tit > span.type02 {
  background-color: #DE7841;
}

.c-formset__tit > span.type03 {
  background-color: #DE7841;
}

.c-formset__tit > span.type04 {
  background-color: #DE7841;
}

.c-formset__tit > span.document {
  background-color: #c11e24;
}

.c-formset__input {
  width: 90%;
  position: relative;
}

.c-formset__input.short {
  width: 50%;
}

.c-formset__input > input {
  width: 100%;
  padding: 5px 10px;
  border-radius: 5px;
  border: solid 1px gray;
  font-size: 20px;
  min-width: 380px;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.c-formset input[type=text].input-err, .c-formset input[type=text].input-errS,
.c-formset input[type=tel].input-err,
.c-formset input[type=tel].input-errS,
.c-formset input[type=password].input-err,
.c-formset input[type=password].input-errS,
.c-formset input[type=email].input-err,
.c-formset input[type=email].input-errS,
.c-formset input[type=number].input-err,
.c-formset input[type=number].input-errS {
  background: #fee;
}

.c-formset input[type=text]:read-only,
.c-formset input[type=tel]:read-only,
.c-formset input[type=password]:read-only,
.c-formset input[type=email]:read-only,
.c-formset input[type=number]:read-only {
  background: #f0f3f5;
}

.c-formset input[type=text]:read-only.input-err, .c-formset input[type=text]:read-only.input-errS,
.c-formset input[type=tel]:read-only.input-err,
.c-formset input[type=tel]:read-only.input-errS,
.c-formset input[type=password]:read-only.input-err,
.c-formset input[type=password]:read-only.input-errS,
.c-formset input[type=email]:read-only.input-err,
.c-formset input[type=email]:read-only.input-errS,
.c-formset input[type=number]:read-only.input-err,
.c-formset input[type=number]:read-only.input-errS {
  background: #f6eeff;
}

.c-btnArea {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-btn {
  padding: 26px 65px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  border-radius: 100px;
  filter: drop-shadow(0px 5px 0px rgba(0, 0, 0, 0.16));
  position: relative;
  border: none;
  cursor: pointer;
}

.c-btn:hover {
  opacity: 0.8;
  transition: .4s;
}

.c-btn:active {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  filter: initial;
  opacity: initial;
}

.c-btn::after {
  content: "";
  position: absolute;
  top: 51%;
  right: 20px;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left: 14px solid #fff;
}

.c-btn.type1 {
  background-color: var(--nav-bg);
  min-width: 200px;
}

.c-btn.document {
  background-color: var(--nav-bg);
}

.c-btn.back {
  background: #777;
  padding: 20px 32px;
}

.c-btn.back::after {
  display: none;
}

.c-formset__cap {
  margin-top: 2px;
  font-weight: normal;
  font-size: 84%;
  color: #555;
}

.c-err {
  background: #DB0A0A;
  color: #fff;
  padding: 2px 5px;
  border-radius: 4px;
  position: absolute;
  transition: all .4s;
  display: inline;
  min-width: inherit;
  width: auto;
  left: 100%;
  bottom: 100%;
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 0;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
  min-width: 150px;
  z-index: 1;
}

.c-err::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: -2px;
  display: block;
  width: 0px;
  height: 0px;
  margin-top: 0px;
  border-style: solid;
  border-width: 5px;
  border-color: #DB0A0A #DB0A0A transparent transparent;
  transform: rotate(-63deg);
}

.c-err.noTriangle::after {
  display: none;
}

.junbityu {
  position: relative;
}

.junbityu::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  content: '差替え';
  font-size: 25px;
  color: crimson;
}

/*フォーム確認ポップアップ*/
.fullscreenConf {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.fullscreenConf .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  max-width: 720px;
  width: calc(100% - 20px);
  padding: 20px;
  border: 2px #707070 solid;
  background: #fff;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.fullscreenConf .wrap .p_border {
  margin-bottom: 30px;
}

.fullscreenConf .wrap .ichiran_tit {
  padding: 0 20px 10px 0;
}

.fullscreenConf .wrap p.att {
  margin-bottom: 20px;
}

.fullscreenConf .wrap dl {
  margin-bottom: 40px;
}

.fullscreenConf .wrap dl dt {
  font-size: 84%;
  color: #555;
}

.fullscreenConf .wrap dl dd {
  border-bottom: 1px #aaa dotted;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.fullscreenConf .c-btnCloseWaku {
  position: absolute;
  right: -15px;
  top: -15px;
}

.fullscreenConf .c-btnCloseWaku .round_btn {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
}

.fullscreenConf .c-btnCloseWaku .round_btn:hover {
  background: #666;
}

.fullscreenConf .c-btnCloseWaku .round_btn::before, .fullscreenConf .c-btnCloseWaku .round_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 21px;
  background: #fff;
}

.fullscreenConf .c-btnCloseWaku .round_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.fullscreenConf .c-btnCloseWaku .round_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.center_txt {
  text-align: center;
}

.mb30 {
  margin-bottom: 30px;
}

.mt50 {
  margin-top: 50px;
}

.ichiran_tit {
  font-size: 25px;
  font-weight: bold;
  text-align: left;
  display: inline-block;
  padding: 0 70px 22px 0;
  /* position: absolute;
  bottom: -2px;
  left: -1px;  */
}

.question_headline {
  min-height: 70px;
  width: 1100px;
  margin: 0 auto;
  background-color: var(--nav-bg2);
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 15px 0;
}

.question_headline_item {
  width: calc(100% / 5);
  text-align: center;
  display: flex;
  align-items: center;
}

.question_headline_item > a {
  display: inline-block;
  color: #FFFFFF;
  /* margin: auto;*/
  margin-left: 25px;
}

.question_box {
  padding: 60px 0 20px;
}
.question_box:last-child {
  padding-bottom: 60px;
}

.ichiran_question li {
  padding: 10px 10px 10px 20px;
}

.apply-color {
  background-color: var(--nav-bg2);
}

.apply-main {
  background-color: var(--nav-bg2);
}

.apply-haikei {
  border-left: 6px solid var(--nav-bg2);
  background-color: var(--section-bg2);
}

.apply-font {
  color: var(--nav-bg2);
}

.apply-_q {
  font-size: 16px;
  text-indent: -1em;
}

.apply-_q:nth-child(2n+1) {
  background-color: var(--section-bg2);
  padding-left: 2em;
  font-weight: 600;
}

.apply-_q:nth-child(2n+1)::before {
  color: var(--nav-bg2);
  content: "Q.";
}

.apply-_q:nth-child(2n) {
  background-color: #fff;
  padding-left: 2em;
  margin-bottom: 35px;
}

.apply-_q:nth-child(2n)::before {
  color: var(--nav-bg2);
  content: "A.";
}

.apply-_q:last-child {
  margin-bottom: 0;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}
