html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact-button {
  padding: 20px 20px;
  border: 1px solid rgb(245, 242, 242);
  background-color: white;
  color: #333;
  cursor: pointer;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 30px;
}

.contact-button-wrapper {
  position: fixed;
  bottom: 80px;
  right: 40px;
  z-index: 9999;
}

/* 共通 */

.line {
  border: 0;
  width: 70%;
  height: 4px;
  background-color: #54acd4;
  border: none;
}

.title_cover {
  border-top: 2px#54acd4;
}

.title {
  color: #54acd4;
  font-weight: bolder;
  position: relative;
  display: inline-block;
  padding-top: 20px;
}

.title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #54acd4;
}


header {
  background-color: #54acd4;
  padding: 30px 0;
}

header img {
  width: 20rem;
}

header .menu_cover {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.menu {
  display: flex;
  gap: 1.2rem;
  font-size: 1.5rem;
  color: white;
}

.menu-item {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger-menu span {
  background-color: white;
  height: 6px;
  margin: 4px;
  width: 40px;
}


/* セクションTOP */
.top_image_cover img {
  width: 100%;
  height: auto;
}


/* 会社概要セクション */

.about {
  height: auto;
  padding: 120px 0;
  background-color: white;
}

.about .text {
  padding: 50px;
}

.about .text p {
  margin-top: 50px;
  font-size: 18px;
}

.about .image {
  display: flex;
  justify-content: center;
  align-items: center;

}

.about .image img {
  width: 90%;
  border-radius: 55px;
}

.about .to_detail_btn {
  display: flex;
  justify-content: flex-start;
}

.about .about_detail {
  text-align: center;
  width: 300px;
  background-color: #54acd4;
  margin: 40px 0 0 0;
  padding: 7px;
  font-size: 1.8rem;
  text-decoration: none;
  color: white;
  font-weight: bold;
}


/* セクションintro */
.intro {
  padding: 100px;
  background-color: #f0f0f0;
}

.title_cover {
  display: flex;
  justify-content: center;
}

.title_cover h1 {
  align-items: center;
}

.intro .text_cover {
  display: flex;
  justify-content: center;
}

.intro .intro_text {
  margin-top: 20px;
  margin-bottom: 50px;
  font-size: 1.8rem;
}

.intro_img_cover {
  display: flex;
  justify-content: center;
}

.intro .intro_img {
  margin: 30px;
  display: flex;
  justify-content: center;
}

.intro .intro_img img {
  align-items: center;
  border-radius: 55px;
}

.intro .about_detail {
  text-align: center;
  width: 300px;
  height: 60px;
  background-color: #54acd4;
  margin: 40px 0 0 0;
  padding: 7px;
  font-size: 1.8rem;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.intro .to_detail_btn {
  padding: 10px;
  display: flex;
  justify-content: center;
}

/* セクションceo */

.ceo {
  height: auto;
  padding: 120px 0;
  background-color: white;
}

.ceo .title {
  margin-bottom: 50px;
}

.ceo .text {
  padding: 25px;
}

.ceo .text p {
  margin-top: 20px 0;
  font-size: 18px;
}

.ceo .image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ceo .image img {
  width: 300px;
  height: 300px;
  border-radius: 100%;
}

.ceo .to_detail_btn {
  margin-top: 50px;
}

.ceo .about_detail {
  width: 300px;
  background-color: #54acd4;
  margin: 40px 0 0 0;
  padding: 7px;
  font-size: 1.8rem;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

/* Q&Aセクション */

.qa {
  padding: 50px;
  background-color: #f0f0f0;
}

.qa .title_flame {
  padding: 50px;
}

.qa_cover {
  margin: 50px;
}

.question {
  display: flex;
  justify-content: center;
  /* 水平方向の中央揃え */
  align-items: center;
  /* 垂直方向の中央揃え */
  background-color: rgb(247, 237, 232);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  height: 5rem;
}

.q_text p {
  margin: 0;
  /* デフォルトのマージンをリセット */
  font-weight: bold;
  font-size: 1.5rem;
}

.a_text p {
  margin: 20px 0;
  margin-right: 30%;
  text-align: start;
  font-weight: bold;
  font-size: 1.4rem;


}

.answer {
  padding: 10px 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.mark_cover {
  display: flex;
  justify-content: center;
}

.mark_cover img {
  margin: auto 0;
  height: 45px;
  border-radius: 100%;
}

.qa .to_detail_btn {
  padding: 10px;
  display: flex;
  justify-content: center;
}

.qa .about_detail {
  text-align: center;
  width: 300px;
  background-color: #54acd4;
  margin-bottom: 80px;
  padding: 7px;
  font-size: 1.8rem;
  text-decoration: none;
  color: white;
  font-weight: bold;
}


/* 店舗紹介セクション */
.shop_intro {
  height: auto;
  margin: 100px 200px;
}

.shop_title {
  margin-top: 100px;
}

.shops_name {
  font-weight: bold;
}

.shop_title .circle {
  font-size: 1em;
  color: #54acd4;
}

.shop_title p {
  font-size: 2.2rem;
}

.shops_detail p {
  margin: 1.5rem;
  font-size: 1.5rem;
}

.shops_detail .map {
  display: flex;
  justify-content: center;
}

footer {
  background-color: #54acd4;
  padding: 30px 0;
}

footer .section_cover{
  display: flex;
}

footer .phone_number {
  font-size: 3rem;
  color: #f0f0f0;
  font-weight: bold;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .menu_cover {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
}

footer .menu {
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
}

footer .menu_item {
  margin: 1rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.reserved {
  margin: 20px;
  display: flex;
  justify-content: center;

}

.reserved_text {
  align-items: center;
  color: white;
  font-size: 12px;
}


/* レスポンシブ */
@media screen and (max-width: 1200px) {


  header img {
    margin: 10px 0;
    width: 100%;
  }

  .menu-item {
    margin: auto 4px;
    color: white;
    text-decoration: none;
    font-size: 75%;
    font-weight: bold;
  }

  .contact-button {
    padding: 20px 20px;
    font-size: 15px;
  }

}

@media screen and (max-width: 767px) {


  header {
    padding: 7px;
  }

  header img {
    width: 15rem;
  }

  .menu {
    display: none;
    flex-direction: column;
    background-color: #54acd4;
    position: absolute;
    top: 100px;
    right: 0;
    width: 200px;
  }

  .menu-item {
    padding: 15px;
    text-align: center;
  }

  .burger-menu {
    display: flex;
  }

  .menu.active {
    display: flex;
  }

  .contact-button {
    padding: 10px 10px;
    font-size: 12px;
  }

  .contact-button-wrapper {
    bottom: 90px;
    right: 15px;

  }

  .title {
    font-size: 130%;
    color: #54acd4;
    font-weight: bolder;
    position: relative;
    display: inline-block;
    padding-top: 10px;
  }


  .title:before {
    height: 2px;
    background: #54acd4;
  }


  .top_image_cover {
    display: flex;
    justify-content: center;
    /* 水平方向の中央揃え */
    align-items: center;
    overflow: hidden;
  }


  .top_image_cover img {
    width: 150%;
    height: auto;
  }



  /* 会社概要セクション */

  .about {
    margin: 35px 0;
    padding: initial;
  }

  .about .title {
    margin: initial;
    align-items: center;
    font-weight: 80%;
  }

  .about .text {
    padding: initial;
    padding-left: 8%;
  }

  .about .text p {
    margin-top: 10%;
    font-size: 77%;
    font-weight: bold;
  }

  .about .about_detail {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 40px;
    margin: 0;
    font-size: 100%;
    text-decoration: none;
    color: white;
    font-weight: bold;
  }

  .about .image img {
    width: 100%;
    border-radius: 10%;
  }

  /* 事業紹介セクション */


  .intro {
    padding: 5%;
  }

  .intro .text_cover {
    padding-bottom: 20px;
  }

  .intro .intro_text {
    font-size: 100%;
    font-weight: bold;
    margin-bottom: initial;
  }

  .intro .intro_img_cover {
    display: initial;
    justify-content: initial;
  }

  .intro .intro_img {
    width: 60%;
    padding: 0;
    margin: 10px auto;
    display: flex;
    justify-content: center;
  }

  .intro .intro_img img {
    width: 90%;
    border-radius: 16%;
  }

  .intro .about_detail {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 3px;
    height: 40px;
    font-size: 100%;
  }


  /* 代表挨拶セクション */

  .ceo {
    padding: 10%;
  }

  .ceo .title {
    margin-bottom: 20px;
  }

  .ceo .image img {
    width: 95%;
    height: 55%;
    border-radius: 100%;
  }

  .ceo .text {
    padding: 5%;
    padding-left: 0;
  }

  .ceo .text p {
    margin-top: 50px;
    margin-bottom: 0;
    font-size: 80%;
    padding: 0;
    margin-top: initial;
    font-weight: bold;
  }

  .ceo .to_detail_btn {
    margin-top: 20px;
  }

  .ceo .about_detail {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    width: 60%;
    height: 40px;
    font-size: 100%;
  }

  /* Q&Aセクション */

  .qa {
    padding: 25px 60px;
  }

  .qa .title_flame {
    padding: 2px;
  }

  .qa_cover {
    margin: 25px 0;
  }

  .question {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: auto;
    padding: 10px 0;
  }

  .q_text p {
    font-weight: bolder;
    font-size: 17px;
  }


  .answer {
    padding: 6px 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .a_text p {
    margin: 0;
    padding: 10px 0;
    text-align: start;
    font-weight: bolder;
    font-size: 16px;
  }

  .mark_cover {
    display: flex;
    justify-content: center;
  }

  .mark_cover img {
    margin: auto 0;
    height: 45px;
    border-radius: 100%;
  }


  .qa .about_detail {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
    height: 40px;
    font-size: 100%;
  }

  /* 店舗紹介セクション */
  .shop_intro {
    margin: 0;
    padding: 40px;
  }

  .shop_title .circle {
    font-size: 100%;
    color: #54acd4;
  }

  .shop_title {
    margin-top: 10%;
  }

  .shop_title p {
    font-size: 150%;
    margin: 0;
  }

  .shops_name {
    font-weight: bold;
  }

  .shops_detail p {
    margin: 20px 10px;
    font-size: 100%;
    font-weight: bold;
  }

  .shops_detail .map {
    display: flex;
    justify-content: center;
  }

  .shops_detail iframe {
    width: 350px;
    height: 300px;
  }

  footer {
    padding: 10px;
  }

  footer .phone_number {
    width: 100%;
    font-size: 20px;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }


  footer .menu {
    font-size: 1.5rem;
  }

  footer .menu-item {
    margin: 0 2px;
  }

  footer .menu_cover{
    display: none;
  }

  .reserved {
    margin: 10px;
    display: flex;
    justify-content: center;
  }

  .reserved_text {
    align-items: center;
    color: white;
    font-size: 5px;
  }

}