@charset "UTF-8";
/*------------------------------------*\
// scss 読み込み
\*------------------------------------*/
/*------------------------------------*\
// Font
\*------------------------------------*/
/*------------------------------------*\
// Color
\*------------------------------------*/
/*------------------------------------*\
// mixin
\*------------------------------------*/
.pconly {
  display: none;
}

.sponly {
  display: block;
}

@media screen and (min-width: 768px) {
  .pconly {
    display: block;
  }
  .sponly {
    display: none;
  }
}
/*------------------------------------*\
// base
\*------------------------------------*/
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-padding: 110px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding: 80px;
  }
}

body {
  background: mainBgColor;
  color: #768D99;
  font: 300 1.6rem/1.8 "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
@media screen and (min-width: 768px) {
  body {
    min-width: 1000px;
  }
}

.container {
  max-width: 900px;
  width: 95%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 20px;
    width: 100%;
  }
}

ul {
  list-style-type: none;
  padding: 0;
}

.sectionHeader {
  text-align: center;
  position: relative;
  margin-bottom: 55px;
}
.sectionHeader::after {
  content: "";
  background-color: #768D99;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translate(-50%, 0);
  height: 3px;
  width: 87px;
}
.sectionHeader .sectionHeader__en {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 44px;
  margin: 0;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .sectionHeader .sectionHeader__en {
    font-size: 24px;
  }
}
.sectionHeader .sectionHeader__ja {
  font-size: 16px;
  margin: 0;
}

/*------------------------------------*\
// front
\*------------------------------------*/
.topMv {
  margin-bottom: 110px;
}
.topMv .topMv__swiper {
  width: 100%;
}
.topMv .swiper-slide picture {
  display: block;
  width: 100%;
}
.topMv .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}
.topMv .swiper-pagination-bullet-active {
  background: #768D99;
}

