@charset "UTF-8";

/* トップページ */
section {
  padding: 40px 0 80px;
}
@media only screen and (max-width: 959.98px) {
  section {
    padding: 24px 0 48px;
  }
}
@media screen and (max-width: 767.98px) {
  section {
    padding: 16px 0 32px;
  }
}


.main-vis {
  display: block;
  width: 100%;
  height: 650px;
  min-height: 650px;
  background:
    url("../images/main-vis__img.jpg") no-repeat center center/cover/*,*//* システム画像 */
    /*url("../images/main-vis__img--default.jpg") no-repeat center center/cover*/;/* バックアップ用デフォルト画像 */
  background-color: #7f8ead;
  position: relative;
}
@media only screen and (max-width: 959.98px) {
  .main-vis {
    height: auto;
    min-height: auto;
  }
}
@media only screen and (max-width: 767.98px) {
  .main-vis {
    background:
      url("../images/main-vis__img_sp.jpg") no-repeat center center/cover/*,*//* システム画像 */
      /*url("../images/main-vis__img--sp.jpg") no-repeat center center/cover*/;/* バックアップ用デフォルト画像 */
    background-color: #7f8ead;
  }
}


.main-vis__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-content: stretch;
  align-items: stretch;
  max-width: 1200px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 0 96px;
}
@media only screen and (max-width: 959.98px) {
  .main-vis__inner {
    max-width: none;
    height: 500px;
    padding: 0 2rem 48px;
  }
}
@media only screen and (max-width: 767.98px) {
  .main-vis__inner {
    height: 400px;
    padding: 0 1.2rem 1.6rem;
  }
}


.main-vis__txt {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-end;
  align-items: flex-end;
}


.main-vis__catchcopy {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  width: calc( 50% + 8rem );
}
@media only screen and (max-width: 959.98px) {
  .main-vis__catchcopy {
    font-size: 3.6458vw;/* 28px / 960px */
    width: calc( 50% + 4rem );
  }
}
@media only screen and (max-width: 767.98px) {
  .main-vis__catchcopy {
    font-size: 2.2rem;
    line-height: 1.666;
    text-shadow: 0 0 0.33em #000;
    width: 100%;
  }
}


.main-vis__form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  max-width: calc( 50vw - 4.8rem );
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.main-vis__form > * {
  width: 100%;
  position: relative;
}
.main-vis__form-lead {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05ex;
  width: 100%;
  padding: 0 0 0.5em 1em;
  position: relative;
}

@media only screen and (max-width: 1280.98px) {
  .main-vis__form {
    max-width: 767px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 959.98px) {
  .main-vis__form {width: calc( 50% - 4rem );}
}
@media only screen and (max-width: 767.98px) {
  .main-vis__form {width: 100%;}
}


.main-vis__form input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]):not([type="button"]):not([type="submit"]) {
  display: inline-block;
  border-radius: 0.5rem;
  border: 1px solid #e9e9e9;
  background: #e9e9e9;
  font-size: 1.6rem;
  font-weight: inherit;
  line-height: 2;
  text-align: left;
  width: 100%;
  height: var(--c-form-input-height);
  min-height: 0;
  padding: 0.6rem 1.6rem 0.6rem 2.5em;
  vertical-align: bottom;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.2s ease;
}
.main-vis__form input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]):not([type="button"]):not([type="submit"]):focus {
  border: 1px solid #e9e9e9;
  background: #fafafa;
  outline: none;
}
.main-vis__form [type="button"],
.main-vis__form [type="submit"]{
  border: none;
  outline: none;
  background: transparent;
  color: #e95504;
  position: absolute;
  left: 1em;
  top: 50%;
  z-index: 5;
  transform: translate(0,-50%) scale(1.5);
  transform-origin: left center;
}


