 /*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root{
--main-color:#2C3147;
--sub-color:#EBCD6C;
--shadow-box: 0 0 10px rgba(0, 0, 0, .08);
}



body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  color: var(--main-color);
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto
}

#main .container{
  max-width: 960px;
  position: relative;
  z-index: 1;
}


.pc { display: block !important; }
.sp { display: none !important; }
 
@media only screen and (max-width: 991px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

.fadein{
  opacity: 0;
  transform: translateY(30px); /* 下から移動 */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* アニメーション */
}


.fadein.visible {
  opacity: 1;
  transform: translateY(0); /* 元の位置に戻す */
}



/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
position: fixed;
width: 100%;
height: 100%;
z-index: 999;
background:#E9E9E9;
text-align:center;
color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
width:260px;
}

/* fadeUpをするアイコンの動き */

.fadeUps{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
from {
  opacity: 0;
transform: translateY(100px);
}

to {
  opacity: 1;
transform: translateY(0);
}
}



/*========= レイアウトのためのCSS ===============*/

#container{
  width:100%;
  height: 100vh;
  background: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

a{
  color: #FFFFFF;
}

a:hover{
   text-decoration: none;   
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #47b2e4;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 30px;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #ffffff;
}

#header .logo {
  font-size: 21px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  font-family: "raleway", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 57px;
  height: 23px;
}

.header-wrap{
  max-width: 1020px;
  margin: 25px auto 0;
  background: #FFFFFF;
  border-radius: 100vh;
  box-shadow: var(--shadow-box);
}

@media (max-width: 991px) {

  .header-wrap{
    margin: 25px 15px;
  }

}

@media (max-width: 575px) {
  #header .logo img {
    max-height: 45px;
  }

  #header .logo img {
    height: 18px;
}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 13px;
  font-weight: 500;
  color: #2c314782;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--main-color);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}



@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #2c3147;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgb(39 47 60 / 90%);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  font-size: 15px;
  color: var(--main-color);
  border-bottom: 1px solid #dddddd;
  margin: 0 20px;
  padding: 20px;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color:var(--main-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

/*
.navbar-mobile a.nav-link.scrollto {
  border-bottom: 1px solid #dddddd;
  margin: 0 20px;
  padding: 20px;
}
*/

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  background: linear-gradient(to bottom, #f5b058, #EBCD6C);
  background-size: cover;
  position: relative;
}

.hero-bg{
position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-bg img{
  height: 60vh;
  width: 100%;
  opacity: 0.1;
}

#hero .container {
  padding-top: 72px;
  max-width: 1100px;
}

#hero h1 {
  font-family: "raleway", sans-serif;
  margin: 0 0 10px 0;
  font-size: 150px;
  font-weight: 400;
  font-style: normal;
  line-height: 130px;
  color: #fff;
}

#hero h2 {
  color: #ffffff;
  font-size: 98px;
  font-weight: 900;
  text-align: center;
  margin: 0;
}

.mv-container {
  display: flex;
  flex-direction: column; /* 要素を縦並びに */
  max-width: 810px;
  margin: 0 auto;
}

.mv-item1 {
  width: 100%; /* Item 1は1行に */
}

.mv-wrapper {
  display: flex;
  justify-content: space-between; /* 残り2つの要素を横並びに */
}

.mv-item2 {
  flex: 1; /* Item 2とItem 3は等分にスペースを使う */
  margin: 0 0px; /* 必要に応じて間隔を調整 */
}

.mv-item3 > h2 > div {
font-size: 57px;
margin-top: 15px;
}

.mv-item3 > h2 > span {
  color: var(--main-color);
  }


.mv-text {
  font-size: 21px;
  font-weight: 700;
  color: var(--main-color);
  background: #ffffff;
  display: inline-block;
  padding: 7px 24px;
  border-radius: 5px;
  margin-bottom: 35px;
  width: 100%;
  text-align: center;
}

.mv-bottom{
  font-size: 28px;
  color: #ffffff;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 70px;
}

.mv-content{
display: flex;
}

.mv-button-wrap{
  display: flex;
  justify-content: center;
  position: relative;
}

.mv-button-wrap img{
  width: 280px;
    height: auto;
    position: absolute;
    right: -125px;
    top: -40px;
    z-index: -1;
}

.mv-button{
  background: #F06363;
    color: #ffffff;
    font-size: 21px;
    font-weight: 600;
    border-radius: 100vh;
    display: inline-block;
    padding: 30px;
    text-align: center;
    width: 600px;
}

.mv-button i{
  margin-right: 10px;
}

