@charset "utf-8";

/* CSS Document */

/*
  font-family: 'Libre Baskerville', serif;
  font-family: 'Shippori Mincho', serif;
*/

/***********
pageHeading
************/

.pageHeading {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pageHeading-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
.pageHeading-img img {
  display: none;
}

.pageHeading-container{
  position: relative;
  z-index: 2;
}

.pageHeading-block{
  padding-left: 10%;
}

.pageHeading-title {
  font-size: 500%;
  font-size: max(400%, 3vw);
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  white-space: nowrap;
  line-height: 1.3;
}
.pageHeading-title-text {
  display: inline-block;
  background: #fff;
  line-height: 1.1;
  letter-spacing: 0.05em;
  padding: 0.1em 0.3em 0 0.3em;
  text-indent: 0.1em;
  position: relative;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
}
.pageHeading-title-text::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  transform: scaleX(1);
  transform-origin: right;
}
.pageHeading-title-text span {
  display: inline-block;
  background: url(../../img/mainvisual.jpg) no-repeat center center / cover ;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-attachment: fixed;
}
@-moz-document url-prefix() {
  .pageHeading-title-text span {
    display: inline-block;
    background: #66a4e1;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-attachment: scroll;
  }
}


body.is-loaded  .pageHeading-title-text {
  transition: all 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
  transition-delay: 0.2s;
}
body.is-loaded  .pageHeading-title-text::after {
  transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transform: scaleX(0);
  transition-delay: 1.4s;
}


body.is-ios .pageHeading-img,
body.is-ipados .pageHeading-img{
  background-attachment: scroll;
}
body.is-ios .pageHeading-title-text span,
body.is-ipados .pageHeading-title-text span{
  display: inline-block;
  background: #66a4e1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-attachment: scroll;
}



@media screen and (max-width:834px) {

  .pageHeading {
    min-height: 200px;
    height: 50vmin;
  }

  .pageHeading-block{
    padding-left: 5%;
  }

  .pageHeading-title {
    font-size: 300%;
  }

}

@media screen and (max-width:520px) {

  .pageHeading {
    height: 50vmin;
  }
  .pageHeading-title {
    font-size: 8vw;
  }

}

/***********
archiveList
************/

/*ESPRIT ADD 221209*/


.archive h2:not([class]) {
  font-size: 2rem;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(-50deg, #008ee8 20%, #26018e 80%);
  padding: 0.5em 1em;
  margin-top: 2em;
  margin-bottom: 1em;
}

@media screen and (max-width:834px) {
  .archive h2:not([class]) {
    font-size: 1.54rem;
  }
}

/* ESPRIT ADD 221209 END*/

.archiveList{
  display: flex;
  flex-wrap: wrap;
}
.archiveList li {
  width: 25%;
  position: relative;
}
.archiveList li img {
  width: 100%;
  height: calc(70vw / 4);
  object-fit: cover;
}
.archiveList li::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: linear-gradient(120deg, #008ee8 20%, #26018e 80%);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: 0.3s;
}
.archiveList li:hover::before {
  opacity: .5;
}

.archiveList-img {
}
.archiveList-img{
  display: block;
  position: relative;
}
.archiveList-img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  pointer-events: none;
  z-index: 9;
}

.archiveList-img::after {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: url(../../img/icon/zoom_wt.png) no-repeat 0 0 / 100% 100%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  z-index: 10;
}
body.is-pc .archiveList-img:hover::before {
  opacity: 0;
}

.archiveList li:nth-child(4n+1) { transition-delay: 100ms !important; }
.archiveList li:nth-child(4n+2) { transition-delay: 200ms !important; }
.archiveList li:nth-child(4n+3) { transition-delay: 300ms !important; }
.archiveList li:nth-child(4n+4) { transition-delay: 400ms !important; }


@media screen and (min-width:1921px) {
  .archiveList li {
    width: 20%;
  }
  .archiveList li img {
    width: 100%;
    height: calc(70vw / 5);
    object-fit: cover;
  }
  .archiveList li:nth-child(5n+1) { transition-delay: 100ms !important; }
  .archiveList li:nth-child(5n+2) { transition-delay: 200ms !important; }
  .archiveList li:nth-child(5n+3) { transition-delay: 300ms !important; }
  .archiveList li:nth-child(5n+4) { transition-delay: 400ms !important; }
  .archiveList li:nth-child(5n+5) { transition-delay: 500ms !important; }
}

