@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #2a4653;
  font-family: "Zen Kaku Gothic New", sans-serif;
  word-break: break-all;
}

html {
  font-size: 62.5%;
  background-color: #fdfdfd;
}
@media screen and (max-width: 1024px) {
  html {
    scroll-padding-top: 20px;
  }
}
@media screen and (min-width: 1025px) {
  html {
    scroll-padding-top: 100px;
  }
}

body {
  font-size: var(--font-size-base);
  font-family: var(--font-base);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  letter-spacing: 0.05em;
  height: 100%;
  background-color: #fdfdfd;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2.2em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
@media (hover: hover) {
  a:hover {
    transition: 0.3s;
  }
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  .sp {
    display: none;
  }
}
.flex {
  display: flex;
}
.flex--alternating:nth-child(odd) {
  flex-direction: row-reverse;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px; /* マージン調整 */
}
.grid .grid__item img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.desc {
  margin-bottom: 30px;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .desc {
    font-size: 14px;
  }
}

.center {
  text-align: center;
}

.en {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.frame-wrapper {
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.frame-wrapper .frame {
  bottom: 0;
  height: 100dvh;
  left: 0;
  pointer-events: none;
  position: fixed;
  width: 100%;
  z-index: 1000;
}
.frame-wrapper .frame .frame-corner {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  z-index: 99;
  background-size: cover;
}
.frame-wrapper .frame .corner-top-left {
  background-image: url(../images/common/frame_tleft.svg);
  background-position: left top;
  z-index: 999;
}
@media screen and (max-width: 1024px) {
  .frame-wrapper .frame .corner-top-left {
    background-image: url(../images/common/frame_tleft_sp.svg);
  }
}
.frame-wrapper .frame .corner-top-right {
  background-image: url(../images/common/frame_tright.svg);
  background-position: right top;
}
@media screen and (max-width: 1024px) {
  .frame-wrapper .frame .corner-top-right {
    background-image: url(../images/common/frame_tright_sp.svg);
  }
}
.frame-wrapper .frame .corner-bottom-left {
  background-image: url(../images/common/frame_bleft.svg);
  background-position: left bottom;
}
@media screen and (max-width: 1024px) {
  .frame-wrapper .frame .corner-bottom-left {
    background-image: url(../images/common/frame_bleft_sp.svg);
  }
}
.frame-wrapper .frame .corner-bottom-right {
  background-image: url(../images/common/frame_bright.svg);
  background-position: right bottom;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .frame-wrapper .frame .corner-bottom-right {
    background-image: url(../images/common/frame_bright_sp.svg);
  }
}

.btn--more {
  margin: 30px 0 0;
}
.btn--more.center {
  margin: 30px auto;
}
.btn.bg-blue .btn__link {
  background-color: #2a4653;
}
.btn__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  width: 100%;
  text-align: center;
  padding-block: 15px;
  background-color: #778890;
  border-radius: 3px;
  max-width: 200px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .btn__link {
    font-size: 13px;
  }
}
.btn__link::after {
  content: "";
  background-image: url(../images/common/arrow_icon_w.svg);
  display: table;
  width: 20px;
  height: 20px;
  background-size: contain;
}
.btn.flex {
  gap: 15px !important;
}

.accordion__item:not(:last-child) {
  margin-bottom: 30px;
}
.accordion__title {
  font-size: 20px;
  background: lightblue;
  padding: 15px 20px;
}
.accordion__content {
  font-size: 18px;
  padding: 15px 20px;
  display: none;
}

/* スライドの動き等速 */
.swiper {
  overflow: unset !important;
}

.swiper-wrapper {
  transition-timing-function: linear;
  will-change: transform;
  transform: translateZ(0);
}

/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

.slide-type-fv .swiper,
.slide-type-fv .swiper2 {
  width: 100%;
  height: auto;
  overflow: visible;
}
@media screen and (max-width: 1024px) {
  .slide-type-fv .swiper {
    position: absolute;
    top: 0;
  }
  .slide-type-fv .swiper2 {
    position: absolute;
    bottom: 0;
  }
}
.slide-type-fv .swiper-slide {
  width: auto; /* スライド幅は画像に合わせる */
}
.slide-type-fv .swiper-slide__img img {
  display: block;
  height: 20.1317715959vw;
  width: 20.1317715959vw; /* 元画像サイズを尊重 */
  max-height: 20.1317715959vw; /* 任意で最大サイズを指定 */
}
@media screen and (max-width: 1024px) {
  .slide-type-fv .swiper-slide__img img {
    height: 100%;
    width: 100%; /* 元画像サイズを尊重 */
    max-height: 100%; /* 任意で最大サイズを指定 */
  }
}
.slide-type-fv .swiper .swiper-wrapper,
.slide-type-fv .swiper2 .swiper-wrapper {
  transition-timing-function: linear;
}
.slide-type-fv .slide-content {
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  color: white;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%);
  width: 100%;
  transition: opacity 0.4s;
  display: block;
}
.slide-type-fv .slide-title {
  margin: 0;
  padding: 20px 10px;
}
.slide-type-fv .swiper-slide:hover .slide-content {
  opacity: 1;
}

.slide-type-seminar {
  margin-top: 40px;
}
.slide-type-seminar .swiper-slide {
  transition: 0.3s;
  border: 2px solid #fff !important;
}
@media (hover: hover) {
  .slide-type-seminar .swiper-slide:hover {
    border: 2px solid #2ba9e2 !important;
    transition: 0.3s;
  }
}
@media screen and (max-width: 1024px) {
  .slide-type-seminar .swiper-slide-active {
    border: 2px solid #2ba9e2 !important;
  }
}

.slide-type-seminar .swiper-slide {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0px 5px 20px -15px rgba(0, 0, 0, 0.1);
}

.swiper-button {
  display: flex;
  gap: 15px;
}
.swiper-button.center {
  justify-content: center;
}

.swiper-button-next,
.swiper-button-prev {
  position: unset !important;
  margin-top: 40px !important;
  width: 60px !important;
  height: 25px !important;
  background: #fff;
  border: 1px solid #809198;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .swiper-button-next,
  .swiper-button-prev {
    margin-top: 20px !important;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
  color: #2a4653 !important;
}

.author_slide .flex {
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .author_slide .flex {
    flex-direction: column;
  }
}
.author_slide .swiper,
.author_slide .swiper2 {
  width: 100%;
  height: 300px;
  overflow: visible;
}
@media screen and (max-width: 1024px) {
  .author_slide .swiper,
  .author_slide .swiper2 {
    height: auto;
  }
}
.author_slide .swiper-slide {
  width: inherit;
  height: inherit;
  object-fit: cover;
  position: relative;
  cursor: pointer;
}
.author_slide .swiper-slide__img img {
  width: 100%;
  height: auto;
}
.author_slide .swiper .swiper-wrapper,
.author_slide .swiper2 .swiper-wrapper {
  transition-timing-function: linear;
}

.breadcrumbs {
  padding-block: 40px 15px;
  position: absolute;
  bottom: 5%;
  left: 0;
}
.breadcrumbs::before {
  left: 0;
  content: "";
  height: 1px;
  width: 100%;
  background: #2ba9e2;
  background: linear-gradient(135deg, rgb(43, 169, 226) 0%, rgb(156, 216, 242) 100%);
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .breadcrumbs::before {
    width: 80%;
  }
}
@media screen and (max-width: 1024px) {
  .breadcrumbs {
    white-space: nowrap; /* 改行（行送り）を禁止させる */
    overflow-x: scroll; /* 横スクロールを可能にする */
    padding-top: 20px;
  }
}
.breadcrumbs .container {
  padding-left: 8.0527086384vw;
  color: #7c8d95;
}
@media screen and (max-width: 1024px) {
  .breadcrumbs .container {
    padding: 0 25px;
  }
}
.breadcrumbs a {
  opacity: 0.5;
}
.breadcrumbs span {
  font-size: 14px;
  margin-inline: 5px;
  font-family: "tt-commons-pro", sans-serif;
  font-weight: 400;
  color: #2a4653;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--clr-wht);
  z-index: 999;
  transition: var(--transit-default);
  /* 非アクティブ時：バー1のアニメーション */
  /* 非アクティブ時：中央バーの不透明度 */
  /* 非アクティブ時：バー3のアニメーション */
  /* アクティブ時：バー1のアニメーション */
  /* アクティブ時：中央バーを非表示に */
  /* アクティブ時：バー3のアニメーション */
  /* ---------- スマホサイズ用に調整 ---------- */
}
@media screen and (max-width: 1024px) {
  .header {
    padding-block: 10px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding-block: 50px 0;
  padding-left: 50px;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding-block: 10px 0;
    padding-left: 15px;
  }
}
.header__logo {
  z-index: 99;
  width: 200px;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 90%;
    max-width: 180px;
  }
}
.header__nav {
  margin-right: 10%;
  transition: opacity 0.3s ease;
}
.header__nav.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.header__nav ul {
  display: flex;
  gap: 60px;
}
.header__nav ul li {
  position: relative;
}
.header__nav ul li::before {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  content: "";
}
.header__nav ul li a {
  font-weight: 500;
  position: relative;
}
@media (hover: hover) {
  .header__nav ul li a:hover {
    color: #26b6ed;
  }
  .header__nav ul li a:hover::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 17px;
    height: 15px;
    background-image: url(../images/common/brain_icon.svg);
  }
}
.header__nav ul li.current a {
  color: #26b6ed;
}
.header__nav ul li.current a::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 17px;
  height: 15px;
  background-image: url(../images/common/brain_icon.svg);
}
.header__hamburger {
  opacity: 1;
  pointer-events: auto;
  position: absolute;
  background-image: url(../images/common/menu_bg.svg);
  width: 120px;
  height: 120px;
  right: -1px;
  top: 0px;
  cursor: pointer;
  pointer-events: auto;
  z-index: 9990;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1024px) {
  .header__hamburger {
    width: 80px;
    height: 80px;
    top: 0;
  }
}
.header__hamburger .wrap {
  position: absolute;
  top: 50%;
  left: 56%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header__hamburger .btn-trigger {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  height: 30px;
  width: 50px;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .header__hamburger .btn-trigger {
    height: 20px;
    width: 35px;
  }
}
.header__hamburger .hamburger-text {
  position: relative;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1;
  color: #26b6ed;
}
@media screen and (max-width: 1024px) {
  .header__hamburger .hamburger-text {
    margin-top: 5px;
    font-size: 11px;
    width: fit-content;
    margin-inline: auto;
  }
}
.header__hamburger .btn-trigger span {
  position: absolute;
  left: 0px;
  right: 0px;
  margin: auto;
  display: block;
  height: 1px;
  width: 100%;
  background-color: #26b6ed;
  transition-duration: 300ms;
}
.header__hamburger .btn-trigger,
.header__hamburger .btn-trigger span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.header__hamburger .btn-trigger span:nth-of-type(1) {
  top: 0;
}
.header__hamburger .btn-trigger span:nth-of-type(2) {
  top: 0px;
  bottom: 0px;
}
.header__hamburger .btn-trigger span:nth-of-type(3) {
  bottom: 0;
}
.header #btn07 span:nth-of-type(1) {
  animation: btn07-bar01 0.75s forwards;
}
@keyframes btn07-bar01 {
  0% {
    transform: translateY(15px) rotate(45deg);
  }
  50% {
    transform: translateY(15px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.header #btn07 span:nth-of-type(2) {
  transition: all 0.25s 0.25s;
  opacity: 1;
}
.header #btn07 span:nth-of-type(3) {
  animation: btn07-bar03 0.75s forwards;
}
@keyframes btn07-bar03 {
  0% {
    transform: translateY(-15px) rotate(-45deg);
  }
  50% {
    transform: translateY(-15px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.header #btn07.active span:nth-of-type(1) {
  animation: active-btn07-bar01 0.75s forwards;
}
@keyframes active-btn07-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(15px) rotate(0);
  }
  100% {
    transform: translateY(15px) rotate(45deg);
  }
}
.header #btn07.active span:nth-of-type(2) {
  opacity: 0;
}
.header #btn07.active span:nth-of-type(3) {
  animation: active-btn07-bar03 0.75s forwards;
}
@keyframes active-btn07-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-15px) rotate(0);
  }
  100% {
    transform: translateY(-14px) rotate(-45deg);
  }
}
@media screen and (max-width: 768px) {
  @keyframes btn07-bar01 {
    0% {
      transform: translateY(10px) rotate(45deg);
    }
    50% {
      transform: translateY(10px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes btn07-bar03 {
    0% {
      transform: translateY(-10px) rotate(-45deg);
    }
    50% {
      transform: translateY(-10px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes active-btn07-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(10px) rotate(0);
    }
    100% {
      transform: translateY(10px) rotate(45deg);
    }
  }
  @keyframes active-btn07-bar03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-10px) rotate(0);
    }
    100% {
      transform: translateY(-10px) rotate(-45deg);
    }
  }
}
.header .mega-menu {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100dvh;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 80px 80px 0px 0px;
  overflow: scroll;
}
@media screen and (max-width: 1024px) {
  .header .mega-menu {
    height: 100%;
    overflow-y: scroll;
    padding-top: 100px;
    padding-right: 0;
    padding-bottom: 40px;
  }
}
.header .mega-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.header .mega-menu .flex {
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header .mega-menu .flex {
    flex-direction: column-reverse;
    row-gap: 0;
  }
}
.header .mega-menu__img {
  width: 35.1390922401vw;
}
@media screen and (max-width: 1024px) {
  .header .mega-menu__img {
    width: 100%;
    display: none;
  }
}
.header .mega-menu__img img {
  height: 100vh;
  object-fit: cover;
}
.header .mega-menu__nav {
  width: 52.7086383602vw;
  justify-content: unset !important;
  gap: 120px;
  align-items: flex-start !important;
}
@media screen and (max-width: 1024px) {
  .header .mega-menu__nav {
    width: 90%;
    margin: 0 auto;
    flex-direction: column !important;
  }
}
@media screen and (max-width: 1024px) {
  .header .mega-menu__nav ul {
    width: 100%;
  }
}
.header .mega-menu__nav li {
  margin-bottom: 30px;
  border-top: 1px solid #e8eced;
  padding-top: 30px;
}
.header .mega-menu__nav .main {
  font-size: 20px;
  color: #2ba9e2;
  margin-bottom: 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header .mega-menu__nav .main {
    flex-direction: column-reverse;
    align-items: flex-start;
    row-gap: 5px;
  }
}
.header .mega-menu__nav .main::after {
  content: "";
  background-image: url(../images/common/arrow_icon_b.svg);
  display: table;
  width: 20px;
  height: 20px;
  background-size: contain;
  margin-left: 30px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .header .mega-menu__nav .main::after {
    position: absolute;
    right: 20px;
    bottom: 5px;
  }
}
.header .mega-menu__nav .main small {
  font-size: 12px;
  color: #2a4653;
  opacity: 0.5;
  align-content: center;
}
.header .mega-menu__nav ul.sub li {
  border: none;
  padding-top: 0;
  position: relative;
  padding-left: 1.2em;
}
.header .mega-menu__nav ul.sub li::before {
  content: "";
  background: url(../images/common/arrwo_sub.svg) center center no-repeat;
  width: 8px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}
.header .mega-menu__nav ul.sub li:not(:last-child) {
  margin-bottom: 15px;
}

.article {
  gap: 45px;
}
@media screen and (max-width: 1024px) {
  .article {
    grid-template-columns: 1fr;
  }
}
.article_content .meta {
  display: flex;
  color: #2a4653;
  opacity: 0.5;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .article_content .meta {
    font-size: 12px;
  }
}
.article_content .meta ul {
  display: flex;
  gap: 10px;
}
.article_title {
  font-size: 18px;
  line-height: 1.4em;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .article_title {
    font-size: 14px;
  }
}
.article_author {
  gap: 20px;
  align-items: center;
}
.article_author i {
  width: 45px;
  border-radius: 50%;
  overflow: hidden;
}
.article_author i img {
  aspect-ratio: 1 !important;
}
@media screen and (max-width: 1024px) {
  .article_author p {
    font-size: 14px;
  }
}
.article_author p span {
  display: block;
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  .article_author p span {
    font-size: 11px;
  }
}
.article_author p small {
  font-size: 12px;
  padding-left: 3px;
}
@media screen and (max-width: 1024px) {
  .article_author p small {
    font-size: 11px;
  }
}
.article__item {
  position: relative;
}
.article__item i.name {
  top: 0;
  left: 0;
  position: absolute;
  background: #fff;
  font-style: normal;
  padding: 5px 20px;
  font-size: 13px;
  border-radius: 0 0 5px 0px;
}

.section {
  padding: 100px 0px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .section {
    padding: 75px 25px;
  }
}
.section__title {
  font-size: 3.2rem;
  margin-bottom: 65px;
  font-family: "Zen Old Mincho", serif;
  position: relative;
  line-height: 1.8em;
  word-break: auto-phrase;
}
.section__title.center {
  text-align: center;
}
.section__title.center::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .section__title {
    font-size: min(4.8vw, 20px);
    margin-bottom: 45px;
  }
}
.section__title::before {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 45px;
  height: 5px;
  content: "";
  border-radius: 3px;
  background: #2ba9e2;
  background: linear-gradient(135deg, rgb(43, 169, 226) 0%, rgb(152, 214, 241) 100%);
}
.section__title--sub {
  font-size: 24px;
  margin-bottom: 1em;
}
@media screen and (max-width: 1024px) {
  .section__title--sub {
    font-size: 18px;
  }
}
.section__title b {
  font-family: "Zen Old Mincho", serif;
  color: #2ba9e2;
  font-weight: 500;
}
.section__title small {
  display: block;
  line-height: 1;
  font-size: 15px;
  color: #2a4653;
  opacity: 0.5;
}
@media screen and (max-width: 1024px) {
  .section__title small {
    font-size: 13px;
  }
}

