@charset "UTF-8";
/* 2, Contents */
/* 基本 */
.l-container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding: 0 20px;
}
@media screen and (max-width: 1090px) {
  .l-container {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
    padding: 0 1.2rem;
  }
}

/* 小さい幅 */
.l-container-small {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 1090px) {
  .l-container-small {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-container-small {
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
    padding: 0 1.2rem;
  }
}

/* ヘッダー用 */
.l-container-header {
  width: 100%;
  margin: 0 auto;
}

/* SP&paddingなし */
@media screen and (max-width: 767px) {
  .l-container-sp-padding {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}

/* 下層ページ */
.l-container-page {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}
@media screen and (max-width: 1090px) {
  .l-container-page {
    width: 100%;
    padding: 0 20px;
  }
}

/* 投稿ページ */
.l-container-post {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 20px 0 20px;
}
@media screen and (max-width: 1090px) {
  .l-container-post {
    width: 100%;
    padding: 50px 20px 0 20px;
  }
}

/* コンテンツ小さい */
.l-inner {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 600px;
  }
}

/* Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  margin: auto;
  padding: 0px;
  z-index: 777;
}
@media screen and (max-width: 767px) {
  header {
    position: fixed;
    height: 60px;
    background-color: #fff;
  }
}

/* IE 用 */
@media all and (-ms-high-contrast: none) {
  header {
    position: relative;
  }
}
.l-header__area1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.l-header__left {
  display: flex;
  width: 350px;
  margin: 0px;
}
@media screen and (max-width: 1090px) {
  .l-header__left {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__left {
    width: calc(100% - 70px);
  }
}
.l-header__right {
  width: calc(100% - 350px);
  padding: 0;
}
@media screen and (max-width: 1090px) {
  .l-header__right {
    width: calc(100% - 300px);
  }
}
@media screen and (max-width: 767px) {
  .l-header__right {
    display: none;
  }
}

.l-header-branding {
  margin: 42px 0px 0 50px;
  padding: 0px 0;
}
@media screen and (max-width: 1090px) {
  .l-header-branding {
    margin: 42px 0px 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-header-branding {
    margin: 6px 0px 0 15px;
  }
}
.l-header-branding > a {
  line-height: 1;
}
.l-header-branding > a:hover {
  opacity: 1;
}

.l-header-banner {
  width: 100%;
  padding: 18px 35px 0 0;
  text-align: right;
}
.l-header-banner__address {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
  font-size: 13px;
  color: #fff;
  line-height: 1.6;
}
.l-header-banner__address img {
  position: relative;
  left: -5px;
}
.l-header-banner__tel {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.78);
  font-family: "EB Garamond", serif;
  font-size: 37px;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1.6;
}
.l-header-banner__tel img {
  position: relative;
  left: -8px;
}

.navi-wrap {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .navi-wrap {
    display: none;
  }
}

/* 固定ナビ */
.l-header-fix {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  margin: auto;
  z-index: 777;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 15px rgba(140, 159, 164, 0.34);
}
.l-header-fix.is-show {
  display: block;
}
.l-header-fix__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0px 10px 0 30px;
}
@media screen and (max-width: 1090px) {
  .l-header-fix__inner {
    padding: 0px 10px 0 10px;
  }
}
.l-header-fix__branding a {
  line-height: 1;
  position: relative;
    top: -2px;
}
.l-header-fix__branding a:hover {
  opacity: 1;
  filter: none;
}

.l-header-fix-navi .menu-list {
  margin: 15px 0;
}
.l-header-fix-navi .menu-list > li:not(:first-of-type) > .title::after {
  content: "";
  position: absolute;
  top: 9px;
  left: -1em;
  width: 1px;
  height: 20px;
  background: #414C51;
  box-shadow: none;
  transform: rotate(25deg);
}
.l-header-fix-navi .menu-list > li > .title {
  color: #414C51;
  text-shadow: none;
}
@media screen and (max-width: 1090px) {
  .l-header-fix-navi .menu-list > li > .title {
    padding: 0 0.2em 0px;
    font-size: 15px;
  }
}
.l-header-fix-navi .menu-list > li > .title:hover {
  color: #414C51;
}
.l-header-fix-navi .menu-list > li > .title > .en {
  color: #414C51;
  text-shadow: none;
}
@media screen and (max-width: 767px) {
  .l-header-fix-navi .menu-list > li > .title > .en {
    font-size: 10px;
  }
}

/* --------------------------
ブログ 全体
--------------------------- */
.l-single-content__content-outer {
  margin-bottom: 150px;
}
.l-single-content p {
  margin-bottom: 2em;
  font-size: 16px;
  line-height: 2.19;
  letter-spacing: 1.6px;
  text-align: left;
  color: #3e4541;
}
.l-single-content img {
  margin-bottom: 5em;
}
.l-single-content ul,
.l-single-content ol {
  margin-bottom: 2em;
  line-height: 1.5;
}
.l-single-content h2 {
  margin: 2em 0 1em 0;
  font-size: 28px;
  line-height: 1.5;
}
.l-single-content h3 {
  margin: 2em 0 1em 0;
  font-size: 24px;
  line-height: 1.5;
}
.l-single-content h4 {
  margin: 2em 0 1em 0;
  font-size: 21px;
  line-height: 1.5;
}
.l-single-content h5 {
  margin: 2em 0 1em 0;
  font-size: 18px;
  line-height: 1.5;
}

/* ブログ 記事一覧
--------------------------- */
/* リストのリンク */
.l-blog-pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 90px 0 0px 0;
  padding: 0px;
  text-align: center;
  line-height: 1;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .l-blog-pagenation {
    margin: 60px 0 0px 0;
    padding: 20px 0px;
    gap: 15px;
  }
}
.l-blog-pagenation .page-numbers {
  display: inline-block;
  width: 45px;
  height: 45px;
  padding-top: 13px;
  background-color: #cecece;
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-family: "all_round_demi", sans-serif;
  font-weight: 500;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .l-blog-pagenation .page-numbers {
    width: 30px;
    height: 30px;
    padding-top: 9px;
    font-size: 14px;
  }
}
.l-blog-pagenation .page-numbers.current {
  background-color: #eca2a2;
  color: #fff;
}
.l-blog-pagenation .page-numbers.prev, .l-blog-pagenation .page-numbers.next {
  display: none;
  width: 100px;
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-blog-pagenation .page-numbers.prev, .l-blog-pagenation .page-numbers.next {
    width: 74px;
    font-size: 12px;
  }
}
.l-blog-pagenation .page-numbers.prev {
  position: absolute;
  top: 20px;
  left: 50px;
  padding-left: 5px;
}
@media screen and (max-width: 767px) {
  .l-blog-pagenation .page-numbers.prev {
    left: 0px;
  }
}
.l-blog-pagenation .page-numbers.prev::after {
  content: "";
  position: absolute;
  top: 44%;
  left: 0px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #3ba3d5;
  border-right: 1px solid #3ba3d5;
  transform: rotate(-135deg);
}
.l-blog-pagenation .page-numbers.next {
  position: absolute;
  top: 20px;
  right: 50px;
  padding-right: 5px;
}
@media screen and (max-width: 767px) {
  .l-blog-pagenation .page-numbers.next {
    right: 0px;
  }
}
.l-blog-pagenation .page-numbers.next::after {
  content: "";
  position: absolute;
  top: 44%;
  right: 0px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #3ba3d5;
  border-right: 1px solid #3ba3d5;
  transform: rotate(45deg);
}