#hero .mv-top {
  color: #ffffff;
  margin-bottom: 50px;
  font-size: 21px;
  display: block;
  text-align: right;
}

#hero .btn-get-started {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}

#hero .btn-get-started:hover {
  background: #209dd8;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.br-sp{
  display: block;
}


.hi01{
height: 220px;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
    margin-bottom: 30px;
    height: 145px;
  }

  .mv-item2 {
    display: flex;
    justify-content: center;
}
 .hi02{
  margin-left: 10px;
 }

  #hero .hero-img img {
    width: 50%;
  }

  .mv-content{
    flex-direction: column;
    }

    .mv-wrapper {
      flex-direction: column;
  }

  .mv-button{
    width: 70%;
    min-width: 335px;
    font-size: 18px;
  }

  .mv-item3 > h2 > div {
    font-size: 52px;
    margin-top: 0px;
}
#hero h2 {
  font-size: 52px;
  line-height: 62px;
  margin-bottom: 0px;
}

.mv-bottom{
  font-size: 12px;
    margin-bottom: 40px;
}
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 46px;
    line-height: 72px;
    margin-left: 33px;
  }



  .hero-bg img {
    height: 340px;
    width: unset;
}

  .mv-text{
    font-size: 15px;
    margin-bottom: 20px;
    width: 85%;
    color: #ffffff;
    background: #ffffff2b;;
  }
}

@media (max-width: 575px) {

  #hero .container {
    padding-top: 70px;
}
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }

  .br-sp{
    display: none;
  }

  .mv-img img{
    width: 280px;
  }

  #hero .hero-img {
    height: 120px;
}
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 8rem 0;
  position: relative;
  overflow-x: hidden;
}

.section-bg {
  background-color: #FBFCFF;
}

.section-bg02 {
  background-color: var(--main-color);
}

.section-bg-menu{
  background: url(/assets/img/menu-bg.png) no-repeat;
}


.section-title {
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  justify-content: center;
}

.section-title h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 30px;
  padding-bottom: 40px;
  position: relative;
}

.section-title img{
  height: 95px;
}



.section-title h6 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
}

.section-title p {
  margin-bottom: 0;
  line-height: 30px;
}


.logo-bg{
  position: absolute;
  left: -1.5%;
  bottom: 23px;
}

.logo-bg img{
  width: 100%;
}

.logo-bg > div{
  font-size: 110px;
    color: #eceeef85;
    font-weight: 700;
    white-space: nowrap;
}


.content-width{
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  section {
    padding: 6rem 0;
  }

  .section-title {
    flex-direction: column;
  }

  .section-title h2{
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 575px) {
  .section-title p {
    margin-bottom: 0;
    line-height: 24px;
    font-size: 13px;
    text-align: left;
  }
  .br-sp{
    display: none;
  }
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

.box-wrap{
  background: #ffffff;
  box-shadow: var(--shadow-box);
  border-radius: 30px;
  padding: 80px;
}

.box-wrap h3{
  font-size: 28px;
  font-weight: 800;
  text-align: center;
}

.box-wrap h3 span{
  font-size: 50px;
}

.content-text{
  font-size: 15px;
  text-align: center;
}

.content-text{
  font-size: 15px;
  text-align: center;
  margin-bottom: 50px;
}

.content-text span{
  font-weight: 900;
  color: #F06363;
}

.content-text2{
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.inbox-wrap{
  background: #ffffff;
  box-shadow: var(--shadow-box);
  border-radius: 10px;
  padding: 30px;
  margin: 40px auto;
}

.inbox-wrap h3{
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin: 40px;
}

.content-box{
  display: flex;
  justify-content: center;
  margin: 15px 0;
}

.function-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--sub-color);
  color: #ffffff;
  padding: 15px;
  border-radius: 10px;
  width: 120px;
  height: 120px;
  margin-right: 10px;
}

.function-box:last-child{
  margin-right: 0px;
}

.function-box i{
  font-size: 35px;
  margin-bottom: 5px;
}

.box-3-wrap{
  display: flex;
}

.box-3{
  display: flex;
  flex-direction: column;
  margin-left: 12px;
}

.box-3-title{
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 10px;
}

.box-3-text{
  font-size: 13px;
  line-height: 1.6;
}


.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #47b2e4;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #47b2e4;
}

.about .content .btn-learn-more:hover {
  background: #47b2e4;
  color: #fff;
  text-decoration: none;
}


.about-text01{
  font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 48px;
}

.about-text02{
  font-size: 16px;
  font-weight: 400;
  line-height: 34px;
}

