@charset "UTF-8";
img, iframe{max-width: 100%;height:auto;}

body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 0.05rem;
}

li {list-style: none;}

a:link{text-decoration: none; color: #333}
a:visited{text-decoration: none; color: #333}
a:hover{text-decoration: none; color: #333; opacity: 0.7; transition: 0.5s;}
a:active{text-decoration: none; color: #333}

.f-14 {font-size: 14px;}
.f-16 {font-size: 16px;}
.f-18 {font-size: 18px;}
.f-20 {font-size: 20px;}
.f-22 {font-size: 22px;}
.f-24 {font-size: 24px;}
.f-32 {font-size: 32px;}
.f-blue {color: #0057A0;}
.f-white {color: #fff;}
.f-bold {font-weight: bold;}
.f-gray {color: #808080;}

.flex-wrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.block {
  display: block;
}

.sp-only {
  display: none;
}
.sp-500-only {
  display: none;
}

/* inview */

.inview1{
   opacity: 0;
  transform: translateY(20px);
  transition: 0.8s;
  transition-delay: 0.1s;
}
.inview1.show{
  opacity: 1;
  transform: translateY(0px); 
}

/* FV */

nav {
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  /* position: absolute; */
  position: fixed;
  z-index: 100;
  top: 0;
  padding: 10px 20px;
}
nav img {
  width: 60px;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-inner p {
  border-top: 5px solid #DAECF2;
  border-bottom: 5px solid #DAECF2;
  padding: 3px 0;
}
nav a {
  color: #fff !important;
  /* background-color: #0057A0; */
  background-image: linear-gradient(0deg, #66b0ed, #0F7DD9, #0057A0);
  border-radius: 50px;
  padding: 15px 35px;
  position: relative;
  border: 3px solid #fff;
  box-shadow: 0 3px 8px rgba(1, 19, 109, 0.3);
}
nav a::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  width: 140px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
}

.fv {
  background-image: 
    url(../img/fv-img.png) ,  
    linear-gradient(0deg, #ffffff, #e9f9fa 10%, #b9e9ea);
  background-repeat: no-repeat;
  background-size: 700px, auto;
  background-position: 100% 80%, center;
  width: 100%;
  height: 800px;
  padding: 150px 0 0 50px;
}
.fv-inner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.main-copy {
  font-size: 36px;
}
.fv-inner img {
  width: 510px;
}
.sub-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main-copy p {
  margin-bottom: 20px;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 1);
}
.slideInRight {
  opacity: 0;
  animation: slideInRight 1s ease .25s forwards;
}
@keyframes slideInRight{
  0% {
    opacity: 0;
    transform: translateX(-100px);
  } 100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.do {
  color: #3B7CB3;
  font-weight: 700;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
.y-line {
  position: relative;
  z-index: 0;
  display: inline-block;
}
.y-line::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 6px;
  background-color: #FEE501;
  transform: scaleX(0);
  transform-origin: left center;
  transition:  1.5s ease;
}
.y-line.active::after {
  transform: scaleX(1);
} 

/* CTA */

.fv-box {
  width: 90%;
  max-width: 800px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #0057A0;
  margin: 0 auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.fv-box .bc-b {
  background-color: #0057A0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.fv-box .bc-b p {
  line-height: 150%;
}
.fv-box .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
} 
.fv-box p {
  text-align: center;
}
.fv-icon {
  text-align: center;
  margin: 20px auto;
}

.cta-1-wrap {
  width: fit-content;
  background-color: #FEE501;
  border: 5px solid #fff;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 100px;
  padding: 20px 30px 10px;
}
.cta-1-wrap:hover {
  opacity: 0.7;
}
.cta-1-wrap p {
  text-align: center;
}
.cta-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.cta-1 p {
  text-align: center;
  padding: 20px;
  border-radius: 60px;
}
.cta-1 .w-box {
  background-color: #fff;
  margin-bottom: 10px;
}
.cta-1 img {
  width: 80px;
}

/* 追加セクション１　セミナーのテーマ */

.section-1 {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 100px;
}
.section-1 div p:nth-child(1) {
  color: #606060;
  padding: 15px 0;
}
.section-1 p {
  text-align: center;
  line-height: 170%;
  margin-bottom: 15px;
}

/* about */

.about {
  background-color: #EFF7F7;
  padding: 100px 0;
}
.about-inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.about-h2 {
  background-color: #0057A0;
  text-align: center;
  border-radius: 20px;
  padding: 20px 0;
  margin-bottom: 30px;
}
.about-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
}
.about-img {
  width: 300px;
}
.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
}
.about-text p {
  text-align: justify;
}
.cta-2-wrap {
  width: fit-content;
  background-color: #FEE501;
  border: 5px solid #fff;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  padding: 15px 30px 10px;
}
.cta-2-wrap p {
  text-align: center;
}
.cta-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.cta-2 p {
  line-height: 120%;
  text-align: center;
  padding: 10px 30px;
  border-radius: 50px;
}
.cta-2 .w-box {
  background-color: #fff;
  margin-bottom: 10px;
}
.cta-2 img {
  width: 100px;
}

.about h3 {
  line-height: 130%;
  width: 90%;
  max-width: 800px;
  background-color: #A8DADC;
  text-align: center;
  border-radius: 20px;
  padding: 20px;
  margin: 0 auto;
}
.about-box2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  padding: 20px 0 0;
}
.about-box2 > div {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
}
.about-box2 div {
  width: 48%;
}
.about-box2 h4 {
  color: #606060;
  background-color: rgba(168, 218, 220, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 15px 15px 0 0;
  padding: 10px;
}
.about .about-box2 h4 {
  height: 75px;
}
.about-box2 ul span:nth-child(1) {
  color: #0057A0;
  font-weight: bold;
  margin-right: 5px;
}

.about-box2 ol span:nth-child(1) {
  color: #0057A0;
  font-weight: bold;
  margin-right: 10px;
}
.about-box2 li {
  display: flex;
}
.about-box2 ol,ul {
  /* background-color: #fff;
  border-radius: 0 0 15px 15px; */
  padding: 10px;
}
.check-icon {
  width: 20px;
  margin-top: -3px;
  margin-right: 10px !important;
}
.about .about-box2 div:nth-child(5) {
  width: 800px;
}
.about .about-box2 div:nth-child(5) h4 {
  height: auto;
}
.about .about-box2 div:nth-child(5) ul {
  line-height: 200%;
  padding: 20px 30px;
}

/* 追加セクション3 このセミナーで得られること */

.section-3 {
  width: 90%;
  max-width: 1000px;
  margin: 100px auto;
}
.section-3 p {
  line-height: 200%;
  text-align: center;
  width: fit-content;
  margin:  0 auto;
}
.section-3 p:nth-of-type(1) {
  margin-bottom: 20px;
}
.section-3 p:nth-of-type(2) {
  color: #606060;
}

/* 追加セクション4 セミナー内容（概要） */

.section-4 {
  background-color: #EFF7F7;
  padding: 100px 0;
}
.section-4 h3 {
  line-height: 130%;
  width: 90%;
  max-width: 800px;
  background-color: #A8DADC;
  text-align: center;
  border-radius: 20px;
  padding: 20px;
  margin: 0 auto;
}
.section-4 ul {
  padding-left: 20px;
}

/* 講師プロフィール */

.profile {
  width: 90%;
  max-width: 1000px;
  margin: 100px auto 134px;
}
.h2-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.h2-box img {
  width: 70px;
}
.h2-box p {
  background-color: #0057A0;
  text-align: center;
  vertical-align: middle;
  border-radius: 100px;
  padding: 20px 50px;
}
.profile-content {
  width: 90%;
  max-width: 800px;
  margin: 50px auto 0;
}
.profile-content h3 {
  font-weight: 500;
  text-align: center;
}
.profile-content p {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 5px solid #FEE501;
}
.profile-box {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}
.profile-box img {
  width: 400px;
  height: 521px;
}
.profile-h3 {
  position: relative;
  overflow: hidden;
  /* display: block; */
}
.profile-h3::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 5px;
  background-color: #A8DADC;
  margin-left: 10px;
}
.line-box {
  display: flex;
  align-items: center;
}
.line-box .profile-h3-2 {
  width: 100%;
}
.line-box .line {
  background-color: #A8DADC;
  width: 50%;
  height: 5px;
}
.p-h3-low {
  margin-top: 20px;
}
.profile-text .name {
  margin: 15px 0 10px;
}
.profile-box.re {
  flex-direction: row-reverse;
}
.profile-text p {
  text-align: justify;
}

/* 開催概要 */

.info {
  position: relative;
  overflow: visible;
  background-color: #EFF7F7;
  padding-bottom: 100px;
}
.info-inner {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.info .h2-box {
  position: absolute;
  top: -34px;
  left: calc(50% - 210px);
}

.info-text-line {
  line-height: 140%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  margin-top: 10px;
  padding-top: 44px;
}
.info-text-line::before,
.info-text-line::after {
  content: "";
  background-color: #FFD700;
  flex: 1;
  height: 5px;
}
.info table {
  width: fit-content;
  border-collapse: collapse;
  margin: 50px auto 0;
}
th {
  width: 200px;
  background-color: #A8DADC;
  text-align: center !important;
  border: 1px solid #BFBFBF;
}
td {
  background-color: #fff;
  padding: 20px 30px;
  border: 1px solid #BFBFBF;
}
.info-inner p {
  text-align: center;
  margin-top: 5px;
}

/* メッセージ */

.message {
  width: 90%;
  max-width: 1000px;
  margin: 100px auto 0;
}
.message-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 50px 50px;
}
.message-box p {
  text-align: center;
}
.message-box img {
  width: 180px;
}
.cta-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
}
.cta-bg {
  height: 600px;
  background-image: url(../img/cta-bg.png);
  background-size: cover;
  background-position: top center;
}

/* フッター */

footer {
  width: 100%;
  background-color: #0057A0;
  padding: 20px;
  border: 1px solid #000;
}
footer p {
  color: #fff;
}
footer .copy {
  text-align: center;
  margin-top: 10px;
}

.info-box {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.info-box-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
/* .sponsor {
  display: flex;
  gap: 10px;
}
.sponsor div {
  background-color: #fff;
  width: 100px;
  height: 100px;
} */

/* FV調整 */
@media (min-width: 1400px) {
.fv {
  background-position: right calc(50% - 400px) top 60px, center;
  width: 100%;
  height: 750px;
  padding: 150px 0 0 2.5%;
}
/* メッセージ */
.cta-bg {
  background-position: center;
}
}
/* FV調整 */
@media (min-width: 701px) and ( max-width:1200px) {
.fv {
  background-size: calc(580px + 5vw), auto;
  background-position: 120% 90%, center;
  height: 800px;
  padding: 150px 0 0 50px;
}
.fv-inner {
  gap: 50px;
}
.main-copy {
  font-size: 36px;
}
}

@media (max-width: 700px) {

/* FV */

.pc-only {
  display: none;
}
.sp-only {
  display: block;
}
.sp-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav {
  padding: 10px;
}
nav img {
  width: 50px;
}
.nav-inner p {
  font-size: 13px;
  line-height: 110%;
}

.fv {
  background-image: 
    url(../img/fv-img-sp.png) ,  
    linear-gradient(0deg, #ffffff, #e9f9fa 10%, #b9e9ea);
  background-repeat: no-repeat;
  background-size: calc(350px + 20vw), auto;
  background-position: right -40px top 160px, center;
  width: 100%;
  height: 700px;
  padding: 130px 0 0 2.5%;
}
.fv-inner {
  width: 100%;
  gap: 10px;
}
.main-copy {
  font-size: 24px;
  line-height: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 140px;
}
.fv-inner img {
  width: 400px;
}

/* CTA */

.fv-box {
  margin: 180px auto 0;
}
.fv-box .bc-b {
  font-size: 18px;
  line-height: 120%;
}
.fv-box .inner p {
  font-size: 16px;
}
.fv-box p {
  text-align: center;
}

.cta-1-wrap {
  width: 90%;
  align-items: center;
}
.cta-1 p:nth-child(2) {
  text-align: center;
  padding: 10px 20px;
  border-radius: 50px;
}

/* 追加セクション１　セミナーのテーマ */

/* about */

.about-h2 {
  font-size: 20px;
  text-align: left;
  padding: 10px;
}
.about-box {
  flex-direction: column;
}
.about-img {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}
.cta-2-wrap {
  padding: 15px 20px 10px;
}
.cta-2 {
  margin: 0 auto;
  padding: 0 20px;
}
.cta-2 p {
  padding: 10px 20px;
}
.cta-2 p:nth-child(2) {
  line-height: 35px;
}

.about h3 {
  font-size: 20px;
  width: 100%;
}
.about-box2 {
  flex-direction: column;
}
.about-box2 div {
  width: 100%;
}
.about-box2 h4 {
  height: auto;
}
.about-box2 ol span:nth-child(1) {
  color: #0057A0;
  font-weight: bold;
  margin-right: 10px;
}
.about-box2 div:nth-child(5) {
  width: 100%;
}
.about-box2 div:nth-child(5) ul {
  font-size: 16px;
  line-height: 200%;
  padding: 20px 10px;
}

/* 追加セクション3 このセミナーで得られること */

/* 追加セクション4 セミナー内容（概要） */

.section-4 h3 {
  width: 100%;
}

/* 講師プロフィール */

.h2-box {
  gap: 10px;
}
.h2-box img {
  width: 50px;
}
.h2-box p {
  font-size: 22px;
  padding: 20px;
}
.profile-content {
  width: 100%;
}
.profile-box {
  flex-direction: column;
  gap: 20px;
}
.profile-box img {
  width: 90%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
}
.profile-box.re {
  flex-direction: column;
}

/* 開催概要 */

.info-inner {
  width: 90%;
}
.info .h2-box {
  left: calc(50% - 125px);
}

.info table {
  font-size: 16px;
}
th {
  width: 100px;
}
td {
  padding: 15px;
}

/* メッセージ */

.t-center {
  text-align: center;
}
.message-box {
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.cta-bg {
  background-position: top 0 left 30%;
}

/* フッター */

footer {
  font-size: 12px;
}
.info-box-inner {
  /* flex-direction: column; */
  gap: 10px;
}

}

@media (max-width: 600px) {
.cta-2 {
  flex-direction: column;
  gap: 5px;
}
.cta-2 p {
  padding: 10px 30px;
}
.cta-bg .cta-2-wrap {
  width: 90%;
}
}

@media (max-width: 500px) {

.sp-500-only {
  display: block;
}

.fv {
  background-size: 350px, auto;
  background-position: right -40px top 230px, center;
  padding: 130px 2.5% 0;
}
.fv-inner p:nth-child(2) {
  font-size: 16px;
}
.fv-inner .f-sp-small {
  font-size: 14px !important;
}

.f-sp-small {
  font-size: 18px;
}

/* CTA */

.fv-box {
  margin: 200px auto 0;
}

.cta-1-wrap {
  width: fit-content;
}
.cta-1 {
  flex-direction: column;
  gap: 5px;
}
.cta-1 img {
  width: 100px;
}

/* about */

.cta-2-wrap {
  width: 100%;
  padding: 15px 10px 10px;
}
.cta-2 {
  margin: 0 auto;
  padding: 0;
}
.cta-2 p {
  font-size: 28px;
}

.about-h2{
  text-align: center;
}

/* フッター */

.info-box-inner {
  flex-direction: column;
  gap: 0;
}
.info-box-inner p {
  line-height: 170%;
}

}