.footer_slider {
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .search_btn {
    right: 4px;
  }
}
.search_btn a {
  position: fixed;
  right: 0.3vw;
  bottom: 80px;
  width: 80px;
  height: 80px;
  border-radius: 10px 0 0 10px;
  box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.16);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  row-gap: 10px;
  font-size: 13px;
  line-height: 1.2em;
  text-align: center;
  padding: 10px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .search_btn a {
    right: 4px;
  }
}
.search_btn a::before {
  content: "";
  background-image: url(../images/common/search_icon.svg);
  display: table;
  width: 24px;
  height: 24px;
  background-size: 100%;
  background-repeat: no-repeat;
}
.search_btn a.btn {
  bottom: 175px;
  background: #2ba9e2;
  background: linear-gradient(135deg, rgb(43, 169, 226) 0%, rgb(165, 220, 244) 100%);
}
.search_btn a.seminar_btn {
  background: #fe9d0c;
  background: linear-gradient(90deg, rgb(254, 157, 12) 0%, rgb(254, 191, 99) 100%);
}
.search_btn a.seminar_btn::before {
  top: 15px;
  width: 18px;
  height: 18px;
  content: "";
  background-image: url(../images/common/pen_icon.svg);
}

.sns_btn a {
  position: fixed;
  right: 0.3vw;
  bottom: 80px;
  width: 80px;
  height: 80px;
  border-radius: 10px 0 0 10px;
  box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.16);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  row-gap: 10px;
  font-size: 13px;
  line-height: 1.2em;
  text-align: center;
  padding: 10px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .sns_btn a {
    right: 4px;
  }
}
.sns_btn a::before {
  position: absolute;
  top: 20px;
  content: "";
  background-image: url(../images/common/line_icon_w.svg);
  width: 28px;
  height: 28px;
  background-size: 100%;
  background-repeat: no-repeat;
}
.sns_btn a.line_btn {
  bottom: 175px;
  background: #5fcb2e;
  background: linear-gradient(135deg, rgb(95, 203, 46) 0%, rgb(186, 255, 155) 100%);
}
.sns_btn a.seminar_btn {
  background: #2ba9e2;
  background: linear-gradient(135deg, rgb(43, 169, 226) 0%, rgb(165, 220, 244) 100%);
}
.sns_btn a.seminar_btn::before {
  top: 15px;
  width: 18px;
  height: 18px;
  content: "";
  background-image: url(../images/common/pen_icon.svg);
}

