@keyframes bg {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1608.7272727273px;
  }
}
@media screen and (max-width: 760px) {
  @keyframes bg {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: -1407.6363636364px;
    }
  }
}
html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  font-family: "Zen Maru Gothic";
  color: #462112;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  background: #FFFBEA;
  padding-top: 100px;
  position: relative;
}
body.overflow {
  overflow: hidden;
}
@media screen and (max-width: 760px) {
  body {
    padding-top: 72px;
  }
}

main {
  overflow: hidden;
  min-height: calc(100dvh - 100px - 48px - 623px);
}
@media screen and (max-width: 760px) {
  main {
    min-height: calc(100dvh - 72px - 36px - 966.8px);
  }
}

main:not(#front-page) {
  margin-top: 48px;
}
main:not(#front-page) h2 {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 760px) {
  main:not(#front-page) {
    margin-top: 36px;
  }
}

p {
  line-height: 2em;
}

section {
  padding: 0 20px;
  margin-bottom: 96px;
}
@media screen and (max-width: 760px) {
  section {
    margin-bottom: 80px;
  }
}

.inner {
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
}

nav:not(.sp) {
  width: -moz-fit-content;
  width: fit-content;
}
nav:not(.sp) ul {
  display: flex;
  font-size: 14px;
}
nav:not(.sp) ul li {
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
nav:not(.sp) ul li a {
  transition: color 0.3s;
  padding: 0 2px 12px;
}
@media screen and (max-width: 760px) {
  nav:not(.sp) ul li a {
    transition: none;
  }
}
nav:not(.sp) ul li a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background: #462112;
  bottom: -10px;
  left: 0;
  transition: height 0.3s;
  z-index: -1;
}
@media screen and (max-width: 760px) {
  nav:not(.sp) ul li a::after {
    transition: none;
  }
}
nav:not(.sp) ul li a:hover {
  color: #FFFBEA;
}
nav:not(.sp) ul li a:hover::after {
  height: calc(100% + 16px);
}

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

a {
  text-decoration: none;
  color: #462112;
}

h2 {
  text-align: center;
  font-size: 36px;
  line-height: 1.2em;
}
h2 span {
  display: block;
  font-size: 20px;
  color: #3A671A;
}
@media screen and (max-width: 920px) {
  h2 {
    font-size: 32px;
  }
  h2 span {
    font-size: 18px;
  }
}

h3 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 1.5em;
}

.logo {
  font-size: 24px;
  display: inline-block;
  font-weight: bold;
}
.logo span {
  display: block;
  font-size: 14px;
  text-align: right;
  font-family: "Zen Kaku Gothic New";
  font-weight: 400;
  margin-top: 4px;
}
@media screen and (max-width: 760px) {
  .logo {
    font-size: 18px;
  }
  .logo span {
    font-size: 10px;
  }
}

.arrow {
  height: 2px;
  display: block;
  border-radius: 1px;
  background: #462112;
  position: relative;
  transition: background 0.5s;
}
@media screen and (max-width: 760px) {
  .arrow {
    transition: none;
  }
}
.arrow::after, .arrow::before {
  position: absolute;
  content: "";
  display: block;
  background: #462112;
  height: 2px;
  border-radius: 1px;
  transition: background 0.5s;
}
@media screen and (max-width: 760px) {
  .arrow::after, .arrow::before {
    transition: none;
  }
}
.arrow::after {
  transform: rotate(-45deg);
}
.arrow::before {
  transform: rotate(45deg);
}

