@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;800&display=swap");
/*--------------------------
 ブレークポイント設定
----------------------------*/
.uk-link-toggle:focus .uk-link, .uk-link-toggle:hover .uk-link, .uk-link:hover, a:hover {
  color: #333;
  text-decoration: none;
}

:focus {
  outline: none;
}

/*--------------------------
 変数
----------------------------*/
/*--------------------------
 共通設定
----------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px !important;
  color: #333;
  font-style: normal;
  font-weight: 400;
  font-feature-settings: "palt";
}
body img {
  width: 100%;
  height: auto;
}

/* リンク img ------*/
a img {
  transition: all 0.5s ease 0s;
}
@media (min-width: 960px) and (min-width: 960px) {
  a:hover {
    text-decoration: none;
    filter: brightness(110%);
  }
}
@media (min-width: 960px) {
  a:hover img {
    transition: all 0.5s ease 0s;
    opacity: 0.7;
  }
}

@media (max-width: 1200px) {
  .uk-hidden-xlarge {
    display: none !important;
  }
}

.uk-visible-xlarge {
  display: none;
}
@media (max-width: 1200px) {
  .uk-visible-xlarge {
    display: block !important;
  }
}

/* --- スマホ縦　非表示　--- */
@media (max-width: 640px) {
  .uk-hidden-xs {
    display: none !important;
  }
}
/* --- スマホ縦のみ表示　--- */
@media (min-width: 480px) {
  .uk-visible-xs {
    display: none !important;
  }
}
@media (max-width: 640px) {
  .uk-visible-xs {
    display: block !important;
  }
}
/*--------------------------
    中央配置
----------------------------*/
/* 上下左右中央配置 */
/* 上下のみ中央配置 */
/* 左右のみ中央配置 */
/* 中央配置解除 */
/* margin auto */
/*--------------------------
 ヘッドリンク
----------------------------*/
.hedaLink {
  position: fixed;
  z-index: 100000;
  width: calc(100% - 60px);
  margin: 20px auto;
}
@media (max-width: 767px) {
  .hedaLink {
    display: none;
  }
}
.hedaLink ul {
  margin: 0px 0px;
  padding: 0px 0px;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hedaLink ul li {
  display: block;
  margin-left: 35px;
}
.hedaLink ul li a {
  display: block;
  color: #333;
  transition: all 0.3s;
}
.hedaLink ul li a.hedaLink__contact {
  display: flex;
  align-items: center;
}
.hedaLink ul li a.hedaLink__contact::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/common/icon_contact.svg) no-repeat center center;
  background-size: contain;
  margin-right: 7px;
  transition: all 0.3s;
}
.hedaLink ul li a.hedaLink__onlineshop {
  display: flex;
  align-items: center;
}
.hedaLink ul li a.hedaLink__onlineshop::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/common/icon_cart.svg) no-repeat center center;
  background-size: contain;
  margin-right: 7px;
  transition: all 0.3s;
}
.hedaLink ul li a.hedaLink__instagram {
  display: block;
}
.hedaLink ul li a:hover {
  color: #8EC31F;
}
.hedaLink ul li a:hover.contact::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/common/icon_contact_hover.svg) no-repeat center center;
  background-size: contain;
  margin-right: 7px;
}
.hedaLink ul li a:hover.onlineshop::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/common/icon_cart_hover.svg) no-repeat center center;
  background-size: contain;
  margin-right: 7px;
}

