@charset "UTF-8";
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", serif;
  background-color: #F9F9F9;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  background-color: #F9F9F9;
  position: fixed;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .header {
    background-color: initial;
  }
}

.header__pc-name {
  float: left;
  margin-top: 5px;
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  .header__pc-name {
    position: relative;
    z-index: 1;
    float: initial;
  }
}
@media screen and (max-width: 375px) {
  .header__pc-name {
    margin-left: 10px;
  }
}

.header__pc-logo-img {
  height: 80px;
  aspect-ratio: 240/131;
  width: auto;
}
@media screen and (max-width: 768px) {
  .header__pc-logo-img {
    height: 50px;
  }
}

.header__body {
  height: inherit;
  background-color: #F9F9F9;
}
@media screen and (max-width: 1024px) {
  .header__body {
    background-color: rgba(249, 249, 249, 0.9);
    width: 100vw;
    height: 100vh;
    padding: 160px 0 150px;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    visibility: hidden;
    overflow: scroll;
  }
}

.header__body.panelactive {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.header__pc-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 90px;
  padding-right: 40px;
}
@media screen and (max-width: 1024px) {
  .header__pc-list {
    flex-direction: column;
    height: 100%;
    padding-right: 0;
  }
}

.header__pc-item:not(:last-child) {
  padding-right: clamp(0.625rem, -0.179rem + 0.89vw, 1.25rem);
  padding-left: clamp(0.625rem, -0.179rem + 0.89vw, 1.25rem);
}
@media screen and (max-width: 1024px) {
  .header__pc-item:not(:last-child) {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 30px;
  }
}

.header__pc-link {
  cursor: pointer;
  font-family: "Crimson Text", serif;
  font-size: clamp(1rem, 0.357rem + 0.71vw, 1.5rem);
  color: #A3573A;
  display: block;
  text-align: center;
  padding-right: clamp(1.25rem, -0.357rem + 1.79vw, 2.5rem);
  padding-left: clamp(1.25rem, -0.357rem + 1.79vw, 2.5rem);
}

@media screen and (max-width: 1024px) {
  .header__sp-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.header__sp-btn {
  position: relative;
  width: 25px;
  height: 14px;
  cursor: pointer;
  transition: all 0.4s;
  margin-top: 20px;
  margin-right: 20px;
  display: none;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .header__sp-btn {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .header__sp-btn {
    width: 15px;
  }
}
@media screen and (max-width: 375px) {
  .header__sp-btn {
    margin-right: 10px;
    margin-top: 10px;
  }
}

.header__sp-btn span {
  position: absolute;
  display: inline-block;
  left: 0;
  border: 1px solid #333;
  transition: all 0.4s;
}

.header__sp-btn span:nth-child(1) {
  top: 0px;
  width: 100%;
}

.header__sp-btn span:nth-child(2) {
  top: 7px;
  width: 100%;
}

.header__sp-btn span:nth-child(3) {
  top: 14px;
  width: 68%;
}
@media screen and (max-width: 768px) {
  .header__sp-btn span:nth-child(3) {
    width: 42%;
  }
}

.header__sp-btn.active span:nth-child(1) {
  transform: rotate(-135deg);
  top: 50%;
  width: 80%;
  border: 1px solid #A3573A;
}

.header__sp-btn.active span:nth-child(2) {
  opacity: 0;
}

.header__sp-btn.active span:nth-child(3) {
  transform: rotate(135deg);
  top: 50%;
  width: 80%;
  border: 1px solid #A3573A;
}

.footer {
  max-width: 1980px;
  margin-inline: auto;
  margin-top: 120px;
  padding-top: 120px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 50px;
    padding-top: 50px;
  }
}

.footer_flex-half-box {
  max-width: 50%;
}

.footer_flex-space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .footer_flex-space-between {
    display: block;
  }
}

.footer_flex-space-around {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .footer_flex-space-around {
    display: block;
  }
}

.footer__flex-half-box {
  width: 50%;
}
@media screen and (max-width: 600px) {
  .footer__flex-half-box {
    width: 100%;
  }
}

.footer__pc-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer__pc-list {
    flex-wrap: wrap;
    margin-top: 20px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .footer__pc-list {
    row-gap: 5px;
    column-gap: 10px;
  }
}

.footer__pc-item {
  padding-right: clamp(0.625rem, -0.179rem + 0.89vw, 1.25rem);
  padding-left: clamp(0.625rem, -0.179rem + 0.89vw, 1.25rem);
}
@media screen and (max-width: 1024px) {
  .footer__pc-item {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .footer__pc-item {
    padding-bottom: 0;
  }
}

.footer__pc-link {
  cursor: pointer;
  font-family: "Crimson Text", serif;
  font-size: clamp(1rem, 0.357rem + 0.71vw, 1.5rem);
  color: #A3573A;
  display: block;
  text-align: center;
  padding-right: clamp(1.25rem, -0.357rem + 1.79vw, 2.5rem);
  padding-left: clamp(1.25rem, -0.357rem + 1.79vw, 2.5rem);
}

@media screen and (max-width: 600px) {
  .footer_link-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
    row-gap: 20px;
  }
}

.footer__net-link {
  cursor: pointer;
  font-family: "Crimson Text", serif;
  font-size: clamp(1rem, 0.357rem + 0.71vw, 1.5rem);
  color: #A3573A;
  display: inline-block;
  padding-right: clamp(1.25rem, -0.357rem + 1.79vw, 2.5rem);
  padding-left: clamp(1.25rem, -0.357rem + 1.79vw, 2.5rem);
}

.footer__materials-list {
  margin-top: 20px;
}

.footer__materials-item:not(:last-child) {
  margin-bottom: 20px;
}

.footer__materials-link {
  cursor: pointer;
  font-family: "Crimson Text", serif;
  font-size: clamp(1rem, 0.357rem + 0.71vw, 1.5rem);
  color: #A3573A;
  display: block;
  text-align: center;
  padding-left: clamp(1.25rem, -0.357rem + 1.79vw, 2.5rem);
  padding-right: clamp(1.25rem, -0.357rem + 1.79vw, 2.5rem);
  padding-top: clamp(0.625rem, 0.551rem + 0.38vw, 1.25rem);
  padding-bottom: clamp(0.625rem, 0.551rem + 0.38vw, 1.25rem);
  border: 1px solid #A3573A;
  border-radius: 5px;
  transition: ease 1s;
}
.footer__materials-link:hover {
  background-color: #A3573A;
  color: #F9F9F9;
  transition: ease 1s;
}

.footer__copy-right-text {
  display: block;
  padding-top: 120px;
  font-family: "Crimson Text", serif;
  color: #333;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .footer__copy-right-text {
    padding-top: 80px;
  }
}

.fv {
  position: relative;
}

.ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(3.625rem, 0.567rem + 3.4vw, 6rem);
  color: #F9F9F9;
  text-shadow: 10px 10px 10px #333;
  text-align: center;
  overflow: hidden;
  max-width: 1813px;
}
@media screen and (max-width: 1440px) {
  .ttl {
    font-size: clamp(0.813rem, 0.025rem + 4vw, 3.625rem);
  }
}
@media screen and (max-width: 768px) {
  .ttl {
    font-size: clamp(0.813rem, 0.093rem + 3.71vw, 1.875rem);
  }
}

