@charset "UTF-8";
/* 中央寄せのFlexbox
/display: flex;
align-items: center; */
/*------------------------------
  レスポンシブの設定
------------------------------*/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  margin: 0;
  font-family: Raleway;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 6vw;
}
@media screen and (max-width: 560px) {
  .container {
    padding: 0 5%;
  }
}

#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #3d3d3d;
  opacity: 0.6;
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

header {
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0px;
  width: 100%;
  height: 80px;
  padding: 0;
  z-index: 200;
  transition: 0.5s;
}
@media screen and (max-width: 560px) {
  header {
    height: 60px;
  }
}
header .hamburger-menu {
  display: none;
}
@media screen and (max-width: 560px) {
  header .hamburger-menu {
    display: block;
    content: url(../../img/menu-button.svg);
    background-size: contain;
    width: 6vw;
    height: 40px;
    position: absolute;
    right: 15px;
    top: 8px;
  }
  header .hamburger-menu.close {
    content: url(../../img/menu-close.svg);
    width: 4vw;
    z-index: 300;
  }
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 60px;
  position: relative;
}
@media screen and (max-width: 560px) {
  header .container {
    height: 40px;
  }
}
header h1 {
  display: block;
  margin: 0;
}
header h1 img {
  width: 70%;
  padding-top: 1em;
  margin-left: 70%;
}
@media screen and (max-width: 560px) {
  header h1 img {
    margin: 0;
    width: 45%;
  }
}
header nav {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  padding-top: 1.5em;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 560px) {
  header nav {
    display: none;
  }
  header nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15vw;
  }
}
header nav a {
  text-decoration: none;
  color: #444444;
  padding: 8px 15px 5px 15px;
}
@media screen and (max-width: 560px) {
  header nav a {
    border-bottom: 2px dotted #929292;
    text-align: center;
    font-size: 13pt;
    padding-bottom: 0.8em;
    margin-bottom: 10vw;
  }
}
header nav a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
header nav a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #727272;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
header nav a:hover::after {
  transform: scale(1, 1);
}

.website_LP_wrapper {
  margin-top: 150px;
}
@media screen and (max-width: 560px) {
  .website_LP_wrapper {
    margin-top: 90px;
  }
}

.head-title {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 560px) {
  .head-title {
    flex-direction: column;
  }
}

.left-box {
  width: 50%;
}
@media screen and (max-width: 560px) {
  .left-box {
    width: 100%;
  }
}
.left-box p {
  background-color: #fff;
  border: 1px solid #78c5cc;
  border-radius: 30px;
  color: #78c5cc;
  font-size: 10px;
  padding: 5px 3px;
  width: 75px;
  text-align: center;
  margin-bottom: 0;
}
.left-box h1 {
  margin-top: 0;
  margin-bottom: 3px;
  color: #78c5cc;
}
.left-box h2 {
  color: #78c5cc;
  font-size: 15px;
  margin-top: 0;
}
.left-box h2 a {
  color: #78c5cc;
  text-decoration: none;
  border-bottom: 1px solid #78c5cc;
}
.left-box h3 {
  font-size: 12px;
  font-weight: normal;
}

.right-box {
  width: 50%;
}
.right-box .comment-box {
  padding: 0;
}
@media screen and (max-width: 560px) {
  .right-box .comment-box {
    margin-left: 0;
  }
}
.right-box .comment-box ul {
  list-style: none;
  font-size: 11px;
  background-color: #e3f5f6;
  padding: 23px 20px;
  border-radius: 20px;
}
.right-box .comment-box li {
  padding-bottom: 0.4em;
}
@media screen and (max-width: 560px) {
  .right-box {
    width: 100%;
  }
}

.point-warapper .point-title {
  padding: 2vw 1vw;
}
.point-warapper .point-title h4 {
  border-bottom: 2px solid #707070;
  color: #515151;
  font-size: 13px;
}
.point-warapper .point-title .text-box {
  color: #515151;
}
.point-warapper .point-title .text-box .text-text {
  font-size: 13px;
  line-height: 2.5;
  padding-left: 3em;
}
@media screen and (max-width: 560px) {
  .point-warapper .point-title .text-box .text-text {
    width: 100%;
    padding-left: 0;
  }
}
.point-warapper .point-title .text-box .text-text p {
  margin-bottom: 0;
}
.point-warapper .point-title .text-box .text-text ul {
  margin: 0;
}
.point-warapper .point-title .text-box h5 {
  text-align: center;
  position: relative;
  padding: 10px 3px 5px 3px;
  font-size: 14px;
  color: #2d2d2d;
  line-height: 0.2;
  z-index: -2;
}

.caputure-warapper {
  background-color: #e3f5f6;
  padding-bottom: 5vw;
  padding-top: 3vw;
}
.caputure-warapper img {
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 0px 13px rgba(0, 0, 0, 0.2);
}

footer {
  background: #8b8b8b;
  padding: 1em 0;
}
footer p {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  margin-top: 0;
  font-size: 80%;
}/*# sourceMappingURL=sunabaco.css.map */