@charset "utf-8";

/* CSS Document */

/***********
pageHeading
************/

.pageHeading {
  padding-top: 50px;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: url(../../img/pagetitle.jpg) no-repeat center center / cover ;
  position: relative;
  overflow: hidden;
}
.pageHeading::after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.9;
  background: linear-gradient(to bottom, rgba(0, 45, 69, 0.8) 0%, #002d45 100%);
  mix-blend-mode: multiply;
}
.pageHeading-block{
  position: relative;
  color: #fff;
  z-index: 9;
}
.pageHeading-subTitle {
  font-size: 124%;
  font-weight: bold;
  line-height: 1.3;
  position: relative;
  z-index: 9;
  text-align: center;
}
.pageHeading-title {  
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 350%;
  letter-spacing: 0.08em;
  line-height: 1.2;
  padding-bottom: 0.4em;
}

@media screen and (max-width:834px) {

  .pageHeading {
    padding-top: 30px;
    height: 14em;
  }
  .pageHeading-subTitle {
    font-size: 200%;
  }
  .pageHeading-title {
    font-size: 100%;
  }


}



/***********
pagination
************/

.pagination {
  display: flex;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 60px;
}

.pagination:empty {
  display: none;
}

.pagination span,
.pagination a {
  display: inline-block;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.3em;
  border: 1px solid #002d45;
  color: #002d45;
  text-decoration: none;
  text-align: center;
  font-size: 124%;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  margin: 0 5px;
}
.pagination span.dots{
  border-color: transparent;
}
.pagination span:not(.dots),
.pagination a:hover {
  background-color: #002d45;
  color: #fff;
}