.button {
  display: flex;
  width: 180px;
  margin: 0 auto;
  border: 2px solid #462112;
  height: 56px;
  border-radius: 30px;
  margin-top: 24px;
  transition: color 0.5s, background 0.5s;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
@media screen and (max-width: 760px) {
  .button {
    transition: none;
  }
}
.button .characters {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 6px;
  align-items: center;
}
.button::before {
  content: "";
  position: absolute;
  background: #462112;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  transition: width 0.5s, height 0.3s;
}
@media screen and (max-width: 760px) {
  .button::before {
    transition: none;
  }
}
.button:hover {
  color: #FFFBEA;
}
.button:hover::before {
  width: 100%;
}
.button:hover .arrow {
  background: #FFFBEA;
}
.button:hover .arrow::before, .button:hover .arrow::after {
  background: #FFFBEA;
}
.button .arrow {
  width: 16px;
}
.button .arrow::before, .button .arrow::after {
  width: 10px;
}
.button .arrow::before {
  right: -1px;
  top: -3px;
}
.button .arrow::after {
  right: -1px;
  top: 3px;
}
.button.top {
  color: #FFFBEA;
  background: #462112;
}
.button.top .arrow {
  background: #FFFBEA;
  transform: rotate(-90deg);
}
.button.top .arrow::after, .button.top .arrow::before {
  background: #FFFBEA;
}
.button.top::before {
  background: #FFFBEA;
  width: 100%;
  height: 0;
  bottom: 0;
  top: auto;
}
.button.top:hover {
  color: #462112;
}
.button.top:hover::before {
  height: 100%;
}
.button.top:hover .arrow {
  background: #462112;
}
.button.top:hover .arrow::after, .button.top:hover .arrow::before {
  background: #462112;
}
.button.left .arrow {
  transform: rotate(180deg);
}
.button.left::before {
  right: 0;
  left: auto;
}

a .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border: 2px solid #462112;
  border-radius: 50%;
  box-sizing: content-box;
  transition: background 0.3s;
}
a .circle .arrow {
  width: 10px;
}
a .circle .arrow::before, a .circle .arrow::after {
  width: 8px;
  right: -1.5px;
}
a .circle .arrow::before {
  top: -2.5px;
}
a .circle .arrow::after {
  top: 2.5px;
}
@media screen and (max-width: 760px) {
  a .circle {
    transition: none;
  }
}
a:hover .circle {
  background: #462112;
}
a:hover .circle .arrow {
  background: #FFFBEA;
}
a:hover .circle .arrow::after, a:hover .circle .arrow::before {
  background: #FFFBEA;
}

.news-ul {
  border-top: 1px solid #462112;
}
.news-ul li {
  border-bottom: 1px solid #462112;
}
.news-ul li a {
  display: flex;
  padding: 16px 0;
  align-items: center;
  gap: 24px;
}
.news-ul li a time {
  width: 80px;
  display: block;
}
.news-ul li a h3 {
  width: calc(100% - 80px - 48px - 32px);
  font-size: 18px;
  margin-bottom: 0;
  text-align: left;
}
.news-ul li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 760px) {
  .news-ul li a {
    flex-direction: column;
    justify-content: start;
    gap: 12px;
  }
  .news-ul li a time {
    text-align: left;
    width: 100%;
  }
  .news-ul li a h3 {
    width: 100%;
  }
  .news-ul li a .circle {
    display: none;
  }
}

.next, .prev {
  background: #462112;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #462112;
  box-sizing: content-box;
  transition: background 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 760px) {
  .next, .prev {
    transition: none;
  }
}
.next span, .prev span {
  background: #FFFBEA;
  display: block;
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: relative;
  transition: background 0.3s;
}
@media screen and (max-width: 760px) {
  .next span, .prev span {
    transition: none;
  }
}
.next span::before, .next span::after, .prev span::before, .prev span::after {
  border-radius: 1px;
  background: #FFFBEA;
  width: 8px;
  height: 2px;
  content: "";
  position: absolute;
  transition: background 0.3s;
}
@media screen and (max-width: 760px) {
  .next span::before, .next span::after, .prev span::before, .prev span::after {
    transition: none;
  }
}
.next.next span::before, .prev.next span::before {
  transform: translateY(-2px) rotate(45deg);
  right: -1px;
}
.next.next span::after, .prev.next span::after {
  transform: translateY(2px) rotate(-45deg);
  right: -1px;
}
.next.prev span::before, .prev.prev span::before {
  transform: translateY(-2px) rotate(-45deg);
  left: -1px;
}
.next.prev span::after, .prev.prev span::after {
  transform: translateY(2px) rotate(45deg);
  left: -1px;
}
.next:hover, .prev:hover {
  background: #FFFBEA;
}
.next:hover span, .prev:hover span {
  background: #462112;
}
.next:hover span::before, .next:hover span::after, .prev:hover span::before, .prev:hover span::after {
  background: #462112;
}