.ttl__span {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  white-space: nowrap;
}

.ttl__span:nth-of-type(1) {
  animation: moveInLeft 1s ease-out;
}

.ttl__span:nth-of-type(2) {
  animation: moveInRight 1s ease-out;
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.slider {
  width: 100%;
  overflow: hidden;
}

.fv__img {
  max-height: 1200px;
  object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .fv__img {
    max-height: 800px;
  }
}
@media screen and (max-width: 1024px) {
  .fv__img {
    max-height: 800px;
  }
}
@media screen and (max-width: 768px) {
  .fv__img {
    max-height: 600px;
  }
}
@media screen and (max-width: 375px) {
  .fv__img {
    max-height: 400px;
  }
}

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

.main__menu {
  max-width: 1980px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .main__menu {
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .main__list {
    padding-bottom: 5px;
  }
}

.main__list:not(:first-child) {
  padding-left: clamp(0.625rem, -0.179rem + 0.89vw, 1.25rem);
}

.main__list:not(:last-child) {
  padding-right: clamp(0.625rem, -0.179rem + 0.89vw, 1.25rem);
  border-right: 1px solid #A3573A;
}

.main__link {
  font-family: "Crimson Text", serif;
  font-size: clamp(0.75rem, 0.603rem + 0.75vw, 1.5rem);
  text-align: center;
  color: #A3573A;
  padding-right: clamp(1.25rem, 0.689rem + 1.17vw, 2.5rem);
  padding-left: clamp(1.25rem, 0.689rem + 1.17vw, 2.5rem);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .main__link {
    padding-left: clamp(0.313rem, -0.339rem + 3.31vw, 1.25rem);
    padding-right: clamp(0.313rem, -0.339rem + 3.31vw, 1.25rem);
  }
}

.top_about {
  position: relative;
}

.top_about::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 20%;
  height: 67%;
  left: 0;
  top: 20%;
  background-color: #dcdcdc;
}

.top_about-box {
  overflow: hidden;
}

.top_about-content {
  max-width: 1400px;
  margin-inline: auto;
  overflow: hidden;
}

.top_about-content-textbox {
  margin-top: 30px;
  position: relative;
  z-index: 1;
  height: 500px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top_about-content-textbox {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }
}

.top_about-content-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.7);
  padding: clamp(1.25rem, 0.59rem + 2.82vw, 3.125rem);
  filter: drop-shadow(10px 10px #fff);
  max-width: clamp(20rem, -3.571rem + 49.11vw, 40.625rem);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  line-height: 2em;
  color: #333;
}
@media screen and (max-width: 768px) {
  .top_about-content-text {
    max-width: 100%;
    position: relative;
    top: -50px;
    left: initial;
    transform: initial;
  }
}

.top_about-content-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 500px;
  width: auto;
  object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .top_about-content-img {
    right: 0%;
  }
}
@media screen and (max-width: 1024px) {
  .top_about-content-img {
    height: 400px;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .top_about-content-img {
    position: relative;
    height: auto;
  }
}

.top_reason {
  position: relative;
}

.top_reason::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 78%;
  height: 20%;
  background-color: #dcdcdc;
}

.top_reason-box {
  overflow: hidden;
}

.top_right-ttl-box {
  text-align: right;
}

.top-right-en-ttl {
  display: block;
  font-family: "Crimson Text", serif;
  color: #4A6B5C;
  font-size: clamp(0.625rem, -0.246rem + 1.82vw, 2rem);
  padding-right: 55px;
}
@media screen and (max-width: 768px) {
  .top-right-en-ttl {
    font-size: 10px;
    padding-right: 35px;
  }
}

.top_reason-content {
  max-width: 1400px;
  margin-inline: auto;
  overflow: hidden;
}

.top_reason-content-textbox {
  margin-top: 30px;
  position: relative;
  z-index: 1;
  height: 500px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top_reason-content-textbox {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }
}

.top_reason-content-text {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.7);
  padding: clamp(1.25rem, 0.59rem + 2.82vw, 3.125rem);
  filter: drop-shadow(10px 10px #fff);
  max-width: clamp(20rem, -3.571rem + 49.11vw, 40.625rem);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  line-height: 2em;
  color: #333;
}
@media screen and (max-width: 768px) {
  .top_reason-content-text {
    max-width: 100%;
    position: relative;
    top: -50px;
    left: initial;
    transform: initial;
  }
}

.top_reason-content-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 500px;
  width: auto;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .top_reason-content-img {
    position: relative;
    height: auto;
  }
}

.top_grid-content {
  max-width: 1400px;
  margin-inline: auto;
  overflow: hidden;
}

.top_grid-content .page_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  position: relative;
  min-height: 800px;
  margin-top: 30px;
}
@media screen and (max-width: 1440px) {
  .top_grid-content .page_list {
    min-height: 600px;
  }
}
@media screen and (max-width: 768px) {
  .top_grid-content .page_list {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0;
  }
}

.top_grid-content .page_link {
  display: flex;
  flex-direction: column;
}

.top_grid-content .page_item {
  position: relative;
}
@media screen and (max-width: 768px) {
  .top_grid-content .page_item {
    border-bottom: 1px solid #626262;
    padding-bottom: 20px;
  }
  .top_grid-content .page_item:not(:first-child) {
    padding-top: 20px;
  }
}

.top_grid-content .page_item:nth-child(2) {
  padding-top: 25%;
}
@media screen and (max-width: 768px) {
  .top_grid-content .page_item:nth-child(2) {
    padding-top: 20px;
  }
}

.top_grid-content .page_item:nth-child(3) {
  padding-top: 50%;
}
@media screen and (max-width: 768px) {
  .top_grid-content .page_item:nth-child(3) {
    padding-top: 20px;
  }
}

.top_grid-content .top_grid-img {
  overflow: hidden;
  width: 100%;
}

.top_grid-content .top_grid-img img {
  height: 470px;
  width: auto;
  object-fit: cover;
  transition: ease 0.4s;
}
@media screen and (max-width: 1440px) {
  .top_grid-content .top_grid-img img {
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .top_grid-content .top_grid-img img {
    width: 100%;
    height: 250px;
  }
}
@media screen and (max-width: 375px) {
  .top_grid-content .top_grid-img img {
    height: 200px;
  }
}

.top_grid-content .page_link:hover > .top_grid-img img {
  transform: scale(1.1, 1.1);
  transition: ease 0.4s;
}

.top_grid-content .page_item-textbox {
  margin-top: 20px;
}

.top_grid-content .page_item-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1rem, 0.892rem + 0.46vw, 1.25rem);
  color: #333;
  margin-top: clamp(0.625rem, -0.089rem + 1.49vw, 1.25rem);
}

.slide-grid_bottom1 {
  opacity: 0;
  transform: translateY(300px);
  visibility: hidden;
  transition: opacity 1s, visibility 1s, transform 1s;
}

.slide-grid_bottom1.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.slide-grid_bottom2 {
  opacity: 0;
  transform: translateY(300px);
  visibility: hidden;
  transition: opacity 2s, visibility 2s, transform 2s;
}
@media screen and (max-width: 768px) {
  .slide-grid_bottom2 {
    transition: opacity 1s, visibility 1s, transform 1s;
  }
}