@media (max-width: 768px) {

  .box-wrap{
    padding: 30px;
  }

  .box-wrap h3 {
    font-size: 16px;
    line-height: 1.6;
  }

  .box-wrap h3 span {
    font-size: 27px;
  }

  .content-text {
    font-size: 14px;
  }

  .inbox-wrap h3 {
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin: 20px 0;
  }

  .content-box {
    flex-wrap: wrap;
  }

  .function-box {
    margin: 5px;
    flex: 1 1 45%;
  }

.function-box:last-child{
  margin-right: 5px;
  }

  .content-text2 {
    font-size: 15px;
  }

  .box-3-wrap img{
    width: 75px;
  }

  .sp-reverse{
    margin-top: 10px;
    flex-direction: row-reverse;
  }

  .box-3-title {
    font-size: 18px;
  }

  .about-text01{
    font-size: 19px;
    line-height: 38px;
  }

  .about-text02 {
    font-size: 14px;
    line-height: 34px;
    margin-bottom: 35px;
}
}



/*--------------------------------------------------------------
# FUNCTION
--------------------------------------------------------------*/

.sec2-title-wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec2-title-wrap img{
  width: 120px;
}

.sec2-title-text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 5px;
}
.sec2-title-text::before,.sec2-title-text::after {
  content: "";
  background-color: var(--main-color);
  height: 2px;
  width: 25px;
}
.sec2-title-text::before {
  margin-right: 5px;
  margin-bottom: -2px;
  transform: rotate(55deg); 
}
.sec2-title-text::after{
  margin-right: 5px;
  margin-bottom: -2px;
  transform: rotate(-55deg); 
}
.sec2-title{
  font-size: 40px;
  font-weight: 900;
}

.function_table{
  margin-top: 20px;
}

.function_table th,.function_table td{
  padding: 20px 30px;
}

.function_table th{
  background: var(--main-color);
  color: #ffffff;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  border: 1px solid var(--main-color);
  border-bottom: 1px solid #dddddd;
}

.function_table th:last-child{
  border-bottom: 1px solid var(--main-color);
}

.function_table td{
  font-size: 13px;
}


@media (max-width: 768px) {
  .sec2-title-wrap img {
    width: 100px;
  }

  .sec2-title-text {
    font-size: 12px;
  }

  .sec2-title {
    font-size: 26px;
  }

  .sec2-title-text::before, .sec2-title-text::after {
    height: 1px;
    width: 17px;
}

.function_table th, .function_table td {
  padding: 10px 20px;
  font-size: 12px;
}
}


/*--------------------------------------------------------------
# PRICE
--------------------------------------------------------------*/

.sec3-title-wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec3-title-wrap img{
  width: 120px;
}

.sec3-title-text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 5px;
  color: #ffffff;
}
.sec3-title-text::before,.sec3-title-text::after {
  content: "";
  background-color: #FFFFFF;
  height: 2px;
  width: 25px;
}
.sec3-title-text::before {
  margin-right: 5px;
  margin-bottom: -2px;
  transform: rotate(55deg); 
}
.sec3-title-text::after{
  margin-right: 5px;
  margin-bottom: -2px;
  transform: rotate(-55deg); 
}
.sec3-title{
  font-size: 40px;
  font-weight: 900;
  color: #ffffff;
}


.sec4-title-wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec4-title-wrap img{
  width: 120px;
}

.sec4-title-text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 5px;
  color:var(--main-color);
}
.sec4-title-text::before,.sec4-title-text::after {
  content: "";
  background-color: var(--main-color);
  height: 2px;
  width: 25px;
}
.sec4-title-text::before {
  margin-right: 5px;
  margin-bottom: -2px;
  transform: rotate(55deg); 
}
.sec4-title-text::after{
  margin-right: 5px;
  margin-bottom: -2px;
  transform: rotate(-55deg); 
}
.sec4-title{
  font-size: 36px;
    font-weight: 900;
    color: var(--main-color);
    text-align: center;
}

.price-box-wrap{
  display: flex;
  margin-bottom: 70px;
}

.price-box{
  background: #ffffff;
    box-shadow: var(--shadow-box);
    border-radius: 30px;
    padding: 40px 40px 0 40px;
    width: 50%;
}

.pb-left{
  margin-right: 2%;
}

.price-tag-wrap{
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  margin-top: 15px;
}

.price-tag{
  color: var(--main-color);
  font-size: 15px;
  border: 1px solid var(--main-color);
  padding: 6px 15px;
  border-radius: 100vh;
  margin-right: 10px;
}

.price-wrap{
  display: flex;
  justify-content: center;
}

.price-number{
  font-size: 200px;
  font-weight: 900;
  color: var(--main-color);
  margin-left: 20px;
  line-height: 200px;
  font-family: "din-condensed", sans-serif;
}

