@charset "UTF-8";
html {
  scroll-padding-top: 80px;
}

/* 共通スタイル */
a {
  text-decoration: none;
  color: #484742;
}

ul {
  padding-left: 0;
  list-style: none;
}

/* レスポンシブ用 */
.sp_only {
  display: none;
}

.pc_only {
  display: block;
}

@media screen and (max-width: 768px) {
  .sp_only {
    display: block;
  }
  .pc_only {
    display: none;
  }
}
body {
  font-family: "Aboreto", "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #484742;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

.zenmaru {
  font-family: "Zen Maru Gothic", serif;
}

.section_title {
  font-size: 1.5rem;
  margin-bottom: 60px;
}
.section_title span {
  font-size: 0.75rem;
}

.section_wrapper {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
}

.nav_sp_only {
  position: relative;
}

.humbergur_box {
  width: 50px;
  height: 30px;
  position: relative;
  cursor: pointer;
  z-index: 1000;
}
.humbergur_box span {
  position: absolute;
  height: 1.5px;
  width: 100%;
  background: #000;
  transition: all 0.4s ease;
}
.humbergur_box span:first-child {
  top: 0;
}
.humbergur_box span:nth-child(2) {
  top: 50%;
}
.humbergur_box span:last-child {
  bottom: 0;
}

.active.humbergur_box span:first-child {
  transform: rotate(45deg);
  top: 16px;
}
.active.humbergur_box span:nth-child(2) {
  opacity: 0;
}
.active.humbergur_box span:last-child {
  transform: rotate(135deg);
  bottom: 13px;
}

.sp_nav_list {
  position: absolute;
  right: -400px;
  top: -26px;
  width: 300px;
  height: 100vh;
  padding: 50px;
  background: #f4ecc8;
  text-align: center;
  transition: right 1s ease;
}
.sp_nav_list li {
  border-bottom: #dcbc31 2px solid;
  padding: 15px 70px;
}
.sp_nav_list li:first-child {
  margin-top: 50px;
  border-top: #dcbc31 2px solid;
}
.sp_nav_list li a {
  font-weight: 700;
}
.sp_nav_list.active {
  right: -34px;
}

.header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 10000;
}
.header .header_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding-top: 5px;
  height: 80px;
}
.header .header_content .logo_link .title_name {
  font-size: 1.75rem;
}
@media screen and (max-width: 768px) {
  .header .header_content .logo_link .title_name {
    font-size: 1.25rem;
  }
}
.header .header_content .logo_link .sub_title {
  font-size: 0.75rem;
}
.header .header_content .nav_list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}
.header .header_content .nav_list .nav_item {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: #D0A900 1px solid;
  background-color: #fff;
  position: relative;
}
.header .header_content .nav_list .nav_item .nav_link {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 600;
}

.footer {
  background-color: #d3b63b;
  text-align: center;
  padding-bottom: 20px;
  border-radius: 93px 93px 0px 0px/53px 50px 0px 0px;
  position: relative;
}
.footer .go_to_top {
  position: absolute;
  top: -85px;
  right: 50px;
  width: 65px;
  height: 65px;
  background: #d3b63b;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
}
@media screen and (max-width: 768px) {
  .footer .go_to_top {
    top: -40px;
  }
}
.footer .footer_flex {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto 50px;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer_flex .footer_name {
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .footer .footer_flex .footer_name {
    font-size: 1rem;
    text-align: left;
  }
}
.footer .footer_flex nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.footer .footer_flex nav ul li {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .footer .footer_flex nav ul li {
    margin-right: 13px;
  }
}
.footer .footer_flex nav ul li a {
  display: block;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .footer .footer_flex nav ul li a {
    font-size: 0.75rem;
  }
}
.footer .footer_copy {
  font-size: 0.5rem;
}/*# sourceMappingURL=common.css.map */