.slide-grid_bottom2.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.slide-grid_bottom3 {
  opacity: 0;
  transform: translateY(300px);
  visibility: hidden;
  transition: opacity 3s, visibility 3s, transform 3s;
}
@media screen and (max-width: 768px) {
  .slide-grid_bottom3 {
    transition: opacity 1s, visibility 1s, transform 1s;
  }
}

.slide-grid_bottom3.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.top_blog {
  position: relative;
  overflow: hidden;
}

.top_blog::before {
  position: absolute;
  content: "";
  height: 2000px;
  width: 2%;
  top: -10%;
  left: 10%;
  background-color: #dcdcdc;
  rotate: 23deg;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top_blog::before {
    top: -20%;
    width: 10%;
  }
}

.top_blog::after {
  position: absolute;
  content: "";
  height: 2000px;
  width: 2%;
  top: -10%;
  left: 15%;
  background-color: #dcdcdc;
  rotate: 23deg;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top_blog::after {
    display: none;
  }
}

.top_blog-box {
  overflow: hidden;
}

.top_works {
  position: relative;
  overflow: hidden;
}

.top_works::before {
  position: absolute;
  content: "";
  height: 2000px;
  width: 2%;
  top: -10%;
  left: 10%;
  background-color: #dcdcdc;
  rotate: 23deg;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top_works::before {
    top: -20%;
    width: 10%;
  }
}

.top_works::after {
  position: absolute;
  content: "";
  height: 2000px;
  width: 2%;
  top: -10%;
  left: 15%;
  background-color: #dcdcdc;
  rotate: 23deg;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top_works::after {
    display: none;
  }
}

.top_works-box {
  overflow: hidden;
}

.top_works-item {
  position: relative;
}
@media screen and (max-width: 768px) {
  .top_works-item {
    border-bottom: 1px solid #626262;
    padding-bottom: 20px;
  }
  .top_works-item:not(:first-child) {
    padding-top: 20px;
  }
}

.top_works-item:nth-child(1) {
  padding-top: 50%;
}
@media screen and (max-width: 768px) {
  .top_works-item:nth-child(1) {
    padding-top: 20px;
  }
}

.top_works-item:nth-child(2) {
  padding-top: 25%;
}
@media screen and (max-width: 768px) {
  .top_works-item:nth-child(2) {
    padding-top: 20px;
  }
}

.contact {
  max-width: 1980px;
  margin-inline: auto;
  margin-top: 120px;
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-top: 50px;
    margin-top: 50px;
  }
}

.top_contact-link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: clamp(7.5rem, 2.748rem + 9.9vw, 15rem);
  padding-bottom: clamp(7.5rem, 2.748rem + 9.9vw, 15rem);
  overflow: hidden;
}

.top_contact-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../images/image10.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: ease 0.4s;
}

.top_contact-link:hover::before {
  transform: scale(1.1, 1.1);
  transition: ease 0.4s;
}

.top_contact-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(3.625rem, 0.567rem + 3.4vw, 6rem);
  color: #F9F9F9;
  text-shadow: 10px 10px 10px #333;
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top_contact-ttl {
    font-size: clamp(1.625rem, 1.456rem + 0.87vw, 1.875rem);
  }
}

.top_contact-ttl span {
  display: block;
  transform: translate(0, 105%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.top_contact-ttl.-visible span {
  transform: translate(0, 0);
}

.top_contact-ttl span:nth-child(2) {
  transition-delay: 0.06s;
}

.top_contact-ttl span:nth-child(3) {
  transition-delay: 0.12s;
}

.top_contact-ttl span:nth-child(4) {
  transition-delay: 0.18s;
}

.top_contact-ttl span:nth-child(5) {
  transition-delay: 0.24s;
}

.top_contact-ttl span:nth-child(6) {
  transition-delay: 0.3s;
}

.top_contact-ttl span:nth-child(7) {
  transition-delay: 0.36s;
}

.top_contact-ttl span:nth-child(8) {
  transition-delay: 0.42s;
}

.top_contact-ttl span:nth-child(9) {
  transition-delay: 0.48s;
}

.top_contact-ttl span:nth-child(10) {
  transition-delay: 0.54s;
}

.top_contact-ttl span:nth-child(11) {
  transition-delay: 0.6s;
}

.top_about,
.top_reason,
.top_blog,
.top_works {
  max-width: 1980px;
  padding: 120px 30px 0;
  margin-inline: auto;
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .top_about,
  .top_reason,
  .top_blog,
  .top_works {
    margin-top: 50px;
    padding: 50px 20px 0;
  }
}

.border_bottom {
  padding-bottom: 5px;
  position: relative;
}

.border_bottom::before {
  background-color: #A3573A;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.border_bottom:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}

.top_ttl-box {
  max-width: 1400px;
  margin-inline: auto;
}

.top_en-ttl {
  display: block;
  font-family: "Crimson Text", serif;
  color: #4A6B5C;
  font-size: clamp(0.625rem, -0.246rem + 1.82vw, 2rem);
  padding-left: 55px;
}
@media screen and (max-width: 768px) {
  .top_en-ttl {
    font-size: 10px;
    padding-left: 35px;
  }
}

.top_ja-ttl {
  font-family: "Noto Serif JP", serif;
  color: #4A6B5C;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  font-size: clamp(1.5rem, 0.233rem + 2.64vw, 3.5rem);
}
@media screen and (max-width: 768px) {
  .top_ja-ttl {
    padding: 0 35px;
    font-size: clamp(1.25rem, 1.076rem + 0.88vw, 1.5rem);
  }
}

.top_ja-ttl::before, .top_ja-ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  border-top: solid 1px #4A6B5C;
  border-bottom: solid 1px #4A6B5C;
}
@media screen and (max-width: 768px) {
  .top_ja-ttl::before, .top_ja-ttl::after {
    width: 25px;
  }
}

.top_ja-ttl:before {
  left: 0;
}

.top_ja-ttl:after {
  right: 0;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.flex-start {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-space-around {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.flex-space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.margin-top {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .margin-top {
    margin-top: 10px;
  }
}

.link {
  font-size: clamp(0.75rem, 0.592rem + 0.33vw, 1rem);
  overflow: hidden;
  padding: 1.5rem 6rem;
  color: #fff;
  border-radius: 0;
  background: #4A6B5C;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .link {
    padding: 1rem 4rem;
  }
}
@media screen and (max-width: 375px) {
  .link {
    width: 100%;
  }
}

.link span {
  position: relative;
}

.link:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 500%;
  content: "";
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);
  background: #333;
}

.link:hover::before {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

.time {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.625rem, 0.59rem + 0.18vw, 0.75rem);
  color: #333;
}

.span {
  display: inline-block;
  padding: 4px 18px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.625rem, 0.608rem + 0.09vw, 0.688rem);
  color: #626262;
  background-color: #F3F3F3;
  margin-top: clamp(0.625rem, -0.089rem + 1.49vw, 1.25rem);
}
.span + .span {
  margin-left: 5px;
}

.breadcrumb {
  max-width: 1980px;
  padding-left: 30px;
  padding-right: 30px;
  margin-inline: auto;
  display: flex;
  justify-content: flex-end;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
    flex-wrap: wrap;
    font-size: 8px;
  }
}

span[property=name]:not(.current-item) {
  color: #dcdcdc;
}

span[property=name].current-item {
  color: #333;
}

span[property=itemListElement] {
  padding-right: 10px;
  padding-left: 10px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 30px;
}

.pagination__arrow {
  display: inline-block;
  width: 11px;
  height: 18px;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #4A6B5C;
  border: 1px solid #4A6B5C;
}
@media screen and (max-width: 375px) {
  .page-numbers {
    width: 30px;
    height: 30px;
  }
}

.page-numbers.current {
  color: #F9F9F9;
  background-color: #4A6B5C;
}

.page-numbers.dots,
.page-numbers.prev,
.page-numbers.next {
  border: none;
}

.detail__btn-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail_prev, .detail_next {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  color: #A3573A;
  border: 1px solid #A3573A;
  position: relative;
  transition: 0.3s ease-in-out;
  border-radius: 4px;
}
.detail_prev:hover, .detail_next:hover {
  background-color: #A3573A;
  color: #fff;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .detail_prev, .detail_next {
    font-size: 12px;
  }
}

.detail_prev {
  padding: 12px 24px 12px 34px;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .detail_prev {
    padding: 12px 14px 12px 34px;
  }
}

.detail_next {
  padding: 12px 34px 12px 24px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .detail_next {
    padding: 12px 34px 12px 24px;
  }
}

.detail_prev:after {
  content: "";
  position: absolute;
  top: 52%;
  bottom: 0;
  left: 20px;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: left 0.3s;
  width: 6px;
  height: 6px;
  border-left: solid 2px currentColor;
  border-bottom: solid 2px currentColor;
  transform: translateY(-48%) rotate(45deg);
}

.detail_next:after {
  content: "";
  position: absolute;
  top: 52%;
  bottom: 0;
  right: 20px;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-48%) rotate(45deg);
}

.slide-in__right {
  opacity: 0;
  transform: translateX(500px);
  visibility: hidden;
  transition: opacity 1s, visibility 1s, transform 1s;
}

.slide-in__right.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

.slide-in__left {
  opacity: 0;
  transform: translateX(-500px);
  visibility: hidden;
  transition: opacity 1s, visibility 1s, transform 1s;
}

.slide-in__left.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

.slide-in__top {
  opacity: 0;
  transform: translateY(-300px);
  visibility: hidden;
  transition: opacity 1s, visibility 1s, transform 1s;
}

.slide-in__top.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.slide-in__bottom {
  opacity: 0;
  transform: translateY(300px);
  visibility: hidden;
  transition: opacity 1s, visibility 1s, transform 1s;
}

.slide-in__bottom.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.lower-fv__fadeUp {
  opacity: 0;
  transform: translateY(100px);
  visibility: hidden;
  transition: opacity 1s, visibility 1s, transform 1s;
}