.main-vis__cta {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  width: calc( 50% - 8rem );
}
.main-vis__cta:only-child {
  /* ボタン領域の兄弟要素が他に無い場合 */
  max-width: calc( 50vw - 4.8rem );
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.main-vis__cta .main-vis__btn {
  max-width: none;
  width: calc( 50% - 1.2rem );
}
.main-vis__cta .main-vis__btn:only-child {width: 100%;}/* ボタンが１つだった場合 */

@media only screen and (max-width: 1280.98px) {
  .main-vis__cta:only-child {
    /* ボタン領域の兄弟要素が他に無い場合 */
    max-width: 767px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 959.98px) {
  .main-vis__cta {width: calc( 50% - 4rem );}
  .main-vis__cta .main-vis__btn {width: calc( 50% - 1.2rem );}
}
@media only screen and (max-width: 767.98px) {
  .main-vis__cta {width: 100%;}
  .main-vis__cta .main-vis__btn {width: calc( 50% - 1.2rem );}
}


.main-vis .btnBox {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  max-width: 56rem;
}
* + .main-vis .btnBox {margin-top: 2rem}
@media only screen and (max-width: 767.98px) {
  .main-vis .btnBox {margin: 0 auto;}
  * + .main-vis .btnBox {margin-top: 2rem}
}


.main-vis__btn {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  width: calc( ( 100% - 2em ) / 2 );/* ボタンとボタンの間に2emの余白 */
  height: 9rem;
}
@media only screen and (max-width: 767.98px) {
  .main-vis__btn {
    height: 7rem;
    margin-top: 1.6rem;
  }
}

.main-vis__btn a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 6px;
  border: solid 4px #001e5a;
  background-color: #001e5a;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 0 1em;
  transition: filter 0.2s ease;
  position: relative;
  opacity: 1;
}
.main-vis__btn a:focus,
.main-vis__btn a:hover {
  border: solid 4px #001e5a;
  background-color: #001e5a;
  color: #fff;
  filter: brightness(150%);
  opacity: 1;
}
.main-vis__btn a::before {display: none;}
.main-vis__btn a::after {display: none;}

/* サポーター色 */
.main-vis__btn.supporter a {
  border-color: #001e5a;
  background-color: #001e5a;
  color: #fff;
}
.main-vis__btn.supporter a:focus,
.main-vis__btn.supporter a:hover {
  border-color: #001e5a;
  background-color: #001e5a;
  color: #fff;
}

/* ユーザー色 */
.main-vis__btn.customer a {
  border-color: #e95504;
  background-color: #e95504;
  color: #fff;
}
.main-vis__btn.customer a:focus,
.main-vis__btn.customer a:hover {
  border-color: #e95504;
  background-color: #e95504;
  color: #fff;
}

/* サイトのオレンジ fill style */
.main-vis__btn.main-vis__btn--default a {
  border-color: #fff;
  background-color: #e95504;
  color: #fff;
}
.main-vis__btn.main-vis__btn--default a:focus,
.main-vis__btn.main-vis__btn--default a:hover {
  border-color: #fff;
  background-color: #e95504;
  color: #fff;
}

/* サイトのオレンジ bordered style */
.main-vis__btn.main-vis__btn--bordered a {
  border-color: #e95504;
  background-color: #fff;
  color: #e95504;
}
.main-vis__btn.main-vis__btn--bordered a:focus,
.main-vis__btn.main-vis__btn--bordered a:hover {
  border-color: #e95504;
  background-color: #fff;
  color: #e95504;
}


@media only screen and (max-width: 767.98px) {
  .main-vis__btn a {
    font-size: 1.6rem;
    line-height: 1.3333;
  }
}

.btn__text-small {
  display: block;
  font-size: 0.5625em;
}
.btn__text-main {
  display: block;
  font-size: 1em;
}
.btn__icon {
  display: block;
  font-size: 0.75em;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  right: 0.5em;
  top: 50%;
  z-index: 1;
  transform: translate(0,-50%);
}

.keyword_search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 10rem;
  background-color: #f08a00;
}
@media screen and (max-width: 767.98px) {
  .keyword_search {
    flex-direction: column;
    height: auto;
    padding: 2rem 1rem;
  }
}
.keyword_search p {
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
  margin-right: 2rem;
}
@media screen and (max-width: 767.98px) {
  .keyword_search p {
    font-size: 2rem;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.keyword_search input[type=search] {
  width: 70rem;
  height: 5rem;
  background-color: #fff;
  border: none;
}
@media screen and (max-width: 767.98px) {
  .keyword_search input[type=search] {
    width: 100%;
    max-width: 50rem;
    height: 4rem;
  }
}

.result {
  padding: 8rem 0;
}
@media only screen and (max-width: 959.98px) {
  .result {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 767.98px) {
  .result {
    padding: 3rem 0;
  }
}

.area_search {
  background-color: #ffead5;
}
.area_search h3 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767.98px) {
  .area_search h3 {
    font-size: 2.4rem;
  }
}

.area_search__wrap {
  --area-search-gap: 4rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: stretch;
  gap: var(--area-search-gap);
}
@media (min-width: 1361px) {
  .area_search__wrap {
    --area-search-gap: 40px;
    height: calc( ( 1360px - var(--area-search-gap) ) / 2 );
    max-height: 600px;/* ボタンを12個以上に増やす時に数値を660px以上に設定してください。 */
  }
}
@media (min-width: 960px) and (max-width: 1360.98px) {
  .area_search__wrap {
    --area-search-gap: 20px;
    height: calc( ( 100vw - var(--l-container-padding) * 2 - var(--area-search-gap) ) / 2 );
    max-height: 600px;/* ボタンを12個以上に増やす時に数値を660px以上に設定してください。 */
  }
}
@media only screen and (max-width: 959.98px) {
  .area_search__wrap {
    --area-search-gap: 24px;
    height: calc( ( 100vw - var(--l-container-padding) * 2 - var(--area-search-gap) ) / 2 );
  }
}
@media only screen and (max-width: 767.98px) {
  .area_search__wrap {
    --area-search-gap: 24px;
    flex-direction: column;
    flex-wrap: wrap;
    height: auto;
  }
}

.area_search__wrap > * {
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .area_search__wrap > * {
    width: 100%;
  }
}

.area_search__img {}
.area_search__img img,
.area_search__img svg {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  font-family: 'object-fit: contain;';
}
@media screen and (max-width: 767.98px) {
  .area_search__img {
    margin-bottom: 2rem;
  }
}


.area_search__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  height: 100%;
  gap: var(--area-search-gap);
}
.area_search__list > div {
  border-radius: 4em;
  width: calc( ( 100% - var(--area-search-gap) ) / 2 );
  height: calc( ( 100% - var(--area-search-gap) * 5 ) / 6 );/* 余白ふくめ縦に6等分（余白はgapサイズに依存させてます） */
  margin: 0;
}
@media screen and (min-width: 768px) {
  .area_search__list {
    padding-block: 32px;
  }
}
@media screen and (max-width: 767.98px) {
  .area_search__list {
    height: calc( 100vw - var(--l-container-padding) * 2 );
  }
  .area_search__list > div {
    height: calc( ( 100% - var(--area-search-gap) * 5 ) / 6 );/* 余白ふくめ縦に6等分（余白はgapサイズに依存させてます） */
  }
}
@media screen and (max-width: 400.98px) {
  .area_search__list > div {
    height: calc( ( 100% - var(--area-search-gap) * 5 ) / 6 );/* 余白ふくめ縦に6等分（余白はgapサイズに依存させてます） */
  }
}

.area_search__list > div.area_pink {
  background-color: #DA5373; color: #fff;
}
.area_search__list > div.area_yellow {
  background-color: #D9A81F; color: #fff;
}
.area_search__list > div.area_brown {
  background-color: #A57224; color: #fff;
}
.area_search__list > div.area_green {
  background-color: #0E8341; color: #fff;
}
.area_search__list > div.area_blue {
  background-color: #0A5E96; color: #fff;
}
.area_search__list > div a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: inherit;
  background-color: inherit;
  color: inherit;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-size: 28px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024.98px) {
  .area_search__list > div a {
    font-size: 24px;
  }
}
@media screen and (max-width: 959.98px) {
  .area_search__list > div a {
    font-size: 24px;
  }
}
@media screen and (max-width: 767.98px) {
  .area_search__list > div a {
    font-size: 20px;
  }
}


