/* font
----------------------------------------------------*/
* {
  padding: 0;
  margin: 0;
}

html {
  overflow-y: scroll;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  font-style: normal;
  font-size: 16px;
  color: #000;
  line-height: 2;
}
@media (max-width: 767px) {
  body {
    -webkit-text-size-adjust: none;
    font-size: 15px;
  }
}

/* font
----------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

p,
pre,
blockquote,
ul,
ol,
dl,
dt,
dd,
hr,
form,
input {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
}

img {
  border: none;
  vertical-align: top;
  max-width: 100%;
}

em {
  font-style: normal;
}

li {
  list-style-type: none;
}

.sp,
.sp_flex,
.sp_inline {
  display: none !important;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp_inline {
    display: inline !important;
  }
  .sp_flex {
    display: flex !important;
  }
}
.mt00 {
  margin-top: 0 !important;
}

/* link
----------------------------------------------------*/
a {
  color: #000;
  text-decoration: underline;
}

a:hover {
  color: #999;
  text-decoration: none;
}

/* rollover
----------------------------------------------------*/
.hov {
  transition: opacity 0.2s linear;
}

.hov:hover {
  opacity: 0.7;
}

/* fadeup
----------------------------------------------------*/
.fadeup {
  opacity: 0;
  transform: translate3d(0, 100px, 0);
  transition-timing-function: ease;
  transition-duration: 0.5s;
}

.fadeup.is-enter {
  opacity: 1;
  transform: translateY(0);
  top: 0;
}

.fadeleft {
  opacity: 0;
  transform: translate3d(-100px, 0, 0);
  transition-timing-function: ease;
  transition-duration: 0.7s;
}

.fadeleft.is-enter {
  opacity: 1;
  transform: translateX(0);
  top: 0;
}

.faderight {
  opacity: 0;
  transform: translate3d(100px, 0, 0);
  transition-timing-function: ease;
  transition-duration: 0.7s;
}

.faderight.is-enter {
  opacity: 1;
  transform: translateX(0);
  top: 0;
}

.fadein {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.fadein.is-enter {
  opacity: 1;
  top: 0;
}

/* clear
----------------------------------------------------*/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  overflow: hidden;
  font-size: 0.1em;
  line-height: 0;
}

.clearfix {
  display: block;
}