@keyframes bg {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1608.7272727273px;
  }
}
@media screen and (max-width: 760px) {
  @keyframes bg {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: -1407.6363636364px;
    }
  }
}
header {
  padding: 0 20px;
  height: 100px;
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(255, 251, 234, 0.8);
  z-index: 10;
}
header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
header .inner nav.pc {
  top: 16px;
  margin-left: auto;
}
header .inner nav.pc ul {
  gap: 36px;
}
header .inner nav.sp {
  display: none;
}
header .inner .hamburger {
  display: none;
}
@media screen and (max-width: 760px) {
  header {
    height: 72px;
  }
  header .inner .logo {
    position: fixed;
    left: 20px;
    top: 20px;
    z-index: 2;
  }
  header .inner nav.pc {
    display: none;
  }
  header .inner nav.sp {
    position: fixed;
    width: 100vw;
    height: 100dvh;
    background: #FFFBEA;
    top: -100dvh;
    left: 0;
    transition: transform 0.5s;
    display: block;
    text-align: center;
    padding-top: 80px;
    overflow: scroll;
    padding-bottom: 48px;
  }
  header .inner nav.sp .top {
    margin-bottom: 48px;
  }
  header .inner nav.sp ul {
    width: 320px;
    margin: 0 auto 48px;
  }
  header .inner nav.sp ul li {
    border-bottom: 1.5px solid #462112;
  }
  header .inner nav.sp ul li a {
    display: flex;
    justify-content: space-between;
    padding: 16px 10px;
    font-size: 18px;
    font-weight: bold;
  }
  header .inner nav.sp ul li a span {
    display: block;
    font-size: 12px;
    text-align: left;
    color: #3A671A;
  }
  header .inner nav.sp address {
    font-style: normal;
    margin-bottom: 12px;
  }
  header .inner nav.sp .tel a {
    display: flex;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    align-items: center;
  }
  header .inner nav.sp .tel a img {
    width: 36px;
    height: 36px;
  }
  header .inner nav.sp .tel span {
    display: block;
  }
  header .inner .hamburger {
    width: 30px;
    height: 24px;
    display: flex;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    right: 20px;
    z-index: 2;
  }
  header .inner .hamburger span {
    transition: transform 0.3s, opacity 0.3s;
    display: block;
    width: 30px;
    height: 2px;
    background: #462112;
    border-radius: 1px;
  }
  header.cross .inner nav.sp {
    transform: translateY(100dvh);
  }
  header.cross .inner .hamburger span:nth-child(1) {
    transform: translateY(11px) rotate(-45deg);
  }
  header.cross .inner .hamburger span:nth-child(2) {
    opacity: 0;
    transform: rotate(45deg);
  }
  header.cross .inner .hamburger span:nth-child(3) {
    transform: translateY(-11px) rotate(45deg);
  }
}

