@charset "UTF-8";

.PCV {display: inline;}
.SPV {display: none;}

@media screen and (max-width: 750px){
  .PCV {display: none;}
  .SPV {display: inline;}
}


#mainContents {
}

.originalplan .inner {
  margin: 0 auto;
  text-align: left;
}

.originalplan header .inner {
  display: flex;
}

.originalplan footer {
  background: #2ca5dc;
}
.originalplan footer .inner {
  text-align: center;
  color: #fff;
  padding: 50px 0;
}


/*------- INDEX ----------------------*/

.index {
  border: 3px solid #CCC;
  padding: 20px;
  margin-bottom: 50px;
  background: #FFF;
  border-radius: 10px;
}

.index p {
  background: #333;
  color: #FFF;
  display: inline-block;
  font-size: .7rem;
  font-family: sans-serif;
  font-weight: bold;
  letter-spacing: .2rem;
  padding: 5px 2px 5px 5px;
  margin-bottom: 10px;
  line-height: 1;
}

.index ul li {
  list-style: disc;
  margin-bottom: .5rem;
  margin-left: 20px;
}

.index ul li:last-of-type {
  margin-bottom: 0;
}


/*------- MV ----------------------*/
.MV {
  margin-bottom: 50px;
  line-height: 1.6;
  font-size: 1rem;
  text-align: center;
}

.MV .UL {
  margin: 0 5px;
  background: linear-gradient(transparent 50%, #ffe453 50%);
}


/*------- 予約プランのボックス全体 ----------------------*/
.planBox {
  padding: 30px;
  margin-bottom: 50px;
  border-radius: 10px;
  border: 3px solid #9ECEE1;
  background: #FFF;
}

.planBox_inner {
  display: flex;
}

@media screen and (min-width: 751px){
  .planBox_inner {
    align-items: center;
    gap: 10px 30px;
  }
}

@media screen and (max-width: 750px){
  .planBox_inner {
    flex-direction: column;
  }
  .planBox:nth-of-type(even) .planBox_inner {
    flex-direction: column-reverse;
  }
}

/*------- 見出し ----------------------*/

.headingTitle {
  text-align: center;
  margin-bottom: 40px;
}
.headingTitle h2 {
  display: inline-block;
  position: relative;
  font-size: 1.6rem;
  font-family: sans-serif;
  letter-spacing: 1px;
  line-height: 1.4;
}

.headingTitle h2:before {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background-color: #2ca5dc;
}


.planBox.soon .headingTitle h2 span {
  display: block;
  margin-bottom: .5rem;
  font-size: 1rem;
  color: red;
}


/*------- LINE風 ----------------------*/

.balloon {
  display: grid;
  gap: 1em 0;
  margin: 0 auto;
  background: #98c1d9;
  padding: 15px;
  border-radius: 5px;
}

.balloon__section {
  display: flex;
  gap: 0 15px;
}

.balloon__img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: 1px solid #666;
}

.balloon__p {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: .4em .8em;
    border-radius: 20px;
    color: #333;
    font-family: sans-serif;
    max-width: 70%;
}

.balloon__p.left {
    background-color: #FFF;
}

.balloon__p.left strong {
  font-weight: bold;
  font-size: 1rem;
}

.balloon__p.right {
    background-color: #30e852;
    margin: 0 10px 0 auto;
}

.balloon__p.right strong {
  font-weight: bold;
  font-size: 1rem;
  margin: 0 5px;
  background: linear-gradient(transparent 10%, #ffe453 10%);
}

.balloon__p::before {
    position: absolute;
    top: -15px;
    width: 20px;
    height: 30px;
    content: '';
}

.balloon__p.left::before {
    left: -10px;
    border-radius: 0 0 0 15px;
    box-shadow: -3px -15px 0 -7px #FFF inset;
}

.balloon__p.right::before {
    right: -10px;
    border-radius: 0 0 15px 0;
    box-shadow: 3px -15px 0 -7px #30e852 inset;
}

@media screen and (min-width: 751px){
  .balloon {flex:1;}
}

@media screen and (max-width: 750px){
  .balloon {
    margin-bottom: 20px;
  }
  .balloon__p {
    max-width: 100%;
  }
}


/*------- VI ----------------------*/

.VI {
  text-align: center;
  position: relative;
}
.VI img {
  width: 100%;
  vertical-align: bottom;
  margin-bottom: 20px;
}

.planBox.soon .VI img {
  opacity:.5;
  border: 5px solid #CCC;
  box-sizing: border-box;
}

.planBox.soon .VI:after {
  content: "準備中";
  display: block;
  position: absolute;
  top:calc(50% - 20px);
  left: calc(50% - 2.5rem - 20px);
  font-size: 1.3rem;
  color: #FFF;
  letter-spacing: .5rem;
  font-family: sans-serif;
  font-weight: bold;
  background: #333;
  padding: 20px 10px 20px 20px;
}

/* ボタン */
.VI a {
  text-decoration: none;
}

.VI .button {
    background: #2ca5dc;
    border: 1px solid #2ca5dc;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 10px 25px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-family: sans-serif;
    font-weight: bold;
    max-width: 50%;
}
.VI .button:hover {
    background: #FFF;
    color: #2ca5dc;
    text-decoration: none;
}
.VI .button:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.VI .button:hover:after {
    border-color: #2ca5dc;
}

.planBox.soon .VI .button {
  display: none;
}


@media screen and (min-width: 751px){
  .VI {flex:1;}
}
@media screen and (max-width: 750px){
  .planBox.soon .VI:after {
    top:0;
    left: 0;
  }
}



/*-------繝�ず繧ｿ繝ｫ繧ｫ繧ｿ繝ｭ繧ｰ蟇ｾ蠢懆ｫ区ｱゅヵ繧ｩ繝ｼ繝��喞atalogDigital.html----------------------*/
.catalogDigital .inner {
  margin: 0 auto;
  text-align: left;
}

.catalogDigital header .inner {
  display: flex;
}

.catalogDigital header ul {
  display: inline-block;
}
.catalogDigital header ul li {
  text-align: center;
  margin: 5px 0;
}

.catalogDigital header ul li span {
  font-weight: bold;
  font-size: 1.2rem;
}

.catalogDigital footer {
  background: #2ca5dc;
}

.catalogDigital footer .inner {
  text-align: center;
  color: #fff;
  padding: 50px 0;
}

.catalogDigital #contentTitle {
  background: #2ca5dc;
  padding: 20px 0;
}


.catalogDigital #mainArea {
  padding: 50px 0;
}






@media screen and (max-width: 750px){
  .originalplan .inner {
    width: 95%;
    margin: 0 auto;
  }
  .originalplan header .inner {
    flex-direction: column;
  }
  .originalplan header .inner h1 {
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
  }
  .originalplan header .inner h1 img {
    width: 100%;
    height: auto;
  }
  .originalplan header .inner a {
    text-align: center;
  }
}

@media screen and (min-width: 751px){
  .originalplan .inner {
    width: 980px;
  }
  .originalplan header .inner {
    padding: 10px 0;
    align-items: center;
    justify-content: space-between;
  }
}
