@charset "UTF-8";
a {
  opacity: 1;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}

/*---------- 以下基本設定 ----------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  font-feature-settings: "palt";
  font-weight: 400;
  color: #5e1919;
  min-width: 320px;
  margin: 0 auto;
  position: relative;
}
body::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  visibility: hidden;
  transition: all 0.6s;
}
body.fixed {
  overflow: hidden;
  position: relative;
  z-index: 701;
}
body.fixed::after {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.7);
}
body.fixed .header::after {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.7);
}

a,
img,
button {
  display: block;
}

img {
  max-width: 100%;
  width: auto;
}

/* 改行
-------------------------------------------------- */
.br_pc {
  display: none;
}
.br_pc br {
  display: none;
}

.br_sp {
  display: block;
}
.br_sp br {
  display: block;
}

.text-sky {
  color: #F2CA30;
}

.text-center {
  text-align: center;
}

.inline {
  display: inline;
}

.tel {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: baseline;
  padding-left: 24px;
  position: relative;
}
.tel::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/icon_tel.png) no-repeat center center/contain;
}

.sec {
  padding: 65px 0;
}
.sec-under {
  padding: 70px 0 0 0;
}
.sec-title {
  font-weight: 700;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 24px;
  letter-spacing: 0.01em;
  margin-bottom: 35px;
}
.sec-title::before, .sec-title::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.sec-title::before {
  margin-top: calc((1 - 1.5) * 0.5em);
}
.sec-title::after {
  margin-bottom: calc((1 - 1.5) * 0.5em);
}
.sec-title--ja {
  font-weight: 600;
  font-size: 16px;
  font-feature-settings: "palt";
  margin-bottom: 40px;
}
.sec-title--ja::before, .sec-title--ja::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.sec-title--ja::before {
  margin-top: calc((1 - 1.5) * 0.5em);
}
.sec-title--ja::after {
  margin-bottom: calc((1 - 1.5) * 0.5em);
}
.sec-title--en {
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  font-style: oblique;
}
.sec-title--en::before, .sec-title--en::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.sec-title--en::before {
  margin-top: calc((1 - 1.5) * 0.5em);
}
.sec-title--en::after {
  margin-bottom: calc((1 - 1.5) * 0.5em);
}
.sec-title--sub {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}
.sec-title--sub::before, .sec-title--sub::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.sec-title--sub::before {
  margin-top: calc((1 - 1.5) * 0.5em);
}
.sec-title--sub::after {
  margin-bottom: calc((1 - 1.5) * 0.5em);
}
.sec-content p {
  line-height: 1.7;
}
.sec-content p:not(:last-child) {
  margin-bottom: 20px;
}
.sec-content p::before, .sec-content p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.sec-content p::before {
  margin-top: calc((1 - 1.7) * 0.5em);
}
.sec-content p::after {
  margin-bottom: calc((1 - 1.7) * 0.5em);
}

/*---------- objct-fitをつかするクラス ----------*/
.contain-img {
  /* 比率で画像サイズを指定するためのクラス */
}
.contain-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contain-img-center > img {
  -o-object-position: center center;
     object-position: center center;
}
.contain-img-left > img {
  -o-object-position: left center;
     object-position: left center;
}
.contain-img-right > img {
  -o-object-position: right center;
     object-position: right center;
}
.contain-img-fit {
  position: relative;
  overflow: hidden;
}
.contain-img-fit > img {
  position: absolute;
  -o-object-position: center center;
     object-position: center center;
  top: 0;
  left: 0;
}

.cover-img > img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.cover-img-center > img {
  -o-object-position: center center;
     object-position: center center;
}
.cover-img-left > img {
  -o-object-position: left center;
     object-position: left center;
}
.cover-img-right > img {
  -o-object-position: right center;
     object-position: right center;
}
.cover-img-fit {
  position: relative;
  overflow: hidden;
}
.cover-img-fit > img {
  position: absolute;
  -o-object-position: center center;
     object-position: center center;
  top: 0;
  left: 0;
}

.inner {
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}

main {
  background-color: #f8f5f2;
  margin-top: 94px;
}

/*---------- headerここから ----------*/
.header {
  padding: 10px 15px 15px 15px;
  box-sizing: border-box;
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  min-width: 320px;
  z-index: 301;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.header::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  visibility: hidden;
  transition: all 0.6s;
}
.header-inner {
  width: 56px;
}
.header-inner.inner {
  padding: 0;
  margin: 0;
}
.header-logo {
  width: 100%;
}
.header-right {
  display: none;
}
.header__description {
  margin-bottom: 5px;
  width: calc(100% - 60px);
}
.header__description h1 {
  font-size: 11px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: right;
}
.header-nav {
  display: none;
}