/*--------------------------
 ヘッダー（ナビゲーション）
----------------------------*/
header {
  position: fixed;
  margin-left: 2%;
  width: 230px;
  min-width: 230px;
  z-index: 100000;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  padding: 35px 0px;
  border-radius: 15px;
  margin-top: 35px;
  /*　ハンバーガーボタン　*/
  /* /.ハンバーガーボタン */
}
@media (max-width: 767px) {
  header {
    width: 100%;
    min-width: auto;
    margin-top: 0px;
    margin-left: 0px;
    padding: 0px 0px;
    background: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
header h1 {
  margin: 0px auto 50px auto;
  padding: 0px;
  text-align: center;
}
@media (max-width: 767px) {
  header h1 {
    text-align: left;
    margin: 5px 0px 0px 5px;
  }
}
header h1 img {
  width: 130px;
}
@media (max-width: 767px) {
  header h1 img {
    width: 75px;
  }
}
@media (max-width: 767px) {
  header nav {
    display: none;
  }
}
header nav ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
header nav ul li {
  border-bottom: 1px dotted #ccc;
  text-align: center;
}
header nav ul li:first-child {
  border-top: 1px dotted #ccc;
}
header nav ul li a {
  display: block;
  padding: 25px 0px;
  color: #333;
  transition: all 0.3s;
}
header nav ul li a:hover {
  color: #8EC31F;
}
header .hamburger {
  display: none;
}
@media (max-width: 767px) {
  header .hamburger {
    display: block;
    background: #21A269;
    border-radius: 50%;
    position: fixed;
    z-index: 3;
    right: 5px;
    top: 5px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
}
header .hamburger span {
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  left: 11px;
  background: #fff;
  transition: 0.3s ease-in-out;
}
header .hamburger span:nth-child(1) {
  top: 13px;
}
header .hamburger span:nth-child(2) {
  top: 20px;
}
header .hamburger span:nth-child(3) {
  top: 27px;
}
header .hamburger.active span:nth-child(1) {
  top: 20px;
  left: 10px;
  background: #fff;
  transform: rotate(-45deg);
}
header .hamburger.active span:nth-child(2),
header .hamburger.active span:nth-child(3) {
  top: 20px;
  background: #fff;
  transform: rotate(45deg);
}

/*--------------------------
SPナビゲーション
----------------------------*/
nav.globalMenuSp {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  color: #21A269;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  text-align: center;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 150px 10px 0px 0px;
  width: 100%;
}
nav.globalMenuSp ul li {
  font-size: 16px;
  text-align: left;
  list-style: none;
  display: block;
  padding: 0;
  margin: 0 auto;
  width: 80%;
  transition: 0.3s all;
  border-bottom: 1px dotted #ccc;
}
nav.globalMenuSp ul li a {
  display: block;
  padding: 20px 0px;
  color: #21A269;
  font-size: 16px;
  font-weight: 600;
}
nav nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav nav.globalMenuSp ul li:hover {
  background: #ddd;
}
nav nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
}
nav.globalMenuSp.active {
  display: block;
  z-index: 10;
}
@media (max-width: 959px) {
  nav.globalMenuSp.active {
    /* このクラスを、jQueryで付与・削除する */
    display: block;
    opacity: 100;
    height: 100vh;
  }
}

/*--------------------------
 フッター
----------------------------*/
footer {
  background: url(../img/common/footer_logo.svg) no-repeat right center #21A269;
  background-size: 500px;
}
@media (max-width: 767px) {
  footer {
    background-size: contain;
    background-position-x: 250px;
  }
}
footer .inner {
  width: calc(100% - 230px - 2% - 50px);
  margin: 0px 0px 0px auto;
  padding: 75px 0px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  footer .inner {
    width: 100%;
    padding: 50px 15px;
  }
}
footer .inner p {
  color: #fff;
  display: flex;
  align-items: center;
  margin: 15px 0px;
  line-height: 1.35;
}
@media (max-width: 767px) {
  footer .inner p {
    margin: 10px 0px;
    font-size: 14px;
  }
}
footer .inner p strong {
  font-size: 28px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  footer .inner p strong {
    font-size: 24px;
    margin-bottom: 0px;
  }
}
footer .inner p a {
  color: #fff;
}
footer .inner p.tel {
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 767px) {
  footer .inner p.tel {
    font-size: 18px;
  }
}
footer .inner p.tel::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background: url(../img/common/icon_tel.svg) no-repeat center center;
  background-size: contain;
  margin-right: 10px;
}
@media (max-width: 767px) {
  footer .inner p.tel::before {
    width: 20px;
    height: 20px;
  }
}
footer .inner p.mail {
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 767px) {
  footer .inner p.mail {
    font-size: 18px;
  }
}
footer .inner p.mail::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background: url(../img/common/icon_mail.svg) no-repeat center center;
  background-size: contain;
  margin-right: 10px;
}
@media (max-width: 767px) {
  footer .inner p.mail::before {
    width: 20px;
    height: 20px;
  }
}

.copyright p {
  width: calc(100% - 230px - 2% - 50px);
  margin: 0px 0px 0px auto;
  padding: 20px 50px 20px 0px;
  box-sizing: border-box;
  color: #21A269;
  text-align: right;
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 767px) {
  .copyright p {
    width: 100%;
    padding: 15px 0px;
    text-align: center;
  }
}

