@charset "UTF-8";
body {
  font-family: "Noto Sans JP", serif;
  overflow-x: hidden;
  /*font-family: "Shippori Mincho", serif;*/
}
body a:hover {
  opacity: 0.7;
}

header {
  position: fixed;
  margin: auto;
  width: 100%;
  z-index: 999;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background: #ffffff;
  height: 80px;
}
@media screen and (max-width: 1023px) {
  .header-wrapper {
    height: 60px;
  }
}
.header-wrapper img {
  width: 140px;
  height: 56px;
  margin: 12px 0px 12px 83px;
  /*1090pxの際にロゴを移動したので元に戻す*/
}
@media screen and (max-width: 1090px) {
  .header-wrapper img {
    margin-left: 25px;
  }
}
@media screen and (max-width: 1023px) {
  .header-wrapper img {
    margin: 0 0 0 83px;
  }
}
@media screen and (max-width: 500px) {
  .header-wrapper img {
    margin-left: 16px;
  }
}
.header-wrapper .header-nav {
  /*メニュー項目を非表示にし、ハンバーガーメニューに切り替え*/
}
@media screen and (max-width: 1023px) {
  .header-wrapper .header-nav {
    display: none;
  }
}
.header-wrapper .header-nav ul {
  display: flex;
  line-height: 50px;
  width: 100%;
  gap: 24px;
  font-size: 16px;
  font-weight: 500;
  color: #080604;
  margin: 15px 32px 15px 0px;
}
.header-wrapper .header-nav ul a {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1090px) {
  .header-wrapper .header-nav ul {
    margin-right: 25px;
  }
}
.header-wrapper .header-nav_btn {
  background-color: #080604;
  width: 140px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .header-wrapper .header-nav_btn {
    width: 200px;
  }
}
.header-wrapper .header-nav_btn a {
  font-size: 14px;
  color: #ffffff;
  font-weight: bold;
}

/*以下ハンバーガーメニュー*/
/*ハンバーガーボタンのデザイン*/
.humburger-button {
  position: relative;
  width: 3rem;
  height: 3rem;
  border: none;
  cursor: pointer;
  z-index: 1000;
  display: none;
  margin: 7px 15px 0 0;
}
@media screen and (max-width: 1023px) {
  .humburger-button {
    display: block;
  }
}

/*３本線のボタンに関する記述*/
.humburger-button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2px;
  background-color: #080604;
  transform: translateX(-50%);
}

.humburger-button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.7rem));
  transition: transform 0.6s ease;
}

.humburger-button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.6s ease;
}

.humburger-button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.7rem));
  transition: transform 0.6s ease;
}

.humburger-button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.humburger-button.active > span:nth-child(2) {
  opacity: 0;
}

.humburger-button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

/*メニューのデザイン*/
.nav-sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.6s;
  opacity: 0;
  visibility: hidden;
  display: none;
  z-index: 998;
}
@media screen and (max-width: 1023px) {
  .nav-sp {
    display: block;
  }
}

.active {
  opacity: 1;
  visibility: visible;
}

.nav-sp_inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgb(215, 210, 203);
  padding: 6rem 1.5rem 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  transform: translateX(100%);
  transition: transform 0.6s ease;
}

.nav-sp_menu {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.nav-sp_link {
  display: block;
  color: #000;
  text-decoration: none;
  padding: 1.5rem 1.5rem;
  border-bottom: solid 1px white;
}

@media screen and (max-width: 1023px) {
  .header-nav_btn {
    color: #ffffff;
    margin-top: 1.5rem;
    line-height: 40px;
  }
}

.nav-sp.active .nav-sp_inner {
  transform: translateX(0);
}

body.active {
  height: 100%;
  overflow: hidden;
}

.mv {
  margin: 0 auto;
  height: auto;
  max-height: 90vh;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .mv {
    padding-top: 40px;
  }
}
@media screen and (max-width: 500px) {
  .mv {
    padding-top: 70px;
  }
}
.mv img {
  width: 84.72%;
  height: auto;
  max-height: 90vh;
  display: block;
  margin-left: auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv img {
    width: 100%;
  }
}
.mv h1 {
  font-size: 40px;
  font-family: "Shippori Mincho", serif;
  line-height: 88px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #080604;
  padding-left: 80px;
  position: absolute;
  top: 48%;
}
@media screen and (max-width: 1090px) {
  .mv h1 {
    padding-left: 25px;
  }
}
@media screen and (max-width: 1023px) {
  .mv h1 {
    font-size: 35px;
    padding-left: 45px;
  }
}
@media screen and (max-width: 767px) {
  .mv h1 {
    padding-left: 16px;
    font-size: 28px;
  }
}
@media screen and (max-width: 500px) {
  .mv h1 {
    font-size: 22px;
  }
}

/*共通メインタイトル*/
.title-main {
  margin: 0 auto 40px auto;
  text-align: center;
  color: #080604;
  padding-top: 100px;
}
.title-main span {
  font-size: 40px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  line-height: 36px;
}
@media screen and (max-width: 1024px) {
  .title-main span {
    font-size: 35px;
  }
}
.title-main h2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 36px;
  padding: 8px 0px;
  letter-spacing: 0.08em;
  position: relative;
}
.title-main h2::before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #080604;
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
}

/*お知らせ*/
.news {
  width: min(100% - 32px, 1000px);
  max-width: 1000px;
  margin: 0px auto;
  text-align: center;
  padding-bottom: 100px;
}
.news-block {
  display: flex;
  align-items: center;
  border-top: 1px solid #d7d2cd;
  padding: 12px 18px;
  /*テキストと線の間の余白*/
}
@media screen and (max-width: 1024px) {
  .news-block {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .news-block {
    display: block;
    padding-left: 18px;
    padding-right: 18px;
  }
}
.news-block:last-child {
  border-bottom: 1px solid #d7d2cd;
}
.news-block_inr {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .news-block_inr {
    min-width: 35%;
  }
}
.news-data {
  margin-right: 27px;
}
.news-label {
  padding: 4px 10px;
  background-color: #f0eade;
  font-weight: 500;
  font-size: 12px;
  font-weight: 500;
}
.news-title {
  width: 66.91%;
  /**/
  margin-left: auto;
  text-align: left;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .news-title {
    margin-top: 12px;
    margin-left: 0;
    width: 100%;
  }
}

.menu-contents {
  width: 100%;
  max-width: 1000px;
  margin: 0px auto 100px auto;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 60px 34px;
  flex-wrap: wrap;
}
@media screen and (max-width: 998px) {
  .menu-contents_item {
    text-align: center;
  }
}
.menu-contents_item img {
  max-width: 310px;
}
.menu-contents_item h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  margin-top: 31px;
}

.storeinfo {
  background-image: url("../../images/inquiry_background.jpg");
  height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.storeinfo-text {
  width: 50%;
  /**/
  margin: 0 auto;
  text-align: left;
  font-size: 24px;
  color: #ffffff;
  max-width: 500px;
}
@media screen and (max-width: 1439px) {
  .storeinfo-text {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .storeinfo-text {
    font-size: 20px;
    max-width: 350px;
  }
}
.storeinfo-text_inr {
  display: flex;
  justify-content: center;
  padding: 0 36px;
}
.storeinfo-text_inr h3 {
  font-weight: 700;
  line-height: 44px;
  width: 360px;
  text-align: center;
  display: inline-block;
  padding: 0 12px;
  margin-bottom: 10px;
}
.storeinfo-text_inr--iconleft {
  transform: rotate(-45deg);
}
.storeinfo-text_inr--iconright {
  transform: rotate(45deg);
}
.storeinfo-text_btn {
  width: 100%;
  height: 71px;
  background: #ffffff;
  color: #080604;
  text-align: center;
  font-weight: 500;
  border-radius: 4px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.storeinfo-text_btn img {
  width: 33.3px;
  height: 30px;
}
.storeinfo-access {
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  margin-top: 20px;
  padding: 0 41px;
}
.storeinfo-access_address, .storeinfo-access_buisinesshours, .storeinfo-access_regularholiday {
  margin: 1.5px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .storeinfo-access {
    padding: 0;
    font-size: 19px;
  }
}
.storeinfo-access_address {
  align-items: end;
  gap: 91px;
}
.storeinfo-access_address--text {
  line-height: 26px;
}
.storeinfo-access_address--text span {
  font-size: 16px;
  padding-bottom: 2px;
  display: block;
}
.storeinfo-access_buisinesshours {
  gap: 45px;
  line-height: 38px;
}
.storeinfo-access_regularholiday {
  gap: 68px;
  line-height: 36px;
}

.about {
  background-color: #f0eade;
  padding-bottom: 100px;
}
.about-container {
  width: 100%;
  max-width: 1000px;
  margin: 0px auto;
}
.about-container .title-main {
  margin-top: 0;
  padding-top: 100px;
}
.about-contents {
  display: flex;
  gap: 9px;
}
@media screen and (max-width: 1023px) {
  .about-contents {
    flex-direction: column;
    margin: 0 auto;
    gap: 3em;
  }
}
.about-contents img {
  max-width: 500px;
}
@media screen and (max-width: 1023px) {
  .about-contents img {
    width: 50%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .about-contents img {
    width: 60%;
  }
}
@media screen and (max-width: 500px) {
  .about-contents img {
    width: 80%;
  }
}
.about-contents_wrapper {
  flex-direction: column;
}
.about-contents_wrapper p {
  line-height: 36px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0px 0px 30px;
  margin: 1em 0px;
}
@media screen and (max-width: 1023px) {
  .about-contents_wrapper p {
    margin: 0 auto;
    padding: 5px 0;
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .about-contents_wrapper p {
    width: min(100% - 32px, 767px);
  }
}
@media screen and (max-width: 500px) {
  .about-contents_wrapper p {
    padding: 10px 0;
  }
}

.price {
  background-image: url("../../images/price-background.png");
  width: 100%;
  background-repeat: repeat;
}
.price-container {
  width: min(100% - 32px, 1000px);
  max-width: 1000px;
  margin: 0px auto;
  padding-bottom: 100px;
}
.price-container .title-main {
  margin-top: 0;
  padding-top: 100px;
}
.price-contents {
  width: 100%;
  max-width: 1000px;
  display: flex;
  gap: 28px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .price-contents {
    flex-direction: column;
  }
}
.price-contents_plan {
  width: 48.6%;
  background-color: #ffffff;
  box-shadow: 4px 4px 4px rgba(8, 6, 4, 0.25);
  padding: 34px 0 42px 0;
}
@media screen and (max-width: 1023px) {
  .price-contents_plan {
    margin: 0 auto;
    width: 80%;
  }
}
.price-contents_plan img {
  padding: 0 33px 0 33px;
}
.price-contents_plan--marker h3 {
  font-size: 24px;
  font-weight: 500;
  display: inline-block;
  background: linear-gradient(transparent 60%, rgba(240, 234, 222, 0.8) 60%);
  margin: 32px 10px 16px 10px;
}
.price-contents_plan--taxexclusive {
  font-size: 24px;
  font-weight: 500;
  display: inline-block;
}
.price-contents_plan--taxexclusive span {
  font-size: 16px;
}
.price-contents_plan--taxinclusive {
  font-size: 16px;
  font-weight: 400;
}
.price-contents_plan--taxinclusive span {
  font-size: 12px;
}
.price-contents_plan--explain {
  border: solid 1px #080604;
  display: inline-block;
  margin-top: 10px;
}
.price-contents_plan--explain p {
  font-size: 16px;
  font-weight: 400;
  padding: 4px;
}
.price-contents_explanation {
  width: 100%;
  background-color: #ffffff;
  margin-top: 60px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1023px) {
  .price-contents_explanation {
    width: 80%;
    margin: 60px auto 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .price-contents_explanation {
    width: 95%;
    max-width: 620px;
  }
}
.price-contents_explanation ul {
  width: 100%;
  text-align: left;
  padding: 20px 37.5px;
}
.price-contents_explanation ul li {
  list-style: disc;
  margin-left: 1em;
}

.flow {
  width: 100%;
  background-color: #f0eade;
  padding-bottom: 100px;
}
.flow-container .title-main {
  margin-top: 0;
  padding: 100px 0 40px 0;
}
.flow-contents {
  max-width: 1000px;
  width: min(100% - 32px, 1000px);
  margin: 0 auto;
}
.flow-contents_step1, .flow-contents_step2, .flow-contents_step3, .flow-contents_step4, .flow-contents_step5 {
  display: flex;
  padding: 35px 0;
  background-color: #ffffff;
  box-shadow: 4px 4px 4px rgba(8, 6, 4, 0.25);
}
@media screen and (max-width: 1023px) {
  .flow-contents_step1, .flow-contents_step2, .flow-contents_step3, .flow-contents_step4, .flow-contents_step5 {
    flex-direction: column;
  }
}
@media screen and (max-width: 1023px) {
  .flow-contents_step1 img, .flow-contents_step2 img, .flow-contents_step3 img, .flow-contents_step4 img, .flow-contents_step5 img {
    margin: 0 auto;
  }
}
.flow-contents_step1--inr, .flow-contents_step2--inr, .flow-contents_step3--inr, .flow-contents_step4--inr, .flow-contents_step5--inr {
  padding: 32.5px 0;
}
@media screen and (max-width: 1023px) {
  .flow-contents_step1--inr, .flow-contents_step2--inr, .flow-contents_step3--inr, .flow-contents_step4--inr, .flow-contents_step5--inr {
    margin: 0 auto;
    padding: 0 16px;
  }
}
@media screen and (max-width: 1023px) {
  .flow-contents_step1--inr p, .flow-contents_step2--inr p, .flow-contents_step3--inr p, .flow-contents_step4--inr p, .flow-contents_step5--inr p {
    padding: 16px 0 0;
  }
}
.flow-contents_step1--inr__title, .flow-contents_step2--inr__title, .flow-contents_step3--inr__title, .flow-contents_step4--inr__title, .flow-contents_step5--inr__title {
  display: flex;
}
.flow-contents_step1--inr__title---number, .flow-contents_step2--inr__title---number, .flow-contents_step3--inr__title---number, .flow-contents_step4--inr__title---number, .flow-contents_step5--inr__title---number {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  display: inline-block;
}
.flow-contents_step1--inr__title---number span, .flow-contents_step2--inr__title---number span, .flow-contents_step3--inr__title---number span, .flow-contents_step4--inr__title---number span, .flow-contents_step5--inr__title---number span {
  font-size: 16px;
}
.flow-contents_step1--inr__title---number h3, .flow-contents_step2--inr__title---number h3, .flow-contents_step3--inr__title---number h3, .flow-contents_step4--inr__title---number h3, .flow-contents_step5--inr__title---number h3 {
  font-size: 48px;
  line-height: 48px;
}
.flow-contents_step1--inr__title---line, .flow-contents_step2--inr__title---line, .flow-contents_step3--inr__title---line, .flow-contents_step4--inr__title---line, .flow-contents_step5--inr__title---line {
  display: flex;
  align-items: end;
}
.flow-contents_step1--inr__title---line img, .flow-contents_step2--inr__title---line img, .flow-contents_step3--inr__title---line img, .flow-contents_step4--inr__title---line img, .flow-contents_step5--inr__title---line img {
  padding: 0 16px;
}
.flow-contents_step1--inr__title h4, .flow-contents_step2--inr__title h4, .flow-contents_step3--inr__title h4, .flow-contents_step4--inr__title h4, .flow-contents_step5--inr__title h4 {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: end;
}
.flow-contents_step1--inr p, .flow-contents_step2--inr p, .flow-contents_step3--inr p, .flow-contents_step4--inr p, .flow-contents_step5--inr p {
  font-size: 16px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.1em;
  padding: 16px 15px 0 5px;
}
.flow-contents_step1--inr p .marker, .flow-contents_step3--inr p .marker, .flow-contents_step4--inr p .marker, .flow-contents_step5--inr p .marker {
  background: linear-gradient(transparent 60%, rgba(240, 234, 222, 0.6) 60%);
  display: inline;
}
@media screen and (max-width: 500px) {
  .flow-contents_step3--inr__title h4 {
    flex-direction: column;
    justify-content: end;
  }
}
.flow-contents_step3--inr__title h4 span {
  font-size: 16px;
}
.flow-contents_downarrow {
  text-align: center;
}
.flow-contents_downarrow img {
  padding: 40px 0;
}

.faq {
  background-image: url("../../images/price-background.png");
  width: 100%;
  background-repeat: repeat;
}
.faq-container {
  width: min(100% - 32px, 1000px);
  max-width: 1000px;
  margin: 0px auto;
  padding-bottom: 100px;
}
.faq-container .title-main {
  margin-top: 0;
  padding-top: 100px;
}
.faq-accordion_wrapper {
  display: flex;
}
.faq-accordion_inr {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.faq-accordion_header {
  background-color: #ffffff;
  padding: 12px 45px 10px 20px;
  margin: 10px 0 0;
  transition: background 0.3s ease;
  cursor: pointer;
  position: relative;
  /*＋の箇所*/
  /* hover */
}
.faq-accordion_header img {
  width: 32px;
  height: 35px;
  text-align: start;
}
.faq-accordion_header::before, .faq-accordion_header::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 2px;
  margin: auto;
  background: #080604;
}
.faq-accordion_header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.faq-accordion_header.active::after {
  transform: rotate(0deg);
}
.faq-accordion_header:hover {
  background-color: #ffffff;
}
.faq-accordion_content {
  display: none;
  /*jqのために必要*/
  background-color: #ffffff;
  padding: 12px 20px 10px;
  border-top: 1px solid rgba(8, 6, 4, 0.4);
}
.faq-accordion_header span, .faq-accordion_content span {
  font-size: 16px;
  font-weight: 500;
  padding-left: 20px;
  position: relative;
  vertical-align: middle;
  padding-top: 5px;
}
.faq-accordion_header img, .faq-accordion_content img {
  vertical-align: middle;
  width: 32px;
  height: 35px;
}

.accordion-header span::before {
  position: absolute;
  content: "Q";
  top: 2px;
  left: 0;
  color: #151e2f;
  font-size: 17px;
}

.accordion-content span::before {
  position: absolute;
  content: "A";
  top: 3px;
  left: 0;
  color: #151e2f;
  font-size: 17px;
}

.contact {
  background-color: #f0eade;
  width: 100%;
  padding-bottom: 100px;
}
.contact-container {
  width: min(100% - 32px, 1000px);
  margin: 0 auto;
}
.contact-container .title-main {
  margin-top: 0;
  padding: 100px 0 40px 0;
}
.contact-container .cf7-item_q {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
}
.contact-container .cf7-item_req {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background-color: #080604;
  width: 42px;
  text-align: center;
  vertical-align: top;
  margin-left: 8px;
}
.contact-container .cf7-item_a {
  margin: 12px 0 40px 0;
  font-size: 16px;
  font-weight: 500;
}
.contact-container .cf7-item_a .wpcf7-form-control-wrap {
  width: 100%;
}
.contact-container .cf7-item_a .wpcf7-form-control-wrap input,
.contact-container .cf7-item_a .wpcf7-form-control-wrap textarea {
  width: 100%;
  color: rgba(8, 6, 4, 0.4);
  background-color: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.contact-container .cf7-item_a .wpcf7-form-control-wrap input {
  line-height: 36px;
  padding: 14px 20px;
  background-color: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.contact-container .cf7-item_a .wpcf7-form-control-wrap textarea {
  line-height: 19.6px;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.contact-container .cf7-submit {
  text-align: center;
  margin: 0 auto;
  width: 100%;
  max-width: 590px;
  line-height: 70px;
  background-color: #080604;
  color: #ffffff;
  margin-top: 100px;
  position: relative;
  display: block;
}
.contact-container .cf7-submit span {
  padding-right: 36px;
}
.contact-container .cf7-submit::after {
  content: "";
  background-image: url("../../images/vector.png");
  background-size: 100%;
  position: absolute;
  background-repeat: no-repeat;
  width: 24px;
  height: 21px;
  top: 28px;
  right: 252px;
}
@media screen and (max-width: 768px) {
  .contact-container .cf7-submit {
    max-width: 350px;
  }
  .contact-container .cf7-submit span {
    padding-right: 20px;
  }
  .contact-container .cf7-submit::after {
    right: 125px;
  }
}

.footer {
  background-color: #d7d2cd;
}
.footer-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 50px 0 42px 0;
}
.footer-container_storelogo img {
  width: 267px;
  height: 107px;
}
.footer-container_instagramlogo {
  padding: 39px 0 38px 0;
}
.footer-container_instagramlogo img {
  width: 48px;
}
@media screen and (max-width: 1023px) {
  .footer-container_footernav {
    display: none;
  }
}
.footer-container_footernav ul {
  display: flex;
  justify-content: center;
  line-height: 50px;
  gap: 24px;
  font-size: 16px;
  color: #080604;
  font-weight: 500;
}
.footer-container_footernav ul .footer-nav_btn {
  background-color: #080604;
  width: 195px;
  text-align: center;
}
.footer-container_footernav ul .footer-nav_btn a {
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  display: block;
  width: 100%;
  height: 100%;
}
.footer-container_footernav .footer-nav_btn {
  background-color: #080604;
  width: 140px;
  text-align: center;
  margin-left: 16px;
}
.footer-container_footernav .footer-nav_btn a {
  font-size: 14px;
  color: #ffffff;
  font-weight: bold;
}
.footer-container_copyright {
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  padding-top: 58px;
}
@media screen and (max-width: 1023px) {
  .footer-container_copyright {
    padding-top: 0;
  }
}
.footer .pagetop {
  position: fixed;
  bottom: 30px;
  right: 40px;
  width: 83px;
  height: 79px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer .pagetop {
    bottom: 25px;
    right: 25px;
  }
}
.footer .pagetop img {
  height: 55px;
  width: 55px;
}
.footer .pagetop .pagetop-character {
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}/*# sourceMappingURL=style.css.map */