.header.scrolled {
  position: fixed;
  background-color: white;
  background-image: url(../img/background.png);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header {
  position: relative;
  width: 100%;
  background-image: url(../img/background.png);
  padding-left: 11rem;
  padding-right: 5.5rem;
  top: 0;
  left: 0;
  right: 0;
  height: 13rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  transition: all 0.4s ease-out;
}
@media print, screen and (max-width: 1200px) {
  .header {
    padding-top: 1rem;
  }
}
@media (max-width: 1440px) {
  .header {
    padding-left: 5rem;
    padding-right: 1rem;
  }
}
.header-nav {
  width: 100%;
  height: 13.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 640px) {
  .header-nav {
    height: 6rem;
  }
}
.header-nav ._logo {
  z-index: 9999;
}
.header-nav ._logo ._vision {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 19.2px;
  color: #4B615C;
}
.header-nav ._logo ._logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-nav ._logo ._logo-wrap p {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 19.2px;
  color: #4B615C;
}
.header-menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-left: 9rem;
  height: 100%;
}
@media print, screen and (max-width: 1200px) {
  .header-menu {
    display: none;
  }
}
@media (max-width: 1440px) {
  .header-menu {
    margin-left: 3rem;
  }
}
.header-menu li::before {
  content: "";
  position: absolute;
  top: 33.5px;
  left: 0;
  width: 2px;
  height: 35px;
  background-color: #654938;
}
.header-menu li:last-child::after {
  content: "";
  position: absolute;
  top: 33.5px;
  right: 0;
  width: 2px;
  height: 35px;
  background-color: #654938;
}
.header-menu li {
  position: relative;
  padding: 3.3rem 3.2rem;
}
.header-menu li a {
  display: inline-block;
}
.header-menu li .menu-wrap {
  height: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header-menu li .menu-wrap p {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 25.8px;
  color: #654938;
}
.header-other-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-left: 1.3rem;
  gap: 0.5rem;
}
@media print, screen and (max-width: 1200px) {
  .header-other-menu {
    display: none;
  }
}
.header-other-menu ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.header-other-menu li {
  position: relative;
}
.header-other-menu p {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  font-size: 1.3rem;
  letter-spacing: 1.6px;
  line-height: 17.9px;
  color: #fff;
}
.header-other-menu span {
  font-family: "Montserrat", sans-serif;
  font-size: 1.94rem;
  letter-spacing: 0.8px;
  line-height: 27.2px;
  color: #654938;
}

.hamburger-btn {
  display: none;
}
@media print, screen and (max-width: 1200px) {
  .hamburger-btn {
    display: block;
    width: 45px;
    height: 25px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    z-index: 9999;
    margin-right: 3rem;
  }
  .hamburger-btn span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #654938;
    border-radius: 5px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  .hamburger-btn span:nth-child(1) {
    top: 0px;
  }
  .hamburger-btn span:nth-child(2) {
    top: 10px;
  }
  .hamburger-btn span:nth-child(3) {
    bottom: 0px;
  }
}

.hamburger-btn.open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
  left: -45px;
}
.hamburger-btn.open span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dropdown a {
  position: relative;
  transition: all 0.4s ease-out;
}
.dropdown-content {
  width: 105px;
  position: absolute;
  height: auto;
  top: 70%;
  z-index: 1;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s ease, opacity 0.5s ease;
  margin: auto;
}
@media print, screen and (max-width: 1200px) {
  .dropdown-content {
    transform-origin: left;
  }
}
.dropdown-content a {
  width: 100%;
  color: white;
  background-color: #EAB14D;
  padding: 6px 5px;
  font-size: 13.74px;
  letter-spacing: 1.6px;
  line-height: 17.9px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 2px;
  display: block;
  margin-top: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dropdown-content a:first-child::before {
  display: none;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  transform: scaleY(1);
}

.header-nav-sp {
  display: none;
}
@media print, screen and (max-width: 1200px) {
  .header-nav-sp {
    display: block;
    background-image: url(../img/sp-background.png);
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    transition: all 0.4s ease-out;
    overflow: hidden;
    transform: translateX(100%);
    z-index: 999;
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10rem 8rem;
  }
}
.header-nav-sp-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  display: flex;
  flex-direction: column;
}
.header-nav-sp ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
}
.header-nav-sp ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}
.header-nav-sp ul li a .dropdown {
  position: absolute;
  right: 0;
  margin: 20px;
  transition: 0.3s ease;
}
.header-nav-sp ul li a p {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 25.8px;
  color: #4B615C;
}
.header-nav-sp ul li .sub-menu-first {
  background: transparent;
  display: none;
}
.header-nav-sp ul li .sub-menu-first a {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 25.8px;
  color: #4B615C;
  justify-content: flex-start;
  margin-top: 2rem;
}
.header-nav-sp ul li .sub-menu-second {
  background: transparent;
  display: none;
}
.header-nav-sp ul li .sub-menu-second a {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 25.8px;
  color: #4B615C;
  justify-content: flex-start;
  margin-top: 2rem;
}
.header-nav-sp ul li .sub-menu-third {
  background: transparent;
  display: none;
}
.header-nav-sp ul li .sub-menu-third a {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 25.8px;
  color: #4B615C;
  justify-content: flex-start;
  margin-top: 2rem;
}

.footer {
  background-image: url(../img/staff/bg.png);
}
.footer-container {
  padding-top: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  .footer-container {
    padding-top: 5rem;
  }
}
.footer-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 640px) {
  .footer-logo {
    height: 6rem;
  }
}
.footer-logo ._logo {
  z-index: 9999;
}
.footer-logo ._logo ._vision {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 19.2px;
  color: #4B615C;
}
.footer-logo ._logo ._logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-logo ._logo ._logo-wrap p {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 19.2px;
  color: #4B615C;
}
@media only screen and (max-width: 640px) {
  .footer-contact {
    margin-top: 2rem;
  }
}
.footer-contact p {
  font-size: 1.4rem;
  letter-spacing: 1.6px;
  line-height: 27.5px;
  color: #654938;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .footer-contact p {
    font-size: 1.8rem;
  }
}
.footer-menu {
  margin-top: 6.4rem;
}
.footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.footer-menu ul li a {
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 1.6px;
  line-height: 27.5px;
  color: #654938;
}
@media only screen and (max-width: 640px) {
  .footer-menu ul li a {
    font-size: 1.8rem;
  }
}
.footer-menu ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #654938;
  right: -2rem;
}
.footer-menu ul li:last-child::after {
  display: none;
}
.footer-company {
  width: 100%;
  margin-top: 8rem;
}
.footer-company p {
  font-size: 1.4rem;
  letter-spacing: 1.6px;
  line-height: 27.5px;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
  background-color: #EA934D;
}

.gnav-btn {
  display: none;
}
@media print, screen and (max-width: 768px) {
  .gnav-btn {
    display: flex;
    position: relative;
    width: 8rem;
    height: 8rem;
    color: white;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-out;
    display: flex;
    z-index: 9999;
  }
}
.gnav-lines {
  position: relative;
  width: 5rem;
  height: 3.5rem;
  text-align: center;
  transition: all 0.4s ease-out;
}
.gnav-lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: black;
}
.gnav-lines span:nth-child(1) {
  top: 0;
  transition: all 0.4s ease-out;
}
.gnav-lines span:nth-child(2) {
  top: calc(50% - 0.8px);
}
.gnav-lines span:nth-child(3) {
  bottom: 0;
  transition: all 0.4s ease-out;
}
.gnav-lines-active {
  position: relative;
  width: 6rem;
  height: 3rem;
  text-align: center;
  transform: translateY(-5px);
}
.gnav-lines-active span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.6px;
  background-color: black;
}
.gnav-lines-active span:nth-child(1) {
  top: 0;
  transform: translateY(1rem) rotate(-45deg);
  transition: all 0.4s ease-out;
}
.gnav-lines-active span:nth-child(2) {
  display: none;
}
.gnav-lines-active span:nth-child(3) {
  bottom: 0;
  transform: translateY(-1rem) rotate(45deg);
  transition: all 0.4s ease-out;
}

.mnav {
  background-color: rgba(238, 238, 238, 0.9);
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  transition: all 0.4s ease-out;
  overflow: hidden;
  transform: translateX(-100%);
  z-index: 999;
  opacity: 0.9;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 17.5rem 14.5rem;
}
.mnav-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  display: flex;
  flex-direction: column;
}
@media print, screen and (max-width: 1200px) {
  .mnav-active {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 8.6rem 6rem;
  }
}
.mnav-menu {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: flex-start;
}
@media only screen and (max-width: 640px) {
  .mnav-menu {
    gap: 4rem;
  }
}
.mnav .menu {
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mnav .menu a {
  color: black;
}
.mnav .menu h3 {
  font-size: 3.6rem;
  letter-spacing: 2px;
}
@media only screen and (max-width: 640px) {
  .mnav .menu h3 {
    font-size: 3rem;
  }
}
.mnav .menu p {
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-top: 1rem;
}
@media only screen and (max-width: 640px) {
  .mnav .menu p {
    font-size: 1.6rem;
  }
}

html {
  font-size: 0.76923vw;
  font-size: clamp(6px, 0.76923vw, 10px);
  margin: 0;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 640px) {
  html {
    font-size: 1.5384615vw;
  }
}

body {
  position: relative;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  word-break: break-all;
  padding: 0;
  margin: 0;
  font-family: "Inter", serif;
  overflow-x: hidden;
  background-image: url(../img/background.png);
}

._pc {
  display: block;
}
@media print, screen and (min-width: 1440px) {
  ._pc {
    display: none;
  }
}

._lap {
  display: block;
}
@media print, screen and (max-width: 1200px) {
  ._lap {
    display: none;
  }
}

._tab {
  display: block;
}
@media print, screen and (max-width: 768px) {
  ._tab {
    display: none;
  }
}

._sp {
  display: block;
}
@media only screen and (max-width: 640px) {
  ._sp {
    display: none;
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a, button {
  cursor: pointer;
  text-decoration: none;
}
a:hover, button:hover {
  opacity: 0.8;
  transition: all 0.3s ease-out;
}

img {
  height: auto;
  object-fit: cover;
  vertical-align: middle;
  border-style: none;
}

div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2 {
  line-height: 1.2;
}

h3,
h4 {
  line-height: 1.5;
}

h5,
h6 {
  line-height: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

b,
strong {
  font-weight: 600;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: none;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

*:focus {
  outline: none;
}

.clearfix::after {
  content: "";
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  clear: both;
}

* html .clearfix {
  zoom: 1;
}

*:first-child + html .clearfix {
  zoom: 1;
}

.move-btn {
  position: relative;
  background-color: #F5C246;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 3.6rem 5.26rem;
  color: #63502F;
}
@media print, screen and (max-width: 1200px) {
  .move-btn {
    padding: 3.6rem 5.26rem;
  }
}
.move-btn-text {
  font-size: 1.5rem;
  letter-spacing: 0.8px;
  line-height: 26px;
}
@media print, screen and (max-width: 768px) {
  .move-btn-text {
    font-size: 1.8rem;
    letter-spacing: 0.8px;
  }
}
.move-btn-icon {
  position: absolute;
  right: 1.7rem;
  font-size: 1.2rem;
}
@media print, screen and (max-width: 1200px) {
  .move-btn-icon {
    right: 2.5rem;
  }
}

.more-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #817666;
  border-radius: 32px;
  padding: 1.6rem 11rem;
  margin: auto;
  width: 300px;
}
.more-btn p {
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 1.6px;
  line-height: 29.6px;
}
@media print, screen and (max-width: 768px) {
  .more-btn p {
    font-size: 1.6rem;
  }
}
.more-btn::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 2px dashed #fff;
  border-radius: 30px;
  pointer-events: none;
}
.more-btn img {
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
}

.contact-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EA934D;
  border-radius: 32px;
  padding: 1.6rem 4rem;
  margin: auto;
  width: 30rem;
  margin-top: 4.8rem;
  color: #fff;
  gap: 6.2rem;
}
.contact-btn p {
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 29.6px;
}
@media only screen and (max-width: 640px) {
  .contact-btn p {
    font-size: 1.8rem;
  }
}
.contact-btn::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 2px dashed #fff;
  border-radius: 30px;
  pointer-events: none;
}
.contact-btn img {
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
}

.topVisual {
  padding: 4rem 7.2rem 0 7.2rem;
}
@media only screen and (max-width: 640px) {
  .topVisual {
    padding: 4rem 3rem 0 3rem;
  }
}
.topVisual-path {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.topVisual-path span:first-child a {
  color: #F7821B;
}
.topVisual-path span:last-child {
  color: #63502F;
}
.topVisual-content {
  position: relative;
  width: 100%;
}
.topVisual-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 640px) {
  .topVisual-content img {
    width: auto;
  }
}
.topVisual-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.1rem 3.2rem 0.8rem 3.2rem;
  background-color: #fff;
  text-align: center;
  min-width: 56rem;
  width: 56rem;
}
@media only screen and (max-width: 640px) {
  .topVisual-title {
    min-width: 35rem;
    width: 40rem;
    padding: 0.1rem 5rem 1.2rem 5rem;
  }
}
.topVisual-title h1 {
  font-size: 4.1rem;
  line-height: 58.5px;
  letter-spacing: 1.28px;
  color: #4B615C;
}
@media only screen and (max-width: 640px) {
  .topVisual-title h1 {
    font-size: 3.6rem;
    line-height: 32px;
  }
}
.topVisual-title p {
  font-size: 1.6rem;
  letter-spacing: 1.28px;
  color: #4B615C;
  line-height: 24px;
}
.topVisual-title::before {
  content: "";
  position: absolute;
  bottom: -3.2rem;
  left: 0;
  width: 100%;
  height: 2rem;
  clip-path: polygon(0% 0%, 96.5% 0%, 100% 0, 96.5% 100%, 0% 100%);
  background-color: #fff;
}
.topVisual-title::after {
  content: "";
  position: absolute;
  top: -3.2rem;
  right: 0;
  width: 2rem;
  height: 2rem;
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
  background-color: #fff;
}
.topVisual-text {
  margin-top: 18rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.topVisual-text h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 1.2px;
  line-height: 56px;
  color: #4B615C;
}
.topVisual-text h3 img {
  width: 10rem;
}
.topVisual-text p {
  font-size: 1.3rem;
  letter-spacing: 0.43px;
  line-height: 28.3px;
  color: #63502F;
  margin-top: 1.7rem;
  text-align: center;
}
.topVisual-text p span {
  font-weight: bold;
}
.topVisual-text h4 {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 2.8px;
  line-height: 38px;
  color: #E96836;
  margin-top: 2.2rem;
  text-align: center;
}
.topVisual-photo {
  width: 100%;
  margin-top: 5rem;
}
.topVisual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service {
  position: relative;
  margin-top: 18rem;
}
@media only screen and (max-width: 640px) {
  .service {
    margin-top: 10rem;
  }
}
.service-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service-title ._service {
  position: absolute;
  top: -5rem;
  left: 0;
}
@media print, screen and (max-width: 768px) {
  .service-title ._service {
    top: -10rem;
    width: 50%;
    z-index: 1;
  }
}
.service-title h2 {
  position: relative;
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 58.5px;
  letter-spacing: 2.2px;
  color: #4B615C;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.service-title h2 span:first-child {
  display: flex;
  align-items: center;
}
.service-title ._underline {
  margin-top: 2rem;
}
.service-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  padding: 5.8rem 18.7rem 0rem 18.7rem;
  gap: 4rem;
}
@media print, screen and (max-width: 1200px) {
  .service-content {
    padding: 5.8rem 3rem 0rem 3rem;
  }
}
@media only screen and (max-width: 640px) {
  .service-content {
    grid-template-columns: 1fr;
  }
}
.service-content-img {
  position: relative;
  width: 30rem;
  height: 30rem;
  clip-path: polygon(50% 0%, 100% 33%, 100% 100%, 0 100%, 0 33%);
  background-color: #FFF;
}
.service-content-img-inner {
  width: 29rem;
  height: 29rem;
  clip-path: polygon(50% 0%, 100% 33%, 100% 100%, 0 100%, 0 33%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service-content-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-content-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service-content-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service-content-text h3 {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 6px;
  line-height: 48px;
  color: #122B4B;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 640px) {
  .service-content-text h3 {
    font-size: 2.4rem;
    letter-spacing: 1.3px;
    line-height: 32px;
  }
}
.service-content-text p {
  font-size: 1.475rem;
  letter-spacing: 1.28px;
  line-height: 28.8px;
  color: #333333;
  margin-top: 3rem;
}
@media print, screen and (max-width: 1200px) {
  .service-content-text p {
    font-size: 2rem;
    letter-spacing: 1.28px;
    line-height: 28.8px;
  }
}

.service02 {
  position: relative;
}
.service02-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service02-title ._service {
  position: absolute;
  top: -5rem;
  left: 0;
}
@media only screen and (max-width: 640px) {
  .service02-title ._service {
    top: -10rem;
    width: 50%;
    z-index: 1;
  }
}
.service02-title h2 {
  position: relative;
  font-family: "Noto Serif JP";
  font-size: 9.6rem;
  line-height: 96px;
  letter-spacing: 12px;
  color: #FBF2DB;
}
@media only screen and (max-width: 640px) {
  .service02-title h2 {
    font-size: 6rem;
    line-height: 60px;
  }
}
.service02-title h2 span:first-child {
  display: flex;
  align-items: center;
}
.service02-title p {
  margin-top: 2rem;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 1.8px;
  line-height: 56px;
  color: #4B615C;
}
.service02-content {
  margin-top: 5rem;
  padding: 0 20rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6rem;
}
@media print, screen and (max-width: 1200px) {
  .service02-content {
    padding: 0 3rem;
  }
}
@media only screen and (max-width: 640px) {
  .service02-content {
    grid-template-columns: 1fr;
  }
}
.service02-img {
  width: 100%;
  height: 25.4rem;
}
.service02-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.service02-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service02-text {
  height: calc(100% - 25.4rem);
  padding: 3rem 3.5rem;
  background-color: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  width: 100%;
}
.service02-text h3 {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.8px;
  line-height: 38px;
  color: #122B4B;
  text-align: center;
}
@media print, screen and (max-width: 1200px) {
  .service02-text h3 {
    font-size: 2.2rem;
    line-height: 32px;
  }
}
.service02-text p {
  font-size: 1.4rem;
  letter-spacing: 0.4px;
  line-height: 28.8px;
  color: #63502F;
}
@media print, screen and (max-width: 1200px) {
  .service02-text p {
    font-size: 1.6rem;
    line-height: 28.8px;
  }
}

.area {
  margin-top: 15.4rem;
  position: relative;
  padding: 0 20rem;
}
@media print, screen and (max-width: 768px) {
  .area {
    margin-top: 10rem;
    padding: 0 3rem;
  }
}
.area-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.area-title ._area {
  position: absolute;
  top: -5rem;
  left: 0;
  z-index: 1;
}
@media only screen and (max-width: 640px) {
  .area-title ._area {
    top: -10rem;
    width: 50%;
  }
}
.area-title p {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 2.2px;
  line-height: 58.5px;
  color: #4B615C;
}
@media only screen and (max-width: 640px) {
  .area-title p {
    font-size: 3rem;
  }
}
.area-title ._underline {
  margin-top: 2rem;
}
.area-content {
  position: relative;
  margin-top: 7rem;
  padding: 4.8rem 2.7rem;
  border-radius: 50px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.area-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
@media print, screen and (max-width: 1200px) {
  .area-text {
    width: 100%;
  }
}
.area-text .location {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.area-item span {
  width: 1rem;
  height: 1rem;
  background-color: #D79DB8;
  border-radius: 50%;
}
.area-item p {
  font-size: 1.6rem;
  letter-spacing: 1.2px;
  line-height: 35px;
  color: #63502F;
}
@media print, screen and (max-width: 1200px) {
  .area-item p {
    font-size: 1.8rem;
  }
}
.area-description {
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 35px;
  color: #63502F;
}
.area-map img {
  width: 100%;
}

.menu {
  padding: 164px 125px 90px 125px;
}
@media print, screen and (max-width: 1200px) {
  .menu {
    padding: 12rem 3rem;
  }
}
.menu-leap {
  position: absolute;
  bottom: -11rem;
  right: -3rem;
  z-index: 1;
}
.menu-illu {
  position: absolute;
  top: -11rem;
  left: 3rem;
}
.menu-title {
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}
@media print, screen and (max-width: 768px) {
  .menu-title {
    top: -10rem;
  }
}
@media only screen and (max-width: 640px) {
  .menu-title {
    top: -5rem;
  }
}
.menu-title h3 {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 56px;
  letter-spacing: 2.2px;
  color: #4B615C;
  text-align: center;
  margin-top: 0.7rem;
}
@media print, screen and (max-width: 1200px) {
  .menu-title h3 {
    font-size: 2.4rem;
    line-height: 3rem;
  }
}
.menu-content {
  position: relative;
  background-color: #fff;
  border-radius: 48px;
  display: flex;
  align-items: center;
  padding: 16rem 11.2rem 12.8rem 11.2rem;
  justify-content: center;
  gap: 3rem;
}
@media only screen and (max-width: 640px) {
  .menu-content {
    flex-direction: column;
    gap: 5rem;
    padding: 14rem 3rem 12.8rem 3rem;
  }
}
.menu-item {
  position: relative;
}
.menu-item-img img {
  width: 35.5rem;
}
@media only screen and (max-width: 640px) {
  .menu-item-img img {
    width: 100%;
  }
}
.menu-btn {
  position: absolute;
  bottom: -7rem;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26.6rem;
  height: 8rem;
}
@media print, screen and (max-width: 768px) {
  .menu-btn {
    width: 30rem;
    height: 6rem;
  }
}
.menu-text {
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 40px;
  color: #fff;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .menu-text {
    bottom: 5rem;
    line-height: 25px;
  }
}

.contact {
  padding: 9.3rem 8rem 0 8rem;
}
@media only screen and (max-width: 640px) {
  .contact {
    padding: 9.3rem 3rem;
  }
}
.contact-content {
  position: relative;
  background-image: url(../img/common/contact-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 5.8rem 21rem;
}
@media only screen and (max-width: 640px) {
  .contact-content {
    padding: 5.8rem 3rem;
  }
}
.contact-icon {
  position: absolute;
  top: 21rem;
  left: 4.2rem;
}
.contact-icon img {
  width: 13rem;
}
@media only screen and (max-width: 640px) {
  .contact-icon {
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .contact-icon img {
    width: 10rem;
  }
}
.contact-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-header span {
  font-family: "Dancing Script", cursive;
  font-size: 3.2rem;
  letter-spacing: 1.6px;
  line-height: 38px;
  color: #C3B79E;
}
.contact-header h3 {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 2.2px;
  line-height: 58.5px;
  color: #4B615C;
}
@media only screen and (max-width: 640px) {
  .contact-header h3 {
    font-size: 3rem;
  }
}
.contact-header img {
  margin-top: 2rem;
}
.contact-description {
  margin-top: 4.8rem;
}
.contact-text span {
  font-size: 1.4rem;
  letter-spacing: 1.6px;
  line-height: 29.6px;
  color: #654938;
}
@media only screen and (max-width: 640px) {
  .contact-text span {
    font-size: 1.6rem;
  }
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.contact-info ._tel {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  letter-spacing: 1.6px;
  line-height: 45.9px;
  color: #654938;
}
@media only screen and (max-width: 640px) {
  .contact-info ._tel {
    font-size: 1.8rem;
  }
}
.contact-info ._date {
  font-size: 1.4rem;
  letter-spacing: 1.6px;
  line-height: 29.6px;
  color: #654938;
}
@media only screen and (max-width: 640px) {
  .contact-info ._date {
    font-size: 1.4rem;
  }
}

.recruit {
  padding-top: 19.3rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 640px) {
  .recruit {
    padding: 10rem 0;
  }
}
.recruit-img-first {
  display: flex;
  align-items: center;
  animation: slideImages 25s linear infinite;
  width: 4200px;
}
.recruit-img-first img {
  flex-shrink: 0;
  min-width: 300px;
  height: auto;
}
@media only screen and (max-width: 640px) {
  .recruit-img-first {
    width: 2800px;
  }
  .recruit-img-first img {
    min-width: 200px;
  }
}
.recruit-img-second {
  display: flex;
  align-items: center;
  animation: slideImagesReverse 25s linear infinite;
  width: 4200px;
}
.recruit-img-second img {
  flex-shrink: 0;
  min-width: 300px;
  height: auto;
}
@media only screen and (max-width: 640px) {
  .recruit-img-second {
    width: 2800px;
  }
  .recruit-img-second img {
    min-width: 200px;
  }
}
.recruit-btn {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.recruit-btn img {
  width: 100%;
}

.recruit-other {
  position: relative;
  margin-top: 14rem;
  padding-bottom: 4rem;
  background-image: url(../img/recruit/recruit-bg.png);
}
.recruit-other ._bg-line {
  width: 100%;
  margin-top: 4rem;
}
.recruit-other ._bg-line01 {
  width: 100%;
  margin-top: 11.3rem;
}
.recruit-other ._recruit {
  position: absolute;
  top: -8rem;
  left: 0;
}
@media print, screen and (max-width: 768px) {
  .recruit-other ._recruit {
    top: -5rem;
    width: 50%;
  }
}
.recruit-other-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.recruit-other-title img {
  margin-top: 0.7rem;
}
.recruit-other-title h3 {
  margin-top: 0.7rem;
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 7.2px;
  line-height: 43.2px;
  color: #63502F;
}
.recruit-other-title h3 span {
  position: relative;
}
.recruit-other-title h3 span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.2rem;
  color: #F5C246;
  opacity: 0.25;
}
.recruit-other-title p {
  margin-top: 3rem;
  font-size: 1.5rem;
  letter-spacing: 4.5px;
  line-height: 15px;
  font-weight: bold;
  color: #F7821B;
}
@media print, screen and (max-width: 768px) {
  .recruit-other-title p {
    margin-top: 1rem;
    font-size: 1.8rem;
  }
}
.recruit-other-guide {
  position: relative;
  width: 100rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4.2rem auto;
}
@media print, screen and (max-width: 768px) {
  .recruit-other-guide {
    padding: 0 3rem;
    width: 100%;
  }
}
.recruit-other-guide img {
  width: 100%;
}
.recruit-other-guide p {
  position: absolute;
  top: 50%;
  left: 4rem;
  transform: translateY(-50%);
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  line-height: 24px;
  color: #63502F;
  background-color: #fff;
  padding: 0.72rem;
}
@media print, screen and (max-width: 768px) {
  .recruit-other-guide p {
    font-size: 1.8rem;
  }
}
.recruit-other-intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 640px) {
  .recruit-other-intro {
    padding: 0 3rem;
    grid-template-columns: repeat(1, 1fr);
  }
}
.recruit-other-item {
  position: relative;
}
.recruit-other-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(1px);
}
.recruit-other-item .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.recruit-other-item .text img {
  width: 100%;
  filter: blur(0px);
}
.recruit-other-item .text h4 {
  margin-top: 3rem;
  font-size: 1.8rem;
  letter-spacing: 1.5px;
  line-height: 18px;
  color: #fff;
}
.recruit-other-item .text p {
  margin-top: 1.8rem;
  font-size: 1.5rem;
  letter-spacing: 4.5px;
  line-height: 15px;
  color: #63502F;
  background-color: #fff;
  padding: 0.72rem;
  text-align: center;
}

.room {
  margin-top: 20rem;
}
.room-container {
  position: relative;
  display: flex;
  justify-content: flex-start;
}
@media print, screen and (max-width: 768px) {
  .room-container {
    display: block;
    padding: 0 3rem;
  }
}
.room-photo {
  order: 1;
}
.room-photo img {
  border-radius: 0 3rem 3rem 0;
  width: 57.8vw;
}
@media print, screen and (max-width: 768px) {
  .room-photo img {
    width: 100%;
  }
}

.roomdouble {
  margin-top: 20rem;
}
.roomdouble-container {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
@media print, screen and (max-width: 768px) {
  .roomdouble-container {
    display: block;
    padding: 0 3rem;
  }
}
.roomdouble-photo {
  order: 1;
}
.roomdouble-photo img {
  width: 57.8vw;
  border-radius: 3rem 0 0 3rem;
}
@media print, screen and (max-width: 768px) {
  .roomdouble-photo img {
    width: 100%;
  }
}
.roomdouble .catalog {
  left: 10%;
}
@media print, screen and (max-width: 768px) {
  .roomdouble .catalog {
    left: 0;
    bottom: 0;
    transform: translate(50%, -50%);
  }
}
@media only screen and (max-width: 640px) {
  .roomdouble .catalog {
    left: 0;
    bottom: 0;
    transform: translate(0%, 0%);
  }
}

.catalog {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 64rem;
  clip-path: polygon(0 20%, 50% 0, 100% 20%, 100% 100%, 0% 100%);
  background-color: #D7C3B6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media print, screen and (max-width: 768px) {
  .catalog {
    position: relative;
    left: 0;
    bottom: 0;
    transform: translate(50%, -50%);
  }
}
@media only screen and (max-width: 640px) {
  .catalog {
    width: 100%;
    transform: translate(0%, 0%);
  }
}
.catalog ._icn {
  margin-top: 3.6rem;
}
.catalog-title {
  margin-top: 2rem;
}
.catalog-title p {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 1.28px;
  line-height: 46.8px;
  color: #63502F;
}
.catalog-content {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 0 6rem 6.5rem 6rem;
}
.catalog-text {
  font-size: 1.4rem;
  letter-spacing: 1.28px;
  line-height: 28.8px;
  color: #654938;
}
@media print, screen and (max-width: 768px) {
  .catalog-text {
    font-size: 1.6rem;
  }
}
.catalog-list {
  background-color: #fff;
  border: 1px solid #000;
  padding: 2rem 2.5rem;
  width: 100%;
}
.catalog-list li {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.catalog-list li span {
  width: 1rem;
  height: 1rem;
  background-color: #577C8B;
  border-radius: 50%;
}
.catalog-list li p {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1.28px;
  line-height: 32.5px;
  color: #577C8B;
}
@media print, screen and (max-width: 768px) {
  .catalog-list li p {
    font-size: 1.4rem;
  }
}
.catalog-sign {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media print, screen and (max-width: 768px) {
  .catalog-sign {
    width: 50%;
  }
}
@media only screen and (max-width: 640px) {
  .catalog-sign {
    left: 0;
    width: 20%;
  }
}

._blue {
  background-color: #BDE0E1;
}

._yellow {
  background-color: #FFDF92;
}

._unset {
  background-color: unset;
}

._white {
  background-color: #fff;
}

.material {
  margin-top: 8.5rem;
}
.material-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media print, screen and (max-width: 768px) {
  .material-container {
    padding: 0 3rem;
  }
}
.material-header {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 1.2px;
  line-height: 56px;
  color: #654938;
  text-align: center;
}
.material-content {
  margin-top: 6.3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  gap: 10.7rem;
}
@media print, screen and (max-width: 768px) {
  .material-content {
    width: 100%;
    padding: 0 3rem;
    gap: 5rem;
  }
}
@media only screen and (max-width: 640px) {
  .material-content {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
}
.material-item {
  width: 35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
@media only screen and (max-width: 640px) {
  .material-item {
    width: 100%;
  }
}
.material-image img {
  width: 23.7rem;
  height: 23.7rem;
  border-radius: 50%;
  border: 3px solid #D7C3B6;
}
.material-title {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 1.2px;
  line-height: 33.6px;
  color: #003567;
}
.material-text p {
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  line-height: 25.5px;
  color: #2E3046;
}
@media only screen and (max-width: 640px) {
  .material-text p {
    font-size: 1.6rem;
  }
}
.material-properties {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #fff;
  border-radius: 2rem;
  padding: 0 2.4rem 1.6rem 2.4rem;
}
@media only screen and (max-width: 640px) {
  .material-properties {
    width: 100%;
  }
}
.material-properties .title {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.material-properties .title p {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1.88px;
  line-height: 31.9px;
  color: #2E3046;
}
.material-properties .title span {
  width: 0.2rem;
  height: 2.5rem;
  background-color: #E59E16;
}
.material-properties .title:last-child {
  margin-top: 1.6rem;
}
.material-properties .content {
  margin-top: 1.6rem;
}
.material-properties .content p {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  line-height: 25.5px;
  color: #2E3046;
}

.reason {
  padding: 0 8rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .reason {
    padding: 7rem 3rem;
  }
}
.reason-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.reason-title ._reason {
  position: absolute;
  top: 3rem;
  left: 0;
}
@media print, screen and (max-width: 768px) {
  .reason-title ._reason {
    top: -10rem;
    width: 50%;
    z-index: 1;
  }
}
.reason-title h2 {
  position: relative;
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 58.5px;
  letter-spacing: 2.2px;
  color: #4B615C;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.reason-title h2 span:first-child {
  display: flex;
  align-items: center;
}
.reason-title h2 span:first-child span {
  position: relative;
  z-index: 1;
}
.reason-title h2 span:first-child span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 3.2rem;
  background-color: #F5C246;
  opacity: 0.25;
  z-index: -1;
}
@media only screen and (max-width: 640px) {
  .reason-title h2 span:first-child span::before {
    bottom: 1rem;
  }
}
.reason-title ._underline {
  margin-top: 2rem;
}
.reason-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5.5rem;
}
.reason-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  .reason-item {
    grid-template-columns: 1fr;
  }
}
.reason-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reason-item:nth-child(2) .reason-img {
  order: 1;
}
@media only screen and (max-width: 640px) {
  .reason-item:nth-child(2) .reason-img {
    order: 0;
  }
}
.reason-item:nth-child(2) .reason-number span::after {
  content: "02";
}
.reason-item:nth-child(3) .reason-number span::after {
  content: "03";
}
.reason-item:nth-child(4) .reason-img {
  order: 1;
}
@media only screen and (max-width: 640px) {
  .reason-item:nth-child(4) .reason-img {
    order: 0;
  }
}
.reason-item:nth-child(4) .reason-number span::after {
  content: "04";
}
.reason-text {
  position: relative;
  padding: 0 8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  background-color: #fff;
    	min-height: 350px;
}
@media print, screen and (max-width: 768px) {
  .reason-text {
    padding: 3rem 3rem;
  }
}
.reason-text h3 {
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 48px;
  color: #4B615C;
}
@media print, screen and (max-width: 768px) {
  .reason-text h3 {
    font-size: 2.4rem;
    line-height: 30px;
  }
}
.reason-text p {
  font-size: 1.4rem;
  letter-spacing: 1.6px;
  line-height: 30px;
  color: #654938;
}
@media print, screen and (max-width: 768px) {
  .reason-text p {
    font-size: 1.6rem;
    line-height: 26px;
  }
}
.reason-number {
  position: absolute;
  top: 0;
  right: 0;
  width: 11rem;
  height: 11rem;
  border-bottom-left-radius: 100%;
  background-color: #F5C246;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reason-number span {
  position: relative;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 4.8rem;
  line-height: 56px;
  font-weight: bold;
  color: #000;
  margin-left: 2.5rem;
}
.reason-number span::after {
  position: absolute;
  content: "01";
  bottom: 0.3rem;
  left: 0.1rem;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 4.6rem;
  line-height: 56px;
  font-weight: bold;
  color: #fff;
}

@keyframes slideImages {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes slideImagesReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.slider {
  position: relative;
  padding: 60px 0 26px 0;
}
.slider img {
  width: 100%;
}
.slider-wrapper {
  width: 100%;
  margin: auto;
}
.slider-card {
  display: grid;
  grid-template-rows: 1fr 1fr;
  border: 0.5rem solid #DFD7C8;
  width: 38.6rem;
  height: 50rem;
}
@media print, screen and (max-width: 768px) {
  .slider-card {
    width: 35rem;
    height: 52rem;
  }
}
.slider-text {
  height: calc(50% - 1rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2.4rem;
  background-color: #ffffff;
}
@media print, screen and (max-width: 768px) {
  .slider-text {
    height: 50%;
  }
}
.slider-text h4 {
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 26px;
  color: #654938;
}
.slider-text h4::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #654938;
  margin-top: 1.2rem;
}
.slider-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.6rem;
  margin-top: 1.6rem;
}
.slider-content-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}
.slider-content-left p {
  padding: 0 0.6rem;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 26px;
  color: #654938;
  background-color: #FBF2DB;
  border-radius: 0.5rem;
}
.slider-content-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}
.slider-content-right p {
  font-size: 1.4rem;
  letter-spacing: 1.6px;
  line-height: 26px;
  color: #654938;
}
.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #EAB14D;
  border: none;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: white;
  font-size: 2.4rem;
  transition: all 0.3s ease;
}
.slider-nav-btn:hover {
  transform: translateY(-50%) scale(1.2);
}
.slider-nav-btn.prev-btn {
  left: 13rem;
}
@media only screen and (max-width: 640px) {
  .slider-nav-btn.prev-btn {
    left: 5rem;
  }
}
.slider-nav-btn.next-btn {
  right: 13rem;
}
@media only screen and (max-width: 640px) {
  .slider-nav-btn.next-btn {
    right: 5rem;
  }
}
.slider .slick-slide {
  margin: 1.6rem 1.6rem 0 1.6rem;
  width: 38.6rem;
  height: 50rem;
}
.slider .slick-dots li button:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}
.slider .slick-dots li.slick-active button:before {
  background: #4B615C;
}
.slider .slick-dots {
  top: -30px;
  bottom: auto;
}

.small-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.small-title h3 {
  font-size: 4.8rem;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 72px;
  color: #4B615C;
}
.small-title span {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 30px;
  color: #FF8430;
}

._nine {
  position: absolute;
  top: -18rem;
  left: 50%;
}

.wow {
  visibility: hidden;
}

._en {
  font-family: "Work Sans";
}

._vertical {
  writing-mode: vertical-lr;
}

.ml-2 {
  margin-left: 2rem !important;
}

.topFv {
  display: flex;
  justify-content: space-between;
  gap: 6.4px;
}
@media print, screen and (max-width: 1200px) {
  .topFv {
    flex-direction: column;
  }
}
.topFv img {
  width: 100%;
}
.topFv-left {
  position: relative;
  width: 41.226%;
}
@media print, screen and (max-width: 1200px) {
  .topFv-left {
    width: 100%;
  }
}
.topFv-right {
  position: relative;
  width: 58.375%;
}
@media print, screen and (max-width: 1200px) {
  .topFv-right {
    width: 100%;
  }
}
.topFv-right .top {
  height: 41.857%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
@media (max-width: 1440px) {
  .topFv-right .top {
    height: 40%;
  }
}
@media only screen and (max-width: 640px) {
  .topFv-right .top img {
    width: 50%;
  }
}
.topFv-right .middle {
  height: 56.955%;
  display: flex;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.topFv-right .middle-left {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 66.345%;
}
.topFv-right .middle-right {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 33.333%;
}
.topFv-title {
  position: absolute;
  top: 40px;
  left: 70px;
  z-index: 1;
}
@media only screen and (max-width: 640px) {
  .topFv-title {
    top: 5rem;
    left: 10rem;
  }
  .topFv-title img {
    width: 50%;
  }
}
.topFv-text {
  position: absolute;
  top: 241px;
  left: 85px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6.8px;
  margin-right: 59px;
}
@media only screen and (max-width: 640px) {
  .topFv-text {
    top: 10rem;
    left: 3rem;
    margin-right: 3rem;
  }
}
.topFv-text span {
  font-size: 28.95px;
  font-weight: bold;
  line-height: 47.6px;
  letter-spacing: 8.5px;
  padding: 10.2px 17px;
  color: #fff;
  background-color: #45768A;
}
@media only screen and (max-width: 640px) {
  .topFv-text span {
    font-size: 3.2rem;
    line-height: 36px;
    letter-spacing: 5.8px;
  }
}
.topFv-text p {
  font-size: 13px;
  letter-spacing: 1.28px;
  line-height: 32px;
  color: #fff;
  text-shadow: 0 2px 5px rgb(0, 0, 0);
  margin-top: 32.2px;
}
@media only screen and (max-width: 640px) {
  .topFv-text p {
    font-size: 1.6rem;
    line-height: 25px;
    letter-spacing: 1.28px;
  }
}
.topFv-contact {
  position: absolute;
  bottom: 10rem;
  right: 6.5rem;
}
@media print, screen and (max-width: 1200px) {
  .topFv-contact {
    margin: 0 auto;
    bottom: 50%;
    right: 0;
    transform: translateY(50%);
  }
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6.39px;
  margin-top: 16rem;
}
@media print, screen and (max-width: 768px) {
  .intro {
    grid-template-columns: 1fr;
    padding: 0 3rem;
  }
}
.intro-images__left {
  position: relative;
}
.intro-images__left ._first {
  position: absolute;
  top: 2.8rem;
  right: 0;
}
.intro-images__left ._leaf {
  position: absolute;
  top: -11rem;
  right: 0;
}
.intro-images__left ._second {
  position: absolute;
  top: 35rem;
  right: 20rem;
}
.intro-images__left ._shadow {
  position: absolute;
  top: 48rem;
  left: 9rem;
  z-index: -1;
}
.intro-images__left ._effect {
  position: absolute;
  top: 80rem;
  left: 0;
  width: 28.3rem;
  height: 50.2rem;
  background-color: #D7DAD3;
  z-index: -2;
  border-radius: 0 30px 30px 0;
  opacity: 0.5;
}
.intro-images__left ._third {
  position: absolute;
  top: 48rem;
  right: 2.7rem;
  border: 5px solid #f5f5f5;
  border-radius: 10px;
}
.intro-images__left ._fourth {
  position: absolute;
  top: 75rem;
  right: 5.4rem;
}
.intro-images__left ._vase {
  position: absolute;
  top: 90rem;
  right: -4.6rem;
}
.intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 2.4rem;
}
.intro-vison {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  line-height: 32px;
  letter-spacing: 1.2px;
  color: #4B615C;
}
@media print, screen and (max-width: 1200px) {
  .intro-vison {
    font-size: 2.4rem;
  }
}
.intro-vison span {
  text-align: center;
}
.intro-vison::before {
  content: "";
  position: absolute;
  top: 0;
  left: -6rem;
  height: 100%;
  width: 100%;
  background-image: url("../img/index/diagonal.png");
  background-repeat: no-repeat;
}
.intro-vison::after {
  content: "";
  position: absolute;
  top: 0;
  right: -6rem;
  height: 100%;
  width: 100%;
  background-image: url("../img/index/diagonal.png");
  background-repeat: no-repeat;
  transform: scaleX(-1);
}
.intro-logo {
  margin-top: 4.4rem;
}
.intro-title {
  margin-top: 5.7rem;
}
.intro-title h2 {
  position: relative;
  font-size: 4.369rem;
  font-weight: bold;
  line-height: 72px;
  letter-spacing: 2.4px;
  color: #4B615C;
  text-align: center;
  z-index: 1;
}
@media print, screen and (max-width: 1200px) {
  .intro-title h2 {
    font-size: 3.2rem;
    line-height: 50px;
  }
}
.intro-title h2::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: 0;
  width: 35rem;
  height: 3.2rem;
  background-color: #F5C246;
  border-radius: 0.8rem;
  z-index: -1;
  opacity: 0.3;
}
@media print, screen and (max-width: 1200px) {
  .intro-title h2::before {
    width: 25rem;
    height: 2.4rem;
  }
}
.intro-text {
  margin-top: 6.6rem;
}
.intro-text p {
  font-size: 1.438rem;
  line-height: 40px;
  letter-spacing: 1.6px;
  color: #63502F;
  text-align: center;
}
@media print, screen and (max-width: 1200px) {
  .intro-text p {
    font-size: 2rem;
    line-height: 32px;
    letter-spacing: 1.3px;
  }
}
.intro-btn {
  margin-top: 6.6rem;
}
.intro-images__right {
  position: relative;
}
.intro-images__right ._first {
  position: absolute;
  top: -2.8rem;
  left: 0;
  border: 5px solid #f5f5f5;
  border-radius: 10px;
}
.intro-images__right ._second {
  position: absolute;
  top: 9rem;
  left: 5.625rem;
  z-index: -1;
}
.intro-images__right ._shadow {
  position: absolute;
  top: 32rem;
  left: 7.5rem;
  z-index: -3;
}
.intro-images__right ._effect {
  position: absolute;
  top: -2.8rem;
  right: 0;
  width: 28.3rem;
  height: 50.2rem;
  background-color: #D7DAD3;
  z-index: -2;
  border-radius: 30px 0 0 30px;
  opacity: 0.5;
}
.intro-images__right ._third {
  position: absolute;
  top: 37rem;
  left: 29rem;
}
.intro-images__right ._firth {
  position: absolute;
  top: 53rem;
  left: 7.5rem;
}
.intro-images__right ._fifth {
  position: absolute;
  top: 82rem;
  left: 5.625rem;
}
.intro-images__right ._leaf2 {
  position: absolute;
  top: 76rem;
  left: 39rem;
}

.case {
  margin-top: 5.8rem;
  padding: 9.8rem 0 11rem 0;
  background-image: url("../img/index/case-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.case-title {
  text-align: center;
}
.case-title h2 {
  font-size: 5rem;
  letter-spacing: 2px;
}
.case-title h3 {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 58px;
  letter-spacing: 2.2px;
  color: #4B615C;
  text-align: center;
  margin-top: 7px;
}

.blog {
  position: relative;
  background-color: #e89252;
  padding: 12.4rem 30rem;
}
@media print, screen and (max-width: 768px) {
  .blog {
    padding: 10rem 3rem;
  }
}
.blog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 38rem;
  height: 100%;
  background-image: url("../img/index/blog-bg.png");
  background-repeat: no-repeat;
  background-position: center;
}
@media print, screen and (max-width: 768px) {
  .blog::before {
    display: none;
  }
}
.blog::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 38rem;
  height: 100%;
  background-image: url("../img/index/blog-bg.png");
  background-repeat: no-repeat;
  background-position: center;
}
@media print, screen and (max-width: 768px) {
  .blog::after {
    display: none;
  }
}
.blog-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.blog-header h2 {
  text-align: left;
  font-size: 5rem;
  line-height: 96px;
  letter-spacing: 2px;
}
.blog-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1.6rem;
  gap: 3.2rem;
}
@media print, screen and (max-width: 768px) {
  .blog-list {
    gap: 1.6rem;
  }
}
.blog-item {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.blog-title {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 20px;
  letter-spacing: 1.6px;
  color: #fff;
}
@media print, screen and (max-width: 768px) {
  .blog-title {
    font-size: 1.8rem;
  }
}
.blog-text {
  font-size: 1.2rem;
  line-height: 25px;
  letter-spacing: 1.2px;
  color: #fff;
}
@media print, screen and (max-width: 768px) {
  .blog-text {
    font-size: 1.4rem;
  }
}
.blog-date {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.blog-date p {
  font-size: 1.2rem;
  line-height: 25px;
  letter-spacing: 1.2px;
  color: #fff;
}
@media print, screen and (max-width: 768px) {
  .blog-date p {
    font-size: 1.4rem;
  }
}
.blog-date span {
  font-size: 1.2rem;
  line-height: 25px;
  letter-spacing: 1.2px;
  color: #fff;
  background-color: #F77943;
  padding: 0.2rem 1rem;
  border-radius: 20px;
  border: 1px solid #fff;
}
@media print, screen and (max-width: 768px) {
  .blog-date span {
    font-size: 1.4rem;
  }
}
.blog-btn {
  margin-top: 2.8rem;
  background-color: #FF7700;
}

.connect {
  position: relative;
  margin-top: 10rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
@media print, screen and (max-width: 768px) {
  .connect {
    grid-template-columns: 1fr;
  }
}
.connect-title-illu {
  position: absolute;
  top: -15rem;
  left: 0;
	z-index: -1;
}
.connect-title-illu img {
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .connect-title-illu img {
    width: 50%;
  }
}
.connect-photo img {
  width: 100%;
}
.connect-text {
  padding-right: 14.4rem;
  padding-left: 11.2rem;
}
@media print, screen and (max-width: 768px) {
  .connect-text {
    padding: 5rem;
  }
}
.connect-title {
  position: relative;
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 60px;
  color: #4B615C;
}
@media print, screen and (max-width: 768px) {
  .connect-title {
    line-height: 52px;
    text-align: center;
  }
}
.connect-title::before {
  position: absolute;
  content: "";
  top: 2.7rem;
  left: 0;
  width: 45.2rem;
  height: 3.2rem;
  background-color: #f5c246;
  z-index: -1;
  opacity: 0.25;
}
.connect-description p {
  margin-top: 1.4rem;
  font-size: 1.4rem;
  letter-spacing: 1.6px;
  line-height: 40px;
  color: #63502F;
}
@media print, screen and (max-width: 768px) {
  .connect-description p {
    font-size: 1.6rem;
    line-height: 32px;
  }
}

.voice {
  position: relative;
  margin-top: 11.4rem;
  background-image: url(../img/about/voice-bg.png);
  padding-top: 8.7rem;
  height: 127.4rem;
}
@media print, screen and (max-width: 1200px) {
  .voice {
    height: 100%;
  }
}
.voice-title h2 {
  font-family: "Noto Serif JP";
  font-size: 96px;
  letter-spacing: 12px;
  line-height: 96px;
  color: #F5C246;
}
@media print, screen and (max-width: 768px) {
  .voice-title h2 {
    font-size: 64px;
    line-height: 64px;
  }
}
.voice-title p {
  margin-top: 0.3rem;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 1.8px;
  line-height: 56px;
  color: #4B615C;
  text-align: center;
}
.voice-illu {
  position: relative;
  text-align: center;
  margin-top: 9.5rem;
}
.voice-illu::after {
  position: absolute;
  content: "";
  top: 10rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background-color: #fff;
}
.voice-main {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 9.5rem;
}
@media print, screen and (max-width: 768px) {
  .voice-main {
    margin-top: 0;
  }
}
.voice-main::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background-color: #fff;
}
.voice-main img {
  width: 100%;
}
.voice-main ._sunline {
  width: 32rem;
  height: 15.4rem;
}
.voice-main ._hand {
  width: 18.6rem;
  height: 17rem;
  z-index: 1;
}
.voice-main h3 {
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 60px;
  color: #4B615C;
  z-index: 1;
}
@media print, screen and (max-width: 768px) {
  .voice-main h3 {
    font-size: 3.2rem;
    line-height: 40px;
  }
}
.voice-main p {
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 1.2px;
  line-height: 56px;
  color: #FF6200;
  z-index: 4;
}
@media print, screen and (max-width: 768px) {
  .voice-main p {
    font-size: 3.2rem;
    line-height: 40px;
  }
}
.voice-person-first {
  position: absolute;
  top: 15rem;
  left: 10rem;
}
.voice-person-first p {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1.2px;
  line-height: 30px;
  color: #63502F;
  text-align: center;
}
.voice-person-first .illu01 {
  width: 48.8rem;
  height: 28.6rem;
  background-image: url(../img/about/person-illu01.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.voice-person-first .illu01 p {
  margin-top: 8rem;
  display: inline-block;
}
.voice-person-first .photo01 {
  position: absolute;
  top: 25rem;
  left: -2rem;
  width: 42rem;
}
.voice-person-first .photo01 img {
  width: 100%;
}
.voice-person-first .illu02 {
  position: absolute;
  top: 48rem;
  left: 3rem;
  width: 13rem;
}
.voice-person-first .leaf {
  position: absolute;
  top: 20rem;
  left: 30rem;
  width: 8rem;
}
.voice-person-first .leaf img {
  width: 100%;
}
.voice-person-second {
  position: absolute;
  top: 64rem;
  left: 35rem;
}
.voice-person-second p {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1.2px;
  line-height: 30px;
  color: #63502F;
  text-align: center;
}
.voice-person-second .photo01 {
  width: 33rem;
}
.voice-person-second .photo01 img {
  width: 100%;
}
.voice-person-second .illu03 {
  position: absolute;
  top: 17rem;
  left: -27rem;
  width: 52rem;
  height: 28.6rem;
  background-image: url(../img/about/person-illu02.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.voice-person-second .illu03 p {
  margin-top: 13rem;
  display: inline-block;
}
.voice-person-second .illu03 .star01 {
  position: absolute;
  top: 6rem;
  left: 50rem;
  width: 10rem;
}
.voice-person-third {
  position: absolute;
  top: 0rem;
  right: 10rem;
}
.voice-person-third p {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1.2px;
  line-height: 30px;
  color: #63502F;
  text-align: center;
}
.voice-person-third .photo01 {
  position: absolute;
  top: 42rem;
  right: 13rem;
  width: 33rem;
  z-index: 1;
}
.voice-person-third .photo01 img {
  width: 100%;
}
.voice-person-third .illu04 {
  z-index: 2;
  position: absolute;
  top: 20rem;
  right: -5rem;
  width: 52rem;
  height: 25rem;
  background-image: url(../img/about/person-illu03.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.voice-person-third .illu04 p {
  margin-top: 2rem;
  display: inline-block;
}
.voice-person-third .illu04 .heart01 {
  position: absolute;
  top: 5rem;
  left: -10rem;
  width: 7rem;
}
.voice-person-third .illu04 .star02 {
  position: absolute;
  top: 34rem;
  right: 12rem;
  width: 12rem;
}
.voice-person-fourth {
  position: absolute;
  top: 62rem;
  right: 10rem;
}
.voice-person-fourth img {
  width: 100%;
}
.voice-person-fourth p {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1.2px;
  line-height: 30px;
  color: #63502F;
  text-align: center;
}
.voice-person-fourth .photo01 {
  position: absolute;
  top: 0rem;
  right: 10rem;
  width: 41rem;
}
.voice-person-fourth .illu05 {
  position: absolute;
  top: 24rem;
  right: 20rem;
  width: 52rem;
  height: 26.6rem;
  background-image: url(../img/about/person-illu04.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.voice-person-fourth .illu05 p {
  margin-top: 8rem;
  display: inline-block;
}
.voice-person-first-sp {
  padding: 3rem;
}
.voice-person-first-sp-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 640px) {
  .voice-person-first-sp-text {
    grid-template-columns: 1fr;
  }
}
.voice-person-first-sp-text .photo01 img {
  width: 100%;
}
.voice-person-first-sp-text p {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1.2px;
  line-height: 30px;
  color: #63502F;
  text-align: center;
}
.voice-person-second-sp {
  padding: 3rem;
}
.voice-person-second-sp-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 640px) {
  .voice-person-second-sp-text {
    grid-template-columns: 1fr;
  }
}
.voice-person-second-sp-text .photo01 {
  order: 1;
}
@media only screen and (max-width: 640px) {
  .voice-person-second-sp-text .photo01 {
    order: 0;
  }
}
.voice-person-second-sp-text .photo01 img {
  width: 100%;
}
.voice-person-second-sp-text p {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1.2px;
  line-height: 30px;
  color: #63502F;
  text-align: center;
}
.voice-person-third-sp {
  padding: 3rem;
}
.voice-person-third-sp-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 640px) {
  .voice-person-third-sp-text {
    grid-template-columns: 1fr;
  }
}
.voice-person-third-sp-text .photo01 img {
  width: 100%;
}
.voice-person-third-sp-text p {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1.2px;
  line-height: 30px;
  color: #63502F;
  text-align: center;
}
.voice-person-fourth-sp {
  padding: 3rem;
}
.voice-person-fourth-sp-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 640px) {
  .voice-person-fourth-sp-text {
    grid-template-columns: 1fr;
  }
}
.voice-person-fourth-sp-text .photo01 {
  order: 1;
}
@media only screen and (max-width: 640px) {
  .voice-person-fourth-sp-text .photo01 {
    order: 0;
  }
}
.voice-person-fourth-sp-text .photo01 img {
  width: 100%;
}
.voice-person-fourth-sp-text p {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1.2px;
  line-height: 30px;
  color: #63502F;
  text-align: center;
}

.connect-description p {
  margin-top: 1.4rem;
  font-size: 1.6rem;
}
.connect-author {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.connect-author p {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 40px;
  color: #63502F;
}

.work-photos {
  margin-top: 10.7rem;
  padding: 0 16rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media only screen and (max-width: 640px) {
  .work-photos {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 3rem;
  }
}
.work-photos img {
  width: 100%;
  border-radius: 20px;
}
@media only screen and (max-width: 640px) {
  .work-photos img {
    width: 100%;
  }
}

.corporate {
  margin-top: 23.5rem;
  position: relative;
}
.corporate ._service {
  position: absolute;
  top: -12rem;
  left: 0;
}
@media print, screen and (max-width: 768px) {
  .corporate ._service {
    top: -10rem;
    width: 50%;
    z-index: 1;
  }
}
.corporate-philosophy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media print, screen and (max-width: 1200px) {
  .corporate-philosophy {
    padding: 0 3rem;
  }
}
.corporate-philosophy-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media print, screen and (max-width: 1200px) {
  .corporate-philosophy-content {
    margin-top: 6.8rem;
  }
}
.corporate-philosophy-item {
  margin: auto;
  margin-top: 4rem;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 6.2rem 29.8rem;
}
@media only screen and (max-width: 640px) {
  .corporate-philosophy-item {
    padding: 6.2rem 10rem;
  }
}
.corporate-manage {
  margin-top: 8rem;
}
.corporate-manage .small-title {
  text-align: center;
}
.corporate-manage .small-title p {
  margin-top: 5rem;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 35.2px;
  color: #63502F;
}
@media print, screen and (max-width: 1200px) {
  .corporate-manage .small-title p {
    margin-top: 3rem;
    font-size: 1.6rem;
  }
}
.corporate-manage-content {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.8rem;
  padding: 0 30rem;
}
@media print, screen and (max-width: 1200px) {
  .corporate-manage-content {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 3rem;
  }
}
.corporate-manage-item {
  background-color: #fff;
  border-radius: 20px;
  padding: 4.5rem 9.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.corporate-manage-item h4 {
  font-size: 3.8rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 57.6px;
  color: #63502F;
}
.corporate-manage-item p {
  font-size: 1.5rem;
  letter-spacing: 1.6px;
  line-height: 35.2px;
  color: #63502F;
}
.corporate-guide {
  margin-top: 8rem;
}
.corporate-guide-content {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.8rem;
  padding: 0 30rem;
}
@media print, screen and (max-width: 1200px) {
  .corporate-guide-content {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 3rem;
  }
}
.corporate-guide-item {
  background-color: #fff;
  border-radius: 20px;
  padding: 4.5rem 9.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.corporate-guide-item h4 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 57.6px;
  color: #63502F;
}
.corporate-guide-item p {
  font-size: 1.5rem;
  letter-spacing: 1.6px;
  line-height: 35.2px;
  color: #63502F;
}

.summary {
  position: relative;
  margin-top: 19rem;
}
.summary ._company {
  position: absolute;
  top: -3rem;
  left: 0;
}
@media print, screen and (max-width: 768px) {
  .summary ._company {
    top: 2rem;
    width: 50%;
    z-index: 1;
  }
}
.summary-title h2 {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 1.2px;
  line-height: 56px;
  color: #4B615C;
}
.summary-photo {
  margin-top: 3.8rem;
}
.summary-photo img {
  width: 100%;
}
.summary-content {
  margin-top: 6.6rem;
  padding: 0 40.3rem;
}
@media print, screen and (max-width: 1200px) {
  .summary-content {
    padding: 0 3rem;
  }
}
.summary-content .company-info {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  letter-spacing: 0.43px;
  line-height: 28px;
  color: #63502F;
}
@media print, screen and (max-width: 768px) {
  .summary-content .company-info {
    font-size: 2rem;
  }
}
.summary-content .company-info tr {
  border-bottom: 1px solid #e0e0e0;
}
.summary-content .company-info th {
  width: 232px;
  padding: 2.1rem;
  text-align: left;
  vertical-align: middle;
  font-weight: bold;
  border-bottom: 2px solid #000;
  border-right: 1rem solid transparent;
}
.summary-content .company-info td {
  padding: 2.1rem;
  text-align: left;
  vertical-align: middle;
}
.summary-content ._address {
  display: inline-block;
  margin-bottom: 3.3rem;
}
.summary-content ._contact {
  display: inline-block;
  margin-bottom: 0.5rem;
}
.summary-content ._social {
  display: inline-block;
  margin-bottom: 2rem;
}
.summary-content a {
  color: #63502F;
  text-decoration: underline;
}
.summary-content a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .summary-content .company-info th {
    width: 120px;
    padding: 0.75rem;
  }
  .summary-content .company-info td {
    padding: 0.75rem;
  }
}

.area {
  margin-top: 18.6rem;
  margin-bottom: 11.4rem;
}

.access {
  position: relative;
  padding: 11.3rem 32rem 17.8rem 32rem;
  background-image: url(../img/common/case-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media print, screen and (max-width: 768px) {
  .access {
    padding: 11.3rem 3rem 17.8rem 3rem;
  }
}
.access-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.access-title ._access {
  position: absolute;
  top: -8rem;
  left: 10rem;
}
@media print, screen and (max-width: 768px) {
  .access-title ._access {
    top: 2rem;
    left: 0;
    width: 50%;
  }
}
.access-title h2 {
  font-size: 5rem;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 96px;
}
.access-title p {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 2.2px;
  line-height: 58.5px;
  color: #4B615C;
}
.access-content {
  margin-top: 6.2rem;
}
.access-content .access-map {
  width: 100%;
  height: 100%;
}
.access-content .access-map iframe {
  width: 100%;
}

.qa {
  font-family: "Noto Sans JP";
  margin-top: 18.3rem;
}
@media only screen and (max-width: 640px) {
  .qa {
    margin-top: 5rem;
  }
}
.qa-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  justify-content: center;
  gap: 2.5rem;
  padding: 0 30rem;
}
@media only screen and (max-width: 640px) {
  .qa-container {
    padding: 0 3rem;
    grid-template-columns: repeat(1, 1fr);
  }
}
.qa-header {
  background-color: #45768A;
  padding: 1.6rem 0;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.8px;
  line-height: 24px;
}
.qa-content {
  position: relative;
  padding: 1.5rem 2rem 0 2rem;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  height: 21.8rem;
}
@media print, screen and (max-width: 1200px) {
  .qa-content {
    height: 25rem;
  }
}
@media print, screen and (max-width: 768px) {
  .qa-content {
    height: 32rem;
  }
}
.qa-item {
  width: 31.6rem;
  height: 27.4rem;
}
@media print, screen and (max-width: 1200px) {
  .qa-item {
    margin-top: 3rem;
  }
}
@media print, screen and (max-width: 768px) {
  .qa-item {
    margin-top: 12rem;
  }
}
@media only screen and (max-width: 640px) {
  .qa-item {
    width: 100%;
    height: 30rem;
  }
}
.qa-text {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 0.5px solid #2A160A;
  padding: 1rem 1.3rem 1rem 0;
}
@media only screen and (max-width: 640px) {
  .qa-text {
    padding: 3rem 1.3rem 1rem 0;
  }
}
.qa-text span {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #45768A;
  font-size: 1.8rem;
  letter-spacing: 0.8px;
  color: #fff;
  padding: 0.5rem 1rem;
}
.qa-text p {
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  letter-spacing: 0.8px;
  line-height: 24px;
  color: #2A160A;
}
@media print, screen and (max-width: 768px) {
  .qa-text p {
    font-size: 1.8rem;
  }
}
.qa-more-btn {
  text-align: center;
}
.qa-more-btn a {
  font-size: 1.4rem;
  letter-spacing: 0.8px;
  line-height: 24px;
  color: #2A160A;
  position: absolute;
  bottom: 1.5rem;
  right: 6.5rem;
}
@media print, screen and (max-width: 768px) {
  .qa-more-btn a {
    right: 2rem;
    font-size: 1.8rem;
  }
}

.service {
  margin-top: 20rem;
}

.single-qa {
  font-family: "Noto Sans JP", serif;
  margin-top: 20rem;
}
.single-qa-container {
  width: 100rem;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .single-qa-container {
    width: 90%;
  }
}
@media only screen and (max-width: 640px) {
  .single-qa-container {
    width: 95%;
  }
}
.single-qa-header {
  background-color: #45768A;
  padding: 0.5rem 1.3rem;
  color: #fff;
  text-align: left;
}
.single-qa-header p {
  font-family: "Noto Sans JP", serif;
  font-size: 2.4rem;
  letter-spacing: 1.2px;
  line-height: 36px;
}
@media only screen and (max-width: 640px) {
  .single-qa-header p {
    font-size: 2.2rem;
    line-height: 32px;
  }
}
.single-qa-item .question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 0.5px solid #2A160A;
  padding: 1rem 1.3rem 1rem 0;
}
@media only screen and (max-width: 640px) {
  .single-qa-item .question {
    padding: 1.5rem 1rem;
  }
}
.single-qa-item .question .text {
  font-family: "Noto Sans JP", serif;
  font-size: 1.6rem;
  letter-spacing: 0.8px;
  line-height: 24px;
  color: #2A160A;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 640px) {
  .single-qa-item .question .text {
    font-size: 1.8rem;
    gap: 1.5rem;
  }
}
.single-qa-item .question .text span {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #45768A;
  font-size: 1.8rem;
  letter-spacing: 0.8px;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  .single-qa-item .question .text span {
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
    font-size: 1.8rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.single-qa-item .question .arrow-btn i {
  transition: transform 0.3s ease;
}
.single-qa-item .question .arrow-btn.active i {
  transform: rotate(180deg);
}
.single-qa-item .answer {
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
  height: 0;
  overflow: hidden;
}
.single-qa-item .answer.active {
  display: flex;
  opacity: 1;
  height: auto;
  margin-top: 1.6rem;
  margin-left: 5rem;
  align-items: center;
  gap: 2rem;
  background-color: #fff;
  padding: 1.75rem 2rem;
}
@media print, screen and (max-width: 768px) {
  .single-qa-item .answer.active {
    margin-left: 3rem;
  }
}
@media only screen and (max-width: 640px) {
  .single-qa-item .answer.active {
    margin-left: 1.5rem;
    padding: 2rem 1.5rem;
  }
}
.single-qa-item .answer span {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #F5C246;
  font-size: 1.8rem;
  letter-spacing: 0.8px;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  .single-qa-item .answer span {
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
    font-size: 1.8rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 640px) {
  .single-qa-item .answer p {
    font-size: 1.8rem;
    line-height: 28px;
  }
}
.single-qa-btn {
  margin-top: 6rem;
  text-align: center;
  display: flex;
  justify-content: center;
}
.single-qa-btn a {
  font-size: 1.6rem;
  letter-spacing: 1.28px;
  line-height: 16px;
  color: #63502F;
  width: 38rem;
  height: 5rem;
  background-color: #F5C246;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.7rem auto;
}

.step {
  margin-top: 9rem;
  display: flex;
  justify-content: center;
}
.step-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7rem;
  width: 100rem;
}
@media only screen and (max-width: 640px) {
  .step-container {
    padding: 0 3rem;
    width: 100%;
  }
}
.step-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  padding: 1rem;
  background-color: #fff;
}
.step-number {
  position: absolute;
  top: -6rem;
  left: -7rem;
}
@media print, screen and (max-width: 768px) {
  .step-number {
    top: -5rem;
    left: -5rem;
  }
  .step-number img {
    width: 50%;
  }
}
@media only screen and (max-width: 640px) {
  .step-number {
    top: -5rem;
    left: -3rem;
  }
}
.step-img {
  width: 100%;
  height: 100%;
}
.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step-text h3 {
  position: relative;
  font-family: "Noto Sans JP", serif;
  font-size: 2rem;
  color: #2A160A;
  letter-spacing: 0.4px;
  line-height: 30px;
  z-index: 1;
}
.step-text h3 span {
  position: relative;
}
.step-text h3 span::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 110%;
  height: 1rem;
  background-color: #F0BB87;
  z-index: -1;
}
.step-text p {
  margin-top: 2rem;
  font-family: "Noto Sans JP", serif;
  font-size: 1.6rem;
  color: #2A160A;
  letter-spacing: 0.8px;
  line-height: 30px;
}

.reason {
  position: relative;
  margin-top: 23rem;
}
.reason h2 {
  color: #63502F;
}
.reason ._nine {
  position: absolute;
  top: -20rem;
  left: 50%;
}

.apply {
  margin-top: 8.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.apply h3 {
  margin-top: 3.4rem;
  color: #333;
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 5.04px;
  line-height: 66.6px;
}
.apply p {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 32px;
  color: #333;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .apply p {
    font-size: 2rem;
    line-height: 28px;
  }
}
.apply-btn {
  margin-top: 4.5rem;
}

.introduce {
  margin-top: 7.4rem;
  padding-bottom: 4rem;
  background-image: url(../img/staff/bg.png);
}
.introduce ._bg-line {
  margin-top: 4rem;
  width: 100%;
}
.introduce .bg-line:last-child {
  width: 100%;
  margin-top: 12.6rem;
}
.introduce-title {
  margin-top: 4.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.introduce-title h3 {
  margin-top: 0.8rem;
  font-size: 3.8rem;
  font-weight: bold;
  letter-spacing: 4px;
  line-height: 64px;
  color: #63502F;
}
.introduce-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.introduce-content {
  margin-top: 4rem;
}
.introduce-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.12rem;
  align-items: center;
}
@media print, screen and (max-width: 768px) {
  .introduce-item {
    grid-template-columns: 1fr;
  }
}
.introduce-item:nth-child(1) .introduce-text {
  margin-left: 8rem;
}
@media print, screen and (max-width: 768px) {
  .introduce-item:nth-child(1) .introduce-text {
    margin-left: 0;
    padding: 0 3rem;
  }
}
.introduce-item:nth-child(2) {
  margin-top: 8rem;
}
.introduce-item:nth-child(2) .introduce-img {
  order: 1;
}
@media print, screen and (max-width: 768px) {
  .introduce-item:nth-child(2) .introduce-img {
    order: 0;
  }
}
.introduce-item:nth-child(2) .introduce-text {
  margin-left: 8rem;
}
@media print, screen and (max-width: 768px) {
  .introduce-item:nth-child(2) .introduce-text {
    margin-left: 0;
    padding: 0 3rem;
  }
}
.introduce-text .title {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.introduce-text .title span {
  position: relative;
  width: 0.56rem;
  height: 2.7rem;
  background-color: #F0A163;
  border-radius: 0.56rem;
}
.introduce-text .title p {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1.28px;
  line-height: 25.2px;
  color: #333333;
}
@media print, screen and (max-width: 768px) {
  .introduce-text .title p {
    font-size: 2.4rem;
  }
}
.introduce-text .name {
  font-size: 2rem;
  letter-spacing: 1.6px;
  line-height: 34.6px;
  color: #333333;
}
.introduce-text p {
  font-size: 1.4rem;
  letter-spacing: 1.28px;
  line-height: 28.8px;
  color: #333333;
}
@media print, screen and (max-width: 768px) {
  .introduce-text p {
    font-size: 2rem;
  }
}
.introduce-text table {
  width: 52.3rem;
  margin-top: 0.8rem;
}
.introduce-text table tr {
  padding: 1.64rem 3.1rem;
  background-color: #577C8B;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1.28px;
  line-height: 28.8px;
  color: #FFFFFF;
  border: 2px solid #d3d3d3;
}
.introduce-text table th {
  border-right: 2px solid #d3d3d3;
}
.introduce-text table td {
  padding: 1.64rem 1.7rem;
  background-color: #fff;
  font-size: 1.5rem;
  letter-spacing: 1.28px;
  line-height: 28.8px;
  color: #333333;
}
.introduce-text ul {
  margin-top: 1.6rem;
  margin-left: 1.1rem;
}
.introduce-text ul li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.introduce-text ul li span {
  width: 1rem;
  height: 1rem;
  background-color: #577C8B;
  border-radius: 50%;
}
.introduce-text ul li p {
  font-size: 1.4rem;
  letter-spacing: 1.28px;
  line-height: 28.8px;
  color: #333333;
}
@media print, screen and (max-width: 768px) {
  .introduce-text ul li p {
    font-size: 2rem;
  }
}

.staff {
  position: relative;
  margin-top: 40rem;
  padding: 0 23.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media print, screen and (max-width: 1200px) {
  .staff {
    padding: 0 10rem;
  }
}
@media print, screen and (max-width: 768px) {
  .staff {
    padding: 0 3rem;
  }
}
.staff ._nine {
  position: absolute;
  top: -18rem;
  left: 50%;
}
.staff-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.staff-title h3 {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 8px;
  line-height: 56px;
  color: #63502F;
}
.staff-title img {
  margin-top: 3rem;
}
.staff-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: flex-start;
  gap: 2.4rem;
  margin-top: 5.8rem;
}
@media print, screen and (max-width: 1200px) {
  .staff-content {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
@media only screen and (max-width: 640px) {
  .staff-content {
    grid-template-columns: 1fr;
  }
}
.staff-item {
  width: 35.3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  .staff-item {
    width: 100%;
  }
}
.staff-item img {
  width: 100%;
}
.staff-item span {
  margin-left: 12rem;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 30px;
  color: #216DB9;
}
@media print, screen and (max-width: 768px) {
  .staff-item span {
    font-size: 2.4rem;
  }
}
.staff-item ._nickname {
  font-size: 1.4rem;
  letter-spacing: 2px;
  line-height: 25.2px;
  color: #333333;
  margin-left: 10rem;
}
@media print, screen and (max-width: 768px) {
  .staff-item ._nickname {
    font-size: 2rem;
  }
}
.staff-text {
  margin-top: 1.1rem;
  padding-top: 0.65rem;
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff-text p {
  font-family: "Open Sans", serif;
  font-size: 1.8rem;
  letter-spacing: 0.2px;
  line-height: 27px;
  color: #222222;
}
@media print, screen and (max-width: 768px) {
  .staff-text p {
    font-size: 2rem;
  }
}
.staff-position {
  width: 12rem;
}
.staff-description {
  width: calc(100% - 12rem);
}

.work {
  margin-top: 7.3rem;
}
.work-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6rem;
  padding: 0 15.6rem;
}
@media print, screen and (max-width: 768px) {
  .work-container {
    padding: 0 5rem;
  }
}
.work-item {
  display: flex;
  align-items: flex-start;
  gap: 6.7rem;
}
@media print, screen and (max-width: 768px) {
  .work-item {
    flex-direction: column;
  }
}
.work-item img {
  border-radius: 3rem;
}
@media print, screen and (max-width: 768px) {
  .work-item img {
    width: 100%;
  }
}
.work-title {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 1rem;
}
.work-title p {
  font-size: 2.6rem;
  line-height: 33.8px;
  color: #63502F;
}
@media print, screen and (max-width: 768px) {
  .work-title p {
    font-size: 3.2rem;
  }
}
.work-title span {
  position: relative;
  width: 0.5rem;
  height: 2.7rem;
  background: linear-gradient(to bottom, #FFE68F 0%, #FFE68F 50%, #002063 50%, #002063 100%);
}
.work-content {
  padding-top: 2.5rem;
  border-top: 2px solid #FFE68F;
}
.work-content p {
  font-size: 1.8rem;
  line-height: 34px;
  color: #654938;
}
@media print, screen and (max-width: 768px) {
  .work-content p {
    font-size: 2rem;
  }
}

.conditions {
  position: relative;
  margin-top: 26.5rem;
}
.conditions-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.conditions-title h3 {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 8px;
  line-height: 56px;
  color: #E96836;
  text-align: center;
}
.conditions-title img {
  margin-top: 3rem;
}
.conditions-contents {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media print, screen and (max-width: 768px) {
  .conditions-contents {
    padding: 0 3rem;
  }
}
.conditions-item {
  margin-top: 8.2rem;
}
@media print, screen and (max-width: 768px) {
  .conditions-item {
    margin-top: 4rem;
    width: 100%;
  }
}
.conditions-item .title {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 1.1rem;
}
.conditions-item .title span {
  position: relative;
  width: 0.5rem;
  height: 2.7rem;
  background: linear-gradient(to bottom, #FFE68F 0%, #FFE68F 50%, #002063 50%, #002063 100%);
}
.conditions-item .title p {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 28.6px;
  color: #262626;
  margin-left: 1.5rem;
}
.conditions-item .content {
  border-top: 2px solid #FFE68F;
  width: 84.8rem;
  padding-top: 2.6rem;
}
@media print, screen and (max-width: 768px) {
  .conditions-item .content {
    width: 100%;
  }
}
.conditions-item .content table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #fff;
}
.conditions-item .content table tr:first-child {
  background-color: #45768A;
  color: #FFFFFF;
  font-weight: bold;
}
.conditions-item .content table tr {
  padding: 1.64rem 3.1rem;
  background-color: #F6F6F6;
  font-size: 1.6rem;
  color: #262626;
  border: 2px solid #fff;
}
.conditions-item .content table td {
  padding: 0.8rem 3rem;
  font-size: 1.6rem;
  vertical-align: middle;
  text-align: center;
}
.conditions-item .content table th {
  font-weight: bold;
  border-right: 2px solid #fff;
  vertical-align: middle;
}

.apply {
  margin-top: 13.4rem;
}

.roof-menu {
  margin-top: 14.7rem;
}
@media only screen and (max-width: 640px) {
  .roof-menu {
    margin-top: 10rem;
    padding: 0 3rem;
  }
}
.roof-menu-container {
  position: relative;
  margin: 0 auto;
  width: 100rem;
  background-color: #fff;
  padding: 0 4.5rem;
  border-radius: 2rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 640px) {
  .roof-menu-container {
    padding: 0 3rem;
    width: 100%;
  }
}
.roof-menu h2 {
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Noto Serif JP", serif;
  font-size: 6.4rem;
  letter-spacing: 12px;
  line-height: 96px;
}
@media print, screen and (max-width: 1200px) {
  .roof-menu h2 {
    top: -6rem;
  }
}
@media print, screen and (max-width: 768px) {
  .roof-menu h2 {
    top: -8rem;
  }
}
.roof-menu-header {
  text-align: center;
  padding: 1.5rem 0;
  border-bottom: 1px dotted #E96836;
}
.roof-menu-header h3 {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 1.8px;
  line-height: 56px;
  color: #63402f;
}
.roof-menu-content {
  margin-top: 3rem;
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
@media only screen and (max-width: 640px) {
  .roof-menu-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
.roof-menu-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.roof-menu-item img {
  width: 100%;
  border-radius: 2rem;
}
.roof-menu-title {
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.roof-menu-title p {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 16px;
}
.roof-menu-title i {
  font-size: 2.4rem;
  color: #E96836;
}

.room-photos {
  margin-top: 7.8rem;
}
.room-photos-container {
  padding: 0 14.7rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media print, screen and (max-width: 768px) {
  .room-photos-container {
    padding: 0 3rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 640px) {
  .room-photos-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.room-photos-container img {
  width: 100%;
  border: 1px solid #000;
}

.other-material {
  margin-top: 11.8rem;
  padding-top: 12rem;
  padding-bottom: 17rem;
}
@media only screen and (max-width: 640px) {
  .other-material {
    padding-bottom: 5rem;
  }
}
.other-material-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.other-material-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.other-material-title h3 {
  font-size: 3.8rem;
  font-weight: bold;
  letter-spacing: 8px;
  line-height: 56px;
  color: #654938;
  text-align: center;
}
.other-material-title img {
  margin-top: 3rem;
}
.other-material-content {
  margin-top: 6.4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.5rem;
}
@media only screen and (max-width: 640px) {
  .other-material-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
.other-material-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.other-material-item img {
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
}
.other-material-item span {
  margin-top: 1.6rem;
  padding: 0.4rem 1.8rem;
  background-color: #B1E1D9;
  border-radius: 25rem;
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 0.77px;
  line-height: 34.6px;
  color: #575252;
}
.other-material-btn {
  margin-top: 3.2rem;
  margin-right: 14.7rem;
  display: flex;
  justify-content: flex-end;
}
.other-material-btn a {
  font-size: 2rem;
  letter-spacing: 2.24px;
  line-height: 40px;
  color: #575252;
}

.service02 {
  padding-top: 18rem;
}
.service02 ._service {
  top: 14rem;
}
@media print, screen and (max-width: 768px) {
  .service02 ._service {
    top: 0rem;
  }
}

.archivetitle {
  margin: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7.8rem;
}
.archivetitle-text h3 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 3.2px;
  line-height: 42.6px;
  color: #FF8430;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .archivetitle-text h3 {
    font-size: 2.5rem;
  }
}
.archivetitle-text p {
  width: 55rem;
  margin-top: 1.7rem;
  font-size: 1.4rem;
  letter-spacing: 1.6px;
  line-height: 29.6px;
  color: #654938;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .archivetitle-text p {
    font-size: 2rem;
  }
}

.examples {
  margin-top: 7.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5.6rem;
}
@media only screen and (max-width: 640px) {
  .examples {
    padding: 0 3rem;
    flex-direction: column;
  }
}
.examples-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.examples-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
.examples-item {
  width: 36.5rem;
  height: 47.8rem;
  border: 0.5rem solid #DFD7C8;
}
@media only screen and (max-width: 640px) {
  .examples-item {
    width: 100%;
  }
}
.examples-img {
  width: 100%;
  height: 25rem;
}
.examples-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.examples-text {
  height: 21.8rem;
  padding: 2.8rem;
  background-color: #fff;
}
@media print, screen and (max-width: 768px) {
  .examples-text {
    padding: 1.5rem;
  }
}
.examples-title p {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 26.9px;
  color: #654938;
}
.examples-property {
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid #DFD7C8;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media print, screen and (max-width: 768px) {
  .examples-property {
    padding-top: 0.8rem;
    margin-top: 0.8rem;
  }
}
.examples-name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.examples-name span {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 26px;
  color: #654938;
  background-color: #FBF2DB;
  padding: 0.6rem;
}
@media print, screen and (max-width: 1200px) {
  .examples-name span {
    font-size: 1.6rem;
    line-height: 20px;
  }
}
.examples-value {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.examples-value p {
  font-size: 1.4rem;
  letter-spacing: 1.6px;
  line-height: 26px;
  color: #654938;
  padding: 0.6rem;
}
.examples-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.examples-pagination-current {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 4.5rem;
}
.examples-pagination-current p {
  font-size: 1.4rem;
  letter-spacing: 1.28px;
  line-height: 28.8px;
  color: #333333;
}
.examples-pagination-nav {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.examples-pagination-nav span {
  font-size: 1.6rem;
  letter-spacing: 1.28px;
  line-height: 28.8px;
  color: #fff;
  cursor: pointer;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #654938;
  display: flex;
  align-items: center;
  justify-content: center;
}
.examples-category {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.examples-category img {
  margin-top: 1.3rem;
}
.examples-category:not(:first-child) {
  margin-top: 6.4rem;
}
.examples-header {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.examples-header p {
  font-size: 1.8rem;
  letter-spacing: 3.84px;
  line-height: 19.2px;
  color: #654938;
}
.examples-header span {
  font-family: "Dancing Script", cursive;
  font-size: 1.8rem;
  line-height: 17.3px;
  color: #C3B79E;
}
.examples-body p {
  margin-top: 2.5rem;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 29.6px;
  color: #4B615C;
}
.examples-body ul li {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.examples-body ul li a{
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.examples-body ul li img {
  width: 6.4rem;
  height: 6.4rem;
  object-fit: cover;
}
.examples-body ul li p {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 26.9px;
  color: #654938;
}
@media print, screen and (max-width: 768px) {
  .examples-body ul li p {
    font-size: 1.8rem;
  }
}

.singleWork {
  margin-top: 15.7rem;
}
.singleWork-container {
  position: relative;
  margin-top: 4.8rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5.6rem;
}
@media only screen and (max-width: 640px) {
  .singleWork-container {
    flex-direction: column;
    padding: 0 3rem;
  }
}
.singleWork-after {
  position: absolute;
  top: 0;
  left: 0;
  rotate: -25deg;
  border-bottom: 3px solid #654938;
}
.singleWork-after p {
  font-family: "Dancing Script", cursive;
  font-size: 5.12rem;
  line-height: 51.2px;
  color: #654938;
}
.singleWork-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.singleWork-title h3 {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 2.2px;
  line-height: 58.5px;
  color: #4B615C;
  text-align: center;
}
.singleWork-title img {
  margin-top: 2.8rem;
}
.singleWork-content {
  position: relative;
  width: 76rem;
}
@media only screen and (max-width: 640px) {
  .singleWork-content {
    width: 100%;
  }
}
.singleWork-category {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.singleWork-category img {
  margin-top: 1.3rem;
}
.singleWork-category:not(:first-child) {
  margin-top: 6.4rem;
}
.singleWork-header {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.singleWork-header p {
  font-size: 1.8rem;
  letter-spacing: 3.84px;
  line-height: 19.2px;
  color: #654938;
}
.singleWork-header span {
  font-family: "Dancing Script", cursive;
  font-size: 1.8rem;
  line-height: 17.3px;
  color: #C3B79E;
}
.singleWork-body p {
  margin-top: 2.5rem;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 29.6px;
  color: #4B615C;
}
.singleWork-body ul li {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.singleWork-body ul li a{
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.singleWork-body ul li img {
  width: 6.4rem;
  height: 6.4rem;
  object-fit: cover;
}
.singleWork-body ul li p {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 26.9px;
  color: #654938;
}
@media print, screen and (max-width: 768px) {
  .singleWork-body ul li p {
    font-size: 1.8rem;
  }
}
.singleWork .slider-main-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50rem;
}
.singleWork .slider-main-img img {
  width: 64rem;
  height: 50rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border: 1rem solid #fff;
}
.singleWork .slider-nav-btn {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 10;
  background-color: #C3B7A9;
  border: none;
  width: 4.8rem;
  height: 4.8rem;
}
.singleWork .slick-slider {
  transform: translate3d(0px, 0px, 0px);
}
.singleWork .slick-slide {
  width: 6rem;
  height: 100%;
  margin: 0.4rem;
}
.singleWork .prev-btn {
  left: 0;
}
.singleWork .next-btn {
  right: 0;
}
.singleWork-info {
  margin-top: 12rem;
}
.singleWork-info table {
  width: 100%;
  border-collapse: collapse;
}
.singleWork-info table tr th {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 24px;
  color: #4B615C;
  background-color: rgba(75, 97, 92, 0.031372549);
  border-top: 2px solid #4B615C;
  padding: 1.7rem 2.4rem;
  text-align: left;
}
.singleWork-info table tr:last-child th {
  border-bottom: 2px solid #4B615C;
}
.singleWork-info table tr td {
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 24px;
  color: #654938;
  background-color: #fff;
  padding: 1.7rem 2.4rem;
  border-top: 1px solid #654938;
}
.singleWork-info table tr td:last-child {
  border-bottom: 1px solid #654938;
}
.singleWork-point {
  margin-top: 11.2rem;
  border: 1px solid #817666;
  padding: 3.3rem 2.5rem 3.9rem 2.5rem;
}
.singleWork-point .title {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.singleWork-point .title h4 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 29.8px;
  color: #654938;
}
.singleWork-point .title p {
  font-family: "Dancing Script", cursive;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 19.2px;
  color: #654938;
}
.singleWork-point .body {
  margin-top: 1.5rem;
}
.singleWork-point .body p {
  font-size: 1.5rem;
  letter-spacing: 1.6px;
  line-height: 29.6px;
  color: #654938;
}
.singleWork-voice {
  margin-top: 2.4rem;
  background-color: #fff;
  padding: 3.2rem 2.4rem;
}
.singleWork-voice .title {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.singleWork-voice .title h4 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 29.8px;
  color: #654938;
}
.singleWork-voice .title p {
  font-family: "Dancing Script", cursive;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 19.2px;
  color: #654938;
}
.singleWork-voice .text {
  margin-top: 1.5rem;
}
.singleWork-voice .text p {
  font-size: 1.5rem;
  letter-spacing: 1.6px;
  line-height: 29.6px;
  color: #654938;
}
.singleWork-voice .voiceImg {
  width: 40rem;
  height: 32.5rem;
  margin-top: 3.2rem;
}
.singleWork-voice .voiceImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.singleWork-btn {
  margin-top: 6.4rem;
}

.contact {
  padding-bottom: 7.8rem;
}

.contactForm {
  margin-top: 12.3rem;
  margin-bottom: 15.7rem;
}
@media only screen and (max-width: 640px) {
  .contactForm {
    margin-top: 8rem;
    margin-bottom: 10rem;
  }
}
.contactForm-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  .contactForm-container {
    padding: 0 3rem;
  }
}
.contactForm-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.7rem;
}
.contactForm-title p {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 29.6px;
  color: #654938;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .contactForm-title p {
    font-size: 1.6rem;
  }
}
.contactForm-title img {
  margin-top: 3.6rem;
}
.contactForm-content {
  margin-top: 5.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border: 1px solid #654938;
  padding: 4rem 6.5rem 14.8rem 6.5rem;
  width: 97.2rem;
}
@media only screen and (max-width: 640px) {
  .contactForm-content {
    width: 100%;
    padding: 4rem 3rem 5rem 3rem;
  }
}
.contactForm-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contactForm-info h4 {
  font-size: 3rem;
  letter-spacing: 1.2px;
  line-height: 42px;
  color: #654938;
}
.contactForm-info p {
  font-size: 1.4rem;
  letter-spacing: 1.6px;
  line-height: 18.8px;
  color: #654938;
}
.contactForm-form {
  margin-top: 3.2rem;
  width: 100%;
}
.contactForm-form table {
  width: 100%;
  border-collapse: collapse;
}
.contactForm-form tr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
}
.contactForm-form td:first-child {
  width: 30%;
}
@media print, screen and (max-width: 1200px) {
  .contactForm-form td:first-child {
    width: 40%;
  }
}
.contactForm-form td:last-child {
  width: 60%;
}
.contactForm-form td {
  padding: 15px 10px;
  vertical-align: top;
}
.contactForm-form .label {
  font-weight: normal;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 29.6px;
  color: #654938;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media print, screen and (max-width: 1200px) {
  .contactForm-form .label {
    font-size: 1.6rem;
  }
}
.contactForm-form .label-text {
  display: inline-block;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 29.6px;
  color: #654938;
}
.contactForm-form .required {
  display: inline-block;
  background-color: #ff4b4b;
  color: white;
  font-size: 1.2rem;
  line-height: 2.4;
  letter-spacing: 1.52px;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 8px;
  text-align: center;
}
@media print, screen and (max-width: 1200px) {
  .contactForm-form .required {
    margin-left: 0.5rem;
  }
}
.contactForm-form .any {
  display: inline-block;
  background-color: #C4B3AB;
  color: white;
  font-size: 1.2rem;
  line-height: 2.4;
  letter-spacing: 1.52px;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 8px;
  text-align: center;
}
@media print, screen and (max-width: 1200px) {
  .contactForm-form .any {
    margin-left: 0.5rem;
  }
}
.contactForm-form .note {
  color: #666;
  font-size: 12px;
  margin-top: 5px;
}
.contactForm-form input[type=text],
.contactForm-form input[type=tel],
.contactForm-form input[type=email],
.contactForm-form textarea {
  width: 100%;
  padding: 20px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1.6rem;
}
.contactForm-form textarea {
  min-height: 100px;
  resize: vertical;
}
.contactForm-form .checkbox-group {
  margin-top: 5px;
}
.contactForm-form .checkbox-group label {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 29.6px;
  color: #654938;
}
.contactForm-form .submit-btn {
  display: block;
  margin: 8.8rem auto;
  background-color: #cccccc;
  border: none;
  border-radius: 4px;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 1.8rem 3.2rem;
  font-size: 1.6rem;
  width: 24.2rem;
}
@media only screen and (max-width: 640px) {
  .contactForm-form .submit-btn {
    width: 100%;
    font-size: 1.6rem;
  }
}
.contactForm-form .submit-btn:hover {
  background-color: #666;
}

.contactForm {
  margin-top: 12.3rem;
  margin-bottom: 15.7rem;
}
@media only screen and (max-width: 640px) {
  .contactForm {
    margin-top: 8rem;
    margin-bottom: 10rem;
  }
}
.contactForm-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  .contactForm-container {
    padding: 0 3rem;
  }
}
.contactForm-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.7rem;
}
.contactForm-title p {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 29.6px;
  color: #654938;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .contactForm-title p {
    font-size: 1.6rem;
  }
}
.contactForm-title img {
  margin-top: 3.6rem;
}
.contactForm-content {
  margin-top: 5.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border: 1px solid #654938;
  padding: 4rem 6.5rem 14.8rem 6.5rem;
  width: 97.2rem;
}
@media only screen and (max-width: 640px) {
  .contactForm-content {
    width: 100%;
    padding: 4rem 3rem 5rem 3rem;
  }
}
.contactForm-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contactForm-info h4 {
  font-size: 3rem;
  letter-spacing: 1.2px;
  line-height: 42px;
  color: #654938;
}
.contactForm-info p {
  font-size: 1.4rem;
  letter-spacing: 1.6px;
  line-height: 18.8px;
  color: #654938;
}
.contactForm-form {
  margin-top: 3.2rem;
  width: 100%;
}
.contactForm-form table {
  width: 100%;
  border-collapse: collapse;
}
.contactForm-form tr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
}
.contactForm-form td:first-child {
  width: 30%;
}
@media print, screen and (max-width: 1200px) {
  .contactForm-form td:first-child {
    width: 40%;
  }
}
.contactForm-form td:last-child {
  width: 60%;
}
.contactForm-form td {
  padding: 15px 10px;
  vertical-align: top;
}
.contactForm-form .label {
  font-weight: normal;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 29.6px;
  color: #654938;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media print, screen and (max-width: 1200px) {
  .contactForm-form .label {
    font-size: 1.6rem;
  }
}
.contactForm-form .label-text {
  display: inline-block;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 29.6px;
  color: #654938;
}
.contactForm-form .required {
  display: inline-block;
  background-color: #ff4b4b;
  color: white;
  font-size: 1.2rem;
  line-height: 2.4;
  letter-spacing: 1.52px;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 8px;
  text-align: center;
}
@media print, screen and (max-width: 1200px) {
  .contactForm-form .required {
    margin-left: 0.5rem;
  }
}
.contactForm-form .any {
  display: inline-block;
  background-color: #C4B3AB;
  color: white;
  font-size: 1.2rem;
  line-height: 2.4;
  letter-spacing: 1.52px;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 8px;
  text-align: center;
}
@media print, screen and (max-width: 1200px) {
  .contactForm-form .any {
    margin-left: 0.5rem;
  }
}
.contactForm-form .note {
  color: #666;
  font-size: 12px;
  margin-top: 5px;
}
.contactForm-form input[type=text],
.contactForm-form input[type=tel],
.contactForm-form input[type=email],
.contactForm-form textarea {
  width: 100%;
  padding: 20px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1.6rem;
}
.contactForm-form textarea {
  min-height: 100px;
  resize: vertical;
}
.contactForm-form .checkbox-group {
  margin-top: 5px;
}
.contactForm-form .checkbox-group label {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 29.6px;
  color: #654938;
}
.contactForm-form .submit-btn {
  display: block;
  margin: 8.8rem auto;
  background-color: #cccccc;
  border: none;
  border-radius: 4px;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 1.8rem 3.2rem;
  font-size: 1.6rem;
  width: 24.2rem;
}
@media only screen and (max-width: 640px) {
  .contactForm-form .submit-btn {
    width: 100%;
    font-size: 1.6rem;
  }
}
.contactForm-form .submit-btn:hover {
  background-color: #666;
}

.archivetitle {
  margin: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7.8rem;
}
.archivetitle-text h3 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 3.2px;
  line-height: 42.6px;
  color: #FF8430;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .archivetitle-text h3 {
    font-size: 2.5rem;
  }
}
.archivetitle-text p {
  width: 55rem;
  margin-top: 1.7rem;
  font-size: 1.4rem;
  letter-spacing: 1.6px;
  line-height: 29.6px;
  color: #654938;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .archivetitle-text p {
    font-size: 2rem;
  }
}

.blogs {
  margin-top: 7.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8.4rem;
}
@media only screen and (max-width: 640px) {
  .blogs {
    padding: 0 3rem;
    flex-direction: column;
  }
}
.blogs-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70rem;
}
@media only screen and (max-width: 640px) {
  .blogs-content {
    width: 100%;
  }
}
.blogs-items {
  display: flex;
  flex-direction: column;
}
.blogs-item {
  width: 70rem;
  padding: 3.3rem 0;
  border-top: 1px solid #C3B79E;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4rem;
}
@media only screen and (max-width: 640px) {
  .blogs-item {
    width: 100%;
  }
}
.blogs-image img {
  width: 28rem;
  object-fit: cover;
}
.blogs-text .date-category {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.blogs-text .date-category p {
  font-size: 1.6rem;
  letter-spacing: 0.8px;
  line-height: 29.6px;
  color: #aaaaaa;
}
.blogs-text .date-category span {
  font-size: 1.2rem;
  letter-spacing: 1.6px;
  line-height: 21.3px;
  color: #fff;
  padding: 0.17rem 1.2rem;
  background-color: #4B605C;
  border-radius: 1.2rem;
}
.blogs-text .title {
  margin-top: 1.1rem;
}
.blogs-text .title h3 {
  font-size: 1.8rem;
  letter-spacing: 1.6px;
  line-height: 26.4px;
  color: #654938;
}
.blogs-text .description {
  margin-top: 1.1rem;
  font-size: 1.2rem;
  letter-spacing: 1.6px;
  line-height: 25px;
  color: #654938;
}
.pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pagination-current {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 4.5rem;
}
.pagination-current p {
  font-size: 1.4rem;
  letter-spacing: 1.28px;
  line-height: 28.8px;
  color: #333333;
}
.pagination-nav {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.pagination-nav a {
  font-size: 1.6rem;
  letter-spacing: 1.28px;
  line-height: 28.8px;
  color: #fff;
  cursor: pointer;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #654938;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-nav .page-btn.active {
  background-color: #fff;
  border: 1px solid #654938;
  color: #654938;
}
.blogs-category {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.blogs-category img {
  margin-top: 1.3rem;
}
.blogs-category:not(:first-child) {
  margin-top: 6.4rem;
}
.blogs-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.6rem;
}
.blogs-header p {
  font-size: 1.8rem;
  letter-spacing: 3.84px;
  line-height: 19.2px;
  color: #654938;
}
.blogs-header span {
  font-family: "Dancing Script", cursive;
  font-size: 1.8rem;
  line-height: 17.3px;
  color: #C3B79E;
}
.blogs-body a {
  margin-top: 2.5rem;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 29.6px;
  color: #4B615C;
}
.blogs-body ul li a{
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.blogs-body ul li img {
  width: 6.4rem;
  height: 6.4rem;
  object-fit: cover;
}
.blogs-body ul li p {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 26.9px;
  color: #654938;
}
@media print, screen and (max-width: 768px) {
  .blogs-body ul li p {
    font-size: 1.8rem;
  }
}

.sinblog {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20rem;
  margin-top: 19.5rem;
}
@media only screen and (max-width: 640px) {
  .sinblog {
    flex-direction: column;
    padding: 0 3rem;
    gap: 10rem;
  }
}
.sinblog-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 60rem;
}
@media only screen and (max-width: 640px) {
  .sinblog-content {
    width: 100%;
  }
}
.sinblog-date-category {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.sinblog-date-category p {
  font-size: 1.6rem;
  letter-spacing: 0.8px;
  line-height: 29.6px;
  color: #aaaaaa;
}
.sinblog-date-category span {
  font-size: 1.2rem;
  letter-spacing: 1.6px;
  line-height: 21.3px;
  color: #fff;
  padding: 0.17rem 1.5rem;
  background-color: #4B605C;
  border-radius: 1.2rem;
}
.sinblog-title {
  margin-top: 1.1rem;
}
.sinblog-title h3 {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 33.7px;
  color: #654938;
}
.sinblog-image {
  margin-top: 2.4rem;
}
.sinblog-image img {
  width: 60rem;
  height: 41.6rem;
  object-fit: cover;
}
.sinblog-main-text {
  margin-top: 0.7rem;
  font-size: 1.4rem;
  letter-spacing: 1.6px;
  line-height: 29.6px;
  color: #654938;
}
.sinblog-photo {
  margin-top: 2.4rem;
}
.sinblog-photo img {
  width: 40rem;
  height: 30rem;
  object-fit: cover;
}
.sinblog-text {
  margin-top: 2.4rem;
  font-size: 1.4rem;
  letter-spacing: 1.6px;
  line-height: 29.6px;
  color: #654938;
}
.sinblog-category {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sinblog-category img {
  margin-top: 1.3rem;
}
.sinblog-category:not(:first-child) {
  margin-top: 6.4rem;
}
.sinblog-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.6rem;
}
.sinblog-header p {
  font-size: 1.8rem;
  letter-spacing: 3.84px;
  line-height: 19.2px;
  color: #654938;
}
.sinblog-header span {
  font-family: "Dancing Script", cursive;
  font-size: 1.8rem;
  line-height: 17.3px;
  color: #C3B79E;
}
.sinblog-body p {
  margin-top: 2.5rem;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 29.6px;
  color: #4B615C;
}
.sinblog-body ul li {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.sinblog-body ul li img {
  width: 6.4rem;
  height: 6.4rem;
  object-fit: cover;
}
.sinblog-body ul li p {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 26.9px;
  color: #654938;
}
@media print, screen and (max-width: 768px) {
  .sinblog-body ul li p {
    font-size: 1.8rem;
  }
}
.sinblog-btn {
  margin-top: 21.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 50%;
  transform: translateX(-50%);
}
.sinblog-btn a {
  padding: 0.7rem 1.6rem;
  background-color: #4B605C;
  color: white;
  font-size: 1.5rem;
  letter-spacing: 1.6px;
  line-height: 29.6px;
}

h2 {
  font-family: "Noto Serif JP";
  font-size: 9rem;
  font-weight: bold;
  line-height: 96px;
  letter-spacing: 12px;
  color: #FBF2DB;
  -webkit-text-stroke: 1px #63502f;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  h2 {
    font-size: 8rem;
    line-height: 48px;
    letter-spacing: 4px;
  }
}/*# sourceMappingURL=style.css.map */