@charset "utf-8";
/****************************
ページ共通
****************************/

/* ページタイトル */
.page-title {
  margin: 60px 0 50px;
}
.page-title h1 {
  background-color: #00a496;
  color: #fff;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/************
ブログ
************/
.blog-page-top-text {
  display: flex;
  align-items: baseline;
  margin-bottom: 15px;
}
.blog-page-title h2 {
  color: #00a496;
}
.blog-page-category {
  margin-right: 20px;
  letter-spacing: 0.02em;
  transition: 0.5s;
  display: flex;
}
.blog-page-category a {
  display: block;
  padding: 5px 10px;
  color: #00a496;
  background-color: #fbfdff;
  border: solid 1px #00a496;
  font-weight: 600;
  border-radius: 10px;
  margin-left: 5px;
}
.blog-page-category a:first-child {
  margin-left: 0;
}
.blog-page-category a:hover {
  opacity: 0.5;
}
.blog-page-date i {
  margin-right: 8px;
}
.blog-page-date {
  letter-spacing: 0.02em;
  color: #00a496;
}
.blog-page-box {
  margin-top: 30px;
}
.blog-page-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}
.blog-page-text-box {
  margin-top: 30px;
  line-height: 2.2;
}
.blog-page-contents-title {
  text-align: center;
}
.blog-page-contents-title h3 {
  color: #00a496;
  font-size: 20px;
}
.blog-contents-image-box {
  margin-top: 20px;
}
.blog-contents-image-box img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 10px;
}
.blog-contents-text {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.blog-page-video-box {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.blog-page-video iframe {
  width: 100%;
  height: 100%;
}
.blog-slider-box {
  margin-top: 30px
}
.blog-slider-main {
  display: block;
  width: 260px !important;
  border-radius: 10px;
  margin-right: 20px;
}
.blog-slider-image-box {
  display: flex;
  flex-direction: column;
  height: 300px;
}
.blog-slider-image {
  position: relative;
  width: 100%;
  height: 50%;
}
.blog-slider-category {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
}
.blog-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.blog-tag-box {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
}

.blog-slider-category a,
.blog-tag-box a {
  display: block;
  background-color: #00a496;
  color: #fff;
  padding: 5px;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 1px;
  margin-right: 5px;
}
.blog-slider-text {
  height: calc(50% - 15px);
  border: solid 1px #ccc;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-slider-text h4 {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #00a496;
}
.blog-slider-date {
  color: #999;
  font-size: 12px !important;
  letter-spacing: 1px;
} 


/********************* 
インフォメーション
*********************/
.info-contents-main {
  margin-bottom: 30px;
}
.info-contents-main:last-child {
  margin-bottom: 0;
}
.info-page-box {
  margin-top: 20px;
}
.info-contents {
  background-color: #f8f5e3;
  padding: 20px;
  border-radius: 10px;
}
.info-contents-img {
  margin-bottom: 20px;
}
.info-contents-img img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}

/****************************
メディアスクリーン768px以上
****************************/
@media screen and (min-width:768px){
  /* お知らせ */
  .info-contents-main {
    display: grid;
    grid-template-columns: 40% 1fr;
  }
  .info-contents-img {
    margin-right: 20px;
    margin-bottom: 0;
  }

}

/****************************
メディアスクリーン834px以上
****************************/
@media screen and (min-width:834px) {
  /* ページ共通 */
  .page-title {
    margin-bottom: 70px;
  }
  .page-title h1 {
    font-size: 32px;
    height: 70px;
  }
  section {
    margin-bottom: 100px;
  }
}

/****************************
メディアスクリーン1200px以上
****************************/
@media screen and (min-width:1200px) {
  /* ページ共通 */
  .page-title {
    margin: 100px 0 70px;
  }
  .page-title h1 {
    font-size: 36px;
    height: 90px;
  }
}