@charset "UTF-8";
/*============================================================
common
==============================================================*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Zen Old Mincho", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1rem;
  color: #333;
  letter-spacing: 0.05rem;
  animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin: auto;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  /*-webkit-appearance: none;
  -moz-appearance: none;*/
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}
a:link, a:visited, a:active {
  color: #333;
}

.sp {
  display: inherit;
}
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media (min-width: 769px) {
  .pc {
    display: inherit;
  }
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.inner {
  width: 100%;
  margin: auto;
  padding: 0 20px;
}
@media (min-width: 769px) {
  .inner {
    width: 90%;
    max-width: 1040px;
  }
}

.flex_wrap {
  display: flex;
  justify-content: normal;
  align-items: normal;
  flex-wrap: wrap;
}

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

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

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

.head_ttl {
  font-family: "Zen Old Mincho", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: clamp(24px, 3vw, 36px);
  text-align: center;
  font-weight: 900;
  margin-bottom: 60px;
}
.head_ttl .en {
  position: relative;
  display: block;
  font-size: 1rem;
}
.head_ttl .en::after {
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -20px;
  border-bottom: solid 2px #004ea2;
  width: 30px;
}

.btn {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  background: #004ea2;
  background-clip: padding-box;
  border-radius: 100vh;
  padding: 18px 60px;
  transition: all 0.3s ease-in-out 0s;
}
.btn:link, .btn:visited, .btn:active {
  color: #fff;
}
.btn:hover {
  opacity: 0.8;
}
@media (min-width: 769px) {
  .btn {
    width: 380px;
    font-size: 1.25rem;
    padding: 18px 90px;
  }
}

.btn_wrap {
  text-align: center;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo img {
  width: 50px;
  height: 50px;
  margin: 0 10px 0 0;
}
.logo p {
  font-size: 1.125rem;
}

/*============================================================
header
==============================================================*/
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.navi .link {
  font-weight: 900;
}
.navi .link a:link, .navi .link a:visited, .navi .link a:active {
  color: #333;
}
.navi .btn {
  padding: 12px 20px 12px 20px;
}

#pc_navi ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

#sp_navi {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: all 0.3s;
}
#sp_navi ul {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#sp_navi li {
  list-style: none;
  text-align: center;
}
#sp_navi li a {
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
#sp_navi li .btn {
  width: 280px;
  padding: 12px 20px 12px 20px;
  margin-top: 10px;
}
#sp_navi li .btn::after {
  right: 20px;
  margin-top: -13px;
}

#sp_navi.panelactive {
  opacity: 1;
  z-index: 999;
}

#sp_navi.panelactive ul {
  display: block;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #004ea2;
  border-radius: 0 0 4px 4px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

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

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

@media (min-width: 769px) {
  header {
    position: fixed;
    z-index: 100;
  }
  .header_inner {
    height: 70px;
    padding: 0 20px;
  }
  .header_logo img {
    zoom: 1;
  }
  #pc_navi ul {
    font-size: 1.300390117vw;
  }
  #pc_navi ul li {
    margin: 0 15px;
  }
  .navi .btn {
    width: auto;
    font-size: 1.300390117vw;
  }
}
@media (min-width: 1040px) {
  #pc_navi ul {
    font-size: 0.9375rem;
  }
  .navi .btn {
    font-size: 0.9375rem;
  }
}
/*============================================================
main
==============================================================*/
#kv {
  /* 既存 */
  min-height: clamp(520px, 78vh, 710px);
  margin-top: 70px;
  /* 追加：背景レイヤーを敷く土台 */
  position: relative;
  overflow: hidden;
  /* スライド用の背景レイヤー（JSで生成） */
}
#kv .kv-bg {
  position: absolute;
  inset: 0;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: opacity;
}
#kv .kv-bg.is-show {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  #kv .kv-bg {
    transition: none;
  }
}
#kv .inner {
  /* 既存 */
  max-width: 1200px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(8px, 1.2vw, 16px);
  padding: clamp(80px, 18vh, 150px) clamp(16px, 5vw, 32px) clamp(24px, 8vh, 64px);
  /* 追加：テキストを前面に */
  position: relative;
  z-index: 1;
}
#kv h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
}
#kv p {
  color: #fff;
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 900;
}

#message {
  background: url(../img/bus_bg.png) no-repeat bottom center/contain;
  padding: 80px 0;
}
#message p {
  font-weight: 900;
  line-height: 2;
}
#message .head_ttl {
  position: relative;
  text-align: left;
  margin-bottom: 30px;
  z-index: 0;
}
#message .head_ttl .en {
  font-size: clamp(60px, 10vw, 120px);
  color: #eef3fd;
  position: absolute;
  left: 0;
  top: -15%;
  transform: translateY(-45%);
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
}
#message .head_ttl .en::after {
  display: none;
}

#business {
  background-color: #f2f6fa;
  padding: 60px 0;
}

