@charset "utf-8";
/*
max-width:767.98px
max-width:575.98px

ベースカ（クリームホワイト）   ：#FAF8F5(250,248,245)
アクセン（フォレストグリーン） ：#2A4E4E(42,78,78)
サブカラ（スノーブルー）       ：#B8D8E4(184,216,228)
テキスト（ダークブラウン）     ：#4A3D35(74,61,53)
ポイント（オークル）          ：#D2A679(,,)
*/

/*============================================== */
/* 追加
/*============================================== */
body{
  background-color: #FAF8F5;
  color: #4A3D35;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a:hover{
  color: #D2A679;
  text-decoration: none;
}

.display-3, .display-4{
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h3 {
  font-size: 1.3rem;
}

.mb-lg-4, .my-lg-4 {
  margin-bottom: 1.5rem !important;
}
.display-5{
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
}

@media screen and (max-width:575.98px){
  .display-3,
  .display-4 {
    font-size: 2.1rem;
  }
  .display-5 {
    font-size: 1.9rem;
  }
}/* ===== max-width:575.98px ===== */

/* ------------------------------
ヘッダー
--------------------------------- */
header,footer {
  background-color: #2A4E4E;
  background-color: rgba(42, 78, 78, 1);
  color: #FAF8F5;
}
header .navbar-brand {
  width: 20%;
}
header .navbar-brand .logo {
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  header .navbar-brand {
      width: 70%;
  }
  .navbar {
    padding: .5rem 0;
  }
}

/* ------------------------------
ナビゲーション
--------------------------------- */
header .navbar-light .navbar-nav .nav-link {
  color: #FAF8F5;
  line-height: 2;
  font-weight: bold;
}
header .navbar-light .navbar-nav .nav-link:hover {
  color: #2A4E4E;
  background-color: #FAF8F5;
  border-radius: 4px;
  transition: .5s;
}

@media screen and (max-width: 767.98px) {
  header .navbar-nav {
      border-top: 1px solid #FAF8F5;
  }
}

/* ------------------------------
ハンバーガーメニュー
--------------------------------- */
.navbar-light .navbar-toggler {
  border-color: rgba(0, 0, 0, 0);
  outline: none;
}

.navbar-light .navbar-toggler-icon {
  background-image: none;
}

.navbar-toggler-icon {
  position: relative;
  width: 40px;
  height: 40px;
  background: none;
  appearance: none;
  cursor: pointer;
  border: 1px solid #FAF8F5;
  border-radius: 5px;
}

.navbar-toggler-icon span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 8px;
  width: 60%;
  height: 2px;
  background-color: rgba(250, 248, 245, 1);
  border-radius: 1px;
}

.navbar-toggler-icon span:nth-of-type(1) {
  top: 10px;
}
.navbar-toggler-icon span:nth-of-type(2) {
  top: 18px;
}
.navbar-toggler-icon span:nth-of-type(3) {
  top: 26px;
}

.navbar-toggler[aria-expanded='true'] .navbar-toggler-icon span:nth-of-type(1) {
  transform: translateY(8px) rotate(-135deg);
}
.navbar-toggler[aria-expanded='true'] .navbar-toggler-icon span:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded='true'] .navbar-toggler-icon span:nth-of-type(3) {
  transform: translateY(-8px) rotate(135deg);
}

/* ------------------------------
カルーセル
--------------------------------- */
.carousel-item {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.carousel-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transition: opacity 2s ease-in-out, transform 8s ease-in-out;
  opacity: 0;
  transform: scale(1);
}

.carousel-item.active .carousel-background {
  opacity: 1;
  transform: scale(1.1);
}

