@charset "UTF-8";
html {
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
}
html body {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  html body .pc_bg {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-image: url("../../images/common/pc_bg-rep.png");
    background-size: 375px 250px;
  }
}
html body .fixed-logo {
  position: fixed;
  top: 50%;
  left: calc(50% - 187.5px - 450px);
  width: 340px;
}
@media screen and (max-width: 1400px) {
  html body .fixed-logo {
    left: calc(50% - 187.5px - 32.142857vw);
    width: 340px;
    width: 24.2857142857vw;
  }
}
@media screen and (max-width: 1199px) {
  html body .fixed-logo {
    display: none;
  }
}
html body .fixed-qr {
  position: fixed;
  top: 45%;
  left: calc(50% + 187.5px + 140px);
  width: 200px;
}
@media screen and (max-width: 1400px) {
  html body .fixed-qr {
    left: calc(50% + 187.5px + 10vw);
    width: 200px;
    width: 14.2857142857vw;
  }
}
@media screen and (max-width: 1199px) {
  html body .fixed-qr {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  html body .container-main {
    position: relative;
    width: calc(375px + 2rem);
    margin-inline: auto;
    padding: 0 1rem;
    background-color: #fff;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1607843137);
    position: relative;
  }
}
html body header .header_inner {
  display: grid;
  align-items: center;
}
@media screen and (max-width: 991px) {
  html body header .header_inner {
    width: 100%;
  }
}
html body header .header_inner .logo_wrapper {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
}
html body header .header_inner .logo_wrapper a {
  display: block;
  text-align: center;
}
html body header .header_inner .pc_nav {
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  html body header .header_inner .pc_nav {
    display: none;
  }
}
html body header .header_inner .pc_nav nav ul {
  display: flex;
  align-items: center;
}
html body header .header_inner .pc_nav nav ul li {
  text-align: center;
}
html body header .header_inner .pc_nav nav ul li a {
  font-size: 1rem;
  font-weight: bold;
  display: inline-block;
  padding: 1.25rem 2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1199px) {
  html body header .header_inner .pc_nav nav ul li a {
    padding: 1.25rem 1.25rem;
  }
}
html body header .header_inner .pc_nav nav ul li a span {
  display: block;
  font-size: 0.625rem;
  font-weight: normal;
  margin-top: 5px;
}
html body header .header_inner .pc_nav nav ul li.contact_nav {
  background-color: #888;
}
html body header .header_inner .pc_nav nav ul li.contact_nav a {
  color: #fff;
}
html body header .header_inner .menu_button_wrapper {
  margin-left: auto;
  z-index: 11;
  display: none;
}
@media screen and (max-width: 991px) {
  html body header .header_inner .menu_button_wrapper {
    display: block;
  }
}
html body header .header_inner .menu_button_wrapper #menuButton {
  color: #fff;
  font-size: 0.625rem;
  text-align: center;
  line-height: 1;
  display: inline-block;
  padding: 16px 12px;
  width: 50px;
  height: 50px;
  background-color: #333;
  z-index: 1;
  position: relative;
  transition: 0.4s;
  cursor: pointer;
}
html body header .header_inner .menu_button_wrapper #menuButton span {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: 0.4s;
}
html body header .header_inner .menu_button_wrapper #menuButton span::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 1;
  transition: 0.4s;
}
html body header .header_inner .menu_button_wrapper #menuButton span::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: 0.4s;
}
html body header .header_inner .menu_button_wrapper {
  /* #menu_open */
}
html body header .header_inner .menu_button_wrapper.menu_open #menuButton span {
  animation: none;
  width: 18px;
  transition: 0.4s;
  transform: translate(0, 2px) rotate(45deg);
}
html body header .header_inner .menu_button_wrapper.menu_open #menuButton span::before {
  transition: 0.4s;
  opacity: 0;
}
html body header .header_inner .menu_button_wrapper.menu_open #menuButton span::after {
  animation: none;
  width: 18px;
  transition: 0.4s;
  transform: translate(0px, -8px) rotate(90deg);
}
html body header .header_inner .sp_nav {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  transition: 0.4s ease-in;
  z-index: 10;
  opacity: 0;
}
html body header .header_inner .sp_nav nav {
  height: 100%;
  background-color: #fff;
  padding: 3.5rem 0 0;
}
html body header .header_inner .sp_nav nav ul li {
  text-align: center;
  padding: 0 1rem;
  opacity: 0;
  transition: 0.6s;
}
html body header .header_inner .sp_nav nav ul li a {
  position: relative;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  display: block;
  padding: 1rem 0;
}
@media screen and (max-width: 575px) {
  html body header .header_inner .sp_nav nav ul li a {
    font-size: 1rem;
  }
}
html body header .header_inner .sp_nav nav ul li a span {
  font-size: 0.625rem;
  font-weight: normal;
  display: block;
  margin-top: 5px;
}
html body header .header_inner .sp_nav.menu_open {
  opacity: 1;
  width: 100%;
  height: 100%;
  transition: 0.4s ease-in;
}
html body header .header_inner .sp_nav.menu_open nav ul li {
  opacity: 1;
  transition: 0.6s;
}
html body footer {
  background-color: #ECF0F2;
  border-top: 1px solid #707070;
  padding-top: 10px;
  padding-bottom: 100px;
}
html body footer p.access {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}
html body footer p.access span {
  display: block;
  font-size: 12px;
}
html body footer .box-tel {
  background-color: #D1DBE0;
  padding: 16px 10px 10px;
  text-align: center;
  margin-bottom: 30px;
}
html body footer .box-tel p {
  margin-top: 10px;
  font-size: 16px;
}
html body footer .footer-logo {
  text-align: center;
}
html body .subvisual {
  background-color: #333;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  margin-top: 74.9px;
}
@media screen and (max-width: 991px) {
  html body .subvisual {
    margin-top: 50px;
  }
}
@media screen and (max-width: 575px) {
  html body .subvisual {
    margin-top: 50px;
    height: 200px;
  }
}
html body .subvisual h1 {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.2em;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  html body .subvisual h1 {
    font-size: 1.75rem;
  }
}
html body .subvisual h1 span {
  display: block;
  font-size: 1rem;
  margin-top: 10px;
}
@media screen and (max-width: 575px) {
  html body .subvisual h1 span {
    font-size: 0.75rem;
  }
}
html body .contents_breadcrumb {
  padding-top: 1.25rem;
}
html body .contents_breadcrumb.single_breadcrumb {
  margin-top: 86px;
  padding-top: 3.75rem;
}
@media screen and (max-width: 991px) {
  html body .contents_breadcrumb.single_breadcrumb {
    margin-top: 50px;
  }
}
html body .contents_breadcrumb .breadcrumb a {
  border-bottom: 1px solid #555;
}
html body .contents_breadcrumb .breadcrumb span.bread-list {
  padding: 0 0.625rem;
}
html body .contents_breadcrumb .breadcrumb span.bread-nolink {
  padding: 0 0.625rem;
}
html body .contents_breadcrumb .breadcrumb span.current-item {
  padding: 0 0.625rem;
}
html body .pagetop {
  position: fixed;
  z-index: 11;
  right: 20px;
  bottom: 60px;
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  border-radius: 50%;
  padding-top: 15px;
  background-color: #888;
  text-align: center;
}
@media screen and (max-width: 575px) {
  html body .pagetop {
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 40px;
    padding-top: 12px;
  }
}
html body .pagetop::after {
  content: "";
  position: absolute;
  top: 14px;
  left: calc(50% - 8px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 12px 8px;
  border-color: transparent transparent #fff transparent;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  html body .pagetop::after {
    top: 10px;
    left: calc(50% - 6px);
    border-width: 0 6px 10px 6px;
  }
}
html body .pagetop span {
  color: #fff;
  font-size: 0.75rem;
  display: inline-block;
}
@media screen and (max-width: 991px) {
  html body .pagetop span {
    font-size: 0.625rem;
  }
}
html body .fixed-cta {
  position: fixed !important;
  max-width: 375px;
  width: 100%;
  margin-inline: auto;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #5CA6C7;
  border: 3px solid #fff;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: 9px 12px 10px 85px;
  position: relative;
  z-index: 0;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
  pointer-events: none;
}
html body .fixed-cta::before {
  content: "";
  position: absolute;
  background-image: url("../../images/common/fixed-cta-img-2.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 113px;
  height: 121px;
  top: 0;
  bottom: 0;
  left: -3px;
  right: 0;
  margin: auto auto 0 0;
  z-index: -1;
}
html body .fixed-cta.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
html body .fixed-cta p {
  display: flex;
  align-items: center;
  gap: 4.5px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
}
html body .fixed-cta p img {
  width: 64.5px;
}
html body .fixed-cta .btn-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
html body .fixed-cta .btn-wrap a {
  background-color: #fff;
  width: 100%;
  height: 38px;
  display: grid;
  border-radius: 22px;
  font-weight: 500;
  font-size: 16px;
  padding: 4px;
  box-shadow: inset -3px -3px 3px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}
html body .fixed-cta .btn-wrap a span {
  width: 100%;
  height: 100%;
  border-width: 1px;
  border-style: solid;
  border-radius: 22px;
  display: grid;
  place-content: center;
}
html body .fixed-cta .btn-wrap a:first-child {
  color: #5CA6C7;
}
html body .fixed-cta .btn-wrap a:first-child span {
  border-color: #5CA6C7;
}
html body .fixed-cta .btn-wrap a:nth-child(2) {
  color: #04BA00;
}
html body .fixed-cta .btn-wrap a:nth-child(2) span {
  border-color: #04BA00;
}
html body .fixed-cta .btn-wrap a:hover {
  color: #fff;
}
html body .fixed-cta .btn-wrap a:hover:first-child span {
  background-color: #218EBF;
}
html body .fixed-cta .btn-wrap a:hover:nth-child(2) span {
  background-color: #08BB00;
}
html body .contents {
  color: #333;
  padding: 4rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  html body .contents {
    padding: 3.75rem 0;
  }
}
html body .contents .title_wrapper {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  html body .contents .title_wrapper {
    margin-bottom: 1.5rem;
  }
}
html body .contents .title_wrapper h2 {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
html body .contents .title_wrapper h2 span {
  display: block;
  font-size: 1.5rem;
  position: relative;
  margin-top: 0.75rem;
}
html body .contents h2.h2-ttl-1 {
  background: linear-gradient(to left, #EDE79C, #F2DAA7);
  width: 270px;
  height: 33px;
  margin-inline: auto;
  display: grid;
  place-content: center;
  font-family: "Noto Serif JP", serif;
  color: #5A4B28;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
}
html body .contents h2.h2-ttl-2 {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
html body .contents h2.h2-ttl-2::before, html body .contents h2.h2-ttl-2::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #333;
}
html body .contents h2.h2-ttl-2::before {
  margin-right: 10px;
}
html body .contents h2.h2-ttl-2::after {
  margin-left: 10px;
}
html body .contents p {
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  html body .contents p {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }
}
html body .contents .more {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  html body .contents .more {
    margin-top: 3rem;
  }
}
html body .contents .more a {
  color: #fff;
  background-color: #333;
  display: inline-block;
  padding: 0.75rem 2.5rem;
  border-radius: 25px;
  transition: ease 0.4s;
}
html body .contents .more a:hover {
  color: #333;
  background-color: #fff;
}
html body .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
html body img {
  height: auto;
  max-width: 100%;
}
html body .cf::before, html body .cf::after {
  display: table;
  clear: both;
  content: "";
}
html body .alpha {
  transition: opacity 250ms;
}
html body .alpha:hover {
  opacity: 0.75;
}
html body figure {
  text-align: center;
}
html body br.pc {
  display: none;
}
@media screen and (min-width: 376px) {
  html body br.pc {
    display: block;
  }
}
html body br.sp {
  display: none;
}
@media screen and (max-width: 575px) {
  html body br.sp {
    display: block;
  }
}
html body .pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  html body .pc_only {
    display: none;
  }
}
html body .sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  html body .sp_only {
    display: block;
  }
}
html body .t_r {
  text-align: right;
}
html body .pulse {
  animation: pulse 1s infinite alternate;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    /* 等倍 */
  }
  100% {
    transform: scale(1.2);
    /* 1.2倍に拡大 */
  }
}
html body .fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 0.8s;
}
html body .fadein.fadein-left {
  transform: translate(-50px, 0);
}
html body .fadein.fadein-left-2 {
  transform: translate(-50px, 0);
  transition-delay: 0.3s;
}
html body .fadein.fadein-left-3 {
  transform: translate(-50px, 0);
  transition-delay: 0.6s;
}
html body .fadein.fadein-right {
  transform: translate(30px, 0);
}
html body .fadein.fadein-up {
  transform: translate(0, -30px);
}
html body .fadein.fadein-up-2 {
  transform: translate(0, -30px);
  transition-delay: 0.3s;
}
html body .fadein.fadein-up-3 {
  transform: translate(0, -30px);
  transition-delay: 0.6s;
}
html body .fadein.fadein-bottom {
  transform: translate(0, 30px);
}
html body .fadein.fadein-bottom-2 {
  transform: translate(0, 30px);
  transition-delay: 0.3s;
}
html body .fadein.fadein-bottom-3 {
  transform: translate(0, 30px);
  transition-delay: 0.6s;
}
html body .fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}
html body .blink {
  -webkit-animation: blink 1s ease-in-out infinite alternate;
  -moz-animation: blink 1s ease-in-out infinite alternate;
  animation: blink 1s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*# sourceMappingURL=common.css.map */