/*--------------------------
 コンテンツブロック（共有）
----------------------------*/
main {
  padding-top: 80px;
}
@media (max-width: 767px) {
  main {
    padding-top: 55px;
  }
}

@media (max-width: 767px) {
  .btnBlock {
    text-align: center;
  }
}
.btnBlock a {
  display: inline-block;
  background: #8EC31F;
  color: #fff;
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 50px;
  line-height: 1;
  transition: all 0.3s;
}
.btnBlock a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  background: url(../img/common/icon_arrow.svg) no-repeat center center;
  background-size: cover;
  transition: all 0.3s;
}
.btnBlock a:hover {
  padding: 15px 25px 15px 35px;
}
.btnBlock a:hover::after {
  margin-left: 20px;
}

.phtGallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0px auto;
  padding: 0px;
  list-style: none;
  max-width: 1200px;
}
.phtGallery li {
  width: calc(33% - 50px);
  margin: 0px 25px 50px 25px;
}
@media (max-width: 767px) {
  .phtGallery li {
    width: calc(50% - 30px);
    margin: 0px 15px 10px 15px;
  }
}
.phtGallery li .phtGallery__pht {
  margin-bottom: 15px;
  position: relative;
}
.phtGallery li .phtGallery__pht img {
  border-radius: 30px;
}
@media (max-width: 767px) {
  .phtGallery li .phtGallery__pht img {
    border-radius: 20px;
  }
}
.phtGallery li .phtGallery__pht .fgap {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 60px;
  padding: 10px 0px 0px 10px;
  background: #fff;
  border-radius: 7px 0px 0px 0px;
}
@media (max-width: 767px) {
  .phtGallery li .phtGallery__pht .fgap {
    width: 35px;
  }
}
.phtGallery li .phtGallery__pht .fgap img {
  border-radius: 0px;
}
.phtGallery li p {
  text-align: center;
  margin: 0px auto;
  padding: 0px;
}

/*--------------------------
 トップページ
----------------------------*/
#home .mv {
  background: url(../img/top/mv001.jpg) no-repeat center center;
  background-size: cover;
  margin: 0px 0px 200px auto;
  width: calc(100% - 230px - 2% - 50px);
  height: 750px;
  border-radius: 50px 0px 0px 50px;
}
@media (max-width: 767px) {
  #home .mv {
    margin: 0px 0px 60px 20px;
    width: calc(100% - 20px);
    height: 550px;
  }
}
#home .cntsBlock__inner {
  width: calc(100% - 230px - 2% - 50px);
  margin: 0px 0px 0px auto;
  padding-right: 50px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  #home .cntsBlock__inner {
    width: 95%;
    margin: 0px auto;
    padding-right: 0px;
  }
}
#home .cntsBlock__head {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  #home .cntsBlock__head {
    display: block;
  }
}
#home .cntsBlock__head p {
  font-size: 18px;
  font-weight: 600;
  color: #816211;
}
@media (max-width: 767px) {
  #home .cntsBlock__head p {
    font-size: 16px;
  }
}
#home .cntsBlock h2 {
  line-height: 1;
  margin-bottom: 50px;
  padding-right: 35px;
}
@media (max-width: 767px) {
  #home .cntsBlock h2 {
    margin-bottom: 25px;
  }
}
#home .cntsBlock h2 .jp {
  display: flex;
  align-items: center;
  color: #8EC31F;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 767px) {
  #home .cntsBlock h2 .jp {
    font-size: 16px;
  }
}
#home .cntsBlock h2 .jp::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url(../img/common/icon_atagobird.svg) no-repeat center center;
  background-size: contain;
  margin-right: 10px;
}
@media (max-width: 767px) {
  #home .cntsBlock h2 .jp::before {
    width: 24px;
    height: 24px;
    margin-right: 5px;
  }
}
#home .cntsBlock h2 .en {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 65px;
  font-weight: 800;
  color: #21A269;
}
@media (max-width: 767px) {
  #home .cntsBlock h2 .en {
    font-size: 36px;
  }
}
#home .cntsBlock p {
  margin: 0px 0px 35px 0px;
  line-height: 1.85;
}
@media (max-width: 767px) {
  #home .cntsBlock p {
    line-height: 1.6;
  }
}
#home .about {
  position: relative;
  margin-bottom: 200px;
}
@media (max-width: 767px) {
  #home .about {
    margin-bottom: 100px;
  }
}
#home .about::after {
  content: "";
  display: block;
  width: 90%;
  height: calc(100% + 200px);
  background-color: #E7F8FF;
  border-radius: 50px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: -100px;
  z-index: -1;
}
@media (max-width: 767px) {
  #home .about::after {
    width: 85%;
    top: -35px;
    height: calc(100% + 70px);
  }
}
#home .splide {
  padding-top: 75px;
}
@media (max-width: 767px) {
  #home .splide {
    padding-top: 0px;
  }
}
#home .splide__list li {
  padding: 0px 35px;
}
#home .splide__list li:nth-child(odd) {
  margin-top: 100px;
}
#home .splide__list li img {
  border-radius: 30px;
}
@media (max-width: 767px) {
  #home .splide__list li {
    padding: 0px 15px;
  }
  #home .splide__list li:nth-child(odd) {
    margin-top: 50px;
  }
  #home .splide__list li img {
    border-radius: 30px;
  }
}
#home .activities {
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  #home .activities {
    margin-bottom: 75px;
  }
}
#home .activities .clm2Block {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767px) {
  #home .activities .clm2Block {
    flex-wrap: wrap;
  }
}
#home .activities .clm2Block__pht {
  width: 55%;
}
@media (max-width: 767px) {
  #home .activities .clm2Block__pht {
    width: 100%;
  }
}
#home .activities .clm2Block__pht img {
  border-radius: 30px;
}
#home .activities .clm2Block__cnts {
  width: 55%;
  background: #fff;
  padding: 50px 50px 0px 50px;
  box-sizing: border-box;
  margin-left: -10%;
  border-radius: 30px 30px 0px 0px;
}
@media (max-width: 767px) {
  #home .activities .clm2Block__cnts {
    width: 95%;
    padding: 35px 20px 0px 20px;
    margin: -50px auto 0px auto;
  }
}
#home .activities .clm2Block__cnts h3 {
  font-size: 30px;
  font-weight: 700;
  color: #21A269;
  margin: 0px 0px 35px 0px;
}
@media (max-width: 767px) {
  #home .activities .clm2Block__cnts h3 {
    font-size: 24px;
    margin: 0px 0px 10px 0px;
  }
}
#home .activities .clm2Block__cnts p {
  margin: 0px 0px 35px 0px;
}
@media (max-width: 767px) {
  #home .activities .clm2Block__cnts p {
    margin: 0px 0px 20px 0px;
  }
}
#home .access {
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  #home .access {
    margin-bottom: 75px;
  }
}
#home .access .mapBlock iframe {
  width: 100%;
  height: 600px;
}
@media (max-width: 767px) {
  #home .access .mapBlock iframe {
    height: 450px;
  }
}
#home .access .note {
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 767px) {
  #home .access .note {
    margin-top: 20px;
  }
}
#home .instagram {
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  #home .instagram {
    margin-bottom: 75px;
  }
}
#home .instagram ul {
  width: 100%;
  max-width: 1000px;
  margin: 0px auto;
  padding: 0px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
#home .instagram ul li {
  display: block;
  width: calc(33% - 10px);
  margin: 5px;
}

