@charset "UTF-8";
/* =========================================================
reset
========================================================= */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* =========================================================
base
========================================================= */
html,
body {
  overflow-x: clip;
  overscroll-behavior-x: none;
  scroll-behavior: smooth;
  width: 100%;
}

html {
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  background: #e6e6e6;
  box-sizing: border-box;
  color: #3e3a39;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", "YuGothic", "IBM Plex Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  min-height: 100dvh;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  margin: 0;
  padding: 0;
}

a {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: 0.4s;
  -webkit-tap-highlight-color: transparent;
}

p {
  margin: 0;
  padding: 0;
}

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

figure {
  margin: 0;
  padding: 0;
}

dl,
dt,
dd,
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pc-show {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-show {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .sp-show {
    display: none;
  }
}

/* =========================================================
header
========================================================= */
.c-header {
  width: 100%;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 10;
}
@media screen and (min-width: 992px) {
  .c-header {
    top: 40px;
  }
}
.c-header--wrap {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(15px, 2vw, 20px) 15px;
  max-width: 1800px;
  margin: 0 auto;
  width: 95%;
}
@media screen and (min-width: 992px) {
  .c-header--wrap {
    padding: 25px 5%;
    height: auto;
  }
}
.c-header-logo {
  display: inline-block;
  max-width: 140px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .c-header-logo {
    max-width: 210px;
  }
}
.c-header-nav {
  max-width: 770px;
  width: 65%;
}
.c-header-nav--list {
  display: none;
}
@media screen and (min-width: 992px) {
  .c-header-nav--list {
    display: flex;
    justify-content: space-between;
  }
}
.c-header-nav--item {
  position: relative;
  padding-left: 10px;
}
.c-header-nav--item a {
  font-size: 20px;
  font-weight: bold;
  position: relative;
}
.c-header-nav--item a::after {
  background-color: #004669;
  content: "";
  display: block;
  height: 1px;
  width: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.4s;
}
.c-header-nav--item a:hover::after {
  background-color: #004669;
  width: 100%;
}
.c-header-nav--item.parent > a {
  padding-right: 20px;
}
.c-header-nav--item.parent > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-right: 2px solid #3e3a39;
  border-bottom: 2px solid #3e3a39;
  transform: translateY(-65%) rotate(45deg);
  transition: 0.3s;
}
.c-header-nav--item.parent:hover > a::before {
  transform: translateY(-35%) rotate(-135deg);
}
.c-header-nav--item.parent:hover .c-header-mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-24%, 0);
  pointer-events: auto;
}
.c-header-mega {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 20px 15px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.35s ease;
  width: 210px;
  z-index: 20;
}
.c-header-mega li {
  margin-bottom: 15px;
}
.c-header-mega li:last-of-type {
  margin-bottom: 0;
}
.c-header-mega li a {
  display: block;
  text-align: center;
  width: 100%;
  padding: 10px;
}
.c-header-mega li a:hover {
  background: rgba(0, 70, 105, 0.08);
}