.lower-fv__fadeUp.is-animated {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.lower__slide-in__left {
  opacity: 0;
  transform: translateX(-100px);
  visibility: hidden;
  transition: opacity 2s, visibility 2s, transform 2s;
}

.lower__slide-in__left.is-animated {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

.page_fv-forest,
.page_fv-rustic {
  position: relative;
  max-width: 1980px;
  min-height: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .page_fv-forest,
  .page_fv-rustic {
    min-height: 700px;
  }
}
@media screen and (max-width: 768px) {
  .page_fv-forest,
  .page_fv-rustic {
    min-height: 500px;
  }
}
@media screen and (max-width: 375px) {
  .page_fv-forest,
  .page_fv-rustic {
    min-height: 300px;
  }
}

.page_fv-forest::before {
  content: "";
  width: 80%;
  height: 90%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #4A6B5C;
}

.page_fv-rustic::before {
  content: "";
  width: 80%;
  height: 90%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #A3573A;
}

.page_fv-img {
  width: 80%;
  height: 90%;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 0%;
}

.page_fv_ttl {
  position: absolute;
  top: 60%;
  right: 5%;
}

.bg-wrap {
  position: relative;
  display: inline-block;
  margin-top: 5px;
}

.page_fv-forest .page_fv_ttl.is-animated,
.page_fv-forest .bg-wrap::before {
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: linear-gradient(to right, #4A6B5C 0%, #38b87e 50%, #85deb6 100%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}

.page_fv-rustic .page_fv_ttl.is-animated,
.page_fv-rustic .bg-wrap::before {
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: linear-gradient(to right, #A3573A 0%, #f06129 50%, #f79a75 100%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}

.page_fv-ttl-en,
.page_fv-ttl-ja {
  color: #F9F9F9;
  display: inline-block;
  font-size: clamp(3.625rem, 0.567rem + 3.4vw, 6rem);
  font-weight: bold;
  padding: 5px 15px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .page_fv-ttl-en,
  .page_fv-ttl-ja {
    font-size: clamp(1.875rem, -0.125rem + 4.17vw, 3.625rem);
  }
}
@media screen and (max-width: 768px) {
  .page_fv-ttl-en,
  .page_fv-ttl-ja {
    padding: clamp(0.313rem, -0.122rem + 2.21vw, 0.938rem);
    font-size: clamp(1.25rem, 0.827rem + 2.18vw, 1.875rem);
  }
}

.page_fv-ttl-en {
  font-family: "Crimson Text", serif;
}

.page_fv-ttl-ja {
  font-family: "Noto Serif JP", serif;
}

@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
.page_about {
  max-width: 1980px;
  margin-inline: auto;
  min-height: 995px;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .page_about {
    padding-top: 40px;
    min-height: clamp(44.688rem, 38.82rem + 29.8vw, 53.125rem);
  }
}

.page_about-box {
  position: relative;
  height: 700px;
}
@media screen and (max-width: 768px) {
  .page_about-box {
    height: inherit;
  }
}

@media screen and (max-width: 768px) {
  .page_about-ttl-box,
  .page_reason-ttl-box {
    text-align: center;
  }
}

.page_about-en-ttl,
.page_reason-en-ttl {
  display: block;
  font-family: "Crimson Text", serif;
  color: #F9F9F9;
  font-size: clamp(0.625rem, -0.246rem + 1.82vw, 2rem);
}
@media screen and (max-width: 768px) {
  .page_about-en-ttl,
  .page_reason-en-ttl {
    font-size: 10px;
    color: #333;
  }
}

.page_about-ja-ttl,
.page_reason-ja-ttl {
  font-family: "Noto Serif JP", serif;
  color: #F9F9F9;
  position: relative;
  display: inline-block;
  font-size: clamp(1.5rem, 0.233rem + 2.64vw, 3.5rem);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page_about-ja-ttl,
  .page_reason-ja-ttl {
    font-size: clamp(1.25rem, 1.076rem + 0.88vw, 1.5rem);
    color: #333;
  }
}

.page_about-img {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  height: 80%;
  width: 30%;
  border-top-left-radius: 50px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 50px;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .page_about-img {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page_about-img {
    display: none;
  }
}

.page_about-text-box {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  background-color: #4A6B5C;
  min-height: 100%;
}
@media screen and (max-width: 768px) {
  .page_about-text-box {
    position: initial;
    width: 100%;
    background-image: url(../images/image02.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

.page_about-list,
.page_reason-list {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .page_about-list,
  .page_reason-list {
    padding: clamp(0.625rem, -0.244rem + 4.42vw, 1.875rem);
    background-color: rgba(249, 249, 249, 0.5);
  }
}

.page_about-item,
.page_reason-item {
  border-bottom: 1px solid #F9F9F9;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .page_about-item,
  .page_reason-item {
    border-bottom: 1px solid #626262;
  }
}

.page_about-item:not(:first-child),
.page_reason-item:not(:first-child) {
  padding-top: 20px;
}

.page_about-text-inner {
  width: 80%;
  margin-left: auto;
  padding-top: clamp(5rem, 3.661rem + 2.09vw, 6.25rem);
  padding-bottom: clamp(5rem, 3.661rem + 2.09vw, 6.25rem);
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  .page_about-text-inner {
    margin-left: inherit;
    margin-inline: auto;
    padding-top: clamp(1.563rem, 0.476rem + 5.52vw, 3.125rem);
    padding-bottom: clamp(1.563rem, 0.476rem + 5.52vw, 3.125rem);
    padding-right: 0;
    width: 100%;
    background-color: rgba(249, 249, 249, 0.5);
  }
}

.page_about-number,
.page_reason-number {
  font-family: "Crimson Text", serif;
  color: #F9F9F9;
  font-size: clamp(1rem, 0.892rem + 0.46vw, 1.25rem);
  padding-top: 4px;
}
@media screen and (max-width: 768px) {
  .page_about-number,
  .page_reason-number {
    color: #333;
    padding-top: 0;
  }
}

.page_about-list-ttl,
.page_reason-list-ttl {
  padding-left: 20px;
  font-family: "Noto Serif JP", serif;
  color: #F9F9F9;
  font-size: clamp(1rem, 0.892rem + 0.46vw, 1.25rem);
}
@media screen and (max-width: 768px) {
  .page_about-list-ttl,
  .page_reason-list-ttl {
    color: #333;
    font-size: clamp(0.75rem, 0.576rem + 0.88vw, 1rem);
    font-weight: 500;
  }
}

.page_about-list-text,
.page_reason-list-text {
  font-family: "Noto Serif JP", serif;
  color: #F9F9F9;
  margin-top: 10px;
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
}
@media screen and (max-width: 768px) {
  .page_about-list-text,
  .page_reason-list-text {
    color: #333;
    font-size: clamp(0.625rem, 0.364rem + 1.32vw, 1rem);
  }
}

.page_reason {
  max-width: 1980px;
  margin-inline: auto;
  min-height: 780px;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .page_reason {
    padding-top: 40px;
    min-height: clamp(36.25rem, 31.035rem + 26.49vw, 43.75rem);
  }
}

.page_reason-box {
  position: relative;
  height: 700px;
}
@media screen and (max-width: 768px) {
  .page_reason-box {
    height: inherit;
  }
}

.page_reason-img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 80%;
  width: 30%;
  border-top-left-radius: 0px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 0px;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .page_reason-img {
    height: 90%;
  }
}
@media screen and (max-width: 768px) {
  .page_reason-img {
    display: none;
  }
}

.page_reason-text-box {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  background-color: #4A6B5C;
  min-height: 100%;
}
@media screen and (max-width: 768px) {
  .page_reason-text-box {
    position: initial;
    width: 100%;
    background-image: url(../images/image03.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

.page_reason-text-inner {
  width: 80%;
  margin-right: auto;
  padding-top: clamp(5rem, 3.661rem + 2.09vw, 6.25rem);
  padding-bottom: clamp(5rem, 3.661rem + 2.09vw, 6.25rem);
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .page_reason-text-inner {
    margin-left: inherit;
    margin-inline: auto;
    padding-top: clamp(1.563rem, 0.476rem + 5.52vw, 3.125rem);
    padding-bottom: clamp(1.563rem, 0.476rem + 5.52vw, 3.125rem);
    padding-left: 0;
    width: 100%;
    background-color: rgba(249, 249, 249, 0.5);
  }
}

.page_access {
  max-width: 1980px;
  margin-inline: auto;
  padding: 130px 20px 0;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .page_access {
    padding-left: clamp(0.625rem, -0.244rem + 4.42vw, 1.875rem);
    padding-right: clamp(0.625rem, -0.244rem + 4.42vw, 1.875rem);
    padding-top: clamp(1.563rem, 0.476rem + 5.52vw, 3.125rem);
    margin-bottom: 80px;
  }
}

.page_access-en-ttl,
.page_company-profile-en-ttl {
  display: block;
  font-family: "Crimson Text", serif;
  color: #333;
  font-size: clamp(0.625rem, -0.246rem + 1.82vw, 2rem);
}
@media screen and (max-width: 768px) {
  .page_access-en-ttl,
  .page_company-profile-en-ttl {
    font-size: 10px;
  }
}

.page_access-ja-ttl,
.page_company-profile-ja-ttl {
  font-family: "Noto Serif JP", serif;
  color: #333;
  position: relative;
  display: inline-block;
  font-size: clamp(1.5rem, 0.233rem + 2.64vw, 3.5rem);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page_access-ja-ttl,
  .page_company-profile-ja-ttl {
    font-size: clamp(1.25rem, 1.076rem + 0.88vw, 1.5rem);
  }
}

.address-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .address-flex {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }
}

.access-post {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.875rem, 0.821rem + 0.23vw, 1rem);
}

.access-address {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.875rem, 0.821rem + 0.23vw, 1rem);
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .access-address {
    padding-left: 0;
    padding-top: 4px;
  }
}

.map {
  width: 100%;
  height: 400px;
}

.map iframe {
  width: 100%;
  height: 100%;
}

.page_company-profile {
  max-width: 1980px;
  margin-inline: auto;
}

.page_company-profile {
  background-color: #fffaf3;
}

.page_company-profile-box {
  max-width: 1980px;
  padding: 130px 50px 120px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .page_company-profile-box {
    padding-top: clamp(1.563rem, 0.476rem + 5.52vw, 3.125rem);
    padding-left: clamp(0.625rem, -0.244rem + 4.42vw, 1.875rem);
    padding-right: clamp(0.625rem, -0.244rem + 4.42vw, 1.875rem);
    padding-bottom: 60px;
  }
}

.company-profile-textbox {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .company-profile-textbox {
    margin-top: 30px;
  }
}

.company-profile-textbox dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.875rem, 0.821rem + 0.23vw, 1rem);
  padding-bottom: 40px;
  border-bottom: 1px solid #dcdcdc;
}
@media screen and (max-width: 768px) {
  .company-profile-textbox dl {
    flex-direction: column;
    padding-bottom: 20px;
  }
}

.company-profile-textbox dl:not(:first-child) {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .company-profile-textbox dl:not(:first-child) {
    padding-top: 20px;
  }
}

.company-profile-textbox dt {
  width: 15%;
  font-weight: 700;
  font-size: clamp(1rem, 0.892rem + 0.46vw, 1.25rem);
}
@media screen and (max-width: 768px) {
  .company-profile-textbox dt {
    width: 100%;
    padding-bottom: 16px;
    font-size: clamp(0.75rem, 0.576rem + 0.88vw, 1rem);
  }
}

.company-profile-textbox dd {
  width: 80%;
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
}
@media screen and (max-width: 768px) {
  .company-profile-textbox dd {
    width: 100%;
    font-size: clamp(0.625rem, 0.364rem + 1.32vw, 1rem);
  }
}

.dd__flex {
  display: flex;
  gap: 18px;
  align-items: center;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .dd__flex {
    flex-direction: column;
    gap: 0;
  }
}

@media screen and (max-width: 768px) {
  .dd__flex span:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 375px) {
  .dd__flex span:not(:last-child) {
    margin-bottom: 5px;
  }
}

.dd__flex span,
.dd_column span {
  display: block;
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
}
@media screen and (max-width: 768px) {
  .dd__flex span,
  .dd_column span {
    width: 100%;
    font-size: clamp(0.625rem, 0.364rem + 1.32vw, 1rem);
  }
}

.dd_column {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .dd_column {
    width: 100%;
  }
}

.dd_column span:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .dd_column span:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 375px) {
  .dd_column span:not(:last-child) {
    margin-bottom: 5px;
  }
}

.page_blog-inner,
.page_works-inner {
  max-width: 1980px;
  padding: 80px 30px 0;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1240px) {
  .page_blog-inner,
  .page_works-inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .page_blog-inner,
  .page_works-inner {
    padding: 40px 15px 0;
  }
}

.page_blog .page_content-list,
.page_works .page_content-list {
  width: 80%;
  padding-left: 30px;
}
@media screen and (max-width: 1240px) {
  .page_blog .page_content-list,
  .page_works .page_content-list {
    width: 100%;
    padding-left: 0;
  }
}

.page_blog .page_list,
.page_works .page_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3%;
}
@media screen and (max-width: 768px) {
  .page_blog .page_list,
  .page_works .page_list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.page_blog .page_item,
.page_works .page_item {
  position: relative;
  padding-left: 6%;
  margin-bottom: 5%;
}

.page_blog .page_link {
  display: block;
}

.page_blog .page_item-ttl,
.page_works .page_item-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.75rem, 0.49rem + 0.54vw, 1.5rem);
  color: #333;
  font-weight: 700;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .page_blog .page_item-ttl,
  .page_works .page_item-ttl {
    font-size: clamp(0.563rem, 0.258rem + 1.55vw, 1rem);
  }
}

.page_blog .page_img,
.page_works .page_img {
  width: 100%;
  max-height: 430px;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .page_blog .page_img,
  .page_works .page_img {
    max-height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .page_blog .page_img,
  .page_works .page_img {
    max-height: 415px;
  }
}
@media screen and (max-width: 600px) {
  .page_blog .page_img,
  .page_works .page_img {
    max-height: 330px;
  }
}
@media screen and (max-width: 375px) {
  .page_blog .page_img,
  .page_works .page_img {
    max-height: 200px;
  }
}

.page_blog .page_item-textbox,
.page_works .page_item-textbox {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  background-color: rgba(220, 220, 220, 0.9);
  padding: 5%;
}

.page_blog h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.75rem, 0.49rem + 0.54vw, 1.5rem);
  font-weight: 500;
  color: #333;
  padding-bottom: 5%;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 768px) {
  .page_blog h3 {
    font-size: clamp(0.563rem, 0.258rem + 1.55vw, 1rem);
  }
}

.page_blog p,
.page_works p {
  padding-top: 3%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.75rem, 0.49rem + 0.54vw, 1.5rem);
  color: #333;
}
@media screen and (max-width: 768px) {
  .page_blog p,
  .page_works p {
    font-size: clamp(0.563rem, 0.258rem + 1.55vw, 1rem);
  }
}

.page_blog .page_item-textbox p:nth-of-type(2),
.page_works .page_item-textbox p:nth-of-type(2) {
  display: none;
}

.page_blog h4,
.page_works h4 {
  display: none;
}

.page_main-list {
  width: 20%;
  padding-right: 30px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
}
@media screen and (max-width: 1240px) {
  .page_main-list {
    width: 100%;
    padding-right: 0;
    flex-direction: initial;
    column-gap: 20px;
    row-gap: 20px;
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 600px) {
  .page_main-list {
    column-gap: 10px;
    row-gap: 5px;
  }
}

.page_main-item {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  position: sticky;
  top: 250px;
  left: 0;
  overflow: scroll;
}
@media screen and (max-width: 1240px) {
  .page_main-item {
    flex-direction: initial;
    column-gap: 20px;
    row-gap: 20px;
    margin-bottom: 5%;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 600px) {
  .page_main-item {
    column-gap: 10px;
    row-gap: 5px;
  }
}

.page_main-link {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.75rem, 0.72rem + 0.15vw, 1rem);
  display: inline-block;
  position: relative;
  padding-left: 14px;
  color: #333;
  padding-top: 5%;
  padding-bottom: 5%;
}
@media screen and (max-width: 1240px) {
  .page_main-link {
    width: initial;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.page_blog .page_main-link.active {
  color: #A3573A;
  font-weight: 700;
}

.page_blog .page_main-link.active::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #A3573A;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.page_works .page_main-link.active {
  color: #4A6B5C;
  font-weight: 700;
}

.page_works .page_main-link.active::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #4A6B5C;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.page_detail-blog .page_detail-box .span,
.page_detail-works .page_detail-box .span {
  margin-top: 0;
}

.page_detail-blog .page_detail-box .page_item-ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.025rem + 0.99vw, 2.25rem);
  color: #333;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .page_detail-blog .page_detail-box .page_item-ttl {
    line-height: 1.6666;
    margin-top: 10px;
  }
}

.page_detail-blog .page_detail-box .time,
.page_detail-works .page_detail-box .time {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .page_detail-blog .page_detail-box .time,
  .page_detail-works .page_detail-box .time {
    margin-top: 10px;
  }
}

.page_detail-blog .page_detail-box img,
.page_detail-works .page_detail-box img {
  width: 100%;
  height: clamp(29.375rem, 15.286rem + 29.31vw, 51.563rem);
  object-fit: cover;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .page_detail-blog .page_detail-box img,
  .page_detail-works .page_detail-box img {
    height: auto;
    margin-top: 20px;
    height: clamp(10.938rem, -0.273rem + 57.86vw, 27.5rem);
  }
}

.page_detail-blog .page_detail-text-box,
.page_detail-works .page_detail-text-box {
  padding-bottom: 40px;
  margin-top: 40px;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .page_detail-blog .page_detail-text-box,
  .page_detail-works .page_detail-text-box {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 20px;
  }
}

.page_detail-blog .page_detail-text-box h4 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.125rem, 0.887rem + 0.5vw, 1.5rem);
  margin-bottom: 40px;
  padding: 0 16px 8px;
  border-bottom: 1px solid #dcdcdc;
  position: relative;
}

.page_detail-blog .page_detail-text-box h4::after,
.page_detail-works .page_detail-text-box h4::after {
  content: "";
  width: 50%;
  height: 1px;
  background-color: #A3573A;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.page_detail-blog .page_detail-text-box p,
.page_detail-works .page_detail-text-box p {
  margin-bottom: 24px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .page_detail-blog .page_detail-text-box p,
  .page_detail-works .page_detail-text-box p {
    font-size: clamp(0.75rem, 0.576rem + 0.88vw, 1rem);
  }
}

.page_sub-list {
  width: 20%;
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .page_sub-list {
    width: 100%;
    padding-left: 0;
  }
}

.page_article-ttl,
.page_archive-ttl,
.page_category-ttl {
  width: 100%;
  background-color: #A3573A;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.875rem, 0.796rem + 0.17vw, 1rem);
  font-weight: 700;
  color: #fff;
  padding: 15px 18px;
}
@media screen and (max-width: 1240px) {
  .page_article-ttl,
  .page_archive-ttl,
  .page_category-ttl {
    font-weight: 500;
    padding: 10px 13px;
  }
}

@media screen and (max-width: 768px) {
  .page_article ul,
  .page_archive ul,
  .page_category ul {
    width: 90%;
    margin-inline: auto;
  }
}

.page_article ul {
  margin-top: 18px;
}

.page_article .page_item:not(:first-child) {
  padding-top: 18px;
}

.page_article .page_item:not(:last-child) {
  border-bottom: 1px solid #dcdcdc;
}

.page_article .page_link {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
}

.page_article img {
  aspect-ratio: 1/1;
  max-width: 33%;
  height: 33%;
  object-fit: cover;
}

.page_article .page_item-textbox {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page_article .page_item-textbox {
    justify-content: space-around;
  }
}

.page_article .page_item-textbox .page_item-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.75rem, 0.49rem + 0.54vw, 1.5rem);
  line-height: 2;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 768px) {
  .page_article .page_item-textbox .page_item-ttl {
    font-weight: 700;
  }
}

.page_article .page_item-textbox h4 {
  display: none;
}

.page_article .page_item-textbox h3 {
  display: none;
}
@media screen and (max-width: 768px) {
  .page_article .page_item-textbox h3 {
    display: block;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(0.75rem, 0.49rem + 0.54vw, 1.5rem);
    font-weight: 500;
    color: #333;
    padding-bottom: 5%;
    border-bottom: 1px solid #333;
  }
}
@media screen and (max-width: 375px) {
  .page_article .page_item-textbox h3 {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.page_article .page_item-textbox p {
  display: none;
}
@media screen and (max-width: 768px) {
  .page_article .page_item-textbox p {
    display: block;
    padding-top: 3%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(0.75rem, 0.49rem + 0.54vw, 1.5rem);
    color: #333;
  }
}
@media screen and (max-width: 375px) {
  .page_article .page_item-textbox p {
    display: none;
  }
}

.page_article .page_item-textbox p:nth-of-type(2) {
  display: none;
}

@media screen and (max-width: 768px) {
  .page_article .time {
    padding-top: 3%;
  }
}
@media screen and (max-width: 375px) {
  .page_article .time {
    padding-top: 0;
  }
}

.page_archive li:not(:last-child),
.page_category li:not(:last-child) {
  border-bottom: 1px solid #dcdcdc;
}

.page_archive a,
.page_category a {
  display: block;
  padding: 18px 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.75rem, 0.49rem + 0.54vw, 1.5rem);
  color: #333;
}

.page_detail-blog {
  max-width: 1980px;
  padding: 80px 30px 0;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page_detail-blog {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .page_detail-blog {
    padding: 30px 15px 0;
  }
}

.page_detail-blog .page_detail-box {
  width: 80%;
  padding-right: 15px;
}
@media screen and (max-width: 768px) {
  .page_detail-blog .page_detail-box {
    width: 100%;
    padding-right: 0;
    margin-bottom: 57px;
  }
}

.page_detail-blog .page_detail-text-box h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.5rem, 1.025rem + 0.99vw, 2.25rem);
  font-weight: 500;
  color: #333;
  margin-bottom: clamp(1rem, 0.837rem + 0.69vw, 1.375rem);
  padding: 8px 16px;
  border-left: 3px solid #A3573A;
}
@media screen and (max-width: 768px) {
  .page_detail-blog .page_detail-text-box h3 {
    padding: 8px 11px;
    margin-bottom: 20px;
    font-size: clamp(1rem, 0.652rem + 1.77vw, 1.5rem);
  }
}

.page_detail-works {
  max-width: 1980px;
  padding: 80px 30px 0;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .page_detail-works {
    padding: 30px 15px 0;
  }
}

.page_detail-works .page_detail-box {
  width: 80%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .page_detail-works .page_detail-box {
    width: 100%;
  }
}

.page_detail-works .page_detail-box .page_item-ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.025rem + 0.99vw, 2.25rem);
  color: #333;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .page_detail-works .page_detail-box .page_item-ttl {
    line-height: 1.6666;
    margin-top: 10px;
    font-size: clamp(0.938rem, 0.557rem + 1.97vw, 1.5rem);
  }
}

.page_detail-works .page_detail-text-box h4 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.125rem, 0.887rem + 0.5vw, 1.5rem);
  margin-bottom: 40px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dcdcdc;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page_detail-works .page_detail-text-box h4 {
    font-size: clamp(0.938rem, 0.557rem + 1.97vw, 1.5rem);
  }
}

.page_detail-works .page_detail-box-linkbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page_detail-works .page_detail-box .page_detail-box-link {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.75rem, 0.592rem + 0.33vw, 1rem);
  color: #4A6B5C;
  padding: 1.5rem 6rem;
  border: 1px solid #4A6B5C;
}
@media screen and (max-width: 768px) {
  .page_detail-works .page_detail-box .page_detail-box-link {
    padding: 1rem 4rem;
  }
}

.page_detail-works .page_detail-box .page_detail-box-link:hover {
  background-color: #4A6B5C;
  color: #fff;
}

.post .post_title {
  width: 100%;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.125rem, 0.908rem + 0.92vw, 1.625rem);
  font-weight: 700;
  color: #333;
}

.post__inner {
  max-width: 1980px;
  padding: 80px 30px 0;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .post__inner {
    padding: 40px 15px 0;
  }
}

.post ul {
  padding-top: 20px;
}

.post .page_item:not(:last-child) {
  border-bottom: 1px solid #dcdcdc;
}

.post .page_item:not(:last-child) {
  padding-bottom: 18px;
}

.post .page_item:not(:first-child) {
  padding-top: 18px;
}

.post .page_link {
  display: flex;
  justify-content: space-between;
}

.post img {
  aspect-ratio: 1/1;
  max-width: 33%;
  height: 33%;
  object-fit: cover;
}

.post .page_item-textbox {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.post .page_item-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  line-height: 2;
  color: #333;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1240px) {
  .post .page_item-ttl {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .post .page_item-ttl {
    font-size: 16px;
    line-height: 1.666;
  }
}
@media screen and (max-width: 375px) {
  .post .page_item-ttl {
    font-size: 12px;
  }
}

.post h3 {
  display: none;
}

.post p {
  padding-top: 3%;
  line-height: 1.666;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.75rem, 0.49rem + 0.54vw, 1.5rem);
  color: #333;
}
@media screen and (max-width: 1240px) {
  .post p {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .post p {
    -webkit-line-clamp: 3;
  }
}
@media screen and (max-width: 375px) {
  .post p {
    -webkit-line-clamp: 2;
  }
}

.post h4 {
  display: none;
}

.post .page_item-textbox p:nth-of-type(2) {
  display: none;
}

.form,
.confirm,
.complete,
.error {
  max-width: 1980px;
  padding: 80px 30px 0;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .form,
  .confirm,
  .complete,
  .error {
    padding: 40px 15px 0;
  }
}

.form__inner,
.confirm__inner,
.complete__inner {
  width: 80%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .form__inner,
  .confirm__inner,
  .complete__inner {
    width: 100%;
  }
}

.form__list {
  font-family: "Noto Serif JP", serif;
}

.form__required,
.contact__required {
  color: #ff0000;
}

@media screen and (max-width: 768px) {
  .form__label, .form__data,
  .contact__term, .contact__definition {
    font-size: clamp(0.75rem, 0.581rem + 0.87vw, 1rem);
  }
}

.form__input,
.form__select,
.form__textarea,
.form__acceptance-text {
  font-size: clamp(0.625rem, 0.522rem + 0.53vw, 1rem);
  width: 100%;
  padding: 12px;
  border: 1px solid #333;
}

.form__field + .form__field, .form-acceptance {
  margin-top: 40px;
}
@media screen and (max-width: 375px) {
  .form__field + .form__field, .form-acceptance {
    margin-top: 15px;
  }
}

.form__data-select {
  position: relative;
}

.form__data-select::after {
  position: absolute;
  top: 45%;
  right: 15px;
  width: 10px;
  height: 10px;
  content: "";
  transform: translateY(-50%) rotate(135deg);
  border-top: solid 2px #333;
  border-right: solid 2px #333;
}
@media screen and (max-width: 375px) {
  .form__data-select::after {
    right: 10px;
    width: 5px;
    height: 5px;
  }
}

.form__data, .form__acceptance,
.contact__definition {
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .form__data, .form__acceptance,
  .contact__definition {
    margin-top: 8px;
  }
}

/* 初期状態（プレースホルダーとして「選択肢1」が表示されている時）のselect要素のテキスト色 */
select.wpcf7-form-control.wpcf7-select#category.placeholder-active {
  color: #626262; /* 薄いグレー */
}

/* プレースホルダーでない場合の通常の色 */
select.wpcf7-form-control.wpcf7-select#category {
  color: #333; /* 通常の文字色 */
}

/* ドロップダウンが開いたときの各オプションの色は、基本的にブラウザのデフォルトスタイルに依存します。 */
/* ただし、個別のオプションにスタイルを適用したい場合は以下のようにも書けますが、効果は限定的です。 */
select.wpcf7-form-control.wpcf7-select#category option[value="選択肢 1"] {
  color: #333;
}

.wpcf7-list-item-label {
  position: relative;
  padding-left: 10px;
}

.wpcf7-list-item-label:before {
  position: absolute;
  content: "";
  top: 50%;
  left: -6%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border: 1px solid #626262;
  border-radius: 1px;
}

.wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  opacity: 0;
  top: 15%;
  left: -4%;
  transform: rotate(45deg);
  width: 5px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
}
@media screen and (max-width: 375px) {
  .wpcf7-list-item-label::after {
    top: 0;
    left: -3.5%;
  }
}

input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.form__acceptance-text {
  max-height: 200px;
  overflow: scroll;
}

.form__submit-button {
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 375px) {
  .form__submit-button {
    margin-top: 15px;
  }
}

.form__submit-input {
  font-size: clamp(0.75rem, 0.592rem + 0.33vw, 1rem);
  overflow: hidden;
  padding: 1.5rem 6rem;
  color: #fff;
  border-radius: 0;
  background: #A3573A;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  letter-spacing: 0.1em;
  width: 100%;
  max-width: 446px;
}
@media screen and (max-width: 768px) {
  .form__submit-input {
    padding: 1rem 4rem;
  }
}

.form__submit-input:hover {
  background-color: #333;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.contact__text {
  font-size: 16px;
}

.contact__list {
  font-family: "Noto Serif JP", serif;
  margin: 40px 0;
}
@media screen and (max-width: 375px) {
  .contact__list {
    margin: 20px 0;
  }
}

.contact__definition {
  font-size: clamp(0.625rem, 0.522rem + 0.53vw, 1rem);
  width: 100%;
  padding: 12px;
  border: 1px solid #333;
}

.contact__item + .contact__item {
  margin-top: 40px;
}
@media screen and (max-width: 375px) {
  .contact__item + .contact__item {
    margin-top: 15px;
  }
}

.contact__buttons p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wpcf7-spinner {
  display: none;
}

.contact__back-button,
.contact__submit-input {
  padding: 16px 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  color: #fff;
  background-color: #A3573A;
  border-radius: 4px;
  width: 40%;
  transition: ease-in 0.3s;
}
.contact__back-button:hover,
.contact__submit-input:hover {
  transition: ease-in 0.3s;
  background-color: #333;
  border: none;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .contact__back-button,
  .contact__submit-input {
    width: 45%;
    font-size: clamp(0.75rem, 0.581rem + 0.87vw, 1rem);
    padding: 8px 10px;
  }
}

.complete h3,
.error h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.5rem, 1.025rem + 0.99vw, 2.25rem);
  font-weight: 700;
  color: #333;
  margin-bottom: clamp(1rem, 0.837rem + 0.69vw, 1.375rem);
}
@media screen and (max-width: 768px) {
  .complete h3,
  .error h3 {
    margin-bottom: 20px;
    font-size: clamp(1rem, 0.652rem + 1.77vw, 1.5rem);
  }
}

.complete h4 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.125rem, 0.887rem + 0.5vw, 1.5rem);
  margin-bottom: 40px;
}

.complete p,
.error p {
  font-family: "Noto Serif JP", serif;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .complete p,
  .error p {
    font-size: clamp(0.75rem, 0.576rem + 0.88vw, 1rem);
  }
}

.complete .complete_box {
  text-align: center;
  margin-top: 40px;
}

.complete a {
  font-size: clamp(0.75rem, 0.592rem + 0.33vw, 1rem);
  overflow: hidden;
  padding: 1.5rem 6rem;
  color: #fff;
  border-radius: 0;
  background: #A3573A;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  letter-spacing: 0.1em;
  width: 100%;
  max-width: 446px;
}
.complete a:hover {
  background-color: #333;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.error__inner {
  width: 80%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .error__inner {
    width: 100%;
  }
}

.complete .complete_box {
  margin-top: 40px;
}

.error a {
  font-size: clamp(0.75rem, 0.592rem + 0.33vw, 1rem);
  overflow: hidden;
  padding: 1.5rem 6rem;
  color: #fff;
  border-radius: 0;
  background: #4A6B5C;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  letter-spacing: 0.1em;
  width: 100%;
  max-width: 446px;
}
.error a:hover {
  background-color: #333;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .error a {
    max-width: 100%;
  }
}/*# sourceMappingURL=style.css.map */