@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Barlow:wght@600;700&family=Noto+Sans+JP:wght@100..900&display=swap";

html,
body {
  background-color: var(--body-bg);
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

@keyframes opa1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

:root {
  --body-bg: #ffffff;
  --common-text: #6e6e6e;
  --text-sub-gray: #666666;
  --button-bg-brown: #e8e6df;
  --primary_blue: #0e4e9a;
  --primary_blue__50: rgb(14 78 154 / 50%);
  --white: #ffffff;
  --header-height: 73px;
  --light-gray: #e6e6e6;
}
@media only screen and (max-width: 830px) {
  :root {
    --header-height: 7.5vw;
  }
}
@media only screen and (max-width: 486px) {
  :root {
    --header-height: 12.5vw;
  }
}

a[data-astro-cid-nfuxyiyp] {
  width: 10vw;
  max-width: 65px;
  aspect-ratio: 1/1;
  position: fixed;
  z-index: 998;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
a[data-astro-cid-nfuxyiyp] img[data-astro-cid-nfuxyiyp] {
  width: 100%;
  flex-basis: 100%;
  height: 100%;
}
@media only screen and (max-width: 486px) {
  a[data-astro-cid-nfuxyiyp] {
    bottom: 2.5vw;
    right: 2.5vw;
  }
}

.fixed[data-astro-cid-3ef6ksr2] {
  position: fixed;
  top: var(--scroll-y);
  left: 0;
  width: 100%;
  height: 110%;
  overflow: hidden;
}
button[data-astro-cid-3ef6ksr2],
[data-astro-cid-3ef6ksr2][role="button"] {
  cursor: pointer;
}
header[data-astro-cid-3ef6ksr2] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  position: fixed;
  z-index: 999;
  width: 100%;
  height: var(--header-height);
  padding: 0 1em;
}
@media only screen and (max-width: 830px) {
  header[data-astro-cid-3ef6ksr2] {
    gap: 2.5vw;
    padding: 0 2.5vw;
  }
}
.header_logo[data-astro-cid-3ef6ksr2] {
  height: 80%;
  width: 150px;
  margin-left: 1.5em;
  transition: opacity 0.3s ease-in-out;
}
.header_logo[data-astro-cid-3ef6ksr2] img[data-astro-cid-3ef6ksr2] {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
@media only screen and (max-width: 830px) {
  .header_logo[data-astro-cid-3ef6ksr2] {
    margin-left: 0;
  }
}
@media only screen and (max-width: 486px) {
  .header_logo[data-astro-cid-3ef6ksr2] {
    margin-left: 0;
    width: 30vw;
  }
}

.header_logo[data-astro-cid-3ef6ksr2]:hover {
  opacity: 0.5;
}

nav[data-astro-cid-3ef6ksr2] {
  display: block;
}

ul[data-astro-cid-3ef6ksr2] {
  display: flex;
  gap: 2em;
  align-items: center;
}

@media screen and (max-width: 1241px) and (orientation: portrait) {
  ul[data-astro-cid-3ef6ksr2] {
    justify-content: flex-end;
  }
}

@media only screen and (max-width: 1025px) {
  ul[data-astro-cid-3ef6ksr2] li[data-astro-cid-3ef6ksr2]:not(:last-of-type) {
    display: none;
  }
}

@media screen and (max-width: 1241px) and (orientation: portrait) {
  ul[data-astro-cid-3ef6ksr2] li[data-astro-cid-3ef6ksr2]:not(:last-of-type) {
    display: none;
  }
}

ul[data-astro-cid-3ef6ksr2] a[data-astro-cid-3ef6ksr2] {
  color: #0e4e9a;
  font-weight: 700;
  font-size: 1em;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25em;
  white-space: nowrap;
}

.dropmenu {
  list-style-type: none;
}

.dropmenu:before,
.dropmenu:after {
  content: "";
  display: table;
}

.dropmenu:after {
  clear: both;
}

.dropmenu li {
  position: relative;
  margin: 0;
  padding: 0;
  text-align: center;
}

.dropmenu li a {
  display: block;
  margin: 0;
  background: #ffffff;
  color: #333333;
  font-size: 16px;
  /* line-height: 40px; */
  padding: 10px 4px;
  text-decoration: none;
}

.dropmenu li ul {
  display: none;
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  width: 140px;
  animation: opa1 0.5s 0.1s both;
}

.dropmenu li:hover ul {
  display: block;
}
nav[data-astro-cid-3ef6ksr2] ul[data-astro-cid-3ef6ksr2] ul {
  position: absolute;
  z-index: 100;
}
nav#gnav .mainNav.dropmenu li ul li {
  width: 100%;
  margin: 0;
}

.dropmenu li ul li a {
  padding: 10px 20px;
  border-top: 1px solid #eeeeee;
  background: #ffffff;
  text-align: left;
}
.dropmenu li ul li a:hover {
  opacity: 1;
  color: var(--primary_blue);
  background: #ecf3fd;
}
nav#gnav .dropmenu li:hover > a {
  background: #ffffff;
}
#gnav .dropmenu li a:hover {
  background: #ffffff;
}

ul[data-astro-cid-3ef6ksr2] .navListicon:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url(/common/img/homepage/icon_arrow_down_blue.svg);
  background-size: contain;
}

ul[data-astro-cid-ttztgwaq] li[data-astro-cid-ttztgwaq] .dropdowns:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'?%3e%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cmask%20id='mask0_15_342'%20style='mask-type:alpha'%20maskUnits='userSpaceOnUse'%20x='0'%20y='0'%20width='16'%20height='16'%3e%3crect%20width='16'%20height='16'%20fill='%23D9D9D9'%20/%3e%3c/mask%3e%3cg%20mask='url(%23mask0_15_342)'%3e%3cpath%20d='M8%2010.2667L4%206.26668L4.93333%205.33334L8%208.40001L11.0667%205.33334L12%206.26668L8%2010.2667Z'%20fill='%230E4E9A'%20/%3e%3c/g%3e%3c/svg%3e");
  background-size: contain;
}

@media only screen and (max-width: 486px) {
  ul[data-astro-cid-3ef6ksr2] a[data-astro-cid-3ef6ksr2] {
    font-size: 0.75em;
  }
}

ul[data-astro-cid-3ef6ksr2] a[data-astro-cid-3ef6ksr2]:before {
  content: "";
  position: absolute;
  width: 100%;
  bottom: -0.25em;
  left: 0;
  border-top: 1px solid #0e4e9a;
  transform-origin: center center;
  transform: scaleX(0);
  transition: transform 0.2s ease-in-out;
}

ul[data-astro-cid-3ef6ksr2] a[data-astro-cid-3ef6ksr2]:hover:before {
  transform: scaleX(1);
}

ul[data-astro-cid-3ef6ksr2] a[data-astro-cid-3ef6ksr2].contact {
  background-color: #cc3a26;
  border: 1px solid #cc3a26;
  width: 12.5em;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 0.5em 1.5em;
  border-radius: 999px;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 1025px) {
  ul[data-astro-cid-3ef6ksr2] {
    justify-content: space-between;
  }

  ul[data-astro-cid-3ef6ksr2] li[data-astro-cid-3ef6ksr2] {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
  }

  ul[data-astro-cid-3ef6ksr2] li[data-astro-cid-3ef6ksr2]:last-child {
    flex: 0 1 auto;
    display: flex;
    justify-content: flex-end;
  }
}

ul[data-astro-cid-3ef6ksr2] a[data-astro-cid-3ef6ksr2].contact:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url(images/icon/icon_open_in_new_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.2s ease-in-out;
}
ul[data-astro-cid-3ef6ksr2] a[data-astro-cid-3ef6ksr2].contact:before {
  display: none;
}
ul[data-astro-cid-3ef6ksr2] a[data-astro-cid-3ef6ksr2].contact:hover {
  gap: 0.3em;
}
.mokuzou-logo[data-astro-cid-3ef6ksr2] {
  width: 150px;
  height: 80%;
}
.mokuzou-logo[data-astro-cid-3ef6ksr2] img[data-astro-cid-3ef6ksr2] {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 1025px) {
  .mokuzou-logo[data-astro-cid-3ef6ksr2] {
    display: none;
  }
}
@media screen and (max-width: 1241px) and (orientation: portrait) {
  .mokuzou-logo[data-astro-cid-3ef6ksr2] {
    display: none;
  }
}
.nav_open_btn[data-astro-cid-3ef6ksr2] {
  display: none;
  transition: opacity 0.3s ease-in-out;
}
@media only screen and (max-width: 1025px) {
  .nav_open_btn[data-astro-cid-3ef6ksr2] {
    display: block;
    height: 70%;
    aspect-ratio: 1/1;
  }
  .nav_open_btn[data-astro-cid-3ef6ksr2] img[data-astro-cid-3ef6ksr2] {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1241px) and (orientation: portrait) {
  .nav_open_btn[data-astro-cid-3ef6ksr2] {
    display: block;
    height: 70%;
    aspect-ratio: 1/1;
  }
  .nav_open_btn[data-astro-cid-3ef6ksr2] img[data-astro-cid-3ef6ksr2] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }
}
.nav_open_btn[data-astro-cid-3ef6ksr2]:hover {
  opacity: 0.5;
}
*:where(
  :not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)
) {
  all: unset;
  display: revert;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
a,
button {
  cursor: revert;
}
ol,
ul,
menu {
  list-style: none;
}
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}
table {
  border-collapse: collapse;
}
input,
textarea {
  -webkit-user-select: auto;
}
textarea {
  white-space: revert;
}
meter {
  -webkit-appearance: revert;
  appearance: revert;
}
:where(pre) {
  all: revert;
}
::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable="true"]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