.footer {
  background-color: rgba(43, 169, 226, 0.1);
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 60px 0 80px;
  }
}
.footer::after {
  content: "";
  background-image: url(../images/common/footer_bg2.svg);
  width: 100%;
  height: 304px;
  position: absolute;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.footer::before {
  content: "";
  background-image: url(../images/common/footer_bg.svg);
  width: 100%;
  height: 304px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(10deg);
  background-repeat: no-repeat;
  background-size: cover;
}
.footer__inner {
  max-width: 1150px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 1024px) {
  .footer__inner {
    padding-inline: 25px;
  }
}
.footer__cta {
  background: #2ba9e2;
  background: linear-gradient(135deg, rgb(43, 169, 226) 0%, rgb(156, 216, 242) 100%);
  border-radius: 10px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .footer__cta {
    margin-bottom: 60px;
  }
}
.footer__cta a {
  padding: 60px 80px;
  gap: 40px;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .footer__cta a {
    flex-direction: column;
    padding: 25px;
    row-gap: 5px;
  }
}
.footer__cta a::before {
  content: "";
  background-image: url(../images/common/arrow_icon_b_w.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10%;
  width: 80px;
  height: 80px;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  .footer__cta a::before {
    top: 25%;
    transform: translateY(-25%);
    right: 10%;
    width: 40px;
    height: 40px;
  }
}
.footer__cta a * {
  color: #fff;
}
.footer__cta a h3 {
  width: 25%;
  font-size: 32px;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 1024px) {
  .footer__cta a h3 {
    width: 100%;
    font-size: 22px;
  }
}
.footer__cta a h3 small {
  display: block;
  line-height: 1;
  font-size: 14px;
}
.footer__cta a .desc {
  width: 75%;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .footer__cta a .desc {
    width: 100%;
    font-size: 12px;
    letter-spacing: 0.01em;
  }
}
.footer__cta2 {
  background: #2ba9e2;
  background: linear-gradient(135deg, rgb(43, 169, 226) 0%, rgb(156, 216, 242) 100%);
  border-radius: 10px;
  margin-bottom: 80px;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .footer__cta2 {
    padding: 30px 25px;
  }
}
.footer__cta2 h3 {
  font-size: 3rem;
  margin-bottom: 30px;
  font-family: "Zen Old Mincho", serif;
  position: relative;
  line-height: 1.8em;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .footer__cta2 h3 {
    font-size: 2.2rem;
  }
}
.footer__cta2 h3 small {
  display: block;
  line-height: 1;
  font-size: 15px;
  color: #fff;
}
.footer__cta2 .wrap ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 840px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .footer__cta2 .wrap ul {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__cta2 .wrap ul li {
  background-color: #fff;
  padding: 15px 50px 15px 65px;
  border-radius: 3px;
  position: relative;
  width: 50%;
  text-align: center;
}
.footer__cta2 .wrap ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25%;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .footer__cta2 .wrap ul li::before {
    left: 10%;
  }
}
@media screen and (max-width: 1024px) {
  .footer__cta2 .wrap ul li {
    width: 100%;
    text-align: center;
  }
}
.footer__cta2 .wrap ul li.tel::before {
  background-image: url(../images/common/tel_icon.svg);
}
.footer__cta2 .wrap ul li.tel a {
  color: #2ba9e2;
}
.footer__cta2 .wrap ul li.line::before {
  background-image: url(../images/common/line_icon.svg);
}
.footer__cta2 .wrap ul li.line a {
  color: #5ecd2d;
}
.footer .lower {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer .lower {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.footer__nav .grid {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .footer__nav .grid {
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    row-gap: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__nav .grid li:nth-child(1) {
    order: 1;
  }
  .footer__nav .grid li:nth-child(2) {
    order: 2;
  }
  .footer__nav .grid li:nth-child(3) {
    order: 3;
  }
  .footer__nav .grid li:nth-child(4) {
    order: 5;
  }
  .footer__nav .grid li:nth-child(5) {
    order: 4;
  }
  .footer__nav .grid li:nth-child(6) {
    order: 6;
  }
}
.footer__nav .grid strong {
  display: block;
  margin-bottom: 15px;
  font-size: 17px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .footer__nav .grid strong {
    font-size: 15px;
  }
}
.footer__nav .grid .sub li {
  position: relative;
  padding-left: 1em;
}
.footer__nav .grid .sub li:not(:last-child) {
  margin-bottom: 15px;
}
.footer__nav .grid .sub li::before {
  content: "";
  background: url(../images/common/arrwo_sub.svg) no-repeat center center;
  width: 8px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .footer__nav .grid .sub li a {
    font-size: 13px;
    letter-spacing: 0.01em;
  }
}
@media screen and (max-width: 1024px) {
  .footer__logo {
    margin-bottom: 60px;
  }
}
.footer__logo img {
  width: 210px;
  margin-bottom: 20px;
}
.footer__logo a.btn {
  color: #2ba9e2;
  background-color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 15px;
  font-size: 16px;
  border-radius: 5px;
  width: fit-content;
}
.footer__logo a.btn::before {
  content: "";
  background-image: url(../images/common/instagram_icon.svg);
  display: table;
  width: 20px;
  height: 20px;
  background-size: contain;
}
.footer__logo a.btn::after {
  content: "";
  background-image: url(../images/common/arrow_icon_b.svg);
  display: table;
  width: 15px;
  height: 15px;
  background-size: contain;
}
.footer .page-top {
  position: absolute;
  right: 65px;
  bottom: 65px;
  width: 55px;
}

#seminar .modal-content {
  padding: 40px 25px;
}
@media screen and (max-width: 1024px) {
  #seminar .modal-content {
    width: 90%;
  }
}
#seminar .modal-content .date {
  opacity: 0.5;
}
@media screen and (max-width: 1024px) {
  #seminar .modal-content .date {
    font-size: 12px;
  }
}
#seminar .modal-content h2 {
  margin-bottom: 15px !important;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  #seminar .modal-content h2 {
    font-size: 20px;
    line-height: 1.6em;
  }
}
@media screen and (max-width: 1024px) {
  #seminar .modal-content .seminar-info tr {
    display: block;
  }
  #seminar .modal-content .seminar-info tr:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f3f4f5;
  }
  #seminar .modal-content .seminar-info th,
  #seminar .modal-content .seminar-info td {
    display: block;
    width: 100% !important;
    text-align: left;
    font-size: 14px;
  }
}
#seminar .modal-content .seminar-info th,
#seminar .modal-content .seminar-info td {
  padding: 0 0 5px;
}
#seminar .modal-content .seminar-info th {
  width: 15%;
  font-weight: 400;
  vertical-align: baseline;
}
#seminar .modal-content .seminar-info td {
  width: 85%;
}
#seminar .modal-close {
  position: unset;
  width: fit-content;
  position: unset;
  margin: 40px auto 0;
  display: block;
  border: 1px solid;
  font-size: 16px;
}

.wp-pagenavi {
  margin: 100px auto 60px;
  font-size: 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2ba9e2;
  gap: 10px;
}
.wp-pagenavi a {
  color: #2a4653;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  gap: 10px;
}
.wp-pagenavi a.page {
  margin: 0;
  border: solid 1px #e0e4e6;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  line-height: 40px;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  background: none;
}
.wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink {
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  padding: 0 20px;
  border: solid 1px #e0e4e6;
  position: relative;
}
.wp-pagenavi a.nextpostslink::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../images/common/next_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: table;
  box-sizing: border-box;
}
@media (hover: hover) {
  .wp-pagenavi a.nextpostslink:hover::after {
    background-image: url(../images/common/next_icon_w.svg);
  }
}
.wp-pagenavi a.previouspostslink::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../images/common/prev_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: table;
  box-sizing: border-box;
}
@media (hover: hover) {
  .wp-pagenavi a.previouspostslink:hover::before {
    background-image: url(../images/common/prev_icon_w.svg);
  }
}
@media (hover: hover) {
  .wp-pagenavi a:hover {
    border: solid 1px #2ba9e2 !important;
    background: #2ba9e2;
    color: #fff;
  }
}
.wp-pagenavi span {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}
.wp-pagenavi span.current {
  margin: 0 0px 0 0;
  border: none;
  background: #2ba9e2;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  line-height: 40px;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.wp-pagenavi .first,
.wp-pagenavi .extend {
  margin-right: 10px;
}

.pager {
  width: 75%;
  margin: 140px auto 0;
}
@media screen and (max-width: 1024px) {
  .pager {
    width: fit-content;
    margin-block: 40px 80px;
  }
}
.pager__list {
  display: flex;
  justify-content: center;
  gap: 80px;
  align-items: end;
  padding-left: 0 !important;
}
@media screen and (max-width: 1024px) {
  .pager__list {
    gap: 20px;
  }
}
.pager__item {
  min-width: 130px;
  text-align: center;
  list-style: none !important;
  position: relative;
}
.pager__item a {
  border: 1px solid #e0e4e6;
  border-radius: 5px;
  padding: 5px 0;
  display: block;
  text-decoration: none !important;
  color: #2a4653 !important;
}
@media (hover: hover) {
  .pager__item a:hover {
    border: 1px solid #2ba9e2 !important;
    color: #fff !important;
    background-color: #26b6ed;
  }
  .pager__item a:hover i {
    color: #fff !important;
  }
}
@media screen and (max-width: 1024px) {
  .pager__item a {
    padding: 5px 10px;
  }
}
.pager__item a i {
  font-style: normal;
}
.pager__item.prev, .pager__item.next {
  min-width: 100px;
}
.pager__item.prev a, .pager__item.next a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pager__item.prev a::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../images/common/prev_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: table;
  box-sizing: border-box;
}
@media (hover: hover) {
  .pager__item.prev a:hover::before {
    background-image: url(../images/common/prev_icon_w.svg);
  }
}
.pager__item.next a::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../images/common/next_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: table;
  box-sizing: border-box;
}
@media (hover: hover) {
  .pager__item.next a:hover::after {
    background-image: url(../images/common/next_icon_w.svg);
  }
}

