@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-size: 14px;
  background: #fff;
  font-family: "Barlow", "Noto Sans JP", "sans-serif";
  line-height: 1.5;
  user-select: none;
  font-feature-settings: "palt";
  color: #141414;
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  body {
    font-size: 12px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}

a {
  color: #10BAB5;
  text-decoration: none;
  cursor: pointer;
}

/*=========================================================
Common class
=========================================================*/
.inner {
  width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1400px) {
  .inner {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .inner {
    width: 90%;
    margin: 0 auto;
  }
}

.inner1 {
  width: 1100px;
  margin: 0 auto;
}

.title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .title {
    font-size: 24px;
  }
}

.pagetop {
  cursor: pointer;
  position: fixed;
  z-index: 1000;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: 0.3s;
  color: #00A6C4;
  background: #fff;
  font-weight: bold;
  border: solid 1px #10BAB5;
  /*   デフォルトは非表示 */
  opacity: 0;
}
.pagetop:hover {
  box-shadow: 0 0 10px #00A6C4;
}

/*=========================================================
header class
=========================================================*/
.header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}

.header_tops {
  background-color: #10BAB5;
}

.header_top-text {
  font-weight: bold;
  color: #fff;
  font-size: 12px;
  width: 85%;
  margin: 0 auto;
  padding: 3px 0;
}
@media (min-width: 768px) and (max-width: 1400px) {
  .header_top-text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .header_top-text {
    text-align: center;
    font-size: 9px;
  }
}

.header_wrappers {
  display: flex;
  height: 50px;
  line-height: 50px;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .header_wrappers {
    margin-top: 0;
  }
}

.header_logo {
  margin-top: 4px;
}
.header_logo img {
  width: 180px;
}
@media (max-width: 767px) {
  .header_logo img {
    width: 150px;
  }
}

.header_wrapper-rights {
  display: flex;
  margin-left: auto;
}
@media (min-width: 768px) and (max-width: 1400px) {
  .header_wrapper-rights {
    margin-right: 50px;
  }
}
@media (max-width: 767px) {
  .header_wrapper-rights {
    margin-right: 50px;
  }
}

.header_rights-links {
  display: flex;
  margin-right: 30px;
}
@media (min-width: 768px) and (max-width: 1400px) {
  .header_rights-links {
    display: none;
  }
}
@media (max-width: 767px) {
  .header_rights-links {
    display: none;
  }
}

.header_question a {
  color: black;
  font-weight: bold;
}

.header_bar {
  color: black;
  font-weight: bold;
  margin: 0 5px;
}

.header_businessperson a {
  color: black;
  font-weight: bold;
}

.header_contact {
  margin-right: 10px;
}
.header_contact a {
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  background-color: #10BAB5;
  border-radius: 100px;
}
.header_contact img {
  width: 20px;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .header_contact {
    display: none;
  }
}

.header_instagrams {
  margin-right: 20px;
}
.header_instagrams img {
  width: 130px;
}
@media (max-width: 767px) {
  .header_instagrams img {
    width: 110px;
    margin-top: 3px;
  }
}

.header_lines {
  height: 50px;
  line-height: 50px;
  margin-top: 6px;
}
.header_lines a {
  display: inline-block;
}
.header_lines img {
  width: 40px;
  line-height: 50px;
}
@media (max-width: 767px) {
  .header_lines img {
    width: 35px;
    margin-top: 1.5px;
  }
}

.header_navs {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
  border-top: solid 1px rgba(0, 0, 0, 0.2);
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  height: 30px;
  line-height: 30px;
  margin-top: 10px;
  padding: 10px 0 40px 0;
  background-color: #fff;
}
@media (min-width: 768px) and (max-width: 1400px) {
  .header_navs {
    display: none;
  }
}
@media (max-width: 767px) {
  .header_navs {
    display: none;
  }
}

.header_items {
  width: 70%;
  margin: 0 auto;
  height: 30px;
  line-height: 30px;
  display: flex;
  justify-content: space-around;
}

.header_nav {
  width: 100%;
  height: 30px;
  text-align: center;
}
.header_nav a {
  display: inline-block;
  color: black;
  font-weight: bold;
  font-size: 13px;
  width: 100%;
  height: 30px;
}