/* loading
----------------------------------------------------*/
.loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading.on {
  -webkit-animation: loading_end 0.8s ease forwards;
          animation: loading_end 0.8s ease forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.loading.on .loading-logo {
  -webkit-animation: loading_fade 0.8s ease forwards;
          animation: loading_fade 0.8s ease forwards;
}

.loading-logo {
  line-height: 1;
  opacity: 0;
  transform: translateY(10px);
}

@-webkit-keyframes loading_fade {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes loading_fade {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes loading_end {
  0% {
    top: 0;
  }
  100% {
    top: -110%;
  }
}
@keyframes loading_end {
  0% {
    top: 0;
  }
  100% {
    top: -110%;
  }
}
body.active {
  overflow: hidden;
  position: relative;
  width: 100%;
}

body.active,
html.active {
  overflow: hidden;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.sp_menu {
  display: block;
  position: fixed;
  right: 60px;
  top: 30px;
  z-index: 68;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  background: #000000;
  border-radius: 24px;
}
@media (max-width: 767px) {
  .sp_menu {
    right: 20px;
    top: 20px;
  }
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 21px;
  height: 16px;
  top: 16px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  border-radius: 1px;
  background-color: #fff;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
  width: 21px;
}

.menu-trigger span:nth-of-type(2) {
  top: 7px;
  width: 14px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
  width: 7px;
}

.active .menu-trigger span:nth-of-type(1) {
  transform: translateY(7.5px) rotate(-20deg);
  background-color: #fff;
}

.active .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}

.active .menu-trigger span:nth-of-type(3) {
  transform: translateY(-7.5px) rotate(20deg);
  background-color: #fff;
  width: 21px;
}

#menu {
  position: fixed;
  z-index: 59;
  width: 412px;
  height: 100%;
  top: 0;
  right: 0;
  background: rgba(87, 87, 84, 0.92);
  display: none;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 50px 0 50px;
  box-sizing: border-box;
  flex-direction: column;
  overflow-y: auto;
  padding-bottom: 50px;
  padding-top: 70px;
}
#menu::-webkit-scrollbar {
  width: 8px;
  background: rgba(0, 0, 0, 0.1);
}
#menu::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  #menu {
    width: 100%;
    padding: 50px 30px 70px 30px;
  }
}
#menu .gmenu {
  margin-bottom: 4vh;
  width: 100%;
  padding-top: 30px;
}
@media (max-width: 767px) {
  #menu .gmenu {
    padding: 50px 0 0 0;
    margin-bottom: 8vw;
  }
}
#menu .gmenu li {
  font-size: 19px;
  letter-spacing: 0.075em;
  margin-bottom: 1.5vh;
  border-bottom: 1px solid #fff;
}
#menu .gmenu li.two-line a {
  line-height: 1.5;
}
@media (max-width: 767px) {
  #menu .gmenu li {
    font-size: 18px;
    margin-bottom: 0;
  }
  #menu .gmenu li:nth-child(1) {
    border-top: 1px solid #fff;
  }
}
#menu .gmenu li a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
  display: block;
  background: url("../images/common/icon02.svg") no-repeat right 30px center;
  background-size: 10px auto;
  padding: 1.5vh 0 1.5vh 20px;
}
@media (max-width: 767px) {
  #menu .gmenu li a {
    background: url("../images/common/icon02.svg") no-repeat right 20px center;
    background-size: 6px auto;
    padding: 1.5vh 0 1.5vh 20px;
  }
}
#menu .gmenu li a:hover {
  opacity: 0.6;
}
#menu .gmenu li.recruit {
  padding: 1.5vh 0 0 20px;
  color: #fff;
}
#menu .gmenu li.recruit ul {
  padding: 1.5vh 0;
}
#menu .gmenu li.recruit ul li {
  font-size: 16px;
  border-bottom: none;
  margin-bottom: 5px;
}
#menu .gmenu li.recruit ul li:nth-child(1) {
  border-top: none;
}
#menu .gmenu li.recruit ul li a {
  background: none;
  padding: 0 0 0 20px;
  position: relative;
}
#menu .gmenu li.recruit ul li a::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  left: 7em;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  #menu .gmenu li.recruit ul li a::before {
    width: 6px;
    height: 6px;
  }
}
#menu .gmenu-contact {
  font-size: 19px;
  letter-spacing: 0.075em;
  margin-bottom: 4vh;
  width: 100%;
}
#menu .gmenu-contact a {
  color: #fff;
  text-decoration: none;
  display: block;
  background: url("../images/common/contact-icon.svg") no-repeat right 15px center;
  padding: 20px 0;
  border: 1px solid #fff;
  text-align: center;
}
@media (max-width: 767px) {
  #menu .gmenu-contact a {
    padding: 15px 0;
  }
}
#menu .gmenu-privacy {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
  width: 100%;
}
#menu .gmenu-privacy a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding-right: 30px;
  background: url("../images/common/icon02.svg") no-repeat right center;
}
#menu a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
#menu a:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  #menu {
    overflow-y: auto;
    align-items: flex-start;
    flex-direction: column;
  }
}

.header-logo {
  width: 117px;
  margin: 35px auto 100px auto;
}
@media (max-width: 767px) {
  .header-logo {
    width: 100px;
    margin: 20px auto 0 auto;
  }
}
.header-logo a {
  display: block;
}

.title-area {
  margin: 100px auto 40px;
  width: min(1200px, 90%);
}
@media (max-width: 767px) {
  .title-area {
    padding-left: 30px;
    margin: 60px 0 40px 0;
  }
}

.document {
  width: min(1000px, 90%);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .document {
    width: auto;
    margin: 0 30px;
  }
}

.title-en {
  font-size: 58px;
  font-weight: 200;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  color: #e8e7e7;
  transform: scale(0.8, 1);
  transform-origin: left center;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .title-en {
    font-size: 37px;
    margin-bottom: 10px;
  }
}

.title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.075em;
  margin-bottom: 40px;
  line-height: 1;
  background: url("../images/common/title-icon.svg") no-repeat left bottom;
  padding-bottom: 35px;
}
@media (max-width: 767px) {
  .title {
    font-size: 17px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

#footer {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 130px;
}
@media (max-width: 767px) {
  #footer {
    margin-top: 80px;
    display: block;
  }
}