:root {
  /* カラー設定 */
  --color-primary: #3498db;
  --color-secondary: #2ecc71;
  --color-accent: #e74c3c;
  --color-background: #ffffff;
  --color-text: #333333;
  /* フォント設定 */
  --font-base: "Noto Sans JP", sans-serif;
  --font-size-base: 16px;
  --font-size-heading: 24px;
  /* スペーシング */
  --spacing-10: 10px;
  --spacing-15: 15px;
  --spacing-20: 20px;
  --spacing-25: 25px;
  --spacing-30: 30px;
  --spacing-35: 35px;
  --spacing-40: 40px;
  --spacing-45: 45px;
  --spacing-50: 50px;
  /* ボーダー・シャドウ */
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#home {
  padding-top: 140px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  #home {
    padding-top: 100px;
  }
}
#home .fv {
  position: relative;
}
#home .fv::before {
  content: "";
  background-image: url(../images/top/bg_wave00.svg);
  width: 100%;
  height: 66.088579795vw;
  position: absolute;
  top: 8.0527086384vw;
  left: -56.3689604685vw;
  transform: rotate(-12deg);
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  #home .fv {
    padding-top: 55vw;
    padding-bottom: 45vw;
  }
}
#home .fv__container .flex {
  align-items: center;
}
@media screen and (max-width: 1024px) {
  #home .fv__container .flex {
    flex-direction: column;
  }
}
#home .fv__container .flex .left_box {
  width: 37.4084919473vw;
  padding-left: 7%;
}
@media screen and (max-width: 1024px) {
  #home .fv__container .flex .left_box {
    padding-inline: 20px;
    padding-bottom: 20px;
    width: 100%;
  }
}
#home .fv__container .flex .left_box i {
  display: block;
  margin-bottom: 20px;
  width: 13.17715959vw;
}
@media screen and (max-width: 1024px) {
  #home .fv__container .flex .left_box i {
    width: 46.1538461538vw;
  }
}
#home .fv__container .flex .left_box i img {
  width: 100%;
}
#home .fv__container .flex .left_box h1 {
  font-size: clamp(20px, 2.196193265vw, 42px);
  line-height: 2em;
  margin-bottom: 30px;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 1024px) {
  #home .fv__container .flex .left_box h1 {
    font-size: clamp(20px, 7.6923076923vw, 26px);
  }
}
#home .fv__container .flex .left_box h1 small {
  line-height: 1;
  font-size: 24px;
  vertical-align: super;
}
#home .fv__container .flex .left_box p {
  line-height: 2em;
  font-size: clamp(14px, 1.1713030747vw, 18px);
}
#home .fv__container .flex .left_box p small {
  line-height: 1;
  font-size: 14px;
  vertical-align: super;
}
#home .fv__container .flex .right_box {
  width: 62.5915080527vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  #home .fv__container .flex .right_box {
    width: 100%;
  }
}
#home .section--services {
  padding-bottom: 140px;
  position: relative;
  overflow: visible;
}
@media screen and (max-width: 1024px) {
  #home .section--services {
    padding-top: 0;
    padding-bottom: 100px;
  }
}
#home .section--services::before {
  content: "";
  background-image: url(../images/top/bg_wave01.svg);
  width: 100%;
  height: 300px;
  position: absolute;
  top: 0;
  transform: rotate(-12deg);
  background-repeat: no-repeat;
}
#home .section--services .section__container {
  max-width: unset;
  overflow: hidden;
}
#home .section--services .section__container .flex {
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 1024px) {
  #home .section--services .section__container .flex {
    flex-direction: column-reverse;
    row-gap: 35px;
  }
}
#home .section--services .section__container .flex--alternating:nth-child(odd) {
  padding-left: calc((100vw - 1150px) / 2);
  margin-bottom: 180px;
}
@media screen and (max-width: 1024px) {
  #home .section--services .section__container .flex--alternating:nth-child(odd) {
    margin-bottom: 80px;
  }
}
#home .section--services .section__container .flex--alternating:nth-child(odd)::before {
  content: "";
  background-image: url(../images/top/bg_wave02.svg);
  width: 100%;
  height: 400px;
  position: absolute;
  bottom: -160px;
  left: -180px;
  z-index: -1;
  transform: rotate(-3deg);
  background-repeat: no-repeat;
  background-size: cover;
}
#home .section--services .section__container .flex--alternating:nth-child(even) {
  padding-right: calc((100vw - 1150px) / 2);
}
#home .section--services .section__container .flex--alternating:nth-child(even)::before {
  content: "";
  background-image: url(../images/top/bg_wave03.svg);
  width: 100%;
  height: 22.3279648609vw;
  position: absolute;
  bottom: -160px;
  left: 0;
  z-index: -1;
  transform: rotate(-6deg);
  background-repeat: no-repeat;
  background-size: cover;
}
#home .section--services .left img {
  width: 52.7086383602vw;
}
@media screen and (max-width: 1024px) {
  #home .section--services .left img {
    width: 100%;
  }
}
#home .section--services .right {
  width: 55%;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  #home .section--services .right {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  #home .section--services .right .btn {
    flex-direction: unset;
    gap: 10px !important;
  }
}
#home .section--services .right .desc {
  font-size: 18px;
  line-height: 2em;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  #home .section--services .right .desc {
    font-size: 14px;
    margin-bottom: 0;
  }
}
#home .section--information .section__container {
  background-color: #fff;
  box-shadow: 0px 5px 20px -15px rgba(0, 0, 0, 0.2);
  padding: 60px;
  gap: 100px;
}
@media screen and (max-width: 1024px) {
  #home .section--information .section__container {
    flex-direction: column;
    padding: 40px 25px;
    row-gap: 20px;
  }
}
#home .section--information .section__container .left {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  #home .section--information .section__container .left {
    width: 100%;
  }
}
#home .section--information .section__container .right {
  width: 80%;
}
@media screen and (max-width: 1024px) {
  #home .section--information .section__container .right {
    width: 100%;
  }
}
#home .section--information .section__container .right .list-box__item:not(:last-child) {
  border-bottom: 1px solid #f3f4f5;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