/*============================================================
drawer-icon/drawer-content
============================================================*/
.drawer-icon {
  display: none;
  position: fixed;
  top: 31px;
  right: 2%;
  z-index: 2000;
  width: 40px;
  height: 50px;
  transition: transform 0.5s ease 0s;
}
.drawer-icon.is-active .drawer-icon-bar1 {
  transition: transform 0.5s ease 0s;
  transform: rotate(-45deg);
  top: 35px;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  transition: transform 0.5s ease 0s;
  transform: rotate(45deg);
  top: 35px;
}
@media (min-width: 768px) and (max-width: 1400px) {
  .drawer-icon {
    display: block;
    top: 32px;
  }
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
    top: 24px;
  }
}

.drawer-icon-bars {
  width: 30px;
  height: 20px;
  display: block;
  position: relative;
}

.drawer-icon-bar {
  position: absolute;
  width: inherit;
  font-weight: bold;
  font-size: 11px;
}

.drawer-icon-bar1,
.drawer-icon-bar2 {
  position: absolute;
  width: inherit;
  height: 0.7px;
  background: black;
  top: 0;
  left: 0;
  transition: transform 0.5s ease 0s;
}

.drawer-icon-bar1 {
  top: 23px;
}

.drawer-icon-bar2 {
  top: 35px;
}

.drawer-content {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: 1s;
}
.drawer-content.is-hidden {
  transition: 1s;
  opacity: 1;
  visibility: visible;
}

.drawer-title {
  font-family: "Brodo Regular";
  font-size: 46px;
  font-weight: bold;
  padding: 20px 0;
}
@media (min-width: 768px) and (max-width: 1400px) {
  .drawer-title {
    font-size: 38px;
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .drawer-title {
    font-size: 28px;
    padding-top: 40px;
  }
}

.drawer-letter1 {
  animation-delay: 3s;
}

.drawer-letter2 {
  animation-delay: 3.3s;
}

.drawer-letter3 {
  animation-delay: 3.6s;
}

.drawer-letter4 {
  animation-delay: 3.9s;
}

.drawer-letter5 {
  margin-right: 11px;
  animation-delay: 4.2s;
}

.drawer-letter6 {
  animation-delay: 4.5s;
}

.drawer-letter7 {
  animation-delay: 4.8s;
}

.drawer-letter8 {
  animation-delay: 5.1s;
}

.drawer-letter9 {
  animation-delay: 5.4s;
}

.drawer-letter10 {
  animation-delay: 5.7s;
}

.drawer-letter11 {
  animation-delay: 6s;
}

.drawer-letter12 {
  animation-delay: 6.3s;
}

.drawer-content-items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .drawer-content-items {
    display: block;
  }
}

.drawer-content-item {
  margin-top: 40px;
  text-align: center;
}
.drawer-content-item a {
  font-size: 18px;
  display: inline-block;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 1400px) {
  .drawer-content-item a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .drawer-content-item:not(:last-child) {
    margin-bottom: 40px;
    text-align: center;
  }
  .drawer-content-item a {
    font-size: 14px;
  }
}

.list-hover {
  position: relative;
}
.list-hover::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.5px;
  background: #000000;
  bottom: 12.5px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.8s;
  opacity: 0.5;
}
.list-hover:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

#top {
  animation-delay: 1.5s;
}

#about {
  animation-delay: 1.9s;
}

#works {
  animation-delay: 2.2s;
}

#service {
  animation-delay: 2.6s;
}

#contact {
  animation-delay: 3s;
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 0.5;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
/*=========================================================
main class
=========================================================*/
.main {
  width: 90%;
  margin: 0 auto;
  padding: 180px 0 50px 0;
}
@media (min-width: 768px) and (max-width: 1400px) {
  .main {
    width: 90%;
    padding-top: 110px;
  }
}
@media (max-width: 767px) {
  .main {
    width: 95%;
    padding: 90px 0 30px 0;
  }
}

.main_inner {
  display: flex;
}
@media (max-width: 767px) {
  .main_inner {
    display: block;
  }
}

@media (max-width: 767px) {
  .main_img:nth-child(2n) {
    margin-top: 40px;
  }
}

/*=========================================================
highprice class
=========================================================*/
.highprice {
  background-color: #F7F5F0;
  padding: 30px 0;
}

.highprice_title {
  text-align: center;
}
.highprice_title span {
  color: red;
  font-weight: bold;
}

/*=========================================================
beginners class
=========================================================*/
.beginners {
  background-color: #10BAB5;
  padding: 25px 0;
}

.beginners_container {
  background-color: #fff;
  width: 650px;
  margin: 0 auto;
  padding: 20px;
  border: solid 1px black;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .beginners_container {
    width: 90%;
    padding: 10px;
  }
}

.beginners_title {
  color: #10BAB5;
}
.beginners_title img {
  width: 35px;
  margin-right: 10px;
}

.beginners_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .beginners_wrapper {
    display: block;
  }
}

.beginners_lefts {
  width: 30%;
}
.beginners_lefts img {
  display: block;
}
@media (max-width: 767px) {
  .beginners_lefts {
    width: 50%;
    margin: 0 auto;
  }
}

.beginners_rights {
  width: 65%;
}
@media (max-width: 767px) {
  .beginners_rights {
    width: 90%;
    margin: 0 auto;
  }
}

.beginners_text {
  font-size: 13px;
}
.beginners_text span {
  color: #10BAB5;
  font-weight: bold;
  letter-spacing: 2px;
}
.beginners_text:nth-child(2) {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .beginners_text {
    font-size: 12px;
    margin-top: 20px;
  }
}

/*=========================================================
troubles class
=========================================================*/
.troubles {
  padding: 50px 0;
}

.trouble_items {
  display: flex;
  width: 760px;
  margin: 0 auto;
  justify-content: space-between;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .trouble_items {
    width: 90%;
    display: block;
  }
}

.trouble_item {
  width: 230px;
}
@media (max-width: 767px) {
  .trouble_item {
    width: 80%;
    margin: 35px auto 0;
  }
}

.trouble_item-text {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .trouble_item-text {
    font-size: 20px;
  }
}

.trouble_item-wrapper {
  background-color: #BEE5F6;
  border-radius: 20px;
  padding: 30px 20px 10px 20px;
  height: 340px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .trouble_item-wrapper {
    height: 250px;
    padding: 20px 20px 10px 20px;
  }
}

.trouble_item-list-icon {
  text-align: center;
}
.trouble_item-list-icon img {
  width: 130px;
}
@media (max-width: 767px) {
  .trouble_item-list-icon img {
    width: 110px;
  }
}

.trouble_item-list-title {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .trouble_item-list-title {
    font-size: 15px;
  }
}

.trouble_item-list-text {
  font-weight: bold;
  margin-top: 10px;
}

/*=========================================================
solutions class
=========================================================*/
.solutions {
  background-color: #F7F5F0;
  padding: 50px 0;
}
@media (max-width: 767px) {
  .solutions {
    padding: 30px 0 20px 0;
  }
}

.solutions_titles {
  text-align: center;
}

.solutions_title {
  color: #10BAB5;
  position: relative;
  display: inline-block;
  padding: 0 30px;
  margin: 0 auto;
  align-items: center;
}
.solutions_title::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #10BAB5;
  border-radius: 3px;
  transform: rotate(25deg);
}
.solutions_title::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 1px;
  height: 100%;
  background: #10BAB5;
  border-radius: 3px;
  transform: rotate(-25deg);
}

.solutions_items {
  display: flex;
  width: 750px;
  margin: 30px auto 0;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .solutions_items {
    display: block;
    width: 90%;
  }
}

.solutions_item {
  width: 230px;
  background-color: #10BAB5;
  border-radius: 10px;
  padding: 20px 10px 20px 10px;
}
@media (max-width: 767px) {
  .solutions_item {
    width: 80%;
    margin: 30px auto;
  }
}

.solutions_item-title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .solutions_item-title {
    font-size: 22px;
  }
}

.solutions_img {
  text-align: center;
  height: 100px;
  line-height: 100px;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .solutions_img {
    margin-top: 10px;
    margin-bottom: 0;
  }
}

.solutions_item-text {
  font-weight: bold;
  font-size: 13px;
}
.solutions_item-text:nth-child(2n) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .solutions_item-text:nth-child(2n) {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .solutions_item-text {
    font-size: 12px;
  }
}

.solutions_img-size1 img {
  width: 90px;
}
@media (max-width: 767px) {
  .solutions_img-size1 img {
    width: 70px;
  }
}

.solutions_img-size2 img {
  width: 150px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .solutions_img-size2 img {
    width: 130px;
  }
}

.solutions_img-size3 img {
  width: 90px;
}
@media (max-width: 767px) {
  .solutions_img-size3 img {
    width: 70px;
    margin-top: 10px;
  }
}

/*=========================================================
flows class
=========================================================*/
.flows {
  padding: 50px 0;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .flows {
    padding: 20px 0;
    margin-bottom: 20px;
  }
}

.flows_title {
  height: 55px;
  line-height: 55px;
}
.flows_title img {
  width: 55px;
  vertical-align: middle;
  margin-right: 10px;
}

.flows_subtitle {
  text-align: center;
  margin: 40px 0 20px 0;
  color: #10BAB5;
  font-weight: bold;
}

.flows_items {
  width: 750px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .flows_items {
    width: 90%;
  }
}

.flows_item {
  background-color: #F7F5F0;
  display: flex;
  border-radius: 10px;
  padding: 30px 20px;
}
@media (max-width: 767px) {
  .flows_item {
    display: block;
    padding: 15px 20px;
  }
}

.flows_item-headings {
  width: 20%;
}
@media (max-width: 767px) {
  .flows_item-headings {
    display: flex;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
  }
}

.flows_item-step {
  font-size: 10px;
  color: #10BAB5;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .flows_item-step {
    height: 45px;
    line-height: 45px;
  }
}

.flows_item-text {
  font-weight: bold;
  text-align: center;
  margin: 5px 0;
}
@media (max-width: 767px) {
  .flows_item-text {
    height: 45px;
    line-height: 45px;
    margin: 0px 20px 0 10px;
    font-size: 22px;
  }
}

.flows_item-item-img {
  text-align: center;
}
.flows_item-item-img img {
  width: 40px;
}
.flows_item-explanations {
  position: relative;
  width: 70%;
  margin: 0 auto;
}
.flows_item-explanations::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #303030;
  position: absolute;
  top: -2px;
  left: -25px;
}
@media (max-width: 767px) {
  .flows_item-explanations {
    width: 85%;
  }
}

.flows_item-explanation {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .flows_item-explanation {
    margin: 10px 0;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .flows_item-explanation-text {
    font-size: 12px;
  }
}

.flows_item-separator {
  text-align: center;
  margin: 20px 0;
}
.flows_item-separator img {
  width: 25px;
}

/*=========================================================
area class
=========================================================*/
.areas {
  padding: 50px 0;
  background-color: #F7F5F0;
}
@media (max-width: 767px) {
  .areas {
    padding: 20px 0 30px 0;
  }
}

.areas_title {
  height: 55px;
  line-height: 55px;
  color: #10BAB5;
}
.areas_title img {
  width: 55px;
  vertical-align: middle;
  margin-right: 10px;
}

.areas_subtitles {
  margin: 40px 0 20px 0;
}

.areas_subtitle {
  text-align: center;
  font-weight: bold;
}

.areas_wrapper {
  display: flex;
  width: 750px;
  margin: 0 auto;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .areas_wrapper {
    width: 90%;
    display: block;
  }
}

.areas_maps {
  width: 43%;
}
@media (max-width: 767px) {
  .areas_maps {
    width: 90%;
    margin: 0 auto;
  }
}

.areas_rights {
  background-color: #fff;
  width: 54%;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .areas_rights {
    width: 90%;
    margin: 20px auto 0;
  }
}

.areas_area {
  padding: 20px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  width: 90%;
  margin: 0 auto;
}

.areas_place-prefecture {
  font-size: 15px;
  font-weight: bold;
}
.areas_place-prefecture img {
  width: 30px;
  vertical-align: middle;
  margin-right: 10px;
}

.areas_place-municipality {
  margin-top: 5px;
  margin-left: 30px;
}

.areas_note {
  text-align: center;
  font-weight: bold;
  margin: 40px 0 0 0;
}

/*=========================================================
others class
=========================================================*/
.others {
  padding: 50px 0;
  background-color: #10BAB5;
}
@media (max-width: 767px) {
  .others {
    padding: 30px 0 20px 0;
  }
}

.others_title {
  height: 55px;
  line-height: 55px;
  color: #fff;
}
.others_title img {
  width: 55px;
  vertical-align: middle;
  margin-right: 10px;
}

.others_subtitles {
  margin: 40px 0 20px 0;
}
@media (max-width: 767px) {
  .others_subtitles {
    margin: 20px 0 20px 0;
  }
}

.others_subtitle {
  text-align: center;
  font-weight: bold;
  color: #fff;
}
.others_subtitle:nth-child(2) {
  margin-top: 10px;
}

.others_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 750px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .others_items {
    width: 90%;
  }
}

.others_item {
  width: 48%;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
}
.others_item:nth-child(3n) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .others_item:nth-child(3n) {
    margin-top: 0;
  }
}
.others_item:nth-child(4n) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .others_item:nth-child(4n) {
    margin-top: 0;
  }
}
.others_item:nth-child(5n) {
  width: 100%;
  margin: 20px auto;
}
@media (max-width: 767px) {
  .others_item:nth-child(5n) {
    margin-top: 0;
    width: 90%;
  }
}
@media (max-width: 767px) {
  .others_item {
    width: 90%;
    margin: 0 auto 20px;
  }
}

.others_item-headings {
  width: 25%;
}

.others_item-heading-text {
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  color: #10BAB5;
}
@media (max-width: 767px) {
  .others_item-heading-text {
    font-size: 12px;
  }
}

.service5_heading-text {
  font-size: 20px;
}
@media (max-width: 767px) {
  .service5_heading-text {
    font-size: 12px;
  }
}

.others_item-heading-img {
  text-align: center;
  margin-top: 10px;
}
.others_item-heading-img img {
  width: 45px;
}

.others_item-explanations {
  width: 70%;
}

.others_item-explanation {
  font-weight: bold;
}
@media (max-width: 767px) {
  .others_item-explanation {
    font-size: 16px;
  }
}

.service5_explanation {
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .service5_explanation {
    font-size: 16px;
  }
}

.others_item-explanation-text {
  font-size: 13px;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .others_item-explanation-text {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .service5_headings {
    margin-top: 25px;
  }
}

/*=========================================================
topics class
=========================================================*/
.topics {
  padding: 50px 0;
}
@media (max-width: 767px) {
  .topics {
    padding: 30px 0 40px 0;
  }
}

.topics_title {
  height: 55px;
  line-height: 55px;
  color: #10BAB5;
}
.topics_title img {
  width: 55px;
  vertical-align: middle;
  margin-right: 10px;
}

.topics_subtitle {
  text-align: center;
  font-weight: bold;
  color: black;
  margin-top: 20px;
}

.topics_items {
  display: flex;
  width: 750px;
  justify-content: space-between;
  margin: 40px auto 0;
}
@media (max-width: 767px) {
  .topics_items {
    display: block;
    width: 90%;
    margin-top: 20px;
  }
}

.topics_item {
  width: 30%;
  border: solid 1px rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .topics_item {
    width: 80%;
    margin: 0 auto 30px;
  }
}

.topics_item-thumbnail {
  width: 100%;
  height: 120px;
  background: rgb(68, 68, 68);
  overflow: hidden;
}
.topics_item-texts {
  margin-top: 10px;
}

.topics_item-tags {
  display: flex;
}

.topics_item-date {
  font-weight: bold;
  color: black;
  font-size: 11px;
  margin-top: 2px;
}

.topics_item-tag {
  background-color: #FF8F8E;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 10px;
  color: #fff;
  margin-left: auto;
  font-weight: bold;
}

.topics_item-title {
  font-size: 11px;
  font-weight: bold;
  margin-top: 5px;
  color: black;
}

.topics_btns {
  text-align: center;
  margin-top: 50px;
}
.topics_btns a {
  padding: 10px 30px;
  background: #FF8F8E;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
}

/*=========================================================
achievements class
=========================================================*/
.achievements {
  padding: 50px 0;
  background-color: #F7F5F0;
}
@media (max-width: 767px) {
  .achievements {
    padding: 20px 0 40px 0;
  }
}

.achievements_title {
  height: 55px;
  line-height: 55px;
  color: black;
}
.achievements_title img {
  width: 55px;
  vertical-align: middle;
  margin-right: 10px;
}

.achievements_subtitle {
  text-align: center;
  font-weight: bold;
  color: black;
  margin-top: 20px;
}

.achievements_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 750px;
  margin: 20px auto 0;
}
@media (max-width: 767px) {
  .achievements_items {
    width: 95%;
  }
}

.achievements_item:nth-child(4n) {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .achievements_item:nth-child(4n) {
    margin-top: 0;
  }
}
.achievements_item:nth-child(5n) {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .achievements_item:nth-child(5n) {
    margin-top: 0;
  }
}
.achievements_item:nth-child(6n) {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .achievements_item:nth-child(6n) {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .achievements_item {
    margin: 0 auto 20px;
  }
}

.achievements_item-img {
  width: 210px;
  height: 210px;
  border: solid 1px black;
  background-color: #fff;
}
@media (max-width: 767px) {
  .achievements_item-img {
    margin: 0 auto;
    width: 170px;
    height: 170px;
  }
}

.achievements_item-tag {
  margin-top: 5px;
  color: black;
  font-size: 12px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .achievements_item-tag {
    width: 150px;
    margin: 10px auto;
  }
}

.achievements_btns {
  text-align: center;
  margin-top: 50px;
}
.achievements_btns a {
  padding: 10px 30px;
  background: #FF8F8E;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 767px) {
  .achievements_btns {
    margin-top: 0;
  }
}

/*=========================================================
guidances class
=========================================================*/
.guidances {
  padding: 50px 0;
}
@media (max-width: 767px) {
  .guidances {
    padding: 30px 0 40px 0;
  }
}

.guidances_container {
  width: 750px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .guidances_container {
    width: 100%;
  }
}

.guidances_btns {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .guidances_btns {
    display: block;
  }
}

.guidances_btn {
  background-color: #10BAB5;
  border-radius: 10px;
  text-align: center;
}
.guidances_btn a {
  width: 350px;
  display: inline-block;
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .guidances_btn a {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .guidances_btn {
    width: 320px;
    margin: 0 auto 20px;
  }
}

.guidances_text {
  color: #fff;
  font-weight: bold;
  font-size: 13px;
}

.guidances_center-texts {
  display: flex;
  justify-content: center;
}

.guidances_center-text {
  text-align: center;
  color: #FFFA8A;
  font-size: 22px;
  font-weight: bold;
  margin: 5px 0;
}
.guidances_center-text img {
  width: 20px;
  margin-right: 10px;
}

.guidances_hours {
  color: #fff;
  font-weight: bold;
}

/*=========================================================
footer class
=========================================================*/
.footer {
  background-color: #F7F5F0;
  padding: 50px 0 30px 0;
}
@media (max-width: 767px) {
  .footer {
    padding: 30px 0 20px 0;
  }
}

.footer_text {
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .footer_text {
    font-size: 10px;
  }
}

.footer_logo {
  color: #10BAB5;
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  margin: 10px 0 20px 0;
}
.footer_navs {
  display: flex;
  width: 650px;
  margin: 0 auto;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer_navs {
    width: 90%;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .footer_nav-list {
    width: 33%;
    margin: 0 auto;
    text-align: center;
  }
}

.footer-nav-item {
  margin-top: 5px;
}
.footer-nav-item a {
  font-size: 11px;
  font-weight: bold;
  color: black;
}

.footer_kobutu {
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  margin-top: 50px;
}
.footer_copyrights {
  font-size: 10px;
  margin-top: 40px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .footer_copyrights {
    margin-top: 40px;
  }
}

.footer_contacts {
  padding: 20px 0 20px 0;
}

.footer_contact-text {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

.footer_contact-tels {
  display: flex;
  justify-content: center;
  margin: 5px;
}

.footer_contact-tel-img img {
  width: 20px;
  margin-right: 10px;
}

.footer_contact-tel-phone {
  font-size: 15px;
  font-weight: bold;
}

.footer_contact-hours {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

.footer-nav-item-first a {
  color: black;
  font-size: 13px;
  font-weight: bold;
}

.footer-nav-item-btn {
  text-align: center;
}
.footer-nav-item-btn a {
  display: inline-block;
  width: 100%;
  padding: 5px 35px;
  background-color: #FF8F8E;
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
}
.footer-nav-item-btn:nth-child(2n) {
  margin-top: 15px;
}

@media (max-width: 767px) {
  .include-list {
    width: 100%;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .include {
    width: 280px;
    margin: 0 auto;
  }
}

/*=========================================================
top class
=========================================================*/
/*=========================================================
instagrams.html
=========================================================*/
/*=========================================================
instagrams class
=========================================================*/
.instagrams {
  padding: 200px 0 0px 0;
  background-color: #F7F5F0;
  background-image: url(../img/instagrams/instabackground4.jpg);
  background-size: cover;
}
@media (max-width: 767px) {
  .instagrams {
    padding: 100px 0 0 0;
  }
}

.instagrams_title {
  height: 55px;
  line-height: 55px;
  color: #fff;
}

.instagrams_subtitle {
  text-align: center;
  font-weight: bold;
  color: #fff;
  margin-top: 20px;
}

.instagrams_items {
  width: 750px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 30px auto 0;
}
@media (max-width: 767px) {
  .instagrams_items {
    width: 95%;
  }
}

.instagrams_item {
  width: 210px;
  height: 210px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .instagrams_item {
    width: 45%;
    margin-bottom: 50px;
  }
}

.instagrams_item-img {
  width: 210px;
  height: 210px;
  overflow: hidden;
  background-color: black;
  position: relative;
}
.instagrams_item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 1s;
  filter: brightness(85%);
}
.instagrams_item-img img:hover {
  transition: 1s;
  filter: none;
}
@media (max-width: 767px) {
  .instagrams_item-img {
    width: 190px;
    height: 190px;
    margin: 0 auto;
  }
}

.instagrams_item-tag {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  margin-top: 10px;
}

/*=========================================================
works.html
=========================================================*/
/*=========================================================
works class
=========================================================*/
.works {
  padding: 180px 0 50px 0;
}
@media (max-width: 767px) {
  .works {
    padding: 100px 0 0px 0;
  }
}

.works_title {
  height: 55px;
  line-height: 55px;
  color: #10BAB5;
}
.works_title img {
  width: 55px;
  vertical-align: middle;
  margin-right: 10px;
}

.works_subtitle {
  text-align: center;
  font-weight: bold;
  color: black;
  margin-top: 20px;
}

.works_items {
  display: flex;
  flex-wrap: wrap;
  width: 750px;
  justify-content: space-between;
  margin: 40px auto 0;
}
@media (max-width: 767px) {
  .works_items {
    width: 95%;
    display: block;
  }
}

.works_item {
  width: 30%;
  border: solid 1px rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .works_item {
    width: 240px;
    margin: 0 auto 50px;
  }
}

.works_item-thumbnail {
  width: 100%;
  height: 120px;
  background: rgb(68, 68, 68);
  overflow: hidden;
}
.works_item-texts {
  margin-top: 10px;
}

.works_item-tags {
  display: flex;
}

.works_item-date {
  font-weight: bold;
  color: black;
  font-size: 11px;
  margin-top: 2px;
}

.works_item-tag {
  background-color: #FF8F8E;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 10px;
  color: #fff;
  margin-left: auto;
  font-weight: bold;
}

.works_item-title {
  font-size: 11px;
  font-weight: bold;
  margin-top: 5px;
  color: black;
}

/*=========================================================
prices.html
=========================================================*/
/*=========================================================
prices class
=========================================================*/
.prices {
  padding: 220px 0 100px 0;
}
@media (max-width: 767px) {
  .prices {
    padding: 100px 0 50px 0;
  }
}

.prices_btns {
  text-align: center;
  margin-top: 100px;
}
.prices_btns a {
  color: #fff;
  padding: 20px 40px;
  background-color: #10BAB5;
  font-weight: bold;
  font-size: 16px;
  border-radius: 100px;
}
@media (max-width: 767px) {
  .prices_btns {
    margin-top: 50px;
  }
}

/*=========================================================
abouts.html
=========================================================*/
/*=========================================================
abouts class
=========================================================*/
.abouts {
  padding: 180px 0 50px 0;
}
@media (max-width: 767px) {
  .abouts {
    padding: 100px 0 30px 0;
  }
}

.abouts_title {
  height: 55px;
  line-height: 55px;
  color: #10BAB5;
}
.abouts_title img {
  width: 55px;
  vertical-align: middle;
  margin-right: 10px;
}

.abouts_subtitle {
  text-align: center;
  font-weight: bold;
  color: black;
  margin-top: 10px;
}

.abouts_wrapper {
  width: 650px;
  margin: 50px auto 0;
}
@media (max-width: 767px) {
  .abouts_wrapper {
    width: 90%;
  }
}

.abouts_tr {
  display: flex;
  margin: 30px 0;
  border-bottom: solid 1px rgba(0, 0, 0, 0.5);
  padding-bottom: 20px;
  font-size: 15px;
}
@media (max-width: 767px) {
  .abouts_tr {
    font-size: 13px;
    margin: 25px 0;
  }
}

.abouts_th {
  width: 30%;
  font-weight: bold;
}
@media (max-width: 767px) {
  .abouts_th {
    width: 25%;
  }
}

.abouts_td {
  width: 70%;
}
@media (max-width: 767px) {
  .abouts_td {
    width: 75%;
  }
}

.abouts_maps {
  text-align: center;
}

@media (max-width: 767px) {
  .mapframe {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */