@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/*変数設定用*/
@media screen and (min-width: 768px) {
  .vpc {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .vpc {
    display: none;
  }
}

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

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: white;
}
a:hover {
  opacity: 0.7;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  font-size: 1.6rem;
  color: white;
  background: #111;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
  padding: 90px 0 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  body {
    padding: 60px 0 0;
  }
}

main {
  padding: 80px 0 80px;
}
@media screen and (max-width: 768px) {
  main {
    padding: 40px 0 50px;
  }
}

.dib {
  display: inline-block;
}

.inner {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 767px) and (max-width: 1080px) {
  .inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    width: 100%;
    padding-right: 5%;
    padding-left: 5%;
  }
}

.mv-inner {
  max-width: 1380px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 767px) and (max-width: 1080px) {
  .mv-inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}
@media screen and (max-width: 768px) {
  .mv-inner {
    width: 100%;
    padding-right: 5%;
    padding-left: 5%;
  }
}

.section-gap {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .section-gap {
    margin-top: 45px;
  }
}

.section-ttl {
  text-align: center;
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .section-ttl {
    font-size: 24px;
    margin-bottom: 4rem;
  }
}

.section-txt {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.template-btn {
  display: grid;
  place-items: center;
  max-width: 200px;
  width: 100%;
  height: 40px;
  background-color: #333;
  color: #fff;
  margin: 10px 0 0;
}
.template-btn.center {
  margin: 10px auto 0;
}
.template-btn.right {
  margin: 10px 0 0 auto;
}

.bread-crumbs-area {
  margin: 0 0 20px;
}
.bread-crumbs-area .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 8px;
}

#page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  #page-top {
    bottom: 60px;
    right: 15px;
  }
}
#page-top a {
  position: relative;
  background: white;
  text-decoration: none;
  color: black;
  width: 66px;
  padding: 14.75px 0;
  text-align: center;
  display: block;
  border-radius: 50%;
}
#page-top a small {
  position: relative;
  bottom: -5px;
  font-size: 1rem;
  font-weight: bold;
  font-family: "Jost", sans-serif;
}
#page-top a:hover {
  text-decoration: none;
}
#page-top a:before {
  content: "";
  position: absolute;
  background: url(../img/arrow.png) no-repeat center center/100%;
  width: 14px;
  height: 17px;
  top: 18px;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: invert(1);
}

