@charset "UTF-8";
:root {
  --main-color: #002B63;
  --sub-color: #E3F3FF;
  --accent-color: #DF1B22;
  --hover: #d4c21f;
}

* {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  list-style: none;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /*スクロール設定*/
}

body {
  position: relative;
  font-size: 18px;
  font-family: "UD Shin Go Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  color: #333;
  line-height: 1.8;
  background-color: var(--sub-color);
}
@media (max-width: 991px) {
  body {
    font-size: 16px;
  }
}

a {
  display: block;
  text-decoration: none;
  width: 100%;
}

a.txt-link {
  display: inline;
  color: var(--accent-color);
  text-decoration: underline;
  font-weight: 600;
}

img {
  max-width: 100%;
}

.scroll-offset {
  scroll-margin-top: 100px;
}

section {
  padding-top: 150px;
}
@media (max-width: 991px) {
  section {
    padding-top: 70px;
  }
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.sec-ttl .ttl_number {
  font-size: 18px;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .sec-ttl .ttl_number {
    margin-bottom: 1rem;
  }
}
.sec-ttl .ttl_number::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-right: 5px;
  margin-bottom: 2px;
  vertical-align: middle;
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .sec-ttl .ttl_number::before {
    margin-left: 0.2rem;
  }
}
.sec-ttl h2 {
  font-size: clamp(2.625rem, 1.471rem + 3.21vw, 3.875rem);
  font-weight: 900;
  color: var(--main-color);
  margin-top: -30px;
  letter-spacing: -1px;
}

h3 {
  font-size: clamp(1.125rem, 0.461rem + 1.39vw, 1.5rem);
}
h3::before {
  content: "■";
  padding-right: 5px;
}

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

.boundary-1 {
  background-color: var(--main-color);
}
.boundary-1 img {
  width: 100%;
  height: auto;
}

.boundary-2 {
  background-color: var(--sub-color);
}
.boundary-2 img {
  width: 100%;
  height: auto;
}

.boundary-3 {
  background-color: #fff;
}
.boundary-3 img {
  width: 100%;
  height: auto;
}

.about {
  background-color: var(--main-color);
  color: white;
}
.about_lead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .about_lead {
    display: block;
  }
}
.about_ttl {
  width: 40%;
}
@media (max-width: 991px) {
  .about_ttl {
    width: 100%;
    padding-bottom: 30px;
  }
}
.about_ttl h2 {
  color: #fff;
}
.about_ttl p:last-child {
  font-size: clamp(1.375rem, 0.798rem + 1.6vw, 2rem);
  font-weight: bold;
  padding-top: 50px;
}
@media (max-width: 991px) {
  .about_ttl p:last-child {
    padding-top: 30px;
  }
}
.about_txt {
  width: 50%;
}
@media (max-width: 991px) {
  .about_txt {
    width: 100%;
  }
}
.about_txt span {
  display: inline-block;
  padding-bottom: 2rem;
}

.vehicles {
  margin-top: 50px;
}
.vehicles_list {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 30px;
}
@media (max-width: 991px) {
  .vehicles_list {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .vehicles_list {
    display: block;
  }
}
@media (max-width: 767px) {
  .vehicles_list table {
    width: 100%;
  }
}
.vehicles_list table th {
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .vehicles_list table th {
    width: 80%;
  }
}
.vehicles_list table th::before {
  content: "・";
}
.vehicles_list p {
  margin-top: auto;
}
@media (max-width: 767px) {
  .vehicles_list p {
    text-align: end;
    padding-top: 1rem;
  }
}

.loop-splide {
  width: 100%;
  margin: 30px auto 0;
}
.loop-splide .splide__slide {
  width: 30%;
}
.loop-splide .splide__slide img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .loop-splide .splide__slide img {
    height: 220px;
  }
}
.loop-splide .last-img img {
  -o-object-position: left top;
     object-position: left top;
}