/*--------------------------
 下層ページ
----------------------------*/
.page .pageTitle {
  background: url(../img/common/pagetitle_bg.svg) no-repeat center bottom #DDF3FC;
  background-size: 100%;
  margin: 0px 0px 65px auto;
  width: calc(100% - 230px - 2% - 50px);
  height: 450px;
  border-radius: 50px 0px 0px 0px;
  position: relative;
  padding-left: 60px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .page .pageTitle {
    margin: 0px 0px 50px 20px;
    width: calc(100% - 20px);
    height: 250px;
    padding-left: 20px;
  }
}
.page .pageTitle h1 {
  margin: 0px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  line-height: 1;
}
.page .pageTitle h1 .jp {
  display: flex;
  align-items: center;
  color: #217BA2;
  font-size: 36px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .page .pageTitle h1 .jp {
    font-size: 22px;
  }
}
.page .pageTitle h1 .en {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 100px;
  font-weight: 800;
  color: #fff;
}
@media (max-width: 767px) {
  .page .pageTitle h1 .en {
    font-size: 50px;
  }
}
.page .cntsBlock {
  margin-bottom: 125px;
}
@media (max-width: 767px) {
  .page .cntsBlock {
    margin-bottom: 50px;
  }
}
.page .cntsBlock__inner {
  width: calc(100% - 230px - 2% - 50px);
  margin: 0px 0px 0px auto;
  padding: 0px 50px 0px 60px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .page .cntsBlock__inner {
    width: 90%;
    margin: 0px auto;
    padding: 0px 0px 0px 0px;
  }
}
.page .cntsBlock h2 {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
  color: #21A269;
  line-height: 1;
  margin: 0px 0px 35px -60px;
}
@media (max-width: 767px) {
  .page .cntsBlock h2 {
    font-size: 22px;
    margin: 0px 0px 25px 0px;
  }
}
.page .cntsBlock h2::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url(../img/common/icon_atagobird.svg) no-repeat center center;
  background-size: contain;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .page .cntsBlock h2::before {
    width: 35px;
    height: 35px;
    margin-right: 5px;
  }
}
.page .cntsBlock p {
  margin: 0px 0px 35px 0px;
  line-height: 1.85;
}
@media (max-width: 767px) {
  .page .cntsBlock p {
    line-height: 1.6;
  }
}
.page .cntsBlock .phtBox {
  text-align: center;
}
.page .cntsBlock .phtBox img {
  border-radius: 30px;
}
.page .cntsBlock.torikumi {
  padding: 125px 0px;
  position: relative;
}
@media (max-width: 767px) {
  .page .cntsBlock.torikumi {
    padding: 50px 0px;
  }
}
.page .cntsBlock.torikumi::before {
  content: "";
  display: block;
  width: calc(100% - 50px);
  height: 100%;
  background: #F8F4EC;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 0px 30px 30px 0px;
  z-index: -1;
}
.page .cntsBlock.torikumi .fgapBlock__inner {
  width: 300px;
  height: 300px;
  margin: 0px auto 35px auto;
  background: #fff;
  padding: 60px 75px 90px 75px;
  box-sizing: border-box;
  border-radius: 50%;
}
.page .cntsBlock.torikumi p {
  text-align: center;
}
.page .cntsBlock.torikumi p strong {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .page .cntsBlock.torikumi p strong {
    font-size: 26px;
  }
}
.page .cntsBlock.torikumi .btnBlock {
  text-align: center;
}
.page .cntsBlock.guidMap h2 {
  margin-bottom: 0px;
}
.page .cntsBlock.guidMap ul {
  width: 100%;
  max-width: 1000px;
  margin: 0px auto;
  padding: 0px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.page .cntsBlock.guidMap ul li {
  display: block;
  width: calc(33% - 30px);
  margin: 15px;
}
@media (max-width: 767px) {
  .page .cntsBlock.guidMap ul li {
    width: calc(50% - 30px);
  }
}
.page .cntsBlock.guidMap ul li img {
  border-radius: 30px;
}
.page .cntsBlock .shoopBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .page .cntsBlock .shoopBox {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }
}
.page .cntsBlock .shoopBox__pht {
  width: 35%;
}
@media (max-width: 767px) {
  .page .cntsBlock .shoopBox__pht {
    width: 100%;
    margin-bottom: 25px;
  }
}
.page .cntsBlock .shoopBox__pht img {
  border-radius: 30px;
}
@media (max-width: 767px) {
  .page .cntsBlock .shoopBox__pht img {
    border-radius: 20px;
  }
}
.page .cntsBlock .shoopBox__data {
  width: 57%;
}
@media (max-width: 767px) {
  .page .cntsBlock .shoopBox__data {
    width: 100%;
  }
}
.page .cntsBlock .shoopBox__data h2 {
  margin: 0px 0px 30px 0px;
  font-size: 26px;
}
.page .cntsBlock .shoopBox__data h2::before {
  content: none;
}
@media (max-width: 767px) {
  .page .cntsBlock .shoopBox__data h2 {
    font-size: 20px;
    margin: 0px 0px 15px 0px;
  }
}
.page .cntsBlock .shoopBox__data table {
  width: 100%;
  border-collapse: collapse;
}
.page .cntsBlock .shoopBox__data table th,
.page .cntsBlock .shoopBox__data table td {
  font-weight: normal;
  text-align: left;
  padding: 25px 5px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  .page .cntsBlock .shoopBox__data table th,
  .page .cntsBlock .shoopBox__data table td {
    padding: 10px 5px;
  }
}
.page .cntsBlock .shoopBox__data table th {
  white-space: nowrap;
}
.page .cntsBlock .calendarBox {
  text-align: center;
}
@media (max-width: 767px) {
  .page .cntsBlock .calendarBox {
    overflow-x: scroll;
  }
}
.page .cntsBlock .calendarBox img {
  width: 100%;
  max-width: 1200px;
}
@media (max-width: 767px) {
  .page .cntsBlock .calendarBox img {
    width: 700px;
  }
}
.page .cntsBlock .experienceBox {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .page .cntsBlock .experienceBox {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }
}
.page .cntsBlock .experienceBox__pht {
  width: 35%;
}
@media (max-width: 767px) {
  .page .cntsBlock .experienceBox__pht {
    width: 100%;
    margin-bottom: 25px;
  }
}
.page .cntsBlock .experienceBox__pht img {
  border-radius: 30px;
}
@media (max-width: 767px) {
  .page .cntsBlock .experienceBox__pht img {
    border-radius: 20px;
  }
}
.page .cntsBlock .experienceBox__data {
  width: 57%;
}
@media (max-width: 767px) {
  .page .cntsBlock .experienceBox__data {
    width: 100%;
  }
}
.page .cntsBlock .experienceBox__data h2 {
  margin: 0px 0px 30px 0px;
  font-size: 26px;
}
.page .cntsBlock .experienceBox__data h2::before {
  content: none;
}
@media (max-width: 767px) {
  .page .cntsBlock .experienceBox__data h2 {
    font-size: 20px;
    margin: 0px 0px 15px 0px;
  }
}
.page .cntsBlock .experienceBox__data table {
  width: 100%;
  border-collapse: collapse;
}
.page .cntsBlock .experienceBox__data table th,
.page .cntsBlock .experienceBox__data table td {
  font-weight: normal;
  text-align: left;
  padding: 25px 5px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  .page .cntsBlock .experienceBox__data table th,
  .page .cntsBlock .experienceBox__data table td {
    padding: 10px 5px;
  }
}
.page .cntsBlock .experienceBox__data table th {
  white-space: nowrap;
}
.page .cntsBlock .accessMapBox iframe {
  width: 100%;
  height: 700px;
  border-radius: 30px;
}
.page .cntsBlock.contactBlock p {
  text-align: center;
}
.page .cntsBlock.contactBlock ul {
  display: flex;
  justify-content: center;
  list-style: none;
  border: 1px solid #ccc;
  border-radius: 30px;
  padding: 100px 10px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .page .cntsBlock.contactBlock ul {
    display: block;
    text-align: center;
    padding: 50px 0px;
  }
}
.page .cntsBlock.contactBlock ul li {
  display: flex;
  align-items: center;
  margin: 0px 35px;
  font-size: 24px;
  color: #217BA2;
}
@media (max-width: 767px) {
  .page .cntsBlock.contactBlock ul li {
    margin: 15px auto;
    justify-content: center;
  }
}
.page .cntsBlock.contactBlock ul li a {
  color: #217BA2;
}
.page .cntsBlock.contactBlock ul li.tel {
  font-size: 26px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .page .cntsBlock.contactBlock ul li.tel {
    font-size: 22px;
  }
}
.page .cntsBlock.contactBlock ul li.tel::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url(../img/common/icon_tel_c.svg) no-repeat center center;
  background-size: contain;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .page .cntsBlock.contactBlock ul li.tel::before {
    width: 24px;
    height: 24px;
  }
}
.page .cntsBlock.contactBlock ul li.mail {
  font-size: 26px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .page .cntsBlock.contactBlock ul li.mail {
    font-size: 22px;
  }
}
.page .cntsBlock.contactBlock ul li.mail::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url(../img/common/icon_mail_c.svg) no-repeat center center;
  background-size: contain;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .page .cntsBlock.contactBlock ul li.mail::before {
    width: 24px;
    height: 24px;
  }
}/*# sourceMappingURL=style.css.map */