@media screen and (max-width:1024px) {
  .archiveList li {
    width: 33.3%;
  }
  .archiveList li img {
    height: calc(70vw / 3);
  }
  .archiveList li:nth-child(3n+1) { transition-delay: 100ms !important; }
  .archiveList li:nth-child(3n+2) { transition-delay: 200ms !important; }
  .archiveList li:nth-child(3n+3) { transition-delay: 300ms !important; }
}


@media screen and (max-width:834px) {

  .archiveList-img::after {
    width: 55px;
    height: 55px;
  }
}

@media screen and (max-width:520px) {
  .archiveList li {
    width: 50%;
  }
  .archiveList li img {
    height: calc(70vw / 2);
  }
  .archiveList li:nth-child(2n+1) { transition-delay: 100ms !important; }
  .archiveList li:nth-child(2n+2) { transition-delay: 200ms !important; }
}


/***********
newsList
************/

.newsList {
}
.newsList li {
  border-bottom: 1px solid #ddd;
}
.newsList a {
  display: flex;
  color: inherit;
  text-decoration: none;
  padding: 3em 3em;
  position: relative;
}
.newsList a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(120deg, rgba(0, 142, 232, 0.1) 20%, rgba(38, 1, 142, 0.1) 80%);
  opacity: 0;
  transition: 1s;
}
body.is-pc .newsList a:hover::before {
  opacity: 1;
  transition: 0.2s;
}
.newsList-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.newsList-time {
  display: block;
  padding-bottom: 0.5em;
}
.newsList-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 131%;
  font-weight: 500;
}
.newsList-img {
  width: 15%;
  min-width: 200px;
  padding-left: 5%;
  position: relative;
}
.newsList-img img {
  object-fit: cover;
  width: 100%;
  height: 100px;
}

@media screen and (max-width:520px) {

  .newsList {
    margin-top: -50px;
  }
  .newsList li {
  }
  .newsList a {
    padding: 1.5em 8% 1.5em 5%;
    flex-direction: row-reverse;
    align-items: flex-start;
    position: relative;
  }
  .newsList a::after {
    font-family: 'Font Awesome 6 Free';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-weight: 900; /* fas */
    /* font-weight: 400; far */
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    content: "\f054";
    position: absolute;
    right: 4%;
    top: 50%;
    margin-top: -0.5em;
    transform: scale(0.8);
    color: #008ee8;
  }
  .newsList-inner {
  }
  .newsList-time {
    font-size: 85%;
  }
  .newsList-title {
    font-size: 116%;
    font-weight: 500;
  }
  .newsList-img {
    width: 30%;
    min-width: 80px;
    padding-left: 0;
    padding-right: 5%;
  }
  .newsList-img img {
    height: 26vmin;
    max-height: 80px;
  }

}




/***********
pagination
************/

.pagination {
  display: flex;
  justify-content: center;
  padding-top: 5em;
  padding-bottom: 5em;
}

.pagination:empty {
  display: none;
}

.pagination span,
.pagination a {
  display: inline-block;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.3em;
  border: 1px solid #26018e;
  color: #26018e;
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  font-size: 139%;
  font-weight: 600;
  margin: 0 5px;
}
.pagination span.dots{
  border-color: transparent;
  width: auto;
}
.pagination span:not(.dots),
.pagination a:hover {
  background-color: #26018e;
  color: #fff;
}