/*------------------------------------*\
// topContents
\*------------------------------------*/
.topContents {
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .topContents {
    margin-bottom: 120px;
  }
}
.topContents .topContents__inner {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .topContents .topContents__inner {
    padding: 0 20px;
    width: 100%;
  }
}
.topContents .topContents__header {
  display: flex;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .topContents .topContents__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.topContents .topContents__label {
  font-size: 16px;
  color: #768D99;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .topContents .topContents__label {
    font-size: 14px;
  }
}
.topContents .topContents__title {
  font-family: "Lato", sans-serif;
  font-size: 44px;
  font-weight: 300;
  color: #768D99;
  line-height: 1;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .topContents .topContents__title {
    font-size: 34px;
  }
}
.topContents .topContents__desc {
  font-size: 15px;
  color: #6C6C6C;
  line-height: 1.6;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .topContents .topContents__desc {
    font-size: 14px;
  }
}
.topContents .topContents__divider {
  border: none;
  border-top: 1px solid #D5E1E7;
  margin: 0 0 25px;
}
.topContents .topContents__filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .topContents .topContents__filter {
    gap: 11px;
  }
}
.topContents .topContents__filter-label {
  font-size: 14px;
  color: #768D99;
}
.topContents .topContents__filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 20px;
  border: 1px solid #6C6C6C;
  border-radius: 40px;
  font-size: 14px;
  color: #454545;
  text-decoration: none;
  line-height: 1;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.topContents .topContents__filter-btn.is-active, .topContents .topContents__filter-btn:hover {
  background: #768D99;
  border-color: #768D99;
  color: #fff;
}
.topContents .topContents__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.topContents .topContents__card {
  background: #F6F8F9;
  border-radius: 10px;
  overflow: hidden;
}
.topContents .topContents__card > a {
  display: flex;
  padding: 10px;
  text-decoration: none;
  color: inherit;
  position: relative;
  min-height: 265px;
}
@media screen and (max-width: 767px) {
  .topContents .topContents__card > a {
    flex-direction: column;
    min-height: auto;
  }
}
.topContents .topContents__card > a:hover .topContents__card-title {
  color: #768D99;
}
.topContents .topContents__card > a:hover .topContents__card-thumb img {
  transform: scale(1.05);
}
.topContents .topContents__card > a:hover .topContents__card-more {
  background: #768D99;
  color: #fff;
}
.topContents .topContents__card > a:hover .topContents__card-more svg circle {
  fill: #fff;
}
.topContents .topContents__card > a:hover .topContents__card-more svg path {
  stroke: #768D99;
}
.topContents .topContents__card .topContents__card-thumb {
  aspect-ratio: 36/27;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
  width: 36%;
}
@media screen and (max-width: 767px) {
  .topContents .topContents__card .topContents__card-thumb {
    width: 100%;
  }
}
.topContents .topContents__card .topContents__card-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .topContents .topContents__card .topContents__card-thumb img {
    border-radius: 6px;
  }
}
.topContents .topContents__card .topContents__card-body {
  flex: 1;
  padding: 30px 25px 60px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 767px) {
  .topContents .topContents__card .topContents__card-body {
    padding: 16px 0 60px;
  }
}
.topContents .topContents__card .topContents__card-cat {
  display: inline-flex;
  align-items: center;
  border: 1px solid #768D99;
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 12px;
  color: #768D99;
  align-self: flex-start;
  margin-bottom: 12px;
  line-height: 1;
}
.topContents .topContents__card .topContents__card-title {
  font-size: 22px;
  font-weight: bold;
  color: #565656;
  line-height: 1.6;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .topContents .topContents__card .topContents__card-title {
    font-size: 17px;
  }
}
.topContents .topContents__card .topContents__card-sep {
  border: none;
  border-top: 1px solid #D5E1E7;
  margin: 0 0 12px;
}
.topContents .topContents__card .topContents__card-excerpt {
  font-size: 14px;
  color: #6C6C6C;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  white-space: normal;
}
.topContents .topContents__card .topContents__card-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #768D99;
  border-radius: 4px;
  padding: 6px 8px 6px 12px;
  font-size: 12px;
  color: #768D99;
  position: absolute;
  bottom: 10px;
  right: 20px;
  transition: background 0.3s, color 0.3s;
}
.topContents .topContents__card .topContents__card-more svg circle {
  transition: fill 0.3s;
}
.topContents .topContents__card .topContents__card-more svg path {
  transition: stroke 0.3s;
}
.topContents .topContents__empty {
  text-align: center;
  color: #6C6C6C;
  font-size: 15px;
}
.topContents .topContents__pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.topContents .topContents__pagination ul.tc-pn-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.topContents .topContents__pagination li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.topContents .topContents__pagination .tc-pn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #313131;
  border: 1px solid #D2D2D2;
  transition: background 0.3s, color 0.3s;
}
.topContents .topContents__pagination .tc-pn.current {
  background: #768D99;
  border-color: #768D99;
  color: #fff;
}
.topContents .topContents__pagination .tc-pn:not(.current):not(.dots):not(.prev):not(.next):hover {
  background: #768D99;
  border-color: #768D99;
  color: #fff;
}
.topContents .topContents__pagination .tc-pn.dots {
  border-color: #D2D2D2;
  color: #313131;
  cursor: default;
}
.topContents .topContents__pagination .tc-pn.prev, .topContents .topContents__pagination .tc-pn.next {
  width: 30px;
  height: 30px;
  background: #768D99;
  border-color: #768D99;
  color: #fff;
  font-size: 0;
}
.topContents .topContents__pagination .tc-pn.prev svg, .topContents .topContents__pagination .tc-pn.next svg {
  width: 10px;
  height: 10px;
}