/*----------　headerここまで ----------*/
/*---------- articleここから ----------*/
.article-flex {
  display: flex;
  align-items: center;
}
.article-list__item {
  font-size: 15px;
  background: #fff;
}
.article-list__item:not(:last-child) {
  margin-bottom: 10px;
}
.article-list__item a {
  padding: 1em;
}
.article-date {
  font-weight: 700;
  width: 100px;
  border-right: 1px solid #dad6d6;
}
.article-title {
  padding-left: 1em;
  padding-right: 1.5em;
  width: calc(100% - 100px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}
.article-title::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 2px solid #5e1919;
  border-right: 2px solid #5e1919;
  position: absolute;
  top: 50%;
  right: 2px;
  transform-origin: center center;
  transform: translateY(-50%) rotate(45deg);
}

/*----------　articleここまで ----------*/
@media screen and (max-width: 480px) {
  .sec-title {
    font-size: 22px;
  }
  .sec-title--ja {
    font-size: 16px;
  }
  .sec-title--en {
    font-size: 24px;
  }
  .sec-title--sub {
    font-size: 17px;
  }
  /*---------- articleここから ----------*/
  .article-flex {
    align-items: flex-start;
    flex-direction: column;
  }
  .article-list__item {
    font-size: 15px;
    line-height: 1.8;
    background: #fff;
  }
  .article-list__item a {
    padding: 1em;
  }
  .article-date {
    width: 100%;
    border-right: none;
    margin-bottom: 5px;
  }
  .article-date::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #dad6d6;
    display: block;
    position: none;
    right: unset;
    top: unset;
    transform: none;
    margin-top: 5px;
  }
  .article-title {
    padding-left: 0;
    width: 100%;
  }
  /*----------　articleここまで ----------*/
}
/*---------- footerここから ----------*/
.footer {
  background: #f8f5f2;
}
.footer-inner {
  margin: 0 auto;
  width: 100%;
  padding: 40px 15px;
}
.footer-right {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  width: 60px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.footer-logo > img {
  width: 100%;
}
.footer__address {
  font-size: 14px;
  line-height: 1.0714285714;
  margin-bottom: 8px;
  text-align: center;
  order: 1;
}
.footer__time {
  font-size: 12px;
  line-height: 1;
  margin-bottom: 4px;
  margin: 0 auto 25px;
}
.footer__tel {
  margin: 0 auto 25px;
}
.footer__sns {
  width: 28px;
  margin: 25px auto 0;
  order: 4;
}
.footer__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  order: 2;
}
.footer-btn {
  width: 170px;
  margin: 8px auto 0;
  order: 3;
}
.footer-btn > img {
  width: 100%;
}
.footer-nav {
  display: none;
}
.footer .copy-right {
  display: block;
  background-color: #f6ebdf;
  padding: 10px 0;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  color: #8c6b6b;
  width: 100%;
}

/*---------- footerここまで ----------*/
/*----------　common-tableここから ----------*/
/*　common-tableクラス
余白、幅、色、並びなどを共通化したスタイル
*/
.common-table {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
}
.common-table tr {
  display: flex;
}
.common-table__head {
  padding: 1em 1.5em;
  box-sizing: border-box;
  display: block;
}
.common-table__data {
  display: block;
  padding: 1em 1.5em;
  box-sizing: border-box;
}

/*---------- common-tableここまで ----------*/
/*---------- footerここから ----------*/
/*---------- 以下navmenu ----------*/
/*---------- 以下navmenu ----------*/
.nav-menu {
  display: none;
}

/*---------- navmenuここまで ----------*/
/*---------- navmenuここまで ----------*/
.mobile-menu {
  width: 100%;
  padding: 10px 40px;
}

.mobile-menu-btn {
  position: fixed;
  z-index: 1001;
  top: 32px;
  right: 15px;
  background: #6ba8cf;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.4s;
}

.mobile-menu-btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  width: 45%;
}

.mobile-menu-btn span:nth-of-type(1) {
  top: 15px;
}

.mobile-menu-btn span:nth-of-type(2) {
  top: 23px;
}

.mobile-menu-btn span:nth-of-type(3) {
  top: 31px;
}

.mobile-menu-btn.active {
  top: 15px;
}

