@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap");
@media only screen and (min-width:840px) {
  a[href^="tel:"] {
    pointer-events: none;
    color: #000;
    text-decoration: none;
  }
  .tab_only {
    display: none;
  }
  .sp_only {
    display: none;
  }
}
@media only screen and (max-width:839px) {
  .pc_only {
    display: none;
  }
  .tab_only {
    display: none;
  }
}
*, :before, :after {
  box-sizing: border-box;
}

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

a {
  transition: all 0.3s ease;
}
a img {
  transition: all 0.3s ease;
}
a:hover {
  text-decoration: underline;
}
a:hover img {
  opacity: 0.6;
}

.underline {
  text-decoration: underline;
}

.attention {
  color: #ff0000;
}

.c_text {
  text-align: center;
}

b {
  font-weight: 600;
}

.color {
  color: #d7401b;
}

html {
  font-size: 16px;
}

body {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  background-color: #FFFDEB;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width:839px) {
  body {
    min-width: 320px;
  }
}

header {
  display: block;
}
header .header_inner {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 2rem;
  width: 100%;
  padding: 0 3rem;
  z-index: 100;
}
@media only screen and (max-width:839px) {
  header .header_inner {
    top: 0.5rem;
    padding: 0 1rem;
  }
}
header .header_inner h1 {
  font-size: 2rem;
  font-weight: 700;
}
header .header_inner h1 a:hover {
  text-decoration: none;
  opacity: 0.6;
}
@media only screen and (max-width:839px) {
  header .header_inner h1 a img {
    width: auto;
    height: 3.5rem;
  }
}
header .header_inner .spmenubtn {
  display: none;
}
@media only screen and (max-width:839px) {
  header .header_inner .spmenubtn {
    display: flex;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    height: 36px;
    width: 36px;
    justify-content: center;
    align-items: center;
    z-index: 10;
  }
  header .header_inner .spmenubtn span {
    content: "";
    display: block;
    height: 3px;
    width: 30px;
    border-radius: 1.5px;
    background-color: #d7401b;
  }
  header .header_inner .spmenubtn span:before {
    content: "";
    display: block;
    height: 3px;
    width: 30px;
    border-radius: 1.5px;
    background-color: #d7401b;
    position: absolute;
    bottom: 6px;
  }
  header .header_inner .spmenubtn span:after {
    content: "";
    display: block;
    height: 3px;
    width: 30px;
    border-radius: 1.5px;
    background-color: #d7401b;
    position: absolute;
    top: 6px;
  }
}
header .header_inner #main_navi {
  display: block;
}
@media only screen and (max-width:839px) {
  header .header_inner #main_navi {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background-color: #d7401b;
    overflow-y: auto;
    z-index: 100;
  }
}
@media only screen and (max-width:839px) {
  header .header_inner #main_navi.on {
    left: 0;
  }
}
header .header_inner #main_navi ul {
  display: flex;
  align-items: center;
  margin: 0 1rem 0 0;
}
@media only screen and (max-width:839px) {
  header .header_inner #main_navi ul {
    display: block;
    margin: 0;
  }
}
header .header_inner #main_navi ul li {
  margin: 0 0 0 4rem;
  font-weight: 700;
}
@media only screen and (max-width:839px) {
  header .header_inner #main_navi ul li {
    margin: 2rem auto;
    font-size: 1.25rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: center;
  }
}
@media only screen and (max-width:839px) {
  header .header_inner #main_navi ul li a {
    color: #fff;
    text-decoration: underline;
  }
}
header .header_inner #main_navi ul li a:hover {
  text-decoration: none;
  opacity: 0.6;
}
@media only screen and (min-width:840px) {
  header .header_inner #main_navi ul li:nth-of-type(5) a {
    display: block;
    padding: 1rem 2rem;
    background-color: #d7401b;
    color: #fff;
  }
}
header .header_inner #main_navi .closebtn {
  display: none;
}
@media only screen and (max-width:839px) {
  header .header_inner #main_navi .closebtn {
    display: block;
    position: absolute;
    top: 2rem;
    right: 1.75rem;
  }
  header .header_inner #main_navi .closebtn span {
    display: block;
    position: relative;
    width: 30px;
    height: 17.5px;
  }
  header .header_inner #main_navi .closebtn span::before, header .header_inner #main_navi .closebtn span::after { /* 共通設定 */
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px; /* 棒の幅（太さ） */
    height: 36px; /* 棒の高さ */
    background: #fff;
    border-radius: 1.5px;
  }
  header .header_inner #main_navi .closebtn span::before {
    transform: translate(-50%, -50%) rotate(50deg);
  }
  header .header_inner #main_navi .closebtn span::after {
    transform: translate(-50%, -50%) rotate(-50deg);
  }
}