/*------------------------------------*\
// topCta
\*------------------------------------*/
.topCta {
  display: flex;
}
@media screen and (max-width: 767px) {
  .topCta {
    flex-direction: column;
  }
}
.topCta .topCta__half {
  flex: 1;
  padding: 60px 50px;
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .topCta .topCta__half {
    padding: 50px 20px;
    min-height: 389px;
  }
}
.topCta .topCta__half--company {
  background: #F6F8F9;
}
.topCta .topCta__half--company .topCta__label {
  color: #768D99;
}
.topCta .topCta__half--company .topCta__title {
  color: #768D99;
}
.topCta .topCta__half--company .topCta__accent {
  background: #768D99;
}
.topCta .topCta__half--company .topCta__desc {
  color: #6C6C6C;
}
.topCta .topCta__half--company .topCta__btn {
  border-color: #768D99;
  color: #768D99;
}
.topCta .topCta__half--company:hover {
  background: #E8EEF0;
}
.topCta .topCta__half--company:hover .topCta__btn {
  background: #768D99;
  color: #fff;
}
.topCta .topCta__half--company:hover .topCta__btn svg circle {
  fill: #fff;
}
.topCta .topCta__half--company:hover .topCta__btn svg path {
  stroke: #768D99;
}
.topCta .topCta__half--contact {
  background: #768D99;
}
.topCta .topCta__half--contact .topCta__label {
  color: #fff;
}
.topCta .topCta__half--contact .topCta__title {
  color: #fff;
}
.topCta .topCta__half--contact .topCta__accent {
  background: #fff;
}
.topCta .topCta__half--contact .topCta__desc {
  color: #CDD3D6;
}
.topCta .topCta__half--contact .topCta__btn {
  border-color: #fff;
  color: #fff;
}
.topCta .topCta__half--contact:hover {
  background: #67808E;
}
.topCta .topCta__half--contact:hover .topCta__btn {
  background: #fff;
  color: #768D99;
}
.topCta .topCta__half--contact:hover .topCta__btn svg circle {
  fill: #768D99;
}
.topCta .topCta__half--contact:hover .topCta__btn svg path {
  stroke: #fff;
}
.topCta .topCta__label {
  font-size: 16px;
  margin: 0 0 5px;
}
@media screen and (max-width: 767px) {
  .topCta .topCta__label {
    font-size: 14px;
  }
}
.topCta .topCta__title {
  font-family: "Lato", sans-serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  margin: 0 0 15px;
}
@media screen and (max-width: 767px) {
  .topCta .topCta__title {
    font-size: 34px;
  }
}
.topCta .topCta__accent {
  display: block;
  width: 60px;
  height: 3px;
  border-radius: 3px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .topCta .topCta__accent {
    width: 50px;
  }
}
.topCta .topCta__desc {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .topCta .topCta__desc {
    font-size: 14px;
  }
}
.topCta .topCta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid;
  border-radius: 4px;
  padding: 14px 14px 14px 16px;
  font-size: 14px;
  text-decoration: none;
  align-self: flex-start;
  letter-spacing: 0.04em;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.topCta .topCta__btn svg circle, .topCta .topCta__btn svg path {
  transition: fill 0.3s, stroke 0.3s;
}

.topMission,
.topValue {
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .topMission,
  .topValue {
    margin-bottom: 120px;
  }
}
.topMission .topMission__catch,
.topMission .topValue__catch,
.topValue .topMission__catch,
.topValue .topValue__catch {
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  .topMission .topMission__catch,
  .topMission .topValue__catch,
  .topValue .topMission__catch,
  .topValue .topValue__catch {
    font-size: 22px;
  }
}
.topMission .topMission__catchEn,
.topMission .topValue__catchEn,
.topValue .topMission__catchEn,
.topValue .topValue__catchEn {
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .topMission .topMission__catchEn,
  .topMission .topValue__catchEn,
  .topValue .topMission__catchEn,
  .topValue .topValue__catchEn {
    font-size: 14px;
  }
}