.company {
  background-color: var(--main-color);
  color: white;
}
@media (max-width: 767px) {
  .company {
    padding-bottom: 50px;
  }
}
.company h2 {
  color: #fff;
  padding-bottom: 50px;
}
.company_lead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .company_lead {
    display: block;
  }
}
.company_txt {
  width: 50%;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 991px) {
  .company_txt {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.company_txt table {
  text-align: left;
  line-height: 2.5;
  width: 100%;
}
@media (max-width: 991px) {
  .company_txt table {
    line-height: 2;
    padding-bottom: 30px;
  }
}
.company_txt table th {
  width: 200px;
  vertical-align: top;
}
@media (max-width: 767px) {
  .company_txt table th {
    width: 25%;
  }
}
.company_txt table td span {
  display: inline-block;
}
.company_img {
  position: relative;
  width: 48%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 991px) {
  .company_img {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.company_img .shrink-frame {
  overflow: hidden;
  width: 100%;
  height: auto;
  position: relative;
}
.company_img .shrink-frame:first-child {
  width: 90%;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .company_img .shrink-frame:first-child {
    position: static;
    width: 100%;
    padding: 0 0 30px 0;
  }
}
@media (max-width: 767px) {
  .company_img .shrink-frame:first-child {
    padding: 0;
  }
}
.company_img .shrink-frame:last-child {
  width: 90%;
  margin-left: auto;
}
@media (max-width: 991px) {
  .company_img .shrink-frame:last-child {
    position: static;
    width: 100%;
    padding: 0;
  }
}
.company_img .shrink-img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 1.2s ease-out;
  transition: -webkit-transform 1.2s ease-out;
  transition: transform 1.2s ease-out;
  transition: transform 1.2s ease-out, -webkit-transform 1.2s ease-out;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.company_img .shrink-frame.is-visible .shrink-img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.company_btn {
  margin: 0 auto;
  max-width: 750px;
  background-color: var(--sub-color);
  color: var(--main-color);
  text-align: center;
  padding: 25px;
  font-weight: bold;
  font-size: clamp(1.125rem, 0.894rem + 0.64vw, 1.375rem);
  margin-top: 100px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.company_btn:hover {
  background-color: var(--hover);
}
@media (max-width: 767px) {
  .company_btn {
    padding: 25px 10px 20px;
    line-height: 1.5;
  }
}
.company_btn::after {
  display: inline;
  white-space: nowrap;
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  -webkit-mask-image: url(../images/link.svg);
          mask-image: url(../images/link.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--main-color);
  margin: 4px 0 0 10px;
}
@media (max-width: 767px) {
  .company_btn::after {
    width: 20px;
    height: 20px;
    margin-left: 5px;
  }
}

@media (max-width: 767px) {
  .recruit {
    padding-bottom: 50px;
  }
}
.recruit_lead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .recruit_lead {
    display: block;
  }
}
.recruit_lead p:first-child {
  width: 40%;
  font-size: clamp(1.375rem, 0.798rem + 1.6vw, 2rem);
  font-weight: bold;
}
@media (max-width: 991px) {
  .recruit_lead p:first-child {
    width: 100%;
    padding: 30px 0;
  }
}
.recruit_lead p:last-child {
  width: 60%;
}
@media (max-width: 991px) {
  .recruit_lead p:last-child {
    width: 100%;
  }
}
.recruit_lead p:last-child span {
  display: inline-block;
}
.recruit_flow {
  width: 80%;
  margin: 50px auto 0;
}
@media (max-width: 991px) {
  .recruit_flow {
    width: 100%;
  }
}
.recruit_flow h3 {
  color: var(--main-color);
}
.recruit_flow ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 3px solid var(--main-color);
  background-color: #fff;
  padding: 15px 5%;
  padding: 15px;
}
@media (max-width: 991px) {
  .recruit_flow ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruit_flow ul li .flow_icon {
  margin: 0 25px;
}
@media (max-width: 991px) {
  .recruit_flow ul li .flow_icon {
    margin-right: 0;
  }
}
.recruit_flow ul li .flow_icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.recruit_flow ul li h4 {
  color: var(--main-color);
  font-size: 18px;
  font-weight: bold;
}
.recruit_flow ul > p {
  color: var(--main-color);
  font-size: 18px;
  text-align: center;
  padding: 5px 0;
}
.recruit_btn {
  position: relative;
  margin: 0 auto;
  max-width: 750px;
  background-color: var(--main-color);
  color: #fff;
  text-align: center;
  padding: 25px;
  font-weight: bold;
  font-size: clamp(1.125rem, 0.894rem + 0.64vw, 1.375rem);
  margin-top: 100px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.recruit_btn:hover {
  background-color: var(--hover);
}
@media (max-width: 767px) {
  .recruit_btn {
    padding: 25px 10px 20px;
    line-height: 1.5;
  }
}
.recruit_btn::after {
  display: inline;
  white-space: nowrap;
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  -webkit-mask-image: url(../images/link.svg);
          mask-image: url(../images/link.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .recruit_btn::after {
    width: 20px;
    height: 20px;
    margin-left: 5px;
  }
}

.contact {
  background-color: #fff;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .contact {
    padding-bottom: 50px;
  }
}
.contact_txt {
  padding-top: 30px;
}
.contact_box {
  width: 80%;
  margin: 50px auto 0;
  background-color: var(--main-color);
  color: #fff;
  padding: 70px 100px;
}
@media (max-width: 991px) {
  .contact_box {
    width: 90%;
    padding: 50px 30px;
  }
}
@media (max-width: 767px) {
  .contact_box {
    width: 100%;
  }
}
.contact_box .radio dd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em; /* ラジオボタンとテキストの間隔 */
  padding: 10px 0 0 1rem;
}
@media (max-width: 576px) {
  .contact_box .radio dd {
    padding-left: 0;
  }
}
.contact_box .radio dd input[type=radio] {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0; /* 幅が狭くなっても縮まない */
  margin-top: 0.2em; /* 垂直位置の微調整 */
}
.contact_box .radio dd label {
  display: inline-block;
  line-height: 1.4;
  padding-left: 0.5rem;
}
.contact_box dt {
  font-weight: 700;
}
.contact_box dt span {
  color: var(--accent-color);
  font-family: メイリオ;
  font-size: 20px;
  font-weight: bold;
  padding: 0 0.5rem;
}
.contact_box .dl_box {
  padding-top: 30px;
}
.contact_box .dl_box dd {
  background-color: #fff;
  color: #333;
}
.contact_box .dl_box input[type=text],
.contact_box .dl_box input[type=number],
.contact_box .dl_box input[type=tel],
.contact_box .dl_box input[type=email] {
  width: 100%;
  padding: 0.8rem;
}
.contact_box .dl_box textarea {
  width: 100%;
  height: 10rem;
  padding: 0.8rem;
}
.contact_box .dl_box ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #818181;
  font-size: 14px;
}
.contact_box .dl_box ::-moz-placeholder { /* Others */
  color: #818181;
}
.contact_box .dl_box :-ms-input-placeholder { /* Others */
  color: #818181;
}
.contact_box .dl_box ::-ms-input-placeholder { /* Others */
  color: #818181;
}
.contact_box .dl_box ::placeholder { /* Others */
  color: #818181;
}
.contact_agree > p {
  padding: 1rem 0 2rem;
}
.contact_agree div label.check {
  display: block;
  margin: 50px 0 10px;
  text-align: center;
}
.contact_agree-recaptcha {
  text-align: center;
}
.contact_agree-recaptcha .g-recaptcha {
  display: inline-block;
  width: 100%;
}
@media (max-width: 576px) {
  .contact_agree-recaptcha .g-recaptcha {
    -webkit-transform: scale(0.77);
            transform: scale(0.77);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
.contact_agree-btn {
  max-width: 750px;
  margin: 15px auto;
}
.contact .submit-btn {
  width: 100%;
  margin: 15px auto 0;
  padding: 15px 0;
  text-align: center;
  font-weight: bold;
}
.contact .submit-btn:disabled {
  background-color: #ccc;
  color: #888;
  cursor: not-allowed;
  opacity: 0.7;
}
.contact .submit-btn:not(:disabled) {
  background-color: var(--sub-color);
  color: var(--main-color);
  cursor: pointer;
  opacity: 1;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.error-message {
  color: #fff;
  background-color: var(--accent-color);
  font-size: 0.9em;
  margin-top: 4px;
}

footer {
  background-color: #fff;
  padding: 0;
}
@media (max-width: 767px) {
  footer {
    text-align: right;
  }
}
footer p {
  position: fixed;
  display: inline;
  bottom: 20px;
  right: 30px;
  font-weight: bold;
  color: var(--main-color);
  letter-spacing: -0.5px;
}
@media (max-width: 767px) {
  footer p {
    position: static;
    text-align: right;
    padding-right: 30px;
  }
}

header {
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.show {
  opacity: 1 !important;
}

header {
  position: fixed;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 10px 15px;
  top: 10px;
  z-index: 999;
}
@media (max-width: 991px) {
  header {
    padding: 0 10px 0;
  }
}
header #logo {
  width: 380px;
  height: auto;
}
@media (max-width: 991px) {
  header #logo {
    width: 260px;
  }
}
@media (max-width: 576px) {
  header #logo {
    width: 240px;
  }
}
@media (max-width: 991px) {
  header .nav {
    position: fixed;
    top: 100px;
    right: 0;
    width: 50vw;
    height: 100vh;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
header .nav_num {
  font-size: 14px;
  padding-right: 15px;
}
header .nav_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
@media (max-width: 991px) {
  header .nav_list {
    gap: 30px;
  }
}
header .nav_list a {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--main-color);
}
header .nav_list a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--main-color);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
header .nav_list a:hover::after {
  width: 100%;
}
@media (max-width: 991px) {
  header .nav_list a {
    font-size: 1rem;
    padding: 0 5%;
    border-bottom: 2px dotted var(--main-color);
  }
}
header .nav_list .sm-logo {
  display: none;
}
@media (max-width: 991px) {
  header .nav_list .sm-logo {
    display: block;
    width: clamp(130px, 50%, 180px);
    height: auto;
    margin: 0 auto;
  }
}
header.scrolled #logo {
  width: 280px;
}
@media (max-width: 991px) {
  header.scrolled #logo {
    width: 220px;
  }
}
header.scrolled .nav_list a {
  font-size: 1.2rem;
}
@media (max-width: 991px) {
  header.scrolled .nav_list a {
    font-size: 1rem;
  }
}

.hamburger {
  display: none;
}
@media (max-width: 991px) {
  .hamburger {
    display: block;
    position: relative;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 999;
  }
  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 25px;
    height: 3px;
    background-color: var(--main-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .hamburger_border-top {
    top: 14px;
  }
  .hamburger_border-center {
    top: 22px;
  }
  .hamburger_border-bottom {
    top: 30px;
  }
  .hamburger p small {
    position: absolute;
    bottom: -15px;
    left: 7px;
    right: 0;
    color: var(--main-color);
    font-weight: bold;
  }
}

.black_bg {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50vw;
  background-color: rgb(255, 255, 255);
  border-radius: 50px 0 0 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
  z-index: 1;
}

.nav-open .nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 999;
}
.nav-open .black_bg {
  opacity: 1;
  visibility: visible;
}
.nav-open .hamburger_border-top {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 20px;
}
.nav-open .hamburger_border-center {
  opacity: 0;
}
.nav-open .hamburger_border-bottom {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 20px;
}

.fv {
  position: relative;
  height: 100vh;
  width: 100vw;
}
.fv_bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../images/fv.svg);
  background-position: 70% 50%;
  background-size: 60%;
  background-repeat: no-repeat;
  opacity: 0; /* 初期非表示 */
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  z-index: 1;
}
@media (max-width: 991px) {
  .fv_bg {
    background-size: 110%;
    background-position: 50% 45%;
  }
}
@media (max-width: 576px) {
  .fv_bg {
    background-size: 180%;
  }
}
.fv_item01, .fv_item02, .fv_item03 {
  z-index: 2; /* 背景より上に */
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
.fv_item01 {
  position: absolute;
  width: 120px;
  top: 30%;
  left: 10%;
  -webkit-animation-name: updown1;
          animation-name: updown1; /* アニメーション名の指定 */
  -webkit-animation-delay: 0;
          animation-delay: 0; /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 5s;
          animation-duration: 5s; /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@media (max-width: 991px) {
  .fv_item01 {
    width: 18%;
    top: 25%;
  }
}
@media (max-width: 576px) {
  .fv_item01 {
    width: 22%;
    top: 18%;
    left: 2%;
  }
}
@-webkit-keyframes updown1 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes updown1 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fv_item02 {
  position: absolute;
  width: 100px;
  top: 15%;
  left: 35%;
  -webkit-animation-name: updown2;
          animation-name: updown2; /* アニメーション名の指定 */
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s; /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 7s;
          animation-duration: 7s; /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out; /* アニメーションの動き指定*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@media (max-width: 991px) {
  .fv_item02 {
    width: 14%;
    top: 15%;
    left: 70%;
  }
}
@-webkit-keyframes updown2 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes updown2 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fv_item03 {
  position: absolute;
  width: 150px;
  bottom: 20%;
  right: 5%;
  -webkit-animation-name: updown3;
          animation-name: updown3; /* アニメーション名の指定 */
  -webkit-animation-delay: 1S;
          animation-delay: 1S; /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 3s;
          animation-duration: 3s; /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@media (max-width: 991px) {
  .fv_item03 {
    width: 20%;
    bottom: 30%;
  }
}
@media (max-width: 576px) {
  .fv_item03 {
    width: 25%;
    right: 3%;
    bottom: 25%;
  }
}
@-webkit-keyframes updown3 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes updown3 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fv_txt {
  position: absolute;
  bottom: 10%;
  left: 3%;
  font-weight: bold;
  line-height: 1.3;
  color: var(--main-color);
  z-index: 3;
}
@media (max-width: 576px) {
  .fv_txt {
    bottom: 5%;
  }
}
.fv_txt p {
  font-size: clamp(2rem, 0.846rem + 3.21vw, 3.25rem);
}
.fv_txt .char {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.fv_txt .char.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.fv_txt h1 {
  font-size: clamp(1.125rem, 0.682rem + 0.92vw, 1.375rem);
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
.fv_txt.show-h1 h1 {
  opacity: 1;
}

/* デフォルト状態（明るい背景時） */
#header img,
#header .nav_list a {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/* ヘッダーが暗背景エリアに入ったとき */
#header.dark-mode .nav_list a {
  color: #fff;
}
#header.dark-mode .nav_list a::after {
  background-color: #fff;
}
@media (max-width: 991px) {
  #header.dark-mode .nav_list a {
    color: var(--main-color);
  }
}
@media (max-width: 991px) {
  #header.dark-mode .hamburger_border {
    background-color: #fff;
  }
  #header.dark-mode .hamburger p small {
    color: #fff;
  }
}

