/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  background: #fff;
  line-height: 1.75;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

a {
  color: #89c3eb;
  text-decoration: underline;
  transition: 0.3s ease-in-out all;
}
a:hover {
  opacity: 0.8;
}
a[href*=http]::after {
  content: "";
  text-decoration: none;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: url(../images/ico_external.svg);
  background-size: contain;
  display: inline-block;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.container {
  max-width: 1000px;
  width: 94%;
  margin: 0 auto;
}

.center {
  text-align: center;
}

.textRight {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .pcOnly {
    display: none;
  }
}

@media print, screen and (min-width: 768px) {
  .spOnly {
    display: none;
  }
}

.displayNone {
  display: none;
}

.headerTop {
  margin-top: -86px;
  padding-top: 86px;
}

.btn01 a {
  font-size: 14px;
  width: 300px;
  height: 40px;
  color: #fff;
  text-decoration: none;
  margin: auto;
  background: #89c3eb;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.btn01 a::after {
  content: "";
  width: 4px;
  height: 4px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
}

.scrollArea01 {
  overflow-y: auto;
  scrollbar-color: #ddd #f4f4f4;
  scrollbar-width: thin;
  scrollbar-base-color: #ddd;
  scrollbar-track-color: #f4f4f4;
  scrollbar-arrow-color: #f4f4f4;
  scrollbar-shadow-color: #ddd;
}
.scrollArea01::-webkit-scrollbar {
  width: 10px;
}
.scrollArea01::-webkit-scrollbar-track {
  background: #f4f4f4;
}
.scrollArea01::-webkit-scrollbar-thumb {
  background: #ddd;
}

.verticalTop {
  vertical-align: top;
}

.headerInner {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .headerInner {
    padding: 15px 0;
  }
}

.logo {
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  .logo {
    max-width: 200px;
  }
}

@media print, screen and (min-width: 768px) {
  .spBtn {
    display: none !important;
  }
}
.spBtn p {
  width: 60px;
  height: 60px;
  background: #89c3eb;
  transition: all 0.4s;
  z-index: 1040;
  position: fixed;
  top: 0;
  right: 0;
}
.spBtn p.active span {
  background: #fff;
}
.spBtn p.active span:first-child {
  transform: translateY(4px) rotate(-45deg);
}
.spBtn p.active span:last-child {
  transform: translateY(-4px) rotate(45deg);
}
.spBtn span {
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  border-radius: 3px;
  transition: all 0.4s;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
}
.spBtn span:first-child {
  top: 25px;
}
.spBtn span:last-child {
  bottom: 25px;
}

@media print, screen and (min-width: 768px) {
  .globalMenuWrapper {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .globalMenuWrapper {
    display: none;
  }
}

.globalMenuArea {
  display: flex;
}
.globalMenuArea li:not(:last-child) {
  margin-right: 20px;
}
.globalMenuArea a {
  color: #89c3eb;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .globalMenuArea {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding-top: 54px;
    background: #89c3eb;
    border: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1039;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  .globalMenuArea li:not(:last-child) {
    margin-right: 0px;
  }
  .globalMenuArea a {
    color: #fff;
    padding: 10px;
    display: block;
  }
}

.footer .copyRight {
  color: #fff;
  padding: 10px 0;
  background: #89c3eb;
}

.mv {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .mv {
    overflow: hidden;
  }
  .mv img {
    max-width: inherit;
    width: 200%;
    margin: 0 -25%;
  }
}

.title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin: 60px auto 30px;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 18px;
    margin: 40px auto 20px;
  }
}
.title::after {
  content: "";
  width: 30px;
  height: 2px;
  margin: 5px auto 0;
  background: #333;
  display: block;
}
@media screen and (max-width: 767px) {
  .title::after {
    width: 15px;
    height: 1px;
  }
}

.topicsTxt {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .topicsTxt {
    font-size: 14px;
  }
}

.topics a {
  max-width: 600px;
  margin: auto;
  padding: 10px;
  border: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topics .book {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .topics .book {
    width: 23%;
  }
}
.topics .bookTitle {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .topics .bookTitle {
    width: 75%;
  }
}

.gallery {
  margin-bottom: 120px;
  display: flex;
  flex-wrap: wrap;
}
.gallery li {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.gallery li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .gallery li {
    width: 49%;
  }
  .gallery li:nth-child(even) {
    margin-right: 0;
  }
}
.gallery li img {
  width: 100%;
  height: 100%;
}

.popUpBlock {
  text-align: left;
  max-width: 750px;
  width: 94%;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  position: relative;
}
.popUpBlock img {
  max-width: 100%;
  margin-bottom: 10px;
}
.popUpBlock .imageTitle {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.popUpBlock .flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .popUpBlock .flex {
    flex-wrap: wrap;
  }
}
.popUpBlock .flex .flexItem {
  width: 49%;
}
@media screen and (max-width: 767px) {
  .popUpBlock .flex .flexItem {
    width: 100%;
  }
}
.popUpBlock .caption {
  margin: 5px 0;
}

.profile {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .profile {
    flex-direction: column;
  }
}
.profile .imgArea {
  margin-right: 60px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .profile .imgArea {
    text-align: center;
    margin: 0 auto 30px;
  }
}
.profile .txtArea {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .profile .txtArea {
    width: 100%;
  }
}
.profile .profileImg {
  width: 200px;
}
.profile .profileTit {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .profile .profileTit {
    text-align: center;
  }
}
.profile .profileTit span {
  font-size: 12px;
  display: block;
}

article {
  margin: 50px 0 150px;
}
article .subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  article .subtitle {
    text-align: left;
    font-size: 18px;
    margin-bottom: 20px;
  }
}
article div {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  article div {
    margin-bottom: 20px;
  }
}
article p {
  font-size: 14px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  article p {
    margin-bottom: 20px;
  }
}
article em {
  font-weight: bold;
}
article strong {
  font-weight: bold;
}
article h3 {
  font-size: 22px;
  font-weight: bold;
}
article h4 {
  font-size: 18px;
  font-weight: bold;
}
article h5 {
  font-size: 16px;
  font-weight: bold;
}
article ul {
  list-style: disc;
  margin-left: 1.5em;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  article ul {
    margin-bottom: 20px;
  }
}
article ul li {
  font-size: 16px;
}
article ul li:not(:last-child) {
  margin-bottom: 5px;
}
article .note {
  font-size: 11px;
  color: #505050;
  padding-left: 1em;
  text-indent: -1em;
}
article img {
  width: 100%;
}
article .btn01 {
  margin: 50px auto 0;
}