body {
  font-size: 0;
  /*background-image: url(images/bubbic背景.webp);*/
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(3px);
  z-index: -1;
}

.menu-bar {
  position: absolute;
  top: 25px;
  right: 30px;
  cursor: pointer;
  display: inline-block;
}

.bar {
  width: 35px;
  height: 5px;
  background-color: black;
  margin: 4px 0;
  transition: 0.4s;
}

.menuBar-container {
  position: absolute;
  top: -200%;
  /* 初期状態では画面外 */
  left: 0;
  width: 100%;
  transition: top 0.5s ease;
  z-index: 1000;
}

.close-menu {
  position: absolute;
  top: 25px;
  right: 35px;
  cursor: pointer;
  font-size: 36px;
  color: black;
  z-index: 1001;
}

.splide__slide {
  height: 100%;
}

.splide__slide img {
  width: 100%;
  height: 100%;
  position: relative;
}

.back-blur {
  backdrop-filter: blur(10px);
}

.fixed-banner {
  position: fixed;
  /* 固定位置 */
  bottom: 0;
  /* 画面の下部に */
  left: 0;
  /* 左端から */
  width: 100%;
  /* 背景色 */
  color: white;
  /* テキスト色 */
  text-align: center;
  /* テキストを中央に */
  /* 上下の余白 */
  z-index: 1000;
  /* 他の要素の上に表示 */
}

.fixed-banner img {
  width: 100%;
}

#image-slider {
  margin: auto;
}

#contactForm {
  max-width: 100%;
  padding: 36px;
  margin: -1% 0;
  box-sizing: border-box;
  background-color: white;
}

#contactForm2 {
  max-width: 100%;
  padding: 36px 282px;
  margin: -1% 0;
  box-sizing: border-box;
  background-color: white;
}


.form-group {
  margin-bottom: 35px;
  height: 10vh;
}

.form-group2 {
  margin-bottom: 35px;
}

.form-group2 label {
  display: block;
  margin-bottom: 5px;
  font-size: large;
}


.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: large;
}

.flex-item {
  flex-grow: 1;
  margin: 0;
}

.place-end {
  place-self: end;
}

.oneword {
  margin-top: -2px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%;
  height: 60%;
  padding: 10px;
  border: 1px solid black;
  border-radius: 6px;
  background-color: ivory;
  box-sizing: border-box;
}

.form-group2 textarea {
  height: 47.4vh;
  resize: vertical;

  width: 100%;
  padding: 10px;
  border: 1px solid black;
  border-radius: 6px;
  background-color: ivory;
  box-sizing: border-box;
}

.form-group textarea {
  height: 10vh;
  resize: vertical;

  width: 100%;
  padding: 10px;
  border: 1px solid black;
  border-radius: 6px;
  background-color: ivory;
  box-sizing: border-box;
}

.required {
  color: black;
  /* 必須のテキストの色 */
  background-color: #FFE300;
  margin-left: 5px;
  /* ラベルテキストからの余白 */
  border-radius: 4px;
  font-size: 16px;
}

element.style {
  background: white;
}

.splide__track {
  margin: auto;
}

#contactForm button {
  display: block;
  /* ボタンをブロックレベル要素として表示 */
  width: 100%;
  padding: 10px 0;
  margin: 7vh auto 0;
  background-color: #0056b3;
  color: white;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  align-self: start;
}

#contactForm button:hover {
  background-color: #003d82;
}

#header {
  position: fixed;
  z-index: 3;
  display: block;
}


#section1pc {
  margin-top: -1px;
}

#section2pc {
  margin-top: -1px;
}

#section3pc {
  margin-top: -1px;
}

#section4pc {
  position: relative;
  margin-top: -1px;
  background: #fff;
  padding: 50px 0;
}

.FaqTtl{display: block; position: relative; top:-40px;  width: 350px; margin: 0 auto;}

.FaqAreaInner{background: #fff300; padding-bottom: 180px;}
.FaqAreaWrap{ 
	width: 80%;
	max-width: 800px;
    margin: 0 auto;}

 .FaqArea {
	border-bottom: solid 1px #333;
	color: #000;
	font-size: 18px;
}

.FaqQuestion {
    position: relative;
    padding: 26px 20px;
    color: #333;
	font-weight: bold;
    cursor: pointer
}

.FaqQuestion::before {
    content: "";
    position: absolute;
    right: 30px;
    top: 50%;
    height: 1.5px;
    width: 15px;
    background: #333;
    transform: rotate(90deg);
    transition: .3s
}

.FaqQuestion::after {
    content: "";
    position: absolute;
    right: 30px;
    top: 50%;
    height: 1.5px;
    width: 15px;
    background: #333;
    transition: .3s
}

.FaqQuestion span {
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    background: #fff;
    border: solid 1px #333;
    border-radius: 30px;
    color: #888;
    margin-right: 15px;
    padding-left: 1px;
    line-height: 28px
}

.FaqAnswer {
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    height: 0;
    overflow: hidden;
	font-weight: bold;
    transition: .4s
}

.active + .FaqAnswer {
    height: auto;
    padding: 0px 20px 26px 20px
}

.FaqQuestion.active::before {
    transform: rotate(0)
}

.FaqQuestion.active::after {
    opacity: 0
}

.FaqAnswer span {
    position: absolute;
    left: 21px;
    width: 30px;
    height: 30px;
    text-align: center;
    background: #333;
    border-radius: 30px;
    color: #fff;
    padding-left: 1px;
}

.FaqImg{display: block; position: absolute; bottom:0; left:calc(50% + 240px); width: 220px; margin: 0 auto;}

#section5-1pc {
  margin-top: -1px;
}

#section6pc {
  margin-top: -1px;
}

#section1 {
  margin-top: -1px;
}

#section2 {
  margin-top: -1px;
}

#section3 {
  margin-top: -1px;
}

#section4 {
  margin-top: -1px;
}

#section5-1 {
  margin-top: -1px;
}

#section6 {
position: relative;
  margin-top: -1px;
	position: relative;
}

#section6 .FaqAreaInner{
  margin: 50px 0 80px;
}

#section6 .FaqAreaInner .FaqImg{    
	bottom: -50px;
    left: calc(20% + 75px);}

#footer {
  margin-top: -1px;
}

.relative {
  position: relative;
}

.desktop {
  display: block;

}

.mobile {
  display: none;
}

.section7 {
  margin-top: -1px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  /* これにより中央揃えになる */
  overflow: hidden;
  /* コンテナより大きい画像がある場合にクリップ */
}

img {
  width: 100%;
}

.conteiner div img {
  width: 100%;
  /* コンテナの幅に合わせて調整 */
  height: auto;
  /* 画像のアスペクト比を維持 */
  object-fit: cover;
  /* 画像がコンテナに収まるように調整 */
}

.yellow {
  background-color: yellow;
}


.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

#slider-container {
  padding: 24px;
  background-color: white;

}

#image-slider2 {
  width: 800px;
  margin: auto;
  position: relative;
}

#mobile-banner {
  margin-bottom: 15px;
  width: 352px;
}

#contactForm2{
	position: relative;
}

#contactForm2 button{
	position: absolute;
    bottom: -87px;
    left: calc(50% - 300px);
    width: 600px;
    height: 80px;
    opacity: 0;
	cursor: pointer;
}

#contactForm2 button:hover{
	cursor: pointer
}

.ImgMenuArea{position: absolute; top:0}

@media screen and (min-width: 993px) {
  .splide__track {
    width: 600px;
    margin: auto;
  }

  .HeaderNavPc{
      position: fixed; 
      top: 0;
      left: 0;
      width: 100%;
	  z-index: 6;
  }
	
  .HeaderNavPc a:first-child{
      width: 130px;
      height: 7vw;
      position: absolute;
      left: 15%;
  }
  .HeaderNavPc a:nth-child(2){
      width: 5vw;
      height: 7vw;
      position: absolute;
      left: 35%;
  }
	.HeaderNavPc a:nth-child(3){
      width: 7vw;
      height: 7vw;
      position: absolute;
      left: 40%;
  }
	.HeaderNavPc a:nth-child(4){
      width: 5vw;
      height: 7vw;
      position: absolute;
      left: 47%;
  }
	.HeaderNavPc a:nth-child(5){
      width: 6vw;
      height: 7vw;
      position: absolute;
      left: 52%;
  }
	.HeaderNavPc a:nth-child(6){
      width: 6vw;
      height: 7vw;
      position: absolute;
      left: 59%;
  }
	.HeaderNavPc a:nth-child(7){
      width: 11vw;
      height: 7vw;
      position: absolute;
      left: 72%;
  }

}

@media screen and (max-width: 992px) {
  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }

  #header {
    display: none;
  }
}