.nav-open #header.dark-mode .hamburger_border {
  background-color: var(--main-color);
}

.nav-open #header.dark-mode p small {
  color: var(--main-color);
}

:root {
  --main-color: #002B63;
  --sub-color: #E3F3FF;
  --accent-color: #DF1B22;
  --hover: #d4c21f;
}

.privacy {
  margin-top: 300px;
}
@media (max-width: 767px) {
  .privacy {
    margin-top: 200px;
  }
}
.privacy h1 {
  text-align: center;
  font-size: clamp(1.125rem, 0.548rem + 1.6vw, 1.75rem);
}
.privacy h1 + p {
  padding-top: 30px;
}
.privacy_txt {
  margin-top: 30px;
}
.privacy_txt-item {
  padding-top: 1.5rem;
}
.privacy_txt dl dt {
  font-size: 18px;
  color: var(--main-color);
  font-weight: bold;
}
.privacy_info {
  padding-top: 50px;
  color: var(--main-color);
}
.privacy_info p:first-of-type {
  font-weight: bold;
}
.privacy_info a {
  color: var(--accent-color);
  text-decoration: underline;
}
.privacy + footer {
  background-color: var(--sub-color);
  padding: 30px 0 15px;
}

:root {
  --main-color: #002B63;
  --sub-color: #E3F3FF;
  --accent-color: #DF1B22;
  --hover: #d4c21f;
}

.thanks {
  position: relative;
  margin-top: 300px;
  width: 60%;
  height: 100vh;
}
@media (max-width: 767px) {
  .thanks {
    width: 90%;
    margin-top: 200px;
  }
}
.thanks h1 {
  text-align: center;
  font-size: clamp(1.125rem, 0.548rem + 1.6vw, 1.75rem);
  color: var(--main-color);
}
.thanks h1 + p {
  padding: 30px 0 1rem;
}
.thanks .btn-back {
  display: inline-block;
  margin-top: 50px;
  padding: 0.6em 1em;
  text-align: center;
  background: var(--main-color);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.thanks .btn-back:hover {
  background: var(--hover);
}
.thanks + footer {
  position: absolute;
  bottom: 15px;
  right: 0;
  background-color: var(--sub-color);
}/*# sourceMappingURL=style.css.map */