@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 {
  background: url(../../images/seminar/mv-bg.png) no-repeat 60% -170px;
  background-size: 2387px;
}

body.sub {
  background: url(../../images/seminar/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;
  color: var(--color_sem);
}

.l-header-logo p span {
  display: block;
  border: 1px solid var(--color_sem);
  color: var(--color_sem);
  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;
}

.home-link {
  margin-left: 20px;
}

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

.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 > a:hover {
//   border-bottom-left-radius: 0;
//   border-bottom-right-radius: 0;
// }

.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);
  border-radius: 5px;
}

.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-bottom-left-radius: 5px;
//   border-top-right-radius: 5px;
//   border-bottom-right-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.active .l-header-nav__items__child.is-open:before ,
.l-header-nav__items__sem:hover .l-header-nav__items__child:before {
  content: '';
  position: absolute;
  left: 444px;
  top: -5px;
  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;
  width: 20%;
  text-align: center;
}

.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;
}

.l-header-nav__items__sem .l-header-nav__items__child.is-open {
  display: flex;
  justify-content: space-around;
}


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

#main {
  background: url(../../images/seminar/ft-bg.png) no-repeat bottom center;
}


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

.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;
  color: var(--color_sem);
  font-weight: 700;
  letter-spacing: -0.04rem;
}

.l-footer-logo span {
  display: block;
  border: 1px solid var(--color_sem);
  color: var(--color_sem);
  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_sem);
  font-size: 1.625rem;
  padding-left: 31px;
  line-height: 1.3;
  position: relative;
  font-weight: 500;
}

.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_sem);
  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-orange.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_sem);
  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_sem);
  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: var(--color_sem);
}

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

.sp-fixed-link_sem {
  display: none;
}
/* ==========================================================================
Project [ articles / ranking / promo... ]
========================================================================== */

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

.mv {
  position: relative;
}

.mv:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0px;
  width: 614px;
  height: 503px;
  z-index: 1;
  background: url(../../images/seminar/mv.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

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

.mv-catch {
  background-image: linear-gradient(90deg, #ffecf1 1%, #ffffff 50%, #ffecf1);
  width: 600px;
  // height: 140px;
  border-radius: 10px;
  padding: 13px 60px;
  padding-right: 20px;
  box-sizing: border-box;
}

.mv-catch .target {
  display: inline-block;
  line-height: 1.3;
  font-size: 0.875rem;
  color: #fff;
  border-radius: 200px;
  background-color: var(--color_sem);
  padding: 3px 10px;
  margin-bottom: 5px;
}

.mv-catch .name {
  line-height: 1.3;
  font-size: 2rem;
  font-weight: 500;
  color: var(--color_sem);
}

.mv-catch .name .free {
  margin-left: 16px;
  border: 2px solid var(--color_sem);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  display: inline-block;
  font-size: 1.375rem;
  font-weight: 700;
}

.mv-catch .text {
  font-size: 0.9375rem;
  font-weight: 500;
}

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

.mv-info-center {
  width: 100%;
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.mv-info-list {
  width: 32.8%;
  background-color: #fff;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #E5E5E5;
  border-radius: 5px;
  border-top-left-radius: 0;
}

.mv-info-list .target {
  position: absolute;
  left: -1px;
  top: -24px;
  height: 24px;
  line-height: 24px;
  color: var(--color_sem);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0 10px;
  background-color: #fff;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  z-index: 1;
  display: inline-block;
  border: 1px solid #E5E5E5;
  border-bottom: none;
}

.mv-info-list a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 10px;
  padding-bottom: 40px;
  position: relative;
  box-sizing: border-box;
}

.mv-info-list.coming-soon a {
  pointer-events: none;
}

.mv-info-list.coming-soon .inner .mv-inner-info {
  width: 100%;
}

.mv-info-list.coming-soon .coming-soon-text {
  text-align: center;
  padding: 40px 0;
  font-weight: 700;
}

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

.mv-info-list .inner .thum {
  width: 80px;
}

.mv-info-list .inner .thum img {
  border-radius: 5px;
  margin-bottom: 10px;
}

.mv-info-list .inner .mv-inner-info {
  width: calc(100% - 90px);
  margin-left: auto;
}

.mv-info-list .inner .mv-inner-info .info-sem-head .txt03 {
  margin-top: 0px;
}

.mv-info-list .inner .sem-about-dl02 {
  width: 100%;
  display: block;
  padding: 5px 0;
}

.mv-info-list .inner .sem-about-dl02 dt {
  width: 100%;
  font-size: 0.875rem;
  text-align: left;
}

.mv-info-list .inner .sem-about-dl02 dd {
  margin-left: 0;
  width: 100%;
  font-size: 0.875rem;
  text-align: left;
}

.mv-info-list .inner .sem-about-dl02 + .sem-about-dl02 {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.mv-info-list .sem-about-dl dt {
  width: 59px;
}

.mv-info-list .sem-about-dl dd {
  text-align: left;
  font-size: 0.875rem;
  // width: calc(100% - 69px);
  width: 100%;
  line-height: 1.4;
  // padding-top: 6px;
}

.mv-info-list .link {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: url(../../images/common/ico-arw-white.svg) no-repeat 95% 50%;
  background-size: 20px;
  background-color: var(--color_sem);
  color: #fff;
  font-size: 0.875rem;
  padding: 4px 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.mv-info-list .info-sem-head .num {
  font-size: 0.750rem;
  position: absolute;
  left: 0;
  top: 0;
}

.mv-info-list .info-sem-head {
  padding-bottom: 4px;
  padding-left: 46px;
  position: relative;
}

.mv-info-list .inner .sem-about-dl02.type {
  display: flex;
}

.mv-info-list .inner .sem-about-dl02.type dt {
  width: 38px;
  font-size: 0.875rem;
}

.mv-info-list .inner .sem-about-dl02.type dd {
  width: calc(100% - 38px);
  margin-left: auto;
}

.mv-info-list .sem-about-dl {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
  display: block;
}

.mv-info-list.company .target ,
.mv-info-list.company .inner .sem-about-dl02 dt {
  color: var(--color_sem_blue);
}

.mv-info-list.company .info-sem-head .txt03 span {
  color: var(--color_sem_blue);
  border-color: var(--color_sem_blue);
}

.mv-info-list.company .sem-about-dl dt .theme,
.mv-info-list.company .link  {
  background-color: var(--color_sem_blue);
}
.mv-info-list.company .info-sem-head,
.mv-info-list.company .inner .sem-about-dl02 {
  border-color: var(--color_sem_blue);
}


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

.news {
  background: #ffffff; 
}

.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-seminar {
  background: url(../../images/lp/content-bg.png) no-repeat top center,
  url(../../images/seminar/sem-bg01.png) no-repeat top right;
  background-size: 100%, 100%;
  padding-top: 100px;
}

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

.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);
}

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

.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;
}

.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);
}

