@charset "utf-8";
/*------------------------------ 共通 ------------------------------*/
body {
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  line-height: 1.5;
  color: #707070;
  background-color: #fff;
  overflow-x: hidden;
}

.inner {
  width: calc(100% - 80px);
  max-width:1200px;
  margin-inline: auto;
}

.flex {
  display: flex;
}

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

html {
  scroll-behavior: smooth;
}

/*------------------------------ ヘッダー ------------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 3px 3px 0px #0000000a;
}

header nav ul {
  padding: 0 40px;
  align-items: center;
}

header nav ul li a {
  transition: .5s;
}

header nav ul li a:hover {
  opacity: 0.7;
}

/*------------------------------ ボタンのスタイル ------------------------------*/
.btn {
  color: #fff;
  line-height: 1.1;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  text-align: center;
  transition: .5s;
}

.btn:hover {
  opacity: 0.7;
}

.btn.green {
  background-color: #0AC7A2;
}

.btn.blue {
  background-color: #1C93B7;
}

/*------------------------------トップへ戻る------------------------------*/
.top-btn {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background-color: #0AC7A2;
  color: #fff;
  display: block;
  position: fixed;
  bottom: 17px;
  right: 19px;
  z-index: 10;
  transition: .5s;
  opacity: 0;
  pointer-events: none;
}

.top-btn:hover {
  opacity: 0.7;
}

.top-btn.active {
  opacity: 1;
  pointer-events: all;
}

.top-btn:hover {
  opacity: 0.7;
}

.top-btn a{
  justify-content: center;
  align-items: center;
  height: 43px;
}

/*------------------------------  メイン画像 ------------------------------*/
#top .main-bg {
  background-color: #BFF7EC;
  position: relative;
}

#top .main-bg .triangle1 {
  position: absolute;
}

#top .main-bg .triangle2 {
  position: absolute;
}

#top .main-bg .triangle3 {
  position: absolute;
}

#top .main-bg .main-img-text {
  padding-left: 40px;
  flex-direction: row-reverse;
  z-index: 10;
  position: inherit;
}

#top .main-bg .main-img-text .text {
  position: relative;
}

#top .main-bg .main-img-text .text .detail {
  color: #fff;
  font-size: clamp(24px, 1.8vw, 34px);
  flex-direction: column;
  gap: 8px;
  position: absolute;
  line-height: 2.2;
}

#top .main-bg .main-img-text .text .detail p {
  width: fit-content;
  background-color: #2B2B2B;
  display: inline-block;
  white-space: nowrap;
}

/*------------------------------ お知らせ ------------------------------*/
#top .news-top {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 3px 9px 13px rgb(000, 000, 000, 0.16);
  flex-direction: column;
  gap: 10px;
  margin-inline: auto;
  position: relative;
  z-index: 10;
}

#top .news-top a {
  gap: 24px;
  transition: .5s;
}

#top .news-top a:hover {
  background-color: #C7C7C7;
}

#top .news-top a p {
  font-weight: normal;
}

#top .news-top a time {
  color: #0AC7A2;
}

/*------------------------------ 概要 ------------------------------*/

#top .summary {
  background-color: #EDFFFB;
}

#top .summary .inner {
  flex-direction: column;
}

#top .summary .inner h2 {
  line-height: 1.4;
  color: #0AC7A2;
  text-align: center;
}

#top .summary .inner .text-circle {
  align-items: center;
  gap: 37px;
}

#top .summary .inner .text-circle .text h3 {
  margin-bottom: 18px;
  color: #2B2B2B;
}

#top .summary .inner .text-circle .text p {
  line-height: 1.6;
  font-size: 20px;
}

#top .summary .inner .text-circle .circle-wrap .circle {
  width: 275px;
  height: 276px;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
}

#top .summary .inner .text-circle .circle-wrap .circle  h3 {
  line-height: 1.4;
  color: #0AC7A2;
  padding: 50px 0 27px;
  position: relative;
  z-index: 1;
  display: inline-block;
}

#top .summary .inner .text-circle .circle-wrap .circle:nth-child(1) {
  margin-right: -30px;
}

#top .summary .inner .text-circle .circle-wrap .circle:nth-child(1)  h3::before {
  content: "";
  width: 156px;
  height: 26px;
  background-color: #FFF9B4;
  position: absolute;
  bottom: 25px;
  right: -18px;
  z-index: -1;
}

#top .summary .inner .text-circle .circle-wrap .circle:nth-child(2)  h3::before {
  content: "";
  width: 156px;
  height: 26px;
  background-color: #FFFF00;
  position: absolute;
  bottom: 25px;
  right: -18px;
  z-index: -1;
}

/*------------------------------ エントリー（共通） ------------------------------*/
#top .entry .inner {
  align-items: center;
  flex-direction: column;
}

#top .entry .inner dl {
  background-color: #fff;
  flex-direction: column;
  padding: 40px 44px;
}

#top .entry .inner dl .list {
  justify-content: space-between;
}

#top .entry .inner dl .list dt {
  font-size: 20px;
  background-color: #2B2B2B;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#top .entry .inner dl .list dd {
  width: 80%;
}

