@charset "UTF-8";
:root {
  --color-text-body: #000;
  --color-text-body-secondary: #333;
  --color-text-body-tertiary: #aaa;
  --color-text-body-emphasis: #CF0908;
  --color-bg-body: #242424;
  --color-bg-body-secondary: #F3F3F3;
  --color-bg-body-tertiary: #990101;
  --color-border: #ddd;
  --color-white: #fff;
  --color-dark: #111;
  --color-gradient-red: linear-gradient(270deg, #CF0908 0%, #990101 100%);
  --shadow-box: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
  --zIndex-menu: 100;
  --zIndex-menuBtn: 200;
  --zIndex-contentsNav: 300;
  --zIndex-header: 400;
  --font-family-barlow: "Barlow", sans-serif;
  --font-family-mplus: "M PLUS 1p", sans-serif;
  --font-family-noto: "Noto Sans JP", sans-serif;
  --font-family-poppins: "Poppins", sans-serif;
  --font-family-shippori: "Shippori Antique", sans-serif;
}

.l-header {
  height: clamp(64px, 5vw, 96px);
  background-color: var(--color-bg-body);
  z-index: var(--zIndex-header);
}
.l-header__inner {
  padding-right: clamp(40px, 5vw, 96px);
}
.l-header__logoNew {
  max-width: calc(100vw - 100px);
  width: 200px;
}
@media screen and (min-width: 768px) {
  .l-header__logoNew {
    width: 100%;
    max-width: clamp(100px, 16.9270833333vw, 325px);
  }
}
@media screen and (min-width: 1920px) {
  .l-header__list a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .l-header__list a {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header__list a {
    font-size: 4.2666666667vw;
  }
}
.l-header__list__item::before {
  width: 100% !important;
  height: 4px !important;
  background: var(--color-gradient-red);
  left: 0 !important;
  bottom: 0 !important;
  transform: none !important;
  border-radius: 0 !important;
}
.l-header__list__item--contents {
  background: var(--color-gradient-red);
  position: relative;
  z-index: var(--zIndex-contentsNav);
  border: 2px solid;
  -o-border-image: var(--color-gradient-red) 1;
     border-image: var(--color-gradient-red) 1;
}
.l-header__list__item--contents:hover {
  background: var(--color-white);
  color: var(--color-text-body-emphasis);
}
.l-header__list__item--contents:hover a {
  opacity: 1;
  color: var(--color-text-body-emphasis) !important;
}
.l-header__list__item--contents:hover::before {
  opacity: 0 !important;
}
.l-header__list__item--contents a {
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 1920px) {
  .l-header__list__item--contents a {
    font-size: 15px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .l-header__list__item--contents a {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header__list__item--contents a {
    font-size: 4vw;
  }
}
.l-header__ham {
  display: block;
  width: 96px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: var(--zIndex-menuBtn);
}
@media screen and (min-width: 768px) {
  .l-header__ham {
    width: clamp(40px, 5vw, 96px);
  }
}
.l-header__ham span {
  width: 31.25%;
  left: 50%;
  top: auto;
  bottom: auto;
  right: auto;
}
.l-header__ham span:nth-child(1) {
  top: calc(50% - 6px);
  transform: translate(-50%, 0);
}
.l-header__ham span:nth-child(2) {
  bottom: calc(50% + 6px);
  transform: translate(-50%, 0);
}
.l-header input:checked + .l-header__ham span:nth-child(1) {
  top: clamp(30px, 2.1875vw, 42px);
  transform: translate(-50%, 0) rotate(45deg);
}
.l-header input:checked + .l-header__ham span:nth-child(2) {
  opacity: 1;
  top: clamp(30px, 2.1875vw, 42px);
  transform: translate(-50%, 0) rotate(-45deg);
}

input:checked + .l-header__ham + .l-header__nav {
  transform: translateY(-105%);
  display: none;
}
@media screen and (min-width: 768px) {
  input:checked + .l-header__ham + .l-header__nav {
    display: block;
    transform: translateY(0);
  }
}

body:has(#ham:checked) {
  overflow: hidden;
}
body:has(#ham:checked) .l-menu {
  transform: translateY(0);
}

.l-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  padding: clamp(64px, 5vw, 96px) 0 24px;
  transition: all 0.5s;
  transform: translateY(-105%);
  color: var(--color-text-body);
  background-color: var(--color-white);
  z-index: var(--zIndex-menu);
  letter-spacing: initial;
}
@media screen and (min-width: 768px) {
  .l-menu {
    padding: 136px 0 40px;
  }
}
.l-menu a {
  color: var(--color-text-body);
}
@media screen and (min-width: 768px) {
  .l-menu__contentLinkSP {
    display: none;
  }
}
.l-menu__inner {
  max-width: 1448px;
  padding: 40px 24px 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-menu__inner {
    padding: 0 24px;
  }
}
.l-menu__navHeaderSp {
  margin-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .l-menu__navHeaderSp {
    display: none;
  }
}
.l-menu__navHeaderSpList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 64px;
}
.l-menu__navHeaderSpLink {
  display: block;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 1920px) {
  .l-menu__navHeaderSpLink {
    font-size: 14px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .l-menu__navHeaderSpLink {
    font-size: 0.7291666667vw;
  }
}
@media screen and (max-width: 767px) {
  .l-menu__navHeaderSpLink {
    font-size: 3.7333333333vw;
  }
}
.l-menu__content {
  display: flex;
  flex-direction: column-reverse;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .l-menu__content {
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 20px;
  }
}
.l-menu__logo {
  width: 121px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-menu__logo {
    width: 11%;
    margin: initial;
  }
}
.l-menu__navArea {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .l-menu__navArea {
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
  }
}
.l-menu__navAreaBoxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .l-menu__navAreaBoxes {
    display: flex;
    flex-direction: column;
  }
}
.l-menu__ttlEn {
  font-family: var(--font-family-barlow);
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (min-width: 1920px) {
  .l-menu__ttlEn {
    font-size: 26px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .l-menu__ttlEn {
    font-size: 1.3541666667vw;
  }
}
@media screen and (max-width: 767px) {
  .l-menu__ttlEn {
    font-size: 6.9333333333vw;
  }
}
.l-menu__ttlJa {
  color: var(--color-text-body-tertiary);
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 1920px) {
  .l-menu__ttlJa {
    font-size: 12px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .l-menu__ttlJa {
    font-size: 0.625vw;
  }
}
@media screen and (max-width: 767px) {
  .l-menu__ttlJa {
    font-size: 3.2vw;
  }
}
.l-menu__navList {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .l-menu__navList {
    gap: 15px;
    margin-top: 20px;
  }
}
.l-menu__navlink {
  display: block;
  color: var(--color-text-body);
  line-height: 1.3;
}
@media screen and (min-width: 1920px) {
  .l-menu__navlink {
    font-size: 16px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .l-menu__navlink {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .l-menu__navlink {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .l-menu__navlink {
    line-height: 1.875;
  }
}
.l-menu__footer {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 0;
  border-top: 1px solid var(--color-border);
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .l-menu__footer {
    padding: 30px 0;
  }
}
@media screen and (min-width: 1920px) {
  .l-menu__privacy {
    font-size: 14px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .l-menu__privacy {
    font-size: 0.7291666667vw;
  }
}
@media screen and (max-width: 767px) {
  .l-menu__privacy {
    font-size: 3.7333333333vw;
  }
}
.l-menu__copyright {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-menu__copyright {
    display: block;
  }
}
@media screen and (min-width: 768px) and (min-width: 1920px) {
  .l-menu__copyright {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1919px) and (min-width: 768px) {
  .l-menu__copyright {
    font-size: 0.7291666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  .l-menu__copyright {
    font-size: 3.7333333333vw;
  }
}

.l-inner {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    width: 75%;
    max-width: 1440px;
    margin: 0 auto;
  }
}
.l-inner--noPaddingSp {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .l-inner--noPaddingSp {
    padding: 0 20px;
  }
}
.l-inner--fixedSmall {
  width: 100%;
  max-width: 1232px;
  padding: 0 16px;
  margin: 0 auto;
}
.l-inner--wide {
  width: 100%;
  max-width: 1392px;
  padding: 0 16px;
  margin: 0 auto;
}
.l-inner--single {
  width: 100%;
  max-width: 1392px;
  padding: 0 16px;
  margin: 0 auto;
}
.l-inner--singleSeminar {
  width: 100%;
  max-width: 982px;
  padding: 0 16px;
  margin: 0 auto;
}
.l-inner--singleDownload {
  width: 100%;
  max-width: 1232px;
  padding: 0 16px;
  margin: 0 auto;
}

.l-footerNew {
  letter-spacing: initial;
  color: var(--color-white);
  background: var(--color-bg-body);
  padding: 30px 0 20px;
}
@media screen and (min-width: 768px) {
  .l-footerNew {
    padding: clamp(45px, 4.6875vw, 90px) 0;
  }
}
.l-footerNew a {
  display: block;
  color: var(--color-white);
}
.l-footerNew__logoMain {
  max-width: 69.3333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-footerNew__logoMain {
    width: clamp(150px, 15.625vw, 300px);
    margin: initial;
    margin-bottom: clamp(40px, 4.1666666667vw, 80px);
  }
}
.l-footerNew__logoMain img {
  width: 100%;
  height: auto;
}
.l-footerNew__top {
  display: none;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .l-footerNew__top {
    display: flex;
    gap: clamp(32px, 3.3333333333vw, 64px);
  }
}
.l-footerNew__nav {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .l-footerNew__nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(30px, 3.125vw, 60px) clamp(32px, 3.125vw, 64px);
  }
}
.l-footerNew__mainList {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 0.6770833333vw, 20px);
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (min-width: 1920px) {
  .l-footerNew__mainList {
    font-size: 16px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .l-footerNew__mainList {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footerNew__mainList {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .l-footerNew__mainList {
    margin-bottom: 0;
  }
}
.l-footerNew__navAreaBoxes {
  display: flex;
  flex-direction: column;
  gap: 62px;
}
.l-footerNew__subListBox {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.0416666667vw, 20px);
}
.l-footerNew__subListTtlEn {
  font-family: var(--font-family-barlow);
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 1920px) {
  .l-footerNew__subListTtlEn {
    font-size: 26px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .l-footerNew__subListTtlEn {
    font-size: 1.3541666667vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footerNew__subListTtlEn {
    font-size: 6.9333333333vw;
  }
}
.l-footerNew__subListTtlJa {
  color: var(--color-text-body-tertiary);
}
@media screen and (min-width: 1920px) {
  .l-footerNew__subListTtlJa {
    font-size: 12px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .l-footerNew__subListTtlJa {
    font-size: 0.625vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footerNew__subListTtlJa {
    font-size: 3.2vw;
  }
}
.l-footerNew__subList {
  display: flex;
  flex-direction: column;
  gap: clamp(7px, 0.78125vw, 15px);
}
@media screen and (min-width: 1920px) {
  .l-footerNew__subListItem {
    font-size: 16px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .l-footerNew__subListItem {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footerNew__subListItem {
    font-size: 4.2666666667vw;
  }
}
.l-footerNew__logoAim {
  width: clamp(77px, 8.0208333333vw, 154px);
  margin: 20px auto 0;
}
@media screen and (min-width: 768px) {
  .l-footerNew__logoAim {
    margin: initial;
  }
}
.l-footerNew__logoAim img {
  width: 100%;
  height: auto;
}
.l-footerNew__snsList {
  max-width: 53.8666666667vw;
  margin: 0 auto;
  display: flex;
  gap: 6.4vw;
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .l-footerNew__snsList {
    max-width: 10.5208333333vw;
    margin: initial;
    gap: clamp(10px, 1.0416666667vw, 20px);
    padding: clamp(15px, 1.5625vw, 30px) 0 clamp(15px, 1.0416666667vw, 30px);
  }
}
.l-footerNew__bottom {
  border-top: 1px solid var(--color-white);
  display: flex;
  flex-direction: column;
  letter-spacing: initial;
  padding-top: clamp(15px, 1.5625vw, 30px);
}
@media screen and (min-width: 1920px) {
  .l-footerNew__bottom {
    font-size: 14px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .l-footerNew__bottom {
    font-size: 0.7291666667vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footerNew__bottom {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .l-footerNew__bottom {
    padding-top: clamp(10px, 1.0416666667vw, 30px);
    flex-direction: row;
    justify-content: space-between;
  }
}
.l-footerNew__copyright {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .l-footerNew__copyright {
    text-align: center;
  }
}

.p-mv {
  height: 84.8vw;
  background: url(../img/top/mv_bg_sp.jpg) no-repeat top center/cover;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-mv {
    height: 47.3958333333vw;
    background-image: url(../img/top/mv_bg.jpg);
    overflow: visible;
  }
}
@media screen and (min-width: 768px) {
  .p-mv--contents {
    margin-top: clamp(-64px, -5vw, -96px);
  }
}
@media screen and (min-width: 768px) {
  .p-mv--contents .p-mv__cta {
    top: 6.5vw;
  }
}
@media screen and (min-width: 1023px) {
  .p-mv--contents .p-mv__cta {
    top: 8.0808080808vw;
  }
}
.p-mv picture, .p-mv img {
  display: block;
  width: 100%;
  height: auto;
}
.p-mv__copy {
  width: 89.3333333333vw;
  top: 5.3333333333vw;
  left: 5.3333333333vw;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-mv__copy {
    width: 46.3541666667vw;
    top: 8.0808080808vw;
    left: 10.9375vw;
  }
}
.p-mv__copy img {
  width: 100%;
  height: auto;
}
.p-mv__people {
  width: 77.3333333333vw;
  bottom: -2.6666666667vw;
  left: 21.0666666667vw;
  position: absolute;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-mv__people {
    width: 42.5vw;
    bottom: -0.2083333333vw;
    left: 18.6979166667vw;
  }
}
.p-mv__cta {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-mv__cta {
    display: block;
    width: 36vw;
    padding: 1.0416666667vw 1.3541666667vw 1.7708333333vw;
    background: var(--color-white);
    position: absolute;
    top: 3vw;
    right: 0;
    z-index: 3;
    box-shadow: var(--shadow-box);
  }
}
@media screen and (min-width: 1023px) {
  .p-mv__cta {
    width: 25vw;
    top: 8.0808080808vw;
    right: 10.9375vw;
  }
}
.p-mv__ctaForm {
  font-size: 14px;
  color: var(--color-text-body);
  /* 待機状態 */
}
@media screen and (min-width: 768px) {
  .p-mv__ctaForm {
    font-size: clamp(10px, 0.7291666667vw, 14px);
  }
}
.p-mv__ctaForm a {
  color: #CF0908 !important;
  text-decoration: underline !important;
}
.p-mv__ctaForm input[type=checkbox] + label {
  color: #000 !important;
}
.p-mv__ctaForm .satori__custom_form .satori__input_group label:first-child {
  color: #000;
}
.p-mv__ctaForm .satori__custom_form .satori__input_group input[type=text],
.p-mv__ctaForm .satori__custom_form .satori__input_group input[type=tel],
.p-mv__ctaForm .satori__custom_form .satori__input_group input[type=password],
.p-mv__ctaForm .satori__custom_form .satori__input_group input[type=email],
.p-mv__ctaForm .satori__custom_form .satori__input_group input[type=number],
.p-mv__ctaForm .satori__custom_form .satori__input_group input[type=url],
.p-mv__ctaForm .satori__custom_form .satori__input_group textarea {
  height: auto;
  padding: 4px 8px;
}
.p-mv__ctaForm .satori__custom_form_3daf85ad94393d25_css .satori__input_group {
  padding: clamp(4px, 0.4166666667vw, 8px) 4px;
}
.p-mv__ctaForm .satori__custom_form .satori__btn {
  width: 100%;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #CF0908;
  color: #CF0908;
  transition: all 0.3s;
}
.p-mv__ctaForm .satori__custom_form .satori__btn:hover {
  opacity: 1;
  color: #fff;
  background: #CF0908;
}
.p-mv__ctaForm .satori__custom_form .satori__input_group input[type=text],
.p-mv__ctaForm .satori__custom_form .satori__input_group input[type=tel],
.p-mv__ctaForm .satori__custom_form .satori__input_group input[type=password],
.p-mv__ctaForm .satori__custom_form .satori__input_group input[type=email],
.p-mv__ctaForm .satori__custom_form .satori__input_group input[type=number],
.p-mv__ctaForm .satori__custom_form .satori__input_group input[type=url],
.p-mv__ctaForm .satori__custom_form .satori__input_group textarea {
  background-color: #fff;
}
.p-mv__ctaForm .satori__message {
  margin: 0;
  font-size: clamp(8px, 0.625vw, 12px);
  margin: 0 !important;
  text-align: left !important;
  letter-spacing: initial !important;
}

.p-logos {
  background: var(--color-white);
}
.p-logos .swiper-wrapper {
  transition-timing-function: linear;
}
.p-logos .swiper-wrapper .swiper-slide {
  height: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-logos .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: auto;
}

.p-strength {
  padding: 60px 0 100px;
  letter-spacing: initial;
  background: url(../img/top/strength_bg.jpg) no-repeat top center/cover;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-strength {
    padding: clamp(60px, 6.25vw, 120px) 0 clamp(100px, 13.0208333333vw, 250px);
  }
}
.p-strength__inner {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-strength__inner {
    flex-direction: row;
    width: 75%;
    max-width: 1440px;
    margin: 0 auto;
    align-items: center;
    gap: 5%;
  }
}
.p-strength__header {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-strength__header {
    display: initial;
    flex: 1;
  }
}
.p-strength__ttl {
  order: 1;
}
.p-strength__ttl picture {
  display: block;
  width: 100%;
}
.p-strength__ttl img, .p-strength__ttl svg {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.p-strength__btnArea {
  order: 3;
  width: 100%;
  max-width: 78.6666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-strength__btnArea {
    width: 20.8333333333vw;
    max-width: 400px;
    margin: 50px 0 0 0;
  }
}
.p-strength__deco {
  width: 100%;
  position: absolute;
  bottom: -2.6666666667vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-strength__deco {
    max-width: 1824px;
    bottom: -0.5208333333vw;
    width: 95%;
    z-index: 1;
  }
}
.p-strength__deco img {
  width: 100%;
  height: auto;
}
.p-strength__imgArea {
  order: 2;
}
@media screen and (min-width: 768px) {
  .p-strength__imgArea {
    width: 62.8571428571%;
  }
}
.p-strength__imgBox {
  width: 100%;
  aspect-ratio: 16/9;
}
.p-strength__imgBox iframe {
  width: 100%;
  height: 100%;
}

.p-achievements {
  letter-spacing: initial;
  padding: 60px 0;
  background: url(../img/top/achievements_bg_sp.jpg) no-repeat top -2px center/cover;
}
@media screen and (min-width: 768px) {
  .p-achievements {
    background-image: url(../img/top/achievements_bg.jpg);
    background-position: top center;
    padding: clamp(60px, 6.25vw, 120px) 0;
  }
}
.p-achievements__inner {
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .p-achievements__inner {
    width: 89.5833333333%;
    padding: 0 20px;
    max-width: 1720px;
    margin: 0 auto;
  }
}
.p-achievements__ttl {
  font-family: var(--font-family-shippori);
  font-weight: 400;
  text-align: center;
  line-height: 1.3;
}
@media screen and (min-width: 1920px) {
  .p-achievements__ttl {
    font-size: 60px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-achievements__ttl {
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 767px) {
  .p-achievements__ttl {
    font-size: 5.8666666667vw;
  }
}
@media screen and (min-width: 1920px) {
  .p-achievements__ttl .large {
    font-size: 80px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-achievements__ttl .large {
    font-size: 4.1666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-achievements__ttl .large {
    font-size: 12.8vw;
  }
}
@media screen and (min-width: 1920px) {
  .p-achievements__ttl .medium {
    font-size: 70px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-achievements__ttl .medium {
    font-size: 3.6458333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-achievements__ttl .medium {
    font-size: 7.4666666667vw;
  }
}
.p-achievements__list {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .p-achievements__list {
    display: grid;
    margin-top: clamp(50px, 5.2083333333vw, 100px);
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-achievements__item {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .p-achievements__item {
    padding: 0 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.p-achievements__item:nth-child(2), .p-achievements__item:nth-child(3) {
  border-top: 1px solid var(--color-white);
}
@media screen and (min-width: 768px) {
  .p-achievements__item:nth-child(2), .p-achievements__item:nth-child(3) {
    border-top: none;
    border-left: 1px solid var(--color-white);
  }
}
.p-achievements__itemTtl {
  font-family: var(--font-family-shippori);
  text-align: center;
}
@media screen and (min-width: 1920px) {
  .p-achievements__itemTtl {
    font-size: 32px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-achievements__itemTtl {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-achievements__itemTtl {
    font-size: 5.3333333333vw;
  }
}
.p-achievements__itemNum {
  line-height: 1;
  font-family: var(--font-family-shippori);
  text-align: center;
}
@media screen and (min-width: 1920px) {
  .p-achievements__itemNum {
    font-size: 120px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-achievements__itemNum {
    font-size: 6.25vw;
  }
}
@media screen and (max-width: 767px) {
  .p-achievements__itemNum {
    font-size: 21.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-achievements__itemNum {
    text-align: initial;
  }
}
.p-achievements__itemNum span {
  font-family: var(--font-family-poppins);
}
@media screen and (min-width: 1920px) {
  .p-achievements__itemNum span {
    font-size: 240px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-achievements__itemNum span {
    font-size: 12.5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-achievements__itemNum span {
    font-size: 40vw;
  }
}
@media screen and (min-width: 1920px) {
  .p-achievements__itemNum--small {
    font-size: 80px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-achievements__itemNum--small {
    font-size: 4.1666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-achievements__itemNum--small {
    font-size: 13.3333333333vw;
  }
}
.p-achievements__itemTxt {
  font-weight: 700;
  line-height: 2;
  margin-top: 10px;
}
@media screen and (min-width: 1920px) {
  .p-achievements__itemTxt {
    font-size: 18px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-achievements__itemTxt {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .p-achievements__itemTxt {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-achievements__itemTxt {
    max-width: 350px;
    line-height: 2.2222222222;
    margin-top: 0;
  }
}
.p-achievements__note {
  text-align: right;
  padding: 0 0 20px 0;
}
@media screen and (min-width: 1920px) {
  .p-achievements__note {
    font-size: 14px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-achievements__note {
    font-size: 0.7291666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-achievements__note {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-achievements__note {
    padding: 20px 0 0;
  }
}
.p-achievements__btnArea {
  max-width: 78.6666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-achievements__btnArea {
    width: 19.7916666667vw;
    max-width: 380px;
    margin: clamp(40px, 5.2083333333vw, 80px) auto 0;
  }
}

.p-seminar {
  letter-spacing: initial;
  color: var(--color-text-body);
  background-color: var(--color-white);
  padding: clamp(60px, 6.25vw, 120px) 0;
}
.p-seminar__header {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .p-seminar__header {
    padding: 0;
  }
}
.p-seminar__lead {
  font-weight: 700;
  line-height: 2.2222222222;
  margin-top: 1.0416666667vw;
}
@media screen and (min-width: 1920px) {
  .p-seminar__lead {
    font-size: 18px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-seminar__lead {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .p-seminar__lead {
    font-size: 3.7333333333vw;
  }
}
.p-seminar__body {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-seminar__body {
    margin-top: clamp(30px, 3.125vw, 60px);
  }
}
.p-seminar__listArea {
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .p-seminar__listArea {
    overflow: hidden;
    margin-left: 0;
  }
}
.p-seminar__listArea.--slide1 {
  margin-right: 20px;
}
@media screen and (min-width: 768px) {
  .p-seminar__listArea.--slide1 {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-seminar__listArea .swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.0833333333vw;
  }
}
.p-seminar__listArea .swiper .swiper-pagination {
  text-align: center;
  margin-top: 36px;
  margin-right: 20px;
}
@media screen and (min-width: 768px) {
  .p-seminar__listArea .swiper .swiper-pagination {
    display: none;
  }
}
.p-seminar__listArea .swiper .swiper-pagination .swiper-pagination-bullet {
  display: inline-block;
  opacity: 1;
  width: 10px;
  height: 10px;
  background: #D9D9D9;
  border-radius: 50%;
  margin: 0 5px;
}
.p-seminar__listArea .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-text-body-emphasis);
}
.p-seminar__btnArea {
  max-width: 78.6666666667vw;
  margin: 60px auto 0;
}
@media screen and (min-width: 768px) {
  .p-seminar__btnArea {
    width: 19.7916666667vw;
    max-width: 380px;
    margin: clamp(30px, 3.125vw, 60px) auto 0;
  }
}

.p-consulting {
  letter-spacing: initial;
  padding: 32px 0;
  background: url(../img/top/consulting_bg_top_sp.jpg) no-repeat top -2px center/100% auto, url(../img/top/consulting_bg_sp.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .p-consulting {
    padding: clamp(60px, 6.25vw, 120px) 0;
    background: url(../img/top/consulting_bg_top.jpg) no-repeat top center/100% auto, url(../img/top/consulting_bg.jpg) no-repeat center center/cover;
  }
}
.p-consulting img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-consulting__ttl {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.p-consulting__ttlEn {
  font-family: var(--font-family-poppins);
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 1920px) {
  .p-consulting__ttlEn {
    font-size: 140px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-consulting__ttlEn {
    font-size: 7.2916666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-consulting__ttlEn {
    font-size: 12.8vw;
  }
}
.p-consulting__ttlJa {
  font-family: var(--font-family-shippori);
  font-weight: 400;
  line-height: 1.4375;
  margin-top: 14px;
}
@media screen and (min-width: 1920px) {
  .p-consulting__ttlJa {
    font-size: 32px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-consulting__ttlJa {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-consulting__ttlJa {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 768px) {
  .p-consulting__ttlJa {
    margin-top: 0;
  }
}
.p-consulting__lead {
  font-weight: 700;
  line-height: 1.6;
  margin-top: clamp(40px, 3.125vw, 60px);
}
@media screen and (min-width: 1920px) {
  .p-consulting__lead {
    font-size: 16px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-consulting__lead {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-consulting__lead {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-consulting__lead {
    line-height: 2.2222222222;
  }
}
.p-consulting__body {
  margin-top: clamp(40px, 4.1666666667vw, 80px);
}
.p-consulting__flow {
  color: var(--color-text-body);
  background-color: var(--color-white);
  padding: 9.552238806% 5.9701492537%;
}
@media screen and (min-width: 768px) {
  .p-consulting__flow {
    padding: clamp(25px, 2.6041666667vw, 50px) clamp(40px, 4.1666666667vw, 80px);
  }
}
.p-consulting__flowTtlEn {
  font-family: var(--font-family-poppins);
  font-weight: 400;
  color: var(--color-text-body-tertiary);
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 1920px) {
  .p-consulting__flowTtlEn {
    font-size: 20px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-consulting__flowTtlEn {
    font-size: 1.0416666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-consulting__flowTtlEn {
    font-size: 5.3333333333vw;
  }
}
.p-consulting__flowTtlJa {
  font-family: var(--font-family-shippori);
  font-weight: 400;
  line-height: 1.4333333333;
  text-align: center;
}
@media screen and (min-width: 1920px) {
  .p-consulting__flowTtlJa {
    font-size: 30px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-consulting__flowTtlJa {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 767px) {
  .p-consulting__flowTtlJa {
    font-size: 5.3333333333vw;
  }
}
.p-consulting__flowList {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10.6666666667vw;
  margin-top: 10.6666666667vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-consulting__flowList {
    gap: clamp(20px, 2.0833333333vw, 40px);
    margin-top: clamp(30px, 3.125vw, 40px);
    max-width: 88.7096774194%;
  }
}
.p-consulting__flowList::before {
  display: none;
  content: "";
  width: 1px;
  height: calc(100% - 200px);
  background-color: var(--color-border);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 100px);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-consulting__flowList::before {
    display: block;
  }
}
.p-consulting__flowItem {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-consulting__flowItem {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 2.5vw, 48px);
  }
}
@media screen and (min-width: 768px) {
  .p-consulting__flowItem:nth-child(2n) {
    flex-direction: row-reverse;
  }
  .p-consulting__flowItem:nth-child(2n) .p-consulting__flowItemNum::before {
    left: auto;
    right: -100%;
  }
}
.p-consulting__flowItemImg {
  order: 2;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-consulting__flowItemImg {
    flex: 1;
  }
}
.p-consulting__flowItemNum {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  color: var(--color-white);
  background-color: var(--color-text-body);
  font-family: var(--font-family-poppins);
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  order: 1;
  margin: 0 auto 20px;
}
@media screen and (min-width: 1920px) {
  .p-consulting__flowItemNum {
    font-size: 32px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-consulting__flowItemNum {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-consulting__flowItemNum {
    font-size: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-consulting__flowItemNum {
    order: 2;
    width: clamp(40px, 4.1666666667vw, 80px);
    height: clamp(40px, 4.1666666667vw, 80px);
    margin-bottom: 0;
  }
}
.p-consulting__flowItemNum::before {
  content: "";
  display: block;
  width: 3px;
  height: 20px;
  background-color: var(--color-text-body);
  position: absolute;
  left: 50%;
  bottom: -20px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-consulting__flowItemNum::before {
    width: 100%;
    height: 3px;
    top: 50%;
    left: -100%;
    transform: translateY(-50%);
  }
}
.p-consulting__flowItemBody {
  order: 3;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-consulting__flowItemBody {
    margin-top: 0;
    flex: 1;
  }
}
.p-consulting__flowItemTtl {
  font-family: var(--font-family-shippori);
  font-weight: 400;
  line-height: 1.4642857143;
}
@media screen and (min-width: 1920px) {
  .p-consulting__flowItemTtl {
    font-size: 28px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-consulting__flowItemTtl {
    font-size: 1.4583333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-consulting__flowItemTtl {
    font-size: 5.8666666667vw;
  }
}
.p-consulting__flowItemTxt {
  font-weight: 700;
  line-height: 1.6;
  margin-top: 16px;
}
@media screen and (min-width: 1920px) {
  .p-consulting__flowItemTxt {
    font-size: 16px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-consulting__flowItemTxt {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-consulting__flowItemTxt {
    font-size: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .p-consulting__flowItemTxt {
    line-height: 1.875;
    margin-top: clamp(12px, 1.25vw, 24px);
  }
}
.p-consulting__btnArea {
  max-width: 74.6666666667vw;
  margin: 40px auto 0;
}
@media screen and (min-width: 768px) {
  .p-consulting__btnArea {
    max-width: clamp(160px, 19.7916666667vw, 380px);
    margin: clamp(40px, 3.125vw, 60px) auto 0;
  }
}

.p-sectionImg img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.p-caseStudy {
  letter-spacing: initial;
  color: var(--color-text-body);
  padding: clamp(60px, 6.25vw, 120px) 0;
  background-color: var(--color-white);
}
.p-caseStudy__header {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .p-caseStudy__header {
    padding: 0;
  }
}
.p-caseStudy__body {
  margin-top: 56px;
}
@media screen and (min-width: 768px) {
  .p-caseStudy__body {
    margin-top: clamp(30px, 3.125vw, 60px);
  }
}
.p-caseStudy__listArea {
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .p-caseStudy__listArea {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3.125vw, 60px);
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-caseStudy__listArea .swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.0833333333vw;
  }
}
.p-caseStudy__listArea .swiper .swiper-pagination {
  text-align: center;
  margin-top: 36px;
  margin-right: 20px;
}
@media screen and (min-width: 768px) {
  .p-caseStudy__listArea .swiper .swiper-pagination {
    display: none;
  }
}
.p-caseStudy__listArea .swiper .swiper-pagination .swiper-pagination-bullet {
  display: inline-block;
  opacity: 1;
  width: 10px;
  height: 10px;
  background: #D9D9D9;
  border-radius: 50%;
  margin: 0 5px;
}
.p-caseStudy__listArea .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-text-body-emphasis);
}
.p-caseStudy__list {
  display: flex;
  flex-direction: column;
  gap: clamp(34px, 1.7708333333vw, 34px);
}
.p-caseStudy__btnArea {
  max-width: 78.6666666667vw;
  margin: 60px auto 0;
}
@media screen and (min-width: 768px) {
  .p-caseStudy__btnArea {
    width: 19.7916666667vw;
    max-width: 380px;
    margin: clamp(30px, 3.125vw, 60px) auto 0;
  }
}

.p-contents {
  letter-spacing: initial;
  padding: clamp(60px, 6.25vw, 120px) 0;
  background: url(../img/top/contents_bg.jpg) no-repeat top center/cover;
}
.p-contents__lead {
  text-align: center;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 30px;
}
@media screen and (min-width: 1920px) {
  .p-contents__lead {
    font-size: 16px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-contents__lead {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-contents__lead {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-contents__lead {
    line-height: 2;
    margin-top: clamp(20px, 2.0833333333vw, 40px);
  }
}
.p-contents__body {
  margin-top: clamp(30px, 3.125vw, 60px);
}
.p-contents__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-contents__list {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3.125vw, 60px);
  }
}
.p-contents__btnArea {
  max-width: 78.6666666667vw;
  margin: 40px auto 0;
}
@media screen and (min-width: 768px) {
  .p-contents__btnArea {
    max-width: clamp(240px, 25vw, 480px);
    width: 100%;
    margin: clamp(30px, 3.125vw, 60px) auto 0;
  }
}
@media screen and (min-width: 768px) {
  .p-contents__btnArea--small {
    max-width: clamp(240px, 19.7916666667vw, 380px);
  }
}

@media screen and (min-width: 768px) {
  .p-btnHeaderSP {
    display: none;
  }
}
.p-btnHeaderSP--margin {
  margin-top: clamp(64px, 5vw, 96px);
}
.p-btnHeaderSP a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: initial;
  font-weight: 700;
  line-height: 2;
  color: var(--color-white);
  background: var(--color-gradient-red);
  padding: 10px;
}

.p-downLoadSP {
  background: var(--color-white);
  padding-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-downLoadSP {
    display: none;
  }
}
.p-downLoadSP__inner {
  max-width: 330px;
  margin: 0 auto;
}
.p-downLoadSP__banner img {
  width: 100%;
  height: auto;
}

.p-contentsHeader {
  letter-spacing: initial;
  font-family: var(--font-family-shippori);
  color: var(--color-text-body);
  background-color: #F1ECBE;
  padding: 8px 16px;
  line-height: 1.6;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1920px) {
  .p-contentsHeader {
    font-size: 22px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-contentsHeader {
    font-size: 1.1458333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-contentsHeader {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-contentsHeader {
    padding: 0.8333333333vw;
    margin-top: clamp(64px, 5vw, 96px);
  }
}
.p-contentsHeader .color {
  color: var(--color-text-body-emphasis);
}
.p-contentsHeader .bg {
  background: var(--color-gradient-red);
  color: var(--color-white);
  padding: 2px 6px;
}
@media screen and (min-width: 768px) {
  .p-contentsHeader .bg {
    padding: 6px;
  }
}

.p-manager {
  padding: 40px 0;
  color: var(--color-white);
  background: var(--color-text-body-emphasis) url(../img/contents/manager_bg.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .p-manager {
    padding: clamp(40px, 6.9444444444vw, 100px) 0;
  }
}
.p-manager__header {
  font-family: var(--font-family-shippori);
  text-align: center;
}
.p-manager__lead {
  margin-bottom: 10px;
}
@media screen and (min-width: 1920px) {
  .p-manager__lead {
    font-size: 28px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-manager__lead {
    font-size: 1.4583333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-manager__lead {
    font-size: 4.8vw;
  }
}
.p-manager__txt {
  line-height: 2;
}
@media screen and (min-width: 1920px) {
  .p-manager__txt {
    font-size: 40px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-manager__txt {
    font-size: 2.0833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-manager__txt {
    font-size: 4.8vw;
  }
}
.p-manager__txt span {
  display: inline-block;
  line-height: 1.6;
  padding: 0 10px;
  color: var(--color-text-body);
  background-color: var(--color-white);
  margin: 2px 4px 2px 0;
}
@media screen and (min-width: 1920px) {
  .p-manager__txt span {
    font-size: 40px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-manager__txt span {
    font-size: 2.0833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-manager__txt span {
    font-size: 5.8666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-manager__txt span {
    margin: 4px 10px;
  }
}
.p-manager__ttl {
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (min-width: 1920px) {
  .p-manager__ttl {
    font-size: 60px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-manager__ttl {
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 767px) {
  .p-manager__ttl {
    font-size: 7.4666666667vw;
  }
}
.p-manager__body {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-manager__body {
    margin-top: 52px;
  }
}
.p-manager__img img, .p-manager__img picture {
  width: 100%;
  height: auto;
}

.p-managerPlobrem {
  color: var(--color-text-body);
  background: url(../img/contents/managerPlobrem_bg.jpg) no-repeat center center/cover;
  padding-bottom: 46px;
}
@media screen and (min-width: 768px) {
  .p-managerPlobrem {
    padding-bottom: 72px;
  }
}
.p-managerPlobrem__header {
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .p-managerPlobrem__header {
    margin-bottom: 58px;
  }
}
.p-managerPlobrem__header img {
  width: 100%;
  height: auto;
}
.p-managerPlobrem__list {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
@media screen and (min-width: 768px) {
  .p-managerPlobrem__list {
    gap: 92px;
  }
}
.p-managerPlobrem__footer {
  font-family: var(--font-family-shippori);
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 65px;
}
@media screen and (min-width: 1920px) {
  .p-managerPlobrem__footer {
    font-size: 40px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-managerPlobrem__footer {
    font-size: 2.0833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-managerPlobrem__footer {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 768px) {
  .p-managerPlobrem__footer {
    margin-top: 148px;
  }
}
.p-managerPlobrem__footer::before {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background-color: var(--color-white);
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .p-managerPlobrem__footer::before {
    height: 100px;
    background-color: var(--color-text-body);
    top: 64px;
  }
}
.p-managerPlobrem__footer span {
  color: var(--color-text-body-emphasis);
}

.p-data {
  padding: 60px 0;
  color: var(--color-text-body);
  background-color: var(--color-bg-body-secondary);
}
@media screen and (min-width: 768px) {
  .p-data {
    padding: 120px 0;
  }
}
.p-data__body {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-data__body {
    margin-top: 60px;
  }
}
.p-data__imgArea img {
  width: 100%;
  height: auto;
}
.p-data__btnArea {
  max-width: 78.6666666667vw;
  margin: 60px auto 0;
}
@media screen and (min-width: 768px) {
  .p-data__btnArea {
    width: 19.7916666667vw;
    max-width: 380px;
    margin: clamp(30px, 3.125vw, 60px) auto 0;
  }
}

.p-mvUnder {
  height: 205px;
  background-color: var(--color-white);
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mvUnder {
    height: 250px;
  }
}
.p-mvUnder::before {
  content: "";
  display: block;
  width: 234px;
  height: 217px;
  background: url(../img/common/mvUnder_bg_sp.svg) no-repeat top center/contain;
  position: absolute;
  bottom: 0;
  right: -20px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-mvUnder::before {
    background: url(../img/common/mvUnder_bg.svg) no-repeat top center/contain;
    width: 606px;
    height: 560px;
    top: 0;
    right: 0;
    bottom: auto;
  }
}
.p-mvUnder--spShort {
  height: 180px;
}
@media screen and (min-width: 768px) {
  .p-mvUnder--spShort {
    height: 205px;
  }
}
.p-mvUnder__inner {
  height: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.p-mvUnder__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-mvUnder__content {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 40px;
  }
}
.p-mvUnder__ttl {
  font-family: var(--font-family-shippori);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.45;
}
@media screen and (min-width: 1920px) {
  .p-mvUnder__ttl {
    font-size: 40px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-mvUnder__ttl {
    font-size: 2.0833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mvUnder__ttl {
    font-size: 7.2vw;
  }
}
.p-mvUnder__txt {
  font-weight: 700;
}
@media screen and (min-width: 1920px) {
  .p-mvUnder__txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-mvUnder__txt {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mvUnder__txt {
    font-size: 3.7333333333vw;
  }
}
.p-mvUnder__en {
  color: var(--color-text-body-emphasis);
  font-family: var(--font-family-poppins);
  font-weight: 500;
  line-height: 1.6666666667;
}
@media screen and (min-width: 1920px) {
  .p-mvUnder__en {
    font-size: 18px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-mvUnder__en {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mvUnder__en {
    font-size: 4.2666666667vw;
  }
}

.p-pickUp {
  padding-top: 40px;
  background-color: var(--color-bg-body-secondary);
}
@media screen and (min-width: 768px) {
  .p-pickUp {
    padding-top: 80px;
  }
}
.p-pickUp__body {
  margin-top: 32px;
}
.p-pickUp__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-pickUp__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-pickUp__list a {
  display: block;
  background-color: var(--color-white);
  aspect-ratio: 293/154;
  overflow: hidden;
}
.p-pickUp__list a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-archiveColumn {
  letter-spacing: initial;
  padding: 40px 0;
  background-color: var(--color-bg-body-secondary);
}
@media screen and (min-width: 768px) {
  .p-archiveColumn {
    padding: 80px 0;
  }
}
.p-archiveColumn__body {
  margin-top: 32px;
}
.p-archiveColumn__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-archiveColumn__content {
    flex-direction: row;
  }
}
.p-archiveColumn__listArea {
  flex: 1;
}
.p-archiveColumn__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px 26px;
}
@media screen and (min-width: 768px) {
  .p-archiveColumn__list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 100%;
  }
}
.p-archiveColumn__pagination {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-archiveColumn__pagination {
    margin-top: 80px;
  }
}
.p-archiveColumn__sideBarArea {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-archiveColumn__sideBarArea {
    width: 360px;
    max-width: 30%;
  }
}

.p-singleColumn {
  letter-spacing: initial;
  padding: 40px 0;
  background-color: var(--color-bg-body-secondary);
}
@media screen and (min-width: 768px) {
  .p-singleColumn {
    padding: 80px 0;
  }
}
.p-singleColumn__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-singleColumn__inner {
    flex-direction: row;
    gap: 40px;
  }
}
.p-singleColumn__main {
  flex: 1;
}
.p-singleColumn__sideBarArea {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-singleColumn__sideBarArea {
    width: 360px;
    max-width: 30%;
  }
}
.p-singleColumn__box {
  background-color: var(--color-white);
  padding: 24px 6.9970845481%;
}
@media screen and (min-width: 768px) {
  .p-singleColumn__box {
    padding: 48px 5%;
  }
}
.p-singleColumn__header {
  margin-bottom: 24px;
}
.p-singleColumn__ttl {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text-body) !important;
}
@media screen and (min-width: 768px) {
  .p-singleColumn__ttl {
    font-size: 32px;
  }
}
.p-singleColumn__date {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-singleColumn__date {
    font-size: 18px;
  }
}
.p-singleColumn__categoryTag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.p-singleColumn__category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.p-singleColumn__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.p-singleColumn__thumbnail {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-singleColumn__thumbnail {
    margin-bottom: 48px;
  }
}
.p-singleColumn__thumbnail img {
  width: 100%;
  height: auto;
}
.p-singleColumn__lead {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-singleColumn__lead {
    margin-bottom: 80px;
  }
}
.p-singleColumn #toc_container {
  width: 100%;
  border-color: var(--color-text-body-tertiary);
  padding: 24px 4.1666666667%;
  margin: 48px 0;
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-singleColumn #toc_container {
    margin: 80px 0;
  }
}
.p-singleColumn #toc_container p.toc_title {
  text-align: left;
  padding-left: 34px;
  position: relative;
}
.p-singleColumn #toc_container p.toc_title::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/common/i_content.svg) no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 2px;
}
.p-singleColumn #toc_container a {
  color: var(--color-text-body-emphasis);
  text-decoration: underline;
  padding-left: 16px;
  position: relative;
}
.p-singleColumn #toc_container a::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.p-singleColumn__author {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-singleColumn__author {
    margin-top: 40px;
  }
}

.p-archive {
  letter-spacing: initial;
  background-color: var(--color-bg-body-secondary);
}
.p-archive__taxonomyArea {
  padding: 50px 0 30px;
}
.p-archive__taxonomyBody {
  max-width: 960px;
  margin: 40px auto 0;
}
@media screen and (min-width: 768px) {
  .p-archive__taxonomyBody {
    margin-top: 20px;
  }
}
.p-archive__taxonomyTitle {
  max-width: 86px;
  font-size: 18px;
  font-weight: 700;
  background-color: var(--color-white);
  padding: 7px;
  text-align: center;
  border-top: 1px solid var(--color-text-body);
  border-right: 1px solid var(--color-text-body);
  border-left: 1px solid var(--color-text-body);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-archive__taxonomyTitle {
    max-width: 230px;
  }
}
.p-archive__taxonomyTitle::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  bottom: -1px;
}
.p-archive__taxonomyList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background-color: var(--color-white);
  padding: 10.6666666667vw 6.4vw;
  border: 1px solid var(--color-text-body);
}
@media screen and (min-width: 768px) {
  .p-archive__taxonomyList {
    grid-template-columns: repeat(4, 1fr);
    padding: 30px 40px;
  }
}
.p-archive__taxonomyList input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.p-archive__taxonomyList input[type=checkbox] + label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  gap: 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-archive__taxonomyList input[type=checkbox] + label {
    gap: 16px;
  }
}
.p-archive__taxonomyList input[type=checkbox] + label span {
  flex: 1;
}
.p-archive__taxonomyList input[type=checkbox] + label::before {
  content: "";
  display: block;
  width: 16px !important;
  height: 16px !important;
  background: var(--color-white);
  border: 1px solid var(--color-text-body);
  border-radius: 2px;
  margin-top: 2px;
}
.p-archive__taxonomyList input[type=checkbox]:checked + label::before {
  background: var(--color-text-body-emphasis);
  border-color: var(--color-text-body-emphasis);
}
.p-archive__taxonomyList input[type=checkbox]:checked + label::after {
  content: "";
  display: block;
  width: 5px;
  height: 8px;
  border-right: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
  transform: rotate(45deg);
  position: absolute;
  left: 6px;
  top: 4px;
  z-index: 2;
}
.p-archive__body {
  padding: 0 0 80px;
}
@media screen and (min-width: 768px) {
  .p-archive__body {
    padding: 50px 0 80px;
  }
}
.p-archive__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-archive__content {
    flex-direction: row;
  }
}
.p-archive__listArea {
  flex: 1;
}
.p-archive__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-archive__list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 100%;
  }
}
.p-archive__pagination {
  margin-top: 50px;
}

.p-singleSeminar {
  letter-spacing: initial;
  padding: 40px 0;
  background-color: var(--color-bg-body-secondary);
}
@media screen and (min-width: 768px) {
  .p-singleSeminar {
    padding: 80px 0;
  }
}
.p-singleSeminar .c-btn {
  color: var(--color-white);
}
.p-singleSeminar__box {
  background-color: var(--color-white);
  padding: 24px 4.6647230321%;
}
@media screen and (min-width: 768px) {
  .p-singleSeminar__box {
    padding: 48px 5%;
  }
}
.p-singleSeminar__header {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-singleSeminar__header {
    margin-bottom: 48px;
  }
}
.p-singleSeminar__ttl {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text-body) !important;
}
@media screen and (min-width: 768px) {
  .p-singleSeminar__ttl {
    font-size: 32px;
  }
}
.p-singleSeminar__date {
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-singleSeminar__date {
    font-size: 18px;
  }
}
.p-singleSeminar__date::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../img/common/i_calendar.svg) no-repeat center center/contain;
}
.p-singleSeminar__thumbnail {
  margin-bottom: 40px;
}
.p-singleSeminar__thumbnail img {
  width: 100%;
  height: auto;
}
.p-singleSeminar__btnArea {
  max-width: 360px;
  margin: 0 auto;
}
.p-singleSeminar__btnArea--mt {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-singleSeminar__btnArea--mt {
    margin-top: 60px;
  }
}
.p-singleSeminar__recommend {
  margin-top: 48px;
}
.p-singleSeminar__section {
  padding-top: 48px;
}
@media screen and (min-width: 768px) {
  .p-singleSeminar__section {
    padding-top: 80px;
  }
}
.p-singleSeminar__sectionTtl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  padding-left: 23px;
  position: relative;
  margin: 48px 0 32px;
}
@media screen and (min-width: 768px) {
  .p-singleSeminar__sectionTtl {
    margin: 80px 0 32px;
    line-height: 1.6;
  }
}
.p-singleSeminar__sectionTtl--mt0 {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-singleSeminar__sectionTtl--mt0 {
    margin-top: 0;
  }
}
.p-singleSeminar__sectionTtl::before {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background-color: var(--color-text-body-emphasis);
  position: absolute;
  left: 0;
  top: 0;
}
.p-singleSeminar__teacherList {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-singleSeminar__teacherList {
    gap: 60px;
  }
}
@media screen and (min-width: 768px) {
  .p-singleSeminar__teacherItem {
    min-height: 180px;
  }
}
.p-singleSeminar__overviewTable {
  padding: 0 24px 24px;
  background-color: var(--color-bg-body-secondary);
}
@media screen and (min-width: 768px) {
  .p-singleSeminar__overviewTable {
    padding: 0 40px 40px;
  }
}
.p-singleSeminar__overviewTable table {
  width: 100%;
  border-collapse: collapse;
}
.p-singleSeminar__overviewTable table tr {
  border-bottom: 1px solid var(--color-text-body-tertiary);
}
.p-singleSeminar__overviewTable table th, .p-singleSeminar__overviewTable table td {
  font-size: 16px;
  line-height: 1.6;
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .p-singleSeminar__overviewTable table th, .p-singleSeminar__overviewTable table td {
    padding: 32px 0;
  }
}
.p-singleSeminar__overviewTable table th {
  width: 100px;
  text-align: left;
  font-weight: 700;
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  .p-singleSeminar__overviewTable table th {
    width: 170px;
  }
}
.p-singleSeminar__overviewTable table td {
  line-height: 1.7;
}
.p-singleSeminar__form {
  max-width: 620px;
  margin: 0 auto;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .p-singleSeminar__form {
    font-size: 16px;
  }
}
.p-singleSeminar__form .satori__custom_form {
  font-size: 14px;
  background: transparent;
}
@media screen and (min-width: 768px) {
  .p-singleSeminar__form .satori__custom_form {
    font-size: 16px;
  }
}
.p-singleSeminar__form .satori__custom_form .satori__btn {
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #CF0908;
  color: #CF0908;
  transition: all 0.3s;
}
.p-singleSeminar__form .satori__custom_form .satori__btn:hover {
  opacity: 1;
  color: #fff;
  background: #CF0908;
}
.p-singleSeminar #toc_container {
  width: 100%;
  border-color: var(--color-text-body-tertiary);
  padding: 24px 4.1666666667%;
  margin: 48px 0;
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-singleSeminar #toc_container {
    margin: 80px 0;
  }
}
.p-singleSeminar #toc_container p.toc_title {
  text-align: left;
}
.p-singleSeminar #toc_container a {
  color: var(--color-text-body-emphasis);
  text-decoration: underline;
  padding-left: 16px;
  position: relative;
}
.p-singleSeminar #toc_container a::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.p-singleDownload {
  letter-spacing: initial;
  padding: 40px 0;
  background-color: var(--color-bg-body-secondary);
}
@media screen and (min-width: 768px) {
  .p-singleDownload {
    padding: 80px 0;
  }
}
.p-singleDownload__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-singleDownload__inner {
    flex-direction: row;
    gap: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-singleDownload__inner {
    gap: 50px;
  }
}
.p-singleDownload__main {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-singleDownload__formArea {
    width: 480px;
    max-width: 100%;
  }
}
.p-singleDownload__box {
  background-color: var(--color-white);
  padding: 24px 6.9970845481%;
}
@media screen and (min-width: 768px) {
  .p-singleDownload__box {
    padding: 48px 5%;
  }
}
.p-singleDownload__header {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-singleDownload__header {
    margin-bottom: 40px;
  }
}
.p-singleDownload__ttl {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text-body) !important;
}
@media screen and (min-width: 768px) {
  .p-singleDownload__ttl {
    font-size: 32px;
  }
}
.p-singleDownload__section {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .p-singleDownload__section {
    margin-top: 80px;
  }
}
.p-singleDownload__sectionTtl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  padding-left: 23px;
  position: relative;
  margin: 24px 0;
}
@media screen and (min-width: 768px) {
  .p-singleDownload__sectionTtl {
    line-height: 1.6;
  }
}
.p-singleDownload__sectionTtl::before {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background-color: var(--color-text-body-emphasis);
  position: absolute;
  left: 0;
  top: 0;
}
.p-singleDownload__slideArea {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-singleDownload__slideArea {
    max-width: 400px;
  }
}
@media screen and (min-width: 1024px) {
  .p-singleDownload__slideArea {
    max-width: 590px;
  }
}
.p-singleDownload__slideMain {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.p-singleDownload__slideItem {
  width: 100%;
  aspect-ratio: 590/332;
}
.p-singleDownload__slideItem img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-singleDownload__slidethumbnail {
  max-width: 510px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.p-singleDownload__thumbnailItem {
  width: 100%;
  aspect-ratio: 164/92;
}
.p-singleDownload__thumbnailItem img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-singleDownload__description {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-singleDownload__description {
    margin-top: 40px;
  }
}
.p-singleDownload__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  line-height: 1.5;
}
.p-singleDownload__listItem {
  position: relative;
  padding-left: 26px;
}
.p-singleDownload__listItem::before {
  content: "・";
  display: block;
  font-weight: 500;
  color: var(--color-text-body-emphasis);
  position: absolute;
  left: 0;
  top: 0;
}
.p-singleDownload__form {
  margin: 0 auto;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .p-singleDownload__form {
    font-size: 16px;
  }
}
.p-singleDownload__form .satori__custom_form {
  font-size: 14px;
  background: transparent;
}
@media screen and (min-width: 768px) {
  .p-singleDownload__form .satori__custom_form {
    font-size: 16px;
  }
}
.p-singleDownload__form .satori__custom_form .satori__btn {
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #CF0908;
  color: #CF0908;
  transition: all 0.3s;
}
.p-singleDownload__form .satori__custom_form .satori__btn:hover {
  opacity: 1;
  color: #fff;
  background: #CF0908;
}
.p-singleDownload__formBox {
  background-color: var(--color-white);
  padding: 24px 4.0816326531%;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .p-singleDownload__formBox {
    padding: 48px 5%;
  }
}
.p-singleDownload__formTtl {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
}

.p-page {
  color: var(--color-text-body);
  background-color: var(--color-bg-body-secondary);
  margin-top: clamp(64px, 5vw, 96px);
}
@media screen and (min-width: 768px) {
  .p-page {
    margin-top: clamp(64px, 5vw, 96px);
  }
}
.p-page__content {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .p-page__content {
    padding: 180px 0;
  }
}
.p-page__content h2 {
  line-height: 1.6;
  margin-bottom: 24px;
}
@media screen and (min-width: 1920px) {
  .p-page__content h2 {
    font-size: 46px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-page__content h2 {
    font-size: 2.3958333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-page__content h2 {
    font-size: 6.1333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-page__content h2 {
    margin-bottom: 48px;
  }
}
.p-page__content h2 span {
  display: inline-block;
}
.p-page__content h3 {
  line-height: 1.6;
  margin-bottom: 24px;
}
@media screen and (min-width: 1920px) {
  .p-page__content h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-page__content h3 {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .p-page__content h3 {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 768px) {
  .p-page__content h3 {
    margin-bottom: 48px;
  }
}
.p-page__content p {
  line-height: 1.7;
  margin: 24px 0;
}
@media screen and (min-width: 1920px) {
  .p-page__content p {
    font-size: 20px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-page__content p {
    font-size: 1.0416666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-page__content p {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-page__content p {
    margin: 48px 0;
  }
}
.p-page__btnArea {
  max-width: 380px;
  margin: 60px auto 0;
}
@media screen and (min-width: 768px) {
  .p-page__btnArea {
    margin: 120px auto 0;
  }
}

.p-archiveCase {
  letter-spacing: initial;
  padding: 40px 0;
  background-color: var(--color-bg-body-secondary);
}
@media screen and (min-width: 768px) {
  .p-archiveCase {
    padding: 80px 0;
  }
}
.p-archiveCase__body {
  margin-top: 32px;
}
.p-archiveCase__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-archiveCase__content {
    flex-direction: row;
  }
}
.p-archiveCase__listArea {
  flex: 1;
}
.p-archiveCase__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px 26px;
}
@media screen and (min-width: 768px) {
  .p-archiveCase__list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 100%;
  }
}
.p-archiveCase__pagination {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-archiveCase__pagination {
    margin-top: 80px;
  }
}
.p-archiveCase__sideBarArea {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-archiveCase__sideBarArea {
    width: 360px;
    max-width: 30%;
  }
}

.p-singleCase {
  letter-spacing: initial;
  padding: 40px 0;
  background-color: var(--color-bg-body-secondary);
}
@media screen and (min-width: 768px) {
  .p-singleCase {
    padding: 80px 0;
  }
}
.p-singleCase__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-singleCase__inner {
    flex-direction: row;
    gap: 40px;
  }
}
.p-singleCase__main {
  flex: 1;
}
.p-singleCase__sideBarArea {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-singleCase__sideBarArea {
    width: 360px;
    max-width: 30%;
  }
}
.p-singleCase__box {
  background-color: var(--color-white);
  padding: 24px 6.9970845481%;
}
@media screen and (min-width: 768px) {
  .p-singleCase__box {
    padding: 48px 5%;
  }
}
.p-singleCase__header {
  margin-bottom: 24px;
}
.p-singleCase__ttl {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text-body) !important;
}
@media screen and (min-width: 768px) {
  .p-singleCase__ttl {
    font-size: 32px;
  }
}
.p-singleCase__date {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-singleCase__date {
    font-size: 18px;
  }
}
.p-singleCase__categoryTag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.p-singleCase__category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.p-singleCase__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.p-singleCase__thumbnail {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-singleCase__thumbnail {
    margin-bottom: 48px;
  }
}
.p-singleCase__thumbnail img {
  width: 100%;
  height: auto;
}
.p-singleCase__lead {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-singleCase__lead {
    margin-bottom: 80px;
  }
}
.p-singleCase #toc_container {
  width: 100%;
  border-color: var(--color-text-body-tertiary);
  padding: 24px 4.1666666667%;
  margin: 48px 0;
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-singleCase #toc_container {
    margin: 80px 0;
  }
}
.p-singleCase #toc_container p.toc_title {
  text-align: left;
  padding-left: 34px;
  position: relative;
}
.p-singleCase #toc_container p.toc_title::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/common/i_content.svg) no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 2px;
}
.p-singleCase #toc_container a {
  color: var(--color-text-body-emphasis);
  text-decoration: underline;
  padding-left: 16px;
  position: relative;
}
.p-singleCase #toc_container a::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.p-singleCase__companyInfoArea {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-singleCase__companyInfoArea {
    margin-bottom: 40px;
  }
}
.p-singleCase__companyInfoAreaInner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-singleCase__companyInfoAreaInner {
    flex-direction: row;
  }
}
.p-singleCase__companyInfo {
  flex: 1;
}
.p-singleCase__companyLogo {
  width: 140px;
}
.p-singleCase__companyLogo img {
  width: 100%;
  height: auto;
}
.p-singleCase__companyName {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-singleCase__companyName {
    margin-top: 24px;
  }
}
.p-singleCase__companyInfoListArea {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-singleCase__companyInfoListArea {
    width: 440px;
    max-width: 50%;
  }
}
.p-singleCase__companyInfoList {
  border-top: 1px solid var(--color-border);
}
.p-singleCase__companyInfoItem {
  padding: 5px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
}
.p-singleCase__companyInfoItemTtl {
  font-weight: 700;
}

.p-together {
  padding: 40px 0;
  letter-spacing: initial;
  color: var(--color-white);
  background: url(../img/top/strength_bg.jpg) no-repeat top center/cover;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-together {
    padding: clamp(40px, 4.1666666667vw, 80px) 0;
  }
}
.p-together__content {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-together__content {
    max-width: 72.9166666667vw;
    margin: 0 auto;
    flex-direction: row;
    align-items: center;
    gap: 3.6764705882%;
  }
}
.p-together__txtArea {
  flex: 1;
}
.p-together__txtArea p {
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 1920px) {
  .p-together__txtArea p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-together__txtArea p {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .p-together__txtArea p {
    font-size: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .p-together__txtArea p {
    line-height: 2.8;
  }
}
.p-together__imgArea {
  width: 74.6666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-together__imgArea {
    width: 40.7352941176%;
    margin: initial;
  }
}
.p-together__imgArea img {
  width: 100%;
  height: auto;
}
.p-together__btnArea {
  max-width: 78.6666666667vw;
  margin: 40px auto 0;
}
@media screen and (min-width: 768px) {
  .p-together__btnArea {
    width: 19.7916666667vw;
    max-width: 380px;
    margin: clamp(30px, 3.125vw, 60px) auto 0;
  }
}
.p-together__btnArea .c-btn {
  color: var(--color-text-body-emphasis);
}

.p-flow {
  padding: 40px 0;
  letter-spacing: initial;
  position: relative;
  background: var(--color-bg-body-secondary);
}
@media screen and (min-width: 768px) {
  .p-flow {
    padding: clamp(50px, 5.2083333333vw, 100px) 0 clamp(30px, 3.125vw, 60px);
  }
}
.p-flow__lead {
  font-weight: 700;
  line-height: 1.8;
  margin-top: 24px;
}
@media screen and (min-width: 1920px) {
  .p-flow__lead {
    font-size: 18px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-flow__lead {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__lead {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-flow__lead {
    line-height: 2;
    margin-top: clamp(16px, 1.6666666667vw, 32px);
    text-align: center;
  }
}
.p-flow__body {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-flow__body {
    margin-top: clamp(32px, 3.3333333333vw, 64px);
  }
}
.p-flow__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  flex-direction: column;
  gap: 80px;
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 5.7142857143%;
  }
}
.p-flow__item:not(:last-child) {
  position: relative;
}
.p-flow__item:not(:last-child)::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/contact/arrow_flow.svg) no-repeat center center/contain;
  position: absolute;
  right: 50%;
  bottom: -50px;
  transform: translate(50%, 0) rotate(90deg);
}
@media screen and (min-width: 768px) {
  .p-flow__item:not(:last-child)::before {
    width: clamp(20px, 2.0833333333vw, 40px);
    height: clamp(20px, 2.0833333333vw, 40px);
    bottom: auto;
    right: -3.125vw;
    top: 50.7142857143%;
    transform: translate(0, -50%) rotate(0);
  }
}
@media screen and (min-width: 1920px) {
  .p-flow__item:not(:last-child)::before {
    right: -60px;
  }
}
.p-flow__btnArea {
  max-width: 78.6666666667vw;
  margin: 40px auto 0;
}
@media screen and (min-width: 768px) {
  .p-flow__btnArea {
    width: 19.7916666667vw;
    max-width: 380px;
    margin: clamp(30px, 3.125vw, 60px) auto 0;
  }
}
.p-flow__btnArea .c-btn {
  color: var(--color-text-body-emphasis);
}

.p-consultant {
  padding: 40px 0 40px;
  letter-spacing: initial;
  position: relative;
  background: var(--color-bg-body-secondary);
}
@media screen and (min-width: 768px) {
  .p-consultant {
    padding: clamp(30px, 3.125vw, 60px) 0 clamp(50px, 5.2083333333vw, 100px);
  }
}
.p-consultant img {
  width: 100%;
  height: auto;
}
.p-consultant__lead {
  font-weight: 700;
  line-height: 1.8;
  margin-top: 24px;
}
@media screen and (min-width: 1920px) {
  .p-consultant__lead {
    font-size: 18px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-consultant__lead {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .p-consultant__lead {
    font-size: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .p-consultant__lead {
    line-height: 2;
    margin-top: clamp(16px, 1.6666666667vw, 32px);
    text-align: center;
  }
}
.p-consultant__body {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-consultant__body {
    margin-top: clamp(32px, 3.3333333333vw, 64px);
  }
}
.p-consultant__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-consultant__list {
    max-width: 58.125vw;
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.1505376344%;
  }
}

.p-try {
  padding: 40px 0;
  background: url(../img/contact/bg_try.jpg) no-repeat top center/cover;
}
@media screen and (min-width: 768px) {
  .p-try {
    padding: clamp(40px, 4.1666666667vw, 80px) 0;
  }
}
.p-try__ttl {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  font-family: var(--font-family-shippori);
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 1920px) {
  .p-try__ttl .large {
    font-size: 38px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-try__ttl .large {
    font-size: 1.9791666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-try__ttl .large {
    font-size: 5.8666666667vw;
  }
}
@media screen and (min-width: 1920px) {
  .p-try__ttl .small {
    font-size: 32px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-try__ttl .small {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-try__ttl .small {
    font-size: 4.2666666667vw;
  }
}
.p-try__ttl .color {
  color: var(--color-text-body-emphasis);
}
.p-try__body {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-try__body {
    margin-top: clamp(24px, 2.5vw, 48px);
  }
}
.p-try__videoArea {
  max-width: clamp(440px, 45.8333333333vw, 880px);
  margin: 0 auto;
}
.p-try__videoWrap {
  width: 100%;
  aspect-ratio: 16/9;
}
.p-try__videoWrap iframe {
  width: 100%;
  height: 100%;
}

.p-form {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .p-form {
    padding: clamp(40px, 5.2083333333vw, 100px) 0;
  }
}
.p-form--bgGray {
  background-color: var(--color-bg-body-secondary);
}
.p-form__lead {
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: initial;
  margin-top: 24px;
}
@media screen and (min-width: 1920px) {
  .p-form__lead {
    font-size: 18px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-form__lead {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .p-form__lead {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-form__lead {
    line-height: 2;
    margin-top: clamp(16px, 1.6666666667vw, 32px);
    text-align: center;
  }
}
.p-form__body {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-form__body {
    margin-top: clamp(32px, 2.9166666667vw, 56px);
  }
}
.p-form__formArea {
  max-width: clamp(450px, 46.875vw, 900px);
  margin: 0 auto;
}
.p-form .satori__custom_form {
  font-size: 14px;
  background: transparent;
}
@media screen and (min-width: 768px) {
  .p-form .satori__custom_form {
    font-size: 16px;
  }
}
.p-form .satori__custom_form .satori__btn {
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #CF0908;
  color: #CF0908;
  transition: all 0.3s;
}
.p-form .satori__custom_form .satori__btn:hover {
  opacity: 1;
  color: #fff;
  background: #CF0908;
}

.p-diagnostics {
  padding: 60px 0;
  letter-spacing: initial;
  background: url(../img/diagnostics/diagnostics_bg.jpg) no-repeat top center/cover;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-diagnostics {
    padding: clamp(40px, 4.1666666667vw, 80px) 0;
  }
}
.p-diagnostics__txt {
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
  margin-top: 24px;
}
@media screen and (min-width: 1920px) {
  .p-diagnostics__txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-diagnostics__txt {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .p-diagnostics__txt {
    font-size: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .p-diagnostics__txt {
    line-height: 2.8;
    text-align: center;
    margin-top: clamp(16px, 2.0833333333vw, 40px);
  }
}
.p-diagnostics__note {
  font-weight: 500;
  line-height: 1;
  text-align: center;
  margin-top: 10px;
}
@media screen and (min-width: 1920px) {
  .p-diagnostics__note {
    font-size: 16px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-diagnostics__note {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-diagnostics__note {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-diagnostics__note {
    margin-top: clamp(10px, 1.0416666667vw, 20px);
  }
}
.p-diagnostics__btnArea {
  max-width: 78.6666666667vw;
  margin: 40px auto 0;
}
@media screen and (min-width: 768px) {
  .p-diagnostics__btnArea {
    width: 19.7916666667vw;
    max-width: 380px;
    margin: clamp(30px, 3.125vw, 60px) auto 0;
  }
}
.p-diagnostics__btnArea .c-btn {
  color: var(--color-white);
}

.p-diagnosticsDetail {
  padding: 60px 0;
  letter-spacing: initial;
  color: var(--color-white);
  background: var(--color-gradient-red);
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-diagnosticsDetail {
    padding: clamp(40px, 4.1666666667vw, 80px) 0;
  }
}
.p-diagnosticsDetail img {
  width: 100%;
  height: auto;
}
.p-diagnosticsDetail__videolead {
  font-family: var(--font-family-shippori);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 1920px) {
  .p-diagnosticsDetail__videolead {
    font-size: 40px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-diagnosticsDetail__videolead {
    font-size: 2.0833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-diagnosticsDetail__videolead {
    font-size: 4.2666666667vw;
  }
}
.p-diagnosticsDetail__videoArea {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-diagnosticsDetail__videoArea {
    max-width: 50.7142857143%;
    margin: clamp(16px, 1.6666666667vw, 32px) auto 0;
  }
}
.p-diagnosticsDetail__videoWrap {
  aspect-ratio: 16/9;
  border: 2px solid var(--color-white);
  border-right-width: 3px;
  border-radius: 4px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-diagnosticsDetail__videoWrap {
    border-width: 3px;
    border-right-width: 4px;
  }
}
.p-diagnosticsDetail__videoWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-diagnosticsDetail__lead {
  font-weight: 700;
  line-height: 1.8;
  margin-top: 24px;
}
@media screen and (min-width: 1920px) {
  .p-diagnosticsDetail__lead {
    font-size: 18px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-diagnosticsDetail__lead {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .p-diagnosticsDetail__lead {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-diagnosticsDetail__lead {
    line-height: 2;
    margin-top: clamp(16px, 1.6666666667vw, 32px);
    text-align: center;
  }
}
.p-diagnosticsDetail__body {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-diagnosticsDetail__body {
    margin-top: clamp(40px, 4.1666666667vw, 80px);
  }
}
.p-diagnosticsDetail__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-diagnosticsDetail__list {
    gap: clamp(24px, 2.0833333333vw, 40px);
    margin-top: clamp(24px, 2.0833333333vw, 40px);
  }
}
.p-diagnosticsDetail__btnArea {
  max-width: 78.6666666667vw;
  margin: 40px auto 0;
}
@media screen and (min-width: 768px) {
  .p-diagnosticsDetail__btnArea {
    width: 19.7916666667vw;
    max-width: 380px;
    margin: clamp(30px, 3.125vw, 60px) auto 0;
  }
}
.p-diagnosticsDetail__btnArea .c-btn {
  color: var(--color-text-body-emphasis);
}

.p-diagnosticsDifference {
  padding: 60px 0;
  letter-spacing: initial;
  position: relative;
  background: var(--color-bg-body-secondary);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-diagnosticsDifference {
    padding: clamp(40px, 4.1666666667vw, 80px) 0;
  }
}
.p-diagnosticsDifference img {
  width: 100%;
  height: auto;
}
.p-diagnosticsDifference__lead {
  font-weight: 700;
  line-height: 1.8;
  margin-top: 24px;
}
@media screen and (min-width: 1920px) {
  .p-diagnosticsDifference__lead {
    font-size: 18px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-diagnosticsDifference__lead {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .p-diagnosticsDifference__lead {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-diagnosticsDifference__lead {
    line-height: 2;
    margin-top: clamp(16px, 1.6666666667vw, 32px);
    text-align: center;
  }
}
.p-diagnosticsDifference__body {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-diagnosticsDifference__body {
    margin-top: clamp(40px, 2.5vw, 48px);
  }
}
.p-diagnosticsDifference__btnArea {
  max-width: 78.6666666667vw;
  margin: 40px auto 0;
}
@media screen and (min-width: 768px) {
  .p-diagnosticsDifference__btnArea {
    width: 19.7916666667vw;
    max-width: 380px;
    margin: clamp(30px, 3.125vw, 60px) auto 0;
  }
}
.p-diagnosticsDifference__btnArea .c-btn {
  color: var(--color-text-body-emphasis);
}

.p-diagnosticsFlow {
  padding: 60px 0;
  letter-spacing: initial;
  position: relative;
  background: url(../img/diagnostics/diagnosticsFlow_bg_sp.jpg) no-repeat top center/cover;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-diagnosticsFlow {
    padding: clamp(40px, 4.1666666667vw, 80px) 0;
    background-image: url(../img/diagnostics/diagnosticsFlow_bg.jpg);
  }
}
.p-diagnosticsFlow img {
  width: 100%;
  height: auto;
}
.p-diagnosticsFlow__lead {
  font-weight: 700;
  line-height: 1.8;
  margin-top: 24px;
}
@media screen and (min-width: 1920px) {
  .p-diagnosticsFlow__lead {
    font-size: 18px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-diagnosticsFlow__lead {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .p-diagnosticsFlow__lead {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-diagnosticsFlow__lead {
    line-height: 2;
    margin-top: clamp(16px, 1.6666666667vw, 32px);
    text-align: center;
  }
}
.p-diagnosticsFlow__note {
  font-weight: 500;
  line-height: 1.5;
  margin-top: 16px;
}
@media screen and (min-width: 1920px) {
  .p-diagnosticsFlow__note {
    font-size: 14px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-diagnosticsFlow__note {
    font-size: 0.7291666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-diagnosticsFlow__note {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 768px) {
  .p-diagnosticsFlow__note {
    line-height: 2;
    margin-top: clamp(10px, 0.8333333333vw, 16px);
    text-align: center;
  }
}
.p-diagnosticsFlow__body {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-diagnosticsFlow__body {
    margin-top: clamp(40px, 4.1666666667vw, 80px);
  }
}
.p-diagnosticsFlow__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
.p-diagnosticsFlow__list::before {
  content: "";
  display: block;
  width: 3px;
  height: calc(100% - 80px);
  background-color: var(--color-text-body-emphasis);
  position: absolute;
  left: 6.4vw;
  top: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-diagnosticsFlow__list::before {
    left: clamp(20px, 2.0833333333vw, 40px);
    height: calc(100% - 20px);
  }
}
@media screen and (min-width: 768px) {
  .p-diagnosticsFlow__list {
    max-width: 79.7142857143%;
    margin: 0 auto;
    gap: clamp(24px, 3.125vw, 60px);
  }
}
.p-diagnosticsFlow__item {
  display: flex;
  gap: 5.3333333333vw;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-diagnosticsFlow__item {
    gap: clamp(24px, 3.125vw, 60px);
  }
}
.p-diagnosticsFlow__itemNum {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.8vw;
  height: 12.8vw;
  font-family: var(--font-family-poppins);
  font-weight: 400;
  color: var(--color-white);
  background-color: var(--color-text-body-emphasis);
}
@media screen and (min-width: 1920px) {
  .p-diagnosticsFlow__itemNum {
    font-size: 32px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-diagnosticsFlow__itemNum {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-diagnosticsFlow__itemNum {
    font-size: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-diagnosticsFlow__itemNum {
    width: clamp(40px, 4.1666666667vw, 80px);
    height: clamp(40px, 4.1666666667vw, 80px);
  }
}
.p-diagnosticsFlow__itemBody {
  flex: 1;
}
.p-diagnosticsFlow__itemTtl {
  font-family: var(--font-family-shippori);
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (min-width: 1920px) {
  .p-diagnosticsFlow__itemTtl {
    font-size: 28px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-diagnosticsFlow__itemTtl {
    font-size: 1.4583333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-diagnosticsFlow__itemTtl {
    font-size: 5.8666666667vw;
  }
}
.p-diagnosticsFlow__itemTxt {
  font-weight: 700;
  line-height: 1.8;
  margin-top: 16px;
}
@media screen and (min-width: 1920px) {
  .p-diagnosticsFlow__itemTxt {
    font-size: 16px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-diagnosticsFlow__itemTxt {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-diagnosticsFlow__itemTxt {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-diagnosticsFlow__itemTxt {
    line-height: 1.875;
    margin-top: clamp(10px, 1.0416666667vw, 20px);
    margin-top: 20px;
  }
}
.p-diagnosticsFlow__btnArea {
  max-width: 78.6666666667vw;
  margin: 40px auto 0;
}
@media screen and (min-width: 768px) {
  .p-diagnosticsFlow__btnArea {
    width: 19.7916666667vw;
    max-width: 380px;
    margin: clamp(30px, 3.125vw, 60px) auto 0;
  }
}
.p-diagnosticsFlow__btnArea .c-btn {
  color: var(--color-text-body-emphasis);
}

.p-diagnosticsFaq {
  padding: 40px 0;
  letter-spacing: initial;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-diagnosticsFaq {
    padding: clamp(40px, 4.1666666667vw, 80px) 0;
  }
}
.p-diagnosticsFaq img {
  width: 100%;
  height: auto;
}
.p-diagnosticsFaq__lead {
  font-weight: 700;
  line-height: 2;
  margin-top: 24px;
}
@media screen and (min-width: 1920px) {
  .p-diagnosticsFaq__lead {
    font-size: 18px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .p-diagnosticsFaq__lead {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .p-diagnosticsFaq__lead {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-diagnosticsFaq__lead {
    margin-top: clamp(16px, 1.6666666667vw, 32px);
    text-align: center;
  }
}
.p-diagnosticsFaq__body {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-diagnosticsFaq__body {
    margin-top: clamp(32px, 3.3333333333vw, 64px);
  }
}
.p-diagnosticsFaq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-diagnosticsFaq__list {
    max-width: 66.1428571429%;
    margin: 0 auto;
    gap: clamp(24px, 1.3888888889vw, 20px);
  }
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5208333333vw;
  color: var(--color-white);
  line-height: 1.5555555556;
  background: var(--color-gradient-red);
  border: 1px solid;
  -o-border-image: var(--color-gradient-red) 1;
     border-image: var(--color-gradient-red) 1;
  padding: 20px 22px;
  font-weight: 700;
  transition: all 0.3s;
}
@media screen and (min-width: 1920px) {
  .c-btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-btn {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .c-btn {
    padding: 1.3541666667vw 1.5625vw;
  }
}
.c-btn:hover {
  opacity: 1;
  background: var(--color-white);
  color: var(--color-text-body-emphasis);
}
.c-btn:hover .c-btn__arrow svg path {
  fill: var(--color-text-body-emphasis);
}
.c-btn__arrow {
  width: 5.4237288136%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-btn__arrow {
    width: 1.0416666667vw;
  }
}
.c-btn__arrow svg {
  width: 100%;
}
.c-btn--white {
  background: var(--color-white);
  color: var(--color-text-body-emphasis);
}
.c-btn--white:hover {
  opacity: 1;
  color: var(--color-white);
  background: var(--color-gradient-red);
}
.c-btn--white:hover .c-btn__arrow svg path {
  fill: var(--color-white);
}
.c-btn--center {
  justify-content: center;
}

.c-ttl--center {
  text-align: center;
}
.c-ttl--center .c-ttl__ja {
  justify-content: center;
}
.c-ttl__ja {
  font-family: var(--font-family-shippori);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.5208333333vw, 10px);
}
@media screen and (min-width: 1920px) {
  .c-ttl__ja {
    font-size: 20px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-ttl__ja {
    font-size: 1.0416666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-ttl__ja {
    font-size: 5.3333333333vw;
  }
}
.c-ttl__ja::before {
  content: "";
  display: block;
  width: 7.2vw;
  height: 6.6666666667vw;
  background: url(../img/common/i_ttl.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .c-ttl__ja::before {
    width: 1.40625vw;
    height: 1.3020833333vw;
  }
}
.c-ttl__en {
  font-family: var(--font-family-poppins);
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 1920px) {
  .c-ttl__en {
    font-size: 105px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-ttl__en {
    font-size: 5.46875vw;
  }
}
@media screen and (max-width: 767px) {
  .c-ttl__en {
    font-size: 12.8vw;
  }
}

.c-ttlSecondary {
  font-family: var(--font-family-shippori);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 1920px) {
  .c-ttlSecondary {
    font-size: 48px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-ttlSecondary {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-ttlSecondary {
    font-size: 6.4vw;
  }
}
.c-ttlSecondary__highlight {
  color: var(--color-text-body-emphasis);
}
@media screen and (min-width: 1920px) {
  .c-ttlSecondary--small {
    font-size: 48px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-ttlSecondary--small {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-ttlSecondary--small {
    font-size: 6.4vw;
  }
}

.c-subttl {
  font-family: var(--font-family-shippori);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}
.c-subttl::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--color-text-body-emphasis);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.c-subttl--noLine::before {
  display: none;
}
.c-subttl--en {
  font-family: var(--font-family-poppins);
  font-weight: 500;
}

.c-cardSeminar {
  display: flex;
  flex-direction: column;
  color: var(--color-text-body);
}
.c-cardSeminar__imgArea {
  aspect-ratio: 440/230;
  overflow: hidden;
}
.c-cardSeminar__imgArea img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-cardSeminar__body {
  flex: 1;
  margin-top: clamp(10px, 1.0416666667vw, 20px);
}
.c-cardSeminar__status span {
  font-weight: 500;
  color: var(--color-white);
  background-color: var(--color-bg-body-tertiary);
  padding: 0.3125vw 0.9375vw;
}
@media screen and (min-width: 1920px) {
  .c-cardSeminar__status span {
    font-size: 14px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-cardSeminar__status span {
    font-size: 0.7291666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cardSeminar__status span {
    font-size: 3.7333333333vw;
  }
}
.c-cardSeminar__status span.end {
  background-color: var(--color-text-body);
}
@media screen and (min-width: 1920px) {
  .c-cardSeminar__date {
    font-size: 15px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-cardSeminar__date {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cardSeminar__date {
    font-size: 4vw;
  }
}
.c-cardSeminar__ttl {
  font-weight: 700;
  line-height: 1.8888888889;
  margin-top: clamp(10px, 1.0416666667vw, 20px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (min-width: 1920px) {
  .c-cardSeminar__ttl {
    font-size: 18px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-cardSeminar__ttl {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cardSeminar__ttl {
    font-size: 4.8vw;
  }
}

.c-cardCase {
  display: flex;
  flex-direction: column;
  color: var(--color-text-body);
}
@media screen and (min-width: 768px) {
  .c-cardCase {
    gap: clamp(12px, 1.25vw, 24px);
  }
}
.c-cardCase--small {
  padding-bottom: clamp(17px, 1.7708333333vw, 34px);
  border-bottom: 1px solid var(--color-border);
}
@media screen and (min-width: 768px) {
  .c-cardCase--small {
    flex-direction: row;
    gap: clamp(12px, 1.25vw, 24px);
  }
}
.c-cardCase--small .c-cardCase__imgArea {
  width: 29.8507462687%;
}
@media screen and (min-width: 1920px) {
  .c-cardCase--small .c-cardCase__company {
    font-size: 15px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-cardCase--small .c-cardCase__company {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cardCase--small .c-cardCase__company {
    font-size: 4vw;
  }
}
.c-cardCase--small .c-cardCase__ttl {
  margin-top: 0;
}
@media screen and (min-width: 1920px) {
  .c-cardCase--small .c-cardCase__ttl {
    font-size: 18px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-cardCase--small .c-cardCase__ttl {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cardCase--small .c-cardCase__ttl {
    font-size: 4.8vw;
  }
}
.c-cardCase--small .c-cardCase__info {
  gap: 12px;
  margin-top: 18px;
}
.c-cardCase__imgWrap {
  aspect-ratio: 670/414;
}
.c-cardCase__imgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-cardCase__body {
  flex: 1;
}
.c-cardCase__company {
  font-weight: 500;
}
@media screen and (min-width: 1920px) {
  .c-cardCase__company {
    font-size: 17px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-cardCase__company {
    font-size: 0.8854166667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cardCase__company {
    font-size: 4.2666666667vw;
  }
}
.c-cardCase__date {
  margin-top: clamp(10px, 1.0416666667vw, 20px);
}
@media screen and (min-width: 1920px) {
  .c-cardCase__date {
    font-size: 15px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-cardCase__date {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cardCase__date {
    font-size: 4vw;
  }
}
.c-cardCase__ttl {
  font-weight: 700;
  line-height: 1.6;
  margin-top: clamp(10px, 1.0416666667vw, 20px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (min-width: 1920px) {
  .c-cardCase__ttl {
    font-size: 20px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-cardCase__ttl {
    font-size: 1.0416666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cardCase__ttl {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 768px) {
  .c-cardCase__ttl {
    line-height: 1.9;
  }
}
.c-cardCase__info {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(4px, 0.4166666667vw, 8px);
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .c-cardCase__info {
    margin-top: clamp(10px, 1.0416666667vw, 20px);
  }
}
.c-cardCase__infoItem {
  font-weight: 500;
  line-height: 1.1333333333;
  padding: clamp(3px, 0.3125vw, 6px) clamp(9px, 0.9375vw, 18px);
  background-color: var(--color-bg-body-secondary);
}
@media screen and (min-width: 1920px) {
  .c-cardCase__infoItem {
    font-size: 14px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-cardCase__infoItem {
    font-size: 0.7291666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cardCase__infoItem {
    font-size: 3.7333333333vw;
  }
}

.c-cardContents {
  display: flex;
  flex-direction: column;
  color: var(--color-text-body);
  background-color: var(--color-white);
}
.c-cardContents:hover {
  opacity: 1;
}
.c-cardContents:hover .c-btn {
  color: var(--color-white);
  background: var(--color-gradient-red);
}
.c-cardContents:hover .c-btn .c-btn__arrow svg path {
  fill: var(--color-white);
}
.c-cardContents__imgArea {
  aspect-ratio: 426/264;
  overflow: hidden;
}
.c-cardContents__imgArea img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-cardContents__body {
  flex: 1;
  padding: 24px;
}
@media screen and (min-width: 768px) {
  .c-cardContents__body {
    padding: clamp(12px, 1.6666666667vw, 40px);
  }
}
.c-cardContents__ttl {
  font-family: var(--font-family-shippori);
  font-weight: 400;
  line-height: 1.4642857143;
  text-align: center;
}
@media screen and (min-width: 1920px) {
  .c-cardContents__ttl {
    font-size: 28px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-cardContents__ttl {
    font-size: 1.4583333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cardContents__ttl {
    font-size: 5.8666666667vw;
  }
}
.c-cardContents__txt {
  font-weight: 700;
  line-height: 2.1428571429;
  margin-top: 16px;
}
@media screen and (min-width: 1920px) {
  .c-cardContents__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-cardContents__txt {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cardContents__txt {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .c-cardContents__txt {
    margin-top: clamp(10px, 1.0416666667vw, 20px);
    line-height: 1.875;
  }
}
.c-cardContents__btnArea {
  max-width: 247px;
  margin: 20px auto 0;
}
@media screen and (min-width: 768px) {
  .c-cardContents__btnArea {
    max-width: 100%;
    margin: clamp(15px, 1.5625vw, 30px) auto 0;
    margin-top: clamp(15px, 1.5625vw, 30px);
  }
}

.c-cardCommon {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: var(--color-text-body);
  background-color: var(--color-white);
}
.c-cardCommon--download .c-cardCommon__header {
  justify-content: flex-start;
}
.c-cardCommon--download .c-cardCommon__body {
  display: flex;
  flex-direction: column;
}
.c-cardCommon--download .c-cardCommon__ttl {
  flex: 1;
  margin-top: 16px;
}
.c-cardCommon--seminar .c-cardCommon__body {
  display: flex;
  flex-direction: column;
}
.c-cardCommon--seminar .c-cardCommon__ttl {
  flex: 1;
  margin-top: 16px;
}
.c-cardCommon__imgArea {
  aspect-ratio: 380/200;
  overflow: hidden;
}
.c-cardCommon__imgArea img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-cardCommon__body {
  flex: 1;
  padding: 24px 32px 32px;
}
.c-cardCommon__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.c-cardCommon__company {
  font-size: 16px;
  font-weight: 500;
}
.c-cardCommon__category {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.c-cardCommon__date {
  font-size: 15px;
}
.c-cardCommon__ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8888888889;
  margin-top: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-cardCommon__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}
.c-cardCommon__btnArea {
  width: 250px;
  max-width: 100%;
  margin: 24px auto 0;
}
.c-cardCommon__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 16px;
  line-height: 1.5555555556;
  background: var(--color-white);
  color: var(--color-text-body-emphasis);
  border: 1px solid;
  -o-border-image: var(--color-white) 1;
     border-image: var(--color-white) 1;
  padding: 20px 22px;
  font-weight: 700;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .c-cardCommon__btn {
    padding: 16px 30px;
  }
}
.c-cardCommon__btnArrow {
  width: 5.4237288136%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-cardCommon__btnArrow {
    width: 1.0416666667vw;
  }
}
.c-cardCommon__btnArrow svg path {
  fill: var(--color-text-body-emphasis);
}

.c-cardFlow {
  display: flex;
  flex-direction: column;
}
.c-cardFlow--first .c-cardFlow__header::before {
  width: 98px;
  height: 100px;
  background: url(../img/contact/icon_flow_1.svg) no-repeat center center/contain;
}
.c-cardFlow--second .c-cardFlow__header::before {
  width: 100px;
  height: 101px;
  background: url(../img/contact/icon_flow_2.svg) no-repeat center center/contain;
}
.c-cardFlow--third .c-cardFlow__header::before {
  width: 95px;
  height: 110px;
  background: url(../img/contact/icon_flow_3.svg) no-repeat center center/contain;
}
.c-cardFlow__header {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-gradient-red);
  padding: 17.4334140436% 4.8426150121%;
  position: relative;
}
.c-cardFlow__header::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .c-cardFlow__header::before {
    max-width: 24.2130750605%;
  }
}
.c-cardFlow__ttl {
  font-family: var(--font-family-shippori);
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1920px) {
  .c-cardFlow__ttl {
    font-size: 32px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-cardFlow__ttl {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cardFlow__ttl {
    font-size: 5.3333333333vw;
  }
}
.c-cardFlow__body {
  flex: 1;
  background-color: var(--color-white);
  padding: 5.8111380145% 4.8426150121% 7.7481840194%;
}
.c-cardFlow__txt {
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}
@media screen and (min-width: 1920px) {
  .c-cardFlow__txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-cardFlow__txt {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cardFlow__txt {
    font-size: 4.2666666667vw;
  }
}

.c-cardConsultant {
  display: flex;
  flex-direction: column;
}
.c-cardConsultant__imgArea {
  width: 83.5820895522%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-cardConsultant__imgArea {
    width: 100%;
  }
}
.c-cardConsultant__imgWrap {
  aspect-ratio: 356/400;
}
.c-cardConsultant__imgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-cardConsultant__body {
  flex: 1;
}
.c-cardConsultant__info {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-cardConsultant__info {
    margin-top: 0;
    min-height: clamp(20px, 6.25vw, 120px);
  }
}
.c-cardConsultant__name {
  font-weight: 700;
  line-height: 1.1818181818;
}
@media screen and (min-width: 1920px) {
  .c-cardConsultant__name {
    font-size: 22px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-cardConsultant__name {
    font-size: 1.1458333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cardConsultant__name {
    font-size: 5.8666666667vw;
  }
}
.c-cardConsultant__name a {
  text-decoration: underline;
  position: relative;
  padding-right: clamp(10px, 1.5625vw, 30px);
}
.c-cardConsultant__name a::after {
  content: "";
  display: block;
  width: clamp(10px, 1.0416666667vw, 20px);
  height: clamp(10px, 1.0416666667vw, 20px);
  background: url(../img/contact/i_link.svg) no-repeat center center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.c-cardConsultant__job {
  font-weight: 700;
  line-height: 1.7;
  margin-top: 10px;
}
@media screen and (min-width: 1920px) {
  .c-cardConsultant__job {
    font-size: 16px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-cardConsultant__job {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cardConsultant__job {
    font-size: 4.2666666667vw;
  }
}
.c-cardConsultant__txt {
  font-weight: 500;
  line-height: 1.7;
  margin-top: 16px;
}
@media screen and (min-width: 1920px) {
  .c-cardConsultant__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-cardConsultant__txt {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cardConsultant__txt {
    font-size: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .c-cardConsultant__txt {
    margin-top: clamp(10px, 0.8333333333vw, 16px);
  }
}

.c-problem {
  letter-spacing: initial;
}
.c-problem__header {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-text-body-tertiary);
  margin: 0 20px;
}
@media screen and (min-width: 768px) {
  .c-problem__header {
    margin: 0;
    padding: 0 20px 56px;
  }
}
.c-problem__lead {
  text-align: center;
  font-family: var(--font-family-shippori);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
@media screen and (min-width: 1920px) {
  .c-problem__lead {
    font-size: 22px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-problem__lead {
    font-size: 1.1458333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-problem__lead {
    font-size: 4.8vw;
  }
}
.c-problem__ttl {
  width: 100%;
  text-align: center;
  font-family: var(--font-family-shippori);
  font-weight: 400;
}
@media screen and (min-width: 1920px) {
  .c-problem__ttl {
    font-size: 24px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-problem__ttl {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .c-problem__ttl {
    font-size: 5.3333333333vw;
  }
}
.c-problem__ttl span {
  display: inline-block;
  margin: 4px 0;
}
@media screen and (min-width: 768px) {
  .c-problem__ttl span {
    margin: 0;
  }
}
.c-problem__ttl .bg {
  display: inline-block;
  line-height: 1.8181818182;
}
@media screen and (min-width: 1920px) {
  .c-problem__ttl .bg {
    font-size: 36px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-problem__ttl .bg {
    font-size: 1.875vw;
  }
}
@media screen and (max-width: 767px) {
  .c-problem__ttl .bg {
    font-size: 5.8666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .c-problem__ttl .bg {
    margin: 0;
    padding: 0 10px;
    background-color: var(--color-white);
  }
}
.c-problem__ttl .bg span {
  background-color: var(--color-white);
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .c-problem__ttl .bg span {
    padding: 0;
  }
}
.c-problem__ttl .bg--spWide {
  width: 100%;
  background-color: var(--color-white);
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .c-problem__ttl .bg--spWide {
    width: auto;
    background-color: var(--color-white);
  }
}
.c-problem__ttl .bg--spWide span {
  padding: 0;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .c-problem__ttl .bg--spWide span {
    background-color: var(--color-white);
  }
}
.c-problem__ttl .red {
  display: inline-block;
  color: var(--color-text-body-emphasis);
}
.c-problem__ttl02 {
  text-align: center;
  font-family: var(--font-family-shippori);
  font-weight: 400;
}
@media screen and (min-width: 1920px) {
  .c-problem__ttl02 {
    font-size: 24px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-problem__ttl02 {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .c-problem__ttl02 {
    font-size: 5.3333333333vw;
  }
}
.c-problem__ttl02 .bg {
  display: inline-block;
  background-color: var(--color-white);
  padding: 0 4px;
  margin: 4px 0;
}
@media screen and (min-width: 1920px) {
  .c-problem__ttl02 .bg {
    font-size: 36px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-problem__ttl02 .bg {
    font-size: 1.875vw;
  }
}
@media screen and (max-width: 767px) {
  .c-problem__ttl02 .bg {
    font-size: 5.8666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .c-problem__ttl02 .bg:nth-of-type(1) {
    padding: 0 0 0 10px;
  }
}
@media screen and (min-width: 768px) {
  .c-problem__ttl02 .bg:nth-of-type(2) {
    padding: 0 10px 0 0;
  }
}
.c-problem__txt {
  font-weight: 700;
  line-height: 1.8;
  margin-top: 24px;
}
@media screen and (min-width: 1920px) {
  .c-problem__txt {
    font-size: 20px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-problem__txt {
    font-size: 1.0416666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-problem__txt {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .c-problem__txt {
    text-align: center;
    margin-top: 40px;
  }
}
.c-problem__listArea {
  margin-top: 40px;
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .c-problem__listArea {
    margin-top: 56px;
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .c-problem__listArea .swiper .swiper-wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.125vw;
  }
}
.c-problem__listArea .swiper .swiper-pagination {
  text-align: center;
  margin-top: 36px;
  margin-right: 20px;
}
@media screen and (min-width: 768px) {
  .c-problem__listArea .swiper .swiper-pagination {
    display: none;
  }
}
.c-problem__listArea .swiper .swiper-pagination .swiper-pagination-bullet {
  display: inline-block;
  opacity: 1;
  width: 10px;
  height: 10px;
  background: #D9D9D9;
  border-radius: 50%;
  margin: 0 5px;
}
.c-problem__listArea .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-text-body-emphasis);
}

.c-cardContentsWithNum {
  display: flex;
  flex-direction: column;
  color: var(--color-text-body);
  gap: 20px;
}
.c-cardContentsWithNum__num {
  font-family: var(--font-family-poppins);
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 1920px) {
  .c-cardContentsWithNum__num {
    font-size: 20px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-cardContentsWithNum__num {
    font-size: 1.0416666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cardContentsWithNum__num {
    font-size: 5.3333333333vw;
  }
}
.c-cardContentsWithNum__num span {
  color: var(--color-text-body-emphasis);
}
@media screen and (min-width: 1920px) {
  .c-cardContentsWithNum__num span {
    font-size: 32px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-cardContentsWithNum__num span {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cardContentsWithNum__num span {
    font-size: 8.5333333333vw;
  }
}
.c-cardContentsWithNum__imgArea {
  aspect-ratio: 1920/1008;
  background: url(<path-to-image>) lightgray -173.351px -126px/181.258% 195.584% no-repeat;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.c-cardContentsWithNum__imgArea img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-cardContentsWithNum__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-cardContentsWithNum__ttl {
  font-family: var(--font-family-shippori);
  font-weight: 400;
  line-height: 1.4642857143;
  text-align: center;
}
@media screen and (min-width: 1920px) {
  .c-cardContentsWithNum__ttl {
    font-size: 28px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-cardContentsWithNum__ttl {
    font-size: 1.4583333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cardContentsWithNum__ttl {
    font-size: 5.3333333333vw;
  }
}

.c-breadcrumbs {
  padding: 8px 30px;
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: initial;
}
.c-breadcrumbs--mtHeader {
  margin-top: clamp(64px, 5vw, 96px);
}
.c-breadcrumbs__item {
  display: inline-block;
}
.c-breadcrumbs__item:not(:first-child)::before {
  content: "/";
}
.c-breadcrumbs__item br {
  display: none;
}
.c-breadcrumbs__item a {
  text-decoration: underline;
}

.c-categoryBox {
  background-color: var(--color-white);
  padding: 24px;
}
.c-categoryBox__ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2222222222;
  padding-left: 23px;
  margin-bottom: 22px;
  position: relative;
}
.c-categoryBox__ttl::before {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background-color: var(--color-text-body-emphasis);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.c-categoryBox__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c-categoryBox__item {
  border-bottom: 1px solid var(--color-text-body-tertiary);
}
.c-categoryBox__link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4375;
  padding: 10px 0;
}

.c-tagBox {
  background-color: var(--color-white);
  padding: 24px;
}
.c-tagBox__ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2222222222;
  padding-left: 23px;
  margin-bottom: 22px;
  position: relative;
}
.c-tagBox__ttl::before {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background-color: var(--color-text-body-emphasis);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.c-tagBox__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
}
.c-tagBox__link {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1666666667;
  padding: 5px 12px;
  border-radius: 99px;
  border: 1px solid var(--color-text-body-tertiary);
}

.c-cat {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2142857143;
  padding: 6px 18px;
  color: var(--color-white);
  background-color: var(--color-text-body-emphasis);
}

.bg-white a.c-cat {
  color: var(--color-white);
}

.c-pagination ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.c-pagination ul li {
  font-size: 14px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  cursor: pointer;
}
.c-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #000 !important;
}
.c-pagination ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: none !important;
  border: 1px solid #000 !important;
}
.c-pagination ul li .current {
  color: var(--color-white);
  background-color: var(--color-text-body-emphasis);
  border-color: var(--color-text-body-emphasis) !important;
}

.c-article {
  word-wrap: break-word;
  word-break: break-all;
  overflow-wrap: break-word;
}
.c-article h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  padding-left: 23px;
  position: relative;
  margin: 48px 0 32px;
}
@media screen and (min-width: 768px) {
  .c-article h2 {
    margin: 80px 0 32px;
    line-height: 1.6;
  }
}
.c-article h2::before {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background-color: var(--color-text-body-emphasis);
  position: absolute;
  left: 0;
  top: 0;
}
.c-article h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: 8px;
  margin: 32px 0 16px;
  border-bottom: 1px solid;
}
@media screen and (min-width: 768px) {
  .c-article h3 {
    font-size: 22px;
  }
}
.c-article h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: 8px;
  margin: 16px 0;
  border-bottom: 1px solid;
}
.c-article p {
  font-size: 16px;
  line-height: 1.7;
  margin: 16px 0;
}
.c-article figure {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}
.c-article img {
  height: auto !important;
}
.c-article .hs-cta-embed {
  width: 260px !important;
  height: auto !important;
}
.c-article .hs-cta-embed img {
  width: 100% !important;
  height: auto !important;
}
.c-article a {
  text-decoration: underline;
}

.c-tag {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1666666667;
  padding: 5px 12px;
  border-radius: 99px;
  border: 1px solid var(--color-text-body-tertiary);
}

.c-author {
  padding: 20px;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .c-author {
    padding: 40px;
  }
}
.c-author__ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: 8px;
  border-bottom: 1px solid;
}
.c-author__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .c-author__body {
    align-items: flex-start;
    flex-direction: row;
  }
}
.c-author__imgArea {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
}
.c-author__imgArea img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-author__desc {
  width: 100%;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .c-author__desc {
    flex: 1;
  }
}
.c-author__position {
  font-size: 14px;
  margin-bottom: 4px;
}
.c-author__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}
.c-author__txtArea {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 16px;
}
.c-author__posts {
  margin-top: 24px;
}
.c-author__postsList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 8px;
}
.c-author__postsList a {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  text-decoration: underline;
}

.c-recommend {
  padding: 32px 20px;
  background-color: var(--color-bg-body-secondary);
}
.c-recommend__ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .c-recommend__ttl {
    font-size: 22px;
  }
}
.c-recommend__ttl::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(../img/common/i_notice.svg) no-repeat center center/contain;
}
.c-recommend__content {
  max-width: 647px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2rem;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.c-recommend__content ul li:not(:first-child) {
  margin-top: 8px;
}
.c-recommend__content ul li::before {
  content: "・";
}
.c-recommend__content ol {
  counter-reset: recommend-counter;
}
.c-recommend__content ol li {
  counter-increment: recommend-counter;
}
.c-recommend__content ol li:not(:first-child) {
  margin-top: 8px;
}
.c-recommend__content ol li::before {
  content: counter(recommend-counter) ".";
}

.c-teacher {
  position: relative;
}
.c-teacher__header {
  display: flex;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .c-teacher__header {
    display: contents;
  }
}
.c-teacher__imgArea {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .c-teacher__imgArea {
    width: 180px;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.c-teacher__imgWrap {
  aspect-ratio: 180/180;
  overflow: hidden;
}
.c-teacher__imgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-teacher__info {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .c-teacher__info {
    padding-left: 220px;
  }
}
.c-teacher__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: 8px;
  border-bottom: 1px solid;
}
@media screen and (min-width: 768px) {
  .c-teacher__name {
    font-size: 20px;
  }
}
.c-teacher__company {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .c-teacher__company {
    font-size: 16px;
  }
}
.c-teacher__profile {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-teacher__profile {
    padding-left: 220px;
    margin-top: 16px;
  }
}

.c-toggleBox__trigger {
  cursor: pointer;
  background-color: var(--color-bg-body-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 10px;
}
@media screen and (min-width: 768px) {
  .c-toggleBox__trigger {
    gap: clamp(10px, 1.0416666667vw, 20px);
    padding: clamp(8px, 0.8333333333vw, 16px) clamp(10px, 1.0416666667vw, 20px);
  }
}
.c-toggleBox__triggerIcon {
  font-size: 24px;
  font-family: var(--font-family-shippori);
  font-weight: 400;
  width: 40px;
  height: 40px;
  color: var(--color-white);
  background-color: var(--color-text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .c-toggleBox__triggerIcon {
    font-size: clamp(8px, 0.8333333333vw, 16px);
    width: clamp(20px, 2.0833333333vw, 40px);
    height: clamp(20px, 2.0833333333vw, 40px);
  }
}
.c-toggleBox__triggerTxt {
  flex: 1;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 10px;
}
@media screen and (min-width: 1920px) {
  .c-toggleBox__triggerTxt {
    font-size: 18px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-toggleBox__triggerTxt {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .c-toggleBox__triggerTxt {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .c-toggleBox__triggerTxt {
    padding-left: 0;
  }
}
.c-toggleBox__triggerArrow {
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
  transition-duration: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-toggleBox__triggerArrow {
    width: 3.4557235421%;
    height: 3.4557235421%;
  }
}
.c-toggleBox__content {
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition-duration: 0.3s;
  display: flex;
  gap: 20px;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .c-toggleBox__content {
    gap: clamp(10px, 1.0416666667vw, 20px);
    padding: 0 clamp(10px, 1.0416666667vw, 20px);
  }
}
.c-toggleBox__contentIcon {
  font-family: var(--font-family-shippori);
  font-size: 24px;
  font-weight: 400;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .c-toggleBox__contentIcon {
    font-size: clamp(8px, 0.8333333333vw, 16px);
    width: clamp(20px, 2.0833333333vw, 40px);
    height: clamp(20px, 2.0833333333vw, 40px);
  }
}
.c-toggleBox__contentTxt {
  flex: 1;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 1920px) {
  .c-toggleBox__contentTxt {
    font-size: 16px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 768px) {
  .c-toggleBox__contentTxt {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-toggleBox__contentTxt {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .c-toggleBox__contentTxt {
    line-height: 1.7;
    padding-top: clamp(0px, 0.2083333333vw, 4px);
  }
}
.c-toggleBox.is-active .c-toggleBox__triggerArrow {
  transform: rotate(0deg);
}
.c-toggleBox.is-active .c-toggleBox__content {
  padding: 24px 10px;
  line-height: normal;
  height: auto;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .c-toggleBox.is-active .c-toggleBox__content {
    padding: clamp(16px, 1.6666666667vw, 32px) clamp(10px, 1.0416666667vw, 20px);
  }
}

@media screen and (min-width: 768px) {
  .u-display--pcNone {
    display: none;
  }
}
.u-display--spNone {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-display--spNone {
    display: block;
  }
}/*# sourceMappingURL=add-style.css.map */