.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 dd .grid .txt16 {
  max-width: 290px;
}

.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;
}

.about-list .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;
}

.about-list .map.map-single {
  width: 100%;
  height: 250px;
  margin-top: 15px;
}

.about-list .map.map-single iframe {
  width: 100%;
  height: 100%;
}

.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);
  position: relative;
  border: 1px solid var(--color_sem);
}

.sem-btn.soon-btn .c-btn {
  position: relative;
}

.sem-btn.soon-btn a {
  pointer-events: none;
}

.sem-btn.soon-btn .soon-btn-txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 200px;
}

.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);
}

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

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

.lv:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  padding-bottom: 25%;
  background: url(../../images/seminar/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_sem);
  position: relative;
  z-index: 1;
}

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

.seminar-info-tab {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.seminar-info-tab li {
  width: 50%;
}

.seminar-info-tab li.active span {
  background: url(../../images/common/ico-arw-btm-white.svg) no-repeat 95% 50%;
  background-size: 14px;
  background-color: var(--color_sem);
  color: #fff;
  display: inline-block;
  width: 100%;
  padding: 19px 0;
  text-align: center;
  font-size: 1.125rem;
  border-radius: 10px;
  position: relative;
  border: 1px solid var(--color_sem);
}

.seminar-info-tab li.active span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 12px 16px 0 16px;
  border-color: var(--color_sem) transparent transparent;
  translate: -50% 100%;
}

.seminar-info-tab li a {
  background: url(../../images/common/ico-arw-btm-pink.svg) no-repeat 95% 50%;
  background-size: 14px;
  background-color: #fff;
  color: var(--color_sem);
  width: 100%;
  padding: 19px 0;
  display: inline-block;
  text-align: center;
  font-size: 1.125rem;
  border-radius: 10px;
  border: 1px solid var(--color_sem);
  transition: .3s;
  opacity: 1;
  position: relative;
}

.seminar-info-tab__catch {
  font-size: 1.25rem;
  font-weight: 500;
}

.seminar-info-tab li a:hover {
  background: url(../../images/common/ico-arw-btm-white.svg) no-repeat 95% 50%;
  background-size: 14px;
  background-color: var(--color_sem);
  color: #fff;
  opacity: 1;
}

.donwload-menu {
  display: flex;
  justify-content: center;
  gap: 1.5%;
  margin-bottom: 40px;
  padding: 24px 40px;
  background-color: #F9E7E9;
  border-radius: 10px;
}

.donwload-menu li {
  background: url(../../images/common/ico-arw-btm-pink.svg) no-repeat 95% 50%;
  background-size: 14px;
  background-color: #fff;
  color: var(--color_sem);
  display: inline-block;
  padding: 11px 0;
  text-align: center;
  font-size: 1.125rem;
  border-radius: 10px;
  position: relative;
  border: 1px solid var(--color_sem);
  /*width: 32.29%;*/
  width: 47.29%;
  border-radius: 200px;
  cursor: pointer;
}

.donwload-menu li.active {
  background: url(../../images/common/ico-arw-btm-white.svg) no-repeat 95% 50%;
  background-size: 14px;
  background-color: var(--color_sem);
  color: #fff;
}

.donwload-menu li:hover {
  background: url(../../images/common/ico-arw-btm-white.svg) no-repeat 95% 50%;
  background-size: 14px;
  background-color: var(--color_sem);
  color: #fff;
} 

.donwload-menu li.comingsoon {
  background: url(../../images/common/ico-arw-btm-white.svg) no-repeat 95% 50%;
  background-size: 14px;
  background-color: #8A8A8A;
  border-color: #8A8A8A;
  color: #fff;
  pointer-events: none;
}

.tabContent {
  display: none;
}

.tabContent.active {
  display: block;
}

.download {
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid #E5E5E5;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  padding: 30px 40px 40px;
}

.download .flex {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.download .flex .seminar-thum {
  width: 240px;
}

.download .flex .entry-list-box {
  margin-left: auto;
  width: calc(100% - 264px);
}

.download .flex .info-sem-head .txt03 {
  margin-left: 10px;
}

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

.download .sem-btn {
  padding-top: 0;
  padding-bottom: 0;
}

.sem-single-att__text {
  padding: 2px 0;
  font-weight: 700;
  padding-left: 37px;
  background: url(../../images/seminar/ico-att-pink.svg) no-repeat left center;
  background-size: 27px;
  margin-top: 15px;
}

.c-btn.c-btn-sem.ico-pdf span {
  padding-right: 28px;
  background: url(../../images/seminar/ico-pdf-sem.svg) no-repeat right center;
}

.information-inner-type02 {
  padding: 0 40px;
}

.h3-ttl {
  background-color: #FDF2F4;
  border-radius: 5px;
  padding: 11px 20px;
  margin-bottom: 24px;
  color: var(--color_sem);
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 15px;
}

.about-list {
  display: flex;
  gap: 44px;
  border-bottom: 1px dashed var(--color_sem);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.about-list dt {
  font-weight: 700;
  line-height: 1.4;
  width: 67px;
  text-align: right;
}

.about-list dd {
  margin-left: auto;
  width: calc(100% - 110px);
  line-height: 1.4;
}

.about-list dd p + p {
  margin-top: 8px;
}

body.sub .c-center-inner.single {
  padding-left: 160px;
  padding-right: 160px;
}

.about-list-theme {
  display: flex;
  margin-bottom: 14px;
  gap: 30px;
}

.about-list-theme dt {
  width: 100px;
}

.about-list-theme dt span {
  display: inline-block;
  border-radius: 200px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  width: 100px;
  padding: 2px 10px;
  box-sizing: border-box;
}

.about-list-theme dd {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color_sem);
  line-height: 1.4;
}

.c-center-inner.single .info-sem-head {
  padding-bottom: 0;
  margin-bottom: 30px;
  border-bottom: none;
}
.c-center-inner.single .info-sem-head .num + .txt02 {
  font-size: 1.5rem;
}

.c-center-inner.single .info-sem-head .num {
  width: 61px;
  height: 61px;
  line-height: 61px;
  font-size: 1.125rem;
}

.c-center-inner.single .info-sem-head .txt03 ,
.c-center-inner.single .info-sem-head .txt03 span {
  font-size: 1.75rem;
}

.c-center-inner.single .info-sem-head .txt02 span {
  width: 37px;
  height: 37px;
  line-height: 37px;
  font-size: 1.5rem;
}

.seminar-single-btn.sem-btn .c-btn {
  max-width: 600px;
}

.seminar-dashed-list {
  padding: 0 0px;
}

.seminar-dashed-list li {
  border-bottom: 1px dashed var(--color_sem);
  padding: 8px 0;
  font-size: 1.125rem;
  font-weight: 500;
}

.sem-teach-body {
  margin-top: 42px;
}

.sem-teach-body h3 {
  color: var(--color_sem);
  font-size: 1.375rem;
  font-weight: 700;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: 20px;
}

.information.type-blue .sem-teach .info-bottom .title span {
  background-color: #6C81B8;
}

.information.type-blue .seminar-dashed-list li {
  border-color: #6C81B8;
}

.information.type-blue .sem-teach .info-head .name,
.information.type-blue .sem-teach-body h3 {
  color: #6C81B8;
}

.sem-teach-body h3:after {
  background: #E4E4E4;
  border-radius: 100%;
  content: "";
  flex-grow: 1;
  height: 1px;
  margin-left: 20px;
}

.sem-teach {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: flex-start;
  align-items: flex-start;
  margin-top: 35px;
  margin: 0 auto;
  border-bottom: 1px dashed #E4E4E4;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.sem-teach .thum {
  width: 160px;
  border-radius: 10px;
  overflow: hidden;
}

.sem-teach .thum img {
  width: 100%;
}

.sem-teach .info {
  margin-left: auto;
  width: calc(100% - 180px);
}

.sem-teach .info-head {
  margin-bottom: 10px;
}

.sem-teach .info-head .name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color_sem);
  margin-bottom: 8px;
}