@media screen and (max-width:834px) {

  .pagination {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .pagination span,
  .pagination a {
    font-size: 100%;
    margin: 0 2px;
  }

}

/***********
article
************/

.article {
}
.article-heading {
  border-bottom: 1px solid #aaa;
  padding-bottom: 30px;
  margin-bottom: 50px;
}
.article-heading-data {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: 20px;
}
.article-heading-time {
  display: inline-block;
  white-space: nowrap;
  font-size: 131%;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  padding-top: 0.25em;
  margin-right: 1em;
}
.article-heading-cat {
  display: inline-block;
  min-width: 7em;
  padding: 0.2em 0.5em;
  background-color: #555;
  color: #fff;
  font-weight: 600;
  font-size: 124%;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  font-feature-settings: "palt";
  text-align: center;
  white-space: nowrap;
}
.article-heading-title {
  font-size: 200%;
  font-family: 'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  font-weight: 700;
  font-feature-settings: "pkna";
  letter-spacing: 0.05em;
}

@media screen and (max-width:834px) {

  .article {
  }
  .article-heading {
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
  .article-heading-data {
    padding-bottom: 15px;
  }
  .article-heading-time {
    font-size: 108%;
  }
  .article-heading-cat {
    font-size: 100%;
  }
  .article-heading-title {
    font-size: 147%;
  }


}



/***********
post
************/

.post {
  font-size: 1.24rem;
  font-weight: 500;
  padding-bottom: 20px;
}

.post p:not([class]) {
  line-height: 2;
  font-size: 1.24rem;
  font-weight: 500;
  padding-bottom: 1em;
}

.post h2:not([class]) {
  background-color: #f1f2f6;
  color: #002d45;
  border-bottom: 1px solid #ccc;
  font-size: 2rem;
  font-feature-settings: "palt";
  line-height: 1.4;
  padding: 0.6em 1em 0.6em 1.2em;
  position: relative;
  margin-bottom: 30px;
  margin-top: 50px;
}
.post h2:not([class])::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 3px;
  background-color: #002d45;
  position: absolute;
  left: 0;
  top: 1.2em;
}

.post h3:not([class]) {
  font-size: 1.7rem;
  font-feature-settings: "palt";
  margin: 40px 0 1em 0;
  border-left: 3px solid #002d45;
  padding: 0.8em 0 0.8em 15px;
  line-height: 1.4;
}

.post h4:not([class]) {
  font-size: 1.54rem;
  font-feature-settings: "palt";
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 8px;
  margin: 30px 0 20px 0;
}

.post h5:not([class]) {
  font-size: 1.39rem;
  margin-top: 30px;
  color: #002d45;
}
.post h5:not([class])::after {
  content: "";
  display: block;
  width: 160px;
  height: 1px;
  background-color: #002d45;
  margin: 10px 0 20px;
}

.post h6:not([class]) {
  font-size: 1.39rem;
  margin: 15px 0 8px 0;
}

.post img {
  margin: 20px 0;
}

.post blockquote:not([class]) {
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 25px 3%;
  margin: 30px 0;
}
.post blockquote:not([class]) h2:first-child,
.post blockquote:not([class]) h3:first-child,
.post blockquote:not([class]) h4:first-child,
.post blockquote:not([class]) h5:first-child{
  margin-top: 0;
}

.post table:not([class]) {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.post table:not([class]) thead th,
.post table:not([class]) thead td {
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.24rem;
  padding: 12px 3%;
  text-align: center;
  line-height: 1.7;
  background-color: #f1f2f6;
}

.post table:not([class]) tbody th {
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.24rem;
  padding: 12px 3%;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
  background-color: #f1f2f6;
}

.post table:not([class]) tbody td {
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.24rem;
  padding: 12px 3%;
  text-align: left;
  vertical-align: top;
  font-weight: 500;
  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;
    padding-bottom: 10px;
  }

  .post p:not([class]) {
    font-size: 1.08rem;
    line-height: 1.7;
  }

  .post h2:not([class]) {
    font-size: 1.47rem;
    margin-bottom: 20px;
    margin-top: 40px;
  }
  .post h2:not([class])::before {
  }

  .post h3:not([class]) {
    font-size: 1.47rem;
    margin: 30px 0 1em 0;
    padding: 0.5em 0 0.5em 12px;
  }

  .post h4:not([class]) {
    font-size: 1.39rem;
  }

  .post h5:not([class]) {
  }
  .post h5:not([class])::after {
    width: 100px;
  }

  .post h6:not([class]) {
    font-size: 1.16rem;
  }

  .post img {
    margin: 20px 0;
  }

  .post blockquote:not([class]) {
    padding: 15px 3%;
    margin: 20px 0;
  }

  .post table:not([class]) {
    border: 1px solid rgba(0, 0, 0, 0.2);
  }

  .post table:not([class]) thead th,
  .post table:not([class]) thead td {
    font-size: 0.93rem;
    padding: 5px 2%;
    line-height: 1.5;
  }

  .post table:not([class]) tbody th {
    font-size: 0.93rem;
    padding: 5px 2%;
    line-height: 1.5;
  }

  .post table:not([class]) tbody td {
    font-size: 0.93rem;
    padding: 5px 2%;
    line-height: 1.5;
  }

  .post ul:not([class]){
    font-size: 1.16rem;
    line-height: 1.5;
    padding: 10px 0;
  }
  .post ol:not([class]){
    font-size: 1.16rem;
    line-height: 1.5;
    padding: 10px 0;
  }

}

.post > *:first-child,
.post blockquote > *:first-child{
  margin-top: 0 !important;
}

.post *[class^="l-"] img:not([class]){
  padding-bottom: 0 !important;
}



/***********
box
************/

.box{
  background-color: #fff;
  padding: 60px 6%;
}

@media screen and (max-width:834px) {

  .box{
    margin-left: -3%;
    margin-right: -3%;
    padding: 6vw 5%;
  }
}


/***********
worksCard
************/

.l-worksCard {
  display: flex;
  flex-wrap: wrap;
  margin-left: -3%;
  margin-bottom: -4em;
  font-size: clamp(108%,1.2vw, 124%);
}
.l-worksCard li {
  width: 30.3%;
  margin-left: 3%;
  margin-bottom: 4em;
}
.l-worksCard li a {
  display: block;
  color: inherit;
  text-decoration: none;
  background-color: #fff;
  border-radius: 0.6em;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
.l-worksCard li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 5;
  pointer-events: none;
}
.l-worksCard-img {
}
.l-worksCard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 85 / 100;
}