/* =========================================================
footer
========================================================= */
.c-footcontact {
  background: url(../images/common/bg_footcontact_sp.webp) no-repeat center bottom;
  background-size: cover;
  padding: 40px 0;
}
@media screen and (min-width: 992px) {
  .c-footcontact {
    background: url(../images/common/bg_footcontact.webp) no-repeat center bottom;
    background-size: cover;
    padding: 60px 0;
  }
}
.c-footcontact--wrap {
  max-width: 840px;
  margin: 0 auto;
  width: 90%;
}
.c-footcontact-title {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .c-footcontact-title {
    margin-bottom: 40px;
  }
}
.c-footcontact-title .eng {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.125em;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 992px) {
  .c-footcontact-title .eng {
    font-size: 6.4rem;
  }
}
.c-footcontact-title .eng .char {
  display: inline-block;
  background: linear-gradient(to right, #209cff, #59d3da);
  background-size: 200% auto;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.c-footcontact-title .jp {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 992px) {
  .c-footcontact-title .jp {
    font-size: 16px;
  }
}
.c-footcontact-subtitle {
  color: #3e3a39;
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .c-footcontact-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.c-footcontact-text {
  color: #3e3a39;
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .c-footcontact-text {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .c-footcontact-text .sp {
    display: none;
  }
}
.c-footcontact-button {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-footcontact-button {
    flex-direction: row;
    margin-top: 40px;
  }
}
.c-footcontact-button .button {
  border-radius: 5px;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  display: block;
  padding: 15px 10px;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .c-footcontact-button .button {
    font-size: 18px;
  }
}
.c-footcontact-button .button.blue {
  background: #004669;
}
.c-footcontact-button .button.yellow {
  background: #f8b500;
}
.c-footcontact-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 15px auto 0;
  max-width: 680px;
}
.c-footcontact-list li {
  border-radius: 5px;
  color: #3e3a39;
  font-weight: bold;
  font-size: 14px;
  display: block;
  padding: 50px 10px 10px;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-footcontact-list li {
    padding: 10px 10px 10px 35px;
  }
}
@media screen and (min-width: 992px) {
  .c-footcontact-list li {
    font-size: 15px;
  }
}
.c-footcontact-list li.consultation {
  background-image: url(../images/common/icon_footcontact_01.webp);
  background-position: center top 10px;
  background-repeat: no-repeat;
  background-size: 25px auto;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-footcontact-list li.consultation {
    background-position: left 10px center;
  }
}
.c-footcontact-list li.response {
  background-image: url(../images/common/icon_footcontact_02.webp);
  background-position: center top 15px;
  background-repeat: no-repeat;
  background-size: 22px auto;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-footcontact-list li.response {
    background-position: left 10px center;
  }
}
.c-footcontact-list li.support {
  background-image: url(../images/common/icon_footcontact_03.webp);
  background-position: center top 10px;
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-footcontact-list li.support {
    background-position: left 10px center;
  }
}

.c-footer {
  background: rgba(255, 255, 255, 0.2);
  padding: 30px 0;
}
@media screen and (min-width: 992px) {
  .c-footer {
    padding: 50px 0;
  }
}
.c-footer-container {
  max-width: 1500px;
  margin: 0 auto;
  width: 98%;
}
.c-footer-main {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .c-footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.c-footer-logo {
  margin-bottom: 20px;
}
.c-footer-logo a {
  display: inline-block;
  max-width: 180px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .c-footer-logo a {
    max-width: 210px;
  }
}
.c-footer-nav ul {
  text-align: center;
}
.c-footer-nav ul li {
  display: inline-block;
}
.c-footer-nav ul li a {
  color: #3e3a39;
  font-size: 14px;
  font-weight: bold;
  margin: 0 10px;
}
@media screen and (min-width: 992px) {
  .c-footer-nav ul li a {
    font-size: 16px;
    margin: 0 0 0 10px;
  }
}
.c-footer-subnav {
  text-align: center;
  padding-top: 20px;
}
.c-footer-subnav--wrap {
  margin: 0 auto;
  width: 98%;
}
.c-footer-subnav li {
  display: inline-block;
}
.c-footer-subnav li a {
  color: #3e3a39;
  font-size: 14px;
  margin: 0 10px;
}
@media screen and (min-width: 992px) {
  .c-footer-subnav li a {
    font-size: 16px;
    margin: 0 20px;
  }
}
.c-footer-copy {
  text-align: center;
  padding: 30px 0 0;
}
.c-footer-copy small {
  color: #3e3a39;
  font-size: 12px;
}
@media screen and (min-width: 992px) {
  .c-footer-copy small {
    font-size: 14px;
  }
}

/* =========================================================
drawer
========================================================= */
.c-drawer {
  margin-left: 2vw;
}
@media screen and (min-width: 768px) {
  .c-drawer {
    margin-left: 1vw;
  }
}
.c-drawer-container {
  max-width: 0;
  width: 70vw;
  position: fixed;
  top: 0;
  right: -350px;
  transition: 0.4s;
  z-index: 999;
}
.c-drawer-container--wrap {
  background-color: #00496C;
  border-left: 5px solid #d5d5d5;
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-bottom: 5vh;
  scrollbar-color: #929292 #fff;
  scrollbar-width: thin;
}
.c-drawer-container--wrap::-webkit-scrollbar {
  width: 8px;
  background-color: #a5915a;
}
.c-drawer-container--wrap::-webkit-scrollbar-thumb {
  background: #929292;
  width: 6px;
  border-radius: 5px;
}
.c-drawer-nav {
  padding: 20px;
}
.c-drawer-nav ul li {
  margin-bottom: 10px;
}
.c-drawer-nav ul li a {
  border: 1px solid #ffffff;
  border-radius: 10px;
  color: #ffffff;
  display: block;
  padding: 10px 15px;
  text-align: center;
}
.c-drawer-nav ul li .c-drawer-mega {
  padding: 10px 0 0 20px;
}
.c-drawer-nav ul li .c-drawer-mega a {
  background: rgba(255, 255, 255, 0.2);
  text-align: left;
}
.c-drawer-label {
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(3% + 20px);
  margin: auto;
}
@media screen and (min-width: 992px) {
  .c-drawer-label {
    display: none;
  }
}
.c-drawer-label:hover .icon .border,
.c-drawer-label:hover .icon::before {
  transition: 0.4s;
  width: 18px;
}
.c-drawer-label .icon {
  border-radius: 50px;
  height: 36px;
  width: 36px;
  position: relative;
  transition: 0.4s;
}
@media screen and (min-width: 768px) {
  .c-drawer-label .icon {
    width: 30px;
  }
}
.c-drawer-label .icon::before, .c-drawer-label .icon::after {
  background-color: #00496C;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.c-drawer-label .icon::before {
  top: 22px;
  width: 36px;
}
.c-drawer-label .icon::after {
  bottom: 22px;
  width: 36px;
}
.c-drawer-label .icon .border {
  background-color: #00496C;
  height: 2px;
  width: 36px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.c-drawer--close {
  background-color: #929292;
  color: #fff;
  cursor: pointer;
  font-size: clamp(11px, 1.3vw, 13px);
  overflow: hidden;
  padding: 3px 2rem;
  position: absolute;
  left: -44px;
  top: 50%;
  transform: translate(-50%, -50%);
  transform: rotate(-90deg);
  transition: 0.3s;
}
@media screen and (min-width: 992px) {
  .c-drawer--close {
    font-size: 13px;
  }
}
.c-drawer--close::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  display: block;
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.c-drawer--close:hover::before {
  bottom: 0;
}

#drawer-toggle:checked ~ .c-drawer-container {
  max-width: 350px;
  right: 0;
}
#drawer-toggle:checked ~ .c-drawer-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
}

.c-hdnews ~ .c-drawer .c-drawer--label {
  top: 48px;
}

/* =========================================================
animation
========================================================= */
.js-gsap-text .char {
  display: inline-block;
  will-change: opacity, filter;
}

.js-gsap-clip {
  overflow: hidden;
  will-change: clip-path;
}

.js-gsap-fade {
  will-change: transform, opacity;
}

.js-gsap-turn {
  --turn-x: 0%;
  display: block;
  position: relative;
  overflow: hidden;
}
.js-gsap-turn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--turn-bg, #e6e6e6);
  z-index: 2;
  transform: translateX(var(--turn-x));
  pointer-events: none;
}
.js-gsap-turn img {
  display: block;
  width: 100%;
}

.js-gsap-fade-in {
  will-change: opacity;
}

.js-gsap-clip-overlay {
  position: relative;
}
.js-gsap-clip-overlay::before {
  background: linear-gradient(90deg, rgb(59, 117, 211) 0%, rgb(163, 220, 246) 100%);
  position: absolute;
  inset: 0;
  content: "";
  mix-blend-mode: multiply;
  -webkit-clip-path: var(--clip-overlay, inset(0 100% 0 0));
          clip-path: var(--clip-overlay, inset(0 100% 0 0));
  opacity: var(--overlay-opacity, 0);
  z-index: 1;
  pointer-events: none;
}
/*# sourceMappingURL=style-common.css.map */