/* ブログ 個別記事
--------------------------- */
.l-single-pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-top: 1px solid #131313;
  border-bottom: 1px solid #131313;
  margin: 120px 0 240px 0;
  padding: 0px 0px;
  text-align: center;
  line-height: 1;
  font-size: 18px;
  font-weight: 400;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .l-single-pagenation {
    font-size: 14px;
  }
}
.l-single-pagenation__prev, .l-single-pagenation__next {
  width: 33.3%;
}
.l-single-pagenation__prev > a, .l-single-pagenation__next > a {
  display: inline-block;
  position: relative;
}
.l-single-pagenation__prev a {
  padding-left: 35px;
}
.l-single-pagenation__prev a::after {
  content: "";
  position: absolute;
  top: 44%;
  left: 0px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: rotate(-135deg);
}
.l-single-pagenation__next a {
  padding-right: 35px;
}
.l-single-pagenation__next a::after {
  content: "";
  position: absolute;
  top: 44%;
  right: 0px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: rotate(45deg);
}
.l-single-pagenation__center {
  width: 33.3%;
}
.l-single-pagenation__center a {
  display: inline-block;
  width: 280px;
  height: 100%;
  padding: 20px 0;
  background-color: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .l-single-pagenation__center a {
    width: 100%;
  }
}

