.font-yugothic {
  font-family: YuGothic, "Yu Gothic", sans-serif !important;
}
ul {
  list-style-type: none !important;
}
a {
  color: currentColor;
  text-decoration: none;
  transition: 0.2s;
}
a:hover {
  opacity: 0.5;
}
/** Display */
.d-none {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .d-none-sp {
    display: none !important;
  }
}
/** End Display */
/* IMAGE */
img {
  object-fit: cover;
  max-width: 100%;
}
img.svg-img {
  object-fit: contain;
}
img.base-img {
  display: block;
  width: 100%;
}
img.base-img-auto {
  display: block;
  max-width: 100%;
}
img.base-img-auto-center {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
/* CONTAINER */
.l-container {
  width: 95%;
  margin: auto;
}
.l-container--full {
  width: 100%;
  margin: auto;
}
.l-container--800 {
  max-width: 800px;
}
.l-container--840 {
  max-width: 840px;
}
.l-container--1000 {
  max-width: 1000px;
}
@media screen and (max-width: 1023px) {
  .l-container {
    width: 100%;
    padding: 0 20px;
  }
}
/* ULTILITIES */
.u-border {
  border: 1px solid #cccccc;
}
.u-cl-blue {
  color: #113285;
}
/* TEXT */
.u-textcenter {
  text-align: center;
}
.u-underline-blue {
  border-bottom: 1px dashed #113285;
}
/* FONT SIZE */
.fs--16 {
  font-size: 16px !important;
}
/* FONT WEIGHT */
.fw--500 {
  font-weight: 500 !important;
}
.fw--600 {
  font-weight: 600 !important;
}
.fw--700 {
  font-weight: 700 !important;
}
/* LINE HEIGHT */
.lh--30 {
  line-height: 30px !important;
}
.lh--36 {
  line-height: 36px !important;
}
/* LETTER SPACING */
.ls--0 {
  letter-spacing: 0 !important;
}
@media screen and (max-width: 767px) {
  .fs--16 {
    font-size: 13px !important;
  }
  .lh--30,
  .lh--36 {
    line-height: 1.6 !important;
  }
}
/* TITLE */
.c-title1 .big-text {
  display: block;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0;
  margin-bottom: 16px;
}
.c-title1 .big-text small {
  font-size: 18px;
  color: #111;
}
.c-title1 .small-text {
  display: block;
  font-weight: 500;
  font-size: 11px;
  color: #cccccc;
}
.c-title1.md .big-text {
  font-size: 42px;
}
@media screen and (max-width: 767px) {
  .c-title1 .big-text,
  .c-title1.md .big-text {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .c-title1 .big-text small {
    font-size: 13px;
  }
}
/** ================================================================= */
/** List */
.c-listwrapper {
  width: 100%;
  overflow: hidden;
}
.c-list {
  display: flex;
  flex-wrap: wrap;
}
.c-list--center {
  justify-content: center;
}
/** end column */
.c-list.col2 .item {
  width: 50%;
}
.c-list.col3 .item {
  width: 33.333333333%;
}
.c-list.col4 .item {
  width: 25%;
}
.c-list.col5 .item {
  width: 20%;
}
/** end column */

@media screen and (max-width: 1023px) {
  /** column */
  .c-list.col3 .item {
    width: 50%;
  }
  .c-list.col4 .item {
    width: 50%;
  }
  .c-list.col5 .item {
    width: 33.3333333333%;
  }
  .c-list.col1-tab .item {
    width: 100%;
  }
  .c-list.col2-tab .item {
    width: 50%;
  }
  .c-list.col3-tab .item {
    width: 33.33333333333333%;
  }
  .c-list.col4-tab .item {
    width: 25%;
  }
  .c-list.col5-tab .item {
    width: 20%;
  }
  /** end column */
}
@media screen and (max-width: 767px) {
  /** column */
  .c-list.col2 .item,
  .c-list.col3 .item,
  .c-list.col4 .item,
  .c-list.col5 .item {
    width: 100%;
  }
  .c-list.col2-sp .item {
    width: 50%;
  }
  .c-list.col3-sp .item {
    width: 33.33333333333333%;
  }
  .c-list.col4-sp .item {
    width: 25%;
  }
  .c-list.col5-sp .item {
    width: 20%;
  }
  /** end column */
}
/** end List */
/** ================================================================= */
/* ICON */
.c-icon {
  position: relative;
}
.c-icon.before::before,
.c-icon.after::after {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}
/** ================================================================= */
/* HEADING */
.c-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0;
  color: #113285;
  border-bottom: 1px solid #cccccc;
  padding-left: 24px;
}
.c-heading small {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0;
  color: #111111;
  margin-left: 18px;
}
.c-heading.before.icon-chevron-blue::before {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(./../images/common/ic-chevron-blue.png);
  width: 19px;
  height: 19px;
}
@media screen and (max-width: 1023px) {
  .c-heading small {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-heading {
    font-size: 18px;
  }
  .c-heading small {
    font-size: 13px;
  }
  .c-heading.before.icon-chevron-blue::before {
    width: 15px;
    height: 15px;
  }
}
/** ================================================================= */
/* DATA LIST */
.c-dl dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.c-dl dt,
.c-dl dd {
  border-bottom: 1px solid #111;
  line-height: 26px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 22px;
}
.c-dl dt {
  width: 140px;
  flex-shrink: 0;
  font-weight: 700;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
.c-dl.dt-240 dt {
  width: 240px;
}
.c-dl.dt-340 dt {
  width: 340px;
}
.c-dl.u--title-blue dt {
  color: #113285;
}
.c-dl.u--title-blueborder dt {
  border-bottom: 1px solid #113285;
}
.c-dl.gap20 dt {
  margin-right: 20px;
}
.c-dl dd {
  flex: 1;
  word-break: break-all;
  margin: 0;
}
.c-dl .mh-175 {
  min-height: 175px;
}
.c-dl .mh-227 {
  min-height: 227px;
}
@media screen and (max-width: 1023px) {
  .c-dl .mh-175,
  .c-dl .mh-227 {
    min-height: unset;
  }
  .c-dl.dt-240 dt,
  .c-dl.dt-340 dt {
    width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .c-dl dt,
  .c-dl dd {
    line-height: 1.6;
    font-size: 12px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .c-dl dd {
    padding-right: 0;
  }
  .c-dl dt,
  .c-dl.dt-240 dt,
  .c-dl.dt-340 dt {
    width: 90px;
  }
  .c-dl.gap20 dt {
    margin-right: 10px;
  }
}
/** ================================================================= */
.youtube-section {
  padding: 100px 0;
}
.youtube-iframe {
  position: relative;
  padding-top: 56%;
}
.youtube-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .youtube-section {
    padding: 60px 0;
  }
}
/** ================================================================= */
/** ================================================================= */
/** ================================================================= */
/** ================================================================= */