.carousel-caption {
  z-index: 2;
  text-align: center;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.carousel-caption h1,
.carousel-caption p {
  opacity: 0;
  transform: translateY(20px);
}

.carousel-item.active .carousel-caption h1,
.carousel-item.active .carousel-caption p {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------
カルーセル内テキスト
--------------------------------- */
.main-txt {
  left: 10%;
  bottom: 50px;
  text-shadow: 3px 3px 10px #4A3D35;
  padding: 1rem;
}
.lead {
  font-size: 1.3rem;
  font-weight: 500;
  text-shadow: 3px 3px 5px #4A3D35;
}
@media screen and (max-width:767.98px){
  .main-txt {
    left: 3%;
    right: 3%;
    padding: 1rem;
  }
  .lead {
    font-size: 1rem;
  }
}/* ===== max-width:767.98px ===== */

/* ------------------------------
セクション
--------------------------------- */
section {
  position: relative;
  overflow: hidden;
}
section:nth-of-type(odd)::before {
  position: absolute;
  top: 0px;
  left: calc(-50vw + 50%);
  right: calc(-50vw + 50%);
  bottom: 0px;
  z-index: -1;
  background-color: #B8D8E4;
  content: "";
}
.pd-160{
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.pd-80{
  padding-bottom: 2.5rem;
}
.pd-40{
  padding-bottom: 1.75rem;
}
.mg-80{
  margin-bottom: 2.5rem;
}
.mg-40{
  margin-bottom: 1.75rem;
}
.mg-20{
  margin-bottom: 0.8rem;
}
@media screen and (min-width:767.98px){
  .pd-160{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .pd-80{
    padding-bottom: 5rem;
  }
  .pd-40{
    padding-bottom: 2.5rem;
  }
  .mg-80{
    margin-bottom: 5rem;
  }
  .mg-40{
    margin-bottom: 2.5rem;
  }
  .mg-20{
    margin-bottom: 1.25rem;
  }
}/* ===== min-width:767.98px ===== */

/* ------------------------------
プラン
--------------------------------- */
#plan a {
  color: #FAF8F5;
  background-color: rgba(42,78,78,1);
  border-color: #2A4E4E;
}
#plan a:hover {
  background-color: rgba(42,78,78,0.8);
}
#plan a:focus {
  outline: 0;
  box-shadow: none;
}

/* 施設 */
.order-md-1 {
  padding-right: 24px;
}
.order-2 {
  padding-left: 24px;
}
.text-align {
  text-align: justify;
}
@media screen and (max-width:767.98px){
  .order-md-1{
    padding-right: 15px;
  }
  .order-2 {
    padding-left: 15px;
}
}/* ===== max-width:767.98px ===== */

/* ------------------------------
アクセス
--------------------------------- */
.root-title {
  font-size: 1.2rem;
  line-height: 1;
}
.root-title b {
  background: #2A4E4E;
  color: #FAF8F5;
  border-radius: 3px;
  font-weight: normal;
  display: inline-block;
  margin-right: 10px;
  padding: 10px 10px;
}
.root-title-text {
  margin-left: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}
.accsess ul {
  list-style: none;
  padding-left: 0;
}
.root {
  display: flex;
  flex-wrap: wrap;
  margin: 0 20px 30px;
}
.root li:nth-child(odd) {
  border: 1px solid #2A4E4E;
  border-radius: 5px;
  padding: 4px 6px 0;
  background-color: #FAF8F5;
  font-size: 1.1rem;
}
.root li:nth-child(even) {
  position: relative;
  padding: 3px 12px 8px;
  font-size: 0.9rem;
  overflow: hidden;
}
.root li:nth-child(even)::after {
  content: '';
  position: absolute;
  width: 100%;
  left: -7px;
  bottom: 4px;
  border-bottom: 5px solid #2A4E4E;
  transform: skewX(45deg);
  z-index: -1;
}
.root li:last-child {
  border: 1px solid #2A4E4E;
  background: #B8D8E4;
  border-radius: 3px;
  padding: 4px 6px 0;
}
.root li {
  margin-bottom: 10px;
}
@media screen and (min-width:767px){
  .root-title {
    font-size: 1.5rem;
  }
}/* ===== min-width:767px ===== */

/* ------------------------------
地図サイズ
--------------------------------- */
iframe {
  display: block;
  width: 100%;
  height: 400px;
}

/* ------------------------------
お知らせ
--------------------------------- */

/* ------------------------------
フッター
--------------------------------- */
footer img {
  width: 100%;
  max-width: 345px;
  margin-left: auto;
  margin-right: auto;
}


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
プラン詳細ページ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.plan_detail .table-bordered th,
.plan_detail .table-bordered td {
  border: 1px solid #4A3D35;
}
.plan_detail .table-bordered th {
  color: #FAF8F5;
  background-color: #4A3D35;
}
.plan_detail .table-bordered tr:nth-child(1) th:nth-child(1) {
  border-bottom-color: #FAF8F5;
}
.plan_detail .bg_none {
  background-color: #FAF8F5;
}
.plan_detail a {
  color: #FAF8F5;
  background-color: rgba(42,78,78,1);
  border-color: #2A4E4E;
}
.plan_detail a:hover {
  color: #FAF8F5;
  background-color: rgba(42,78,78,0.8);
}
.plan_detail a:focus {
  outline: 0;
  box-shadow: none;
}