.purpose {
  background-color: #fffdeb;
}
.purpose h3 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767.98px) {
  .purpose h3 {
    font-size: 2.4rem;
  }
}
.purpose__wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767.98px) {
  .purpose__wrap {
    flex-direction: column;
  }
}
.purpose__box {
  display: flex;
  flex-direction: column;
  line-height: 1.7;
  margin-right: 3rem;
}
@media screen and (max-width: 767.98px) {
  .purpose__box {
    margin-right: 0;
    margin-bottom: 3rem;
  }
}
.purpose__box:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
.purpose__box a {
  text-decoration: underline;
}
.purpose__box dl + dl {
  margin-top: 2rem;
}
.purpose__box dl.more {
  margin-bottom: 0;
  margin-top: auto;
}
@media screen and (max-width: 767.98px) {
  .purpose__box dl.more {
    margin-top: 3rem;
  }
}
.purpose__box dt {
  font-size: 1.8rem;
  font-weight: 700;
}
.purpose__box dd {
  font-size: 1.5rem;
  font-weight: 500;
}

.voice {
  background-color: #fffcdb;
}

.service_list {
  background-color: #fff1ba;
}

.voice .knowledge__ttl,
.service_list .knowledge__ttl {
  color: #e95504;
}

.feature .c-head {
  align-items: center;
  text-align: center;
}
.feature .c-head__ttl {
  color: #001e5a;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 3.5rem;
}
@media only screen and (max-width: 767.98px) {
  .feature .c-head__ttl {
    font-size: 2.4rem;
  }
}
.feature .c-head__txt {
  font-size: 18px;
  text-align: left;
  width: 100%;
}
@media only screen and (max-width: 767.98px) {
  .feature .c-head__txt {
    font-size: 16px;
  }
}


.feature__item {
  width: calc((100% - 6rem) / 4);
  margin-right: 2rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .feature__item:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .feature__item {
    width: calc((100% - 1rem) / 2);
    margin-right: 1rem;
    margin-bottom: 3.2rem;
  }
  .feature__item:nth-child(2n) {
    margin-right: 0;
  }
}
.feature__img img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
  object-fit: cover;
}
.feature__desc {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.feature__ttl {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  text-align: center;
  color: #005ea4;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767.98px) {
  .feature__ttl {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
  }
}
.feature__txt {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.66;
}
@media screen and (max-width: 767.98px) {
  .feature__txt {
    font-size: 1.4rem;
  }
}
.feature__btn {
  height: 6rem;
  font-size: 1.8rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: auto;
}
@media screen and (max-width: 767.98px) {
  .feature__btn {
    height: 5rem;
    font-size: 1.3rem;
  }
}
.feature__btn a {
  width: 100%;
  height: 100%;
  border-radius: 0.8rem;
  border: solid 1px #005aa1;
  background-color: #6bbee8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.structure {
  background-color: #f1f2f2;
}
.structure .c-head__ttl {
  color: #043487;
}
.structure .c-head__ttl-link {
  background-color: #043487;
}
.structure__txt {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-width: 767.98px) {
  .structure__txt {
    font-size: 1.6rem;
  }
}
.structure__img {
  max-width: 95%;
  margin: 5rem auto 0;
}
@media only screen and (max-width: 767.98px) {
  .structure__img {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 767.98px) {
  .structure__img img {
    width: 180%;
  }
}
.category{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.category__item{
  position: relative;
  width: 48%;
  font-size: 1.8rem;
  line-height: 6rem;
  cursor: pointer;
}
.category__ttl{
  border-bottom: 1px solid #c1c1c1;
}
.category__item img{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 30px;
}
.category__item ul{
  display: none;
  background-color: #f5f5f5;
}
.category__item ul li{
  position: relative;
  padding: 0 1rem;
  border-bottom: 1px solid #c1c1c1;
}
.category__item ul li::before{
  content: '';
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 10px;
  height: 10px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
	transform: rotate(45deg) translateY(-50%);
}
.category__item ul li a{
  display: block;
}
@media only screen and (max-width: 767.98px) {
  .category__item{
    font-size: 1.4rem;
    line-height: 4rem;
  }
  .category__item{
    width: 100%;
  }
  .category__item img{
    width: 24px;
  }
  .category__item ul li::before{
    width: 8px;
    height: 8px;
  }
}