.fixed[data-astro-cid-qeyiiqc6] {
  position: fixed;
  top: var(--scroll-y);
  left: 0;
  width: 100%;
  height: 110%;
  overflow: hidden;
}

button[data-astro-cid-qeyiiqc6],
[data-astro-cid-qeyiiqc6][role="button"] {
  cursor: pointer;
}

#logo_vertical[data-astro-cid-qeyiiqc6] {
  margin: 0 auto;
  display: block;
  width: 80%;
}

@media screen and (max-width: 1241px) and (orientation: portrait) {
  #logo_vertical[data-astro-cid-qeyiiqc6] {
    display: none;
  }
}

#logo_horizontal[data-astro-cid-qeyiiqc6] {
  margin: 0 auto;
  display: block;
  width: 60%;
  display: none;
}

@media screen and (max-width: 1241px) and (orientation: portrait) {
  #logo_horizontal[data-astro-cid-qeyiiqc6] {
    display: block;
  }
}

.fixed[data-astro-cid-oh7sfoyt] {
  position: fixed;
  top: var(--scroll-y);
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

button[data-astro-cid-oh7sfoyt],
[data-astro-cid-oh7sfoyt][role="button"] {
  cursor: pointer;
}

.main {
  padding-top: 50px;
}

section[data-astro-cid-oh7sfoyt] {
  width: 100%;
  background: var(--white);
  position: relative;
  z-index: 1;
}

figure[data-astro-cid-oh7sfoyt] {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  overflow: visible;
}

figure[data-astro-cid-oh7sfoyt] img[data-astro-cid-oh7sfoyt] {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

h1[data-astro-cid-oh7sfoyt] {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

div[data-astro-cid-oh7sfoyt] {
  display: flex;
  justify-content: center;
  align-items: center;
}

div[data-astro-cid-oh7sfoyt] img[data-astro-cid-oh7sfoyt] {
  width: 50%;
  height: 80%;
  max-width: 380px;
}

div[data-astro-cid-oh7sfoyt] .horizontal[data-astro-cid-oh7sfoyt] {
  display: none;
}

@media screen and (max-width: 1241px) and (orientation: portrait) {
  div[data-astro-cid-oh7sfoyt] .horizontal[data-astro-cid-oh7sfoyt] {
    display: block;
    width: 60%;
  }

  div[data-astro-cid-oh7sfoyt]
    .horizontal[data-astro-cid-oh7sfoyt]
    img[data-astro-cid-oh7sfoyt] {
    width: 70%;
    height: 100%;
    max-width: 380px;
  }
}

div[data-astro-cid-oh7sfoyt] .vertical[data-astro-cid-oh7sfoyt] {
  display: block;
}

@media screen and (max-width: 1241px) and (orientation: portrait) {
  div[data-astro-cid-oh7sfoyt] .vertical[data-astro-cid-oh7sfoyt] {
    display: none;
  }
}

.kv-section {
  width: 100%;
}

.banner {
  margin: 0;
}

.banner img {
  display: block;
  width: 100%;
  height: auto;
}

.banner-copy {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 20px;
  text-align: center;
  font-size: clamp(28px, 2vw, 54px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #333;
}

.banner-copy span {
  color: #d54832;
}

@media screen and (max-width: 830px) {
  .banner-copy {
    margin-top: 18px;
    padding: 0 24px;
    font-size: 1.3em;
    line-height: 1.5;
    letter-spacing: 0.01em;
  }
}

.fixed[data-astro-cid-k7dvyszk] {
  position: fixed;
  top: var(--scroll-y);
  left: 0;
  width: 100%;
  height: 110%;
  overflow: hidden;
}

button[data-astro-cid-k7dvyszk],
[data-astro-cid-k7dvyszk][role="button"] {
  cursor: pointer;
}

.content[data-astro-cid-k7dvyszk] {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 auto;
  width: 100%;
}

.content[data-astro-cid-k7dvyszk]:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  background-color: var(--white);
  height: 45%;
}

@media screen and (max-width: 1241px) and (orientation: portrait) {
  .content[data-astro-cid-k7dvyszk]:before {
    height: 3em;
  }
}

.content[data-astro-cid-k7dvyszk] article[data-astro-cid-k7dvyszk] {
  width: 90vw;
  max-width: 1440px;
  margin: 0 auto;
  display: block;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 430px) {
  .content[data-astro-cid-k7dvyszk] article[data-astro-cid-k7dvyszk] {
    width: 100vw;
  }
}

.content[data-astro-cid-k7dvyszk] ul[data-astro-cid-k7dvyszk] {
  width: 70%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 70px 0 0;
  gap: 2em;
  counter-reset: number 0;
}

@media screen and (max-width: 1241px) and (orientation: portrait) {
  .content[data-astro-cid-k7dvyszk] ul[data-astro-cid-k7dvyszk] {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 1em;
    max-width: 85%;
  }
}

@media only screen and (max-width: 0px) {
  .content[data-astro-cid-k7dvyszk] ul[data-astro-cid-k7dvyszk] {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 1em;
    max-width: 55%;
    max-width: 70%;
  }
}

@media only screen and (max-width: 486px) {
  .content[data-astro-cid-k7dvyszk] ul[data-astro-cid-k7dvyszk] {
    width: 80%;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 1em;
    max-width: 85%;
  }
}

.content[data-astro-cid-k7dvyszk] li[data-astro-cid-k7dvyszk] {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0.5em;
  min-height: 250px;
  filter: drop-shadow(0.5em 0.5em 0.5em rgba(14, 78, 154, 0.25));
  overflow: hidden;
  height: 100%;
}

.content[data-astro-cid-k7dvyszk]
  li[data-astro-cid-k7dvyszk]
  div[data-astro-cid-k7dvyszk] {
  flex-grow: 1;
}

.content[data-astro-cid-k7dvyszk]
  li[data-astro-cid-k7dvyszk]
  figure[data-astro-cid-k7dvyszk] {
  min-width: 0;
  width: 100%;
  grid-row: 2/3;
  aspect-ratio: 4/3;
  position: relative;
}

.content[data-astro-cid-k7dvyszk]
  li[data-astro-cid-k7dvyszk]
  figure[data-astro-cid-k7dvyszk]
  img[data-astro-cid-k7dvyszk] {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content[data-astro-cid-k7dvyszk]
  li[data-astro-cid-k7dvyszk]
  div[data-astro-cid-k7dvyszk] {
  grid-row: 1/2;
  padding: 1.5em 1em;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0.5em;
  background-color: var(--white);
}

@media only screen and (max-width: 1199px) {
  .content[data-astro-cid-k7dvyszk]
    li[data-astro-cid-k7dvyszk]
    figure[data-astro-cid-k7dvyszk]:after {
    font-size: 500%;
  }
}

@media screen and (max-width: 1241px) and (orientation: portrait) {
  .content[data-astro-cid-k7dvyszk]
    li[data-astro-cid-k7dvyszk]
    figure[data-astro-cid-k7dvyszk]:after {
    font-size: 600%;
  }
}

@media screen and (max-width: 1241px) and (orientation: portrait) {
  .content[data-astro-cid-k7dvyszk]
    li[data-astro-cid-k7dvyszk]
    div[data-astro-cid-k7dvyszk] {
    padding: 1em 1em 1.5em;
  }
}

.content[data-astro-cid-k7dvyszk]
  li[data-astro-cid-k7dvyszk]
  div[data-astro-cid-k7dvyszk]
  h3[data-astro-cid-k7dvyszk] {
  display: block;
  font-size: 1em;
  color: var(--primary_blue);
  letter-spacing: 0.02em;
}

.content[data-astro-cid-k7dvyszk]
  li[data-astro-cid-k7dvyszk]
  div[data-astro-cid-k7dvyszk]
  h3[data-astro-cid-k7dvyszk]
  em[data-astro-cid-k7dvyszk] {
  font-size: 1.5em;
}

@media only screen and (max-width: 486px) and (max-width: 486px) {
  .content[data-astro-cid-k7dvyszk]
    li[data-astro-cid-k7dvyszk]
    div[data-astro-cid-k7dvyszk]
    h3[data-astro-cid-k7dvyszk] {
    font-size: 16px;
    font-size: 4.1152263374vw;
  }
}

@media only screen and (max-width: 486px) and (min-width: 487px) and (max-width: 768px) {
  .content[data-astro-cid-k7dvyszk]
    li[data-astro-cid-k7dvyszk]
    div[data-astro-cid-k7dvyszk]
    h3[data-astro-cid-k7dvyszk] {
    font-size: 16px;
    font-size: 2.0833333333vw;
  }
}

@media only screen and (max-width: 486px) and (min-width: 769px) {
  .content[data-astro-cid-k7dvyszk]
    li[data-astro-cid-k7dvyszk]
    div[data-astro-cid-k7dvyszk]
    h3[data-astro-cid-k7dvyszk] {
    font-size: 16px;
  }
}

.content[data-astro-cid-k7dvyszk]
  li[data-astro-cid-k7dvyszk]
  div[data-astro-cid-k7dvyszk]
  p[data-astro-cid-k7dvyszk] {
  text-align: justify;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  border-left: 2px solid var(--primary_blue);
  padding-left: 0.5em;
}

@media only screen and (max-width: 486px) and (max-width: 486px) {
  .content[data-astro-cid-k7dvyszk]
    li[data-astro-cid-k7dvyszk]
    div[data-astro-cid-k7dvyszk]
    p[data-astro-cid-k7dvyszk] {
    font-size: 16px;
    font-size: 4.1152263374vw;
  }
}

@media only screen and (max-width: 486px) and (min-width: 487px) and (max-width: 768px) {
  .content[data-astro-cid-k7dvyszk]
    li[data-astro-cid-k7dvyszk]
    div[data-astro-cid-k7dvyszk]
    p[data-astro-cid-k7dvyszk] {
    font-size: 16px;
    font-size: 2.0833333333vw;
  }
}

@media only screen and (max-width: 486px) and (min-width: 769px) {
  .content[data-astro-cid-k7dvyszk]
    li[data-astro-cid-k7dvyszk]
    div[data-astro-cid-k7dvyszk]
    p[data-astro-cid-k7dvyszk] {
    font-size: 16px;
  }
}

@media screen and (max-width: 1241px) and (orientation: portrait) {
  .content[data-astro-cid-k7dvyszk]
    li[data-astro-cid-k7dvyszk]
    div[data-astro-cid-k7dvyszk]
    p[data-astro-cid-k7dvyszk] {
    border-left: 0;
    padding-left: 0;
    line-height: 1.5;
  }
}

.fixed[data-astro-cid-utstonhj] {
  position: fixed;
  top: var(--scroll-y);
  left: 0;
  width: 100%;
  height: 110%;
  overflow: hidden;
}

button[data-astro-cid-utstonhj],
[data-astro-cid-utstonhj][role="button"] {
  cursor: pointer;
}

section[data-astro-cid-utstonhj] {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
  padding-bottom: 3em;
}

.eng[data-astro-cid-utstonhj] {
  position: absolute;
  font-family: Barlow, sans-serif;
  font-weight: 700;
  font-size: 8.75em;
  letter-spacing: 0.02em;
  color: var(--primary_blue);
  opacity: 0.1;
  display: flex;
  gap: 0.5em;
  width: 100%;
  height: 8.75em;
  overflow: hidden;
}

@media only screen and (max-width: 486px) {
  .eng[data-astro-cid-utstonhj] {
    height: 2.5em;
  }
}

@media only screen and (max-width: 486px) and (max-width: 486px) {
  .eng[data-astro-cid-utstonhj] {
    font-size: 40px;
    font-size: 10.2880658436vw;
  }
}

@media only screen and (max-width: 486px) and (min-width: 487px) and (max-width: 768px) {
  .eng[data-astro-cid-utstonhj] {
    font-size: 40px;
    font-size: 5.2083333333vw;
  }
}

@media only screen and (max-width: 486px) and (min-width: 769px) {
  .eng[data-astro-cid-utstonhj] {
    font-size: 40px;
  }
}

.eng[data-astro-cid-utstonhj] span[data-astro-cid-utstonhj] {
  flex: 0 0 auto;
  white-space: nowrap;
  overflow: hidden;
}

.eng[data-astro-cid-utstonhj] span[data-astro-cid-utstonhj]:nth-of-type(odd) {
  padding-left: 1em;
  padding-right: 1em;
  animation: loop 50s -25s linear infinite;
}

.eng[data-astro-cid-utstonhj] span[data-astro-cid-utstonhj]:nth-of-type(2n) {
  padding-right: 1em;
  padding-left: 1em;
  animation: loop2 50s linear infinite;
}

@keyframes loop {
  0% {
    transform: translate(100%);
  }
  to {
    transform: translate(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translate(0);
  }
  to {
    transform: translate(-200%);
  }
}

div[data-astro-cid-utstonhj].header {
  margin: 0 auto;
  display: block;
  display: flex;
  justify-content: center;
}

div[data-astro-cid-utstonhj].header .header__inner[data-astro-cid-utstonhj] {
  width: 90vw;
  max-width: 1200px;
  margin: 0 auto 1.5em;
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  position: relative;
  z-index: 1;
  padding-top: 2%;
}

@media only screen and (max-width: 1275px) {
  div[data-astro-cid-utstonhj].header .header__inner[data-astro-cid-utstonhj] {
    padding-top: 6vw;
  }
}

div[data-astro-cid-utstonhj].header h1[data-astro-cid-utstonhj] {
  display: block;
  color: #0e4e9a;
  font-size: 3.25em;
  display: flex;
  flex-direction: column;
  font-feature-settings: "palt";
  line-height: 1.5;
  text-shadow: 2px 2px 4px #9f9f9f;
}

.highlight {
  color: #cc3a26;
  font-size: larger;
  font-weight: bold;
  text-shadow: 2px 2px 4px #9f9f9f;
}

div[data-astro-cid-utstonhj].header h2[data-astro-cid-utstonhj] {
  display: block;
  position: relative;
  color: #cc3a26;
  font-size: 2em;
  margin: 1em;
  display: flex;
  flex-direction: column;
  font-feature-settings: "palt";
  line-height: 1.5;
  padding-left: 20px;
  font-weight: bolder;
}

div[data-astro-cid-utstonhj].header h2[data-astro-cid-utstonhj]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 15px;
  margin: 8px 0;
  background-color: #cc3a26;
}

div[data-astro-cid-utstonhj].header
  h2[data-astro-cid-utstonhj]
  em[data-astro-cid-utstonhj] {
  font-weight: 700;
}

@media only screen and (max-width: 1199px) {
  div[data-astro-cid-utstonhj].header h1[data-astro-cid-utstonhj] {
    font-size: 2em;
  }
}

@media only screen and (max-width: 1199px) {
  div[data-astro-cid-utstonhj].header h2[data-astro-cid-utstonhj] {
    font-size: 2em;
  }
}

@media only screen and (max-width: 1199px) {
  div[data-astro-cid-utstonhj].header h2[data-astro-cid-utstonhj] {
    font-size: 2em;
  }
}

@media only screen and (max-width: 480px) {
  div[data-astro-cid-utstonhj].header h2[data-astro-cid-utstonhj] {
    margin-left: -10px;
    font-size: 1.6em;
  }
}

@media only screen and (max-width: 486px) and (max-width: 486px) {
  div[data-astro-cid-utstonhj].header h1 [data-astro-cid-utstonhj] {
    font-size: 24px;
    font-size: 6.1728395062vw;
  }
}

@media only screen and (max-width: 486px) and (min-width: 487px) and (max-width: 768px) {
  div[data-astro-cid-utstonhj].header h1[data-astro-cid-utstonhj] {
    font-size: 24px;
    font-size: 3.125vw;
  }
}

@media only screen and (max-width: 486px) and (min-width: 487px) and (max-width: 768px) {
  div[data-astro-cid-utstonhj].header h2[data-astro-cid-utstonhj] {
    font-size: 24px;
    font-size: 3.125vw;
  }
}

@media only screen and (max-width: 486px) and (min-width: 769px) {
  div[data-astro-cid-utstonhj].header h1[data-astro-cid-utstonhj] {
    font-size: 24px;
  }
}

@media only screen and (max-width: 486px) and (min-width: 769px) {
  div[data-astro-cid-utstonhj].header h2[data-astro-cid-utstonhj] {
    font-size: 24px;
  }
}

div[data-astro-cid-utstonhj].header p[data-astro-cid-utstonhj] {
  display: flex;
  flex-direction: column;
  font-size: 1em;
  line-height: 1.5;
  font-weight: 400;
}
.pricing-heading-note {
  font-size: 0.55em;
  font-weight: 700;
  margin-left: 0.35em;
}
.support {
  margin-top: 25px;
}

.ellipse-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}

.ellipse {
  width: 250px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #454545;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  margin-right: 88px;
}

.ellipse:last-child {
  margin-right: 0;
}

.ellipse p {
  font-size: 1.3em;
  color: #000;
}

@media only screen and (max-width: 758px) {
  .ellipse-container {
    flex-direction: column;
  }
  .ellipse {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 486px) and (max-width: 486px) {
  div[data-astro-cid-utstonhj].header p[data-astro-cid-utstonhj] {
    margin-top: 0;
    font-size: 4.1152263374vw;
  }
}

@media only screen and (max-width: 486px) and (min-width: 487px) and (max-width: 768px) {
  div[data-astro-cid-utstonhj].header p[data-astro-cid-utstonhj] {
    font-size: 16px;
    font-size: 2.0833333333vw;
  }
}

@media only screen and (max-width: 486px) and (min-width: 769px) {
  div[data-astro-cid-utstonhj].header p[data-astro-cid-utstonhj] {
    font-size: 16px;
  }
}

.bg[data-astro-cid-utstonhj] {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

.bg[data-astro-cid-utstonhj] img[data-astro-cid-utstonhj] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fixed[data-astro-cid-5d2te5s5] {
  position: fixed;
  top: var(--scroll-y);
  left: 0;
  width: 100%;
  height: 110%;
  overflow: hidden;
}

button[data-astro-cid-5d2te5s5],
[data-astro-cid-5d2te5s5][role="button"] {
  cursor: pointer;
}

article[data-astro-cid-5d2te5s5] {
  filter: drop-shadow(1em 1em 1.5em rgba(14, 78, 154, 0.1));
}

@media screen and (max-width: 1241px) and (orientation: portrait) {
  article[data-astro-cid-5d2te5s5] {
    padding: 1em;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 0px) {
  article[data-astro-cid-5d2te5s5] {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 1em;
    padding: 1em 0;
  }
}

.subTitle {
  display: block;
  text-align: center;
  color: #0e4e9a;
  font-size: 1.5em;
  font-weight: 500;
  text-shadow: 4px 2px 4px #9f9f9f;
}

@media screen and (max-width: 1241px) and (orientation: portrait) {
  figure[data-astro-cid-5d2te5s5] {
    width: 100%;
    justify-self: end;
  }
}

@media only screen and (max-width: 0px) {
  figure[data-astro-cid-5d2te5s5] {
    width: 80%;
    justify-self: end;
  }
}

figure[data-astro-cid-5d2te5s5] img[data-astro-cid-5d2te5s5] {
  width: 1000px;
  height: 100%;
}

.fixed[data-astro-cid-zzvl4fxx] {
  position: fixed;
  top: var(--scroll-y);
  left: 0;
  width: 100%;
  height: 110%;
  overflow: hidden;
}

button[data-astro-cid-zzvl4fxx],
[data-astro-cid-zzvl4fxx][role="button"] {
  cursor: pointer;
}

@media only screen and (max-width: 1241px) {
  section[data-astro-cid-zzvl4fxx] .step2[data-astro-cid-zzvl4fxx] {
    margin-top: -88vh;
  }
}

@media only screen and (max-width: 1030px) {
  section[data-astro-cid-zzvl4fxx] .step5[data-astro-cid-zzvl4fxx] {
    margin-top: -80vh;
  }
}

@media only screen and (max-width: 1485px) {
  section[data-astro-cid-zzvl4fxx] .step3[data-astro-cid-zzvl4fxx] {
    margin-top: -107vh;
  }
}

@media screen and (max-width: 1241px) and (orientation: portrait) {
  h2[data-astro-cid-zzvl4fxx] {
    position: relative;
    top: 0;
    margin-bottom: 2em;
  }
}

@media only screen and (max-width: 486px) {
  h2[data-astro-cid-zzvl4fxx] {
    padding-bottom: 0;
    margin-bottom: 1em;
  }
}

@media only screen and (max-width: 486px) and (max-width: 486px) {
  h2[data-astro-cid-zzvl4fxx] {
    font-size: 24px;
    font-size: 6.1728395062vw;
  }
}

@media only screen and (max-width: 486px) and (min-width: 487px) and (max-width: 768px) {
  h2[data-astro-cid-zzvl4fxx] {
    font-size: 24px;
    font-size: 3.125vw;
  }
}

@media only screen and (max-width: 486px) and (min-width: 769px) {
  h2[data-astro-cid-zzvl4fxx] {
    font-size: 24px;
  }
}

h2[data-astro-cid-zzvl4fxx] em[data-astro-cid-zzvl4fxx] {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 2.25em;
  font-weight: 500;
  line-height: 1.5;
}

h2[data-astro-cid-zzvl4fxx] em[data-astro-cid-zzvl4fxx] img {
  margin-right: 10px;
}

h2[data-astro-cid-zzvl4fxx] em[data-astro-cid-zzvl4fxx] h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  width: 800px;
  height: 70px;
  color: #000;
  background-color: #ffc4df;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h2[data-astro-cid-zzvl4fxx] em[data-astro-cid-zzvl4fxx] h3 span {
  display: inline-block;
}

.header[data-astro-cid-zzvl4fxx] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

div [data-astro-cid-zzvl4fxx] .tengunTitle[data-astro-cid-zzvl4fxx] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  min-height: 45px;
  width: fit-content;
  background-color: #cc3a26;
  border-radius: 8px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  z-index: 3;
}

.tengunTitle p {
  margin: 0;
}

div [data-astro-cid-zzvl4fxx] .tengunCon[data-astro-cid-zzvl4fxx] {
  margin: 20px 0 10px;
  color: #000;
  width: 100%;
  font-weight: bolder;
}

div [data-astro-cid-zzvl4fxx] .tengunCon[data-astro-cid-zzvl4fxx] p {
  margin: 0;
  line-height: 1.8;
  color: #cc3a26;
  font-size: 1.3rem;
  font-weight: bolder;
  /* margin-bottom: 10px; */
}

.digimoke-media {
  width: 100%;
  margin: 0;
}

.digimoke-media video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

#pricing {
  background: #f2f7fb;
  padding: 80px 0;
}

.pricing {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.pricing__item {
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.pricing__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 20px;
  background: #cc3a26;
  border-radius: 8px;
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
}

.pricing__title p {
  margin: 0;
}

#pricing .pricing__content {
  margin-bottom: 50px;
}

#pricing .pricing__content p {
  margin: 0;
  line-height: 1.8;
  color: #cc3a26;
  font-size: 1.4em;
  font-weight: bolder;
}

#pricing .tax-note {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.7em;
  font-weight: 500;
  white-space: nowrap;
  vertical-align: baseline;
}

@media screen and (max-width: 486px) {
  div[data-astro-cid-utstonhj].header .header__inner[data-astro-cid-utstonhj] {
    margin: 0;
  }
  #pricing {
    padding: 0;
  }
  .pricing {
    gap: 0;
  }

  .pricing__title {
    font-size: 1em;
    line-height: 1.4;
  }
  #pricing .pricing__content p {
    font-size: 0.9em;
    line-height: 1.65;
  }
}