.footer01 {
  width: 500px;
  padding: 6vw 60px 1vw 60px;
  background: #e6e6e6;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .footer01 {
    width: 100%;
    padding: 50px 0 25px 0;
  }
}
.footer01 a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer01 a:hover {
  opacity: 0.6;
}

.footer02 {
  flex: 1;
  background: url("../images/common/footer-contact.webp") no-repeat center center;
  background-size: cover;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer02 .scroll-txt {
  top: 0;
  height: 130px;
}
@media (max-width: 767px) {
  .footer02 {
    height: 300px;
  }
}

.footer-address {
  margin-top: 5vw;
  letter-spacing: 0.075em;
}
@media (max-width: 767px) {
  .footer-address {
    margin-top: 40px;
  }
}

.footer-map {
  margin-top: 20px;
  letter-spacing: 0.07em;
}
@media (max-width: 767px) {
  .footer-map {
    font-size: 13px;
  }
}
.footer-map a {
  display: inline-block;
  padding-right: 20px;
  background: url("../images/common/blank.svg") no-repeat right center;
}

.footer-privacy {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .footer-privacy {
    font-size: 11px;
  }
}
.footer-privacy a {
  display: inline-block;
  padding-right: 20px;
  background: url("../images/common/icon03.svg") no-repeat right center;
}

.copy {
  font-size: 11px;
  letter-spacing: 0.075em;
  margin-top: 50px;
}

.footer-contact {
  font-weight: 500;
  width: min(700px, 90%);
  margin: 30px auto 0 auto;
  font-size: 25px;
}
@media (max-width: 767px) {
  .footer-contact {
    font-size: 13px;
    width: 80%;
  }
}
.footer-contact a {
  display: block;
  text-align: center;
  padding: 30px 0;
  border: 1px solid #e8e7e6;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  position: relative;
  background: url("../images/common/contact-icon.svg") no-repeat right 40px center;
}
@media (max-width: 880px) {
  .footer-contact a {
    background: url("../images/common/contact-icon.svg") no-repeat right 10px center;
  }
}
@media (max-width: 767px) {
  .footer-contact a {
    padding: 20px 0;
    background: url("../images/common/contact-icon.svg") no-repeat right 20px center;
    background-size: 15px auto;
  }
}
.footer-contact a:hover {
  background: rgba(255, 255, 255, 0.2) url("../images/common/contact-icon.svg") no-repeat right 40px center;
}
@media (max-width: 880px) {
  .footer-contact a:hover {
    background: rgba(255, 255, 255, 0.2) url("../images/common/contact-icon.svg") no-repeat right 10px center;
  }
}
@media (max-width: 767px) {
  .footer-contact a:hover {
    background: rgba(255, 255, 255, 0.2) url("../images/common/contact-icon.svg") no-repeat right 20px center;
    background-size: 15px auto;
  }
}

@media (max-width: 767px) {
  br.pc {
    display: none;
  }
}

.forms-title-area {
  display: flex;
  align-items: center;
  gap: 0 100px;
}
@media (max-width: 767px) {
  .forms-title-area {
    flex-direction: column;
    gap: 20px 0;
    text-align: center;
    align-items: flex-start;
  }
}

.document {
  width: min(740px, 90%);
}
.document .forms-lead {
  position: relative;
  margin-top: 0;
  margin-bottom: 70px;
  width: 370px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .document .forms-lead {
    width: 100%;
    margin-bottom: 60px;
  }
}
.document .caution {
  color: #D80C18;
  font-size: 14px;
}
@media (max-width: 767px) {
  .document {
    width: 90%;
    margin: 0 auto;
  }
}

.form-detail-title {
  font-size: 18px;
  white-space: nowrap;
  text-align: right;
}
@media (max-width: 767px) {
  .form-detail-title {
    font-size: 15px;
    text-align: left;
  }
}

.form-detail > div {
  margin-bottom: 5px;
}
.form-detail > div .form-detail-title {
  text-align: left;
}

.form-detail {
  display: block;
  margin-left: auto;
  gap: 20px 30px;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .form-detail {
    grid-template-columns: 1fr;
    gap: 15px 0;
    margin-bottom: 40px;
  }
}
.form-detail sup {
  color: #D80C18;
  position: relative;
  top: 0.2em;
  left: 2px;
}
.form-detail input {
  background-color: #F7F8F8;
  border: 1px solid #E4E4E5;
  padding: 1em 1.5em 1em;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
}
@media (max-width: 767px) {
  .form-detail input {
    font-size: 14px;
  }
}
.form-detail input::-moz-placeholder {
  color: #B1B1B1;
}
.form-detail input::placeholder {
  color: #B1B1B1;
}
.form-detail input:focus {
  outline: 1px solid #cfcfcf;
}
.form-detail textarea {
  background-color: #F7F8F8;
  border: 1px solid #E4E4E5;
  padding: 1em 1.5em 1em;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  resize: none;
  height: 220px;
}
@media (max-width: 767px) {
  .form-detail textarea {
    font-size: 14px;
  }
}
.form-detail textarea::-moz-placeholder {
  color: #B1B1B1;
}
.form-detail textarea::placeholder {
  color: #B1B1B1;
}
.form-detail textarea:focus {
  outline: 1px solid #cfcfcf;
}
.form-detail--align-up {
  align-items: flex-start;
}

.form-input--up {
  margin-top: 20px;
}

.form-item .address-inputs {
  display: flex;
  gap: 0 10px;
  align-items: center;
}

.privacy-box {
  grid-column: 1/-1;
  background: #F3F3F3;
  padding: 50px 0 50px 0;
  margin-bottom: 0;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  width: 90vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -45vw;
  margin-right: -50vw;
}
@media (max-width: 767px) {
  .privacy-box {
    padding: 30px 0 30px 0;
  }
}
.privacy-box .privacy-area {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.privacy-box .privacy-link {
  text-align: center;
  font-size: 14px;
  margin-bottom: 10px;
}
.privacy-box .privacy-link a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.privacy-box .privacy-link a .privacy-arrow {
  font-size: 13px;
  margin-left: 4px;
  vertical-align: middle;
}
.privacy-box .privacy-link a:hover {
  text-decoration: underline;
}
.privacy-box .privacy-check {
  display: flex;
  align-items: center;
  font-size: 15px;
  width: 100%;
  justify-content: center;
}
.privacy-box .privacy-check:hover {
  opacity: 0.6;
}
.privacy-box .privacy-check label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.privacy-box .privacy-check input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #222;
  margin-right: 6px;
}
.privacy-box .privacy-check .check-text {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.confirm .form-detail--align-up {
  align-items: baseline;
}

.thanks .thanks-title {
  font-size: 28px;
  text-align: center;
}
@media (max-width: 767px) {
  .thanks .thanks-title {
    font-size: 18px;
  }
}
.thanks .thanks-detail {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .thanks .thanks-detail {
    margin-top: 40px;
  }
}
.thanks p {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .thanks p {
    font-size: 14px;
  }
}

.form-detail select.form-input {
  background-color: #F7F8F8;
  border: 1px solid #E4E4E5;
  padding: 1em 1.5em 1em;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  color: #222;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 4px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7L9 11L13 7' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 18px 18px;
}
.form-detail select.form-input:hover {
  cursor: pointer;
}

.form-detail select.form-input:focus {
  outline: 1px solid #cfcfcf;
}

.form-detail select.form-input option {
  color: #222;
}

.form-detail select.form-input:disabled,
.form-detail select.form-input option:disabled {
  color: #B1B1B1;
}

.form-detail .file-label {
  position: relative;
  width: auto;
  display: inline-block;
}
.form-detail .file-label:hover {
  cursor: pointer;
}
.form-detail .file-input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 270px;
  box-sizing: border-box;
  height: 100%;
  z-index: 1;
}
.form-detail .file-input:hover {
  cursor: pointer;
}
.form-detail .file-placeholder {
  display: block;
  width: 100%;
  background: #F7F8F8;
  border: 1px solid #E4E4E5;
  border-radius: 4px;
  padding: 1em 1.5em 1em;
  font-size: 16px;
  color: #888;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.form-detail .file-placeholder:hover {
  cursor: pointer;
}

.form-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
.form-buttons .form-btn {
  min-width: 160px;
  padding: 1em 2em;
  font-size: 15px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.08em;
  font-weight: 300;
}
.form-buttons .form-btn--submit {
  border: none;
}
.form-buttons .form-btn--back:hover {
  opacity: 0.6;
}
.form-buttons .form-btn--submit:hover {
  opacity: 0.6;
}
/*# sourceMappingURL=forms.css.map */