main {
  display: block;
}
main .main_inner {
  padding: 8rem 3rem 0;
}
@media only screen and (max-width:839px) {
  main .main_inner {
    padding: 6rem 1rem 0;
  }
}
main .mainpagetitle {
  margin: 8rem 0;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: center;
}

footer {
  display: block;
  margin: 16rem 3rem 0;
}
@media only screen and (max-width:839px) {
  footer {
    margin: 8rem 0.5rem 0;
  }
}
footer .footer_inner {
  padding: 4rem;
  border-radius: 6rem;
  background-color: #d7401b;
  color: #fff;
}
@media only screen and (max-width:839px) {
  footer .footer_inner {
    display: block;
    padding: 2rem;
    border-radius: 2rem;
  }
}
footer .footer_inner .address_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media only screen and (max-width:839px) {
  footer .footer_inner .address_block {
    justify-content: center;
  }
}
footer .footer_inner .address_block h2 {
  margin: 0 auto 0 0;
  font-size: 1.75rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
@media only screen and (max-width:839px) {
  footer .footer_inner .address_block h2 {
    margin: 0 auto;
  }
}
footer .footer_inner .address_block .contact {
  margin: 0 1rem 0 auto;
}
@media only screen and (max-width:839px) {
  footer .footer_inner .address_block .contact {
    display: none;
  }
}
footer .footer_inner .address_block .contact .button {
  display: block;
  display: block;
  width: auto;
  height: 60px;
  padding: 0 4rem;
  background-color: #ffffff;
  color: #d7401b;
  border: 2px solid #ffffff;
  border-radius: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.3);
  font-size: 1.125rem;
  line-height: 3.3333333333;
  letter-spacing: 0.08em;
  font-weight: bold;
}
footer .footer_inner .address_block .contact .button:hover {
  opacity: 0.6;
  text-decoration: none;
}
footer .footer_inner .address_block .snslist {
  display: flex;
  margin: 0 0 0 1rem;
}
@media only screen and (max-width:839px) {
  footer .footer_inner .address_block .snslist {
    display: none;
  }
}
footer .footer_inner .address_block .snslist li {
  padding: 0 2rem 0 0;
}
footer .footer_inner .address_block .snslist li:last-of-type {
  padding: 0;
}
footer .footer_inner .address_block .snslist li img {
  width: 2rem;
  height: auto;
}
footer .make_pppg {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  letter-spacing: 0.05em;
  padding: 1rem 0 0;
  text-align: center;
}
footer .make_pppg a {
  font-weight: bold;
}
footer .make_pppg a img {
  display: inline-block;
  margin: 0 0.5rem;
  height: 1.25rem;
  width: auto;
}
footer .copyright {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 1rem 0;
  text-align: center;
}

.section_title {
  margin: 10rem auto 0;
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (max-width:839px) {
  .section_title {
    margin: 5rem auto 0;
  }
}

.listlink .button, .back .button {
  display: block;
  margin: 0 auto;
  display: block;
  width: 320px;
  height: 60px;
  padding: 0 4rem;
  background-color: #d7401b;
  color: #ffffff;
  border: 2px solid #d7401b;
  border-radius: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.3);
  font-size: 1.125rem;
  line-height: 3.3333333333;
  letter-spacing: 0.08em;
  font-weight: bold;
}
.listlink .button:hover, .back .button:hover {
  opacity: 0.6;
  text-decoration: none;
}

.listlink {
  padding: 6rem 0 0;
}

.back {
  padding: 8rem 0 0;
}/*# sourceMappingURL=common.css.map */