#account .pricing__content {
  margin-bottom: 50px;
}

#account .pricing__content p {
  margin: 0;
  line-height: 1.8;
  color: #cc3a26;
  font-size: 1em;
  font-weight: bolder;
}

@media only screen and (max-width: 950px) {
  figure[data-astro-cid-5d2te5s5] {
    transform: translate(0);
  }
}

@media only screen and (max-width: 420px) {
  div [data-astro-cid-zzvl4fxx] .tengunTitle[data-astro-cid-zzvl4fxx] {
    font-size: 1em;
  }
}

@media only screen and (max-width: 650px) {
  div [data-astro-cid-zzvl4fxx] .tengunCon[data-astro-cid-zzvl4fxx] {
    transform: translateX(0);
    width: 350px;
  }
  div [data-astro-cid-zzvl4fxx] .tengunCon[data-astro-cid-zzvl4fxx] p {
    font-weight: 800;
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 1054px) {
  h2[data-astro-cid-zzvl4fxx] em[data-astro-cid-zzvl4fxx] h3 {
    background-color: #ffc4df;
    width: 600px;
  }
}
@media only screen and (max-width: 650px) {
  h2[data-astro-cid-zzvl4fxx] em[data-astro-cid-zzvl4fxx] h3 {
    background-color: #ffc4df;
    width: 350px;
  }
}
@media only screen and (max-width: 1199px) {
  h2[data-astro-cid-zzvl4fxx] em[data-astro-cid-zzvl4fxx] {
    font-size: 1.8em;
  }
}
@media only screen and (max-width: 840px) {
  h2[data-astro-cid-zzvl4fxx] em[data-astro-cid-zzvl4fxx] {
    font-size: 1.4em;
  }
}
@media only screen and (max-width: 644px) {
  .subTitle {
    font-size: 1em;
  }
}
@media only screen and (max-width: 514px) {
  h2[data-astro-cid-zzvl4fxx] em[data-astro-cid-zzvl4fxx] {
    font-size: 1em;
  }
}
@media only screen and (max-width: 487px) {
  h2[data-astro-cid-zzvl4fxx] em[data-astro-cid-zzvl4fxx] {
    font-size: 0.7em;
  }
  .subTitle {
    font-size: 1em;
  }
}
@media only screen and (max-width: 411px) {
  .subTitle {
    display: none;
  }
}
@media only screen and (max-width: 840px) {
  h2[data-astro-cid-zzvl4fxx]
    em[data-astro-cid-zzvl4fxx]
    img[data-astro-cid-zzvl4fxx] {
    display: block;
    width: 150px;
    height: 150px;
  }
}

@media only screen and (max-width: 514px) {
  h2[data-astro-cid-zzvl4fxx]
    em[data-astro-cid-zzvl4fxx]
    img[data-astro-cid-zzvl4fxx] {
    display: block;
    width: 100px;
    height: 100px;
  }
}
@media only screen and (max-width: 343px) {
  h2[data-astro-cid-zzvl4fxx]
    em[data-astro-cid-zzvl4fxx]
    img[data-astro-cid-zzvl4fxx] {
    display: block;
    width: 60px;
    height: 60px;
  }
}
@media only screen and (max-width: 0px) {
  h2[data-astro-cid-zzvl4fxx] em[data-astro-cid-zzvl4fxx] {
    font-size: 1em;
  }
}
@media only screen and (max-width: 486px) and (max-width: 486px) {
  h2[data-astro-cid-zzvl4fxx] span[data-astro-cid-zzvl4fxx].eng {
    font-size: 14px;
    font-size: 3.6008230453vw;
  }
}
@media only screen and (max-width: 486px) and (min-width: 487px) and (max-width: 768px) {
  h2[data-astro-cid-zzvl4fxx] span[data-astro-cid-zzvl4fxx].eng {
    font-size: 14px;
    font-size: 1.8229166667vw;
  }
}
@media only screen and (max-width: 486px) and (min-width: 769px) {
  h2[data-astro-cid-zzvl4fxx] span[data-astro-cid-zzvl4fxx].eng {
    font-size: 14px;
  }
}
.content-container {
  width: 100%;
  padding: 10px 20px;
}

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

.video_wrap {
  width: 100%;
  max-width: 900px;
}

.video_wrap video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}
@media (max-width: 768px) {
  .content-container {
    padding: 24px 16px;
  }

  .video_wrap {
    max-width: 100%;
  }
}

