@charset "UTF-8";
.header {
  height: 80px;
  width: 100%;
}
@media (max-width: 770px) {
  .header {
    height: 60px;
  }
}
.header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1140px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.header .header-inner h1 {
  margin-top: 20px;
  width: 100px;
}
.header .header-inner .nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.header .header-inner .nav .nav-contents {
  display: flex;
  gap: 30px;
}
.header .header-inner .nav .nav-contents li a {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}
.header .header-inner .nav .sns {
  display: flex;
  gap: 20px;
}
.header .header-inner .nav .sns .sns-icon {
  width: 20px;
  height: 20px;
}
.header .header-inner .nav .sns .sns-icon-ivory {
  display: none;
}
.header .header-inner .nav .nav-contact {
  font-weight: bold;
}
@media (max-width: 1080px) {
  .header .header-inner .nav {
    position: fixed;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    top: 0;
    left: -500px;
    bottom: 0;
    padding: 110px 0 0 40px;
    background-color: var(--bg-nav);
    width: 500px;
    transition: all 0.5s;
    opacity: 0;
    z-index: 20;
  }
  .header .header-inner .nav .nav-contents {
    flex-direction: column;
  }
  .header .header-inner .nav .nav-contents li {
    margin-bottom: 30px;
  }
  .header .header-inner .nav .sns {
    margin-top: 40px;
    gap: 40px;
  }
  .header .header-inner .nav .sns .sns-icon {
    display: none;
  }
  .header .header-inner .nav .sns .sns-icon-ivory {
    display: block;
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 1080px) {
  .header .toggle-btn {
    width: 30px;
    height: 30px;
    position: fixed;
    top: 20px;
    right: 20px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 20;
  }
  .header .toggle-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--border-main);
    transition: 0.5s;
    border-radius: 5px;
    position: absolute;
    left: 0;
  }
  .header .toggle-btn span:nth-child(1) {
    top: 4px;
  }
  .header .toggle-btn span:nth-child(2) {
    top: 14px;
  }
  .header .toggle-btn span:nth-child(3) {
    bottom: 4px;
  }
}
@media (max-width: 1080px) {
  .header #mask {
    display: none;
    transition: 0.5s;
  }
}
@media (max-width: 1080px) {
  .header.open .toggle-btn span {
    background-color: var(--border-hmb);
  }
  .header.open .toggle-btn span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
  }
  .header.open .toggle-btn span:nth-child(2) {
    transform: rotate(-45deg);
    top: 50%;
  }
  .header.open .toggle-btn span:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
  }
}
@media (max-width: 1080px) {
  .header.open #mask {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-nav);
    cursor: pointer;
    opacity: 0.8;
    z-index: 10;
  }
}
@media (max-width: 1080px) {
  .header.open .nav {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    left: 0;
    top: 0;
    bottom: 0;
    opacity: 1;
    color: var(--text-sub);
  }
  .header.open .nav .nav-contents li {
    margin-bottom: 30px;
  }
  .header.open .nav .nav-contents li a {
    color: var(--text-sub);
  }
  .header.open .nav .sns {
    margin-top: 40px;
  }
  .header.open .nav .sns .sns-icon {
    display: none;
  }
  .header.open .nav .sns .sns-icon-ivory {
    display: block;
  }
}

