@charset "UTF-8";
/**フォントサイズ*********/
/**カラー*********/
/**max-width********/
/**padding*********/
/**margin*********/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  font-family: "YuMincho", "YuMin-Medium", "Ryo Gothic PlusN", sans-serif;
  background: #ffffff;
  color: #1A1A1A;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

main {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #1A1A1A;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  height: 120px;
  background: #ffffff;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header {
    height: 70px;
  }
}
@media (max-width: 767px) {
  .header {
    height: 55px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  width: 100%;
  margin: auto;
  padding: 0 6.94444vw 0 6.94444vw;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .header-logo {
    width: 80px;
  }
}
@media (max-width: 767px) {
  .header-logo {
    width: 60px;
  }
}

.header-menu {
  display: flex;
}
@media (max-width: 767px) {
  .header-menu {
    display: none;
  }
}

.header-list:not(:first-child) {
  margin-left: 40px;
}

.menu-list-sp {
  display: none;
}
@media (max-width: 767px) {
  .menu-list-sp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}

.drawer {
  display: none; /* デフォルトでは非表示 */
}
@media (max-width: 767px) {
  .drawer {
    position: fixed; /* absoluteからfixedに変更 */
    right: 0;
    top: 55px;
    height: 100dvh;
    background-color: #ffffff;
    color: #2D2D32;
    width: 66.666667vw;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
    transform: translateX(100%); /* 100%に調整 */
    z-index: 299;
    transition: transform 0.8s ease;
  }
  .drawer.nav-active {
    display: block; /* ハンバーガーメニュークリック時に表示 */
    transform: translateX(0); /* 表示位置を調整 */
  }
}

.drawer-item {
  position: relative;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.0016em;
}
.drawer-item:not(:first-child) {
  margin-top: 40px;
}

.middle {
  padding: 82px 0 0 105px;
  padding: min(10.6770833vw, 82px) 0 0 min(7.55208333vw, 58px);
}

.burger {
  display: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .burger {
    display: block;
    margin-left: 21px;
    z-index: 99;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .burger {
    display: none;
  }
}

.drawer-background {
  position: fixed;
  top: 55px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 49, 124, 0.5019607843); /* 16進数で50%透明の #00317C */
  z-index: 298;
  display: none;
}
.drawer-background.nav-active {
  display: block;
}

.nav-active {
  transform: translateY(0%) !important;
}

body {
  overflow-x: hidden;
}

@keyframes navLinksFade {
  0% {
    opacity: 0;
    transform: translateY(150px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(405deg) translate(-5px, -6px);
}

.burger-text {
  font-size: 0.375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.00012em;
  color: #64629D;
}

.line1 {
  width: 28px;
  height: 1px;
  background-color: #393327;
  margin-top: 6px;
  transition: 0.5s ease;
  border-radius: 50px;
}

.line2 {
  width: 22px;
  height: 1px;
  background-color: #393327;
  margin-top: 6px;
  transition: 0.5s ease;
  border-radius: 50px;
}

.line3 {
  width: 15px;
  height: 1px;
  background-color: #393327;
  margin-top: 6px;
  transition: 0.5s ease;
  border-radius: 50px;
}

.toggle .line3 {
  width: 28px; /* 新しい幅 */
  transform: rotate(405deg) translate(-3px, -5px); /* 新しい変形 */
}

.header-link {
  position: relative;
  font-size: min(1.1111vw, 16px);
}
.header-link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: #A72536;
  bottom: -5px;
  left: 0;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
.header-link:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

/*-------video------*/
.video-container {
  position: relative;
  width: 100%; /* 画面幅いっぱいに */
  height: 500px; /* 指定の高さ */
  overflow: hidden; /* はみ出した部分を隠す */
  margin-top: 120px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .video-container {
    margin-top: 70px;
  }
}
@media (max-width: 767px) {
  .video-container {
    width: 100%;
    margin-top: 55px;
  }
}

.video-container video {
  width: 100%; /* コンテナの幅いっぱいに */
  height: 500px; /* 高さ固定 */
  object-fit: cover; /* アスペクト比を維持しつつ、コンテナを埋める */
}

.video-contents {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: min(1.0416667vw, 15px) min(2.083333vw, 30px);
  border: 0px solid #ffffff; /* 最初は線を非表示に */
}
@media (max-width: 767px) {
  .video-contents {
    width: 70%;
  }
}

/* 文字を1文字ずつ分割するためのスタイル */
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

.video-contents__tit {
  color: #ffffff;
  font-size: min(2.77778vw, 40px);
  font-family: hot-gyoshokk, sans-serif;
}
@media (max-width: 767px) {
  .video-contents__tit {
    font-size: min(5.859375vw, 45px);
  }
}

.video-contents-__text {
  color: #ffffff;
  font-size: min(1.1111vw, 16px);
}
@media (max-width: 767px) {
  .video-contents-__text {
    font-size: min(2.734375vw, 21px);
  }
}

.footer {
  padding: 48px 0 40px 0;
}
@media (max-width: 767px) {
  .footer {
    padding: 32px 0 28px 0;
  }
}

.footer-contents {
  display: flex;
}
@media (max-width: 767px) {
  .footer-contents {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .footer-logo {
    margin: auto;
    width: 76px;
    height: 54px;
  }
}

.footer-wrapper {
  margin-left: auto;
}
@media (max-width: 767px) {
  .footer-wrapper {
    margin-left: 0px;
    margin-top: 30px;
  }
}

.footer-menu {
  display: flex;
}
@media (max-width: 767px) {
  .footer-menu {
    flex-direction: column;
    text-align: center;
  }
}

.footer-menu__list {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.0014em;
  font-size: min(0.9722vw, 14px);
}
.footer-menu__list:not(:first-child) {
  margin-left: 32px;
}
@media (max-width: 767px) {
  .footer-menu__list:not(:first-child) {
    margin-left: 0;
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .footer-menu__list {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.0016em;
  }
}

.footer-sns {
  margin-top: 40px;
  display: flex;
  justify-content: end;
}
@media (max-width: 767px) {
  .footer-sns {
    justify-content: center;
    margin-top: 32px;
  }
}

.footer-sns__item:not(:first-child) {
  margin-left: 24px;
}

.footer-bottom {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer-bottom {
    margin-top: 40px;
    flex-direction: column;
  }
}

.footer-bottom-text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.0012em;
  font-size: min(0.8333vw, 12px);
}
@media (max-width: 767px) {
  .footer-bottom-text {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.00024em;
  }
}

.footer-copyright {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.0012em;
  font-size: min(0.8333vw, 12px);
}
@media (max-width: 767px) {
  .footer-copyright {
    margin-top: 40px;
  }
}

.inner {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: auto;
  padding: 0 6.94444vw 0 6.94444vw;
}

.business {
  position: relative;
  margin-top: min(6.944444vw, 100px);
}
@media (max-width: 767px) {
  .business {
    margin-top: 50px;
  }
}

.sec-tit {
  position: relative;
  font-size: min(1.66667vw, 28px);
}
.sec-tit::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: min(6.94444vw, 100px);
  height: 3px;
  background: #A72536;
}
@media (max-width: 767px) {
  .sec-tit::before {
    width: min(13.0208333vw, 100px);
    height: 2px;
    bottom: -3px;
  }
}
@media (max-width: 767px) {
  .sec-tit {
    font-size: min(3.6458333vw, 28px);
  }
}

.business-text {
  position: relative;
  z-index: 1;
  font-size: min(1.66667vw, 24px);
  max-width: 900px;
  width: 100%;
  margin: 30px auto 0 auto;
}
@media (max-width: 767px) {
  .business-text {
    font-size: min(2.9vw, 24px);
    line-height: 1.8;
  }
}

.sp-none {
  display: block;
}
@media screen and (max-width: 550px) {
  .sp-none {
    display: none;
  }
}

.background-svg {
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: auto;
  z-index: -1; /* コンテンツの背後に表示 */
  pointer-events: none; /* クリックイベントを通過させる */
  overflow: visible; /* ← 追加 */
  transform: translateY(-66px); /* 追加: 必要に応じて微調整 */
}
@media (max-width: 767px) {
  .background-svg {
    transform: translateY(22px); /* 追加: 必要に応じて微調整 */
  }
}

.ribbon-path {
  transition: stroke-dashoffset 4s ease-in-out;
}

.animate-ribbon {
  animation: draw-ribbon 4s ease-in-out forwards;
}

.trigger {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 40vh;
}
@media screen and (max-width: 1000px) {
  .trigger {
    height: 30vh;
  }
}
@media (max-width: 767px) {
  .trigger {
    height: 3vh;
  }
}

.business-contents {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .business-contents {
    flex-direction: column;
    align-items: center;
  }
}

.business-items {
  width: 50%;
  padding: 10px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.business-items:not(:first-child) {
  margin-left: 30px;
}
@media (max-width: 767px) {
  .business-items:not(:first-child) {
    margin-left: 0px;
  }
}
@media (max-width: 767px) {
  .business-items {
    width: 60%;
    margin-top: 50px;
  }
}
@media screen and (max-width: 500px) {
  .business-items {
    width: 100%;
  }
}

.business-items__tit {
  text-align: center;
  font-size: min(1.66667vw, 24px);
}
@media (max-width: 767px) {
  .business-items__tit {
    font-size: 14px;
  }
}

.business-item {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 767px) {
  .business-item {
    flex-direction: column-reverse;
  }
}

.business-item__text {
  width: min(17.36vw, 250px);
  font-size: min(1.11111vw, 16px);
}
@media (max-width: 767px) {
  .business-item__text {
    font-size: 12px;
    width: 100%;
    margin-top: 20px;
  }
}

.business-right {
  width: min(13.8888vw, 200px);
}
@media (max-width: 767px) {
  .business-right {
    width: 100%;
    margin-top: 10px;
  }
  .business-right img {
    height: auto;
    max-height: 133px;
    width: 100%;
    object-fit: contain;
  }
}

.strong {
  margin-top: 100px;
  padding: 20px 0;
  background: rgba(217, 217, 217, 0.2);
}
@media (max-width: 767px) {
  .strong {
    padding: 30px 0;
  }
}

.sec-sub-tit {
  text-align: center;
  font-size: min(1.66667vw, 24px);
}
@media (max-width: 767px) {
  .sec-sub-tit {
    font-size: 20px;
  }
}

.strong-contents {
  display: flex;
  justify-content: center;
  max-width: 800px;
  width: 100%;
  margin: 30px auto 0 auto;
}
@media (max-width: 767px) {
  .strong-contents {
    flex-direction: column;
    text-align: center;
  }
}

.strong-contents__items:not(:first-child) {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .strong-contents__items:not(:first-child) {
    margin-left: 0px;
    margin-top: 20px;
  }
}

.strong-picture {
  border-radius: 50%;
}

.strong-text {
  margin-top: 10px;
}

.company {
  margin-top: 100px;
  padding-left: 30px;
  padding-right: 30px;
}

.sec-tits {
  position: relative;
  font-size: min(1.66667vw, 24px);
  text-align: center;
}
.sec-tits::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: min(6.94444vw, 100px);
  height: 3px;
  background: #A72536;
}
@media (max-width: 767px) {
  .sec-tits {
    font-size: 20px;
  }
}

.l-inner {
  max-width: 700px;
  width: 100%;
  margin: 40px auto 0 auto;
}
@media (max-width: 767px) {
  .l-inner {
    margin-top: 50px;
  }
}

.company-items {
  display: grid;
  grid-template-columns: auto 1fr; /* 左側（dt）を内容に合わせて、右側（dd）を残りのスペースに */
  gap: 20px; /* 項目間の隙間 */
  margin-bottom: 10px; /* 項目ごとの下マージン */
  align-items: start; /* 上部揃え */
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 10px;
}

.company-items__tit {
  width: 120px; /* DTの幅を固定 - 必要に応じて調整 */
}

.contact {
  margin-top: 100px;
  background: rgba(0, 49, 124, 0.1019607843);
  padding: 50px 30px;
}

.contact-tit {
  text-align: center;
  font-size: min(1.66667vw, 24px);
  color: #00317C;
}
@media (max-width: 767px) {
  .contact-tit {
    font-size: 20px;
  }
}

#contactForm {
  max-width: 700px;
  width: 100%;
  margin: 30px auto 0 auto;
}

::placeholder {
  color: #cccccc; /* プレースホルダーテキストの色を薄く設定 */
}

.required {
  background-color: #A72536;
  color: #ffffff;
  padding: 2px 5px;
  margin-left: 5px;
  font-size: 0.8em;
  border-radius: 3px;
}

.name-input {
  width: 60%; /* 名前系フォームの幅を短く設定 */
}

.form-group {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .form-group {
    flex-direction: column;
  }
}

.form-label {
  width: 200px;
  padding-top: 10px;
  font-weight: bold;
}

.form-input {
  flex-grow: 1;
}
@media (max-width: 767px) {
  .form-input {
    width: 100%;
    margin-top: 5px;
  }
}

input[type=text],
input[type=email],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

input[type=tel],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

textarea {
  height: 150px;
  resize: vertical;
}

.error-message {
  color: #A72536;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.submit-button {
  background-color: #3a5a7d;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  margin: 20px auto 0;
}

.submit-button:hover {
  background-color: #2c4561;
}

.error-container {
  width: 100%;
  max-width: 800px;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.error-list {
  color: #A72536;
  margin-bottom: 20px;
}

.back-button {
  background-color: #3a5a7d;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  margin: 20px auto 0;
  text-decoration: none;
  text-align: center;
  width: 200px;
}

.thank-you-container {
  width: 100%;
  max-width: 800px;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.home-button {
  background-color: #3a5a7d;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.copyright {
  padding: 10px 0;
  background: #00317C;
}

.copyright-text {
  text-align: center;
  font-size: min(1.11111vw, 16px);
  color: #ffffff;
}
@media (max-width: 767px) {
  .copyright-text {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */