@charset "UTF-8";
/********************************************/
/* header */
/********************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  background-color: #FFF;
  z-index: 999;
}

.header .logo {
  padding-left: 20px;
  max-width: 250px;
  height: auto;
}
@media (max-width: 1200px) {
  .header .logo {
    max-width: 175px;
  }
}
@media (max-width: 1200px) {
  .header .logo {
    padding: 20px 0 20px 20px;
  }
}
.header .logo a {
  display: block;
  width: 100%;
}
.header .logo a img {
  display: block;
  width: 100%;
  height: auto;
}

.header .header_txt_nav {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 10px 160px 10px 0;
}
@media (max-width: 1200px) {
  .header .header_txt_nav {
    padding-right: 150px;
    display: none;
  }
}
.header .header_txt_nav .header_tel {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 6px;
}
.header .header_txt_nav .header_tel a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #0A0A0A;
}
.header .header_txt_nav .header_tel .tel_txt {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.header .header_txt_nav .header_tel .tel_txt .label {
  font-family: inherit;
  font-size: 1.1rem;
}
.header .header_txt_nav .header_tel .tel_txt .num {
  font-family: inherit;
  font-size: 1.7rem;
}
.header .header_txt_nav .header_tel .tel_txt .rep {
  position: relative;
  bottom: 0.3em;
  font-family: inherit;
  font-weight: 500;
  font-size: 1.1rem;
}
.header .header_txt_nav .header_tel .hours {
  display: block;
  font-family: inherit;
  font-size: 1.1rem;
}

.header .header_txt_nav .header_nav .header_nav_list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 2em;
  justify-content: right;
  font-size: 1.4rem;
}
@media (max-width: 1200px) {
  .header .header_txt_nav .header_nav .header_nav_list {
    gap: 1.3em;
  }
}
.header .header_txt_nav .header_nav .header_nav_list .header_nav_item a {
  color: inherit;
  font-size: 1em;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .header_txt_nav .header_nav .header_nav_list .header_nav_item a:hover {
  color: #961C1E;
}

.header .header_txt_nav .header_nav .header_nav_list .header_nav_item.has_dropdown {
  position: relative;
  padding-bottom: 5px;
}
.header .header_txt_nav .header_nav .header_nav_list .header_nav_item.has_dropdown:hover .header_dropdown {
  opacity: 1;
  visibility: visible;
}
.header .header_txt_nav .header_nav .header_nav_list .header_nav_item.has_dropdown > a {
  position: relative;
  margin-right: 1em;
}
.header .header_txt_nav .header_nav .header_nav_list .header_nav_item.has_dropdown > a:hover {
  color: #0A0A0A;
}
.header .header_txt_nav .header_nav .header_nav_list .header_nav_item.has_dropdown > a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% + 0.4em);
  display: block;
  margin: auto;
  background-color: #0A0A0A;
  width: 9px;
  height: 8px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .header_txt_nav .header_nav .header_nav_list .header_nav_item.has_dropdown .header_dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  display: block;
  padding: 15px 20px;
  background-color: #0A0A0A;
  color: #FFF;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .header_txt_nav .header_nav .header_nav_list .header_nav_item.has_dropdown .header_dropdown.big {
  width: 200px;
}
.header .header_txt_nav .header_nav .header_nav_list .header_nav_item.has_dropdown .header_dropdown.small {
  width: 135px;
}
.header .header_txt_nav .header_nav .header_nav_list .header_nav_item.has_dropdown .header_dropdown .header_dropdown_item {
  font-size: 1.3rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.5;
}
.header .header_txt_nav .header_nav .header_nav_list .header_nav_item.has_dropdown .header_dropdown .header_dropdown_item:not(:last-child) {
  margin-bottom: 0.5em;
}
.header .header_txt_nav .header_nav .header_nav_list .header_nav_item.has_dropdown .header_dropdown .header_dropdown_item a {
  font: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .header_txt_nav .header_nav .header_nav_list .header_nav_item.has_dropdown .header_dropdown .header_dropdown_item a:hover {
  color: inherit;
  opacity: 0.7;
}

.header_btn_nav {
  position: fixed;
  right: 0;
  top: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  z-index: 1100;
}
.header_btn_nav .header_mail {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 70px;
  height: 100%;
  background-color: #0A0A0A;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header_btn_nav .header_mail:hover {
  background-color: #9E9C9C;
}
.header_btn_nav .header_mail img {
  display: block;
  width: 24px;
  aspect-ratio: 1;
}
.header_btn_nav .header_hamburger {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  width: 70px;
  height: 100%;
  background-color: #961C1E;
  color: #FFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.header_btn_nav .header_hamburger:hover {
  opacity: 0.7;
}
.header_btn_nav .header_hamburger.is_open .hamburger .line:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.header_btn_nav .header_hamburger.is_open .hamburger .line:nth-child(2) {
  opacity: 0;
}
.header_btn_nav .header_hamburger.is_open .hamburger .line:nth-child(3) {
  bottom: 3px;
  transform: rotate(-45deg);
}
.header_btn_nav .header_hamburger .txt {
  display: block;
  margin-bottom: 0.5em;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
}
.header_btn_nav .header_hamburger .hamburger {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 14px;
}
.header_btn_nav .header_hamburger .hamburger .line {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #FFF;
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header_btn_nav .header_hamburger .hamburger .line:nth-child(1) {
  top: 0;
}
.header_btn_nav .header_hamburger .hamburger .line:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.header_btn_nav .header_hamburger .hamburger .line:nth-child(3) {
  bottom: 0;
}

.drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  display: block;
  background-color: #FFF;
  padding: 0 60px;
  width: 100%;
  max-width: 800px;
  box-shadow: -10px 0px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .drawer {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .drawer {
    padding: 0 30px;
  }
}
.drawer.is_open {
  right: 0;
}
.drawer .scroll {
  padding: 40px 0;
  overflow-y: scroll;
  height: 100dvh;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.drawer .scroll::-webkit-scrollbar {
  display: none;
}

.drawer .scroll .drawer_nav .drawer_list {
  margin-bottom: 30px;
}
.drawer .scroll .drawer_nav .drawer_list .drawer_item {
  padding: 20px 0;
  border-bottom: 1px solid #0A0A0A;
  font-size: 1.6rem;
  line-height: 1.6;
}
.drawer .scroll .drawer_nav .drawer_list .drawer_item a, .drawer .scroll .drawer_nav .drawer_list .drawer_item span {
  color: inherit;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1em;
  line-height: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.drawer .scroll .drawer_nav .drawer_list .drawer_item a:hover {
  opacity: 0.7;
}

.drawer .scroll .drawer_nav .drawer_list .drawer_item.has_child .drawer_child {
  padding-left: 20px;
  margin-top: 10px;
}
.drawer .scroll .drawer_nav .drawer_list .drawer_item.has_child .drawer_child .drawer_child_item {
  font-size: 1em;
}
.drawer .scroll .drawer_nav .drawer_list .drawer_item.has_child .drawer_child .drawer_child_item:not(:last-child) {
  margin-bottom: 0.5em;
}

.drawer .scroll .drawer_nav .drawer_footer {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3%;
}
@media (max-width: 768px) {
  .drawer .scroll .drawer_nav .drawer_footer {
    display: block;
  }
}
.drawer .scroll .drawer_nav .drawer_footer .contact_btn {
  display: block;
  width: 50%;
  padding: 1em 1em 1em calc(33px + 1em);
  background-color: #0A0A0A;
  color: #FFF;
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .drawer .scroll .drawer_nav .drawer_footer .contact_btn {
    width: 100%;
    margin-bottom: 20px;
  }
}
.drawer .scroll .drawer_nav .drawer_footer .contact_btn:hover {
  opacity: 0.7;
}
.drawer .scroll .drawer_nav .drawer_footer .contact_btn .txt {
  position: relative;
  color: inherit;
  font: inherit;
  line-height: inherit;
}
.drawer .scroll .drawer_nav .drawer_footer .contact_btn .txt:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(100% + 5px);
  display: block;
  margin: auto;
  width: 33px;
  height: 33px;
  background: url(../img/ico/ico-mail-white.svg) no-repeat center/contain;
}
.drawer .scroll .drawer_nav .drawer_footer .drawer_tel {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  width: 50%;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .drawer .scroll .drawer_nav .drawer_footer .drawer_tel {
    width: 100%;
  }
}
.drawer .scroll .drawer_nav .drawer_footer .drawer_tel a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  color: inherit;
}
.drawer .scroll .drawer_nav .drawer_footer .drawer_tel .tel_txt {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
  margin-bottom: 5px;
}
.drawer .scroll .drawer_nav .drawer_footer .drawer_tel .tel_txt .label {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.7vw, 1.8rem);
}
.drawer .scroll .drawer_nav .drawer_footer .drawer_tel .tel_txt .num {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(2.3rem, 2.5vw, 2.8rem);
}
.drawer .scroll .drawer_nav .drawer_footer .drawer_tel .tel_txt .rep {
  position: relative;
  bottom: 0.4em;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.7vw, 1.8rem);
}
.drawer .scroll .drawer_nav .drawer_footer .drawer_tel .hours {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.7vw, 1.8rem);
}

.drawer_overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
}
.drawer_overlay.is_open {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}

/********************************************/
/* footer */
/********************************************/
/********************************************/
/* @contact お問い合わせ・資料請求 */
/********************************************/
.com_contact_block {
  padding: 130px 0 90px;
}
@media (max-width: 1024px) {
  .com_contact_block {
    padding: 80px 0 70px;
  }
}
@media (max-width: 768px) {
  .com_contact_block {
    padding: 60px 0 50px;
  }
}
.com_contact_block .contact_box .item {
  padding: 40px;
  border: 1px solid #0A0A0A;
}
@media (max-width: 1024px) {
  .com_contact_block .contact_box .item {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .com_contact_block .contact_box .item {
    padding-left: 25px;
    padding-right: 25px;
  }
  .com_contact_block .contact_box .item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.com_contact_block .contact_box .item a {
  display: block;
  color: #0A0A0A;
}
.com_contact_block .contact_box .item .ttl {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0.5em;
  font-size: clamp(1.6rem, 1.7vw, 1.8rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
}
.com_contact_block .contact_box .item .ttl:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 24px;
  height: 24px;
}
.com_contact_block .contact_box .item .hours {
  display: block;
  margin-top: 0.5em;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.6;
}
.com_contact_block .contact_box .item.tel_item:has(a) {
  padding: 0;
}
.com_contact_block .contact_box .item.tel_item:has(a) a {
  padding: 40px;
}
@media (max-width: 1024px) {
  .com_contact_block .contact_box .item.tel_item:has(a) a {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .com_contact_block .contact_box .item.tel_item:has(a) a {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.com_contact_block .contact_box .item.tel_item .ttl:before {
  background: url(../img/ico/ico-tel-primary.svg) no-repeat center/contain;
}
.com_contact_block .contact_box .item.tel_item .tel {
  font-size: clamp(3.3rem, 4.5vw, 5rem);
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1;
}
.com_contact_block .contact_box .item.tel_item .tel .txt {
  font-size: 0.5em;
}
.com_contact_block .contact_box .item.tel_item .tel .rep {
  position: relative;
  bottom: 0.2em;
  right: 0.2em;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 0.5em;
}
.com_contact_block .contact_box .item.mail_item {
  padding: 0;
  border: none;
}
.com_contact_block .contact_box .item.mail_item a {
  position: relative;
  padding: 40px;
  border: 1px solid #0A0A0A;
}
@media (max-width: 1024px) {
  .com_contact_block .contact_box .item.mail_item a {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .com_contact_block .contact_box .item.mail_item a {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.com_contact_block .contact_box .item.mail_item a:after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: block;
  background: url(../img/ico/ico-arrow-red.svg) no-repeat center/contain;
  width: 70px;
  aspect-ratio: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .com_contact_block .contact_box .item.mail_item a:after {
    bottom: 15px;
    right: 15px;
    width: 40px;
  }
}
.com_contact_block .contact_box .item.mail_item a .ttl:before {
  background: url(../img/ico/ico-mail-primary.svg) no-repeat center/contain;
}
.com_contact_block .contact_box .item.mail_item a .contact_ttl {
  display: block;
  font-size: clamp(2.3rem, 3.3vw, 3.6rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.com_contact_block .contact_box .item.mail_item a:hover:after {
  background-image: url(../img/ico/ico-arrow-black.svg);
}
.com_contact_block .contact_box .item.mail_item a:hover .contact_ttl {
  color: #961C1E;
}

.footer {
  padding: 60px 40px;
  background-color: #0A0A0A;
  color: #FFF;
}
@media (max-width: 1024px) {
  .footer {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding-top: 40px;
  }
}

.footer .footer_nav_box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3%;
  width: 100%;
  max-width: 1100px;
  padding-bottom: 60px;
  margin: auto;
}
@media (max-width: 768px) {
  .footer .footer_nav_box {
    display: block;
    padding-bottom: 30px;
  }
}
.footer .footer_nav_box .list {
  width: 25%;
}
@media (max-width: 768px) {
  .footer .footer_nav_box .list {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer .footer_nav_box .list:not(:has(.has_child)) {
    margin-bottom: 10px;
  }
}
.footer .footer_nav_box .list .item {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
@media (max-width: 768px) {
  .footer .footer_nav_box .list .item {
    font-size: 1.4rem;
  }
}
.footer .footer_nav_box .list .item:not(:last-child) {
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .footer .footer_nav_box .list .item:not(:last-child) {
    margin-bottom: 0.5em;
  }
}
.footer .footer_nav_box .list .item .link {
  color: inherit;
  font: inherit;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.footer .footer_nav_box .list .item a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .footer_nav_box .list .item a:hover {
  opacity: 0.7;
}
.footer .footer_nav_box .list .item .child_list {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .footer .footer_nav_box .list .item .child_list {
    margin-top: 10px;
  }
}
.footer .footer_nav_box .list .item .child_list .child_item {
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
@media (max-width: 768px) {
  .footer .footer_nav_box .list .item .child_list .child_item {
    font-size: 1.3rem;
  }
}
.footer .footer_nav_box .list .item .child_list .child_item:not(:last-child) {
  margin-bottom: 0.3em;
}
.footer .footer_nav_box .list .item .child_list .child_item a {
  color: #BDBDBD;
  font: inherit;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .footer_nav_box .list .item .child_list .child_item a:hover {
  opacity: 0.7;
}

.footer .footer_bottom_box .inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  gap: 2%;
  padding: 60px 0 0;
  margin: auto;
  border-top: 1px solid #FFF;
}
@media (max-width: 1024px) {
  .footer .footer_bottom_box .inner {
    display: block;
  }
}
@media (max-width: 768px) {
  .footer .footer_bottom_box .inner {
    padding-top: 40px;
  }
}
.footer .footer_bottom_box .inner .left {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5%;
  width: 70%;
}
@media (max-width: 1024px) {
  .footer .footer_bottom_box .inner .left {
    display: block;
    width: 100%;
  }
}
.footer .footer_bottom_box .inner .left .logo {
  width: 100%;
  max-width: 350px;
}
@media (max-width: 1024px) {
  .footer .footer_bottom_box .inner .left .logo {
    max-width: 200px;
    margin-bottom: 20px;
  }
}
.footer .footer_bottom_box .inner .left .logo img {
  display: block;
  width: 100%;
}
.footer .footer_bottom_box .inner .left .txt {
  width: calc(100% - 350px);
}
@media (max-width: 1024px) {
  .footer .footer_bottom_box .inner .left .txt {
    width: 100%;
    margin-bottom: 40px;
  }
}
.footer .footer_bottom_box .inner .left .txt p {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1.6;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
.footer .footer_bottom_box .inner .right {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 30%;
  color: #BDBDBD;
}
@media (max-width: 1024px) {
  .footer .footer_bottom_box .inner .right {
    display: block;
    width: 100%;
  }
}
.footer .footer_bottom_box .inner .right .sa {
  max-width: 80px;
  margin-bottom: 20px;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .footer .footer_bottom_box .inner .right .sa {
    margin-left: 0;
    margin-right: auto;
    max-width: 60px;
    margin-bottom: 10px;
  }
}
.footer .footer_bottom_box .inner .right .sa img {
  display: block;
  width: 100%;
  height: auto;
}
.footer .footer_bottom_box .inner .right .link {
  margin-bottom: 1em;
  font-size: 1.2rem;
}
.footer .footer_bottom_box .inner .right .link a {
  color: inherit;
  font-size: 1em;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .footer_bottom_box .inner .right .link a:hover {
  opacity: 0.7;
}
.footer .footer_bottom_box .inner .right .copyright {
  display: block;
  color: inherit;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1;
}/*# sourceMappingURL=navigation.css.map */