.sem-teach .info-head .name .en {
  font-size: 0.875rem;
  margin-left: 20px;
  color: #333;
}

.sem-teach .info-head .degree {
  font-size: 1rem;
  font-weight: 500;
}

.sem-teach .info-bottom .title {
  font-size: 1rem;
  margin-bottom: 8px;
}

.sem-teach .info-bottom .title span {
  display: inline-block;
  margin-right: 10px;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 1px 20px;
  line-height: 1.3;
  background-color: var(--color_sem);
  border-radius: 100px;
}

.dashed-inner-list {
  padding-left: 30px;
  padding-top: 8px;
}

.dashed-inner-list li {
  border-bottom: 1px dashed #ccc;
  padding: 5px 20px;
  margin-bottom: 6px;
  position: relative;
}

.dashed-inner-list li:before {
  content: '';
  position: absolute;
  left: 7px;
  top: 18px;
  width: 3px;
  height: 3px;
  border-radius: 4px;
  background: #333;
  font-size: 1rem;
  color: var(--color_sem);
}

.dashed-inner-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.back-archive-btn.sem-btn {
  padding-top: 40px;
  border-top: 1px solid rgba(209, 63, 96, 0.2);
  margin-top: 40px;
}

.back-archive-btn.sem-btn .c-btn.c-btn-sem {
  max-width: 600px;
}

.back-archive-btn.sem-btn .c-btn.c-btn-sem .c-btn-inner {
  padding: 20px 14px 19px;
}

.download.type-blue .info-sem-head .txt03 span {
  border-color: var(--color_sem_blue);
  color: var(--color_sem_blue);
}

.download.type-blue .info-sem-head,
.download.type-blue .sem-about-dl02,
.download.type-blue .sem-about-dl {
  border-color: var(--color_sem_blue);
}

.download.type-blue .c-btn .c-btn-inner {
  color: var(--color_sem_blue);
  border-color: var(--color_sem_blue);
  background-image: linear-gradient(90deg, #F2F6FF, #ffffff 50%, #F2F6FF);
}

.download.type-blue .sem-single-att__text {
  background: url(../../images/seminar/ico-att-pink-blue.svg) no-repeat left center;
  background-size: 27px;
}

.download.type-blue .c-btn.c-btn-sem.ico-pdf span {
  background: url(../../images/seminar/ico-pdf-sem-blue.svg) no-repeat right center;
}

.download.type-blue .sem-btn .c-btn a.c-btn02-inner {
  background-color: var(--color_sem_blue);
  border-color: var(--color_sem_blue);
}

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

.theme-entry-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: flex-start;
  align-items: flex-start;
  margin-bottom: 23px;
}