.topBusinessScope {
  text-align: center;
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .topBusinessScope {
    margin-bottom: 120px;
  }
}
.topBusinessScope .topBusinessScope__catch {
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  .topBusinessScope .topBusinessScope__catch {
    font-size: 22px;
  }
}
.topBusinessScope .topBusinessScope__catchEn {
  margin: 0 0 40px;
  font-size: 18px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .topBusinessScope .topBusinessScope__catchEn {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.topBusinessScope .topBusinessScope__lists {
  text-align: left;
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content;
}
.topBusinessScope .topBusinessScope__lists li {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .topBusinessScope .topBusinessScope__lists li {
    font-size: 18px;
  }
}

.topCompanyInfo {
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .topCompanyInfo {
    margin-bottom: 120px;
  }
}
.topCompanyInfo table {
  width: 100%;
}
.topCompanyInfo tr {
  border-bottom: 1px solid #C4CBD0;
  text-align: left;
  font-size: 18px;
}
.topCompanyInfo th {
  font-weight: 400;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .topCompanyInfo th {
    display: block;
    padding: 20px 0 5px 0;
  }
}
.topCompanyInfo td {
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .topCompanyInfo td {
    display: block;
    padding: 5px 0 20px 0;
  }
}

.topContact .contactForm {
  margin-top: 50px;
}
.topContact .contactForm__list {
  display: flex;
  margin-bottom: 50px;
  flex-wrap: wrap;
  font-size: 16px;
}
.topContact .contactForm__list dt {
  width: 250px;
}
@media screen and (max-width: 767px) {
  .topContact .contactForm__list dt {
    margin-bottom: 10px;
    width: 100%;
  }
}
.topContact .contactForm__list dd {
  width: calc(100% - 300px);
}
@media screen and (max-width: 767px) {
  .topContact .contactForm__list dd {
    margin: 0;
    width: 100%;
  }
}
.topContact .contactForm__list dd input {
  background: #f5f5f5;
  border: 1px solid #C4C4C4;
  box-shadow: none;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 900;
  padding-left: 10px;
  height: 60px;
  width: 100%;
}
.topContact .contactForm__list dd input::-moz-placeholder {
  color: #B9B9B9;
  font-weight: 400;
}
.topContact .contactForm__list dd input::placeholder {
  color: #B9B9B9;
  font-weight: 400;
}
.topContact .contactForm__list dd select {
  background: #ffffff;
  box-shadow: none;
  border: 2px solid #cccccc;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 900;
  padding-left: 10px;
  height: 50px;
}
.topContact .contactForm__list dd select::-moz-placeholder {
  color: #B9B9B9;
  font-weight: 400;
}
.topContact .contactForm__list dd select::placeholder {
  color: #B9B9B9;
  font-weight: 400;
}
.topContact .contactForm__list dd textarea {
  background: #f5f5f5;
  box-shadow: none;
  border: 1px solid #C4C4C4;
  border-radius: 5px;
  padding: 5px;
  font-size: 1.6rem;
  font-weight: 900;
  width: 100%;
}
.topContact .contactForm__list dd textarea::-moz-placeholder {
  color: #B9B9B9;
  font-weight: 400;
}
.topContact .contactForm__list dd textarea::placeholder {
  color: #B9B9B9;
  font-weight: 400;
}
.topContact .contactForm__list dt span {
  border-radius: 5px;
  color: #fff;
  padding: 0px 7px;
  margin-right: 10px;
  line-height: 1;
  font-size: 1.2rem;
}
.topContact .contactForm__list dt .required {
  background: #B14F4F;
}
.topContact .contactForm__list dt .free {
  background: #7F8080;
}
.topContact .contactForm__btn {
  margin: 50px 0 0;
  text-align: center;
}
.topContact .contactForm__btn input {
  background-color: #768D99;
  border: 2px solid #768D99;
  border-radius: 10px;
  box-sizing: content-box;
  color: #fff;
  display: block;
  margin: 0 auto;
  font-size: 22px;
  font-weight: bold;
  line-height: 70px;
  height: 70px;
  width: 400px;
  transition: background 0.4s, color 0.4s, opacity 0.4s;
}
@media screen and (max-width: 767px) {
  .topContact .contactForm__btn input {
    font-size: 18px;
    line-height: 70px;
    height: 70px;
    max-width: 100%;
    width: 250px;
  }
}
.topContact .contactForm__btn input.wpcf7-back {
  border: 2px solid #8c8c8c;
  color: #8c8c8c;
  margin-bottom: 30px;
}
.topContact .contactForm__btn input.wpcf7-back:hover {
  background: #8c8c8c;
  color: #fff;
}
.topContact .contactForm__btn input:hover {
  opacity: 0.8;
}
.topContact div.wpcf7 .ajax-loader {
  display: block !important;
}

/*------------------------------------*\
// page common
\*------------------------------------*/
.pageBreadcrumb {
  background: #768D99;
  color: #fff;
}
.pageBreadcrumb .pageBreadcrumb__inner {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 12px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .pageBreadcrumb .pageBreadcrumb__inner {
    width: 100%;
    padding: 10px 20px;
  }
}
.pageBreadcrumb .pageBreadcrumb__link {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.pageBreadcrumb .pageBreadcrumb__link:hover {
  opacity: 0.7;
}
.pageBreadcrumb .pageBreadcrumb__sep {
  margin: 0 8px;
}
.pageBreadcrumb .pageBreadcrumb__current {
  color: #fff;
}

.pageHeader {
  background: #F6F8F9;
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .pageHeader {
    padding: 50px 0 90px;
    margin-bottom: 60px;
  }
}
.pageHeader .pageHeader__inner {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .pageHeader .pageHeader__inner {
    width: 100%;
    padding: 0 20px;
  }
}
.pageHeader .pageHeader__ja {
  color: #768D99;
  font-size: 22px;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .pageHeader .pageHeader__ja {
    font-size: 18px;
    margin: 0 0 8px;
  }
}
.pageHeader .pageHeader__en {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 58px;
  color: #768D99;
  line-height: 1;
  margin: 0;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .pageHeader .pageHeader__en {
    font-size: 38px;
  }
}
.pageHeader .pageHeader__accent {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1000px;
  z-index: 3;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .pageHeader .pageHeader__accent {
    width: 100%;
    padding: 0 20px;
  }
}
.pageHeader .pageHeader__accent::after {
  content: "";
  display: block;
  width: 170px;
  height: 2px;
  background: #768D99;
}
@media screen and (max-width: 767px) {
  .pageHeader .pageHeader__accent::after {
    width: 100px;
  }
}
.pageHeader .pageHeader__bgLogo {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  width: 618px;
  max-width: 50%;
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .pageHeader .pageHeader__bgLogo {
    width: 286px;
    max-width: 80%;
    right: -10px;
  }
}
.pageHeader .pageHeader__bgLogo img {
  display: block;
  width: 100%;
  height: auto;
}

/*------------------------------------*\
// single blog (記事詳細ページ)
\*------------------------------------*/
.singleBlog {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .singleBlog {
    margin-bottom: 60px;
  }
}
.singleBlog .singleBlog__inner {
  max-width: 800px;
  width: 95%;
  margin: 0 auto;
  padding: 60px 0 0;
}
@media screen and (max-width: 767px) {
  .singleBlog .singleBlog__inner {
    width: 100%;
    padding: 30px 20px 0;
  }
}
.singleBlog .singleBlog__header {
  margin-bottom: 30px;
}
.singleBlog .singleBlog__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}
.singleBlog .singleBlog__date {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #111;
  letter-spacing: 0.08em;
}
.singleBlog .singleBlog__cat {
  display: inline-flex;
  align-items: center;
  border: 1px solid #768D99;
  border-radius: 40px;
  padding: 4px 14px;
  font-size: 12px;
  color: #768D99;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.singleBlog .singleBlog__cat:hover {
  background: #768D99;
  color: #fff;
}
.singleBlog .singleBlog__title {
  font-size: 30px;
  font-weight: 600;
  color: #565656;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .singleBlog .singleBlog__title {
    font-size: 20px;
  }
}
.singleBlog .singleBlog__thumb {
  margin: 30px 0 40px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .singleBlog .singleBlog__thumb {
    margin: 20px 0 30px;
  }
}
.singleBlog .singleBlog__thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.singleBlog .singleBlog__contents {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .singleBlog .singleBlog__contents {
    margin-bottom: 40px;
  }
}
.singleBlog .singleBlog__back {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .singleBlog .singleBlog__back {
    margin-top: 40px;
  }
}
.singleBlog .singleBlog__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #768D99;
  border-radius: 4px;
  padding: 12px 18px;
  font-size: 14px;
  color: #768D99;
  text-decoration: none;
  min-width: 240px;
  justify-content: space-between;
  transition: background 0.3s, color 0.3s;
}
.singleBlog .singleBlog__back-btn svg circle, .singleBlog .singleBlog__back-btn svg path {
  transition: fill 0.3s, stroke 0.3s;
}
.singleBlog .singleBlog__back-btn:hover {
  background: #768D99;
  color: #fff;
}
.singleBlog .singleBlog__back-btn:hover svg circle {
  fill: #fff;
}
.singleBlog .singleBlog__back-btn:hover svg path {
  stroke: #768D99;
}