.page-home .main-visual {
  width: 100%;
  height: calc(100vh - 80px);
  position: relative;
  margin-bottom: 60px;
}
.page-home .main-visual .grid-container {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
}
.page-home .main-visual .grid-container > div {
  height: 100%;
}
.page-home .main-visual .grid-container > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.page-home .main-visual .grid-container .grid-item1 {
  grid-column: 1/3;
  grid-row: 1/2;
}
.page-home .main-visual .grid-container .grid-item2 {
  grid-column: 3/6;
  grid-row: 1/4;
}
.page-home .main-visual .grid-container .grid-item3 {
  grid-column: 6/8;
  grid-row: 1/3;
}
.page-home .main-visual .grid-container .grid-item4 {
  grid-column: 1/3;
  grid-row: 2/4;
}
.page-home .main-visual .grid-container .grid-item5 {
  grid-column: 6/8;
  grid-row: 3/4;
}
.page-home .main-visual .main-visual-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.page-home .main-visual .main-visual-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-sub);
}
@media (max-width: 1080px) {
  .page-home .main-visual {
    height: calc(100svh - 70px);
    margin-bottom: 60px;
  }
  .page-home .main-visual .grid-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  .page-home .main-visual .grid-container .grid-item2 {
    grid-column: 1/4;
    grid-row: 2/3;
  }
  .page-home .main-visual .grid-container .grid-item2 img {
    -o-object-position: 60% 50%;
       object-position: 60% 50%;
  }
  .page-home .main-visual .grid-container .grid-item3 {
    grid-column: 3/4;
    grid-row: 1/2;
  }
  .page-home .main-visual .grid-container .grid-item4 {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .page-home .main-visual .grid-container .grid-item5 {
    grid-column: 2/4;
    grid-row: 3/4;
  }
}
@media (max-width: 770px) {
  .page-home .main-visual {
    height: calc(100svh - 60px);
  }
  .page-home .main-visual .grid-container {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  .page-home .main-visual .main-visual-title h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-sub);
  }
}
.page-home .news-archive {
  padding: 0 30px;
}
.page-home .news-archive a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1140px;
  width: 100%;
  background-color: var(--bg-sub);
  border-radius: 10px;
  padding: 30px;
  margin: 50px auto;
}
.page-home .news-archive a h3 {
  position: relative;
  max-width: 100%;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  padding: 0 30px;
  margin-right: 50px;
}
.page-home .news-archive a h3::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0px;
  width: 2px;
  height: 100%;
  border-radius: 1px;
  background-color: var(--object-color);
}
.page-home .news-archive a .archive-contents {
  width: 80%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
.page-home .news-archive a .archive-contents .archive-time-cate {
  max-width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.page-home .news-archive a .archive-contents .archive-time-cate time {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--text-main);
  padding-right: 20px;
}
.page-home .news-archive a .archive-contents .archive-time-cate span {
  display: inline-block;
  font-size: 0.87rem;
  color: var(--text-main);
  font-weight: bold;
  border: 1px solid var(--border-main);
  border-radius: 20px;
  padding: 7px 15px;
}
.page-home .news-archive a .archive-contents p {
  font-size: 1.1rem;
  display: inline-block;
}
@media (max-width: 1080px) {
  .page-home .news-archive {
    padding: 0 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .page-home .news-archive a {
    padding: 30px 15px;
  }
  .page-home .news-archive a h3 {
    padding: 0 20px;
  }
  .page-home .news-archive a .archive-contents {
    padding-bottom: 5px;
  }
  .page-home .news-archive a .archive-contents .archive-time-cate time {
    font-size: 0.8rem;
  }
  .page-home .news-archive a .archive-contents .archive-time-cate span {
    font-size: 0.7rem;
    padding: 5px 15px;
  }
  .page-home .news-archive a .archive-contents p {
    font-size: 0.9rem;
    text-align: right;
  }
}
@media (max-width: 770px) {
  .page-home .news-archive {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-home .news-archive a {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 30px;
  }
  .page-home .news-archive a h3 {
    text-align: left;
    margin-bottom: 10px;
    margin-right: 30px;
    padding: 0;
  }
  .page-home .news-archive a h3::before {
    top: auto;
    bottom: -5px;
    right: 0px;
    width: 100%;
    height: 2px;
    border-radius: 1px;
    background-color: var(--object-color);
  }
  .page-home .news-archive a .archive-contents {
    width: 80%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }
  .page-home .news-archive a .archive-contents .archive-time-cate {
    width: 100%;
    padding-bottom: 5px;
    text-align: right;
  }
  .page-home .news-archive a .archive-contents .archive-time-cate time {
    font-size: 0.75rem;
    color: var(--text-main);
    padding-right: 10px;
  }
  .page-home .news-archive a .archive-contents .archive-time-cate span {
    font-size: 0.65rem;
    color: var(--text-main);
    font-weight: bold;
  }
  .page-home .news-archive a .archive-contents p {
    font-size: 0.9rem;
    text-align: right;
  }
}
.page-home .concept {
  position: relative;
}
.page-home .concept .concept-contents {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  max-width: 980px;
  width: 100%;
  margin: 0 auto 150px auto;
  z-index: 1;
}
.page-home .concept .concept-contents .concept-title {
  width: 30%;
  text-align: left;
}
.page-home .concept .concept-contents .concept-title .section-title-en {
  font-size: 3.5rem;
  letter-spacing: 0.19rem;
}
.page-home .concept .concept-contents .concept-text {
  width: 50%;
}
.page-home .concept .concept-contents .concept-text .concept-heading {
  font-size: 1.8rem;
  padding-bottom: 30px;
}
.page-home .concept .concept-contents .concept-text .concept-sub-text {
  font-size: 1.1rem;
  line-height: 2.4rem;
}
.page-home .concept .concept-contents .concept-text .more-btn-container {
  text-align: right;
}
.page-home .concept .concept-contents .concept-text .more-btn-container .more-btn {
  margin: 40px auto;
}
@media (max-width: 1080px) {
  .page-home .concept .concept-contents {
    margin-bottom: 80px;
    justify-content: center;
  }
  .page-home .concept .concept-contents .concept-title {
    width: 30%;
    text-align: left;
  }
  .page-home .concept .concept-contents .concept-text {
    width: 65%;
  }
  .page-home .concept .concept-contents .concept-text .concept-heading {
    font-size: 1.3rem;
  }
  .page-home .concept .concept-contents .concept-text .concept-sub-text {
    font-size: 0.85rem;
    line-height: 1.6rem;
  }
}
@media (max-width: 770px) {
  .page-home .concept .concept-contents {
    flex-direction: column;
    max-width: 375px;
  }
  .page-home .concept .concept-contents .concept-title {
    width: 100%;
    margin-bottom: 30px;
  }
  .page-home .concept .concept-contents .concept-text {
    width: 100%;
  }
}
.page-home .concept .circle_container {
  position: absolute;
  bottom: -5%;
  left: 0%;
  --circle-size: 600px;
  --circle-radius: 300px;
  --circle-font: 45px;
  width: var(--circle-size);
  height: var(--circle-size);
  z-index: 1;
  opacity: 0.1;
  overflow: hidden;
}
.page-home .concept .circle_container .circle-text {
  position: absolute;
  inset: 0;
  color: var(--text-main);
  -webkit-animation: rotate 40s linear infinite;
          animation: rotate 40s linear infinite;
  transform-origin: center;
  font-weight: bold;
}
.page-home .concept .circle_container .circle-text span {
  position: absolute;
  top: 0%;
  left: 50%;
  font-size: var(--circle-font);
  transform-origin: 0 var(--circle-radius);
  white-space: pre;
}
@media (max-width: 1080px) {
  .page-home .concept .circle_container {
    width: 700px;
    height: 700px;
    bottom: -35%;
    left: -35%;
  }
  .page-home .concept .circle_container .circle-text span {
    transform-origin: 0 350px;
  }
}
@media (max-width: 770px) {
  .page-home .concept .circle_container {
    width: 300px;
    height: 300px;
    bottom: -15%;
    left: -11%;
  }
  .page-home .concept .circle_container .circle-text span {
    transform-origin: 0 150px;
    font-size: 20px;
  }
}
.page-home .concept .concept-photo {
  position: absolute;
  right: 0;
  text-align: right;
  background-image: url("../assets/top/shooting02.jpeg");
  height: 350px;
  width: 70%;
  background-size: cover;
  background-position: 50% 40%;
  border-radius: 10px 0 0 10px;
}
@media (max-width: 1080px) {
  .page-home .concept .concept-photo {
    height: 200px;
  }
}
.page-home .about {
  margin-top: 400px;
}
.page-home .about .about-container {
  max-width: 95%;
  margin: 0 auto;
}
.page-home .about .about-container .about-title__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: solid 1px #8f8885;
  width: 100%;
}
.page-home .about .about-container .about-title__wrapper .about-title {
  text-align: left;
}
.page-home .about .about-container .about-title__wrapper .about-title .section-title-jp {
  margin-bottom: 0;
}
.page-home .about .about-container .about-title__wrapper .about-title .section-title-en {
  margin-bottom: 0;
  font-size: 4.5rem;
}
@media (max-width: 1080px) {
  .page-home .about .about-container .about-title__wrapper .about-title .section-title-en {
    font-size: 3.5rem;
    letter-spacing: 0.19rem;
  }
}
.page-home .about .about-container .about-title__wrapper .about-heading p {
  font-size: 2rem;
  margin-bottom: 20px;
}
@media (max-width: 1080px) {
  .page-home .about .about-container .about-title__wrapper .about-heading p {
    font-size: 1rem;
  }
}
.page-home .about .about-container .about-contents .about-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1080px) {
  .page-home .about .about-container .about-contents .about-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 770px) {
  .page-home .about .about-container .about-contents .about-items {
    grid-template-columns: 1fr;
  }
}
.page-home .about .about-container .about-contents .about-items .about-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  border-right: 1px solid #8f8885;
  padding: 35px 35px 80px;
}
.page-home .about .about-container .about-contents .about-items .about-item p {
  writing-mode: vertical-rl;
}
.page-home .about .about-container .about-contents .about-items .about-item .about-item_photo {
  width: 75%;
  height: 300px;
  border-radius: 5px;
  margin-right: 15px;
}
.page-home .about .about-container .about-contents .about-items .about-item .about-item_photo img {
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.page-home .about .about-container .about-contents .about-items .about-item:nth-child(4) {
  border-right: 0px;
}
@media (max-width: 1080px) {
  .page-home .about .about-container .about-contents .about-items .about-item:nth-child(2n) {
    border-right: 0;
  }
  .page-home .about .about-container .about-contents .about-items .about-item:nth-child(3n) {
    border-top: 1px solid #8f8885;
  }
  .page-home .about .about-container .about-contents .about-items .about-item:nth-child(4n) {
    border-top: 1px solid #8f8885;
  }
}
@media (max-width: 770px) {
  .page-home .about .about-container .about-contents .about-items .about-item:nth-child(1n) {
    border-right: 0;
  }
  .page-home .about .about-container .about-contents .about-items .about-item:nth-child(2n) {
    border-top: 1px solid #8f8885;
  }
}
.page-home .about .about-container .about-contents .more-btn-container {
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 1080px) {
  .page-home .about {
    margin-top: 310px;
  }
}
@media (max-width: 770px) {
  .page-home .about {
    margin-top: 310px;
  }
  .page-home .about .about-container .about-title__wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
  }
  .page-home .about .about-container .about-title__wrapper .about-heading p {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
}
.page-home .contact {
  width: 100%;
  border-top: 1px solid #8f8885;
  border-bottom: 1px solid #8f8885;
  margin-top: 300px;
  padding: 30px;
}
@media (max-width: 770px) {
  .page-home .contact {
    margin-top: 100px;
  }
}
.page-home .contact .contact-container {
  max-width: 1140px;
  margin: 0 auto;
}
.page-home .contact .contact-container a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-home .contact .contact-container a:hover .contact-title .contact-ani-container .contact-anime1 {
  transform: translateY(-100%);
}
.page-home .contact .contact-container a:hover .contact-title .contact-ani-container .contact-anime2 {
  transform: translateY(0);
}
.page-home .contact .contact-container a:hover .contact-arrow .arrow-out {
  transform: translate(150%, -50%);
}
.page-home .contact .contact-container a:hover .contact-arrow .arrow-in {
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-home .contact .contact-container a .contact-title {
  width: 100%;
}
.page-home .contact .contact-container a .contact-title .section-title-jp {
  margin-bottom: 0;
}
.page-home .contact .contact-container a .contact-title .section-title-en {
  font-size: 3.5rem;
}
.page-home .contact .contact-container a .contact-title .contact-ani-container {
  position: relative;
  overflow: hidden;
  height: 4.5rem;
}
.page-home .contact .contact-container a .contact-title .contact-ani-container .section-title-en {
  position: absolute;
  left: 0;
  top: 0;
  margin-bottom: 0;
  height: 4.5rem;
  line-height: 4.5rem;
  transition: transform 0.5s ease;
}
.page-home .contact .contact-container a .contact-title .contact-ani-container .contact-anime1 {
  transform: translateY(0);
}
.page-home .contact .contact-container a .contact-title .contact-ani-container .contact-anime2 {
  transform: translateY(100%);
}
.page-home .contact .contact-container a .contact-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid #2d150c;
  border-radius: 35px;
  position: relative;
  overflow: hidden;
}
.page-home .contact .contact-container a .contact-arrow span {
  position: absolute;
  width: 20px;
  height: 1px;
  border-radius: 0.5px;
  background-color: var(--border-main);
}
.page-home .contact .contact-container a .contact-arrow span::before {
  position: absolute;
  content: "";
  top: -2px;
  right: -1px;
  width: 7px;
  height: 1px;
  background-color: var(--border-main);
  border-radius: 0.5px;
  transform: rotate(45deg);
}
.page-home .contact .contact-container a .contact-arrow span::after {
  position: absolute;
  content: "";
  bottom: -2px;
  right: -1px;
  width: 7px;
  height: 1px;
  background-color: var(--border-main);
  border-radius: 0.5px;
  transform: rotate(-45deg);
}
.page-home .contact .contact-container a .contact-arrow .arrow-out {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease;
}
.page-home .contact .contact-container a .contact-arrow .arrow-in {
  top: 50%;
  transform: translate(-250%, -50%);
  transition: transform 0.5s ease;
}

@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.page-about .about {
  color: var(--text-main);
}
.page-about .about .about-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
.page-about .about .about-inner .about-title {
  padding: 200px 0 100px 0;
}
.page-about .about .about-inner .about-title h2 {
  font-size: 5rem;
  font-weight: 500;
}
.page-about .about .about-inner .about-title h3 {
  font-size: 1.3rem;
  font-weight: 700;
}
@media (max-width: 1080px) {
  .page-about .about .about-inner .about-title h2 {
    font-size: 3rem;
    font-weight: 700;
  }
  .page-about .about .about-inner .about-title h3 {
    font-size: 1rem;
    font-weight: 700;
  }
}
.page-about .about .about-inner .about-heading {
  padding: 50px 0;
  border-top: 1px solid var(--border-main);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.page-about .about .about-inner .about-heading h4 {
  width: 25%;
  font-size: 1.4rem;
  font-weight: 700;
}
.page-about .about .about-inner .about-heading .about-heading__text {
  width: 75%;
}
.page-about .about .about-inner .about-heading .about-heading__text p {
  font-size: 0.87rem;
  font-weight: 500;
  line-height: 1.35rem;
}
.page-about .about .about-inner .services {
  padding: 50px 0;
  border-top: 1px solid var(--border-main);
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-about .about .about-inner .services .services-title {
  width: 25%;
}
.page-about .about .about-inner .services .services-title h4 {
  font-size: 1.4rem;
  font-weight: 700;
}
.page-about .about .about-inner .services .services-contents {
  width: 75%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.page-about .about .about-inner .services .services-contents .contents-item {
  width: 45%;
}
.page-about .about .about-inner .services .services-contents .contents-item dl dd {
  font-size: 1.1rem;
  font-weight: 700;
  padding-bottom: 30px;
}
.page-about .about .about-inner .services .services-contents .contents-item dl dt {
  font-size: 0.87rem;
}
.page-about .about .about-inner .services .services-contents .items-bottom {
  margin-top: 50px;
}
.page-about .about .about-inner .about-representative {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 0;
  border-top: 1px solid var(--border-main);
}
.page-about .about .about-inner .about-representative .about-rep-title {
  width: 10%;
}
.page-about .about .about-inner .about-representative .about-rep-title span {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 800;
}
.page-about .about .about-inner .about-representative .about-rep-title span::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: var(--border-main);
}
.page-about .about .about-inner .about-representative .about-rep-title h4 {
  writing-mode: vertical-rl;
  padding-top: 15px;
  font-size: 1.4rem;
  font-weight: 700;
}
.page-about .about .about-inner .about-representative .about-rep-photo {
  width: 40%;
  height: 400px;
}
.page-about .about .about-inner .about-representative .about-rep-photo img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 41%;
     object-position: 50% 41%;
  border-radius: 10px;
  height: 100%;
}
.page-about .about .about-inner .about-representative .about-rep-text {
  width: 40%;
}
.page-about .about .about-inner .about-representative .about-rep-text dt {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 30px;
}
.page-about .about .about-inner .about-representative .about-rep-text .text-box {
  font-size: 0.87rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.6rem;
}
.page-about .about .about-inner .about-representative .about-rep-text .job-title {
  margin: 30px 0 10px 0;
  text-align: right;
}
.page-about .about .about-inner .about-representative .about-rep-text .name {
  font-size: 1.3rem;
  text-align: right;
}
.page-about .about .company-info {
  background-color: var(--border-sub);
  width: 100%;
  padding: 80px 40px 90px 40px;
}
.page-about .about .company-info h4 {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 800;
  padding-bottom: 10px;
  color: var(--text-sub);
}
.page-about .about .company-info h5 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  padding-bottom: 80px;
  color: var(--text-sub);
}
.page-about .about .company-info .company-detail {
  background-color: var(--bg-sub);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1240px;
  margin: 0 auto;
}
.page-about .about .company-info .company-detail dl {
  padding: 30px 0;
  border: 1px solid var(--border-sub);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.87rem;
}
.page-about .about .company-info .company-detail dl dt {
  font-weight: 700;
  width: 30%;
  padding-left: 30px;
  padding-right: 30px;
}
.page-about .about .company-info .company-detail dl dd {
  width: 70%;
  padding-right: 30px;
}
.page-about .about .contact {
  width: 100%;
  border-top: 1px solid #8f8885;
  border-bottom: 1px solid #8f8885;
  margin-top: 300px;
  padding: 30px;
}
@media (max-width: 770px) {
  .page-about .about .contact {
    margin-top: 100px;
  }
}
.page-about .about .contact .contact-container {
  max-width: 1140px;
  margin: 0 auto;
}
.page-about .about .contact .contact-container a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-about .about .contact .contact-container a:hover .contact-title .contact-ani-container .contact-anime1 {
  transform: translateY(-100%);
}
.page-about .about .contact .contact-container a:hover .contact-title .contact-ani-container .contact-anime2 {
  transform: translateY(0);
}
.page-about .about .contact .contact-container a:hover .contact-arrow .arrow-out {
  transform: translate(150%, -50%);
}
.page-about .about .contact .contact-container a:hover .contact-arrow .arrow-in {
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-about .about .contact .contact-container a .contact-title {
  width: 100%;
}
.page-about .about .contact .contact-container a .contact-title .section-title-jp {
  margin-bottom: 0;
}
.page-about .about .contact .contact-container a .contact-title .section-title-en {
  font-size: 3.5rem;
}
.page-about .about .contact .contact-container a .contact-title .contact-ani-container {
  position: relative;
  overflow: hidden;
  height: 4.5rem;
}
.page-about .about .contact .contact-container a .contact-title .contact-ani-container .section-title-en {
  position: absolute;
  left: 0;
  top: 0;
  margin-bottom: 0;
  height: 4.5rem;
  line-height: 4.5rem;
  transition: transform 0.5s ease;
}
.page-about .about .contact .contact-container a .contact-title .contact-ani-container .contact-anime1 {
  transform: translateY(0);
}
.page-about .about .contact .contact-container a .contact-title .contact-ani-container .contact-anime2 {
  transform: translateY(100%);
}
.page-about .about .contact .contact-container a .contact-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid #2d150c;
  border-radius: 35px;
  position: relative;
  overflow: hidden;
}
.page-about .about .contact .contact-container a .contact-arrow span {
  position: absolute;
  width: 20px;
  height: 1px;
  border-radius: 0.5px;
  background-color: var(--border-main);
}
.page-about .about .contact .contact-container a .contact-arrow span::before {
  position: absolute;
  content: "";
  top: -2px;
  right: -1px;
  width: 7px;
  height: 1px;
  background-color: var(--border-main);
  border-radius: 0.5px;
  transform: rotate(45deg);
}
.page-about .about .contact .contact-container a .contact-arrow span::after {
  position: absolute;
  content: "";
  bottom: -2px;
  right: -1px;
  width: 7px;
  height: 1px;
  background-color: var(--border-main);
  border-radius: 0.5px;
  transform: rotate(-45deg);
}
.page-about .about .contact .contact-container a .contact-arrow .arrow-out {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease;
}
.page-about .about .contact .contact-container a .contact-arrow .arrow-in {
  top: 50%;
  transform: translate(-250%, -50%);
  transition: transform 0.5s ease;
}
@media (max-width: 1080px) {
  .page-about .about .about-inner .about-heading {
    flex-direction: column;
  }
  .page-about .about .about-inner .about-heading h4 {
    width: 100%;
    padding-bottom: 20px;
  }
  .page-about .about .about-inner .about-heading .about-heading__text {
    width: 100%;
  }
  .page-about .about .about-inner .services {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-about .about .about-inner .services .services-title {
    padding-bottom: 20px;
  }
  .page-about .about .about-inner .services .services-contents {
    flex-direction: column;
    width: 100%;
  }
  .page-about .about .about-inner .services .services-contents .contents-item {
    width: 100%;
  }
  .page-about .about .about-inner .services .services-contents .contents-item dl {
    margin-bottom: 35px;
  }
  .page-about .about .about-inner .services .services-contents .contents-item dl dd {
    font-size: 1rem;
    font-weight: 700;
    padding-bottom: 5px;
  }
  .page-about .about .about-inner .services .services-contents .contents-item dl dt {
    font-size: 0.87rem;
  }
  .page-about .about .about-inner .services .services-contents .items-bottom {
    margin-top: 0;
  }
  .page-about .about .about-inner .about-representative {
    flex-direction: column;
  }
  .page-about .about .about-inner .about-representative .about-rep-title {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: baseline;
    padding-bottom: 20px;
  }
  .page-about .about .about-inner .about-representative .about-rep-title span {
    position: relative;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 800;
  }
  .page-about .about .about-inner .about-representative .about-rep-title span::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--border-main);
  }
  .page-about .about .about-inner .about-representative .about-rep-title h4 {
    writing-mode: horizontal-tb;
    padding: 15px 0 0 20px;
    font-size: 1.4rem;
    font-weight: 700;
  }
  .page-about .about .about-inner .about-representative .about-rep-photo {
    width: 100%;
    margin-bottom: 30px;
  }
  .page-about .about .about-inner .about-representative .about-rep-photo img {
    border-radius: 10px;
  }
  .page-about .about .about-inner .about-representative .about-rep-text {
    width: 100%;
  }
  .page-about .about .about-inner .about-representative .about-rep-text dt {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
  .page-about .about .about-inner .about-representative .about-rep-text .job-title {
    margin: 30px 0 10px 0;
  }
  .page-about .about .about-inner .about-representative .about-rep-text .name {
    font-size: 1.1rem;
  }
  .page-about .about .company-info .company-detail {
    grid-template-columns: 1fr;
  }
  .page-about .about .company-info .company-detail dl {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-about .about .company-info .company-detail dl dt {
    width: 100%;
    padding-bottom: 10px;
  }
  .page-about .about .company-info .company-detail dl dd {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 770px) {
  .page-about .about .about-inner {
    padding: 0 25px;
  }
  .page-about .about .company-info {
    padding-left: 25px;
    padding-right: 25px;
  }
  .page-about .about .company-info .company-detail dl dt {
    font-size: 0.8rem;
    padding-left: 15px;
  }
  .page-about .about .company-info .company-detail dl dd {
    font-size: 0.8rem;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.page-contact .contact {
  color: var(--text-main);
  padding: 0 40px;
}
.page-contact .contact .contact-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.page-contact .contact .contact-inner .contact-title {
  padding: 200px 0 100px 0;
}
.page-contact .contact .contact-inner .contact-title h2 {
  font-size: 5rem;
  font-weight: 400;
}
.page-contact .contact .contact-inner .contact-title h3 {
  font-size: 1.3rem;
  font-weight: 400;
}
@media (max-width: 1080px) {
  .page-contact .contact .contact-inner .contact-title h2 {
    font-size: 3rem;
    font-weight: 700;
  }
  .page-contact .contact .contact-inner .contact-title h3 {
    font-size: 1rem;
    font-weight: 700;
  }
}
.page-contact .contact form {
  display: block;
  max-width: 800px;
  margin: 0 auto 200px auto;
}
.page-contact .contact form dl .inq-contents {
  display: flex;
  padding-bottom: 60px;
  vertical-align: middle;
}
.page-contact .contact form dl .inq-contents dt {
  width: 30%;
  height: auto;
  font-weight: 500;
}
.page-contact .contact form dl .inq-contents dd {
  width: 70%;
  line-height: 1.8rem;
  height: auto;
}
.page-contact .contact form dl .inq-contents dd label {
  margin-right: 25px;
}
.page-contact .contact form dl .purpose-wrapper label {
  display: inline-block;
  align-items: center;
  padding: 4px 12px 4px 4px;
  cursor: pointer;
}
.page-contact .contact form dl .purpose-wrapper input[type=radio] {
  margin-right: 8px;
}
@media (max-width: 1080px) {
  .page-contact .contact form dl {
    max-width: 550px;
    margin: 0 auto;
  }
  .page-contact .contact form dl .inq-contents {
    flex-direction: column;
  }
  .page-contact .contact form dl .inq-contents dt {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
  }
  .page-contact .contact form dl .inq-contents dd {
    width: 100%;
    height: auto;
  }
  .page-contact .contact form dl .inq-contents dd label {
    display: block;
    margin-bottom: 5px;
  }
}
.page-contact .contact input[type=radio],
.page-contact .contact textarea,
.page-contact .contact input[type=text],
.page-contact .contact input[type=email],
.page-contact .contact input[type=tel] {
  /* Re-enable the native appearance */
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  /* Add a specific border and color to make them visible */
  border: 1px solid var(--border-main);
  background-color: var(--bg-sub);
  width: 1em;
  height: 1em;
  /* Add some spacing for better layout */
}
.page-contact .contact textarea {
  width: 100%;
  height: 200px;
  font-size: 0.8rem;
  line-height: 1.5em;
  border-radius: 3px;
  resize: none;
  padding: 5px 10px;
}
.page-contact .contact textarea::-moz-placeholder {
  color: var(--text-main);
  opacity: 0.3;
}
.page-contact .contact textarea::placeholder {
  color: var(--text-main);
  opacity: 0.3;
}
.page-contact .contact input[text=radio] {
  margin-right: 0.5em;
}
.page-contact .contact input[type=text],
.page-contact .contact input[type=email],
.page-contact .contact input[type=tel] {
  width: 100%;
  height: 40px;
  font-size: 0.8rem;
  border-radius: 3px;
  padding: 0 10px;
}
.page-contact .contact input[type=text]::-moz-placeholder, .page-contact .contact input[type=email]::-moz-placeholder, .page-contact .contact input[type=tel]::-moz-placeholder {
  color: var(--text-main);
  opacity: 0.3;
  letter-spacing: 0.1rem;
}
.page-contact .contact input[type=text]::placeholder,
.page-contact .contact input[type=email]::placeholder,
.page-contact .contact input[type=tel]::placeholder {
  color: var(--text-main);
  opacity: 0.3;
  letter-spacing: 0.1rem;
}
@media (max-width: 1080px) {
  .page-contact .contact input[type=text],
.page-contact .contact input[type=email],
.page-contact .contact input[type=tel] {
    height: 30px;
  }
}
.page-contact .contact .privacy {
  vertical-align: middle;
  margin-bottom: 80px;
}
.page-contact .contact .privacy label input[type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  border: 1px solid var(--border-sub);
  background-color: var(--bg-main);
  border-radius: 3px;
  font-size: 0.7rem;
  width: 1.3em;
  height: 1.3em;
  margin-right: 10px;
}
.page-contact .contact .privacy label a {
  text-decoration: underline;
}
.page-contact .contact .privacy label a:visited {
  color: var(--text-main);
}
@media (max-width: 1080px) {
  .page-contact .contact .privacy {
    max-width: 550px;
    margin: 0 auto 90px auto;
  }
}
.page-contact .contact .submit-btn {
  text-align: center;
  margin: 0 auto 20px auto;
  width: 150px;
  height: 50px;
  text-align: center;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  background-color: var(--btn-black);
  border-radius: 5px;
  padding: 10px 40px;
  font-weight: 500;
  transition: all 0.5s;
  color: #ffffff;
  cursor: pointer;
}
.page-contact .contact .submit-btn input[type=submit] {
  letter-spacing: 1.7rem;
  margin-right: -1.7rem;
}
.page-contact .contact .submit-btn:hover {
  background-color: var(--btn-gray);
  color: var(--text-sub);
}

.page-news__archive .news-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.page-news__archive .news-inner .news {
  color: var(--text-main);
  padding: 0 40px 100px 40px;
}
.page-news__archive .news-inner .news .news-title {
  padding: 200px 0 100px 0;
}
.page-news__archive .news-inner .news .news-title h2 {
  font-size: 5rem;
  font-weight: 400;
}
.page-news__archive .news-inner .news .news-title h3 {
  font-size: 1.3rem;
  font-weight: 400;
}
@media (max-width: 1080px) {
  .page-news__archive .news-inner .news .news-title h2 {
    font-size: 3rem;
    font-weight: 700;
  }
  .page-news__archive .news-inner .news .news-title h3 {
    font-size: 1rem;
    font-weight: 700;
  }
}
.page-news__archive .news-inner .news .news-contents ol li {
  border-top: 1px solid #e3e3e3;
  padding: 40px 0;
}
.page-news__archive .news-inner .news .news-contents ol li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-news__archive .news-inner .news .news-contents ol li a .news-thumbnail {
  width: 15%;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-news__archive .news-inner .news .news-contents ol li a .news-category {
  width: 15%;
  font-size: 0.75rem;
  font-weight: 600;
  vertical-align: middle;
}
.page-news__archive .news-inner .news .news-contents ol li a .news-category span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 35px;
  border-radius: 20px;
  color: #ffffff;
  background-color: var(--bg-brown);
}
.page-news__archive .news-inner .news .news-contents ol li a .news-items {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-news__archive .news-inner .news .news-contents ol li a .news-items .item {
  width: 80%;
}
.page-news__archive .news-inner .news .news-contents ol li a .news-items .item time {
  display: block;
  font-size: 0.87rem;
  padding-bottom: 10px;
}
.page-news__archive .news-inner .news .news-contents ol li a .news-items .item h4 {
  font-size: 1rem;
  font-weight: 600;
}
.page-news__archive .news-inner .news .news-contents ol li a .news-items .news-button {
  width: 20%;
  margin: 0 auto;
}
.page-news__archive .news-inner .news .news-contents ol li a .news-items .news-button .btn-circle {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: relative;
  background-color: var(--bg-brown);
  transition: all ease 0.5s;
  border: 1px solid var(--border-main);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
@media (max-width: 770px) {
  .page-news__archive .news-inner .news .news-contents ol li a .news-items .news-button .btn-circle {
    width: 32px;
    height: 32px;
  }
}
.page-news__archive .news-inner .news .news-contents ol li a .news-items .news-button .btn-circle .arrow {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 1px;
  border-radius: 1px;
  background-color: var(--bg-main);
  border-color: var(--border-main);
  transition: background-color ease 0.5s;
}
@media (max-width: 770px) {
  .page-news__archive .news-inner .news .news-contents ol li a .news-items .news-button .btn-circle .arrow {
    width: 12px;
  }
}
.page-news__archive .news-inner .news .news-contents ol li a .news-items .news-button .btn-circle .arrow::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 10px;
  transform: rotate(-45deg);
  width: 7px;
  height: 1px;
  border-radius: 1px;
  background-color: var(--bg-main);
  transition: background-color ease 0.5s;
}
@media (max-width: 770px) {
  .page-news__archive .news-inner .news .news-contents ol li a .news-items .news-button .btn-circle .arrow::before {
    width: 5px;
    left: 8px;
    top: 1px;
  }
}
.page-news__archive .news-inner .news .news-contents ol li a .news-items .news-button .btn-circle .arrow::after {
  position: absolute;
  content: "";
  bottom: 2px;
  left: 10px;
  transform: rotate(45deg);
  width: 7px;
  height: 1px;
  border-radius: 1px;
  background-color: var(--bg-main);
  transition: all ease 0.5s;
}
@media (max-width: 770px) {
  .page-news__archive .news-inner .news .news-contents ol li a .news-items .news-button .btn-circle .arrow::after {
    width: 5px;
    left: 8px;
    bottom: 1px;
  }
}
.page-news__archive .news-inner .news .news-contents ol li a:hover .news-button .btn-circle {
  background-color: #ffffff;
  transform: translateX(4px);
}
.page-news__archive .news-inner .news .news-contents ol li a:hover .news-button .btn-circle .arrow {
  background-color: #333333;
}
.page-news__archive .news-inner .news .news-contents ol li a:hover .news-button .btn-circle .arrow::before, .page-news__archive .news-inner .news .news-contents ol li a:hover .news-button .btn-circle .arrow::after {
  background-color: #333333;
}
@media (max-width: 770px) {
  .page-news__archive .news-inner .news .news-contents ol li a {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-news__archive .news-inner .news .news-contents ol li a .news-thumbnail {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-news__archive .news-inner .news .news-contents ol li a .news-category {
    margin-right: auto;
    font-size: 0.7rem;
    margin-bottom: 10px;
  }
  .page-news__archive .news-inner .news .news-contents ol li a .news-category span {
    height: 30px;
    width: 95px;
  }
  .page-news__archive .news-inner .news .news-contents ol li a .news-items {
    width: 100%;
  }
  .page-news__archive .news-inner .news .news-contents ol li a .news-items .item h4 {
    font-size: 0.87rem;
  }
}

.page-confirm .contact {
  color: var(--text-main);
  padding: 60px 40px 100px 40px;
}
.page-confirm .contact .contact-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.page-confirm .contact .contact-inner .contact-title {
  padding: 200px 0 100px 0;
}
.page-confirm .contact .contact-inner .contact-title h2 {
  font-size: 5rem;
  font-weight: 400;
}
.page-confirm .contact .contact-inner .contact-title h3 {
  font-size: 1.3rem;
  font-weight: 400;
}
.page-confirm .contact .contact-inner .confirm-message {
  padding: 40px 0;
}
.page-confirm .contact .contact-inner .confirm-message p {
  padding-bottom: 60px;
  font-size: 0.9rem;
}
@media (max-width: 770px) {
  .page-confirm .contact .contact-inner .confirm-message p {
    font-size: 0.87rem;
  }
}
@media (max-width: 770px) {
  .page-confirm .contact .contact-inner .confirm-contents {
    font-size: 0.87rem;
  }
}
.page-confirm .contact .contact-inner .confirm-btn {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 0;
}
.page-confirm .contact .contact-inner .confirm-btn p {
  margin: 0;
}
.page-confirm .contact .contact-inner .confirm-btn .back-btn {
  max-width: 150px;
  width: 100%;
  display: inline-block;
  padding: 0 20px;
  outline: none;
  transition: all 0.3s;
  background-color: var(--bg-brown);
  border-radius: 5px;
  color: var(--text-sub);
  border: 1px solid var(--border-main);
  text-align: center;
}
.page-confirm .contact .contact-inner .confirm-btn .back-btn a {
  display: block;
  padding: 10px 20px;
}
.page-confirm .contact .contact-inner .confirm-btn .back-btn:hover {
  background-color: var(--bg-main);
  color: var(--text-main);
}
.page-confirm .contact .contact-inner .confirm-btn .submit-btn {
  position: relative;
  max-width: 150px;
  width: 100%;
  padding: 0 20px;
  transition: all 0.3s;
  background-color: var(--text-main);
  border-radius: 5px;
  color: #fff;
  border: 1px solid var(--border-main);
  text-align: center;
}
.page-confirm .contact .contact-inner .confirm-btn .submit-btn input[type=submit] {
  display: block;
  width: 100%;
  padding: 10px 20px;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.page-confirm .contact .contact-inner .confirm-btn .submit-btn .wpcf7-spinner {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.page-confirm .contact .contact-inner .confirm-btn .submit-btn:hover {
  background-color: var(--bg-main);
  color: var(--text-main);
}
@media (max-width: 770px) {
  .page-confirm .contact .contact-inner .confirm-btn {
    flex-direction: column;
    gap: 20px;
  }
  .page-confirm .contact .contact-inner .confirm-btn .back-btn,
.page-confirm .contact .contact-inner .confirm-btn .submit-btn {
    width: 50%;
    text-align: center;
    font-size: 0.87rem;
  }
}

.page-thanks .contact {
  max-width: 1140px;
  margin: 0 auto;
  color: var(--text-main);
  padding: 0px 40px 100px 40px;
}
.page-thanks .contact .contact-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.page-thanks .contact .contact-inner .contact-title {
  padding: 200px 0 100px 0;
}
.page-thanks .contact .contact-inner .contact-title h2 {
  font-size: 5rem;
  font-weight: 400;
}
.page-thanks .contact .contact-inner .contact-title h3 {
  font-size: 1.3rem;
  font-weight: 400;
}
.page-thanks .contact .contact-inner .thanks-message .message-box {
  text-align: left;
}
.page-thanks .contact .contact-inner .thanks-message .message-box h4 {
  font-weight: 700;
  font-size: 1.3rem;
  padding-bottom: 40px;
}
.page-thanks .contact .contact-inner .thanks-message .message-box p {
  padding-bottom: 5px;
}
.page-thanks .contact .contact-inner .thanks-message .message-box p:last-of-type {
  margin-bottom: 40px;
}
.page-thanks .contact .contact-inner .thanks-message .back-btn {
  text-align: center;
}
.page-thanks .contact .contact-inner .thanks-message .back-btn a {
  display: inline-block;
  text-align: center;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  background-color: var(--bg-brown);
  padding: 10px 40px;
  border-radius: 5px;
  border: 1px solid var(--border-main);
  font-weight: 500;
  letter-spacing: 0.2rem;
  transition: all 0.5s;
  color: var(--text-sub);
}
.page-thanks .contact .contact-inner .thanks-message .back-btn a:hover {
  background-color: var(--bg-main);
  color: var(--text-main);
}
@media (max-width: 1080px) {
  .page-thanks .contact .contact-inner .thanks-message .message-box {
    text-align: left;
  }
  .page-thanks .contact .contact-inner .thanks-message .message-box h4 {
    font-size: 1.1rem;
    padding-bottom: 30px;
  }
  .page-thanks .contact .contact-inner .thanks-message .message-box p {
    font-size: 0.87rem;
    padding-bottom: 3px;
  }
  .page-thanks .contact .contact-inner .thanks-message .message-box p:last-of-type {
    margin-bottom: 40px;
  }
  .page-thanks .contact .contact-inner .thanks-message .back-btn a {
    display: inline-block;
    text-align: center;
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
    background-color: var(--bg-brown);
    padding: 10px 40px;
    border-radius: 5px;
    border: 1px solid var(--border-main);
    font-weight: 500;
    letter-spacing: 0.2rem;
    text-indent: 1rem;
    transition: all 0.5s;
    color: var(--text-sub);
  }
  .page-thanks .contact .contact-inner .thanks-message .back-btn a:hover {
    background-color: var(--bg-main);
    color: var(--text-main);
  }
}
@media (max-width: 770px) {
  .page-thanks .contact .contact-inner .thanks-message .message-box h4 {
    font-size: 0.9rem;
    padding-bottom: 30px;
  }
  .page-thanks .contact .contact-inner .thanks-message .message-box p {
    font-size: 0.87rem;
    padding-bottom: 3px;
    line-height: 1.45rem;
  }
  .page-thanks .contact .contact-inner .thanks-message .message-box p:last-of-type {
    margin-bottom: 40px;
  }
}

.news-post .news-post__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 1080px) {
  .news-post .news-post__inner {
    padding: 0 25px;
  }
}
.news-post .news-post__inner .news-title {
  padding: 200px 0 100px 0;
}
.news-post .news-post__inner .news-title h2 {
  font-size: 5rem;
  font-weight: 700;
}
.news-post .news-post__inner .news-title h3 {
  font-size: 1.3rem;
  font-weight: 700;
}
@media (max-width: 1080px) {
  .news-post .news-post__inner .news-title h2 {
    font-size: 3rem;
    font-weight: 700;
  }
  .news-post .news-post__inner .news-title h3 {
    font-size: 1rem;
    font-weight: 700;
  }
}
.news-post .news-post__inner .post-contents .post-contents__inner {
  max-width: 900px;
  margin: 0 auto 100px auto;
}
.news-post .news-post__inner .post-contents .post-contents__inner .post-date {
  text-align: right;
  margin-bottom: 30px;
}
.news-post .news-post__inner .post-contents .post-contents__inner .post-date span {
  display: inline-block;
  padding-right: 15px;
}
.news-post .news-post__inner .post-contents .post-contents__inner .post-thumbnail {
  width: 90%;
}
.news-post .news-post__inner .post-contents .post-contents__inner .post-text {
  margin-bottom: 100px;
}
.news-post .news-post__inner .post-contents .post-contents__inner .post-text h4 {
  padding-bottom: 40px;
  font-size: 1.6rem;
  font-weight: 700;
}
.news-post .news-post__inner .post-contents .post-contents__inner .post-text .text-body {
  line-height: 1.75rem;
  font-size: 1.1rem;
}
.news-post .news-post__inner .post-contents .post-contents__inner .home-btn {
  display: block;
  width: 150px;
  text-align: center;
  margin: 0 auto;
  padding: 10px 0;
  background-color: var(--text-main);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 5px;
}
.news-post .news-post__inner .post-contents .post-contents__inner .home-btn a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 1080px) {
  .news-post .news-post__inner .post-contents .post-contents__inner {
    margin-bottom: 70px;
  }
  .news-post .news-post__inner .post-contents .post-contents__inner .post-date time {
    font-size: 0.9rem;
  }
  .news-post .news-post__inner .post-contents .post-contents__inner .post-thumbnail {
    width: 90%;
  }
  .news-post .news-post__inner .post-contents .post-contents__inner .post-text h4 {
    font-size: 1.3rem;
  }
}

.footer {
  padding: 50px 30px 20px 30px;
}
.footer .footer-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}
.footer .footer-container .footer-title {
  width: 40%;
  margin-bottom: 20px;
}
.footer .footer-container .footer-title p {
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 15px;
}
.footer .footer-container .footer-title address {
  font-size: 0.9rem;
}
.footer .footer-container .nav {
  width: 20%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer .footer-container .nav .footer-nav li {
  margin-bottom: 10px;
}
.footer .footer-container .nav .footer-nav li a {
  font-weight: 600;
}
.footer .footer-container .nav .sns-icon li {
  width: 25px;
  height: 25px;
  margin-bottom: 10px;
}
.footer small {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
}
@media (max-width: 770px) {
  .footer .footer-container {
    flex-direction: column;
  }
  .footer .footer-container .footer-title {
    width: 100%;
  }
  .footer .footer-container .footer-title address {
    font-size: 0.87rem;
  }
  .footer .footer-container .nav {
    width: 100%;
    flex-direction: column;
  }
  .footer .footer-container .nav .sns-icon {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 20px;
    gap: 20px;
  }
  .footer .footer-container .nav .sns-icon li {
    margin-bottom: 10px;
    width: 35px;
    height: 35px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* =========================
  共通 CSS変数 :root
========================= */
:root {
  --bg-main: #fffaf3;
  --bg-sub: #ffffff;
  --bg-brown: #2d150c;
  --bg-nav: #2d150c;
  --bg-footer: #887771;
  --btn-black: #2d150c;
  --btn-gray: #887771;
  --text-main: #2d150c;
  --text-sub: #ffffff;
  --border-main: #2d150c;
  --border-sub: #8f8885;
  --border-grd: #fffaf3;
  --border-hmb: #fffaf3;
  --font-family: "Noto Serif JP", "Hurricane", cursive, sans-serif;
  --transition-duration: 0.3s;
  --object-color: #2d150c;
  --size: 13px;
}

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-main);
}

.fadeIn {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s ease-out, transform 1.4s ease-out;
}

.fadeIn.fadeUp {
  opacity: 1;
  transform: translateY(0);
}

footer {
  background-color: var(--bg-footer);
  color: var(--text-sub);
}

img {
  width: 100%;
}

p {
  line-height: 1.75rem;
}

a {
  text-decoration: none;
}

a:visited {
  color: inherit;
}

li {
  list-style: none;
}

.inner {
  padding: 150px 20px;
}
@media (max-width: 770px) {
  .inner {
    padding: 0 20px 60px 20px;
  }
}

.section-title-jp {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-main);
}
@media (max-width: 770px) {
  .section-title-jp {
    font-size: 1.2rem;
  }
}

.section-title-en {
  font-family: "Hurricane";
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.34rem;
}
@media (max-width: 1080px) {
  .section-title-en {
    font-size: 3.5rem;
    letter-spacing: 0.19rem;
  }
}
@media (max-width: 770px) {
  .section-title-en {
    font-size: 1.4rem;
  }
}

.more-btn-container .more-btn {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  outline: none;
  transition: all 0.3s;
}
.more-btn-container .more-btn::before {
  position: absolute;
  content: "";
  bottom: -8px;
  left: 4%;
  width: 95%;
  height: 1px;
  border-radius: 0.5px;
  background-color: #2d150c;
  transition: all 0.3s;
}
.more-btn-container .more-btn::after {
  position: absolute;
  content: "";
  bottom: -4px;
  right: 0;
  width: 15px;
  height: 1px;
  border-radius: 0.5px;
  background-color: #2d150c;
  transform: rotate(32deg);
  transition: all 0.3s;
}
.more-btn-container .more-btn:hover {
  color: #254f29;
}
.more-btn-container .more-btn:hover::before {
  left: 10%;
}
.more-btn-container .more-btn:hover::after {
  right: -6%;
}

.page-about h2,
.page-contact h2,
.page-news__archive h2,
.page-confirm h2,
.page-thanks h2,
.page-post h2 {
  font-family: "Hurricane";
}
/*# sourceMappingURL=main.css.map */