.theme-entry-list dt {
  width: 100px;
  background: #D13F60;
  border-radius: 100px;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 3px;
}

.theme-entry-list.type-blue dt {
  background-color: #6C81B8;
}

.theme-entry-list dd {
  margin-left: auto;
  width: calc(100% - 120px);
}

.theme-entry-list dd p {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.youtube-area {
  margin-top: 40px;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.c-youtube {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.c-youtube iframe {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.download-link-area {
  margin: 24px 0;
  text-align: center;
}

.download-link-area p {
  border: 1px solid #D13F60;
  width: 100px;
  color: #D13F60;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  border-radius: 100px;
  display: inline-block;
}

.download-link-area a {
  display: inline-block;
  padding: 25px 20px;
  width: 600px;
  text-align: center;
  font-weight: 700;
  color: var(--color_sem);
  border: 1px solid #D13F60;
  border-radius: 200px;
  background: url(../../images/seminar/seminar-archive/ico-pdf.svg) no-repeat 95% 50%;
  background-repeat: no-repeat;
  background-size: 19px auto;
}

.h2-ttl {
  font-size: 1.75rem;
  font-weight: 700;
  padding-bottom: 7px;
  position: relative;
  margin-bottom: 20px;
  color: var(--color_sem);
}

.h2-ttl:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color_sem);
  border-radius: 4px;
}

.information.seminar-type-blue .theme-entry-list dt,
.information.seminar-type-blue .h3-ttl {
  background-color: #F2F6FF;
}

.information.seminar-type-blue .theme-entry-list dt,
.information.seminar-type-blue .h3-ttl {
  color: var(--color_sem_blue);
}

.information.seminar-type-blue .sem-teach .info-bottom .title span,
.information.seminar-type-blue .h2-ttl:after {
  background-color: var(--color_sem_blue);
}

.information.seminar-type-blue .seminar-dashed-list li {
  border-color: var(--color_sem_blue);
}

.information.seminar-type-blue .sem-teach-body h3, 
.information.seminar-type-blue .sem-teach .info-head .name {
  color: var(--color_sem_blue);
}

/*よくあるご質問*/
.faq-head-txt {
  margin: 24px 0 28px;
}

.faqArea {
  margin-bottom: 20px;
  border: 1px solid #D24767;
  border-radius: 10px;
  overflow: hidden;
}

.faqArea.last {
  margin-bottom: 30px;
}

.question {
  padding: 14px 56px;
  position: relative;
  box-sizing: border-box;
  background-color: rgba(210, 71, 103, .1);
}

.question h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  width: 100%;
  padding-left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.toggle {
  background-color: #fff;
  padding: 15px 56px;
  width: 100%;
  display: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.question:before {
  content: '';
  background: url(../../images/seminar/faq-plus.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  width: 26px;
  height: 26px;
  right: 10px;
  top: 50%;
  margin-top: -13px;
  position: absolute;
}

.question.open:before {
  content: '';
  background: url(../../images/seminar/faq-minus.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  width: 26px;
  height: 26px;
  right: 10px;
  top: 50%;
  margin-top: -13px;
  position: absolute;
}

.seminar-type-blue .h3-ttl,
.seminar-type-blue .info-sem-head .txt03 span,
.seminar-type-blue .about-list-theme dd,
.seminar-type-blue .sem-teach-body h3,
.seminar-type-blue .sem-teach .info-head .name {
  color: var(--color_sem_blue);
}
.seminar-type-blue .info-sem-head,
.seminar-type-blue .info-sem-head .txt03 span,
.seminar-type-blue .about-list,
.seminar-type-blue .sem-btn .c-btn a.c-btn02-inner {
  border-color: var(--color_sem_blue);
}

.seminar-type-blue .h3-ttl {
  background-color: #F2F6FF;
}
.seminar-type-blue .about-list-theme dt span,
.seminar-type-blue .sem-btn .c-btn a.c-btn02-inner,
.seminar-type-blue .sem-teach .info-bottom .title span {
  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);
}

.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.c-btn02-inner {
  color: #fff;
}

/*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_sem);
}

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

.breadcrumbs li.arrow {
  width: 20px;
  height: 20px;
  position: relative;
  color: var(--color_sem);
  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: 1200px){
  #header {
    padding: 10px 30px;
  }
  .l-header-nav__items__sem.active .l-header-nav__items__child.is-open: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;
  }
}