header {
  height: 90px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #111;
}
@media screen and (max-width: 768px) {
  header {
    height: 60px;
  }
}
header .header-inner {
  padding: 0 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  header .header-inner {
    padding: 0 0 0 15px;
  }
}
header .header-inner .logo-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}
header .header-inner .logo-wrap a {
  width: 157px;
}
@media screen and (max-width: 768px) {
  header .header-inner .logo-wrap a {
    width: 110px;
  }
}
header .header-inner .logo-wrap p {
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  header .header-inner .logo-wrap p {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap {
    background-color: #fff;
    position: fixed;
    top: 60px;
    left: 100%;
    width: 100%;
    height: calc(100% - 60px);
    transition: all 0.4s;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap nav {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111;
  }
}
header .header-inner .nav-wrap nav .header-list {
  display: flex;
  justify-content: flex-end;
  column-gap: 30px;
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap nav .header-list {
    row-gap: 30px;
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap nav .header-list li {
    text-align: center;
  }
}
header .header-inner .nav-wrap nav .header-list li a {
  font-size: 1.2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap nav .header-list li a {
    font-size: 1.6rem;
    text-align: center;
  }
}
header .header-inner .nav-wrap nav .header-list li a.header-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 1px;
  height: 15px;
  background-color: white;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap nav .header-list li a.header-line::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap.open {
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  header .header-inner .hamburger-btn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .hamburger-btn {
    display: block;
    height: 100%;
    width: 60px;
    position: relative;
  }
}
header .header-inner .hamburger-btn span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: all 0.4s;
}
header .header-inner .hamburger-btn span:nth-of-type(1) {
  opacity: 1;
}
header .header-inner .hamburger-btn span:nth-of-type(2) {
  top: 35%;
}
header .header-inner .hamburger-btn span:nth-of-type(3) {
  top: 65%;
}
header .header-inner .hamburger-btn.open span:nth-of-type(1) {
  opacity: 0;
}
header .header-inner .hamburger-btn.open span:nth-of-type(2) {
  top: 50%;
  rotate: 45deg;
}
header .header-inner .hamburger-btn.open span:nth-of-type(3) {
  top: 50%;
  rotate: -45deg;
}

footer {
  width: 100%;
  background: #111;
  color: #fff;
}
footer a {
  color: #fff;
}
footer .ft-content {
  display: flex;
  padding: 50px 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 768px) {
  footer .ft-content {
    row-gap: 15px;
  }
}
footer .ft-content .ft-left .logo-wrap {
  width: 157px;
}
footer .ft-content .ft-right {
  display: flex;
  justify-content: flex-end;
}
footer .ft-content .ft-right .ft-link-list {
  display: flex;
  column-gap: 50px;
}
@media screen and (max-width: 768px) {
  footer .ft-content .ft-right .ft-link-list {
    column-gap: 30px;
  }
}
footer .ft-content .ft-right .ft-link-list a {
  position: relative;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  footer .ft-content .ft-right .ft-link-list a {
    font-size: 10px;
  }
}
footer .ft-content .ft-right .ft-link-list a.ft-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 1px;
  height: 15px;
  background-color: white;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  footer .ft-content .ft-right .ft-link-list a.ft-line::after {
    right: -15px;
  }
}
footer .copy-area {
  text-align: center;
  padding: 15px 0;
  background-color: black;
}
footer .copy-area p {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  footer .copy-area p {
    font-size: 10px;
  }
}
footer .smoke-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
footer .smoke-wrap img {
  object-fit: cover;
}
footer .smoke-wrap .smoke,
footer .smoke-wrap .smoke2 {
  filter: blur(5px);
  transform-origin: 50% 50%;
}
footer .smoke-wrap .smoke {
  animation: smoke1 32s linear infinite;
  width: 100%;
}
footer .smoke-wrap .smoke2 {
  animation: smoke2 40s linear infinite;
  width: 100%;
}
@keyframes smoke1 {
  0% {
    filter: blur(0px);
    transform: translateY(0px) scale(-1, 1);
    opacity: 0;
  }
  25% {
    filter: blur(2px);
    transform: translateY(-40px) scale(-1, 1.05);
    opacity: 0.5;
  }
  50% {
    filter: blur(3px);
    transform: translateY(-80px) scale(-1, 1.1);
    opacity: 1;
  }
  75% {
    filter: blur(3px);
    transform: translateY(-120px) scale(-1, 1.15);
    opacity: 0.5;
  }
  100% {
    filter: blur(4px);
    transform: translateY(-160px) scale(-1, 1.2);
    opacity: 0;
  }
}
@keyframes smoke2 {
  0% {
    filter: blur(0px);
    transform: translateY(-100px) scale(-1, 1);
    opacity: 0;
  }
  25% {
    filter: blur(2px);
    transform: translateY(-135px) scale(-1, 1.1);
    opacity: 0.5;
  }
  50% {
    filter: blur(3px);
    transform: translateY(-170px) scale(-1, 1.15);
    opacity: 1;
  }
  75% {
    filter: blur(3px);
    transform: translateY(-210px) scale(-1, 1.2);
    opacity: 0.5;
  }
  100% {
    filter: blur(4px);
    transform: translateY(-250px) scale(-1, 1.25);
    opacity: 0;
  }
}

body.home .mv {
  position: relative;
}
body.home .mv-person {
  max-width: 1107px;
  margin-left: auto;
  margin-right: 0;
  display: block;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  body.home .mv-person {
    padding-top: 20vw;
    max-width: 100%;
  }
}
body.home .mv-text {
  position: absolute;
  bottom: 0;
  transform: translate(100%, 0);
  max-width: 412px;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  body.home .mv-text {
    max-width: 50%;
  }
}
body.home .sec-profile {
  margin-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  body.home .sec-profile {
    padding-bottom: 60px;
    margin-top: 60px;
  }
}
body.home .sec-profile .profile-flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  body.home .sec-profile .profile-flex {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
body.home .sec-profile .profile-img {
  max-width: 557px;
  margin-left: -90px;
  position: relative;
}
@media screen and (max-width: 768px) {
  body.home .sec-profile .profile-img {
    width: 100%;
    margin-left: 0;
  }
}
body.home .sec-profile .profile-text {
  max-width: 580px;
}
body.home .sec-profile .profile-text-flex {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  body.home .sec-profile .profile-text-flex {
    gap: 20px;
  }
}
body.home .sec-profile .profile-text-flex p {
  font-size: 12px;
  font-weight: 500;
  line-height: 2;
}
body.home .letter {
  transform: scale(1, 0);
  transform-origin: center top;
}
body.home .letter.show {
  transform: scale(1, 1);
  will-change: transform;
  transition: 0.6s cubic-bezier(1, 0, 0, 1);
  transform-origin: center top;
  transition-delay: 0.2s;
}
body.home .letter02 {
  transform: scale(0, 1);
  transform-origin: left center;
}
body.home .letter02.show {
  transform: scale(1, 1);
  will-change: transform;
  transition: 0.6s cubic-bezier(1, 0, 0, 1);
  transform-origin: left center;
  transition-delay: 0.2s;
}
body.home .quote-span {
  background: #333;
  padding: 5px;
  display: block;
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  text-wrap: nowrap;
  margin-bottom: 5px;
  width: fit-content;
  transform: scale(0, 1);
  transform-origin: left center;
}
@media screen and (max-width: 768px) {
  body.home .quote-span {
    font-size: 12px;
  }
}
body.home .quote-span.span-03 {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  body.home .quote-span.span-03 {
    font-size: 10px;
  }
}
body.home .quote-span.show {
  transform: scale(1, 1);
  will-change: transform;
  transition: 0.5s cubic-bezier(1, 0, 0, 1);
  transform-origin: left center;
}
body.home .quote-span.show.span-01 {
  transition-delay: 0.1s;
}
body.home .quote-span.show.span-02 {
  transition-delay: 0.2s;
}
body.home .quote-span.show.span-03 {
  transition-delay: 0.3s;
}
body.home .quote-01 {
  position: absolute;
  top: 55%;
  left: 60%;
}
@media screen and (max-width: 768px) {
  body.home .quote-01 {
    left: 5%;
  }
}
body.home .quote-02 {
  position: absolute;
  top: 50%;
  left: -10%;
}
@media screen and (max-width: 768px) {
  body.home .quote-02 {
    left: 5%;
  }
}
body.home .sec-ttl {
  writing-mode: vertical-rl;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  display: flex;
  gap: 20px;
  align-items: center;
}
body.home .sec-ttl.black {
  color: black;
}
body.home .sec-ttl span {
  text-orientation: upright;
  font-size: 32px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  body.home .sec-ttl span {
    font-size: 28px;
  }
}
body.home .sec-ttl small {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #8F8F8F;
}
body.home .letter {
  display: inline-block;
}
body.home .sec-about {
  padding: 120px 0;
  background: url("../img/img-03.png") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  body.home .sec-about {
    padding: 60px 0;
  }
}
body.home .sec-about .about-flex {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  body.home .sec-about .about-flex {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  body.home .sec-about .about-flex.column {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
body.home .sec-about .history-wrap {
  padding-top: 20px;
}
body.home .sec-about .history-wrap .history-dl {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
body.home .sec-about .history-wrap .history-dl:not(:last-child) {
  padding: 0 0 35px;
}
body.home .sec-about .history-wrap .history-dl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 15px;
  height: 15px;
  background-color: white;
  border-radius: 50%;
}
body.home .sec-about .history-wrap .history-dl:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 9px;
  bottom: -9px;
  background-color: white;
  width: 2px;
  opacity: 0.3;
}
body.home .sec-about .history-wrap .history-dl dt {
  width: 190px;
  padding: 0 0 0 48px;
}
@media screen and (max-width: 768px) {
  body.home .sec-about .history-wrap .history-dl dt {
    width: 100%;
    padding: 0 0 20px 24px;
  }
}
body.home .sec-about .history-wrap .history-dl dt .year-txt {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}
body.home .sec-about .history-wrap .history-dl dt .year-txt span {
  font-size: 14px;
}
body.home .sec-about .history-wrap .history-dl dd {
  padding: 3px 0 0 20px;
}
@media screen and (max-width: 768px) {
  body.home .sec-about .history-wrap .history-dl dd {
    width: 100%;
    padding: 0 0 0 24px;
  }
}
body.home .sec-about .history-wrap .history-dl dd .history-list {
  font-size: 14px;
}
body.home .sec-about .about-img {
  max-width: 496px;
  margin-right: -90px;
  position: relative;
}
@media screen and (max-width: 768px) {
  body.home .sec-about .about-img {
    max-width: 100%;
    margin-right: 0;
  }
}
body.home .sec-works .works-top {
  background: #F2F2F2;
  padding: 120px 0;
  color: black;
}
@media screen and (max-width: 768px) {
  body.home .sec-works .works-top {
    padding: 60px 5%;
  }
}
body.home .sec-works .works-flex {
  display: flex;
  gap: 90px;
}
@media screen and (max-width: 768px) {
  body.home .sec-works .works-flex {
    gap: 30px;
    flex-direction: column-reverse;
  }
}
body.home .sec-works .works-flex-02 {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  body.home .sec-works .works-flex-02 {
    gap: 30px;
  }
}
body.home .sec-works .works-flex-03 {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  body.home .sec-works .works-flex-03 {
    gap: 20px;
    flex-direction: column;
  }
}
body.home .sec-works .works-flex-03 li {
  max-width: 300px;
  font-size: 14px;
  font-weight: 500;
}
body.home .sec-works .works-img {
  max-width: 520px;
}
@media screen and (max-width: 768px) {
  body.home .sec-works .works-img {
    max-width: 100%;
  }
}
body.home .works-gallery {
  position: relative;
}
body.home .works-gallery .sec-ttl {
  margin-bottom: 60px;
}
body.home .works-gallery .sec-ttl.horizontal {
  writing-mode: horizontal-tb;
  position: relative;
}
body.home .works-gallery .sec-ttl.horizontal span {
  letter-spacing: 0.05em;
}
body.home .works-gallery .sec-ttl.horizontal small {
  letter-spacing: 0.05em;
}
body.home .works-gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  background-color: #F2F2F2;
  z-index: 0;
}
body.home .works-gallery .gallery-box {
  width: 2520px;
  height: 800px;
}
@media screen and (max-width: 768px) {
  body.home .works-gallery .gallery-box {
    width: 1750px !important;
    height: 555px !important;
  }
}
body.home .works-gallery .gallery-list {
  display: flex;
  gap: 40px;
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  body.home .works-gallery .gallery-list {
    gap: 20px;
    margin-top: 60px;
    flex-direction: column;
  }
}
body.home .works-gallery .gallery-list li {
  max-width: 580px;
}
body.home .works-gallery .gallery-list li:nth-of-type(even) {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  body.home .works-gallery .gallery-list li:nth-of-type(even) {
    padding-top: 0;
  }
}
body.home .works-gallery .gallery-list li a {
  position: relative;
}
body.home .works-gallery .gallery-list li a p {
  position: absolute;
  font-size: 20px;
  bottom: 20px;
  left: 20px;
  font-family: "Noto Serif JP", serif;
  width: 100%;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  body.home .works-gallery .gallery-list li a p {
    font-size: 16px;
  }
}
body.home .works-gallery .gallery-list li a p span {
  width: 44px;
  height: 44px;
  position: absolute;
  right: 40px;
  top: 0;
}
@media screen and (max-width: 768px) {
  body.home .works-gallery .gallery-list li a p span {
    width: 30px;
    height: 30px;
  }
}

.form-wrapper {
  position: relative;
  width: 100%;
  max-width: 890px;
  margin: 100px auto;
}
@media screen and (max-width: 768px) {
  .form-wrapper {
    margin: 60px auto;
  }
}

input,
textarea {
  font-size: medium;
}

.form {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 15px 5px;
}
@media screen and (max-width: 768px) {
  .form {
    flex-wrap: wrap;
    padding: 20px 0;
  }
}
.form.col {
  flex-direction: column;
  gap: 10px;
}
.form.col .form_title {
  justify-content: flex-start;
  column-gap: 10px;
}
.form_title {
  min-width: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}
.form_title.col {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
}
.form_title.col .form_title-name,
.form_title.col .form_title-req {
  max-width: max-content;
}
.form_title.start {
  justify-content: flex-start;
  column-gap: 10px;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .form_title {
    width: 100%;
    min-width: none;
    justify-content: flex-start;
    gap: 15px;
  }
}
.form_title-name {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.form_title-req {
  color: white;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  background: #B10000;
  border-radius: 2px;
  padding: 0 13px 2px;
  margin-top: 3px;
  font-weight: bold;
}
.form_title.pt0 {
  padding-top: 0;
}
.form_input input {
  height: 46px;
  background: white;
  padding: 0 10px;
  border-radius: 3px;
}
.form_input.flex {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .form_input.flex {
    gap: 15px;
  }
}
.form_input.md input {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .form_input.md input {
    width: 100%;
  }
}
.form_input.lg {
  width: 100%;
}
.form_input.lg input {
  width: 100%;
}
.form_input.tel input {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .form_input.tel input {
    width: 100%;
  }
}
.form_input-text {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 20px;
  margin-bottom: 5px;
}
.form_input-post {
  margin-bottom: 16px;
}
.form_input-post.sm input {
  width: 174px;
}
.form_radio input[type=radio] {
  position: relative;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form_radio input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #B10000;
  content: "";
}
.form_radio label {
  margin-left: 10px;
  font-size: 14px;
}
.form_radio > * + * {
  margin-top: 10px;
}
.form_textarea {
  width: 100%;
}
.form_textarea textarea {
  width: 100%;
  height: 302px;
  background: white;
  padding: 15px 10px;
  line-height: 1.5;
  resize: vertical;
  border-radius: 3px;
}
.form_privacy .privacy-txt {
  font-size: 14px;
  margin-bottom: 10px;
}
.form_privacy .form_title-name {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .form_privacy .form_title-name {
    display: none;
  }
}
.form_privacy input[type=checkbox] {
  position: relative;
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 3px;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form_privacy input[type=checkbox]:checked:before {
  position: absolute;
  top: 0;
  left: 9px;
  transform: rotate(50deg);
  width: 11px;
  height: 22px;
  border-right: 4px solid #B10000;
  border-bottom: 4px solid #B10000;
  content: "";
}
.form_privacy label {
  font-size: 14px;
  margin-left: 10px;
  transform: translateY(-3px);
  display: inline-block;
}
.form_privacy label a {
  border-bottom: 1px solid white;
}
@media screen and (max-width: 768px) {
  .form.privacy {
    gap: 0;
  }
}

.confirm-box {
  background: white;
  color: black;
  padding: 10px;
  border-radius: 3px;
  flex-grow: 1;
  min-height: 46px;
}

.contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .contact-btn {
    flex-direction: column;
  }
}
.contact-btn .btn {
  width: 292px;
  height: 54px;
  border: 2px solid white;
  border-radius: 35px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  display: grid;
  place-items: center;
}
.contact-btn .btn.disabled {
  pointer-events: none;
  background: #999;
  border-color: #999;
}

.error {
  font-size: 12px;
  font-weight: bold;
  position: relative;
  padding-left: 20px;
  color: #B10000;
  margin-top: 5px;
}
.error::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url(../img/icon-error.png) no-repeat center center;
  background-size: cover;
}

.step {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 17px;
  margin-bottom: 45px;
  font-family: "Noto Serif JP", serif;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .step {
    margin-bottom: 30px;
    gap: 0 14px;
  }
}
.step li:nth-of-type(odd).active .step-en {
  color: white;
}
.step li:nth-of-type(odd).active .step-ja {
  color: white;
}
.step li:nth-of-type(even):after {
  display: block;
  content: "";
  width: 46px;
  height: 1px;
  background: #C7C7C7;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 768px) {
  .step li:nth-of-type(even):after {
    width: 40px;
  }
}
.step li:nth-of-type(even).active:after {
  background: white;
}

.step-en,
.step-ja {
  color: #8E8E8E;
  font-weight: bold;
}

.step-en {
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.step-ja {
  font-size: 20px;
  text-align: center;
}

.confirm-page .form .form_title-req {
  opacity: 0;
}

.thanks-ttl {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}

.thanks-text {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
.thanks-text span {
  font-size: 12px;
}

.news-content-wrap {
  font-size: 1.6rem;
  padding: 70px 20px 70px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .news-content-wrap {
    padding: 30px 10px 30px;
  }
}
.news-content-wrap > * + * {
  margin-top: 20px;
}
.news-content-wrap p {
  font-weight: normal;
  line-height: 1.875;
  letter-spacing: 0.1em;
}
.news-content-wrap p img {
  display: block;
  width: fit-content;
}
.news-content-wrap p img.aligncenter {
  margin: 0 auto;
}
.news-content-wrap p img.alignright {
  margin: 0 0 0 auto;
}
.news-content-wrap strong {
  font-weight: bold;
}
.news-content-wrap h1 {
  font-size: 3.3rem;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-content-wrap h1 {
    line-height: 1.3;
  }
}
.news-content-wrap h2 {
  font-size: 3rem;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-content-wrap h2 {
    line-height: 1.3;
  }
}
.news-content-wrap h3 {
  font-size: 2.7rem;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-content-wrap h3 {
    line-height: 1.3;
  }
}
.news-content-wrap h4 {
  font-size: 2.4rem;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-content-wrap h4 {
    line-height: 1.3;
  }
}
.news-content-wrap h5 {
  font-size: 2.1rem;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-content-wrap h5 {
    line-height: 1.3;
  }
}
.news-content-wrap h6 {
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-content-wrap h6 {
    line-height: 1.3;
  }
}
.news-content-wrap em {
  font-style: italic;
}
.news-content-wrap ul {
  list-style-type: decimal;
  list-style-position: inside;
}
.news-content-wrap ul li {
  list-style: initial;
  list-style-position: inside;
  font-weight: normal;
}
.news-content-wrap ul li + li {
  margin-top: 5px;
}
.news-content-wrap ol {
  list-style-type: disc;
  list-style-position: inside;
}
.news-content-wrap ol li {
  list-style: auto;
  list-style-position: inside;
  font-weight: normal;
}
.news-content-wrap ol li + li {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .news-content-wrap iframe {
    max-width: 700px;
    width: 100%;
    height: 400px;
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .news-content-wrap iframe {
    width: 100%;
    height: 250px;
  }
}
.news-content-wrap a {
  color: #666;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.news-content-wrap video {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .news-content-wrap video {
    max-width: 700px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .news-content-wrap video {
    width: 100%;
  }
}
.news-content-wrap .wp-video {
  margin: 20px auto 0;
}
@media screen and (min-width: 768px) {
  .news-content-wrap .wp-video {
    max-width: 700px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .news-content-wrap .wp-video {
    width: 100%;
  }
}
.news-content-wrap blockquote {
  position: relative;
}
.news-content-wrap blockquote::before {
  content: '"';
  display: inline-block;
  position: absolute;
  font-size: 3rem;
  top: 4px;
  left: 12px;
  color: #fff;
  font-weight: bold;
}
.news-content-wrap blockquote p {
  background-color: #aaa;
  padding: 25px 30px;
  color: #fff;
}
.news-content-wrap blockquote cite {
  display: block;
  text-align: right;
  font-style: italic;
}
.news-content-wrap .wp-block-table .wp-element-caption {
  text-align: right;
  font-style: italic;
  font-weight: normal;
}

.under-page.privacy-policy .privacy-policy-area {
  font-size: 1.4rem;
  line-height: 1.7;
}
.under-page.privacy-policy .privacy-policy-area:nth-of-type(n+2) {
  margin: 80px 0 0;
}
.under-page.privacy-policy .privacy-policy-area .inner > * + * {
  margin: 20px 0 0;
}
.under-page.privacy-policy .privacy-policy-area .privacy-ttl {
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .under-page.privacy-policy .privacy-policy-area .privacy-ttl {
    font-size: 1.8rem;
  }
}
.under-page.privacy-policy .privacy-policy-area .privacy-list {
  counter-reset: counter;
  margin-bottom: 40px;
}
.under-page.privacy-policy .privacy-policy-area .privacy-list li {
  padding: 0 0 0 2rem;
  position: relative;
}
.under-page.privacy-policy .privacy-policy-area .privacy-list li:nth-of-type(n+2) {
  margin: 5px 0 0;
}
.under-page.privacy-policy .privacy-policy-area .privacy-list li::before {
  content: counter(counter) ".";
  counter-increment: counter;
  position: absolute;
  top: 0;
  left: 0;
}
.under-page.privacy-policy .privacy-policy-area .privacy-txt {
  margin-bottom: 40px;
}
.under-page.privacy-policy .privacy-policy-area .privacy-link a {
  font-weight: bold;
  border-bottom: 1px solid white;
  padding-right: 20px;
  position: relative;
}
.under-page.privacy-policy .privacy-policy-area .privacy-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  background: url("../img/icon-link.png") no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}