.business_list li {
  padding: 50px 0;
  border-bottom: solid 1px #dadada;
}
.business_list li:first-child {
  padding-top: 0;
}
.business_list .txt {
  width: 670px;
  margin-top: 20px;
}
.business_list h3 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
}
.business_list h3 span {
  background-color: #003366;
  padding: 0 8px;
}
.business_list .strong {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 900;
  margin: 20px 0;
}

#company {
  padding: 60px 0;
}
#company .inner {
  position: relative;
  isolation: isolate;
  flex-wrap: wrap;
}
#company .inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(260px, 80vw, 640px);
  aspect-ratio: 1/1;
  background: url("../img/logo.svg") no-repeat center/contain;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}
#company .flex_wrap {
  border-bottom: solid 1px #e6e6e6;
  padding: 16px 40px;
}
#company .first {
  border-top: solid 1px #e6e6e6;
}
#company dl {
  max-width: 560px;
  width: 100%;
}
#company dt {
  width: 30%;
}

@media (min-width: 769px) {
  #message {
    padding: 180px 0;
  }
  #message .inner {
    position: relative;
    isolation: isolate;
  }
  #message .inner::before {
    content: "";
    position: absolute;
    right: clamp(-6rem, -6vw, -1rem);
    top: 50%;
    transform: translateY(-50%);
    width: min(44vw, 467px);
    aspect-ratio: 467/550;
    background: url("../img/message.img.png") no-repeat center/contain;
    z-index: 0;
    pointer-events: none;
  }
  #message .head_ttl .en {
    top: -30%;
  }
  #business {
    padding: 80px 0;
  }
  .business_list li:first-child {
    padding-top: 50px;
  }
  .business_list .txt {
    margin-top: 0;
    margin-left: 30px;
  }
  .business_list h3 {
    text-align: left;
    font-size: 1.5rem;
  }
  .business_list .strong {
    text-align: left;
  }
  #company {
    padding: 80px 0;
  }
  #company .inner {
    width: 100%;
    max-width: 880px;
    display: flex;
    justify-content: space-between;
    align-items: normal;
  }
  #company .inner::before {
    left: clamp(-20px, 2vw, 0px);
    top: 50%;
    transform: translateY(-50%);
    width: min(36vw, 360px);
    opacity: 0.05;
  }
  #company .head_ttl {
    text-align: left;
  }
  #company .head_ttl span::after {
    right: auto;
  }
}
#form {
  background: url(../img/contact_bg.jpg) no-repeat center/cover;
  padding: 60px 0;
}

.form_box {
  max-width: 800px;
  background: #fff;
  border-radius: 20px;
  padding: 40px 40px 10px;
  margin: 0 auto;
}

.contact_list {
  max-width: 600px;
  margin: 0 auto;
}

.contact_group {
  margin-bottom: 20px;
}
.contact_group textarea {
  height: 100px;
}

.contact_label {
  font-weight: 700;
  margin-bottom: 8px;
}

.contact_req, .contact_any {
  font-size: 0.625rem;
  padding: 2px 9px 3px;
  margin-left: 8px;
}

.contact_req {
  color: #fff;
  background: #0073e6;
}

.contact_any {
  color: #333;
  background: #ececec;
}

.contact_note {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 6px;
  margin-left: 2px;
}

.contact_input {
  width: 100%;
  height: 40px;
  background: #fff;
  padding: 8px 16px 8px;
  border: 1px solid #cfd0cc;
  border-radius: 5px;
}

.agree {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  margin: 30px auto;
}
.agree a {
  text-decoration: underline;
}
.agree a:link, .agree a:visited, .agree a:active {
  color: #333;
}

.contact_action {
  text-align: center;
}

.contact_btn {
  font-family: "Zen Old Mincho", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 700;
  width: auto;
  border: none;
}
.contact_btn:hover {
  transition: all 0.2s ease-in-out 0s;
  opacity: 0.5;
}

h6.error {
  color: #ff753b;
}

.form_box input[type=text].error, .form_box input[type=email].error, .form_box select.error {
  background: #FCE6E6 !important;
  border: solid 1px #ff753b;
}

@media (min-width: 769px) {
  #form {
    padding: 80px 0;
  }
  .contact_note {
    display: inline;
    font-size: 0.875rem;
    margin-left: 16px;
  }
}
#privacypolicy {
  margin-top: 70px;
}
#privacypolicy .strong {
  font-size: 1.5rem;
  margin-top: 80px;
}

.policy_list li {
  margin-bottom: 30px;
}
.policy_list h3 {
  font-weight: 900;
}

.kigaki {
  text-align: center;
  margin: 40px 0;
}

#thanks {
  margin-top: 70px;
}
#thanks .txt_box {
  text-align: center;
  margin: 40px 0;
}
#thanks .btn_wrap {
  margin-top: 50px;
}

/*============================================================
footer
==============================================================*/
footer {
  text-align: center;
  padding: 50px 0;
}

.footer_link {
  font-size: 1rem;
  padding: 50px 20px;
}

.footer_copy {
  font-size: 0.625rem;
  border-top: solid 1px #e6e6e6;
  padding: 40px 0 0;
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */