@charset "utf-8";
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* * Basic information:
* * - CSS guideline : FLOCSS
* *
* * Order of discription:
* * - Foundation [ reset / base ]
* * - Layout [ header / main / side / footer ]
* * - Object [ component / project / utility ]
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /

/****************************
  base
*****************************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

:root {
  --paddingSection: 60px;
  --paddingLR: 20px;
  --color_lp: #1B62A1;
  --color_con: #D84003;
  --color_ex: #008299;
  --color_sem: #D13F60;
  --color_sem_blue: #5169A5;
  --color_red: #CE2121;
  --color_gray_bg: #F5F5F5;
  --color_border: #E4E4E4;
  --border_radius: 20px;
}
@media screen and (max-width: 959px) {
  :root {
    --headerHeight: 64px;
    --paddingSection: 40px;
    --border_radius: 10px;
  }
}
html,
body {
  background-color: #fff;
  font-size: 16px;
  font-family: "Noto Sans JP","游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  color: #333333;
  min-width: 1100px;
  position: relative;
}

body {
  position: relative;
  padding-top: 130px;
}

body.top {
  background: url(images/lp/mv-bg.png) no-repeat 50% -180px;
}

body.sub {
  background: url(images/lp/body.png) repeat-y top center;
}

ol, ul {
  list-style: none;
}

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

select {
  font-size: 14px;
  background-color: #fff;
  height: 26px;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

a img:hover {
  opacity: .75;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

a:hover, a:active, a:focus {
  text-decoration: inherit;
}

a:hover {
  opacity: 1.0;
}

a[href]:hover {
  opacity: .8;
}

a {
  text-decoration: inherit;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* skip */
.skip {
  width: 1px;
  color: #000000;
  font-size: 0.1%;
  line-height: 0.1;
  background-color: #FFFFFF;
  position: absolute;
  left: -3000px;
  z-index: 30000;
}
a.skip {
  background-color: #FFFFFF;
  /* 変更しない */
  text-align: center;
  /* 変更しない */
  padding: 2px 0;
  /* 変更しない */
  top: auto;
  /* 変更しない */
}
a.skip:active {
  display: block;
  width: 99.99%;
  /* 変更しない */
  font-size: 100%;
  /* 変更しない */
  line-height: 1.6;
  /* 変更しない */
  top: 0;
  /* 変更しない */
  left: 0;
  /* 変更しない */
}
a.skip:focus {
  display: block;
  width: 99.99%;
  /* 変更しない */
  font-size: 100%;
  /* 変更しない */
  line-height: 1.6;
  /* 変更しない */
  top: 0;
  /* 変更しない */
  left: 0;
  /* 変更しない */
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.din-r {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.din-i {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.din-b {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.din-bi {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.din-nr {
  font-family: "din-2014-narrow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.din-nb {
  font-family: "din-2014-narrow", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* ==========================================================================
Layout [ header / main / side / footer... ]
========================================================================== */

/* Header
---------------------------------------------------------------*/
#header {
  width: 100%;
  max-width: 1280px;
  height: 130px;
  position: fixed;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 0px;
  z-index: 100;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  min-width: 1100px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  background: #fff;
  padding: 10px 120px;
  box-shadow: 0 0px 20px rgba(67, 85, 121, 0.1);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.l-header-logo {
  margin-top: -5px;
}

.l-header-logo p {
  margin-bottom: 3px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.04rem;
}

.l-header-logo p span {
  display: block;
  border: 1px solid var(--color_lp);
  color: var(--color_lp);
  font-size: 0.8125rem;
  width: 78px;
  height: 19px;
  line-height: 19px;
  border-radius: 100px;
  text-align: center;
}

.l-header-inner {
  margin-left: auto;
}

.l-header-portal__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.l-header-pc__logo {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  justify-content: flex-end;
}

.l-header-portal__logo img {
  margin-right: 23px;
}

.l-header-portal__logo img + img {
  width: 126px;
}

.lp-link {
  margin-left: 40px;
}

.lp-link a {
  display: inline-block;
  padding-left: 24px;
  background: url(images/common/ico-arw-lp.svg) no-repeat left center;
  background-size: 16px auto;
  font-size: 0.875rem;
  font-weight: 700;
}

.l-header-nav__item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.l-header-nav__items {
  width: 220px;
  position: relative;
}

.l-header-nav__items > a {
  text-align: center;
  padding: 1px;
  font-weight: 700;
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.l-header-nav__items.l-header-nav__items__con > a {
  color: var(--color_con);
  border: 1px solid var(--color_con);
  background: url(images/common/ico-arw-orange.svg) no-repeat 95% 100%;
  background-size: 22px auto;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.l-header-nav__items.l-header-nav__items__ex > a {
  color: var(--color_ex);
  border: 1px solid var(--color_ex);
  background: url(images/common/ico-arw-green.svg) no-repeat 95% 100%;
  background-size: 22px auto;
}

.l-header-nav__items.l-header-nav__items__sem > a {
  color: var(--color_sem);
  border: 1px solid var(--color_sem);
  background: url(images/common/ico-arw-pink.svg) no-repeat 95% 100%;
  background-size: 22px auto;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.l-header-nav__items__con .l-header-nav__items__child {
  background-color: var(--color_con);
}

.l-header-nav__items__ex .l-header-nav__items__child {
  background-color: var(--color_ex);
}

.l-header-nav__items__sem .l-header-nav__items__child {
  background-color: var(--color_sem);
}

.l-header-nav__items.l-header-nav__items__con a:hover {
  background: url(images/common/ico-arw-white.svg) no-repeat 95% 100%;
  background-size: 22px;
  background-color: var(--color_con);
  opacity: 1;
  color: #fff;
}

.l-header-nav__items.l-header-nav__items__ex a:hover {
  background: url(images/common/ico-arw-white.svg) no-repeat 95% 100%;
  background-size: 22px;
  background-color: var(--color_ex);
  opacity: 1;
  color: #fff;
}

.l-header-nav__items.l-header-nav__items__sem a:hover {
  background: url(images/common/ico-arw-white.svg) no-repeat 95% 100%;
  background-size: 22px;
  background-color: var(--color_sem);
  opacity: 1;
  color: #fff;
}

/* 子メニュー（初期は非表示） */
.l-header-nav__items__child {
  display: none;
  position: absolute;
  top: 100%;
  left: 0%;
  min-width: 774px;
  top: calc(100% - -2px);
  background: #e94b00;
  padding: 7px 0;
}

.l-header-nav__items__ex .l-header-nav__items__child {
  left: -222px;
}

.l-header-nav__items__sem .l-header-nav__items__child {
  left: -444px;
  padding-left: 0;
}

/* ホバーで表示 */
// .l-header-nav__items:hover .l-header-nav__items__child {
//   display: flex;
//   justify-content: center;
//   border-radius: 5px;
// }

.l-header-nav__items__con:hover .l-header-nav__items__child:before {
  content: '';
  position: absolute;
  left: 0;
  top: -3px;
  width: 220px;
  background-color: var(--color_con);
  height: 100%;
  z-index: -1;
  opacity: 1;
}

.l-header-nav__items__ex:hover .l-header-nav__items__child:before {
  content: '';
  position: absolute;
  left: 222px;
  top: -3px;
  width: 220px;
  background-color: var(--color_ex);
  height: 100%;
  z-index: -1;
  opacity: 1;
}

.l-header-nav__items__sem:hover .l-header-nav__items__child:before {
  content: '';
  position: absolute;
  left: 444px;
  top: -3px;
  width: 220px;
  background-color: var(--color_sem);
  height: 100%;
  z-index: -1;
  opacity: 1;
}

/* 横並びにする */
.l-header-nav__items__child {
  justify-content: center;
}

/* 子要素 */
.l-header-nav__items__child li a {
  color: #fff;
  padding: 2px 20px;
  display: block;
  line-height: 1.1;
  font-weight: 500;
  white-space: nowrap;
}

/* 区切り線（画像っぽく） */
.l-header-nav__items__child li:not(:last-child) {
  border-right: 1px dashed #fff;
}

.l-header-nav__items__child li.last {
  border-right: none;
}

.l-header-nav__items.child-link.lp-link,
.sp-accordion,
.sp-navi-items {
  display: none;
}

.l-header-nav__items.l-header-nav__items__con.active > a {
  background: url(images/common/ico-arw-white.svg) no-repeat 95% 100%;
  background-size: 22px;
  background-color: var(--color_con);
  opacity: 1;
  color: #fff;
}

.l-header-nav__items.l-header-nav__items__ex.active > a {
  background: url(images/common/ico-arw-white.svg) no-repeat 95% 100%;
  background-size: 22px;
  background-color: var(--color_ex);
  opacity: 1;
  color: #fff;
}

.l-header-nav__items.l-header-nav__items__sem.active > a {
  background: url(images/common/ico-arw-white.svg) no-repeat 95% 100%;
  background-size: 22px;
  background-color: var(--color_sem);
  opacity: 1;
  color: #fff;
}


/* Main
---------------------------------------------------------------*/
.l-wrapper {
  overflow: hidden;
  width: 100%;
}

#main {
  background: url(images/lp/bg-footer.png) no-repeat bottom center;
  background-size: 100%;
}


/* Footer
---------------------------------------------------------------*/
#footer {
  background-color: #fff;
  padding-top: 38px;
  position: relative;
}

.l-footer-inner {
  width: 100%;
  max-width: 1080px;
  padding: 0 20px 30px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  display: flex;
}

.l-footer-top {
  position: fixed;
  right: 10px;
  bottom: 20px;
  width: 80px;
  height: 80px;
}

.l-footer-logo {
  margin-bottom: 13px;
}

.l-footer-logo p {
  margin-bottom: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.04rem;
}

.l-footer-logo span {
  display: block;
  border: 1px solid var(--color_lp);
  color: var(--color_lp);
  font-size: 0.8125rem;
  width: 78px;
  height: 19px;
  line-height: 19px;
  border-radius: 100px;
  text-align: center;
}

.l-footer-text {
  font-size: 0.8125rem;
  line-height: 1.3;
  font-weight: 500;
}

address {
  font-size: 0.8125rem;
  font-weight: 500;
}

.l-footer-tell {
  margin-top: 10px;
}

.l-footer-tell a {
  display: inline-block;
  color: var(--color_lp);
  font-size: 1.625rem;
  padding-left: 31px;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}

.l-footer-tell a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  background: url(images/common/ico-tell-white.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 16px;
  background-color: var(--color_lp);
  border-radius: 50%;
}

.l-footer-tell .open {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
}

.l-footer-inner .admin {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 7px;
  position: absolute;
  left: 20px;
  bottom: 0;
}

.l-footer-navi {
  margin-left: auto;
}

.l-footer-logo02 {
  display: flex;
  gap: 23px;
}

.l-footer-logo02 img + img {
  width: 126px;
}

.sub-page-navi {
  width: 100%;
  margin: 15px 0 35px;
  display: flex;
  gap: 2px;
}

.sub-page-navi li a {
  display: inline-block;
  text-align: center;
  font-weight: 700;
  padding: 4px;
  width: 220px;
  box-sizing: border-box;
}

.sub-page-navi li.sub-page-navi__con a {
  color: var(--color_con);
  border: 1px solid var(--color_con);
  background: url(images/common/ico-arw-orange.svg) no-repeat 95% 70%;
  background-size: 22px auto;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.sub-page-navi li.sub-page-navi__ex a {
  color: var(--color_ex);
  border: 1px solid var(--color_ex);
  background: url(images/common/ico-arw-green.svg) no-repeat 95% 70%;
  background-size: 22px auto;
}

.sub-page-navi li.sub-page-navi__sem a {
  color: var(--color_sem);
  border: 1px solid var(--color_sem);
  background: url(images/common/ico-arw-pink.svg) no-repeat 95% 70%;
  background-size: 22px auto;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.l-footer-sub__navi {
  padding-left: 80px;
}

.l-footer-sub__navi .navi01 {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.l-footer-sub__navi .navi01 li a {
  padding-left: 26px;
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
}

.l-footer-sub__navi .navi01 li.home a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background: url(images/common/ico-home-white.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 9px;
  background-color: var(--color_lp);
  border-radius: 50%;
}

.l-footer-sub__navi .navi01 li.contact a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background: url(images/common/ico-mail-white.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 10px;
  background-color: var(--color_lp);
  border-radius: 50%;
}

.l-footer-sub__navi .navi02 {
  display: flex;
  gap: 40px;
}

.l-footer-sub__navi .navi02 li a {
  font-size: 0.875rem;
  font-weight: 500;
}

.copyright {
  margin-top: 16px;
  background-color: #1B62A1;
}

.copyright p {
  font-size: 0.875rem;
  color: #fff;
  max-width: 1040px;
  margin: 0 auto;
  text-align: right;
  padding: 10px 0;
}

.sp-fixed-link_lp {
  display: none;
}

/* ==========================================================================
Project [ articles / ranking / promo... ]
========================================================================== */

/* =========================
  メインビジュアル
========================= */

.mv {
  padding-bottom: 20px;
}

.mv-inner {
  width: 100%;
  max-width: 1320px;
  padding: 110px 20px 0;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

.mv-inner:after {
  content: '';
  position: absolute;
  left: 43%;
  top: 10px;
  width: 890px;
  height: 485px;
  background: url(images/lp/mv.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.mv-catch {
  background-image: linear-gradient(61deg, #00c2f2, #008bf2 20% 80%, #14c7f3);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 700px;
  height: 140px;
  border-radius: 10px;
}

.mv-info {
  margin-top: 225px;
}

.mv-info-catch {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 16px;
}

.mv-info-grid {
  display: flex;
  gap: 10px;
}

.mv-info-grid .box {
  width: calc(33.333% - 10px);
  border-radius: 10px;
  padding: 16px 30px 26px;
  box-sizing: border-box;
}

.mv-info-grid .box.box-con {
  background-image: linear-gradient(90deg, #fff1eb, #ffffff 50%, #fff1eb);
  border: 1px solid var(--color_con);
}

.mv-info-grid .box.box-ex {
  background-image: linear-gradient(90deg, #E1F8FD, #ffffff 50%, #E1F8FD);
  border: 1px solid var(--color_ex);
}

.mv-info-grid .box.box-sem {
  background-image: linear-gradient(90deg, #FFECF1, #ffffff 50%, #FFECF1);
  border: 1px solid var(--color_sem);
}

.mv-info-grid .box .head {
  border-bottom: 1px dashed;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  justify-content: space-between;
}

.mv-info-grid .box .head p {
  font-weight: 700;
  font-size: 1.375rem;
}

.mv-info-grid .box .head span {
  margin-left: auto;
  display: inline-block;
  color: #fff;
  padding: 2px 10px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.875rem;
}

.mv-info-grid .text {
  font-weight: 700;
  text-align: left;
  line-height: 1.4;
}

/* =========================
  新着情報
========================= */

.news {
  background-image: linear-gradient(90deg, #f3f9ff, #ffffff 30% 70%, #f3f9ff); 
}

.news .c-center {
  padding-top: 40px;
  padding-bottom: 20px;
}

.news .lead {
  display: flex;
  margin-bottom: 24px;
}

.news .lead .c-link {
  margin-left: auto;
}

.news .lead h2 {
  color: var(--color_lp);
  font-size: 1.625rem;
  font-weight: 700;
}

.news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
}

.news-list li {
  width: calc(50% - 40px);
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--color_border);
}

.news-innner {
  display: flex;
}

.news-innner .news-thum {
  width: 120px;
  border-radius: 5px;
  overflow: hidden;
}

.news-innner .news-thum img {
  width: 100%;
}

.news-list-grid {
  width: calc(100% - 136px);
  margin-left: auto;
}

.news-list-grid__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-list-grid__head .news-date {
  font-weight: 700;
  line-height: 1.3;
}

.news-list-grid__head .category {
  font-weight: 700;
  padding: 3px 10px;
  text-align: center;
  display: inline-block;
  line-height: 1.1;
  border-radius: 100px;
  border: 1px solid var(--color_lp);
  color: var(--color_lp);
  position: relative;
  top: -2px;
  font-size: 0.8125rem;
}

.news-list-grid__head .category.cat-sem {
  border: 1px solid var(--color_sem);
  color: var(--color_sem);
}

.news-list-grid__head .category.cat-ex {
  border: 1px solid var(--color_ex);
  color: var(--color_ex);
}

.news-list-grid__head .category.cat-con {
  border: 1px solid var(--color_con);
  color: var(--color_con);
}

.news-list-grid__head .new {
  font-weight: 700;
  display: inline-block;
  line-height: 1.3;
  color: var(--color_red);
}

.news-title h3 {
  font-weight: 700;
  margin-bottom: 2px;
}

.txt14 {
  font-size: 0.875rem;
}

/* =========================
  個別相談窓口
========================= */

.lp-consultation {
  background: url(images/lp/content-bg.png) no-repeat top center,
  url(images/lp/bg-consultation.png) no-repeat top right;
  background-size: 100%, 100%;
  padding-top: 50px;
}

.lead-content {
  margin-bottom: 40px;
  text-align: center;
}

.lp-expert .c-center {
  padding-bottom: 40px;
}

.lead-content h2 {
  font-size: 2.375rem;
  font-weight: 700;
}

.lead-content h2 span {
  color: #fff;
  padding: 4px 20px;
  border-radius: 100px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  margin-left: 20px;
  position: relative;
  top: -6px;
}

.content-catch {
  font-size: 1.25rem;
  font-weight: 500;
}

.c-center-inner {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px 120px;
}

.content-about {
  width: 100%;
  border: 1px solid var(--color_border);
  padding: 23px 20px 40px;
  border-radius: 10px;
  margin: 32px 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08)
}

.content-about-head {
  display: flex;
  gap: 50px;
}

.content-about-ttl {
  font-size: 1.5rem;
  font-weight: 700;
  width: 100px;
}

.content-about-head__info {
  margin-left: auto;
  width: calc(100% - 100px);
}

.about-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px dashed var(--color_border);
}

.about-list:first-child {
  padding-top: 10px;
}

.dl-inner-list + .dl-inner-list {
  margin-top: 10px;
}

.about-list dt {
  width: 86px;
  font-weight: 700;
}

.about-list dd {
  width: calc(100% - 86px);
}

.dl-inner-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 4px;
}

.dl-inner-list + .dl-inner-list {
  margin-top: 10px;
}

.dl-inner-list .ttl {
  background-color: #fff;
  border: 1px solid #DA5626;
  border-radius: 100px;
  padding: 2px 3px;
  color: var(--color_con);
  line-height: 1.3;
  width: 52px;
  text-align: center;
}

.dl-inner-list .txt16 {
  font-weight: 400;
  font-size: 1rem;
  display: inline-block;
  width: calc(100% - 62px);
  margin-left: auto;
  line-height: 1.4;
}

.con-contact {
  background-image: linear-gradient(90deg, #fff1eb, #ffffff 30% 70%, #fff1eb);
  padding: 25px 0 40px;
}

.con-contact .c-center {
  padding-bottom: 0px;
  padding-top: 20px;
}

.con-contact h2 {
  text-align: center;
  margin-bottom: 20px;
}

.con-contact h2 span {
  display: inline-block;
  padding-left: 55px;
  background: url(images/consultation/con-info-illust.svg) no-repeat left center;
  background-size: 45px;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--color_con);
}

.con-contact-head {
  display: flex;
  align-items: center;
}

.con-contact-head .txt01 {
  font-size: 2rem;
  font-weight: 500;
  margin-right: 16px;
}

.con-contact-head .free {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 300px;
  text-align: center;
  border: 2px solid var(--color_con);
  font-size: 1.375rem;
  margin-right: 15px;
  font-weight: 700;
}

.con-contact-head .cat {
  color: #fff;
  border-radius: 100px;
  padding: 2px 10px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-right: 10px;
}

.con-contact-head .txt16 {
  font-weight: 500;
}

.con-contact ul {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.con-contact ul li {
  width: calc(33.333% - -10px);
  background-color: #fff;
  padding: 10px 15px;
  box-sizing: border-box;
  border: 1px solid var(--color_con);
  border-radius: 10px;
}

.con-contact ul li .title {
  display: flex;
  align-items: center;
  color: var(--color_con);
  font-size: 1.125rem;
  font-weight: 700;
  justify-content: space-between;
  margin-bottom: 4px;
}

.contact-con-list li .title span {
  font-size: 0.8125rem;
  display: block;
  line-height: 1;
  position: relative;
  top: 0px;
}

.con-contact ul li .title .title-tel {
  font-size: 2.0625rem;
  font-weight: 700;
  line-height: 1.2;
}

.con-contact ul li .title .title-btn {
  color: #fff;
  background: url(images/common/ico-arw-white.svg) no-repeat 98% 80%;
  background-size: 22px;
  background-color: var(--color_con);
  border-radius: 200px;
  font-size: 1.125rem;
  text-align: center;
  display: inline-block;
  padding: 8px 29px;
  line-height: 1.3;
}

.con-contact ul li .text {
  font-size: 0.8125rem;
  font-weight: 700;
}

.con-contact .c-btn {
  text-align: center;
  margin: 30px auto 0;
}

.c-btn-inner {
  display: inline-block;
  border-radius: 200px;
  font-size: 1.375rem;
  padding: 18px;
  width: 100%;
  position: relative;
  max-width: 600px;
}

.c-btn-con .c-btn-inner {
  background-image: linear-gradient(90deg, #fff1eb, #ffffff 50%, #fff1eb);
  background-size: 32px;
  background-size: 100%;
  border: 1px solid var(--color_con);
}

.c-btn-con .c-btn-inner:after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -13px;
  width: 32px;
  height: 32px;
  background: url(images/common/ico-arw-orange.svg);
  background-repeat:  no-repeat;
  background-size: 100%;
}

.c-btn-ex .c-btn-inner {
  background-image: linear-gradient(90deg, #E1F8FD, #ffffff 50%, #E1F8FD);
  background-size: 32px;
  background-size: 100%;
  border: 1px solid var(--color_ex);
}

.c-btn-ex .c-btn-inner:after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -13px;
  width: 32px;
  height: 32px;
  background: url(images/common/ico-arw-green.svg);
  background-repeat:  no-repeat;
  background-size: 100%;
}

.con-anket {
  margin-top: 18px;
}

.con-anket a {
  padding-left: 28px;
  background: url(images/common/ico-anket-con.svg) no-repeat 0px 2px;
  background-size: 20px;
  text-decoration: underline;
  font-weight: 700;
}

/* =========================
  専門家派遣
========================= */

.lp-expert {
  background: url(images/lp/content-bg.png) no-repeat top center, 
  url(images/lp/bg-expert.png) no-repeat top left;
  background-size: 100%, 100%;
  padding-top: 50px;
}

.about-support {
  margin-top: 40px;
  border: 1px solid var(--color_ex);
  border-radius: 16px;
  padding: 25px 30px;
}

.about-support-ttl {
  margin-bottom: 32px;
}

.about-support-ttl h3 {
  text-align: center;
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-support-ttl p {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.about-support-list {
  display: flex;
  gap: 21px;
}

.about-support-list__items {
  width: calc(33.333% - 14px);
  display: flex;
  flex-direction: column;
}

.about-support-list__items .head {
  margin-bottom: 10px;
}

.about-support-list__items .head .sub-ttl {
  font-weight: 700;
  margin-top: 8px;
  display: flex;
  font-size: 0.9375rem;
  align-items: flex-start;
  line-height: 1.4;
  min-height: 46px;
}

.about-support-list__items .head .ttl {
  font-size: 1.375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding: 3px 0 6px;
  min-height: 80px;
  padding-left: 96px;
}

.about-support-list__items:nth-child(1) .head .ttl {
  background: url(images/lp/expert-support01.svg) no-repeat left top;
}

.about-support-list__items:nth-child(2) .head .ttl {
  background: url(images/lp/expert-support02.svg) no-repeat left top;
}

.about-support-list__items:nth-child(3) .head .ttl {
  background: url(images/lp/expert-support03.svg) no-repeat left top;
}

.about-support-list__items .head .sub-ttl .label {
  display: block;
  background-color: var(--color_ex);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  width: 52px;
  height: 24px;
  line-height: 24px;
  font-size: 1rem;
  margin-top: 0px;
  font-weight: 500;
  margin-right: 8px;
}

.about-support-list__items .info {
  // margin-top: auto;
}

.about-support-list__items .info ul li {
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  padding-left: 12px;
  font-size: 0.85rem;
}

.about-support-list__items .info ul li + li {
  margin-top: 10px;
}

.about-support-list__items .info ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background-color: var(--color_ex);
  border-radius: 100px;
}

.ex-btn {
  background-image: linear-gradient(90deg, #EAFAFD, #ffffff 30% 70%, #EAFAFD);
  padding: 40px 0 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.ex-btn .c-btn02-inner {
  background-color: var(--color_ex);
  color: #fff;
  position: relative;
}

.ex-btn .c-btn02-inner:after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -13px;
  width: 26px;
  height: 26px;
  background: url(images/common/ico-arw-white.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

/* =========================
  オンラインセミナー
========================= */

.lp-seminar {
  background: url(images/lp/content-bg.png) no-repeat top center,
  url(images/lp/bg-seminar.png) no-repeat top right;
  background-size: 100%, 100%;
}

.lp-seminar .content-about {
  padding: 23px 40px;
}

.sem-about-grid {
  display: flex;
  flex-wrap: wrap;
}

.sem-about-grid .thum {
  width: 160px;
}

.sem-about-grid .thum img {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 5px;
}

.sem-about-grid .info-sem {
  margin-left: auto;
  width: calc(100% - 190px);
}

.sem-about-grid .info-sem.coming-soon {
  width: 100%;
}

.info-sem-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--color_sem);
}

.info-sem-head .num {
  width: 40px;
  height: 40px;
  border-radius: 200px;
  line-height: 40px;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  margin-right: 8px;
  text-align: center;
  display: inline-block;
}

.info-sem-head .num + .txt02 {
  font-weight: 700;
  margin-right: 10px;
}

.info-sem-head .txt02 span {
  display: inline-block;
  margin-right: 1px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  color: #fff;
  border-radius: 2px;
  text-align: center;
}

.info-sem-head .txt03 {
  font-weight: 700;
}

.info-sem-head .txt03 span {
  text-align: center;
  font-size: 1.125rem;
  border: 1px solid var(--color_sem);
  border-radius: 200px;
  color: var(--color_sem);
  font-weight: 700;
  display: inline-block;
  line-height: 1.3;
  margin-right: 4px;
}

.content-about.commpany-sem .info-sem-head .txt03 span {
  color: var(--color_sem_blue);
  border-color: var(--color_sem_blue);
}

.content-about.commpany-sem .sem-about-dl {
  border-color: var(--color_sem_blue);
}

.content-about.commpany-sem .sem-about-dl02 {
  border-color: var(--color_sem_blue);
}

.content-about.commpany-sem .info-sem-head {
  border-color: var(--color_sem_blue);
}

.coming-soon-text {
  margin: 60px 0;
  text-align: center;
  font-weight: 700;
}

.sem-about-dl {
  width: 100%;
  display: flex;
  padding-top: 9px;
  margin-top: 9px;
  border-top: 1px solid var(--color_sem);
}

.sem-about-dl dt {
  width: 80px;
}

.sem-about-dl dt .theme {
  color: #fff;
  border-radius: 100px;
  line-height: 1.3;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0px 10px;
}

.sem-about-dl dd ,
.sem-about-dl02 dd {
  margin-left: auto;
  width: calc(100% - 80px);
  position: relative;
}

.sem-about-dl02 dd .chusen {
  background-color: var(--color_sem);
  color: #fff;
  text-align: center;
  padding: 2px 10px;
  border-radius: 4px;
  margin-left: 10px;
  line-height: 1.3;
  display: inline-block;
  font-size: 0.8125rem;
}

.sem-about-dl02 {
  display: flex;
  width: 55%;
  padding: 10px 0;
  border-bottom: 1px dashed var(--color_sem);
}

.sem-about-dl02:nth-child(2n) {
  width: 45%;
}

.sem-about-list .sem-about-list {
  width: 50%;
  flex-wrap: wrap;
}

.sem-about-list {
  display: flex;
  flex-wrap: wrap;
}

.sem-about-dl02 dt {
  width: 80px;
  font-weight: 700;
}

.sem-about-dl02.fl-ver {
  width: 100%;
}

.sem-about-dl02 dd .date {
  display: flex;
  font-weight: 700;
}

.sem-about-dl02 dd .date .txt02 {
  font-size: 0.875rem;
  line-height: 1.9;
}

.sem-about-dl02 dd .date .txt03 {
  font-size: 1.5rem;
  line-height: 1;
}

.sem-about-dl02 dd .date .txt04 {
  font-size: 1rem;
  line-height: 1.5;
}

.sem-about-dl02 dd .date .txt05 {
  position: relative;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  font-size:  0.6875rem;
  display: inline-block;
  margin-right: 3px;
  margin-left: 2px;
}

.sem-about-dl02 dd .map {
  margin-left: auto;
  width: 380px;
  height: 200px;
}

.sem-about-dl02 dd .map iframe {
  width: 100%;
  height: 100%;
}

.c-btn-sem .c-btn-inner {
  background-image: linear-gradient(90deg, #FFECF1, #ffffff 50%, #FFECF1);
  background-size: 32px;
  background-size: 100%;
  border: 1px solid var(--color_sem);
}

.sem-btn {
  padding: 40px 0 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.c-btn-sem .c-btn-inner:after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -13px;
  width: 32px;
  height: 32px;
  background: url(images/common/ico-arw-pink.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.sem-btn .c-btn02-inner {
  background-color: var(--color_sem);
  color: #fff;
  position: relative;
}

.sem-btn .c-btn02-inner:after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -13px;
  width: 26px;
  height: 26px;
  background: url(images/common/ico-arw-white.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.sem-btn .c-btn a {
  padding: 9px 14px 10px;
  font-size: 1.125rem;
  color: var(--color_sem);
  border: 1px solid var(--color_sem);
}

.sem-btn .c-btn a.c-btn02-inner {
  color: #fff;
}

.childcare .title {
  align-items: center; /* 横線を上下中央 */
  display: flex; /* 文字と横線を横並び */
  justify-content: center; /* 文字を中央寄せ */
  font-size: 1.25rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--color_sem);
  margin-bottom: 10px;
}

.childcare .title::before,
.childcare .title::after {
  background-color: var(--color_sem); /* 横線の色 */
  content: "";
  height: 1px; /* 横線の高さ */
  width: 100%; /* 横線の長さ */
}
.childcare .title::before {
  margin-right: 25px; /* 文字との余白 */
}
.childcare .title::after {
  margin-left: 25px; /* 文字との余白 */
}

.childcare-catch {
  margin-bottom: 24px;
  text-align: center;
  position: relative;
}

.childcare-catch p {
  font-weight: 700;
  text-align: center;
}

.childcare-catch span.free {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 200px;
  background-color: var(--color_sem);
  color: #fff;
  font-size: 1.125rem;
  transform: rotate(15deg);
  position: absolute;
  right: 80px;
  top: 0;
}

.childcare-dl {
  display: flex;
}

.childcare-dl > dt {
  width: 300px;
}

.childcare-dl dt img {
  width: 100%;
  border-radius: 5px;
}

.childcare-dl > dd {
  margin-left: auto;
  width: calc(100% - 340px);
}

.childcare-dl dd .sem-about-dl02 dt {
  width: 120px;
}

.childcare-dl dd .sem-about-dl02 dd p {
  font-weight: 500;
}

.btn-type {
  text-align: center;
  display: inline-block;
  color: var(--color_sem);
  border-radius: 200px;
  border: 1px solid var(--color_sem);
  padding: 1px 12px;
  line-height: 1.3;
  margin-left: 10px;
}

.childcare-dl .c-btn {
  max-width: 238px;
  padding-top: 16px;
}

.childcare-dl .c-btn02-inner {
  font-size: 1rem;
}

.childcare-dl .sem-btn .c-btn02-inner:after {
  width: 25px;
  right: 5px;
  margin-top: -11px;
}

.childcare {
  margin: 0 auto;
  width: 100%;
}

.sem-support {
  border: 1px solid var(--color_sem);
  border-radius: 20px;
  padding: 25px 79px 40px;
}

.sem-support-title {
  text-align: center;
  margin-bottom: 28px;
  font-size: 1.625rem;
  color: var(--color_sem);
  font-weight: 700;
}

.sem-support-title span {
  display: block;
  color: #222;
  letter-spacing: -0.01rem;
  font-size: 1rem;
}

.sem-support-btn.c-btn {
  display: flex;
  width: 100%;
  padding-bottom: 0;
  padding-top: 30px;
  max-width: 100%;
  justify-content: center;
}

.sem-support-btn .c-btn02-inner {
  font-size: 1.125rem;
  max-width: 375px;
}

.sem-about-dl.bt-none {
  border-top: none;
  margin-top: 0;
}

.content-about.commpany-sem .c-btn-inner {
  background-image: linear-gradient(90deg, #F2F6FF, #ffffff 50%, #F2F6FF);
  border-color: var(--color_sem_blue);
  color: var(--color_sem_blue);
}

.content-about.commpany-sem .c-btn-sem .c-btn-inner:after {
  background: url(images/common/ico-arw-blue02.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.content-about.commpany-sem .sem-btn .c-btn02-inner {
  background-color: var(--color_sem_blue);
  border-color: var(--color_sem_blue);
}

.ft-banner {
  position: relative;
  background-color: #F5F5F5;
  padding: 40px 0;
  margin-top: -1px;
}

.ft-banner-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.ft-banner-list li {
  width: auto;
  height: 90px;
}

.ft-banner-list li img {
  height: 100%;
  width: auto;
}

/* =========================
  下層
========================= */

/*サイトポリシー*/
.h2-ttl {
  font-size: 1.75rem;
  font-weight: 700;
  padding-bottom: 7px;
  position: relative;
  margin-bottom: 20px;
}

.h2-ttl:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #A4CDF0;
  border-radius: 20px;
}

.policy-inner {
  margin-top: 66px;
}

.policy-inner:first-child {
  margin-top: 0;
}

.policy-inner p {
  margin-bottom: 15px;
}

.policy-inner__sub {
  margin-bottom: 40px;
}

.h3-ttl {
  color: var(--color_lp);
  font-size: 1.375rem;
  background: #EBF2F8;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: 700;
  margin-bottom: 15px;
}

.dot-list {
  margin: 16px 0 20px;
}

.dot-list li {
  padding-left: 20px;
  margin-bottom: 6px;
  position: relative;
}

.dot-list li:before {
  content: '';
  position: absolute;
  left: 6px;
  top: 13px;
  width: 4px;
  height: 4px;
  border-radius: 10px;
  background: #A4CDF0;
  font-size: 1rem;
}

.lv {
  padding: 65px 0 40px;
  position: relative;
}

.lv:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  padding-bottom: 25%;
  background: url(images/lp/lv-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 0;
}

.lv h1 {
  position: relative;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color_lp);
  position: relative;
  z-index: 1;
}

body.sub .c-center-inner {
  position: relative;
  z-index: 1;
  padding-left: 160px;
  padding-right: 160px;
}

/*サイトマップ*/
.sitemap-inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.sitemap-inner:last-child {
  margin-bottom: 0;
}

.sitemap-inner .home {
  width: 30%;
}

.sitemap-inner .home a {
  display: inline-block;
  font-weight: 700;
  padding-left: 26px;
  text-decoration: underline;
  position: relative;
}

.sitemap-inner .home a:after {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  background: url(images/common/ico-home-white.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 9px;
  background-color: var(--color_lp);
  border-radius: 50%;
}

.sitemap-inner ul {
  width: 35%;
}

.sitemap-inner ul li {
  margin-bottom: 10px;
}

.sitemap-inner ul li > a {
  padding-left: 20px;
  background: url(images/common/ico-arw-blue02.svg) no-repeat 0 4px;
  background-size: 17px auto;
}

.sitemap-inner.consultation-sitemap .mail ,
.sitemap-inner.consultation-sitemap .online-contact ,
.sitemap-inner.expert-sitemap .entry,
.sitemap-inner.expert-sitemap .mail,
.sitemap-inner.seminar-sitemap .mail,
.sitemap-inner.seminar-sitemap .entry,
.sitemap-inner.consultation-sitemap .online-entry {
  margin-bottom: 10px;
  max-width: 240px;
}

.sitemap-inner.consultation-sitemap .mail a ,
.sitemap-inner.consultation-sitemap .online-entry a {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: url(images/common/ico-arw-white.svg) no-repeat 95% 12px;
  background-size: 17px auto;
  background-color: var(--color_con);
  border-radius: 200px;
  padding: 6px 0;
}

.sitemap-inner.consultation-sitemap .mail a span {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
}

.sitemap-inner.consultation-sitemap .online-entry a span {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  padding-top: 2px;
  padding-bottom: 2px;
}

.sitemap-inner.consultation-sitemap .online-contact a {
  background-color: #fff;
  border: 2px solid var(--color_con);
  background: url(images/common/ico-arw-orange.svg) no-repeat 97% 10px;
  background-size: 22px auto;
  border-radius: 200px;
  padding: 8px 24px;
  line-height: 1.3;
  width: 100%;
  text-align: center;
  display: inline-block;
}

.sitemap-inner.consultation-sitemap .online-contact a span {
  color: var(--color_con);
  font-size: 0.875rem;
  font-weight: 500;
}

.sitemap-inner.expert-sitemap .entry a {
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  color: #fff;
  background: url(images/common/ico-arw-white.svg) no-repeat 95% 12px;
  background-size: 17px auto;
  background-color: var(--color_ex);
  border-radius: 200px;
  line-height: 1.3;
  width: 100%;
  max-width: 500px;
}

.sitemap-inner.expert-sitemap .mail a {
  border: 2px solid var(--color_ex);
  padding: 8px 24px;
  line-height: 1.3;
  display: inline-block;
  width: 100%;
  text-align: center;
  background: url(images/common/ico-arw-green.svg) no-repeat 97% 8px;
  background-size: 22px auto;
  border-radius: 200px;
}

.sitemap-inner.seminar-sitemap .entry a {
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  color: #fff;
  background: url(images/common/ico-arw-white.svg) no-repeat 95% 12px;
  background-size: 17px auto;
  background-color: var(--color_sem);
  border-radius: 200px;
  line-height: 1.3;
  width: 100%;
  max-width: 500px;
}

.sitemap-inner.expert-sitemap .mail a span {
  display: inline-block;
  color: var(--color_ex);
  font-weight: 500;
  font-size: 0.875rem;
}

.sitemap-inner.seminar-sitemap .mail a {
  border: 2px solid var(--color_sem);
  background: url(images/common/ico-arw-pink.svg) no-repeat 97% 8px;
  background-size: 22px auto;
  padding: 8px 24px;
  line-height: 1.3;
  display: inline-block;
  width: 100%;
  text-align: center;
  border-radius: 200px;
}

.sitemap-inner.seminar-sitemap .mail a span {
  display: inline-block;
  color: var(--color_sem);
  font-weight: 500;
  font-size: 0.875rem;
}

.sitemap-inner.seminar-sitemap .entry.company a {
  background-color: var(--color_sem_blue);
}

/*accessibility*/
.margin_section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.margin_section:last-child {
  margin-bottom: 0;
}

#accessibility_contents .list .title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.indent_icon > *:first-child {
  flex-shrink: 0;
}

#accessibility_contents .list > *:not(:last-child) {
  margin-bottom: 1.5rem;
}

.list_icon > * {
  display: flex;
}

.list_icon > *:not(:last-child) {
  margin-bottom: 1em;
}

.list_dots > * {
  position: relative;
  padding-left: 1em;
}

.list_dots > *:not(:last-child) {
  margin-bottom: 0.5em;
}

.list_dots > *::before {
  content: "";
  width: 0.4em;
  aspect-ratio: 1 / 1;
  position: absolute;
  left: 0;
  top: 0.75em;
  background-color: var(--color_lp);
  border-radius: 50%;
}

.table_wrap .text_scroll {
  display: none;
}

.table_accesibility th, .table_accesibility td {
  padding: 0.75rem 1.25rem;
  border: 1px solid #D9D9D9;
  vertical-align: middle;
}

.table_accesibility thead th {
  line-height: 1.25;
  background-color: #F7F7F7;
}

.table_accesibility tbody td {
  text-align: center;
}

.table_accesibility tbody td:nth-child(1) {
  width: 5.5em;
}

.text + .text {
  margin-top: 1em;
}

.list_icon > * > *:first-child {
  flex-shrink: 0;
}

.mb_1em {
  margin-bottom: 1em;
}

.lp-btn .c-btn {
  text-align: center;
  margin: 0 auto;
}

.lp-btn .c-btn02-inner {
  color: #fff;
  background-color: var(--color_sem_blue);
}

/* ==========================================================================
Component [ button / form / grid... ]
========================================================================== */

/* filter: drop-shadow(0 3px 6px rgba(0, 55, 51, 0.1));
font-size: clamp(0.75rem, 1.25vw, 1rem);
aspect-ratio: 1 / 2;
background: center/contain url("../images/aaa.svg") no-repeat; */

.c-center {
  width: 100%;
  max-width: 1320px;
  padding: var(--paddingSection) 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* grid */
.grid {
  clear: both;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.flex-top {
  align-items: flex-start;
}

.flex-middle {
  align-items: center;
}

.flex-bottom {
  align-items: flex-end;
}

.flex-between {
  justify-content: space-between;
}

.flex-around {
  justify-content:space-around;
}

.flex-left {
  justify-content:flex-start;
}

.flex-center {
  justify-content:center;
}

.flex-right {
  justify-content:flex-end;
}

/* color */
.color-lp {
  color: #1B62A1;
}
.bg-lp {
  background-color: #1B62A1;
}
.color-ex {
  color: #008299;
}
.bg-ex {
  background-color: #008299;
}
.color-con {
  color: #D84003;
}
.bg-con {
  background-color: #D84003;
}
.color-sem {
  color: #D13F60;
}
.bg-sem {
  background-color: #D13F60;
}

.color-sem-blue {
  color: #5169A5;
}

.bg-sem-blue {
  background-color: #5169A5;
}

/*btn*/
.c-btn {
  display: block;
  width: 100%;
  max-width: 488px;
}

.c-btn a {
  display: inline-block;
  width: 100%;
  background: url(images/common/ico-arw-btn.svg) no-repeat 95% 50%;
  background-size: 24px auto;
  background-color: var(--color_yellow);
  text-align: center;
  font-size: 1.375rem;
  font-weight: 500;
  padding: 14px 14px 12px;
  line-height: 1.5;
  box-sizing: border-box;
  border-radius: 200px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16)
}

.c-btn a span {
  display: block;
  font-size: 0.875rem;
}

/*link*/
.c-link {
  display: inline-block;
}

.c-link span {
  padding-right: 30px;
  background: url(images/common/ico-arw-blue.svg) no-repeat right center;
  background-size: 24px auto;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color_lp);
}

/* column */
.col-1 { width: 8.33333333%; }
.col-2 { width: 16.66666667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33333333%; }
.col-5 { width: 41.66666667%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33333333%; }
.col-8 { width: 66.66666667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33333333%; }
.col-11 { width: 91.66666667%; }
.col-12 { width: 100%; }

/*==========
タイトル
==========*/

strong {
  font-weight: 700;
}

/*パンくず*/
.breadcrumbs {
  margin-top: 15px;
  text-align: right;
  margin-bottom: 15px;
}

.breadcrumbs ul {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.breadcrumbs ul li {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.875rem;
}

.breadcrumbs ul li a {
  text-decoration: underline;
  font-size: 0.875rem;
  color: var(--color_lp);
}

.breadcrumbs ul li a:hover {
  text-decoration: none;
}

.breadcrumbs li.arrow {
  width: 20px;
  height: 20px;
  position: relative;
  color: var(--color_lp);
  line-height: 18px;
  text-align: center;
}

/*==========
Effect
==========*/

.rotate {
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  opacity: 0;
  will-change: transform, opacity;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.rotate.trigger {
  -webkit-animation-name: rotate;
          animation-name: rotate;
}

@-webkit-keyframes rotate {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@keyframes rotate {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
.fadeIn {
  opacity: 0;
  will-change: opacity;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.fadeIn.trigger {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeUp {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  will-change: transform, opacity;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.fadeUp.trigger {
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
}

.fadeUpList > * {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  will-change: transform, opacity;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.fadeUpList.trigger > * {
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.popUp {
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  will-change: transform, opacity;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.popUp.trigger {
  -webkit-animation-name: popUp;
          animation-name: popUp;
}

.popUpList > * {
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  will-change: transform, opacity;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.popUpList.trigger > * {
  -webkit-animation-name: popUp;
          animation-name: popUp;
}

@-webkit-keyframes popUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.125);
            transform: scale(1.125);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes popUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.125);
            transform: scale(1.125);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.slideLeft {
  will-change: transform, opacity;
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
  opacity: 0;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.slideLeft.trigger {
  -webkit-animation-name: slideLeft;
          animation-name: slideLeft;
}

@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.slideRight {
  will-change: transform, opacity;
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
  opacity: 0;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.slideRight.trigger {
  -webkit-animation-name: slideRight;
          animation-name: slideRight;
}

@-webkit-keyframes slideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* ==========================================================================
Utility [ display / margin / padding / device... ]
========================================================================== */

/* device - utility
--------------------------------------------------------- */
.u-pc {
  display: block !important;
}
.u-sp {
  display: none !important;
}

/* line-height - utility
--------------------------------------------------------- */
.u-lh {
  line-height: 1.5;
}

/* vertical-align - utility
--------------------------------------------------------- */
.u-va-t{
  vertical-align: top !important;
}
.u-va-m{
  vertical-align: middle !important;
}
.u-va-b{
  vertical-align: bottom !important;
}

/* border - utility
--------------------------------------------------------- */
/* border-radius */
.u-br-4{
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -ms-border-radius: 4px;
}
.u-br-8{
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -ms-border-radius: 8px;
}
.u-br-12{
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -ms-border-radius: 12px;
}
.u-br-16{
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -ms-border-radius: 16px;
}

/* border-none */
.u-br-0{
  border: none;
}
.u-br-t-0{
  border-top: none;
}
.u-br-r-0{
  border-right: none;
}
.u-br-b-0{
  border-bottom: none;
}
.u-br-l-0{
  border-left: none;
}

/* clearfix - utility
--------------------------------------------------------- */
.u-cf{
  *zoom: 1;
}
.u-cf:after{
  display: table;
  clear: both;
  content: '';
}

/* display - utility
--------------------------------------------------------- */
.u-d-tb{
  display: table !important;
}
.u-d-tbc{
  display: table-cell !important;
}
.u-d-b{
  display: block !important;
}
.u-d-ib{
  display: inline-block !important;
}
.u-d-n{
  display: none !important;
}

/* float - utility
--------------------------------------------------------- */
.u-fl-l{
  float: left !important;
}
.u-fl-r{
  float: right !important;
}

/* font-size - utility
--------------------------------------------------------- */
.u-fz-10{
  font-size: 10px !important;
}
.u-fz-12{
  font-size: 12px !important;
}
.u-fz-14{
  font-size: 14px !important;
}
.u-fz-16{
  font-size: 16px !important;
}
.u-fz-18{
  font-size: 18px !important;
}
.u-fz-20{
  font-size: 20px !important;
}
.u-fz-22{
  font-size: 22px !important;
}
.u-fz-24{
  font-size: 24px !important;
}
.u-fz-26{
  font-size: 26px !important;
}
.u-mini {
  font-size: 80%;
}

/* line-clamp - utility
--------------------------------------------------------- */
.u-lc{
  display:         box;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* margin - utility
--------------------------------------------------------- */
/* auto margin */
.u-m-c{
  margin-right: auto !important;
  margin-left: auto !important;
}

/* Top margin */
.u-mt-0{
  margin-top: 0 !important;
}
.u-mt-8{
  margin-top: 8px !important;
}
.u-mt-16{
  margin-top: 16px !important;
}
.u-mt-24{
  margin-top: 24px !important;
}
.u-mt-32{
  margin-top: 32px !important;
}
.u-mt-40{
  margin-top: 40px !important;
}
.u-mt-48{
  margin-top: 48px !important;
}
.u-mt-56{
  margin-top: 56px !important;
}
.u-mt-64{
  margin-top: 64px !important;
}

/* Right margin */
.u-mr-0{
  margin-right: 0 !important;
}
.u-mr-8{
  margin-right: 8px !important;
}
.u-mr-16{
  margin-right: 16px !important;
}
.u-mr-24{
  margin-right: 24px !important;
}
.u-mr-32{
  margin-right: 32px !important;
}
.u-mr-40{
  margin-right: 40px !important;
}
.u-mr-48{
  margin-right: 48px !important;
}
.u-mr-56{
  margin-right: 56px !important;
}
.u-mr-64{
  margin-right: 64px !important;
}

/* Bottom margin */
.u-mb-0{
  margin-bottom: 0 !important;
}
.u-mb-8{
  margin-bottom: 8px !important;
}
.u-mb-16{
  margin-bottom: 16px !important;
}
.u-mb-24{
  margin-bottom: 24px !important;
}
.u-mb-32{
  margin-bottom: 32px !important;
}
.u-mb-40{
  margin-bottom: 40px !important;
}
.u-mb-48{
  margin-bottom: 48px !important;
}
.u-mb-56{
  margin-bottom: 56px !important;
}
.u-mb-64{
  margin-bottom: 64px !important;
}

/* Left margin */
.u-ml-0{
  margin-left: 0 !important;
}
.u-ml-8{
  margin-left: 8px !important;
}
.u-ml-16{
  margin-left: 16px !important;
}
.u-ml-24{
  margin-left: 24px !important;
}
.u-ml-32{
  margin-left: 32px !important;
}
.u-ml-40{
  margin-left: 40px !important;
}
.u-ml-48{
  margin-left: 48px !important;
}
.u-ml-56{
  margin-left: 56px !important;
}
.u-ml-64{
  margin-left: 64px !important;
}

/* misc - utility
--------------------------------------------------------- */
.u-ws-nowrap{
  white-space: nowrap;
}
.u-mx-img{
  max-width: 100%;
}
.u-tx-inside{
  margin-left: 1em;
  text-indent: -1em;
}

/* padding - utility
--------------------------------------------------------- */
/* Top padding */
.u-pt-0{
  margin-top: 0 !important;
}
.u-pt-8{
  margin-top: 8px !important;
}
.u-pt-16{
  margin-top: 16px !important;
}
.u-pt-24{
  margin-top: 24px !important;
}
.u-pt-32{
  margin-top: 32px !important;
}
.u-pt-40{
  margin-top: 40px !important;
}
.u-pt-48{
  margin-top: 48px !important;
}
.u-pt-56{
  margin-top: 56px !important;
}
.u-pt-64{
  margin-top: 64px !important;
}

/* Right padding */
.u-pr-0{
  padding-right: 0 !important;
}
.u-pr-8{
  padding-right: 8px !important;
}
.u-pr-16{
  padding-right: 16px !important;
}
.u-pr-24{
  padding-right: 24px !important;
}
.u-pr-32{
  padding-right: 32px !important;
}
.u-pr-40{
  padding-right: 40px !important;
}
.u-pr-48{
  padding-right: 48px !important;
}
.u-pr-56{
  padding-right: 56px !important;
}
.u-pr-64{
  padding-right: 64px !important;
}

/* Bottom padding */
.u-pb-0{
  padding-bottom: 0 !important;
}
.u-pb-8{
  padding-bottom: 8px !important;
}
.u-pb-16{
  padding-bottom: 16px !important;
}
.u-pb-24{
  padding-bottom: 24px !important;
}
.u-pb-32{
  padding-bottom: 32px !important;
}
.u-pb-40{
  padding-bottom: 40px !important;
}
.u-pb-48{
  padding-bottom: 48px !important;
}
.u-pb-56{
  padding-bottom: 56px !important;
}
.u-pb-64{
  padding-bottom: 64px !important;
}

/* Left padding */
.u-pl-0{
  padding-left: 0 !important;
}
.u-pl-8{
  padding-left: 8px !important;
}
.u-pl-16{
  padding-left: 16px !important;
}
.u-pl-24{
  padding-left: 24px !important;
}
.u-pl-32{
  padding-left: 32px !important;
}
.u-pl-40{
  padding-left: 40px !important;
}
.u-pl-48{
  padding-left: 48px !important;
}
.u-pl-56{
  padding-left: 56px !important;
}
.u-pl-64{
  padding-left: 64px !important;
}

/* position - utility
--------------------------------------------------------- */
.u-pos-a{
  position: absolute !important;
}
.u-pos-r{
  position: relative !important;
}

/* text-align - utility
--------------------------------------------------------- */
.u-ta-l{
  text-align: left !important;
}
.u-ta-c{
  text-align: center !important;
}
.u-ta-r{
  text-align: right !important;
}

/* text-decoration - utility
--------------------------------------------------------- */
.u-fw-r{
  font-weight: 400 !important;
}
.u-fw-n{
  font-weight: 500 !important;
}
.u-fw-b{
  font-weight: 700 !important;
}
.u-td-u{
  text-decoration: underline !important;
}

/* text-truncate - utility
--------------------------------------------------------- */
.u-tt{
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  /* for IE 8/9 */
}

/* width - utility
--------------------------------------------------------- */
.u-w-auto{
  width: auto !important;
}
.u-maw-full{
  max-width: 100% !important;
}
.u-maw-half{
  max-width: 50% !important;
}

/*可変幅*/
@media screen and (max-width: 1300px){
  .mv-inner:after {
    width: 690px;
    left: 50%;
  }
}
@media screen and (max-width: 1200px){
  #header {
    padding: 10px 30px;
  }
  .l-header-nav__items__sem:hover .l-header-nav__items__child:before {
    left: 564px;
  }
  .l-header-nav__items__sem .l-header-nav__items__child {
    left: -564px;
  }
  .l-header-nav__items__ex .l-header-nav__items__child {
    left: -342px;
  }
  .l-header-nav__items__con .l-header-nav__items__child {
    left: -120px;
    border-radius: 5px;
  }
  .l-header-nav__items__ex:hover .l-header-nav__items__child:before {
    left: 342px;
  }
  .l-header-nav__items__con:hover .l-header-nav__items__child:before {
    left: 120px;
  }
  .c-center-inner {
    padding: 40px 60px;
  }
  .con-contact ul li .title {
    flex-wrap: wrap;
  }
  .mv-catch {
    justify-content: flex-start;
    box-sizing: border-box;
    padding-left: 30px;
  }
  .mv-catch img {
    width: 70%;
  }
}
  