/*------------------------------------*\
// c-toc (目次)
\*------------------------------------*/
.c-toc {
  background: #F6F8F9;
  border-radius: 10px;
  padding: 24px 30px;
  margin: 0 0 50px;
}
@media screen and (max-width: 767px) {
  .c-toc {
    padding: 18px 20px;
    margin: 0 0 40px;
  }
}
.c-toc .c-toc__title {
  color: #768D99;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}
.c-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-toc li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}
.c-toc li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #768D99;
}
.c-toc li:last-child {
  margin-bottom: 0;
}
.c-toc a {
  display: block;
  color: #565656;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
@media screen and (max-width: 767px) {
  .c-toc a {
    font-size: 15px;
  }
}
.c-toc a:hover {
  color: #768D99;
}
.c-toc .h3list {
  margin: 8px 0 12px 14px;
}
.c-toc .h3list li {
  padding-left: 14px;
  margin-bottom: 6px;
}
.c-toc .h3list li::before {
  width: 4px;
  height: 4px;
  top: 10px;
  background: #A4A4A4;
}
.c-toc .h3list a {
  color: #6C6C6C;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

/*------------------------------------*\
// 関連記事 (relatedPosts)
\*------------------------------------*/
.relatedPosts {
  background: transparent;
  padding: 60px 0 0;
}
@media screen and (max-width: 767px) {
  .relatedPosts {
    padding: 40px 0 0;
  }
}
.relatedPosts .relatedPosts__inner {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .relatedPosts .relatedPosts__inner {
    width: 100%;
    padding: 0 20px;
  }
}
.relatedPosts .sectionHeader {
  text-align: left;
  margin-bottom: 40px;
}
.relatedPosts .sectionHeader::after {
  left: 0;
  transform: none;
  width: 50px;
}
.relatedPosts .sectionHeader .sectionHeader__en {
  font-size: 34px;
}
@media screen and (max-width: 767px) {
  .relatedPosts .sectionHeader .sectionHeader__en {
    font-size: 30px;
  }
}
.relatedPosts .sectionHeader .sectionHeader__ja {
  font-size: 14px;
  color: #768D99;
}
.relatedPosts .relatedPosts__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.relatedPosts .relatedPosts__card {
  background: #F6F8F9;
  border-radius: 10px;
  overflow: hidden;
}
.relatedPosts .relatedPosts__card-link {
  display: flex;
  padding: 10px;
  text-decoration: none;
  color: inherit;
  position: relative;
  min-height: 265px;
}
@media screen and (max-width: 767px) {
  .relatedPosts .relatedPosts__card-link {
    flex-direction: column;
    min-height: auto;
  }
}
.relatedPosts .relatedPosts__card-link:hover .relatedPosts__card-title {
  color: #768D99;
}
.relatedPosts .relatedPosts__card-link:hover .relatedPosts__card-thumb img {
  transform: scale(1.05);
}
.relatedPosts .relatedPosts__card-link:hover .relatedPosts__card-more {
  background: #768D99;
  color: #fff;
}
.relatedPosts .relatedPosts__card-link:hover .relatedPosts__card-more svg circle {
  fill: #fff;
}
.relatedPosts .relatedPosts__card-link:hover .relatedPosts__card-more svg path {
  stroke: #768D99;
}
.relatedPosts .relatedPosts__card-thumb {
  aspect-ratio: 36/27;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
  width: 36%;
}
@media screen and (max-width: 767px) {
  .relatedPosts .relatedPosts__card-thumb {
    width: 100%;
  }
}
.relatedPosts .relatedPosts__card-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .relatedPosts .relatedPosts__card-thumb img {
    border-radius: 6px;
  }
}
.relatedPosts .relatedPosts__card-body {
  flex: 1;
  padding: 30px 25px 60px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 767px) {
  .relatedPosts .relatedPosts__card-body {
    padding: 16px 0 60px;
  }
}
.relatedPosts .relatedPosts__card-cat {
  display: inline-flex;
  align-items: center;
  border: 1px solid #768D99;
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 12px;
  color: #768D99;
  align-self: flex-start;
  margin-bottom: 12px;
  line-height: 1;
}
.relatedPosts .relatedPosts__card-title {
  font-size: 22px;
  font-weight: bold;
  color: #565656;
  line-height: 1.6;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .relatedPosts .relatedPosts__card-title {
    font-size: 17px;
  }
}
.relatedPosts .relatedPosts__card-sep {
  border: none;
  border-top: 1px solid #D5E1E7;
  margin: 0 0 12px;
}
.relatedPosts .relatedPosts__card-excerpt {
  font-size: 14px;
  color: #6C6C6C;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  white-space: normal;
}
.relatedPosts .relatedPosts__card-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #768D99;
  border-radius: 4px;
  padding: 6px 8px 6px 12px;
  font-size: 12px;
  color: #768D99;
  position: absolute;
  bottom: 10px;
  right: 20px;
  transition: background 0.3s, color 0.3s;
}
.relatedPosts .relatedPosts__card-more svg circle {
  transition: fill 0.3s;
}
.relatedPosts .relatedPosts__card-more svg path {
  transition: stroke 0.3s;
}