#top .entry .inner dl .list:nth-child(4) dd {
  line-height: 1.7;
}

#top .entry  .inner dl .list dd .note {
  line-height: 1.6;
  font-weight: normal;
  font-size: 20px;
}

#top .entry .inner h2 {
  line-height: 1.4;
  color: #2B2B2B;
  margin-bottom: 22px;
  text-align: center;
}

#top .seminar-entry .inner .btn {
  width: 191px;
  height: 50px;
  font-size: 14px;
  line-height: 1.4;
}

/*------------------------------ エントリー（セミナー） ------------------------------*/
#top .seminar-entry {
  background-color: #BFF7EC;
}

#top .program-entry .inner .btn {
  height: 50px;
  width: 191px;
}

/*------------------------------ エントリー（プログラム） ------------------------------*/
#top .program-entry {
  background-color: #CEE8EF;
}

#top .program-entry .inner .btn {
  height: 50px;
  width: 191px;
  font-size: 14px;
  line-height: 1.4;
}

/*------------------------------ セミナー ------------------------------*/
#top .seminar {
  flex-direction: column;
  align-items: center;
}

#top .seminar h2 {
  line-height: 1.4;
  color: #2B2B2B;
  margin-bottom: 46px;
}

#top .seminar .intro .content {
  background-color: #EDFFFB;
  padding: 33px 30px;
}

#top .seminar .intro .content .img {
  margin-bottom: 19px;
}

#top .seminar .intro .content .img img {
  width: 299px;
  height: 173px;
}

#top .seminar .intro .content .text h3 {
  color: #2B2B2B;
  margin-bottom: 17px;
}

#top .seminar .intro .content .text p {
  font-size: 18px;
  line-height: 1.4;
}


#top .seminar .content h3 {
  margin-bottom: 33px;
}

#top .seminar .detail {
  width: 100%;
  background-color: #fff;
  flex-direction: column;
}

#top .seminar .detail .list dt {
  width: 15%;
  height: 51px;
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#top .seminar .detail .list dd {
  width: 80%;
  line-height: 1.7;
}

#top .seminar .detail .list dd ul {
  flex-direction: column;
}


#top .seminar .detail .list dd ul li {
  list-style: disc;
}

#top .seminar .detail .list dd .note {
  line-height: 1.6;
  font-weight: normal;
}

#top .seminar .content {
  width: 100%;
}

#top .seminar .content .program {
  width: 100%;
  flex-direction: column;
}

#top .seminar .content .program .list dt {
  width: 15%;
  background-color: #0AC7A2;
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #fff;
}

#top .seminar .content .program .list dd {
  width: 85%;
  font-size: 18px;
  padding: 12px 22px;
}

#top .seminar .content .program .list:nth-child(even) dd {
  background-color: #EDFFFB;
}

/*------------------------------ 共通タイトル ------------------------------*/
.common-title {
  line-height: 1.4;
  padding-left: 81px;
  position: relative;
}

.common-title::before {
  content: "";
  width: 62px;
  height: 5px;
  background-color: #171717;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/*------------------------------ 提供価値 ------------------------------*/
#top .value {
  background-color: #F0F9FC;
}

#top .value .inner {
  flex-direction: column;
  gap: 36px;
}

#top .value .inner h2 {
  line-height: 1.4;
  text-align: center;
}

#top .value .inner dl {
  flex-direction: column;
  background-color: #fff;
}


#top .value .inner dl .wrap {
  flex-direction: column;
}

#top .value .inner dl .wrap dt {
  background-color: #1D93B7;
  color: #fff;
  padding: 12px 30px;
}

#top .value .inner dl .wrap dd {
  padding: 31px 44px 27px 32px;
  font-size: 16px;
  justify-content: space-between;
  line-height: 1.8;
}

#top .value .inner dl .wrap dd .detail {
  flex-direction: column;
  width: calc((100% - 40px) / 2);
}

#top .value .inner dl .wrap dd .detail h3 {
  background-color: #EBEBEB;
  color: #2B2B2B;
  text-align: center;
  width: 144px;
  font-size: 20px;
  padding: 8px 0;
  margin-bottom: 8px;
}

#top .value .inner dl .wrap dd .detail ul {
  padding-left: 20px;
}

#top .value .inner dl .wrap dd .detail ul li {
  list-style: disc;
}

/*------------------------------ スケジュール ------------------------------*/
#top .schedule {
  flex-direction: column;
  gap: 40px;
}

#top .schedule dl {
  flex-direction: column;
}

#top .schedule dl .list {
  align-items: baseline;
}

#top .schedule dl .list dt {
  width: 20%;
  height: 60px;
  background-color: #1D93B7;
  color: #fff;
  justify-content: center;
  align-items: center;
  position: relative;
}

#top .schedule dl .list dd p span {
  font-size: 12px;
  padding: 6px 12px;
  margin-left: 15px;
  line-height: 1.4;
  background-color: #2B2B2B;
  color: #fff;
  display: inline-block;
  vertical-align: text-bottom;
}

#top .schedule dl .list dd .note {
  line-height: 1.4;
  font-weight: normal;
  font-size: 18px;
}

/*------------------------------ お知らせ ------------------------------*/
#top .news {
  flex-direction: column;
  margin-inline: auto;
  align-items: center;
  gap: 34px;
  max-width:1200px;
  margin-bottom: 61.5px;
}

#top .news h2 {
  line-height: 1.4;
}

#top .news .wrap {
  flex-direction: column;
  gap: 20px;
}

#top .news .wrap a {
  border-bottom: 1px solid #C7C7C7;
  padding-bottom: 20px;
  transition: .5s;
}

#top .news .wrap a:hover {
  background-color: #C7C7C7;
}

#top .news .wrap a time {
  color: #0DC7A2;
}

#top .news .wrap a p {
  font-weight: normal;
}

#top .news .btn {
  line-height: 1.4;
  height: 50px;
  width: 191px;
  font-size: 14px;
}

/*------------------------------ パートナー ------------------------------*/
.partner {
  border-top: 1px solid #C7C7C7;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 55px;
  margin-bottom: 60px;
  padding-top: 61.5px;
}

.partner .list {
  flex-direction: column;
  gap: 20px;
}

.partner .list h2 {
  color: #0DC7A2;
  font-size: 26px;
  line-height: 1.4;
}

.partner .list p {
  font-weight: normal;
}

/*------------------------------ お問い合わせ ------------------------------*/
.contact {
  background-color: #E4EBEF;
  text-align: center;
}

.contact .inner {
  flex-direction: column;
  padding: 61px 0 67px;

}

.contact .inner h2 {
  color: #2B2B2B;
}

.contact .inner p:nth-of-type(1) {
  font-weight: normal;
}

.contact .inner p:nth-of-type(2) {
  line-height: 1.4;
  font-weight: normal;
  margin-bottom: 4px;
}

.contact .inner h3 {
  color: #0AC7A2;
}

/*------------------------------ フッター ------------------------------*/
footer {
  width: 100%;
  height: 277px;
}

footer .logo-copyright {
  flex-direction: column;
  line-height: 1.4;
  padding: 58px 0 65px;
}

footer .logo-copyright h2 {
  margin-bottom: 32px;
}

footer .logo-copyright h2 a img {
  width: 189px;
  transition: .5s;
}

footer .logo-copyright h2 a img:hover {
  opacity: 0.7;
}

footer .logo-copyright p {
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 49px;
}

footer .logo-copyright small {
  font-size: 12px;
}

/*------------------------------ アーカイブページ ------------------------------*/
#news .news {
  flex-direction: column;
  align-items: center;
}

#news .news h2 {
  width: 100%;
  color: #0AC7A2;
  background-color: #BFF7EC;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

#news .news .wrap {
  flex-direction: column;
}

#news .news .wrap a {
  border-bottom: 1px solid #C7C7C7;
  transition: .5s;
}

#news .news .wrap a:hover {
  background-color: #C7C7C7;
}

#news .news .wrap a time {
  color: #0DC7A2;
}

#news .news .wrap a p {
  font-weight: normal;
}

#news .btn {
  line-height: 1.4;
  margin-inline: auto;
}

/*------------------------------ ページネーション ------------------------------*/
.page-nation {
  color: #0DC7A2;
  line-height: 1.4;
  justify-content: center;
}

.page-nation a {
  transition: .5s;
}

.page-nation a:hover {
  color: #fff;
  background-color: #0DC7A2;
}

.page-nation .page-numbers {
  width: 40px;
  height: 40px;
  border: 1px solid #0DC7A2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-nation .current {
  background-color: #0AC7A2;
  color: #fff;
}

.page-nation .dots {
  border: none;
}

/*------------------------------ 記事ページ ------------------------------*/
#single-news .news {
  flex-direction: column;
  align-items: center;
}

#single-news .news h2 {
  width: 100%;
  color: #0AC7A2;
  background-color: #BFF7EC;
  justify-content: center;
  align-items: center;
}

#single-news .news .text-img {
  flex-direction: column;
}

#single-news .news .text-img time {
  color: #0DC7A2;
  line-height: 1.4;
}

#single-news .news .text-img p {
  line-height: 1.8;
  font-weight: normal;
  font-size: 18px;
}

#single-news .news .text-img .img {
  width: 100%;
}

#single-news .news .link-wrap {
  flex-direction: column;
  max-width: 1000px;
}

#single-news .news .link-wrap div {
  align-items: baseline;
  line-height: 1.4;
}

#single-news .news .link-wrap div p {
  color: #2B2B2B;
  border: 1px solid #2B2B2B;
}

#single-news .news .link-wrap div a {
  color: #0DC7A2;
  border-bottom: 1px solid #0DC7A2;
  transition: .5s;
}

#single-news .news .link-wrap div a:hover {
  opacity: 0.7;
}

#single-news .news .btn-wrap .btn {
  height: 50px;
  width: 191px;
  line-height: 1.4;
  font-size: 14px;
}