#home .section--information .section__container .right .list-box__item a {
  gap: 0 20px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  #home .section--information .section__container .right .list-box__item a {
    flex-wrap: wrap;
  }
}
#home .section--information .section__container .right .list-box__item a time {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  #home .section--information .section__container .right .list-box__item a time {
    font-size: 14px;
  }
}
#home .section--information .section__container .right .list-box__item a i {
  background: #009ee5;
  background: linear-gradient(90deg, rgba(0, 158, 229, 0.1) 0%, rgba(12, 163, 231, 0.1) 10%, rgba(157, 222, 252, 0.1) 100%);
  font-style: normal;
  font-size: 14px;
  padding: 5px 10px;
}
@media screen and (max-width: 1024px) {
  #home .section--information .section__container .right .list-box__item a i {
    font-size: 12px;
  }
}
#home .section--information .section__container .right .list-box__item a p {
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  #home .section--information .section__container .right .list-box__item a p {
    padding-top: 10px;
    font-size: 14px;
    width: 100%;
  }
}
#home .section--case-study {
  background-color: #eef0f1;
  margin-bottom: 150px;
  padding-bottom: 150px;
}
@media screen and (max-width: 1024px) {
  #home .section--case-study {
    margin-bottom: 80px;
    padding-bottom: 80px;
  }
}
#home .section--case-study .section__container {
  max-width: 920px;
}
#home .section--case-study .desc {
  margin-bottom: 80px;
}
#home .section--case-study .case_box .case_list__item {
  background-color: #fff;
  box-shadow: 0px 5px 20px -15px rgba(0, 0, 0, 0.1);
  padding: 40px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #home .section--case-study .case_box .case_list__item {
    padding: 20px 25px;
  }
}
#home .section--case-study .case_box .case_list__item::before {
  position: absolute;
  content: "case01";
  top: -29px;
  left: 0;
  width: fit-content;
  background-color: #2ba9e2;
  color: #fff;
  font-size: 18px;
  color: #fff;
  padding: 0 10px;
  border-radius: 5px 5px 0 0;
}
#home .section--case-study .case_box .case_list__item:nth-child(2)::before {
  content: "case02";
}
#home .section--case-study .case_box .case_list__item:nth-child(3)::before {
  content: "case03";
  background-color: #2ba9e2;
}
#home .section--case-study .case_box .case_list__item:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  #home .section--case-study .case_box .case_list__item:not(:last-child) {
    margin-bottom: 50px;
  }
}
#home .section--case-study .case_box .case_list__item .head {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  #home .section--case-study .case_box .case_list__item .head {
    flex-direction: column;
    row-gap: 10px;
  }
}
#home .section--case-study .case_box .case_list__item .head i {
  width: 70px;
  aspect-ratio: 1;
}
@media screen and (max-width: 1024px) {
  #home .section--case-study .case_box .case_list__item .head i {
    display: flex;
    aspect-ratio: unset;
    align-items: center;
    width: 100%;
    gap: 10px;
    font-style: normal;
  }
  #home .section--case-study .case_box .case_list__item .head i img {
    width: 70px;
    aspect-ratio: 1;
  }
  #home .section--case-study .case_box .case_list__item .head i small {
    width: 80%;
  }
}
#home .section--case-study .case_box .case_list__item .head h3 {
  font-size: 22px;
}
@media screen and (max-width: 1024px) {
  #home .section--case-study .case_box .case_list__item .head h3 {
    font-size: 18px;
    line-height: 1.6em;
    font-weight: 500;
  }
}
#home .section--case-study .case_box .case_list__item .head h3 small {
  display: block;
  line-height: 1;
  opacity: 0.8;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  #home .section--case-study .case_box .case_list__item .head h3 small {
    display: none;
  }
}
#home .section--case-study .case_box .case_list__item .problem li {
  background-color: #f3f4f5;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #home .section--case-study .case_box .case_list__item .problem li {
    flex-direction: column;
    font-size: 13px;
    padding: 15px 20px;
  }
}
#home .section--case-study .case_box .case_list__item .problem li:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  #home .section--case-study .case_box .case_list__item .problem li:not(:last-child) {
    margin-bottom: 20px;
  }
}
#home .section--case-study .case_box .case_list__item .problem li span {
  position: relative;
  display: block;
  width: 150px;
  padding-left: 1.4em;
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  #home .section--case-study .case_box .case_list__item .problem li span {
    width: fit-content;
    margin-right: auto;
    margin-bottom: 5px;
    font-size: 14px;
  }
}
#home .section--case-study .case_box .case_list__item .problem li span::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 10px;
  height: 10px;
  background-color: #2a4653;
  border-radius: 50px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  #home .section--case-study .case_box .case_list__item .problem li span::before {
    width: 7px;
    height: 7px;
  }
}
#home .section--case-study .case_box .case_list__item .problem li:nth-child(2) {
  background-color: #e6f5fc;
}
#home .section--case-study .case_box .case_list__item .problem li:nth-child(2) span {
  color: #2ba9e2;
}
#home .section--case-study .case_box .case_list__item .problem li:nth-child(2) span::before {
  background-color: #2ba9e2;
}
#home .section--seminar {
  background: linear-gradient(90deg, #fdfdfd 0%, #fdfdfd 8.0527086384vw, #eef8fd 8.0527086384vw, #eef8fd 100%);
  padding-block: 140px 100px;
}
@media screen and (max-width: 1024px) {
  #home .section--seminar {
    background: linear-gradient(90deg, #fdfdfd 0%, #fdfdfd 4vw, #eef8fd 4vw, #eef8fd 100%);
    padding-block: 15px;
  }
}
#home .section--seminar .section__container {
  width: 75%;
}
@media screen and (max-width: 1024px) {
  #home .section--seminar .section__container {
    width: 100%;
    padding: 40px 15px 40px 25px;
  }
}
#home .section--seminar .desc {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  #home .section--seminar .desc {
    font-size: 14px;
  }
}
#home .section--seminar .slide {
  margin-top: 60px;
}
#home .section--seminar .slide .area {
  background-color: #c9e9f8;
  display: block;
  width: fit-content;
  margin-bottom: 15px;
  padding-block: 5px;
  padding-inline: 10px;
  font-style: normal;
}
@media screen and (max-width: 1024px) {
  #home .section--seminar .slide .area {
    font-size: 12px;
  }
}
#home .section--seminar .slide .date {
  color: #2a4653;
  opacity: 0.5;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  #home .section--seminar .slide .date {
    font-size: 12px;
  }
}
#home .section--seminar .slide .title {
  font-size: 20px;
  color: #2a4653;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  #home .section--seminar .slide .title {
    font-size: 18px;
  }
}
#home .section--seminar .slide .info {
  font-size: 16px;
  color: #2a4653;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  #home .section--seminar .slide .info {
    font-size: 14px;
  }
}
#home .section--seminar .slide .btn {
  color: #2ba9e2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  #home .section--seminar .slide .btn {
    font-size: 12px;
    letter-spacing: 0.01em;
  }
}
#home .section--seminar .slide .btn::after {
  content: "";
  background-image: url("../images/common/arrow_icon.svg");
  display: table;
  width: 20px;
  height: 20px;
}
#home .section--introduction {
  padding-bottom: 0;
}
#home .section--introduction .section__container {
  background-color: #fff;
  box-shadow: 0px 5px 20px -15px rgba(0, 0, 0, 0.2);
}
#home .section--introduction .section__container .btn a {
  max-width: 260px !important;
}
#home .section--introduction .flex {
  align-items: center;
}
@media screen and (max-width: 1024px) {
  #home .section--introduction .flex {
    flex-direction: column;
  }
}
#home .section--introduction .left {
  width: 35%;
}
@media screen and (max-width: 1024px) {
  #home .section--introduction .left {
    width: 100%;
  }
}
#home .section--introduction .right {
  width: 65%;
  padding: 35px 35px 35px 60px;
}
@media screen and (max-width: 1024px) {
  #home .section--introduction .right {
    width: 100%;
    padding: 35px 25px;
  }
}
#home .section--instructor {
  padding-bottom: 0;
}
#home .section--instructor .section__container {
  background-image: url(../images/top/bg_01.jpg);
  background-size: cover;
  padding: 3px;
  border-radius: 10px;
}
#home .section--instructor .section__container .bg {
  background-color: #fff;
  border-radius: 10px;
  padding: 100px 0px 120px 80px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  #home .section--instructor .section__container .bg {
    flex-direction: column;
    padding: 50px 25px;
    row-gap: 60px;
    padding-bottom: 0;
  }
}
#home .section--instructor .section__container .bg .left {
  width: 35%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  #home .section--instructor .section__container .bg .left {
    width: 100%;
  }
}
#home .section--instructor .section__container .bg .left::before {
  content: "";
  background-image: url(../images/top/map.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
  width: 376.84px;
  height: 298.52px;
  position: absolute;
  bottom: -75px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  #home .section--instructor .section__container .bg .left::before {
    width: 194px;
    height: 153.68px;
    top: 0;
    right: 0;
    left: auto;
  }
}
@media screen and (max-width: 1024px) {
  #home .section--instructor .section__container .bg .left h2 {
    font-size: 24px;
  }
}
#home .section--instructor .section__container .bg .right {
  width: 65%;
  position: relative;
  right: -30px;
}
@media screen and (max-width: 1024px) {
  #home .section--instructor .section__container .bg .right {
    width: 100%;
    position: unset;
  }
}
@media screen and (max-width: 1024px) {
  #home .section--what {
    padding: 55px 25px;
  }
}
#home .section--what .section__container {
  background-color: #fff;
  box-shadow: 0px 5px 20px -15px rgba(0, 0, 0, 0.2);
  padding: 60px;
}
@media screen and (max-width: 1024px) {
  #home .section--what .section__container {
    padding: 40px 25px 40px;
  }
}
@media screen and (max-width: 1024px) {
  #home .section--what .section__container .desc {
    margin-bottom: 0;
  }
}
#home .section--voice {
  background-color: #e5f3f9;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #home .section--voice {
    padding: 50px 25px 60px;
  }
}
#home .section--voice .section__title::before {
  left: 50%;
  transform: translateX(-50%);
}
#home .section--voice .swiper-slide {
  background-color: #fff;
  padding: 45px;
}
@media screen and (max-width: 1024px) {
  #home .section--voice .swiper-slide {
    padding: 25px;
  }
}
#home .section--voice .swiper-slide-active {
  border: none !important;
}
#home .section--voice .slide .head {
  display: flex;
  align-items: end;
  gap: 30px;
  margin-bottom: 20px;
}
#home .section--voice .slide .head h3 {
  font-size: 22px;
  text-align: left;
  width: 80%;
  line-height: 1.3em;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  #home .section--voice .slide .head h3 {
    width: 100%;
    font-size: 18px;
  }
}
#home .section--voice .slide .head h3 small {
  display: block;
  line-height: 1;
  opacity: 0.8;
  font-size: 16px;
  margin-bottom: 10px;
}
#home .section--voice .slide .head i {
  width: 20%;
  max-width: 80px;
}
@media screen and (max-width: 1024px) {
  #home .section--voice .slide .head i {
    width: 40%;
  }
}
#home .section--voice .slide .desc {
  margin-bottom: 0;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  #home .section--voice .slide .desc {
    font-size: 14px;
  }
}
#home .section--blog {
  position: relative;
  overflow: hidden;
}
#home .section--blog::before {
  content: "";
  background-image: url(../images/top/bg_wave_blog.svg);
  width: 100%;
  height: 17.2035139092vw;
  position: absolute;
  top: 10.6149341142vw;
  right: -70px;
  transform: rotate(-7deg);
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  #home .section--blog .section__title {
    margin-bottom: 80px;
  }
}
#home .section--blog .btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
}
#home .section--blog .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  color: #fff;
}
#home .section--blog .btn a:after {
  content: "";
  background-image: url(../images/common/arrow_icon_w.svg);
  display: table;
  width: 20px;
  height: 20px;
  background-size: contain;
}
#home .section__container {
  max-width: 1150px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}

