@charset "UTF-8";

.omk-blessair {
  font-family: "Noto Sans JP", sans-serif;
  color: #103256;
}

.omk-blessair .en {
  font-family: "Jost", sans-serif;
}

/* imgリセット */
.imgauto {
  height: auto;
  width: 100%;
  box-sizing: unset;
  line-height: 1rem;
  display: block;
}

/* hero */
.hero__text {
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  margin: 80px 0;
  line-height: 1.6;
}

.hero__text span {
  background: linear-gradient(transparent 75%, #E4A218 75%);
}

/* toc */
.toc__section {
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
}

.toc__section::after {
  content: '';
  display: inline-block;
  width: 1000px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #EEF2F6;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.omk-blessair__inner {
  max-width: 1200px;
  width: 70%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
.omk-blessair__inner {
  width: 90%;
}
}
.toc__title {
  font-size: 30px;
  font-weight: bold;
  border-bottom: 2px solid;
  width: fit-content;
  margin-inline: auto;
  padding: 0 15px 2px;
}

@media screen and (max-width: 767px) {
.toc__title {
  font-size: 20px;
}
}

.toc__list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.toc__list li a {
  border: 2px solid;
  border-radius: 20px;
  text-align: center;
  display: block;
  font-size: 16px;
  padding: 8px;
  font-weight: bold;
  background-color: #fff;
  position: relative;
}

.toc__list li a::after {
  content: '';
  display: inline-block;
  background-image: url(./images/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 6px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.toc__link a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  padding: 30px 20px 35px;
  box-shadow: 0px 0px 10px 0px #103256;
  border-radius: 50px;
  max-width: 360px;
  width: 80%;
  margin-inline: auto;
  text-align: center;
  margin-top: 60px;
  background-color: #fff;
  position: relative;
}

.toc__link a::after {
  content: '';
  display: inline-block;
  background-image: url(./images/arrow-bottm.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 37px;
  height: 15px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/* post-contents */
.post-contents__title {
  background: linear-gradient(to right, #64B4DD, #103256);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.post-contents__title .jp {
  display: block;
  font-weight: bold;
  font-size: 34px;
}

.post-contents__title .en {
  display: block;
  font-size: 20px;
}

.contents__section {
  padding: 80px 0;
}

.contents__title-area {
  display: flex;
  align-items: center;
}

.contents__title-area::before,
.contents__title-area::after {
  content: '';
  flex: 1;
  height: 2px;
  background-color: #103256;
}

.contents__title {
  text-align: center;
  position: relative;
  max-width: 500px;
  width: 85%;
  margin-inline: auto;
}

.contents__title::before,
.contents__title::after {
  content: '';
  display: inline-block;
  background-image: url(./images/title-deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 100%;
  position: absolute;
  top: 0;
}

.contents__title::before {
  left: 0;
}

.contents__title::after {
  right: 0;
  transform: rotate(180deg);
}

.contents__title .en {
  display: block;
  font-size: 20px;
}

.contents__title .jp {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.contents__list {
  margin-top: 60px;
  display: grid;
  gap: 40px;
}

.contents__item a {
  border: 1px solid #103256;
  padding: 40px 4%;
  display: flex;
  background-color: #fff;
  column-gap: 5%;
}

.contents__img {
  width: 42%;
}

.contents__area {
  flex: 1;
}

.contents__date {
  font-size: 14px;
  margin-bottom: 10px;
}

.contents__subtitle {
  font-size: 28px;
  border-bottom: 2px solid;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-weight: bold;
}

.contents__text {
  font-size: 16px;
  line-height: 1.9;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  max-height: calc(1.9em * 5);
}

.contents__arrow {
  margin-top: 20px;
  max-width: 46px;
  margin-left: auto;
  margin-right: 0;
}

.post-contents .contents__section:nth-child(2n-1) {
  background-color: #EEF2F6;
}

.contents__banner {
  margin-top: 40px;
}

@media screen and (max-width: 900px) {
  .contents__item a {
    flex-direction: column;
  }

  .contents__img {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .hero__text {
    font-size: 18px;
    margin: 40px 0;
  }

  .toc__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  .toc__list li a {
    font-size: 11px;
  }

  .toc__list li a::after {
    right: 10px;
  }

  .toc__link a {
    font-size: 14px;
    padding: 25px 20px 30px;
    margin-top: 40px;
  }

  .toc__link a::after {
    width: 28px;
  }

  .toc__section::after {
    border-radius: 50%;
    width: 100%;
  }

  .toc__section::before {
    content: '';
    background-color: #EEF2F6;
    width: 100%;
    height: calc(100% - 50vw);
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .post-contents__title {
    padding: 40px 0;
  }

  .post-contents__title .jp {
    font-size: 18px;
  }

  .post-contents__title .en {
    font-size: 12px;
  }

  .contents__title .jp {
    font-size: 18px;
  }

  .contents__title .en {
    font-size: 12px;
  }

  .contents__section {
    padding: 60px 0;
  }

  .contents__list {
    margin-top: 40px;
  }

  .contents__subtitle {
    font-size: 15px;
  }

  .contents__text {
    font-size: 14px;
  }

  .contents__item a {
    padding: 30px 20px;
  }

  .contents__arrow {
    max-width: 38px;
  }
}
