@charset "UTF-8";
@font-face {
  font-family: "yugothic-db";
  font-style: normal;
  font-weight: 600;
  src: url(./../fonts/yumindb.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
body {
  color: #111111;
  font-family: YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}
body.is-fixed {
  overflow: hidden;
  position: fixed;
  width: 100vw;
}
.font-yugothic {
  font-family: YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
}
ul {
  list-style-type: none;
}
a {
  color: currentColor;
  text-decoration: none;
  transition: 0.2s;
}
a:hover {
  color: currentColor;
  opacity: 0.5;
}
.mt20 {
  margin-top: 20px;
}
.mt60 {
  margin-top: 60px;
}
.pc768{
	display: block;
}
/* ======================================================== */
/* ULTILITIES */
.u-cl--blue {
  color: #1843bc;
}
.u-text--bg.blue {
  background-color: #1843bc;
}
.u-radius--10 {
  border-radius: 10px;
}
.d-inlineblock {
  display: inline-block;
}
.d-block-sp {
  display: none !important;
}
.d-inlineflex-sp,
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
@media screen and (max-width: 1023px) {
  .d-none-tab {
    display: none !important;
  }
  .d-block-tab {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
	.pc768{
	display: none;
}
  .d-block-sp {
    display: block !important;
  }
  .d-inlineflex-sp {
    display: inline-flex !important;
  }
  .d-none-sp {
    display: none !important;
  }
  .d-inlineblock-sp {
    display: inline-block !important;
  }
}
/* ======================================================== */
/* CONTAINER */
.l-container {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.l-container--full {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.l-container--1660 {
  max-width: 1660px;
}
.l-container--1610 {
  max-width: 1610px;
}
.l-container--1600 {
  max-width: 1600px;
}
.l-container--1400 {
  max-width: 1400px;
}
.l-container--1360 {
  max-width: 1360px;
}
.l-container--1280 {
  max-width: 1280px;
}
.l-container--1200 {
  max-width: 1200px;
}
.l-container--1110 {
  max-width: 1110px;
}
.l-container--1100 {
  max-width: 1100px;
}
.l-container--1040 {
  max-width: 1040px;
}
.l-container--1020 {
  max-width: 1020px;
}
.l-container--1000 {
  max-width: 1000px;
}
.l-container--960 {
  max-width: 960px;
}
.l-container--940 {
  max-width: 940px;
}
.l-container--920 {
  max-width: 920px;
}
.l-container--900 {
  max-width: 900px;
}
.l-container--662 {
  max-width: 662px;
}
@media screen and (max-width: 767px) {
  .l-container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* ======================================================== */
/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 120px;
  padding-left: 70px;
  padding-right: 90px;
  color: #fff;
  transition: 0.4s;
}
.header.header-2 {
  color: #111;
  background-color: #fff;
}
.pt-header {
  padding-top: 120px;
}
header.view {
  background-color: #04083b;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  height: 90px;
}
.header-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: inherit;
}
.header-group {
  display: flex;
  align-items: center;
}
.header-logo {
  width: 324px;
}
.header .header-mainnav {
  margin-right: 30px;
}
.header .header-mainnav a {
  padding: 10px 45px;
}
.header .c-btn-header {
  width: 220px;
  padding: 9px 10px;
}
/* TRIGGER */
.menu-trigger {
  display: none;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  color: #fff;
  z-index: 1001;
  cursor: pointer;
  margin-left: 40px;
}
.menu-trigger div {
  height: 30px;
  width: 40px;
  position: relative;
}
.menu-trigger span {
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  left: 0;
  transition: 0.2s;
}
.menu-trigger span:nth-child(1) {
  top: 0;
}
.menu-trigger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menu-trigger span:nth-child(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}
.menu-trigger.active span:nth-child(2) {
  left: 150%;
  opacity: 0;
}
.menu-trigger.active span:nth-child(3) {
  bottom: 50%;
  transform: rotate(-45deg) translateY(50%);
}
/* MENU TOGGLE */
.menu-toggle {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  background-color: #04083b;
  transition: 0.4s ease-in-out;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.menu-toggle::-webkit-scrollbar {
  display: none;
}
.menu-toggle.active {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}
.menu-toggle__inner {
  padding: 120px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}
.menu-toggle .c-btn-header {
  margin-bottom: 30px;
}

@media screen and (max-width: 1300px) {
  .header {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 1250px) {
  .menu-trigger {
    display: flex;
  }
  .header .header-mainnav {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  header.header2 .header-container .c-info {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 80px;
    padding-left: 20px;
    padding-right: 0;
  }
  .pt-header {
    padding-top: 80px;
  }
  header.view {
    height: 60px;
  }
  /* .header-logo {
    width: 100px;
  } */
  header .header-group > .c-info {
    display: none;
  }
  .header .c-btn-header {
    display: none;
  }
  .header .menu-toggle.active .c-btn-header{
    display: inline-flex;
  }
  .menu-trigger {
    width: 80px;
  }
}
/* ======================================================== */
/* ======================================================== */
/* MAIN VISUAL */
.c-mainvisual {
  position: relative;
}
.c-mainvisual__imgs,
.c-mainvisual__imgs .img,
.c-mainvisual .overlay1,
.c-mainvisual .overlay2,
.c-mainvisual .overlay3 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.c-mainvisual__imgs .img {
  object-fit: cover;
}
.c-mainvisual .overlay1 {
  z-index: 2;
  background-image: linear-gradient(to bottom, #1843bc, #010217);
  opacity: 0.6;
}
.c-mainvisual .overlay2 {
  z-index: 3;
}
.c-mainvisual .overlay2::before,
.c-mainvisual .overlay2::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  background-color: #04083b;
  width: 490px;
}
.c-mainvisual .overlay2::before {
  height: 48%;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  left: 0;
}
.c-mainvisual .overlay2::after {
  right: 0;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
/* PADDING EDGE */
.c-mainvisual .padding-b {
  padding-bottom: 140px;
}
.c-mainvisual .padding-lr {
  padding-left: 260px;
  padding-right: 260px;
}
/* OVERLAY 3 */
.c-mainvisual .overlay3 {
  z-index: 3;
}
.c-mainvisual .overlay3::before,
.c-mainvisual .overlay3::after {
  content: "";
  position: absolute;
  display: block;
  opacity: 0.3;
}
.c-mainvisual .overlay3::before {
  height: calc(100% - 120px - 140px);
  width: 100%;
  top: 120px;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.c-mainvisual .overlay3::after {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 260px * 2);
  height: 100%;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
/* TEXT */
.c-mainvisual__text {
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.c-mainvisual__text .big-text {
  font-weight: 700;
  font-size: 110px;
  letter-spacing: 0;
  line-height: 130px;
  margin-bottom: 30px;
}
.c-mainvisual__text .small-text {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0;
}
.c-mainvisual__text .small-text .u-text--bg.blue {
  padding: 5px 2px;
}
/* ========================================= */
/* SCROLLDOWN */
.c-scrolldown {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 100;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #fff;
}
.c-scrolldown:hover {
  color: #fff;
}
.c-scrolldown-bar {
  width: 1px;
  height: 80px;
  position: relative;
  background-color: #191970;
  margin-top: 10px;
}
.c-scrolldown-bar::after {
  content: "";
  width: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  -webkit-animation: scrolldown 3s infinite ease-in-out;
  animation: scrolldown 3s infinite ease-in-out;
}
@-webkit-keyframes scrolldown {
  0% {
    top: 0;
    height: 0;
  }
  50% {
    bottom: 0;
    height: 100%;
  }
  100% {
    bottom: 0;
    height: 0;
  }
}
@keyframes scrolldown {
  0% {
    top: 0;
    height: 0;
  }
  50% {
    bottom: 0;
    height: 100%;
  }
  100% {
    bottom: 0;
    height: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-scrolldown {
    display: none;
  }
}
/* ======================================================== */
/* LOGO  */
.c-logo img,
.c-logo a {
  display: block;
  width: 100%;
}
/* ======================================================== */
/* LINK */
.c-link1 {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0;
}
.c-link1 img {
  display: inline-block;
  width: 68px;
  margin-left: 10px;
}
.c-link1.md {
  font-size: 20px;
}
.c-link1.reverse img.icon2 {
  width: 38px;
  margin-left: 0;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .c-link1,
  .c-link1.md {
    font-size: 16px;
  }
  .c-link1 img {
    width: 60px;
    margin-left: 10px;
  }
}
/* ======================================================== */
/* BUTTON HEADER */
.c-btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  transition: 0.4s;
}
.c-btn-header--blue {
  background-color: #04083b;
  color: #fff;
  border-color: #04083b;
}
.c-btn-header:hover {
  opacity: 1;
}
.c-btn-header.c-icon.before.icon-mail::before {
  width: 22px;
  height: 18px;
  margin-right: 10px;
  background-image: url(./../img/common/ic-mail-white.png);
}
.c-btn-header.hover-whiteblue:hover {
  border-color: #1843bc;
  background-color: #fff;
  color: #1843bc;
}
.c-btn-header.hover-whiteblue.c-icon.before.icon-mail:hover::before {
  background-image: url(./../img/common/ic-mail-blue.png);
}
/* ======================================================== */
/* =============================================================== */
/* LIST  */
.c-listwrapper {
  width: 100%;
  overflow: hidden;
}
.c-list {
  display: flex;
  flex-wrap: wrap;
}
.c-list.nogap .item {
  margin: 0 !important;
}
.c-list.center {
  justify-content: center;
}
/* COL 1 TAB */
@media screen and (max-width: 1023px) {
  .c-list.col1-tab .item {
    width: 100% !important;
  }
}
/* COL 2 */
.c-list.col2 .item {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .c-list.col2 .item {
    width: 1000%;
  }
}
/* COL 3 */
.c-list.col3 .item {
  width: 33.333333333%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .c-list.col3 .item {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .c-list.col3 .item {
    width: 100%;
  }
}
/* COL 4 */
.c-list.col4 .item {
  width: 25%;
}
@media screen and (max-width: 1023px) {
  .c-list.col4 .item {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .c-list.col4 .item {
    width: 100%;
  }
}
/* GAP  */
.c-list.gap20 {
  margin: 0 -10px;
}
.c-list.gap20 .item {
  padding: 0 10px;
}
.c-list.gap40 {
  margin: 0 -20px;
}
.c-list.gap40 .item {
  padding: 0 20px;
}
/* GAP BOT */
.c-list.gapbot20 {
  margin-bottom: -20px;
}
.c-list.gapbot20 .item {
  margin-bottom: 20px;
}
/* ======================================================== */
/* NAV */
/* NAV 1 */
.c-nav1 {
  display: flex;
}
.c-nav1 li {
  position: relative;
}
.c-nav1 li:not(:first-child):before {
  content: "";
  border-left: 1px dashed currentColor;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.c-nav1 a {
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  color: currentColor;
  position: relative;
}
/* NAV 1 VERTICAL */
.c-nav1--vertical {
  display: block;
  text-align: center;
}
.c-nav1--vertical li {
  margin-bottom: 30px;
}
.c-nav1--vertical li:not(:first-child):before {
  content: none;
}
.c-nav1--vertical a {
  display: inline-flex;
  align-items: center;
  font-size: 25px;
}

@media screen and (max-width: 767px) {
  /* NAV 1 VERTICAL */
  .c-nav1--vertical li {
    margin-bottom: 20px;
  }
  .c-nav1--vertical a strong {
    font-size: 25px;
    margin-bottom: 0;
  }
  .c-nav1--vertical a {
    font-size: 18px;
  }
}
/* ======================================================== */
/* NAV 2 */
.c-nav2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.c-nav2 .item {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 2;
  display: flex;
  align-items: center;
  position: relative;
}
.c-nav2 .item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 16px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.c-nav2 a {
  display: block;
}
.c-nav2 a:hover {
  opacity: 1;
  color: #1843bc;
}
/* ======================================================== */
/* BTN */
.c-btnlist1 {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}
.c-btnlist1.center {
  justify-content: center;
}
.c-btnlist1 .item {
  margin: 10px;
}
.c-btnlist1.big .item {
  min-width: 320px;
  font-size: 18px;
  padding: 28px 30px;
}
.c-btnlist1.md .item {
  min-width: 200px;
  font-size: 18px;
  padding: 15px;
}
.c-btnlist1.gap2 {
  margin: -15px;
}
.c-btnlist1.gap2 .item {
  margin: 15px;
}
.c-btn1 {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  color: #111111;
  border: 1px solid #111111;
  background-color: #fff;
  display: inline-block;
  text-align: center;
  padding: 19px 8px;
  min-width: 180px;
}
.c-btn1:hover {
  background-color: #111;
  color: #fff;
  opacity: 1;
}

.c-btn1.c-icon-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-btn1.c-icon-arrow::after {
  content: "";
}
@media screen and (max-width: 1023px) {
  .c-btnlist1,
  .c-btnlist1.gap2,
  .c-btnlist1.md {
    margin: -10px 0;
    justify-content: space-between;
  }
  .c-btnlist1 .item,
  .c-btnlist1.gap2 .item,
  .c-btnlist1.md .item {
    width: 48%;
    margin: 10px 0;
    min-width: unset;
  }
}
@media screen and (max-width: 767px) {
  .c-btn1 {
    font-size: 14px;
    padding: 12px;
    min-width: unset;
  }
  .c-btnlist1.big .item {
    min-width: unset;
    font-size: 16px;
    padding: 20px;
  }
  .c-btnlist1,
  .c-btnlist1.gap2,
  .c-btnlist1.md {
    margin: 0;
  }
  .c-btnlist1 .item,
  .c-btnlist1.gap2 .item,
  .c-btnlist1.md .item {
    margin: 5px 0;
    width: 100%;
  }
}
/* BTN WRAPPER */
.c-btn-wrapper {
  margin-top: 60px;
}
.c-btn-wrapper .btn {
  margin: 10px;
}
@media screen and (max-width: 767px) {
  .c-btn-wrapper {
    margin-top: 25px;
  }
  .c-btn-wrapper .btn {
    margin: 5px 0;
  }
}
/* BTN 2 */
.c-btn2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  padding: 16px 10px;
  background-color: #111111;
  border: 2px solid #111;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0;
  border-radius: 30px;
  transition: 0.4s;
}
.c-btn2.small {
  max-width: 280px;
  padding: 11px;
  font-size: 18px;
}
.c-btn2.no-radius {
  border-radius: unset;
}
.c-btn2--rect {
  border-radius: 0;
}
.c-btn2--whiteborder {
  border: 2px solid #fff;
}
.c-btn2::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 10px;
  transition: 0.4s;
}
.c-btn2.icon1::before {
  background-image: url(./../img/common/ic-mail2-white.svg);
  width: 24px;
  height: 24px;
  margin-bottom: 6px;
}
.c-btn2.icon1:hover::before {
  background-image: url(./../img/common/ic-mail2-black.svg);
}
.c-btn2.icon2::before {
  background-image: url(./../img/common/ic-mail-white.svg);
  width: 24px;
  height: 24px;
}
.c-btn2.icon-map::before {
  background-image: url(./../img/common/ic-map-white.svg);
  width: 15px;
  height: 20px;
}
.c-btn2.icon-map:hover::before {
  background-image: url(./../img/common/ic-map-black.svg);
}
.c-btn2.icon-file::before {
  background-image: url(./../img/common/ic-file-white.svg);
  width: 16px;
  height: 20px;
}
.c-btn2.icon-file:hover::before {
  background-image: url(./../img/common/ic-file-black.svg);
}
.c-btn2.icon-youtube::before {
  background-image: url(./../img/common/ic-youtube-white.svg);
  width: 37px;
  height: 26px;
}
.c-btn2.icon-youtube:hover::before {
  background-image: url(./../img/common/ic-youtube-black.svg);
}
.c-btn2.icon-instagram::before {
  background-image: url(./../img/common/ic-instagram-white.svg);
  width: 26px;
  height: 26px;
}
.c-btn2.icon-instagram:hover::before {
  background-image: url(./../img/common/ic-instagram-black.svg);
}
.c-btn2.c-btn2--pink {
  background-color: #cd4187;
  border-color: #cd4187;
  color: #fff;
}
.c-btn2.c-btn2--pink.icon-file:hover::before {
  background-image: url(./../img/common/ic-file-black.svg);
}
.c-btn2:hover {
  background-color: #fff;
  color: #111;
  opacity: 1;
}
.c-btn2.hover--pink:hover {
  border-color: #dcc2ff;
  background-color: #dcc2ff;
  color: #111;
}
.c-btn2.hover--pink.icon-map:hover::before {
  background-image: url(./../img/common/ic-map-black.svg);
}
.c-btn2.hover--green:hover {
  border-color: #00ae96;
  background-color: #00ae96;
  color: #fff;
}
.c-btn2.hover--green.icon-map:hover::before {
  background-image: url(./../img/common/ic-map-white.svg);
}
.c-btn2.hover--pink2:hover {
  border-color: #ffbeda;
  background-color: #ffbeda;
  color: #111;
}
@media screen and (max-width: 767px) {
  .c-btn2,
  .c-btn2.small {
    max-width: unset;
    font-size: 16px;
  }
}
/* ======================================================== */
/* LIST 1 */
.c-list1.col2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-list1.col2 li {
  width: calc((100% - 40px) / 2);
}
.c-list1 .title {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0;
  padding: 5px;
  position: relative;
}
.c-list1.col2 li:nth-child(odd) .title::before,
.c-list1.col2 li:nth-child(even) .title::after {
  content: "";
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
}
.c-list1.col2.one-item li:nth-child(odd) .title::before,
.c-list1.col2.one-item li:nth-child(even) .title::after {
  content: unset;
}
.c-list1.col2 li:nth-child(odd) .title::before {
  right: -20px;
}
.c-list1.col2 li:nth-child(even) .title::after {
  left: -20px;
}
.c-list1.title-green .title {
  background-color: #0c3d28;
  color: #fff;
}
.c-list1.col2.title-green li:nth-child(odd) .title::before,
.c-list1.col2.title-green li:nth-child(even) .title::after {
  background-color: #0c3d28;
}
.c-list1.title-blue .title {
  background-color: #182f6b;
  color: #fff;
}
.c-list1.col2.title-blue li:nth-child(odd) .title::before,
.c-list1.col2.title-blue li:nth-child(even) .title::after {
  background-color: #182f6b;
}
.c-list1.title-orange .title {
  background-color: #d67100;
  color: #fff;
}
.c-list1.col2.title-orange li:nth-child(odd) .title::before,
.c-list1.col2.title-orange li:nth-child(even) .title::after {
  background-color: #d67100;
}
.c-list1.title-red .title {
  background-color: #970808;
  color: #fff;
}
.c-list1.col2.title-red li:nth-child(odd) .title::before,
.c-list1.col2.title-red li:nth-child(even) .title::after {
  background-color: #970808;
}
.c-list1 .content {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0;
  border-bottom: 1px solid #707070;
  padding: 26px 0;
}
.c-list1 .content.md {
  font-size: 17px;
  letter-spacing: -0.01em;
}
/* ======================================================== */
/* IMAGE */
img {
  object-fit: cover;
}
img.svg-img {
  object-fit: contain;
}
img.base-img {
  display: block;
  max-width: 100%;
  object-fit: contain;
}
img.center {
  margin-left: auto;
  margin-right: auto;
}
.c-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.c-bg--overlay::after {
  content: "";
  background-color: #111111;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: 0.6s;
}
.c-bg--overlay.opa25::after {
  opacity: 0.25;
}
.c-bg--overlay.opa35::after {
  opacity: 0.35;
}

.c-imgwrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.c-imgwrapper.as35 {
  padding-top: 35%;
}
.c-imgwrapper.as38 {
  padding-top: 38%;
}
.c-imgwrapper.as58 {
  padding-top: 58.5%;
}
.c-imgwrapper.as61_5 {
  padding-top: 61.5%;
}

.c-imgwrapper.as67 {
  padding-top: 67%;
}
.c-imgwrapper.as75 {
  padding-top: 75%;
}
.c-imgwrapper.as78 {
  padding-top: 78.5%;
}
.c-imgwrapper.as100 {
  padding-top: 100%;
}
.c-imgwrapper.as94 {
  padding-top: 94%;
}
.c-imgwrapper .img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.6s;
}
.c-imgwrapper--overlay::after {
  content: "";
  background-color: #111111;
  opacity: 0.26;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.c-imgwrapper__trigger:hover .img {
  transform: scale(1.2);
}
/* ======================================================== */
/* TEXT */
.text-center {
  text-align: center;
}
.fw--500 {
  font-weight: 500;
}
.fw--700 {
  font-weight: 700;
}
.fw--400 {
  font-weight: 400;
}
.fs--16 {
  font-size: 16px;
  letter-spacing: 0;
}
.fs--18 {
  font-size: 18px;
  letter-spacing: 0;
}
.lh--32 {
  line-height: 32px;
}
.lh--34 {
  line-height: 34px;
}
.c-text--underline {
  border-bottom: 1px dashed #111111;
  text-decoration: none;
}
.c-text--underline.blue {
  border-color: #1843bc;
}
@media screen and (max-width: 767px) {
  .fs--nor {
    font-size: 12px;
    line-height: 1.6;
  }
  .fs--md,
  .fs--md4 {
    font-size: 13px;
    line-height: 1.6;
  }
  .fs--md2 {
    font-size: 14px;
    line-height: 1.6;
  }
  .fs--md3 {
    font-size: 18px;
    line-height: 1.6;
  }
  .fs--big {
    font-size: 25px;
    line-height: 1.6;
  }
}
/* AUTHOR */
.c-author {
  text-align: right;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0;
}
.c-author small {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
}
/* COPY RIGHT */
.c-copyright {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0;
}
.c-copyright span {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-copyright {
    font-size: 10px;
    line-height: 1.5;
  }
}
/* HEADING */
.c-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -10px;
}
.c-heading.align-bottom {
  align-items: flex-end;
}
.c-heading__item {
  margin: 0 10px 10px;
}
@media screen and (max-width: 1023px) {
  .c-heading {
    margin-left: 0;
    margin-right: 0;
  }
  .c-heading__item {
    width: 100%;
    margin: 0 0 10px;
  }
}
/* TITLE */
.c-title1 {
  font-weight: 700;
  font-size: 42px;
  letter-spacing: 0;
  margin-bottom: 60px;
}
.c-title1.blue {
  color: #1843bc;
}
.c-title1 small {
  display: block;
  font-weight: 500;
  font-size: 13px;
  color: #cccccc;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .c-title1 {
    display: flex;
    flex-direction: column;
    font-size: 32px;
    margin-bottom: 20px;
  }
  .c-title1 strong {
    font-size: 32px;
    margin-right: 0;
  }
}
/* ========================================= */
/* TEXT MARQUEE */
.c-marquee__wrapper {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 145px;
  opacity: 0.08;
}
.c-marquee {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  display: flex;
}
.c-marquee__content {
  flex-shrink: 0;
  min-width: 100%;
  display: inline-block;
  line-height: 1;
  color: #111111;
  font-weight: 700;
  font-size: 160px;
  white-space: nowrap;
  letter-spacing: 0;
  -webkit-animation-name: marquee;
  animation-name: marquee;
  -webkit-animation-duration: 30s;
  animation-duration: 30s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@keyframes marquee {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100vw);
  }
}
@media screen and (max-width: 1023px) {
  .c-marquee {
    height: 90px;
  }
  .c-marquee__content {
    padding: 0 60px;
    font-size: 90px;
  }
}
@media screen and (max-width: 767px) {
  .c-marquee {
    height: 50px;
  }
  .c-marquee__content {
    padding: 0 40px;
    font-size: 50px;
    -webkit-text-stroke-width: 1px;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
  }
}
/* ========================================= */
/* MAIN */
.p-main {
  padding-bottom: 110px;
}
@media screen and (max-width: 767px) {
  .p-main {
    padding-bottom: 60px;
  }
}
/* ========================================= */
/* BOX */
.c-box {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.c-box--gray {
  background-color: rgba(238, 238, 230, 0.3);
  border-radius: 10px;
  color: #111;
}
.c-box--pink {
  background-color: rgba(220, 194, 255, 0.08);
}
.c-box--green {
  background-color: rgba(0, 174, 150, 0.02);
}
/* ========================================= */
/* NEW BADGE */
.c-new {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0;
  width: 42px;
  height: 23px;
  background-color: #f8252e;
  color: #fff;
}
.c-new.md {
  width: 50px;
  height: 27px;
}
@media screen and (max-width: 767px) {
  .c-new {
    font-size: 11px;
  }
}
/* ========================================= */
/* CARD 1  */
.c-card1 {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.c-card1 .info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 30px;
  color: #fff;
}
.c-card1 .heading {
  display: flex;
  margin-bottom: 10px;
}
.c-card1 .date {
  font-size: 15px;
  font-weight: 700;
}
.c-card1 .c-new {
  margin-right: 15px;
}
.c-card1 .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  letter-spacing: 0;
}
.c-card1 a:hover {
  opacity: 1;
}
@media screen and (max-width: 1023px) {
  .c-card1 .content {
    padding: 0 20px 30px;
    margin-top: -45px;
  }
  .c-card1 .content br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .c-card1 .info {
    padding: 30px 20px;
  }
  .c-card1 .heading {
    align-items: center;
  }
  .c-card1 .date {
    font-size: 13px;
  }
  .c-card1 .title {
    font-size: 16px;
  }
}
/* ========================================= */
/* SLIDER */
.c-slider__pagination .swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 4px !important;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  opacity: 1;
}
.c-slider__pagination .swiper-pagination-bullet-active {
  background-color: #1843bc;
  border-color: #1843bc;
}
@media screen and (max-width: 767px) {
  .c-slider__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
/* SLIDER CONTINOUS */
.swiper-wrapper {
  transition-timing-function: linear;
}
/* SLIDER ARROW */
.slider-arrow {
  width: 20px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.slider-arrow::after {
  content: none;
}
.slider-arrow::before {
  content: "";
  background-image: url(./../img/common/ic-slide-next-black.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.slider-arrow__prev::before {
  background-image: url(./../img/common/ic-slide-prev-black.png);
}
/* SLIDER WRAPPER  */
.slider-wrapper {
  position: relative;
  padding: 0 100px;
}
/* ================================================================= */
/* FOOTER */
/* TOP */
.footer__top {
  padding: 150px 0;
  position: relative;
}
.footer__top .c-box {
  width: 80%;
  padding-left: 0;
  padding-right: 0;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.footer__top .c-box .list {
  display: flex;
  flex-wrap: wrap;
}
.footer__top .c-box .list li {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 46px 30px;
}
.footer__top .c-box .list li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1px;
  height: 130px;
  background-color: #cccccc;
}
.footer__top .c-box .title {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0;
  position: relative;
  border-bottom: 1px dashed;
  padding-top: 18px;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.footer__top .c-box .title::before {
  content: "";
  width: 30px;
  height: 1px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  background-color: #04083b;
}
.footer__top .c-box .phone {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0;
  margin-bottom: 5px;
}
.footer__top .c-box .phone .icon {
  display: block;
  width: 34px;
  margin-right: 5px;
}
.footer__top .c-box .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #1843bc;
  background-color: #1843bc;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0;
  width: 100%;
  max-width: 300px;
  padding: 12px 30px;
  color: #fff;
  margin-bottom: 10px;
  transition: 0.6s;
}
.footer__top .c-box .button:hover {
  background-color: #fff;
  color: #1843bc;
  opacity: 1;
}
.footer__top .c-box .button.icon-mail.before::before {
  background-image: url(./../img/common/ic-mail-white.png);
  width: 18px;
  height: 15px;
  margin-right: 10px;
}
.footer__top .c-box .button.icon-mail.before:hover::before {
  background-image: url(./../img/common/ic-mail-blue.png);
}
.footer__top .c-box .text1 {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 26px;
}
/* BOTTOM */
.footer-bottom {
  padding: 70px 0 165px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo {
  max-width: 324px;
  width: 100%;
  margin-bottom: 66px;
}
.footer-bottom .c-nav2 {
  margin-bottom: 45px;
}
.footer-bottom .c-nav2 a {
  padding: 0 10px;
}
@media screen and (max-width: 1023px) {
  /* TOP */
  .footer__top {
    padding: 100px 0;
  }
  .footer__top .c-box .list li {
    width: 100%;
    padding: 40px 20px;
  }
  .footer__top .c-box .list li + li::before {
    width: 60%;
    height: 1px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  /* TOP */
  .footer__top {
    padding: 60px 0;
  }
  .footer__top .c-box .list li {
    padding: 30px 20px;
  }
  .footer__top .c-box {
    width: 90%;
  }
  .footer__top .c-box .title {
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
  .footer__top .c-box .phone {
    font-size: 28px;
  }
  .footer__top .c-box .phone .icon {
    width: 28px;
  }
  .footer__top .c-box .text1 {
    font-size: 13px;
    line-height: 1.6;
  }
  .footer__top .c-box .button {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .footer__top .c-box .button.icon-mail.before::before {
    width: 18px;
    height: 18px;
  }
  .footer__top .c-box .text2 {
    font-size: 14px;
  }
  /* BOTTOM */
  .footer-bottom {
    padding: 40px 0;
  }
  .footer-logo {
    max-width: 230px;
    margin-bottom: 10px;
  }
  .footer-bottom .c-nav2 {
    margin-top: 30px;
    margin-bottom: 8px;
    display: none;
  }
  .footer-bottom .c-nav2 a {
    padding: 0 15px;
  }
  .footer-bottom .c-link-icon__list {
    margin-bottom: 40px;
  }
}
/* =============================================================== */
/* PAGE HEADING */
.c-page-heading {
  width: 100%;
  min-height: 540px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.c-page-heading h1 {
  font-size: 16px;
  letter-spacing: 0;
  color: #fff;
}
.c-page-heading h1 strong {
  display: block;
  font-size: 42px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-page-heading {
    padding: 20px;
    min-height: 200px;
  }
  .c-page-heading h1 {
    font-size: 14px;
  }
  .c-page-heading h1 strong {
    font-size: 30px;
  }
}
/* =============================================================== */
/* =============================================================== */
/* PAGINATION */
.c-pagination {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 78px;
}
.c-pagination--mt2 .c-pagination {
  margin-top: 24px;
}
.c-pagination .item {
  width: 32px;
  height: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: 0.2s;
  margin: 0 5px;
}
.c-pagination .item.prev {
  margin-right: 40px;
  margin-left: 0 !important;
}
.c-pagination .item.next {
  margin-left: 40px;
  margin-right: 0 !important;
}
.c-pagination .item-arrow img {
  display: block;
  width: 17px;
  height: 17px;
}
.c-pagination .item a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: inherit;
}
.c-pagination .item:not(.item-arrow) a:hover {
  opacity: 1;
}
.c-pagination .item:not(.item-arrow):hover,
.c-pagination .item.current {
  background: #111;
  color: white;
}
.c-pagination .item.current,
.c-pagination .item.item-dot {
  pointer-events: none;
}
.c-pagination--pink .item:not(.item-arrow):hover,
.c-pagination--pink .item.current {
  background: #dcc2ff;
  color: #111;
}
.c-pagination--green .item:not(.item-arrow):hover,
.c-pagination--green .item.current {
  background: #00ae96;
  color: #fff;
}
@media all and (max-width: 767px) {
  .c-pagination {
    margin-top: 30px;
  }
  .c-pagination .item {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
  .c-pagination .item.prev {
    margin-right: 10px;
  }
  .c-pagination .item.next {
    margin-left: 10px;
  }
}
/* =============================================================== */
/* ICON ARROW */
.c-icon-arrow::before,
.c-icon-arrow::after {
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid;
}
.c-icon-arrow.pink::before,
.c-icon-arrow.pink::after {
  border-top-color: #dcc2ff;
}
.c-icon-arrow.green::before,
.c-icon-arrow.green::after {
  border-top-color: #00ae96;
}
.c-icon-arrow.red::before,
.c-icon-arrow.red::after {
  border-top-color: #ff2138;
}
/* 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;
}
/* =============================================================== */
/* BTN 3 */
.c-btn3 {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0;
  width: 100%;
  max-width: 320px;
  display: block;
  text-align: center;
  padding: 16px 30px;
  background-color: rgba(34, 34, 34, 0.9);
  color: #fff;
  transition: 0.4s;
}
.c-card4:hover .c-btn3,
.c-btn3:hover {
  background-color: #dcc2ff;
}
.c-card4:hover .c-btn3.hover--green,
.c-btn3.hover--green:hover {
  background-color: #00ae96;
}
.c-card4:hover .c-btn3.hover--red,
.c-btn3.hover--red:hover {
  background-color: #dc1f4b;
}
@media screen and (max-width: 767px) {
  .c-btn3 {
    font-size: 16px;
  }
}
/* =============================================================== */
/* BREAD  */
.bread {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background: rgb(112 112 112 / 5%);
  margin-bottom: 42px;
  padding: 24px 20px;
}
.bread li a {
  display: block;
  letter-spacing: 1.6px;
  font-weight: 700;
  font-size: 12px;
  line-height: 2;
}
@media all and (max-width: 768px) {
  .bread {
    padding: 15px 20px;
  }
  .bread li a {
    font-size: 11px;
  }
}
/* =============================================================== */
/* HEADING 1 */
.c-heading1 {
  display: flex;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0;
  line-height: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 25px;
}
.c-heading1::before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  margin-right: 15px;
}
.c-heading1.icon-circle::before {
  background-image: url(./../img/common/ic-circle-check-black.svg);
  width: 29px;
  height: 29px;
}
@media all and (max-width: 767px) {
  .c-heading1 {
    font-size: 18px;
    line-height: 1.5;
  }
  .c-heading1::before {
    margin-right: 8px;
  }
  .c-heading1.icon-circle::before {
    width: 20px;
    height: 20px;
    margin-top: 3px;
  }
}
/* =============================================================== */
/* CONTACT BOX */
.c-contact-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #111;
  color: #fff;
  padding: 20px 34px;
}
.c-contact-box .c-phone {
  margin-right: 30px;
}
@media all and (max-width: 767px) {
  .c-contact-box {
    flex-direction: column;
    text-align: center;
    padding: 15px 20px;
  }
  .c-contact-box .c-phone {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
/* =============================================================== */
/* LINK 2 */
.c-link2__wrapper {
  display: flex;
  justify-content: space-between;
}
.c-link2__wrapper.center {
  justify-content: center;
}
.c-link2__wrapper .c-link2 {
  max-width: unset;
  width: calc((100% - 40px) / 2);
}
.c-link2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0;
  width: 100%;
  max-width: 440px;
  padding: 20px;
  position: relative;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-bottom: 1px solid #cccccc;
}
.c-link2.center {
  margin-left: auto;
  margin-right: auto;
}
.c-link2:hover {
  color: #111;
  opacity: 1;
}
.c-link2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  bottom: -1px;
  background-color: #111;
  z-index: 2;
  -webkit-transform: scaleX(0.2);
  -ms-transform: scaleX(0.2);
  transform: scaleX(0.2);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}
.c-link2:hover::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.c-link2::after {
  background-image: url(./../img/common/ic-chevron-right-black.png);
  width: 12px;
  height: 20px;
}
.c-link2--blue::before {
  background-color: #1843bc;
}
.c-link2--blue:hover {
  color: #1843bc;
}
.c-link2--blue:hover::after {
  background-image: url(./../img/common/ic-chevron-right-blue.png);
}
@media screen and (max-width: 767px) {
  .c-link2__wrapper {
    flex-direction: column;
  }
  .c-link2__wrapper .c-link2 {
    max-width: unset;
    width: 100%;
  }
  .c-link2 {
    font-size: 16px;
    padding: 20px 10px;
  }
  .c-link2::after {
    width: 10px;
    height: 16px;
  }

  .c-mainvisual .padding-lr{
    padding: 20px;
  }

  .c-mainvisual__text .big-text{
    font-size: 50px;
    line-height: 1.5;
  }

  .c-mainvisual__text .small-text{
    font-size: 16px;
  }
}
/* ========================================= */
/* DATA LIST */
.c-dl.bg-odd dl:nth-child(odd) {
  background-color: rgba(25, 69, 190, 0.03);
}
.c-dl dl {
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 0;
  font-size: 16px;
}
.c-dl dt,
.c-dl dd {
  border-bottom: 1px solid #111111;
  line-height: 26px;
  padding: 22px 12px;
}
.c-dl.border-gray dt,
.c-dl.border-gray dd {
  border-color: #999999;
}

.c-dl.dt-blue-border dt {
  border-color: #1843bc;
}
.c-dl dt {
  width: 160px;
  flex-shrink: 0;
  font-weight: 700;
  text-align: center;
}
.c-dl.dt--200 dt {
  width: 200px;
}
.c-dl.gap21 dt {
  margin-right: 21px;
}
.c-dl dd {
  flex: 1;
  font-weight: 500;
}
.c-dl.dd-padding2 dd {
  padding: 22px 60px;
}
.c-dl dd .content-block + .content-block {
  margin-top: 45px;
}
.c-dl dd .content-block__title {
  margin-bottom: 10px;
}

.c-dl .line-bold dt,
.c-dl .line-bold dd{
	border-bottom: 2px solid #1843bc;
}
.c-dl dd .bold{
	font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-logo img, .c-logo a{
    width: 85%;
  }
  .c-dl dt,
  .c-dl dd {
    padding: 15px 5px;
    line-height: 22px;
  }
  .c-dl dt {
    width: 100px;
    font-size: 13px;
  }
  .c-dl dd {
    font-size: 12px;
    padding-right: 0;
  }
  .c-dl.gap dt {
    margin-right: 5px;
  }

  .fs--16{
    font-size: 14px;
  }

  .fs--18{
    font-size: 14px;
  }
}
/* DL 2 */
.c-dl2 li + li {
  margin-top: 26px;
}
.c-dl2 .title {
  font-weight: 700;
}
.c-dl2 .title.before.icon-building::before {
  background-image: url(./../img/common/ic-building-black.png);
  width: 15px;
  height: 17px;
  margin-right: 10px;
  margin-top: 5px;
}
.c-dl2 .content {
  padding-left: 25px;
}
/* =============================================================== */