.price-number span{
  font-size: 40px;
}

.price-button-wrap{
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
.sec3-title {
  font-size: 26px;
}

.sec3-title-text {
  font-size: 12px;
}

.sec3-title-text::before, .sec3-title-text::after {
  height: 1px;
  width: 17px;
}

.price-box-wrap {
  flex-direction: column;
}

.price-box {
  width: 100%;
  padding: 30px 30px 0 30px;
}

.pb-left {
  margin-right: 0%;
  margin-bottom: 25px;
}

.sec4-title-text {
  font-size: 13px;
}

.price-number {
  font-size: 160px;
  line-height: 100px;
  margin-top: 20px;
}

.price-tag {
  font-size: 13px;
}
}


/*--------------------------------------------------------------
# FLOW
--------------------------------------------------------------*/

.flow-wrap{
  max-width: 530px;
  margin: 0 auto;
}

.flow-box-toleft{
  background: #ffffff;
  border-radius: 30px;
  box-shadow: var(--shadow-box);
  padding: 25px 35px 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  left: -70px;
  margin-bottom: 70px;
}

.flow-box-toright{
  background: #ffffff;
  border-radius: 30px;
  box-shadow: var(--shadow-box);
  padding: 25px 35px 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  left: 70px;
  margin-bottom: 70px;
}

.flow-number{
  font-family: din-condensed, sans-serif;
  font-size: 100px;
  position: absolute;
  top: -72px;
}

.flow-box-left{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.flow-box-right img{
  width: 140px;
}

.flow-title{
  font-size: 24px;
  font-weight: 800;
}

.flow-text{
  text-align: center;
  margin: 10px auto;
}

.flow-button{
  background: #F06363;
  color: #ffffff;
  font-weight: 600;
  border-radius: 100vh;
  display: inline-block;
  padding: 12px 23px;
  text-align: center;
}


@media (max-width: 768px) {

  .flow-box-toleft {
    padding: 25px 20px 0;
    left: 0px;
  }

  .flow-box-toright {
    padding: 25px 20px 0;
    left: 0px;
    flex-direction: row-reverse;
  }

  .flow-title {
    font-size: 18px;
  }

  .flow-text {
    font-size: 13px;
  }

  .flow-box-left {
    margin-right: 5px;
  }



  .flow-box-right img {
    width: 100px;
  }

  .flow-button {
    font-size: 12px;
  }
}
/*--------------------------------------------------------------
# QA
--------------------------------------------------------------*/

.qa-wrap{
  margin-top: 60px;
}

.accordion {
  width: 100%;
}

/* inputのチェックボックスを非表示 */
.accordion-hidden {
  display: none;
}

/* 見出しボタン部分 */
.accordion-open {
  display: block;
  padding: 15px 80px 15px 10px;
  background: #f1f1f1;
  cursor: pointer;
  margin: 5px 0;
  position: relative;
  border-radius: 3px;
}

/* ＋アイコン */
.accordion-open::before,
.accordion-open::after {
  content: '';
  width: 20px;
  height: 3px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
}

/* アイコンのー */
.accordion-open::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}

/* アコーディオンが開いたらーに */
.accordion-hidden:checked+.accordion-open:after {
  transform: translateY(-50%) rotate(0);
}

/* アコーディオン中身部分 */
.accordion-inner {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: 0.5s;
  /* 表示速度の設定 */
  cursor: pointer;
}

/* チェックボックスにチェックが入ったら中身部分を表示する */
.accordion-hidden:checked+.accordion-open+.accordion-inner {
  height: auto;
  opacity: 1;
  padding: 10px;
}
/* ↑ここまで共通 */


/* Q&A追加 */
.accordion_qa .Q,
.accordion_qa .A {
  position: relative;
}

.accordion_qa .Q::before,
.accordion_qa .A::before {
  font-size: 1.5em;
  display: block;
  position: absolute;
  top: -8px;
  left: -1.3em;
}

.accordion_qa .Q::before {
  content: 'Q';
  color: #ff8787;
}

.accordion_qa .A::before {
  content: 'A';
  color: #6f98f1;
}

.accordion_qa .accordion-open {
  padding-left: 3em;
  font-size: 15px;
}

.accordion_qa .accordion-hidden:checked+.accordion-open+.accordion-inner {
  height: auto;
  opacity: 1;
  padding: 15px 10px 15px 3em;
}
/* Q&A追加ここまで */


/* 中にいろいろ入れたいとき */
.accordion-box {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: 1s;
}

.accordion-hidden:checked+.accordion-open+.accordion-box {
  height: auto;
  opacity: 1;
  padding: 10px;
}







/*--------------------------------------------------------------
# COMPANY
--------------------------------------------------------------*/

.company_table {
  border-collapse: collapse;
  width: 100%;
  max-width: 700px;
}
.company_table th, .company_table td {
  border-bottom: 1px solid #d5d5d5;
  padding: 1em;
  font-size:14px;
}
.company_table th {
  border-bottom: 1px solid #d5d5d5;
  font-weight: bold;
  text-align: center;
  width: 20%;
  min-width: 4em;
  white-space: nowrap;
}


.shop-img{

}

.shop-img img{
  object-fit: cover;
  height: 500px;
  width: 100%;
}

.google-map iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  margin-bottom: -6px;
}

@media (max-width: 768px) {
  .mh-350{
    min-height: 350px;
    margin-top: 30px;
  }

.shop-img img{
  object-fit: cover;
  height: 365px;
  width: 100%;
}
  }




/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #47b2e4;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #37517e;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #47b2e4;
}




/*--------------------------------------------------------------
# ROOM
--------------------------------------------------------------*/

.room-img img{
  width: 100%;
}

.room-wrap{
  position: relative;
  cursor: pointer;
}

.room-text{
 margin-top: -50px;
 margin-left: 10px;
}

.room-text01{
  font-size: 70px;
  color: #ffffff;
  font-family: din-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.room-text02{
  font-size: 24px;
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 15px;
}

.room-text03{
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.c-pointer{
  cursor: pointer;
}

.modal-btn{
  border: 1px solid #202020;
  padding: 15px;
  background-color: #e9e9e9;
  margin-top: 30px;
  font-size: 12px;
  color: #202020;
}

.modal-btn02{
  display: none;
}

.menu-table{
  border-collapse: collapse;
  width: 100%;
}


.menu-table th,.menu-table td{
  border-bottom: 1px solid #d5d5d5;
  padding: 1em;
  font-size:14px;
}

.menu-table td{
  border-bottom: 1px solid #d5d5d5;
  text-align: right;
  width: 20%;
  min-width: 4em;
  white-space: nowrap;
}

.menu-attention{
  display: block;
  font-size: 12px;
  float: right;
}

th.menu-plan{
  background: #dddddd;
  text-align: center;
  padding: 15px 0 ;
}


.bt-none{
  border-bottom: none !important;
}

.vip-heading{
  font-size: 24px;
}

.vip-price{
  border: 1px solid #343434;
  padding: 30px;
}

.price-title{
  font-size: 24px;
}

.price-detail{
  font-size: 24px;
}

.price-text{
  font-size: 18px;
}

.price-text span{
  display: block;
  font-size: 14px;
}

.tax-text{
  display: block;
  font-size: 14px;
  text-align: right;
    margin-top: 15px;
}


@media (max-width: 768px) {
  .modal-btn{
    display: none;
  }
  .modal-btn02{
    border: 1px solid #202020;
    padding: 25px;
    background-color: #e9e9e9;
    margin-top: 30px;
    font-size: 12px;
    display: block;
    width: 100%;
    color: #202020;
  }
  }



/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/

.modal-content{
  background: #1F1F1F;
}

.modal-header{
  border: none;
}

.modal-header .btn-close{
  border-radius: 100vh;
  background: white var(--bs-btn-close-bg) center / 1em auto no-repeat;
  margin: 10px 10px 10px auto;
}

.modal-body {
  padding: 0 15px 15px 15px;
}

.modal-text01{
  font-size: 100px;
  color: #ffffff;
  font-family: din-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 100px;
}

.modal-text02{
  font-size: 24px;
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 15px;
  color: #ffffff;
}


@media (max-width: 767px) {
  .sp-mt{
    margin-top: 1rem;
  }
  
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  font-size: 14px;
  background: #343434;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #47b2e4;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #209dd8;
}

#footer .footer-top {
  padding: 45px 0 45px 0;
  background: #E9E9E9
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #37517e;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #47b2e4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #47b2e4;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #47b2e4;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
  font-size: 12px;
}

#footer .credits {
  text-align: center;
  font-size: 12px;
}

#footer .credits a {
  transition: 0.3s;
}

.footer-logo{
  width: 110px;
}

.footer-copy{
  color:#ffffff;
  font-size: 21px;
  font-weight: bold;
}

.footer-copy-en{
  color:#ffffff;
  font-size: 11px;
  font-weight: 400;
}

.footer-img{
  width: 500px;
  margin: 0 auto;
  text-align: center;
}


@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }

  .footer-flex{
    justify-content: center;
  }

  
.footer-img img{
  width: 200px;
}
}