@media screen and (max-width:834px) {

  .pagination {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .pagination span,
  .pagination a {
    font-size: 108%;
    margin: 0 2px;
  }

}

/***********
paging
************/

.paging{
  position: relative;
  height: 80px;
  margin-top: 5em;
  display: flex;
  justify-content: center;
}

.paging a {
  display: inline-block;
  border: 1px solid #26018e;
  color: #26018e;
  text-decoration: none;
  text-align: center;
  font-size: 124%;
  font-weight: normal;
  padding: 0.8em 2em;
  line-height: 1;
}
.paging a:hover {
  background-color: #26018e;
  color: #fff;
}

.paging-next {
  position: absolute;
  right: 0;
}
.paging-next i {
  transform: translate(1em);
}

.paging-prev {
  position: absolute;
  left: 0;
}
.paging-prev i {
  transform: translate(-1em);
}

@media screen and (max-width:834px) {

  .paging a {
    font-size: 100%;
  }

}




/***********
post
************/

.post {
  font-size: 1.24rem;
  padding-bottom: 20px;
}

.post p:not([class]) {
  line-height: 1.8;
  font-size: 1.24rem;
}
.post p:not([class]) + p{
  padding-top: 1em;
}

.post h2:not([class]) {
  font-size: 2rem;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(-50deg, #008ee8 20%, #26018e 80%);
  padding: 0.5em 1em;
  margin-top: 2em;
  margin-bottom: 1em;
}

.post h3:not([class]) {
  font-size: 1.85rem;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  margin: 2em 0 1em 0;
  border-left: 3px solid #008ee8;
  padding: 0.8em 0 0.8em 15px;
  line-height: 1.4;
}

.post h4:not([class]) {
  font-size: 1.54rem;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  margin: 2em 0 1em 0;
  border-bottom: 1px solid #26018e;
  padding: 0.8em 0;
  margin: 2em 0 1em 0;
}

.post h5:not([class]) {
  font-size: 1.47rem;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  padding-left: 1em;
  margin: 2em 0 1em 0;
  position: relative;
}
.post h5:not([class])::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 1px;
  background-color: #26018e;
  position: absolute;
  left: 0;
  top: 0.8em;
}

.post h6:not([class]) {
  font-size: 1.24rem;
  padding: 30px 0 15px 0;
}

.post img {
  margin-top: 20px;
  margin-bottom: 20px;
}

.post blockquote:not([class]) {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  padding: 25px 5%;
  margin: 2em 0;
}

.post table:not([class]) {
  border: 1px solid #ccc;
}

.post table:not([class]) thead th,
.post table:not([class]) thead td {
  border: 1px solid #ccc;
  font-size: 1.24rem;
  padding: 1em 1em;
  text-align: center;
  line-height: 1.7;
  background-color: #f5f5f5;
}

.post table:not([class]) tbody th {
  border: 1px solid #ccc;
  font-size: 1.24rem;
  padding: 1em 1em;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
  background-color: #f5f5f5;
}

.post table:not([class]) tbody td {
  border: 1px solid #ccc;
  font-size: 1.24rem;
  padding: 1em 1em;
  text-align: left;
  line-height: 1.7;
  background-color: #fff;
}

.post ul:not([class]){
  font-size: 1.24rem;
  line-height: 1.8;
  list-style: disc;
  margin-left: 1.5em;
  padding: 20px 0;
}
.post ol:not([class]){
  font-size: 1.24rem;
  line-height: 1.8;
  list-style: decimal;
  margin-left: 1.5em;
  padding: 20px 0;
}

@media screen and (max-width:834px) {

  .post {
    font-size: 1.08rem;
  }

  .post p:not([class]) {
    font-size: 1.08rem;
  }
  .post h2:not([class]) {
    font-size: 1.54rem;
  }

  .post h3:not([class]) {
    font-size: 1.39rem;
  }

  .post h4:not([class]) {
    font-size: 1.24rem;
  }
  .post h5:not([class]) {
    font-size: 1.24rem;
  }

  .post h6:not([class]) {
    font-size: 1.16rem;
  }

  .post table:not([class]) thead th,
  .post table:not([class]) thead td {
    font-size: 1rem;
  }

  .post table:not([class]) tbody th {
    font-size: 1rem;
  }

  .post table:not([class]) tbody td {
    font-size: 1rem;
  }

  .post ul:not([class]){
    font-size: 1.08rem;
  }
  .post ol:not([class]){
    font-size: 1.08rem;
  }

}

.post > *:first-child,
.post blockquote > *:first-child{
  margin-top: 0 !important;
}

.post *[class^="l-"] img:not([class]){
  padding-bottom: 0 !important;
}