/*------------------------------------*\
// header
\*------------------------------------*/
.header {
  align-items: center;
  background-color: #fff;
  box-shadow: 0 1px 10px rgba(94, 94, 94, 0.4);
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  position: sticky;
  top: 0;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 10px 20px;
  }
}
.header .logo {
  margin: 0;
  width: 160px;
}
@media screen and (max-width: 767px) {
  .header .logo {
    width: 106px;
  }
}
.header .logo img {
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .header nav {
    display: none;
  }
}
.header nav ul {
  align-items: center;
  display: flex;
  font-size: 18px;
  gap: 0 25px;
  font-family: "Lato", sans-serif;
}
.header nav a {
  color: #768D99;
  transition: opacity 0.4s;
}
.header nav a:hover {
  opacity: 0.6;
}

/*------------------------------------*\
// sp-header
\*------------------------------------*/
#menu-trigger {
  position: relative;
  width: 35px;
  height: 19px;
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  #menu-trigger {
    display: none;
  }
}
#menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #768D99;
  border-radius: 4px;
}
#menu-trigger span:nth-of-type(1) {
  top: 0;
}
#menu-trigger span:nth-of-type(2) {
  top: 8px;
}
#menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

#menu-trigger.active span:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
}
#menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
  width: 100%;
}
#menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
  width: 100%;
}

#sp-nav {
  background: #768D99;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow: scroll;
}
#sp-nav nav {
  margin-top: 80px;
  padding: 60px 20px 0;
  width: 100%;
}
#sp-nav nav ul {
  list-style-type: none;
}
#sp-nav nav ul li {
  font-size: 1.8rem;
  font-weight: 900;
  position: relative;
}
#sp-nav nav ul li a {
  border-bottom: 1px solid #fff;
  color: #fff;
  display: block;
  position: relative;
  font-weight: 400;
  padding: 20px 0;
  transition: opacity 0.7s, transform 0.7s;
}
#sp-nav nav ul li a::after {
  content: "";
  background: url(../img/icons/contact-arrow.svg) center center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  height: 20px;
  width: 20px;
}
@media screen and (max-width: 767px) {
  #sp-nav nav ul li a {
    font-size: 18px;
  }
}
#sp-nav nav ul li a:hover {
  opacity: 0.8;
}
#sp-nav nav .menu-item-has-children a:after {
  background: url(../img/common/menu-item-has-children.svg) center center/contain no-repeat;
}
#sp-nav nav .sub-menu {
  display: none;
}
#sp-nav nav .sub-menu li a {
  font-size: 1.2rem;
  padding: 10px 0 10px 15px;
}
#sp-nav nav .sub-menu li a::after {
  content: none;
  background: none;
  height: 0;
  width: 0;
}

/*------------------------------------*\
// footer
\*------------------------------------*/
.footer {
  text-align: center;
  padding: 30px 0;
  margin-top: 150px;
  position: relative;
  top: 0;
}
.footer::before {
  content: "";
  background-color: #768D99;
  height: 1px;
  width: 90%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.footer .copyright {
  font-size: 14px;
}
.footer .footter__nav a {
  color: #24D9D9;
  text-decoration: underline;
  font-size: 14px;
}

/*------------------------------------*\
// 記事本文（c-wysiwyg）
\*------------------------------------*/
.c-wysiwyg {
  color: #6C6C6C;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-wysiwyg {
    font-size: 14px;
  }
}
.c-wysiwyg p {
  margin: 0 0 24px;
}
@media screen and (max-width: 767px) {
  .c-wysiwyg p {
    margin: 0 0 18px;
  }
}
.c-wysiwyg img {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
  margin: 30px 0;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .c-wysiwyg img {
    margin: 20px 0;
  }
}
.c-wysiwyg h2 {
  background: #768D99;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding: 12px 16px;
  margin: 50px 0 24px;
  border: none;
}
@media screen and (max-width: 767px) {
  .c-wysiwyg h2 {
    font-size: 20px;
    padding: 10px 12px;
    margin: 40px 0 18px;
  }
}
.c-wysiwyg h3 {
  color: #768D99;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  padding: 0;
  margin: 40px 0 16px;
  border: none;
}
@media screen and (max-width: 767px) {
  .c-wysiwyg h3 {
    font-size: 16px;
    margin: 32px 0 12px;
  }
}
.c-wysiwyg h4 {
  color: #565656;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  margin: 30px 0 12px;
}
@media screen and (max-width: 767px) {
  .c-wysiwyg h4 {
    font-size: 15px;
  }
}
.c-wysiwyg ul, .c-wysiwyg ol {
  list-style-type: none;
  margin: 0 0 24px;
  padding: 12px 0;
}
.c-wysiwyg ul li, .c-wysiwyg ol li {
  position: relative;
  padding-left: 18px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.c-wysiwyg ul li:last-child, .c-wysiwyg ol li:last-child {
  margin-bottom: 0;
}
.c-wysiwyg ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 6px;
  background: #768D99;
}
.c-wysiwyg ol {
  counter-reset: cw-ol;
}
.c-wysiwyg ol li {
  counter-increment: cw-ol;
  padding-left: 26px;
}
.c-wysiwyg ol li::before {
  content: counter(cw-ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #768D99;
  font-weight: bold;
}
.c-wysiwyg li > ul,
.c-wysiwyg li > ol {
  margin: 8px 0 0;
  padding: 0 0 0 6px;
}
.c-wysiwyg blockquote {
  background: #F6F8F9;
  border: none;
  border-radius: 4px;
  color: #000;
  padding: 24px 24px 24px 56px;
  position: relative;
  margin: 30px 0;
  font-size: 15px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .c-wysiwyg blockquote {
    padding: 18px 18px 18px 44px;
    margin: 20px 0;
    font-size: 14px;
  }
}
.c-wysiwyg blockquote::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/icons/icon_quote.svg) center center/contain no-repeat;
  position: absolute;
  top: 22px;
  left: 22px;
}
@media screen and (max-width: 767px) {
  .c-wysiwyg blockquote::before {
    width: 14px;
    height: 14px;
    top: 18px;
    left: 16px;
  }
}
.c-wysiwyg blockquote p {
  margin: 0;
}
.c-wysiwyg table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0;
  border: 1px solid #DEDEDE;
  border-radius: 4px;
  overflow: hidden;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .c-wysiwyg table {
    font-size: 14px;
  }
}
.c-wysiwyg table th, .c-wysiwyg table td {
  padding: 16px;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
  border-right: 1px solid #DEDEDE;
  border-bottom: 1px solid #DEDEDE;
  color: #000;
}
.c-wysiwyg table th:last-child,
.c-wysiwyg table td:last-child {
  border-right: none;
}
.c-wysiwyg table tr:last-child th,
.c-wysiwyg table tr:last-child td {
  border-bottom: none;
}
.c-wysiwyg table thead {
  background-color: #F1F4F6;
}
.c-wysiwyg table th {
  background-color: #F1F4F6;
  font-weight: bold;
}
.c-wysiwyg a {
  color: #768D99;
  text-decoration: underline;
  transition: opacity 0.2s;
}
.c-wysiwyg a:hover {
  opacity: 0.7;
}
.c-wysiwyg strong, .c-wysiwyg b {
  font-weight: bold;
  color: #565656;
}
.c-wysiwyg iframe {
  max-width: 100%;
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .c-wysiwyg iframe {
    margin: 20px 0;
  }
}
.c-wysiwyg > *:first-child {
  margin-top: 0;
}
.c-wysiwyg > *:last-child {
  margin-bottom: 0;
}/*# sourceMappingURL=style.css.map */