#page {
  padding-top: 160px;
}
@media screen and (max-width: 1024px) {
  #page {
    padding-top: 110px;
  }
}
@media screen and (max-width: 1024px) {
  #page .page-fv {
    margin-bottom: 70px;
  }
}
#page .page-fv .fv__container {
  position: relative;
}
#page .page-fv .fv__container .flex {
  align-items: center;
}
@media screen and (max-width: 1024px) {
  #page .page-fv .fv__container .flex {
    flex-direction: column-reverse;
  }
}
#page .page-fv .fv__container .left_box {
  width: 40%;
  padding-left: 8.0527086384vw;
}
@media screen and (max-width: 1024px) {
  #page .page-fv .fv__container .left_box {
    width: 100%;
    padding: 20px 20px 0px;
  }
}
#page .page-fv .fv__container .left_box h1 {
  font-size: 36px;
  color: #2ba9e2;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 1024px) {
  #page .page-fv .fv__container .left_box h1 {
    font-size: 24px;
  }
}
#page .page-fv .fv__container .left_box h1 small {
  display: block;
  font-size: 16px;
  line-height: 1;
  color: #2a4653;
  opacity: 0.5;
  position: relative;
  margin-left: 15px;
}
@media screen and (max-width: 1024px) {
  #page .page-fv .fv__container .left_box h1 small {
    font-size: 13px;
  }
}
#page .page-fv .fv__container .left_box h1 small.instructor {
  font-size: 28px;
  display: contents;
  color: #2ba9e2;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 1024px) {
  #page .page-fv .fv__container .left_box h1 small.instructor {
    font-size: 16px;
  }
}
#page .page-fv .fv__container .left_box h1 small::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: #2a4653;
  border-radius: 50%;
}
#page .page-fv .fv__container .left_box .area_cat {
  border-radius: 50px;
  background-color: #e5f4fb;
  padding-inline: 15px;
  padding-block: 3px;
  display: block;
  margin-top: 10px;
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  #page .page-fv .fv__container .left_box .breadcrumbs {
    position: unset;
    padding-top: 20px;
  }
  #page .page-fv .fv__container .left_box .breadcrumbs .container {
    padding: 0;
  }
  #page .page-fv .fv__container .left_box .breadcrumbs .container span:nth-child(1) {
    margin-left: 0;
  }
}
#page .page-fv .fv__container .right_box {
  width: 60%;
}
#page .page-fv .fv__container .right_box img {
  aspect-ratio: 840/353;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  #page .page-fv .fv__container .right_box {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  #page .section {
    padding: 0px 25px 80px;
  }
}
#page .section__container {
  max-width: 1150px;
  margin: 0 auto;
}
#page .section__container .lead-text {
  font-size: 30px;
  text-align: center;
  margin-bottom: 60px;
}
#page.about-us #greeting .section__container {
  background-color: #fff;
  text-align: center;
  box-shadow: 0px 5px 20px -10px rgba(0, 0, 0, 0.2);
}
#page.about-us #greeting .section__container .text_box {
  padding: 80px 0;
}
#page.about-us #vision-mission ul li {
  background-color: #fff;
  box-shadow: 0px 5px 20px -10px rgba(0, 0, 0, 0.2);
  padding: 40px 40px 30px;
  justify-content: space-between;
  align-items: center;
}
#page.about-us #vision-mission ul li h3 {
  font-size: 24px;
  font-family: "Zen Old Mincho", serif;
  color: #2ba9e2;
}
#page.about-us #vision-mission ul li h3 small {
  display: block;
  line-height: 1;
  font-size: 14px;
}
#page.about-us #vision-mission ul li p {
  width: 80%;
}
#page.about-us #vision-mission ul li:not(:last-child) {
  margin-bottom: 40px;
}
#page .supervisor {
  border-top: 1px solid #e8eced;
  margin-top: 80px;
}
#page .supervisor__inner {
  background-color: #fff;
  padding: 40px 0 0;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  #page .supervisor__inner {
    flex-direction: column;
  }
}
#page .supervisor__inner .left {
  padding-bottom: 0 !important;
  margin: 0 !important;
}
@media screen and (max-width: 1024px) {
  #page .supervisor__inner .left {
    width: 50%;
    margin: 0 auto;
  }
}
#page .supervisor__inner .right h3 {
  margin-bottom: 10px;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 1024px) {
  #page .supervisor__inner .right h3 {
    font-size: 16px;
  }
}
#page .supervisor__inner .right h3 span {
  border-radius: 50px;
  font-size: 14px;
  background-color: #778890;
  color: #fff;
  margin-right: 10px;
  padding: 5px 10px;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 1024px) {
  #page .supervisor__inner .right h3 span {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 30px;
  }
}
#page .supervisor__inner .right p {
  margin-bottom: 0 !important;
}
#page .supervisor__inner img {
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  max-width: 150px;
}
#page #blog {
  padding-top: 120px;
}
@media screen and (max-width: 1024px) {
  #page #blog {
    padding-top: 0px;
  }
}
#page #blog .section__container {
  position: relative;
}
@media screen and (max-width: 1024px) {
  #page #blog .section__container > .flex {
    flex-direction: column-reverse;
    row-gap: 60px;
  }
}
#page #blog .side_contents {
  width: 25%;
}
@media screen and (max-width: 1024px) {
  #page #blog .side_contents {
    width: 100%;
  }
}
#page #blog .side_contents__inner .accordion {
  font-size: 20px;
  color: #2ba9e2;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  text-align: left;
}
#page #blog .side_contents__inner .accordion::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-image: url(../images/common/accordion_close.svg);
  background-size: contain;
}
#page #blog .side_contents__inner .accordion.open::before {
  background-image: url(../images/common/accordion_open.svg);
  background-size: contain;
}
#page #blog .side_contents__inner .nameinstructor_cat {
  margin-bottom: 40px;
  border-top: 1px solid #e8eced;
  padding-top: 40px;
}
#page #blog .side_contents__inner .tag_cat {
  border-top: 1px solid #e8eced;
  padding-top: 40px;
}
#page #blog .side_contents__inner .tag_cat ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#page #blog .side_contents__inner .tag_cat ul li {
  border: 1px solid #e8eced;
  border-radius: 50px;
  padding: 2px 15px;
  margin-bottom: 0;
}
#page #blog .side_contents__inner .tag_cat ul li::before {
  display: none;
}
#page #blog .side_contents__inner .tag_cat ul li a {
  font-size: 14px;
}
#page #blog .side_contents__list li {
  position: relative;
  padding-left: 1em;
}
#page #blog .side_contents__list li:not(:last-child) {
  margin-bottom: 15px;
}
#page #blog .side_contents__list li::before {
  content: "";
  background: url(../images/common/arrwo_sub.svg) no-repeat center center;
  width: 8px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#page #blog .main_contents {
  width: 75%;
  padding-left: 100px;
}
@media screen and (max-width: 1024px) {
  #page #blog .main_contents {
    width: 100%;
    padding-left: 0px;
  }
}
#page #blog .btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
}
@media screen and (max-width: 1024px) {
  #page #blog .btn {
    top: -10px;
    width: 150px;
  }
}
#page .areticle-blogs {
  padding-top: 100px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-blogs {
    padding-top: 0;
  }
}
#page .areticle-blogs .meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
#page .areticle-blogs .meta small {
  font-size: 14px;
  color: #2a4653;
  opacity: 0.5;
}
#page .areticle-blogs .meta ul {
  display: flex;
  margin-bottom: 0 !important;
  gap: 10px;
}
#page .areticle-blogs .meta ul li {
  list-style: none !important;
}
#page .areticle-blogs .meta ul li a {
  text-decoration: none !important;
  font-size: 14px;
  color: #2a4653 !important;
  opacity: 0.5;
}
#page .areticle-blogs h1.title {
  font-size: 26px;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.6em;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-blogs h1.title {
    font-size: 20px;
  }
}
#page .areticle-blogs .blogs__inner {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  #page .areticle-blogs .blogs__inner {
    flex-direction: column;
  }
}
#page .areticle-blogs .blogs__inner .left {
  max-width: 710px;
  margin-inline: auto;
  padding: 0 0 80px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-blogs .blogs__inner .left {
    padding-inline: 25px;
    padding-bottom: 0;
  }
}
#page .areticle-blogs .blogs__inner .left h2 {
  position: relative;
  font-size: 24px;
  margin: 50px 0 50px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-blogs .blogs__inner .left h2 {
    font-size: 20px;
  }
}
#page .areticle-blogs .blogs__inner .left h2::before {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 45px;
  height: 5px;
  content: "";
  border-radius: 3px;
  background: #2ba9e2;
  background: linear-gradient(135deg, rgb(43, 169, 226) 0%, rgb(152, 214, 241) 100%);
}
#page .areticle-blogs .blogs__inner .left h3.wp-block-heading {
  position: relative;
  font-size: 20px;
  margin: 50px 0 25px;
  padding-left: 2em;
}
@media screen and (max-width: 1024px) {
  #page .areticle-blogs .blogs__inner .left h3.wp-block-heading {
    font-size: 18px;
  }
}
#page .areticle-blogs .blogs__inner .left h3.wp-block-heading::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 25px;
  height: 5px;
  content: "";
  border-radius: 3px;
  background: #2ba9e2;
  background: linear-gradient(135deg, rgb(43, 169, 226) 0%, rgb(152, 214, 241) 100%);
}
#page .areticle-blogs .blogs__inner .left h4.wp-block-heading {
  font-size: 20px;
  margin: 50px 0 25px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-blogs .blogs__inner .left h4.wp-block-heading {
    font-size: 18px;
  }
}
#page .areticle-blogs .blogs__inner .left ul,
#page .areticle-blogs .blogs__inner .left ol {
  margin-bottom: 40px;
  padding-left: 1em;
}
@media screen and (max-width: 1024px) {
  #page .areticle-blogs .blogs__inner .left ul,
  #page .areticle-blogs .blogs__inner .left ol {
    padding-left: 20px;
    font-size: 14px;
  }
}
#page .areticle-blogs .blogs__inner .left ul li::marker,
#page .areticle-blogs .blogs__inner .left ol li::marker {
  color: #96d4f0;
}
#page .areticle-blogs .blogs__inner .left ul li {
  list-style: disc;
}
#page .areticle-blogs .blogs__inner .left ol li {
  list-style: auto;
}
#page .areticle-blogs .blogs__inner .left p {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-blogs .blogs__inner .left p {
    font-size: 14px;
  }
}
#page .areticle-blogs .blogs__inner .left a {
  color: #2ba9e2;
  text-decoration: underline;
}
#page .areticle-blogs .blogs__inner .left a:hover {
  text-decoration: none;
}
#page .areticle-blogs .blogs__inner .left .wp-block-image {
  margin-bottom: 20px;
}
#page .areticle-blogs .blogs__inner .left .wp-block-list li:not(:last-child) {
  margin-bottom: 20px;
}
#page .areticle-blogs .blogs__inner .left .wp-block-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  width: 100%;
  text-align: center;
  padding-block: 10px;
  background-color: #778890;
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
}
#page .areticle-blogs .blogs__inner .left .wp-block-button a::after {
  content: "";
  background-image: url(../images/common/arrow_icon_w.svg);
  display: table;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  #page .areticle-blogs .blogs__inner .right {
    margin-bottom: 40px;
    margin-inline: 25px;
  }
}
#page .areticle-blogs .blogs__inner .c-side-box__link {
  position: sticky;
  top: 100px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-blogs .blogs__inner .c-side-box__link {
    position: unset;
  }
}
#page .areticle-blogs .blogs__inner .c-side-box__link a span {
  border-radius: 100px;
  height: 42px !important;
  line-height: 42px !important;
  width: 42px !important;
  padding: 6px;
}
#page .areticle-blogs .blogs__inner .c-side-box__title {
  margin-bottom: 15px;
  font-size: 18px;
}
#page .areticle-blogs .blogs__inner .addtoany_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-blogs .blogs__inner .addtoany_list {
    flex-direction: row;
    justify-content: left;
  }
}
#page #news .section__container {
  max-width: 800px;
}
#page #news .list-box__item:not(:last-child) {
  border-bottom: 1px solid #f3f4f5;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