@keyframes bg {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1608.7272727273px;
  }
}
@media screen and (max-width: 760px) {
  @keyframes bg {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: -1407.6363636364px;
    }
  }
}
footer {
  padding: 0 20px;
  padding-top: 72px;
  padding-bottom: 80px;
  color: #FFFBEA;
  position: relative;
}
footer small {
  max-width: 880px;
  margin: 16px auto 0;
  text-align: right;
  display: block;
}
footer::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  background: #462112;
}
footer .inner .square {
  background: #FFFBEA;
  border-radius: 36px;
  margin-bottom: 64px;
  height: 240px;
  display: flex;
  align-items: center;
  color: #462112;
}
footer .inner .square h2 {
  width: 50%;
}
footer .inner .square .tel {
  width: 50%;
}
footer .inner .square .tel a {
  display: flex;
  font-size: 36px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
}
footer .inner .square .tel a img {
  width: 40px;
  height: 40px;
}
footer .inner .square .tel span {
  display: block;
  text-align: center;
}
footer .inner .lower {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
footer .inner .lower .company .logo {
  color: #FFFBEA;
  margin-bottom: 48px;
}
footer .inner .lower .company address {
  font-style: normal;
  font-size: 14px;
}
footer .inner .lower .nav-outer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer .inner .lower .nav-outer .top {
  border: 2px solid #FFFBEA;
  margin-top: 0;
  margin-left: 0;
}
footer .inner .lower .nav-outer nav {
  margin-top: auto;
}
footer .inner .lower .nav-outer nav ul {
  gap: 24px;
}
footer .inner .lower .nav-outer nav ul li a::after {
  background: #FFFBEA;
}
footer .inner .lower .nav-outer nav ul li a:hover {
  color: #462112;
}
@media screen and (max-width: 760px) {
  footer {
    padding-top: 48px;
    padding-bottom: 72px;
  }
  footer .inner .square {
    flex-direction: column;
    height: auto;
    padding: 64px 0;
    gap: 36px;
    margin-bottom: 64px;
  }
  footer .inner .square h2,
  footer .inner .square .tel {
    width: 100%;
  }
  footer .inner .lower {
    flex-direction: column;
    gap: 64px;
  }
  footer .inner .lower .company {
    text-align: center;
  }
  footer .inner .lower .company .logo {
    margin-bottom: 32px;
    font-size: 24px;
  }
  footer .inner .lower .company .logo span {
    font-size: 14px;
  }
  footer .inner .lower .nav-outer .top {
    margin-bottom: 36px;
  }
  footer .inner .lower .nav-outer nav ul {
    flex-direction: column;
    gap: 36px;
  }
}

@keyframes bg {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1608.7272727273px;
  }
}
@media screen and (max-width: 760px) {
  @keyframes bg {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: -1407.6363636364px;
    }
  }
}
#front-page #top {
  padding: 0;
  padding-top: 40px;
}
#front-page #top h1 {
  width: 5em;
  font-size: 36px;
  margin: 0 auto;
  border-bottom: 5px solid #462112;
  text-align: center;
  padding-bottom: 12px;
  margin-bottom: 36px;
}
#front-page #top h1 .trapezoid {
  width: 100%;
  border-bottom: 1em solid #462112;
  border-right: 1em solid transparent;
  border-left: 1em solid transparent;
  margin-bottom: 12px;
}
#front-page #top .content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
#front-page #top .content p {
  font-weight: bold;
  font-size: 32px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 20px;
}
#front-page #top .content p .sp {
  display: none;
}
#front-page #top .content p span {
  color: #3A671A;
}
#front-page #top .content .bg {
  height: 320px;
  width: 100%;
  background-image: url(../img/rotes_main_people.png);
  background-size: auto 100%;
  background-repeat-x: repeat;
  background-position: center;
  animation: bg 45s infinite linear;
}
#front-page #top .button {
  width: 200px;
}
@media screen and (max-width: 600px) {
  #front-page #top h1 {
    font-size: 28px;
  }
  #front-page #top .content {
    flex-direction: column-reverse;
  }
  #front-page #top .content p {
    font-size: 24px;
  }
  #front-page #top .content p .sp {
    display: block;
  }
  #front-page #top .content .bg {
    height: 280px;
  }
}
#front-page #news .inner {
  border: 2px solid #462112;
  border-radius: 36px;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
}
#front-page #news .inner .content {
  text-align: right;
  width: calc(100% - 224px);
}
#front-page #news .inner .content .button {
  margin-right: 0;
  cursor: pointer;
}
@media screen and (max-width: 920px) {
  #front-page #news .inner {
    flex-direction: column;
    padding: 48px 20px;
    gap: 0;
  }
  #front-page #news .inner .content {
    padding-right: 0;
    width: 100%;
  }
  #front-page #news .inner .content .button {
    margin: 24px auto 0;
  }
}
#front-page #about {
  background: linear-gradient(-90deg, #F0E8C5 0%, #F0E8C5 50%, transparent 50%, transparent 100%);
}
#front-page #about .inner {
  border-radius: 64px 0 0 24px;
}
#front-page #service {
  background: linear-gradient(90deg, #F0E8C5 0%, #F0E8C5 50%, transparent 50%, transparent 100%);
}
#front-page #service .inner {
  flex-direction: row-reverse;
  border-radius: 0 96px 32px 0;
}
#front-page #about,
#front-page #service {
  overflow: hidden;
}
#front-page #about .inner,
#front-page #service .inner {
  display: flex;
  align-items: center;
  background: #F0E8C5;
  padding-top: 36px;
  justify-content: space-between;
}
#front-page #about .inner .text,
#front-page #service .inner .text {
  width: 50%;
  padding-top: 24px;
  padding-bottom: 48px;
}
#front-page #about .inner .text h3,
#front-page #service .inner .text h3 {
  margin-bottom: 24px;
}
#front-page #about .inner .text p,
#front-page #service .inner .text p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#front-page #about .inner .text p .sp,
#front-page #service .inner .text p .sp {
  display: none;
}
#front-page #about .inner .img-div,
#front-page #service .inner .img-div {
  width: 50%;
  margin-top: auto;
}
#front-page #about .inner .img-div img,
#front-page #service .inner .img-div img {
  transition: transform 0.5s, opacity 0.5s;
}
#front-page #about .inner .img-div img.hidden,
#front-page #service .inner .img-div img.hidden {
  transform: translateY(100%);
  opacity: 0;
}
@media screen and (max-width: 760px) {
  #front-page #about .inner,
  #front-page #service .inner {
    flex-direction: column;
  }
  #front-page #about .inner .text,
  #front-page #service .inner .text {
    width: 100%;
  }
  #front-page #about .inner .text p,
  #front-page #service .inner .text p {
    padding: 0 12px;
  }
  #front-page #about .inner .text p .pc,
  #front-page #service .inner .text p .pc {
    display: none;
  }
  #front-page #about .inner .text p .sp,
  #front-page #service .inner .text p .sp {
    display: block;
  }
  #front-page #about .inner .img-div,
  #front-page #service .inner .img-div {
    width: 90%;
    max-width: 480px;
  }
}

@keyframes bg {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1608.7272727273px;
  }
}
@media screen and (max-width: 760px) {
  @keyframes bg {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: -1407.6363636364px;
    }
  }
}
#page-privacy #top p {
  margin-bottom: 32px;
}
#page-privacy #top dl dt {
  font-size: 20px;
  margin-bottom: 16px;
}
#page-privacy #top dl dd {
  margin-bottom: 32px;
}
#page-privacy #top span {
  display: block;
  margin-bottom: 16px;
}
#page-privacy #top date {
  text-align: right;
  display: block;
}

@keyframes bg {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1608.7272727273px;
  }
}
@media screen and (max-width: 760px) {
  @keyframes bg {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: -1407.6363636364px;
    }
  }
}
#page-service #top .inner .square {
  background: #F0E8C5;
  border-radius: 36px;
  padding: 48px 20px 72px;
}
#page-service #top .inner .square dl {
  max-width: 640px;
  margin: 0 auto;
}
#page-service #top .inner .square dl div {
  border-bottom: 2px solid #462112;
  padding: 24px 0;
}
#page-service #top .inner .square dl div dt {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
}
@media screen and (max-width: 760px) {
  #page-service #top .inner .square {
    padding: 12px 20px 36px;
  }
}
#page-service #flow {
  overflow: hidden;
}
#page-service #flow .inner .swiper {
  position: relative;
  height: 284px;
}
#page-service #flow .inner .swiper .prev,
#page-service #flow .inner .swiper .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
#page-service #flow .inner .swiper .prev.hidden,
#page-service #flow .inner .swiper .next.hidden {
  display: none;
}
#page-service #flow .inner .swiper .next {
  right: -16px;
}
#page-service #flow .inner .swiper .prev {
  left: -16px;
}
#page-service #flow .inner .swiper ul {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  transition: transform 1s;
}
#page-service #flow .inner .swiper ul li {
  text-align: center;
}
#page-service #flow .inner .swiper ul li .square {
  border: 2px solid #462112;
  border-radius: 32px;
  box-sizing: content-box;
  padding: 24px 16px;
  max-width: 160px;
  height: 230px;
  margin: 0 auto;
  background: #FFFBEA;
}
#page-service #flow .inner .swiper ul li h4 {
  color: #3A671A;
  font-size: 36px;
  margin-bottom: 0.25em;
}
#page-service #flow .inner .swiper ul li h5 {
  font-size: 24px;
  margin-bottom: 0.5em;
  margin-top: 0;
}
#page-service #flow .inner .swiper ul li p {
  text-align: left;
}
#page-service #flow .inner .swiper ul li:not(:last-child)::after {
  content: "";
  width: 25%;
  height: 2px;
  background: #462112;
  position: absolute;
  z-index: -1;
  top: 50%;
}
@media screen and (max-width: 920px) {
  #page-service #flow .inner .swiper ul {
    width: 200%;
  }
  #page-service #flow .inner .swiper ul li {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  #page-service #flow .inner .swiper ul {
    width: 400%;
  }
  #page-service #flow .inner .swiper ul li {
    width: 100%;
  }
}

@keyframes bg {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1608.7272727273px;
  }
}
@media screen and (max-width: 760px) {
  @keyframes bg {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: -1407.6363636364px;
    }
  }
}
#page-about #top .inner {
  text-align: center;
}
#page-about #top .inner img {
  margin: 0 auto;
}
#page-about #top .inner img.pc {
  max-height: 240px;
  margin-bottom: 96px;
}
#page-about #top .inner img.sp {
  display: none;
  margin-bottom: 48px;
}
#page-about #top .inner .text p {
  font-size: 18px;
}
#page-about #top .inner .text p .sp {
  display: none;
}
#page-about #top .inner .text .catchcopy {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 48px;
}
#page-about #top .inner .text .catchcopy .green {
  color: #3A671A;
}
#page-about #top .inner .text .catchcopy .small {
  display: block;
  font-size: 20px;
  font-weight: normal;
  margin-top: 1em;
  line-height: 2em;
}
@media screen and (max-width: 600px) {
  #page-about #top .inner img.pc {
    display: none;
  }
  #page-about #top .inner img.sp {
    height: 160px;
    display: block;
  }
  #page-about #top .inner .text {
    display: inline-block;
    margin: 0 auto;
    text-align: left;
  }
  #page-about #top .inner .text p .sp {
    display: block;
  }
}
#page-about #company .inner dl {
  border-top: 2px solid #462112;
}
#page-about #company .inner dl div {
  display: flex;
  border-bottom: 2px solid #462112;
  padding: 32px;
  width: 100%;
}
#page-about #company .inner dl div dt {
  width: 160px;
  font-weight: bold;
}
#page-about #company .inner dl div dd {
  width: calc(100% - 160px);
}
@media screen and (max-width: 600px) {
  #page-about #company .inner dl div {
    flex-direction: column;
    padding: 24px;
    gap: 12px;
  }
}
#page-about #access {
  background: #F0E8C5;
  margin-bottom: 0;
  padding: 48px 20px;
}
#page-about #access .inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
#page-about #access .inner .text {
  width: 292px;
}
#page-about #access .inner .text address {
  font-style: normal;
  line-height: 2em;
}
#page-about #access .inner iframe {
  width: calc(100% - 316px);
  height: 400px;
}
@media screen and (max-width: 920px) {
  #page-about #access .inner {
    flex-direction: column-reverse;
    max-width: 100%;
  }
  #page-about #access .inner h3 {
    margin-bottom: 1em;
  }
  #page-about #access .inner .text, #page-about #access .inner iframe {
    width: 100%;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

@keyframes bg {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1608.7272727273px;
  }
}
@media screen and (max-width: 760px) {
  @keyframes bg {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: -1407.6363636364px;
    }
  }
}
#not-found #top .inner h2 {
  font-size: 24px;
}
#not-found #top .inner p {
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 600px) {
  #not-found #top .inner h2 {
    font-size: 20px;
  }
  #not-found #top .inner p {
    text-align: left;
  }
}

@keyframes bg {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1608.7272727273px;
  }
}
@media screen and (max-width: 760px) {
  @keyframes bg {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: -1407.6363636364px;
    }
  }
}
#archive #top .inner .news-ul {
  margin-bottom: 48px;
}
#archive #top .inner .wp-pagenavi {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 20px;
}
#archive #top .inner .wp-pagenavi a, #archive #top .inner .wp-pagenavi span {
  border: none;
  color: #3A671A;
  padding: 0;
  margin: 0;
  font-weight: bold;
}
#archive #top .inner .wp-pagenavi a:hover {
  color: rgba(58, 103, 26, 0.7);
}

@keyframes bg {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1608.7272727273px;
  }
}
@media screen and (max-width: 760px) {
  @keyframes bg {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: -1407.6363636364px;
    }
  }
}
#single article {
  margin: 0 auto;
  margin-bottom: 96px;
  padding: 0 20px;
  max-width: 720px;
}
#single article .news-title {
  border-bottom: 2px solid #462112;
  margin-bottom: 24px;
}
#single article .news-title h3 {
  margin-bottom: 1em;
  text-align: left;
}
#single article .content {
  margin-bottom: 64px;
}
#single article .content img {
  width: calc(100% - 40px);
  margin: 0 auto;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 36px;
}
@media screen and (max-width: 760px) {
  #single article {
    margin-bottom: 80px;
  }
}/*# sourceMappingURL=styles.css.map */