@charset "UTF-8";
/*key color*/
/*タブレット*/
/*スマホ*/
/*汎用横幅*/
/*リンクボタン*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: YakuHanJP, "BIZ UDGothic", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.25;
  color: #2E2E2E;
  scroll-behavior: smooth;
  scroll-padding: 48px;
  position: relative;
}

.contents_wrap {
  position: relative;
  width: 500px;
  -webkit-margin-start: calc(100vw - 500px - 10vw);
          margin-inline-start: calc(100vw - 500px - 10vw);
  -webkit-margin-end: 10vw;
          margin-inline-end: 10vw;
  background: #F0E9E3;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 960px) {
  .contents_wrap {
    max-width: none;
    width: 100%;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    box-shadow: none;
  }
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  left: 0;
  z-index: 98;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 48px;
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  background: #fff;
  transition: 0.3s;
}
header .header-menu_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: 10px;
}
header .header-menu_logo a {
  display: block;
  transition: 0.5s;
}
header .header-menu_logo a img {
  display: block;
  width: 70px;
  height: auto;
  margin: 0 auto;
  transition: 0.5s;
}
header .header-menu_logo a:hover {
  opacity: 0.6;
}
header .head_yoyaku_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 136px;
  height: 48px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: #fff;
  background: #E75E80;
  margin: 0 0 0 auto;
  transition: 0.5s;
}
header .head_yoyaku_btn:hover {
  background: #000;
}
header .menu_wrap {
  width: 100%;
  height: 100dvh;
  position: absolute;
  top: 0px;
  right: 0;
  z-index: 1;
  opacity: 0;
  transform-origin: right;
  transition: 0.5s;
  pointer-events: none;
}
header .menu_wrap ul {
  margin-top: 80px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  width: 80%;
  flex-flow: column;
  opacity: 0;
  transition: 0.5s;
}
header .menu_wrap ul li {
  flex-flow: column;
  align-items: flex-end;
  border-top: 1px solid white;
}
header .menu_wrap ul li:last-of-type {
  border-bottom: 1px solid white;
}
header .menu_wrap ul li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  padding: 20px 0.8em;
  width: 100%;
  font-size: 18px;
  color: #fff;
}
header .menu_wrap ul li a:hover {
  color: #fff;
  opacity: 0.6;
}
header .menu_wrap.active {
  opacity: 1;
  pointer-events: all;
}
header .menu_wrap.active ul {
  opacity: 1;
}
header .menu_wrap .overlay {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0vw;
  right: 0;
  width: 100%;
  height: 100dvh;
  opacity: 1;
  background: #4D4D4D;
  transition: 0.5s;
}
header .menu_wrap .overlay.active {
  right: 0vw;
}

.nav_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: 0.5s;
}
.nav_btn .nav_line {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 10px;
}
.nav_btn .nav_line span {
  left: 50%;
  width: 26px;
  height: 2px;
  background: #666666;
  transition: 0.5s;
}
.nav_btn .nav_line span:first-of-type {
  top: 10px;
}
.nav_btn .nav_line span:nth-of-type(2) {
  top: 20px;
}
.nav_btn .nav_line span:last-of-type {
  top: 30px;
}
.nav_btn.active .nav_line span {
  background: #fff;
}
.nav_btn.active .nav_line span:first-of-type {
  transform: translateY(10px) rotate(-45deg);
  width: 28px;
}
.nav_btn.active .nav_line span:nth-of-type(2) {
  opacity: 0;
}
.nav_btn.active .nav_line span:last-of-type {
  transform: translateY(-15px) rotate(45deg);
  width: 28px;
}

/*オープニングアニメ*/
@-webkit-keyframes fade {
  0% {
    opacity: 1;
    background: #fff;
  }
  45% {
    opacity: 1;
    background: #fff;
  }
  80% {
    background: #007AC2;
    opacity: 1;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade {
  0% {
    opacity: 1;
    background: #fff;
  }
  45% {
    opacity: 1;
    background: #fff;
  }
  80% {
    background: #007AC2;
    opacity: 1;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade-logo {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-logo {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes titlein {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }
  92% {
    opacity: 0;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes titlein {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }
  92% {
    opacity: 0;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.opening-animation {
  -webkit-animation: 4s forwards fade;
          animation: 4s forwards fade;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  height: 100svh;
  pointer-events: none;
}
.opening-animation img {
  width: 80%;
  max-width: 500px;
  -webkit-animation: 4s forwards fade-logo;
          animation: 4s forwards fade-logo;
}

/*中身*/
.first-view {
  display: grid;
  place-content: center;
  grid-template-columns: 85%;
  position: relative;
  width: 100%;
  height: calc(100svh - 48px);
  background: #007AC2;
  color: #fff;
}
.first-view div {
  -webkit-animation: 4s forwards titlein;
          animation: 4s forwards titlein;
}
.first-view div h1 {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  -webkit-margin-after: 30px;
          margin-block-end: 30px;
}
.first-view div picture {
  display: block;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.first-view div picture img {
  width: 100%;
}
.first-view div p {
  text-align: center;
  font-size: 18px;
}
.first-view div p br {
  display: none;
}
@media screen and (max-width: 960px) {
  .first-view div p {
    max-width: 800px;
    -webkit-margin-start: auto;
            margin-inline-start: auto;
    -webkit-margin-end: auto;
            margin-inline-end: auto;
  }
  .first-view div p br {
    display: block;
  }
}

.moushikomi {
  width: 90%;
  max-width: 800px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  -webkit-padding-after: 25px;
          padding-block-end: 25px;
  background: #fff;
}
.moushikomi h2 {
  -webkit-margin-after: 18px;
          margin-block-end: 18px;
  padding: 0.5em;
  background: #E75E80;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .moushikomi h2 {
    font-size: 16px;
  }
  .moushikomi h2 span {
    display: inline-block;
  }
}
.moushikomi div {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #E75E80;
  font-weight: bold;
}
.moushikomi div span:first-of-type {
  -webkit-padding-end: 0.5em;
          padding-inline-end: 0.5em;
  border-right: 1px solid #E75E80;
}
.moushikomi div span:last-of-type {
  -webkit-padding-start: 0.5em;
          padding-inline-start: 0.5em;
}
.moushikomi picture img {
  display: block;
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
}
@media screen and (max-width: 960px) {
  .moushikomi picture {
    width: 90%;
    max-width: 500px;
    -webkit-margin-start: auto;
            margin-inline-start: auto;
    -webkit-margin-end: auto;
            margin-inline-end: auto;
  }
}
.moushikomi .moushikomi_btn {
  display: block;
  width: 90%;
  max-width: 300px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  padding: 1em;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  background: #E7364A;
  border: 1px solid #E7364A;
  border-radius: 8.5px;
  transition: 0.5s;
}
.moushikomi .moushikomi_btn:hover {
  background: #fff;
  border: 1px solid #000;
  color: #000;
}

.about {
  -webkit-padding-before: 40px;
          padding-block-start: 40px;
  -webkit-padding-after: 60px;
          padding-block-end: 60px;
  background: #F2F2F2;
}
.about .about-wrap .onayami, .about .about-wrap .wakaru {
  width: 90%;
  max-width: 800px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  -webkit-padding-after: 25px;
          padding-block-end: 25px;
  background: #fff;
}
.about .about-wrap .onayami h2, .about .about-wrap .wakaru h2 {
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  color: #4D4D4D;
}
.about .about-wrap .onayami {
  padding: 30px 35px 50px;
}
@media screen and (max-width: 960px) {
  .about .about-wrap .onayami {
    padding: 30px 5% 50px;
  }
}
.about .about-wrap .onayami ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 30px;
}
.about .about-wrap .onayami ul li img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .about .about-wrap .onayami ul {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(1fr);
    grid-row-gap: 10px;
  }
}
.about .about-wrap .wakaru {
  padding: 30px 35px 50px;
}
@media screen and (max-width: 960px) {
  .about .about-wrap .wakaru {
    padding: 30px 5% 20px;
  }
}
.about .about-wrap .wakaru ol li {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.about .about-wrap .wakaru ol li:not(:last-of-type) {
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
  -webkit-padding-after: 20px;
          padding-block-end: 20px;
  border-bottom: 1px solid #3F3C3C;
}
.about .about-wrap .wakaru ol li div {
  color: #007AC2;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: -0.18em;
}
.about .about-wrap .wakaru ol li h3 {
  -webkit-margin-after: 0.5em;
          margin-block-end: 0.5em;
  color: #007AC2;
  font-size: 19px;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .about .about-wrap .wakaru ol li p {
    text-align: center;
  }
  .about .about-wrap .wakaru ol li p span {
    display: inline-block;
  }
}

.contents {
  -webkit-padding-before: 40px;
          padding-block-start: 40px;
  -webkit-padding-after: 60px;
          padding-block-end: 60px;
  background: #F1DAE7;
}
.contents .contents-wrap .koushi {
  width: 90%;
  max-width: 800px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  padding: 30px 35px 10px;
  background: #fff;
}
@media screen and (max-width: 960px) {
  .contents .contents-wrap .koushi {
    padding: 30px 5% 0.5em;
  }
}
.contents .contents-wrap .koushi h2 {
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  color: #4D4D4D;
}
.contents .contents-wrap .koushi .seminar-wrap:first-of-type {
  -webkit-margin-after: 45px;
          margin-block-end: 45px;
}
.contents .contents-wrap .koushi .seminar-wrap:last-of-type {
  -webkit-margin-after: 15px;
          margin-block-end: 15px;
}
.contents .contents-wrap .koushi .seminar-wrap h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #E75E80;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
}
.contents .contents-wrap .koushi .seminar-wrap h3 span {
  font-size: 1.3em;
}
.contents .contents-wrap .koushi .seminar-wrap time {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-margin-after: 15px;
          margin-block-end: 15px;
  background: #868687;
  color: #fff;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
}
.contents .contents-wrap .koushi .seminar-wrap h4 {
  display: none;
}
@media screen and (max-width: 960px) {
  .contents .contents-wrap .koushi .seminar-wrap h4 {
    display: block;
    -webkit-margin-after: 0.5em;
            margin-block-end: 0.5em;
    font-size: 20px;
    font-weight: bold;
  }
  .contents .contents-wrap .koushi .seminar-wrap h4 span {
    display: inline-block;
  }
}
.contents .contents-wrap .koushi .seminar-wrap .image-contents {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  -webkit-padding-start: 45px;
          padding-inline-start: 45px;
}
@media screen and (max-width: 960px) {
  .contents .contents-wrap .koushi .seminar-wrap .image-contents {
    gap: 12px;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}
.contents .contents-wrap .koushi .seminar-wrap .image-contents img {
  display: block;
  width: 140px;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .contents .contents-wrap .koushi .seminar-wrap .image-contents img {
    width: 100px;
  }
}
.contents .contents-wrap .koushi .seminar-wrap .image-contents dl dt {
  -webkit-margin-after: 0.5em;
          margin-block-end: 0.5em;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .contents .contents-wrap .koushi .seminar-wrap .image-contents dl dt {
    display: none;
  }
}
.contents .contents-wrap .koushi .seminar-wrap .image-contents dl .name {
  -webkit-margin-after: 10px;
          margin-block-end: 10px;
  font-weight: bold;
}
.contents .contents-wrap .koushi .seminar-wrap .image-contents dl .name span {
  font-size: 1.3em;
}
.contents .contents-wrap .koushi .seminar-wrap .image-contents dl .name small {
  font-size: 0.8em;
}
.contents .contents-wrap .koushi .seminar-wrap .image-contents dl .katagaki {
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
  font-size: 12px;
}
.contents .contents-wrap .koushi .seminar-wrap .image-contents dl .profile {
  font-size: 10px;
}
.contents .contents-wrap .koushi .seminar-wrap .image-contents dl .profile p:first-of-type {
  font-weight: bold;
}
.contents .contents-wrap .come {
  text-align: center;
  font-size: 10px;
}
.contents .contents-wrap .come span {
  display: inline-block;
}

.access {
  -webkit-padding-before: 60px;
          padding-block-start: 60px;
  -webkit-padding-after: 30px;
          padding-block-end: 30px;
  background: #F2F2F2;
}
.access .address-map-wrap {
  display: flex;
  justify-content: center;
  gap: 32px;
  -webkit-margin-after: 50px;
          margin-block-end: 50px;
}
@media screen and (max-width: 960px) {
  .access .address-map-wrap {
    flex-flow: column;
    align-items: center;
    -webkit-margin-after: 30px;
            margin-block-end: 30px;
    padding-inline: 10%;
  }
}
.access .address-map-wrap .address h2 {
  -webkit-margin-after: 24px;
          margin-block-end: 24px;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}
.access .address-map-wrap .address p {
  -webkit-margin-after: 14px;
          margin-block-end: 14px;
  font-weight: bold;
  text-align: center;
}
.access .address-map-wrap .address p:first-of-type {
  font-size: 20px;
}
.access .address-map-wrap .address p:last-of-type {
  font-size: 14px;
}
.access .address-map-wrap .address ul li {
  line-height: 1.5;
  text-indent: -0.5em;
  padding-left: 0.5em;
}
.access .address-map-wrap .address ul li::before {
  display: inline-block;
  content: "●";
  color: #E75E80;
}
@media screen and (max-width: 960px) {
  .access .address-map-wrap .address ul li {
    font-size: 12px;
  }
}
.access .address-map-wrap .map {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 14px;
}
.access .address-map-wrap .map img {
  display: block;
  width: 300px;
}
.access .address-map-wrap .map .map_link {
  color: #0071B9;
  font-size: 16px;
  text-decoration: underline;
}

/*footer*/
footer {
  display: flex;
  justify-content: center;
  padding: 55px 5% 50px;
  background: #FFECB2;
}
@media screen and (max-width: 960px) {
  footer {
    flex-flow: column;
    padding: 25px 10% 30px;
  }
}
footer .data-wrap {
  -webkit-padding-end: 30px;
          padding-inline-end: 30px;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  border-right: 1px solid #007AC2;
  font-size: 18px;
}
@media screen and (max-width: 960px) {
  footer .data-wrap {
    -webkit-padding-end: 0px;
            padding-inline-end: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
    -webkit-padding-after: 30px;
            padding-block-end: 30px;
    -webkit-margin-after: 15px;
            margin-block-end: 15px;
    border-bottom: 1px solid #007AC2;
    border-right: none;
  }
}
footer .data-wrap .sponsor {
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
}
footer .data-wrap .sponsor div {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0.5em;
}
footer .data-wrap .sponsor div:first-of-type {
  -webkit-margin-after: 12px;
          margin-block-end: 12px;
}
footer .data-wrap .sponsor div dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 22px;
  background: #007AC2;
  color: #fff;
}
footer .data-wrap .sponsor div dd {
  font-weight: bold;
}
footer .data-wrap .sponsor div dd span {
  display: inline-block;
}
footer .data-wrap .kikaku dd:first-of-type {
  -webkit-margin-after: 0.3em;
          margin-block-end: 0.3em;
}
footer .data-wrap .kikaku dd.tel {
  -webkit-margin-after: 0.3em;
          margin-block-end: 0.3em;
}
footer .data-wrap .kikaku dd.address {
  font-size: 13px;
  line-height: 1;
  letter-spacing: -0.01em;
}
footer .data-wrap .kikaku dd address {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 1;
  letter-spacing: -0.01em;
}
footer .data-wrap .kikaku dd address::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 14px;
  -webkit-margin-end: 0.1em;
          margin-inline-end: 0.1em;
  background: no-repeat center/16px url(../img/tel-icon.svg);
}
footer .data-wrap .kikaku dd address small {
  display: block;
  font-size: 0.8em;
  transform: translateY(-0.5px);
}
footer .data-wrap p {
  line-height: 1.5;
  font-size: 12.5px;
}
footer .jflec {
  width: 225px;
  font-size: 14px;
}
@media screen and (max-width: 960px) {
  footer .jflec {
    width: 100%;
  }
}
footer .jflec img {
  display: block;
  width: 150px;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
}
footer small {
  font-size: 10px;
}
/*# sourceMappingURL=style.css.map */