#page #news .list-box__item a {
  gap: 0 20px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  #page #news .list-box__item a {
    flex-wrap: wrap;
  }
}
#page #news .list-box__item a time {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  #page #news .list-box__item a time {
    font-size: 14px;
  }
}
#page #news .list-box__item a i {
  background: #009ee5;
  background: linear-gradient(90deg, rgba(0, 158, 229, 0.1) 0%, rgba(12, 163, 231, 0.1) 10%, rgba(157, 222, 252, 0.1) 100%);
  font-style: normal;
  font-size: 14px;
  padding: 5px 10px;
}
@media screen and (max-width: 1024px) {
  #page #news .list-box__item a i {
    font-size: 12px;
  }
}
#page #news .list-box__item a p {
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  #page #news .list-box__item a p {
    padding-top: 10px;
    font-size: 14px;
    width: 100%;
  }
}
#page #certified-instructor .section__container .map_contents {
  background-color: #fff;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-block: 220px 120px;
}
@media screen and (max-width: 1024px) {
  #page #certified-instructor .section__container .map_contents {
    padding-inline: 25px;
    padding-block: 0px 80px;
  }
}
#page #certified-instructor .section__container .map_contents__inner {
  position: relative;
  max-width: 1150px;
  margin: 0 auto;
}
#page #certified-instructor .section__container .map_contents img {
  margin: 0 auto;
}
#page #certified-instructor .section__container .map_contents__text {
  width: 45%;
  position: absolute;
  background-color: #e6f4fb;
  padding: 30px;
  top: -50px;
  left: 8%;
}
@media screen and (max-width: 1024px) {
  #page #certified-instructor .section__container .map_contents__text {
    position: unset;
    width: 100%;
    margin-bottom: 30px;
  }
}
#page #certified-instructor .section__container .map_contents__text h2 {
  font-size: 24px;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.6em;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #page #certified-instructor .section__container .map_contents__text h2 {
    font-size: 18px;
  }
}
#page #certified-instructor .section__container .map_contents__text h2::before {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 45px;
  height: 5px;
  content: "";
  border-radius: 3px;
  background: #2ba9e2;
  background: linear-gradient(135deg, rgb(43, 169, 226) 0%, rgb(152, 214, 241) 100%);
}
#page #certified-instructor .section__container .map_contents__text .desc {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  #page #certified-instructor .section__container .map_contents__text .desc {
    font-size: 14px;
  }
}
#page #certified-instructor .section__container .map_contents__text span {
  display: block;
  background-color: #fff;
  font-size: 14px;
  border: 1px solid #2ba9e2;
  padding: 10px 20px;
  color: #2ba9e2;
  font-weight: 500;
}
#page #certified-instructor .section__container .main_contents {
  padding-block: 120px;
}
@media screen and (max-width: 1024px) {
  #page #certified-instructor .section__container .main_contents {
    padding-block: 80px;
  }
}
#page #certified-instructor .section__container .main_contents .area h2 {
  font-size: 30px;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  padding-bottom: 5px;
  font-family: "Zen Old Mincho", serif;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #page #certified-instructor .section__container .main_contents .area h2 {
    font-size: 24px;
  }
}
#page #certified-instructor .section__container .main_contents .area h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px; /* 本来の border の太さ */
  background: linear-gradient(135deg, #2ba9e2 0%, #9cd8f2 100%);
}
#page #certified-instructor .section__container .main_contents .area:not(:last-child) {
  margin-bottom: 100px;
}
#page #certified-instructor .section__container .main_contents .area ul {
  grid-template-columns: 1fr 1fr 1fr !important;
}
@media screen and (max-width: 1024px) {
  #page #certified-instructor .section__container .main_contents .area ul {
    grid-template-columns: 1fr !important;
  }
}
#page #certified-instructor .section__container .main_contents .area ul li {
  background-color: #fff;
  box-shadow: 0px 5px 20px -10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border: 2px solid #fff !important;
  transition: 0.3s;
  padding: 30px 25px;
}
@media (hover: hover) {
  #page #certified-instructor .section__container .main_contents .area ul li:hover {
    border: 2px solid #2ba9e2 !important;
    transition: 0.3s;
  }
}
#page #certified-instructor .section__container .main_contents .area ul li a {
  display: block;
}
#page #certified-instructor .section__container .main_contents .area ul li .name {
  width: fit-content;
  font-size: 20px;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 20px;
  position: relative;
}
#page #certified-instructor .section__container .main_contents .area ul li .name::before {
  content: "";
  background-image: url(../images/common/arrow_icon.svg);
  display: table;
  width: 20px;
  height: 20px;
  position: absolute;
  right: -40px;
  top: 20%;
}
#page #certified-instructor .section__container .main_contents .area ul li .name small {
  font-size: 14px;
  padding-left: 10px;
}
#page #certified-instructor .section__container .main_contents .area ul li table {
  margin-bottom: 20px;
}
#page #certified-instructor .section__container .main_contents .area ul li table th {
  width: 70px;
  font-size: 14px;
}
#page #certified-instructor .section__container .main_contents .area ul li table td {
  font-size: 14px;
}
#page #certified-instructor .section__container .main_contents .area ul li .sns {
  gap: 10px;
}
#page #certified-instructor .section__container .main_contents .area ul li .sns small {
  font-size: 14px;
  padding-inline: 10px;
  border-radius: 3px;
}
#page #certified-instructor .section__container .main_contents .area ul li .sns .line {
  border: 1px solid #5ece2c;
  background-color: #f7fdf4;
  color: #5ece2c;
}
#page #certified-instructor .section__container .main_contents .area ul li .sns .insta {
  color: #a92cce;
  background-color: #fbf4fd;
  border: 1px solid #a92cce;
}
#page .areticle-certified-instructor #information .section__container {
  background-color: #fff;
  padding: 60px;
  gap: 100px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #information .section__container {
    flex-direction: column;
    padding: 30px 20px;
    row-gap: 0px;
  }
}
#page .areticle-certified-instructor #information .section__container .left {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #information .section__container .left {
    width: 100%;
  }
}
#page .areticle-certified-instructor #information .section__container .right {
  width: 80%;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #information .section__container .right {
    width: 100%;
  }
}
#page .areticle-certified-instructor #information .section__container .right .list-box__item:not(:last-child) {
  border-bottom: 1px solid #f3f4f5;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
#page .areticle-certified-instructor #information .section__container .right .list-box__item a {
  gap: 0 20px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #information .section__container .right .list-box__item a {
    flex-wrap: wrap;
  }
}
#page .areticle-certified-instructor #information .section__container .right .list-box__item a time {
  font-size: 16px;
  width: 11%;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #information .section__container .right .list-box__item a time {
    font-size: 14px;
    width: fit-content;
  }
}
#page .areticle-certified-instructor #information .section__container .right .list-box__item a i {
  background: #e8f6fc;
  font-style: normal;
  font-size: 14px;
  padding: 5px 10px;
  width: 12%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #information .section__container .right .list-box__item a i {
    font-size: 12px;
    width: fit-content;
  }
}
#page .areticle-certified-instructor #information .section__container .right .list-box__item a p {
  font-size: 18px;
  width: 77%;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #information .section__container .right .list-box__item a p {
    padding-top: 10px;
    font-size: 14px;
    width: 100%;
  }
}
#page .areticle-certified-instructor #seminar {
  padding-block: 100px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #seminar {
    padding: 50px 20px;
  }
}
#page .areticle-certified-instructor #seminar h2 {
  margin-bottom: 60px;
}
#page .areticle-certified-instructor #seminar .grid {
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #seminar .grid {
    row-gap: 20px;
  }
}
#page .areticle-certified-instructor #seminar .grid li {
  background-color: #fff;
  box-shadow: 0px 5px 20px -10px rgba(0, 0, 0, 0.2);
  padding: 30px;
}
#page .areticle-certified-instructor #seminar .grid li .date {
  color: #2a4653;
  opacity: 0.5;
  font-size: 14px;
}
#page .areticle-certified-instructor #seminar .grid li .btn {
  color: #2ba9e2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  margin-top: 20px;
  padding-right: 30px;
}
#page .areticle-certified-instructor #seminar .grid li .btn::before {
  content: "";
  background-image: url(../images/common/toggle_icon_on.svg);
  display: table;
  width: 22px;
  height: 22px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
#page .areticle-certified-instructor #seminar .btn--more {
  width: fit-content;
  margin: 60px auto 0;
}
#page .areticle-certified-instructor #seminar .btn--more a {
  max-width: unset;
  padding-block: 10px;
  padding-inline: 20px;
}
#page .areticle-certified-instructor #instructor-info {
  background: #eef8fd;
  padding-block: 120px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #instructor-info {
    padding-block: 60px;
  }
}
#page .areticle-certified-instructor #instructor-info .profile,
#page .areticle-certified-instructor #instructor-info .message {
  background-color: #fff;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #instructor-info .profile,
  #page .areticle-certified-instructor #instructor-info .message {
    margin: 0 20px;
    padding: 40px 25px;
  }
}
#page .areticle-certified-instructor #instructor-info .profile {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #instructor-info .profile {
    margin: 0 20px;
    padding: 40px 25px;
  }
  #page .areticle-certified-instructor #instructor-info .profile .flex {
    flex-direction: column;
    row-gap: 30px;
  }
}
#page .areticle-certified-instructor #instructor-info .profile__img {
  width: 35%;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #instructor-info .profile__img {
    width: 100%;
  }
}
#page .areticle-certified-instructor #instructor-info .profile__text {
  width: 65%;
  padding-inline: 60px 0;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #instructor-info .profile__text {
    width: 100%;
    padding-inline: 0;
  }
}
#page .areticle-certified-instructor #instructor-info .profile__text h2 small.instructor {
  display: contents;
  font-size: 20px;
  font-family: "Zen Old Mincho", serif;
}
#page .areticle-certified-instructor #instructor-info .profile__text p.career {
  background-color: #e6f5fc;
  padding: 25px;
  margin-top: 20px;
}
#page .areticle-certified-instructor #instructor-info .profile__text p.career span {
  font-size: 20px;
  display: block;
  margin-bottom: 15px;
}
#page .areticle-certified-instructor #instructor-info .message p {
  word-break: auto-phrase;
}
#page .areticle-certified-instructor #features {
  background: #2ba9e2;
  background: linear-gradient(135deg, rgb(43, 169, 226) 0%, rgb(83, 186, 232) 30%, rgb(160, 219, 243) 100%);
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #features {
    padding: 60px 25px;
  }
}
#page .areticle-certified-instructor #features h3 {
  color: #fff;
  font-size: 32px;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 40px;
  line-height: 1.6em;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #features h3 {
    font-size: 24px;
  }
}
#page .areticle-certified-instructor #features .grid {
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #features .grid {
    grid-template-columns: 1fr;
  }
}
#page .areticle-certified-instructor #features .grid li {
  background-color: #fff;
  padding: 40px 30px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #features .grid li {
    padding: 25px;
  }
}
#page .areticle-certified-instructor #features .grid li span {
  display: block;
  font-size: 42px;
  color: #2ba9e2;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #features .grid li span {
    font-size: 34px;
    margin-bottom: 10px;
  }
}
#page .areticle-certified-instructor #features .grid li h4 {
  font-size: 20px;
  font-family: "Zen Old Mincho", serif;
  position: relative;
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #features .grid li h4 {
    margin-bottom: 45px;
  }
}
#page .areticle-certified-instructor #features .grid li h4::before {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 5px;
  content: "";
  border-radius: 3px;
  background: #2ba9e2;
  background: linear-gradient(135deg, rgb(43, 169, 226) 0%, rgb(152, 214, 241) 100%);
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #features .grid li p {
    margin-bottom: 0;
  }
}
#page .areticle-certified-instructor #voice {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #voice {
    padding: 80px 25px;
  }
}
#page .areticle-certified-instructor #voice .section__title::before {
  left: 50%;
  transform: translateX(-50%);
}
#page .areticle-certified-instructor #voice .swiper-slide {
  background-color: #fff;
  box-shadow: 0px 5px 20px -10px rgba(0, 0, 0, 0.2);
  padding: 45px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #voice .swiper-slide {
    padding: 25px;
  }
}
#page .areticle-certified-instructor #voice .swiper-slide-active {
  border: none !important;
}
#page .areticle-certified-instructor #voice .slide .head {
  display: flex;
  align-items: end;
  gap: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #voice .slide .head {
    flex-direction: column;
    row-gap: 10px;
  }
}
#page .areticle-certified-instructor #voice .slide .head h3 {
  font-size: 22px;
  line-height: 1.6em;
  font-weight: 500;
  text-align: left;
  width: 80%;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #voice .slide .head h3 {
    width: 100%;
    font-size: 18px;
  }
}
#page .areticle-certified-instructor #voice .slide .head h3 small {
  display: block;
  line-height: 1;
  opacity: 0.8;
  font-size: 16px;
}
#page .areticle-certified-instructor #voice .slide .head i {
  width: 20%;
  max-width: 80px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #voice .slide .head i {
    display: flex;
    aspect-ratio: unset;
    align-items: center;
    width: 100%;
    gap: 10px;
    font-style: normal;
    max-width: unset;
  }
  #page .areticle-certified-instructor #voice .slide .head i img {
    width: 70px;
    aspect-ratio: 1;
  }
  #page .areticle-certified-instructor #voice .slide .head i small {
    width: 80%;
    text-align: left;
  }
}
#page .areticle-certified-instructor #voice .slide .problem li {
  background-color: #f3f4f5;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #voice .slide .problem li {
    flex-direction: column;
    font-size: 14px;
  }
}
#page .areticle-certified-instructor #voice .slide .problem li span {
  position: relative;
  display: block;
  width: 150px;
  padding-left: 1.4em;
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #voice .slide .problem li span {
    width: 100%;
    padding-left: 0;
    margin-bottom: 5px;
  }
}
#page .areticle-certified-instructor #voice .slide .problem li:not(:last-child) {
  margin-bottom: 30px;
}
#page .areticle-certified-instructor #voice .slide .problem li:nth-child(2) {
  background-color: #e6f5fc;
}
#page .areticle-certified-instructor #price {
  background-color: #e5f3f9;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #price {
    padding: 80px 25px;
    margin-bottom: 80px;
  }
}
#page .areticle-certified-instructor #price .section__container {
  max-width: 800px;
}
#page .areticle-certified-instructor #price .seminar-price,
#page .areticle-certified-instructor #price .seminar-info {
  background-color: #f4fafd;
  padding: 40px;
}
#page .areticle-certified-instructor #price .seminar-price .label,
#page .areticle-certified-instructor #price .seminar-info .label {
  font-size: 28px;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #price .seminar-price .label,
  #page .areticle-certified-instructor #price .seminar-info .label {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
#page .areticle-certified-instructor #price .seminar-price {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #price .seminar-price {
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
  }
}
#page .areticle-certified-instructor #price .seminar-price .price {
  font-size: 40px;
  line-height: 1;
  color: #2ba9e2;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #price .seminar-price .price {
    font-size: 28px;
  }
}
#page .areticle-certified-instructor #price .seminar-price .tax {
  font-size: 14px;
  color: #2ba9e2;
}
#page .areticle-certified-instructor #price .seminar-price .times {
  font-size: 24px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #price .seminar-price .times {
    font-size: 18px;
  }
}
#page .areticle-certified-instructor #price .seminar-info .label {
  margin-bottom: 30px;
}
#page .areticle-certified-instructor #price .seminar-info .flex {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #price .seminar-info .flex {
    flex-direction: column;
    row-gap: 10px;
  }
}
#page .areticle-certified-instructor #price .seminar-info .desc {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  #page .areticle-certified-instructor #blog {
    padding-top: 0;
  }
  #page .areticle-certified-instructor #blog h2 {
    margin-bottom: 80px;
  }
}
#page #contact .section__container {
  max-width: 840px;
  background-color: #fff;
  box-shadow: 0px 5px 20px -10px rgba(0, 0, 0, 0.2);
  padding: 60px;
}
@media screen and (max-width: 1024px) {
  #page #contact .section__container {
    padding: 25px;
  }
}
#page #contact .section__container .desc {
  font-size: 18px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  #page #contact .section__container .desc {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
#page #contact .section__container .contact_form dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  row-gap: 20px;
  max-width: 600px;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  #page #contact .section__container .contact_form dl {
    flex-direction: column;
  }
}
#page #contact .section__container .contact_form dl dt {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  #page #contact .section__container .contact_form dl dt {
    width: 100%;
  }
}
#page #contact .section__container .contact_form dl dd {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  #page #contact .section__container .contact_form dl dd {
    width: 100%;
  }
}
#page #contact .section__container .contact_form dl dd select,
#page #contact .section__container .contact_form dl dd textarea,
#page #contact .section__container .contact_form dl dd input {
  padding: 10px;
  width: 100%;
  height: 50px;
  border: 1px solid #e0e4e6;
  border-radius: 5px;
  font-size: 16px;
}
#page #contact .section__container .contact_form dl dd select {
  -webkit-appearance: none;
  appearance: none;
}
#page #contact .section__container .contact_form dl dd textarea {
  height: 100px;
  resize: vertical;
}
#page #contact .section__container .contact_form dl dd input[type=radio] {
  width: auto;
  height: auto;
  margin-right: 5px;
}
#page #contact .section__container .contact_form dl dd .attention {
  position: relative;
  color: #fd4c3a;
  padding-left: 1em;
  display: block;
  font-size: 12px;
  margin-top: 20px;
}
#page #contact .section__container .contact_form dl dd .attention::before {
  content: "※";
  font-size: 12px;
  position: absolute;
  /* 以下は必要に応じて位置調整 */
  top: 0;
  left: 0;
}
#page #contact .section__container .contact_form dl dd.cf7__select p {
  position: relative;
}
#page #contact .section__container .contact_form dl dd.cf7__select p::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  border-style: solid;
  border-color: transparent;
  border-width: 0.64952em 0.375em;
  border-top-color: currentColor;
  border-bottom: 0;
  z-index: 9;
  pointer-events: none;
}
#page #contact .section__container .contact_form__required {
  background-color: #fd4c3a;
  color: #fff;
  padding: 1px 10px;
  border-radius: 50px;
  margin-left: 15px;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  #page #contact .section__container .contact_form__required {
    font-size: 12px;
  }
}
#page #contact .section__container .contact_form .form_pp_area {
  border: 1px solid #e0e4e6;
  padding: 20px 40px;
  overflow: scroll;
  height: 150px;
}
@media screen and (max-width: 1024px) {
  #page #contact .section__container .contact_form .form_pp_area {
    padding: 20px 25px;
  }
}
#page #contact .section__container .contact_form .form_pp_area span {
  display: block;
  margin-bottom: 20px;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  #page #contact .section__container .contact_form .form_pp_area span {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  #page #contact .section__container .contact_form .form_pp_area p {
    font-size: 14px;
  }
}
#page #contact .section__container .contact_form .form_pp_area table {
  text-align: left;
  margin-top: 40px;
}
#page #contact .section__container .contact_form .form_pp_area table tr {
  display: block;
}
#page #contact .section__container .contact_form .form_pp_area table tr:not(:last-child) {
  margin-bottom: 30px;
}
#page #contact .section__container .contact_form .form_pp_area table tr td,
#page #contact .section__container .contact_form .form_pp_area table tr th {
  display: block;
}
#page #contact .section__container .contact_form .form_pp_area table tr th {
  margin-bottom: 10px;
}
#page #contact .section__container .contact_form .form_pp_area table tr td p {
  margin-bottom: 15px;
}
#page #contact .section__container .contact_form .form_pp_check {
  display: block;
  margin: 30px auto;
  text-align: center;
}
#page #contact .section__container .contact_form .cf7__button {
  width: 240px;
  margin: 0 auto;
}
#page #contact .section__container .contact_form .cf7__button input {
  width: 100%;
  text-align: center;
  padding-block: 15px;
  background-color: #778890;
  border-radius: 3px;
  color: #fff;
  border-bottom: none;
  font-size: 18px;
  border: none;
}
@media screen and (max-width: 1024px) {
  #page #contact .section__container .contact_form .cf7__button input {
    font-size: 16px;
  }
}
#page #thanks .section__container {
  max-width: 840px;
  background-color: #fff;
  box-shadow: 0px 5px 20px -10px rgba(0, 0, 0, 0.2);
  padding: 60px;
}
#page #thanks .section__container p {
  margin-bottom: 40px;
}
#page #thanks .section__container .btn {
  width: 200px;
  margin: 0 auto;
}