/*activeクラスが付与されると線が回転して×に*/
.mobile-menu-btn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.mobile-menu-btn.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}

.mobile-menu-btn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  visibility: hidden;
  text-align: left;
  z-index: 1000;
  box-sizing: border-box;
  width: 80%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px 15px;
  overflow-y: auto;
  transition: all 0.6s;
}
.mobile-nav__logo {
  width: 60px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.mobile-nav__logo img {
  width: 100%;
}
.mobile-nav.active {
  visibility: visible;
  right: 0;
  text-align: center;
}
.mobile-nav__list {
  margin-bottom: 40px;
}
.mobile-nav__item a {
  font-size: 15px;
  font-weight: 700;
  font-family: "Noto Serif JP", sans-serif;
  width: 100%;
  padding: 0.8em 1em;
  position: relative;
  display: flex;
  align-items: center;
  color: #5e1919;
  border-bottom: 2px dashed #333;
}
.mobile-nav__item a::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #6ba8cf;
  border-right: 2px solid #6ba8cf;
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%) rotate(45deg);
}
.mobile-nav__item:not(:last-child) {
  margin-bottom: 5px;
}

.mobile-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}
.mobile__address {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.mobile__time {
  font-size: 13px;
  line-height: 1.2;
}
.mobile__tel {
  margin: 0 auto 20px;
  text-align: center;
  display: inline-block;
  justify-content: center;
}
.mobile__sns {
  width: 28px;
  margin: 20px auto 0;
}
.mobile-btn {
  width: 150px;
  margin: 8px 5px 0;
  display: inline-block;
  text-align: center;
}
.mobile-btn__flex {
  max-width: 320px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.mobile-btn > img {
  width: 100%;
}

/*---------- 以下btnクラス ----------*/
.btn {
  text-align: center;
  display: block;
  line-height: 1;
}
.btn-medium {
  max-width: 240px;
}
.btn-center {
  margin: 0 auto;
  text-align: center;
}
.btn-border {
  border: 1px solid #337aa3;
  color: #337aa3;
  padding: 13px 0;
  position: relative;
}
.btn-border::after {
  content: "";
  width: 6px;
  height: 9px;
  background: url(../img/arrow_right.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
}
.btn-border:hover {
  background-color: #337aa3;
  color: #fff;
}
.btn-border:hover::after {
  background: url(../img/arrow_right_white.png) no-repeat center center/contain;
}
.btn-medium {
  width: 200px;
}
.btn-radius {
  border-radius: 4em;
}
.btn-container {
  text-align: center;
}
.btn-container .btn:not(:last-child) {
  margin-bottom: 20px;
}
.btn-wrapper {
  text-align: center;
}

@media screen and (max-width: 480px) {
  .btn {
    width: 100%;
  }
  .btn-medium {
    width: 100%;
  }
}
/*---------- btnクラスここまで ----------*/
/*------------ pagenationここから --------------*/
.pagenation {
  display: flex;
  justify-content: center;
}
.pagenation li {
  width: 3em;
  height: 3em;
  display: block;
  font-size: 1em;
  line-height: 3em;
  text-align: center;
  margin: 0 6px;
  background-color: #fff;
  color: #5e1919;
}
.pagenation .current {
  background-color: #6ba8cf;
  color: #fff;
  font-weight: 600;
}

/*------------ pagenationここまで --------------*/
/*------------ prevnextここから --------------*/
.prev-next__area {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 10px 0 30px;
  border-top: 2px solid #6ba8cf;
}
.prev-next__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50px;
}
.prev-next__link.prev {
  margin-right: auto;
}
.prev-next__link.prev::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #6ba8cf;
  border-right: 2px solid #6ba8cf;
  transform: rotate(225deg);
}
.prev-next__link.next {
  margin-left: auto;
}
.prev-next__link.next::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #6ba8cf;
  border-right: 2px solid #6ba8cf;
  transform: rotate(45deg);
}

/*------------ prevnextここまで --------------*/
/*---------- 以下breadclumb ----------*/
.bread-clumb ul {
  display: flex;
  width: 100%;
  font-size: 13px;
  padding: 4px 0 0;
}
.bread-clumb li {
  display: flex;
  align-items: center;
}
.bread-clumb li:not(:last-child)::after {
  content: "＞";
  margin: 0 0.5em;
}
.bread-clumb li a {
  display: block;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}
.bread-clumb li:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bread-clumb li a:hover {
  color: #337aa3;
}/*# sourceMappingURL=common_sp.css.map */