/* page */
/* 今回はブログ記事も同じ設定にする */
.melancholia .l-page__content-outer {
  margin-bottom: 0px;
}

/* --------------------------
Footer
--------------------------- */
.l-footer__area01 {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 3rem;
}
.l-footer__area01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.11;
  mix-blend-mode: multiply;
  background-blend-mode: multiply;
  background-image: linear-gradient(to bottom, #9cc4cd, #9cc4cd);
  z-index: -1;
}
.l-footer__area02 {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 3rem;
  background-color: #50A7BA;
}
.l-footer__brand a {
  display: block;
  width: fit-content;
  margin: 0 auto 6rem;
}
@media screen and (max-width: 767px) {
  .l-footer__brand a {
    margin: 0 auto 4rem;
    width: 200px;
  }
}
.l-footer__insta a {
  display: block;
  width: fit-content;
  margin: auto;
}

.l-footer-block01 {
  display: flex;
  justify-content: space-between;
  gap: 1%;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer-block01 {
    flex-direction: column;
  }
}
.l-footer-block01__contents {
  width: 46%;
  max-width: 500px;
}
@media screen and (max-width: 1090px) {
  .l-footer-block01__contents {
    width: 49%;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-block01__contents {
    width: 100%;
  }
}
.l-footer-block01__address {
  margin-bottom: 1.5rem;
  color: #338b9f;
}
.l-footer-block01__access {
  display: flex;
  gap: 27px;
  margin-bottom: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid #9cc4cd;
  border-bottom: 1px solid #9cc4cd;
  color: #338b9f;
}
@media screen and (max-width: 767px) {
  .l-footer-block01__access {
    flex-wrap: wrap;
    gap: 6px;
  }
}
.l-footer-block01__access dt {
  font-family: "EB Garamond", serif;
  font-size: 18px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .l-footer-block01__access dt {
    width: 100%;
  }
}
.l-footer-block01__access dd {
  line-height: 1.87;
  letter-spacing: 0.05em;
}
.l-footer-block01__access dd b {
  display: inline-block;
  margin-top: 8px;
}
.l-footer-block01__tel {
  width: fit-content;
  margin: 0 auto 2.2rem;
  font-family: "EB Garamond", serif;
  font-size: 40px;
  letter-spacing: 0.03em;
  color: #338b9f;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-footer-block01__tel {
    margin: 0 auto 1.5rem;
  }
}
.l-footer-block01__tel img {
  position: relative;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .l-footer-block01__schedule {
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
}
.l-footer-block01__schedule-text {
  margin-top: 12px;
  color: #338b9f;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .l-footer-block01__schedule-text {
    margin-bottom: 25px;
  }
}
.l-footer-block01__map {
  width: 50%;
}
@media screen and (max-width: 1090px) {
  .l-footer-block01__map {
    width: 49%;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-block01__map {
    width: 100%;
  }
}
.l-footer-block01__map iframe {
  width: 100%;
  height: 583px;
}
@media screen and (max-width: 767px) {
  .l-footer-block01__map iframe {
    height: 355px;
  }
}

.footer-menu {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin: 0 0 7rem 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .footer-menu {
    flex-direction: column;
    margin: 0 0 4rem 0;
  }
}
.footer-menu > li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.3em;
}
.footer-menu > li::before {
  content: "■";
  position: absolute;
  top: 3px;
  left: 0;
  width: 0;
  height: 0;
  color: #fff;
}
.footer-menu > li > a {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  color: #fff;
}
@media screen and (max-width: 1090px) {
  .footer-menu > li > a {
    font-size: 16px;
    letter-spacing: 0;
  }
}
.footer-menu__sub-menu {
  margin: 1em 0 0 -1em;
  padding: 0;
}
.footer-menu__sub-menu--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2em;
}
.footer-menu__sub-menu > li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.2em;
}
.footer-menu__sub-menu > li::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  color: #fff;
}
.footer-menu__sub-menu > li > a {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 1090px) {
  .footer-menu__sub-menu > li > a {
    font-size: 14px;
    letter-spacing: 0;
  }
}

.l-footer-banners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer-banners {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 5rem;
  }
}

.l-footer-copyright {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer-copyright {
    margin-bottom: 5rem;
  }
}
.l-footer-copyright small {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #fff;
}