.l-worksCard-inner {
  padding: 1.2em 2em 2em;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9;
  color: #fff;
  pointer-events: none;
}
.l-worksCard-cat {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  font-weight: 500;
  background-color: #000;
  color: #fff;
  padding: 0.4em 1.8em;
}

.l-worksCard-title {
  font-size: 124%;
  font-weight: 600;
  max-height: calc(2em * 1.5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.l-worksCard-area {
  font-size: 85%;
  font-weight: 400;
  padding-top: 0.5em;
}


/*
carousel
*/

.carouselWrapper {
  width: 100vw;
}
.carouselWrapper-inner {
  translate: 10vw 0;
  transition: translate 0.7s ease 0.2s , opacity 0.7s ease 0.2s;
  opacity: 0;
}
.carouselWrapper-inner.is-show {
  translate: 0 0;
  opacity: 1;
}

.l-worksCard.-carousel .slick-list {
  overflow: visible !important;
}

.l-worksCard.-carousel {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  position: relative;
  padding-bottom: 140px;
}
.l-worksCard.-carousel li {
  width: auto;
  margin: 0;
}
.l-worksCard.-carousel li a {
  width: clamp(300px,22vw, 600px);
  margin-right: 2vw;
}
.l-worksCard.-carousel .l-worksCard-title {
  max-height: calc(2em * 1.5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/*
slick
*/


.carouselWrapper .slick-next,
.carouselWrapper .slick-prev{
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 76px;
  height: 76px;
  background-color: #e4e4e4;
  color: #162159;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: 0.2s;
}
.carouselWrapper .slick-next{
  left: 100px;
}
.carouselWrapper .slick-prev{
}

.carouselWrapper .slick-next:hover,
.carouselWrapper .slick-prev:hover{
  background-color: #1f48b5;
  color: #fff;
}

@media screen and (max-width:1280px) {

  .l-worksCard {
    font-size: clamp(1.08rem,1.2vw, 1.24rem);
  }

}

@media screen and (max-width:834px) {

  .l-worksCard {
  }
  .l-worksCard li {
    width: 47%;
  }
  /*
  carousel
  */

  .carouselWrapper {
    width: auto;
    overflow: auto;
    padding-left: 4vw;
    margin-left: -4.2vw;
    margin-right: -4.2vw;

  }
  .carouselWrapper-inner {
    translate: 50vw 0;
    transition: translate 0.7s ease 0.2s , opacity 0.7s ease 0.2s;
    opacity: 0;
  }
  .carouselWrapper-inner.is-show {
    translate: 0 0;
    opacity: 1;
  }

  .l-worksCard.-carousel {
    display: flex;
    padding-bottom: 20px;
  }
  .l-worksCard.-carousel li {
  }
  .l-worksCard.-carousel li a {
    width: 220px;
    margin-right: 10px;
  }
  .l-worksCard.-carousel .l-worksCard-inner {
    padding: 1em 1em 1.2em;
  }

  .l-worksCard.-carousel .l-worksCard-cat {
    padding: 0.4em 1.4em;
    font-size: 85%;
  }
  .l-worksCard.-carousel .l-worksCard-title {
    font-size: 100%;
  }
  .l-worksCard.-carousel .l-worksCard-area {
    font-size: 77%;
  }

  .l-worksCard:not(.-carousel) .l-worksCard-inner {
    padding: 1em 1em 1.2em;
  }
  .l-worksCard:not(.-carousel) .l-worksCard-cat {
    padding: 0.4em 1.4em;
    font-size: 100%;
  }
  .l-worksCard:not(.-carousel) .l-worksCard-title {
    font-size: 116%;
  }
  .l-worksCard:not(.-carousel) .l-worksCard-area {
    font-size: 85%;
  }
}

@media screen and (max-width:520px) {

  .l-worksCard {
    display: block;
    margin-left: 0;
    margin-bottom: -1em;
  }
  .l-worksCard li {
    width: auto;
    margin-left: 0;
    margin-bottom: 1em;
  }

  .l-worksCard:not(.-carousel) .l-worksCard-img img {
    aspect-ratio: 100 / 95;
  }

}


/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/