#contact {
  width: 100%;
  background-color: #f2f7fb;
}
#contact h2 {
  color: #0064a9;
}
#contact h2[data-astro-cid-utstonhj]::before {
  background-color: #0064a9;
}
.contact__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 40px 80px;
  box-sizing: border-box;
}

.contact__container form {
  width: 100%;
  padding: 40px 30px 60px;
  box-sizing: border-box;
}

.section-title {
  margin: 0;
  color: #0064a9;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

.section-title::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 38px;
  margin-right: 10px;
  background: #0064a9;
  vertical-align: -6px;
}

.required-note {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 0 35px;
  color: #0064a9;
  font-size: 15px;
  font-weight: 600;
}

.required-note span {
  margin-right: 2px;
  color: #e60012;
}

.required {
  margin-left: 2px;
  padding: 0;
  color: #e60012;
  background: transparent;
  font-size: inherit;
  font-weight: 700;
  border-radius: 0;
}

.name-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 70px;
  row-gap: 48px;
  margin-bottom: 42px;
}

.name-grid .form-item {
  min-width: 0;
}

.name-grid .form-item label {
  display: block;
  margin: 0 0 6px;
  color: #0064a9;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.name-grid .required {
  margin-left: 2px;
  color: #e60012;
}

.name-grid input {
  width: 100%;
  height: 38px;
  padding: 0 10px;
  box-sizing: border-box;
  border: 1px solid #aaa;
  border-radius: 0;
  background: #fff;
  color: #333;
  font-family: inherit;
  font-size: 15px;
  line-height: normal;
}

.name-grid input::placeholder {
  color: #999;
  opacity: 1;
}

.name-grid input:focus {
  border-color: #0064a9;
  outline: none;
  box-shadow: 0 0 0 2px rgb(0 100 169 / 12%);
}

@media (max-width: 700px) {
  .name-grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }
}

.form-label,
.form-item label {
  display: block;
  margin: 0 0 9px;
  color: #0064a9;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.form-note {
  min-height: 38px;
  min-height: 38px;
  margin: -4px 0 8px 8px;
  color: #0064a9;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  box-sizing: border-box;
}

.form-note--empty {
  visibility: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 70px;
  margin-bottom: 42px;
}

.form-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.form-grid--single .form-item {
  width: calc(50% - 35px);
}

.form-item {
  min-width: 0;
}

.form-block {
  width: 100%;
  margin-bottom: 55px;
}

.inquiry-block {
  max-width: 520px;
}

.message-block {
  margin-top: 5px;
}

.form-item input,
.form-item select,
.form-item textarea,
.form-block input,
.form-block select,
.form-block textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #aaa;
  border-radius: 0;
  background: #fff;
  color: #333;
  font-family: inherit;
  font-size: 16px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-item input,
.form-item select {
  height: 48px;
  padding: 0 14px;
}

.form-item textarea,
.form-block textarea {
  min-height: 145px;
  padding: 14px;
  line-height: 1.7;
  resize: vertical;
}

.form-item input::placeholder,
.form-item textarea::placeholder,
.form-block textarea::placeholder {
  color: #9b9b9b;
  opacity: 1;
}

.form-item input:focus,
.form-item select:focus,
.form-item textarea:focus,
.form-block textarea:focus {
  border-color: #0064a9;
  box-shadow: 0 0 0 2px rgb(0 100 169 / 12%);
}

.form-item select {
  width: 100%;
  padding-right: 48px;
  appearance: none;
  -webkit-appearance: none;
  padding: 0 48px 0 14px;
  line-height: 48px;
  background-image:
    linear-gradient(45deg, transparent 50%, #555 50%),
    linear-gradient(135deg, #555 50%, transparent 50%);
  background-position:
    calc(100% - 21px) 20px,
    calc(100% - 14px) 20px;
  background-size:
    8px 8px,
    8px 8px;
  background-repeat: no-repeat;
}

.inquiry-block {
  margin-bottom: 40px;
}

.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0064a9;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

.checkbox-item input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  position: static;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #0064a9;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-item span {
  display: inline-block;
  cursor: pointer;
  line-height: 1.6;
}

#category-other-text {
  width: 100%;
  min-height: 120px;

  margin-top: 18px;
  padding: 12px 14px;

  border: 1px solid #bfbfbf;
  background: #fff;

  box-sizing: border-box;
  resize: vertical;
}

.input-message {
  display: none;
  margin-top: 6px;
  color: #d60000;
  font-size: 13px;
  line-height: 1.5;
}
.input-message:not(:empty) {
  display: block;
}
.is-error {
  border-color: #d93025 !important;
  background-color: #fff7f7 !important;
}

.privacy {
  margin-top: 55px;
  padding: 0;
  background: transparent;
}

.privacy h3 {
  margin: 0 0 15px;
  color: #0064a9;
  font-size: 20px;
  font-weight: 700;
}

.privacy__box {
  max-height: 220px;
  padding: 22px 25px;
  overflow-y: auto;
  border: 1px solid #aaa;
  background: #fff;
  box-sizing: border-box;
}

.privacy__box p {
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 1.9;
}

.agree {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 25px auto 0;
  color: #0064a9;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.agree input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.checkmark {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid #888;
  background: #fff;
  box-sizing: border-box;
  flex-shrink: 0;
}

.agree input:checked + .checkmark {
  border-color: #0064a9;
  background: #0064a9;
}

.agree input:checked + .checkmark::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.agree input:focus-visible + .checkmark {
  box-shadow: 0 0 0 3px rgb(0 100 169 / 18%);
}

.submit {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}

.submit button {
  width: min(100%, 420px);
  min-height: 62px;
  padding: 14px 30px;
  border: 2px solid #0064a9;
  background: #0064a9;
  color: #fff;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-align: center;
  border-radius: 8px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.submit button:hover {
  background: #fff;
  color: #0064a9;
}

@media (max-width: 900px) {
  .contact__container {
    padding: 40px 25px 65px;
  }

  .contact__container form {
    padding: 35px 25px 50px;
  }

  .form-grid {
    gap: 36px 35px;
  }

  .form-grid--single .form-item {
    width: calc(50% - 17.5px);
  }
}

@media (max-width: 700px) {
  .contact__container {
    padding: 30px 15px 50px;
  }

  .contact__container form {
    padding: 30px 18px 40px;
  }

  .form-heading {
    display: block;
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 25px;
  }

  .section-title::before {
    width: 8px;
    height: 30px;
    vertical-align: -5px;
  }

  .required-note {
    margin-top: 14px;
    text-align: right;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    margin-bottom: 32px;
  }

  .form-grid--single .form-item {
    width: 100%;
  }

  .form-block {
    margin-bottom: 40px;
  }

  .inquiry-block {
    max-width: none;
  }

  .form-note {
    min-height: 0;
  }

  .zip-group {
    grid-template-columns: minmax(0, 1fr);
  }

  .zip-btn {
    width: 100%;
  }

  .privacy {
    margin-top: 40px;
  }

  .privacy__box {
    max-height: 250px;
    padding: 18px;
  }

  .agree {
    align-items: flex-start;
    margin-top: 20px;
  }

  .submit {
    margin-top: 35px;
  }

  .submit button {
    min-height: 58px;
    font-size: 16px;
  }
}
@media (max-width: 468px) {
  .contact__container {
    padding: 0px 15px 50px;
  }
}
.fixed[data-astro-cid-wxvbp6sc] {
  position: fixed;
  top: var(--scroll-y);
  left: 0;
  width: 100%;
  height: 110%;
  overflow: hidden;
}
button[data-astro-cid-wxvbp6sc],
[data-astro-cid-wxvbp6sc][role="button"] {
  cursor: pointer;
}
div[data-astro-cid-wxvbp6sc] {
  display: flex;
  justify-content: center;
}
figure[data-astro-cid-wxvbp6sc] {
  width: 100%;
  flex: 1;
  margin: 0;
  border-radius: 0 0 0 #454545;
}

ul[data-astro-cid-wxvbp6sc] {
  width: 90vw;
  max-width: 1440px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5em;
  max-width: 45vw;
}
@media (max-width: 650px) {
  ul[data-astro-cid-wxvbp6sc] {
    gap: 0em;
  }
}
li[data-astro-cid-wxvbp6sc] {
  flex-direction: column;
  align-items: center;
  height: 100%;
}

ul[data-astro-cid-wxvbp6sc]
  li[data-astro-cid-wxvbp6sc]
  p[data-astro-cid-wxvbp6sc] {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: start;
  color: #000;
  background-color: #ffc4df;
  font-weight: bold;
  font-size: larger;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  width: 70%;
  height: 130px;
  transform: translateX(-100px);
  z-index: 2;
}

ul[data-astro-cid-wxvbp6sc] li[data-astro-cid-wxvbp6sc] figure {
  margin: 0;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

@media (max-width: 1542px) {
  ul[data-astro-cid-wxvbp6sc] {
    max-width: 65vw;
  }
}

@media (max-width: 1024px) {
  ul[data-astro-cid-wxvbp6sc] {
    max-width: 75vw;
  }
}

@media (max-width: 768px) {
  ul[data-astro-cid-wxvbp6sc] {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 768px) {
  ul[data-astro-cid-wxvbp6sc] {
    max-width: 80vw;
  }
}

@media only screen and (max-width: 486px) {
  ul[data-astro-cid-wxvbp6sc] {
    max-width: 80vw;
  }
}

li[data-astro-cid-wxvbp6sc] {
  grid-template-rows: auto auto;
  flex-basis: 320px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  li[data-astro-cid-wxvbp6sc] {
    flex-basis: 100%;
  }
}

@media only screen and (max-width: 768px) {
  li[data-astro-cid-wxvbp6sc].icon {
    background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'?%3e%3csvg%20width='32'%20height='32'%20viewBox='0%200%2032%2032'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cmask%20id='mask0_20_136'%20style='mask-type:alpha'%20maskUnits='userSpaceOnUse'%20x='0'%20y='0'%20width='32'%20height='32'%3e%3crect%20width='32'%20height='32'%20fill='%23D9D9D9'%20/%3e%3c/mask%3e%3cg%20mask='url(%23mask0_20_136)'%3e%3cpath%20d='M16%2020.5346L8%2012.5346L9.86667%2010.668L16%2016.8013L22.1333%2010.668L24%2012.5346L16%2020.5346Z'%20fill='white'%20/%3e%3c/g%3e%3c/svg%3e");
    background-size: contain;
    background-repeat: no-repeat;
  }
}

@media only screen and (max-width: 1025px) {
  small[data-astro-cid-wxvbp6sc] {
    font-size: 2.5em;
  }
}

@media only screen and (max-width: 768px) {
  small[data-astro-cid-wxvbp6sc] {
    font-size: 3.75em;
  }
}

span[data-astro-cid-wxvbp6sc] {
  display: block;
  grid-row: 2/3;
  width: 100%;
  font-size: 1em;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
  text-align: center;
}

span[data-astro-cid-wxvbp6sc].text-left {
  text-align: left;
}

small[data-astro-cid-wxvbp6sc] {
  font-size: 0.9em;
  line-height: 1.5;
}

figure[data-astro-cid-wxvbp6sc] {
  grid-row: 1/2;
  min-height: 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

figure[data-astro-cid-wxvbp6sc] img[data-astro-cid-wxvbp6sc] {
  width: 100%;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  transform: translateY(-20px);
}

.bi_btnBox[data-astro-cid-wxvbp6sc] {
  margin: 0 auto;
  display: block;
  width: 90vw;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  max-width: 960px;
  min-width: 0;
  min-height: 0;
  margin-top: 30px;
}

@media only screen and (max-width: 768px) {
  .bi_btnBox[data-astro-cid-wxvbp6sc] {
    width: 90%;
  }
}

.bi_btnBox[data-astro-cid-wxvbp6sc] a[data-astro-cid-wxvbp6sc] {
  overflow: hidden;
  border-radius: 8px;
  height: 70px;
  background: #0962a8;
  flex-basis: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5em;
  position: relative;
  color: #fff;
}

.bi_btnBox[data-astro-cid-wxvbp6sc]
  a[data-astro-cid-wxvbp6sc]
  em[data-astro-cid-wxvbp6sc] {
  position: relative;
  z-index: 2;
  display: block;
  flex-basis: 100%;
  width: 100%;
  font-size: 2em;
  font-weight: 400;
  text-align: center;
}

.bi_btnBox[data-astro-cid-wxvbp6sc] a:after[data-astro-cid-wxvbp6sc] {
  content: "";
  display: block;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  filter: drop-shadow(0.25em 0.25em 0.75em rgba(0, 0, 0, 0.15));
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1200px) {
  .bi_btnBox[data-astro-cid-wxvbp6sc]
    a[data-astro-cid-wxvbp6sc]
    em[data-astro-cid-wxvbp6sc] {
    font-size: 1.375em;
    text-align: center;
  }
}

@media only screen and (max-width: 486px) {
  .bi_btnBox[data-astro-cid-wxvbp6sc]
    a[data-astro-cid-wxvbp6sc]
    span[data-astro-cid-wxvbp6sc] {
    font-size: 0.75em;
    text-align: center;
  }
}

@media only screen and (max-width: 486px) {
  .bi_btnBox[data-astro-cid-wxvbp6sc] a[data-astro-cid-wxvbp6sc]:after {
    width: 10vw;
    height: 10vw;
    background-size: 30% 30%;
  }
}

.bi_btnBox[data-astro-cid-wxvbp6sc] a[data-astro-cid-wxvbp6sc]:hover {
  color: var(--primary_blue);
}

.bi_btnBox[data-astro-cid-wxvbp6sc] a[data-astro-cid-wxvbp6sc]:hover {
  background-color: #fff;
}

h2[data-astro-cid-zzvl4fxx] em[data-astro-cid-zzvl4fxx].support-block {
  display: block;
}

h2[data-astro-cid-zzvl4fxx] em[data-astro-cid-zzvl4fxx] .support-title {
  text-align: center;
  justify-content: center;
  margin-top: -80px;
  color: #0e4e9a;
  font-size: 1em;
  line-height: 1.5;
  text-shadow: 2px 2px 4px #9f9f9f;
}
ul.one-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 16px;
}
ul.one-row li {
  flex: 1;
  margin: 0 10px;
}
ul.one-row li figure {
  margin: 0;
}
ul.one-row li img {
  max-width: 100%;
  height: auto;
}
ul.one-row li .tool-img {
  max-width: 20vw;
  max-height: 10vw;
}
@media (max-width: 768px) {
  ul.one-row {
    flex-direction: column;
    align-items: center;
  }
  ul.one-row li {
    margin: 10px 0;
  }
  ul.one-row li .tool-img {
    max-width: 60vw;
    max-height: 26vw;
  }
}

@media (max-width: 768px) {
  ul.one-row li {
    flex-direction: column;
    align-items: flex-start;
  }

  ul.one-row li .image-block {
    margin-left: 0;
    margin-top: 12px;
    max-width: 100%;
  }
}

@media only screen and (max-width: 843px) {
  h2[data-astro-cid-zzvl4fxx]
    em[data-astro-cid-zzvl4fxx].support-block
    .support-imgnone {
    display: none;
  }
}

ul[data-astro-cid-wxvbp6sc] li[data-astro-cid-wxvbp6sc] .support-sub {
  font-size: 1.1em;
}

ul[data-astro-cid-wxvbp6sc] li[data-astro-cid-wxvbp6sc] a {
  display: flex;
  text-align: center;
  justify-content: center;
}

ul[data-astro-cid-wxvbp6sc] li[data-astro-cid-wxvbp6sc] .tool-sub {
  background-color: #cc3a26;
  width: 12em;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 0.5em 1.5em;
  transition: all 0.2s ease-in-out;
  font-size: 1.1em;
  border-radius: 8px;
  white-space: nowrap;
  box-sizing: border-box;
}

ul[data-astro-cid-wxvbp6sc] li[data-astro-cid-wxvbp6sc] .tool-sub:hover {
  background-color: #fff;
  color: #cc3a26;
}

.tool_btnBox[data-astro-cid-wxvbp6sc] {
  margin: 100px auto;
  display: flex;
  flex-direction: row;
  width: 90vw;
  max-width: 1440px;
  justify-content: center;
  gap: 3em;
  margin-top: 100px;
}

.tool_btnBox .button-container[data-astro-cid-wxvbp6sc] {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 391px;
}

.tool_btnBox a[data-astro-cid-wxvbp6sc] {
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 70px;
  background: #0962a8;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5em;
  color: #fff;
  text-decoration: none;
  width: 100%;
}

.tool_btnBox a:hover[data-astro-cid-wxvbp6sc] {
  background-color: #fff;
}

.tool_btnBox a[data-astro-cid-wxvbp6sc] em[data-astro-cid-wxvbp6sc] {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  font-size: 2em;
  font-weight: 400;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .tool_btnBox[data-astro-cid-wxvbp6sc] {
    justify-content: center;
    align-items: center;
    width: 90%;
  }
}

@media (max-width: 1125px) {
  ul[data-astro-cid-wxvbp6sc] li[data-astro-cid-wxvbp6sc] .tool-sub {
    width: auto;
    font-size: 1em;
    padding: 0.5em;
  }
}

@media (max-width: 978px) {
  ul[data-astro-cid-wxvbp6sc] li[data-astro-cid-wxvbp6sc] .tool-sub {
    width: auto;
    font-size: 0.8em;
  }
}

@media only screen and (max-width: 1200px) {
  .tool_btnBox a[data-astro-cid-wxvbp6sc] em[data-astro-cid-wxvbp6sc] {
    font-size: 1.375em;
  }
}

@media only screen and (max-width: 486px) {
  .tool_btnBox a[data-astro-cid-wxvbp6sc] em[data-astro-cid-wxvbp6sc] {
    font-size: 1em;
  }
}

.tool_btnBox a[data-astro-cid-wxvbp6sc]:after {
  content: "";
  display: block;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  filter: drop-shadow(0.25em 0.25em 0.75em rgba(0, 0, 0, 0.15));
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 486px) {
  .tool_btnBox a[data-astro-cid-wxvbp6sc]:after {
    width: 10vw;
    height: 10vw;
    background-size: 30% 30%;
  }
}

.tool_btnBox a[data-astro-cid-wxvbp6sc]:hover {
  color: var(--primary_blue);
}

.tool_btnBox a[data-astro-cid-wxvbp6sc]:hover:after {
  width: 100%;
  height: 100%;
  transform: translate(0);
  top: 0;
  right: 0;
  background: #fff;
}

.fixed[data-astro-cid-abcx4r4r] {
  position: fixed;
  top: var(--scroll-y);
  left: 0;
  width: 100%;
  height: 110%;
  overflow: hidden;
}

button[data-astro-cid-abcx4r4r],
[data-astro-cid-abcx4r4r][role="button"] {
  cursor: pointer;
}

div[data-astro-cid-abcx4r4r] {
  margin: 0 auto;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6em 0;
}

article[data-astro-cid-abcx4r4r] {
  width: 90vw;
  max-width: 1440px;
  max-width: 960px;
  background-color: var(--white);
  filter: drop-shadow(1em 1em 1.5em rgba(14, 78, 154, 0.1));
  border-radius: 1em;
  padding: 2em;
  display: grid;
  grid-template-columns: minmax(250px, 330px) 1fr;
  gap: 1em;
  align-items: center;
}

@media only screen and (max-width: 830px) {
  article[data-astro-cid-abcx4r4r] {
    grid-template-columns: auto 1fr;
    gap: 2em;
  }
}

@media only screen and (max-width: 486px) {
  article[data-astro-cid-abcx4r4r] {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 1.5em;
    padding: 2em 1.5em;
  }
}

h3[data-astro-cid-abcx4r4r] em[data-astro-cid-abcx4r4r] {
  display: block;
  text-align: center;
  font-size: 2.25em;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  color: var(--primary_blue);
  font-feature-settings: "palt";
}

@media only screen and (max-width: 768px) {
  h3[data-astro-cid-abcx4r4r] em[data-astro-cid-abcx4r4r] {
    font-size: 1.75em;
  }
}

h3[data-astro-cid-abcx4r4r] small[data-astro-cid-abcx4r4r] {
  display: block;
  text-align: center;
  color: #de1616;
  font-family: Barlow, sans-serif;
  font-size: 0.875em;
  padding-top: 0.75em;
}

ul[data-astro-cid-abcx4r4r] li[data-astro-cid-abcx4r4r] {
  font-size: 1.375em;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.02em;
  color: var(--primary_blue);
  padding-left: 1.2em;
  position: relative;
}

@media only screen and (max-width: 0px) {
  ul[data-astro-cid-abcx4r4r] li[data-astro-cid-abcx4r4r] {
    font-size: 1.25em;
  }
}

@media only screen and (max-width: 768px) {
  ul[data-astro-cid-abcx4r4r] li[data-astro-cid-abcx4r4r] {
    font-size: 1em;
  }
}

ul[data-astro-cid-abcx4r4r] li[data-astro-cid-abcx4r4r]:before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}

.fixed[data-astro-cid-xmivup5a] {
  position: fixed;
  top: var(--scroll-y);
  left: 0;
  width: 100%;
  height: 110%;
  overflow: hidden;
}
button[data-astro-cid-xmivup5a],
[data-astro-cid-xmivup5a][role="button"] {
  cursor: pointer;
}
section[data-astro-cid-xmivup5a] {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: block;
  display: flex;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, auto);
  justify-items: center;
  background-size: cover;
  background-position: center center;
}
@media only screen and (max-width: 768px) {
  section[data-astro-cid-xmivup5a] {
    padding: 7.5vw 0;
  }
}
@media only screen and (max-width: 486px) {
  section[data-astro-cid-xmivup5a] {
    padding: 0 0 10vw;
  }
}
h2[data-astro-cid-xmivup5a] {
  width: 90vw;
  max-width: 1440px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media only screen and (max-width: 768px) {
  h2[data-astro-cid-xmivup5a] {
    align-items: center;
  }
}
h2[data-astro-cid-xmivup5a] span[data-astro-cid-xmivup5a] {
  color: #1e86ff;
  font-size: 1.875em;
  font-family: Barlow, sans-serif;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 768px) {
  h2[data-astro-cid-xmivup5a] span[data-astro-cid-xmivup5a] {
    font-size: 1.5em;
  }
}
h2[data-astro-cid-xmivup5a] div[data-astro-cid-xmivup5a] {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  h2[data-astro-cid-xmivup5a] div[data-astro-cid-xmivup5a] {
    max-width: 92%;
  }
}
h2[data-astro-cid-xmivup5a] em[data-astro-cid-xmivup5a] {
  font-size: 2.25em;
  line-height: 1.5;
}
@media only screen and (max-width: 1199px) {
  h2[data-astro-cid-xmivup5a] em[data-astro-cid-xmivup5a] {
    font-size: 1.5em;
  }
}
@media only screen and (max-width: 768px) {
  h2[data-astro-cid-xmivup5a] em[data-astro-cid-xmivup5a] {
    font-size: 1.3em;
    line-height: 2;
    text-align: left;
  }
}
ul[data-astro-cid-xmivup5a] {
  width: 90vw;
  max-width: 1169px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75em;
  margin: 4em 0;
}
@media only screen and (max-width: 486px) {
  ul[data-astro-cid-xmivup5a] {
    width: 95vw;
  }
}
@media only screen and (max-width: 768px) {
  ul[data-astro-cid-xmivup5a] {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
}
ul[data-astro-cid-xmivup5a] li[data-astro-cid-xmivup5a] {
  border-radius: 0.5em;
  border: 1px solid var(--white);
  background-color: #f2f7fb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2em 0;
  gap: 0.25em;
}
@media only screen and (max-width: 768px) {
  ul[data-astro-cid-xmivup5a] li[data-astro-cid-xmivup5a] {
    padding: 2em 1em;
  }
}
@media only screen and (max-width: 486px) {
  ul[data-astro-cid-xmivup5a] li[data-astro-cid-xmivup5a] {
    padding: 1em 0.25em;
  }
}
ul[data-astro-cid-xmivup5a]
  li[data-astro-cid-xmivup5a]
  em[data-astro-cid-xmivup5a] {
  font-size: 1.5em;
  font-weight: 400;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  ul[data-astro-cid-xmivup5a]
    li[data-astro-cid-xmivup5a]
    em[data-astro-cid-xmivup5a] {
    font-size: 1.375em;
  }
}

@media only screen and (max-width: 768px) {
  ul[data-astro-cid-xmivup5a]
    li[data-astro-cid-xmivup5a]
    em[data-astro-cid-xmivup5a] {
    font-size: 1.125em;
  }
}

ul[data-astro-cid-xmivup5a]
  li[data-astro-cid-xmivup5a]
  span[data-astro-cid-xmivup5a] {
  font-size: 1em;
}

@media only screen and (max-width: 486px) {
  ul[data-astro-cid-xmivup5a]
    li[data-astro-cid-xmivup5a]
    span[data-astro-cid-xmivup5a] {
    font-size: 0.75em;
  }
}

.cv_btnBox[data-astro-cid-xmivup5a] {
  margin: 0 auto;
  display: block;
  width: 90vw;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  max-width: 960px;
  min-width: 0;
  min-height: 0;
}

@media only screen and (max-width: 768px) {
  .cv_btnBox[data-astro-cid-xmivup5a] {
    width: 90%;
  }
}
.cv_btnBox[data-astro-cid-xmivup5a] a[data-astro-cid-xmivup5a] {
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(to bottom, #1e86ff, #125099);
  flex-basis: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5em;
  position: relative;
}
.cv_btnBox[data-astro-cid-xmivup5a]
  a[data-astro-cid-xmivup5a]
  em[data-astro-cid-xmivup5a] {
  position: relative;
  z-index: 2;
  display: block;
  flex-basis: 100%;
  width: 100%;
  font-size: 2.25em;
  font-weight: 400;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .cv_btnBox[data-astro-cid-xmivup5a]
    a[data-astro-cid-xmivup5a]
    em[data-astro-cid-xmivup5a] {
    font-size: 1.375em;
    text-align: center;
  }
}
.cv_btnBox[data-astro-cid-xmivup5a]
  a[data-astro-cid-xmivup5a]
  span[data-astro-cid-xmivup5a] {
  position: relative;
  z-index: 2;
  display: block;
  flex-basis: 100%;
  width: 100%;
  font-size: 1em;
  font-weight: 400;
  text-align: center;
}
@media only screen and (max-width: 486px) {
  .cv_btnBox[data-astro-cid-xmivup5a]
    a[data-astro-cid-xmivup5a]
    span[data-astro-cid-xmivup5a] {
    font-size: 0.75em;
    text-align: center;
  }
}
.cv_btnBox[data-astro-cid-xmivup5a] a[data-astro-cid-xmivup5a]:after {
  content: "";
  display: block;
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transform: translate(-50%, -50%);
  right: 0;
  width: 4em;
  height: 4em;
  background: url("data:image/svg+xml,%3c?xml%20version='1.0'?%3e%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M2%2018C1.45%2018%200.979167%2017.8042%200.5875%2017.4125C0.195833%2017.0208%200%2016.55%200%2016V2C0%201.45%200.195833%200.979167%200.5875%200.5875C0.979167%200.195833%201.45%200%202%200H9V2H2V16H16V9H18V16C18%2016.55%2017.8042%2017.0208%2017.4125%2017.4125C17.0208%2017.8042%2016.55%2018%2016%2018H2ZM6.7%2012.7L5.3%2011.3L14.6%202H11V0H18V7H16V3.4L6.7%2012.7Z'%20fill='%230E4E9A'%20/%3e%3c/svg%3e")
    #fff;
  background-size: 27% 27%;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 9999px;
  filter: drop-shadow(0.25em 0.25em 0.75em rgba(0, 0, 0, 0.15));
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 486px) {
  .cv_btnBox[data-astro-cid-xmivup5a] a[data-astro-cid-xmivup5a]:after {
    width: 10vw;
    height: 10vw;
    background-size: 30% 30%;
  }
}
.cv_btnBox[data-astro-cid-xmivup5a] a[data-astro-cid-xmivup5a]:hover {
  color: var(--primary_blue);
}
.cv_btnBox[data-astro-cid-xmivup5a] a[data-astro-cid-xmivup5a]:hover:after {
  width: 100%;
  height: 100%;
  transform: translate(0);
  top: 0;
  right: 0;
  background: #fff;
}
.fixed[data-astro-cid-sz7xmlte] {
  position: fixed;
  top: var(--scroll-y);
  left: 0;
  width: 100%;
  height: 110%;
  overflow: hidden;
}
button[data-astro-cid-sz7xmlte],
[data-astro-cid-sz7xmlte][role="button"] {
  cursor: pointer;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #fff;
  border-top: 1px solid #eee;
}

.site-footer__inner {
  width: min(100% - 40px, 900px);
  margin: 0 auto;
  padding: 65px 0 35px;
  box-sizing: border-box;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  align-items: start;
  gap: 80px;
}

.site-footer__logo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.site-footer__logo a {
  display: inline-block;
}

.site-footer__logo img {
  display: block;
  width: min(100%, 340px);
  height: auto;
}

.site-footer__info {
  margin: 0;
  padding: 0;
  color: #333;
  font-style: normal;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.site-footer__info p {
  margin: 0;
}

.site-footer__info a {
  color: inherit;
  text-decoration: none;
}

.site-footer__info a:hover {
  text-decoration: underline;
}

.site-footer__copyright {
  display: block;
  margin-top: 75px;
  color: #8a8a8a;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

@media screen and (max-width: 900px) {
  .site-footer__inner {
    width: min(100% - 48px, 720px);
    padding-top: 55px;
  }

  .site-footer__main {
    grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.1fr);
    gap: 50px;
  }

  .site-footer__logo img {
    max-width: 290px;
  }

  .site-footer__info {
    font-size: 14px;
  }

  .site-footer__copyright {
    margin-top: 55px;
  }
}

@media screen and (max-width: 680px) {
  .site-footer__inner {
    width: min(100% - 32px, 520px);
    padding: 45px 0 28px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer__logo {
    justify-content: center;
  }

  .site-footer__logo img {
    width: min(100%, 300px);
  }

  .site-footer__info {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
  }

  .site-footer__copyright {
    margin-top: 45px;
    font-size: 12px;
  }
  .site-footer__info p {
    margin: 0;
    text-align: left;
  }
}

@media screen and (max-width: 420px) {
  .site-footer__inner {
    width: min(100% - 24px, 380px);
    padding-top: 35px;
  }

  .site-footer__logo img {
    max-width: 250px;
  }

  .site-footer__info {
    font-size: 12px;
  }

  .site-footer__copyright {
    margin-top: 35px;
    font-size: 10px;
    letter-spacing: 0;
  }
}

.fixed[data-astro-cid-ttztgwaq] {
  position: fixed;
  top: var(--scroll-y);
  left: 0;
  width: 100%;
  height: 110%;
  overflow: hidden;
}

button[data-astro-cid-ttztgwaq],
[data-astro-cid-ttztgwaq][role="button"] {
  cursor: pointer;
}

section[data-astro-cid-ttztgwaq] {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  background-color: #7d7d7db3;
  backdrop-filter: blur(10px);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease-out;
}

section[data-astro-cid-ttztgwaq].__hidden {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-out;
}

.dialog__bglayer[data-astro-cid-ttztgwaq] {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

button[data-astro-cid-ttztgwaq] {
  height: calc(var(--header-height) * 0.5);
  width: calc(var(--header-height) * 0.5);
  position: absolute;
  top: calc(var(--header-height) * 0.25);
  right: calc(var(--header-height) * 0.25);
  max-width: 30px;
  min-height: 30px;
  z-index: 1001;
  aspect-ratio: 1/1;
  transition: opacity 0.3s ease-in-out;
}

button[data-astro-cid-ttztgwaq] img[data-astro-cid-ttztgwaq] {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center center;
}

button[data-astro-cid-ttztgwaq]:hover {
  opacity: 0.5;
}

.dialog__container[data-astro-cid-ttztgwaq] {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 85%;
  max-height: 100vh;
  height: 100vh;
  z-index: 1000;
}

nav[data-astro-cid-ttztgwaq] {
  background: var(--white);
  filter: drop-shadow(-1em 1em 1em rgba(0, 0, 0, 0.1));
  padding: 4em 1em 1em;
  flex-grow: 1;
  flex-basis: 0;
  overflow-y: scroll;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: strech;
  align-items: center;
  gap: 3em;
}

.brand_logo_link[data-astro-cid-ttztgwaq] {
  flex-grow: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  flex-basis: 0;
  transition: opacity 0.3s ease-in-out;
}

.brand_logo_link[data-astro-cid-ttztgwaq]:hover {
  opacity: 0.5;
}

.brand_logo[data-astro-cid-ttztgwaq] {
  margin: 0 auto;
  display: block;
  width: 65%;
  height: 100%;
  object-fit: contain;
}

ul[data-astro-cid-ttztgwaq] {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  overflow: visible;
}

ul[data-astro-cid-ttztgwaq]
  li[data-astro-cid-ttztgwaq]
  a[data-astro-cid-ttztgwaq] {
  position: relative;
  color: var(--primary_blue);
  font-size: 1.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
}

ul[data-astro-cid-ttztgwaq]
  li[data-astro-cid-ttztgwaq]
  a[data-astro-cid-ttztgwaq]:before {
  content: "";
  position: absolute;
  width: 100%;
  bottom: -0.25em;
  left: 0;
  border-top: 1px solid #0e4e9a;
  transform-origin: center center;
  transform: scaleX(0);
  transition: transform 0.2s ease-in-out;
}
.dropmenu li .dropmenuCon {
  left: 25%;
}
ul[data-astro-cid-ttztgwaq]
  li[data-astro-cid-ttztgwaq]
  a[data-astro-cid-ttztgwaq]:hover:before {
  transform: scaleX(1);
}

ul[data-astro-cid-ttztgwaq]
  li[data-astro-cid-ttztgwaq]
  a[data-astro-cid-ttztgwaq].contact {
  background-color: #cc3a26;
  color: var(--white);
  text-align: center;
  padding: 0.5em 1.5em;
  border-radius: 999px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  flex-basis: 300px;
  width: 300px;
}

ul[data-astro-cid-ttztgwaq]
  li[data-astro-cid-ttztgwaq]
  a[data-astro-cid-ttztgwaq].contact
  em[data-astro-cid-ttztgwaq] {
  grid-column: 1/2;
  grid-row: 1/2;
  font-size: 1.2em;
}

ul[data-astro-cid-ttztgwaq]
  li[data-astro-cid-ttztgwaq]
  a[data-astro-cid-ttztgwaq].contact
  span[data-astro-cid-ttztgwaq] {
  grid-column: 1/2;
  grid-row: 2/3;
  font-size: 0.75em;
}

ul[data-astro-cid-ttztgwaq]
  li[data-astro-cid-ttztgwaq]
  a[data-astro-cid-ttztgwaq].contact:after {
  content: "";
  grid-column: 2/3;
  grid-row: 1/3;
  display: block;
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'?%3e%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cmask%20id='mask0_15_362'%20style='mask-type:alpha'%20maskUnits='userSpaceOnUse'%20x='0'%20y='0'%20width='16'%20height='16'%3e%3crect%20width='16'%20height='16'%20fill='%23D9D9D9'%20/%3e%3c/mask%3e%3cg%20mask='url(%23mask0_15_362)'%3e%3cpath%20d='M3.33333%2014C2.96667%2014%202.65278%2013.8694%202.39167%2013.6083C2.13056%2013.3472%202%2013.0333%202%2012.6667V3.33333C2%202.96667%202.13056%202.65278%202.39167%202.39167C2.65278%202.13056%202.96667%202%203.33333%202H8V3.33333H3.33333V12.6667H12.6667V8H14V12.6667C14%2013.0333%2013.8694%2013.3472%2013.6083%2013.6083C13.3472%2013.8694%2013.0333%2014%2012.6667%2014H3.33333ZM6.46667%2010.4667L5.53333%209.53333L11.7333%203.33333H9.33333V2H14V6.66667H12.6667V4.26667L6.46667%2010.4667Z'%20fill='white'%20/%3e%3c/g%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
}

ul[data-astro-cid-ttztgwaq]
  li[data-astro-cid-ttztgwaq]
  a[data-astro-cid-ttztgwaq].contact:before {
  display: none;
}

.fixed {
  position: fixed;
  top: var(--scroll-y);
  left: 0;
  width: 100%;
  height: 110%;
  overflow: hidden;
}
button,
*[role="button"] {
  cursor: pointer;
}

:root {
  --scroll-y: 0;
}

.fixed {
  position: fixed;
  top: var(--scroll-y);
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.user-select-none {
  -webkit-user-select: none;
  user-select: none;
}

@keyframes smooth-scroll-1 {
  0%,
  to {
    scroll-behavior: smooth;
  }
}

@keyframes smooth-scroll-2 {
  0%,
  to {
    scroll-behavior: smooth;
  }
}

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

@supports not selector(::-internal-media-controls-overlay-cast-button) {
  html {
    scroll-behavior: smooth;
  }
}

html {
  overflow-y: scroll;
  scroll-padding-top: 80px;
}

html {
  --scroll-y: 0;
}

.fixed[data-astro-cid-nfuxyiyp] {
  position: fixed;
  top: var(--scroll-y);
  left: 0;
  width: 100%;
  height: 110%;
  overflow: hidden;
}

button[data-astro-cid-nfuxyiyp],
[data-astro-cid-nfuxyiyp][role="button"] {
  cursor: pointer;
}
