@charset "UTF-8";
.clip-left {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  clip-path: inset(0 100% 0 0);
}
.clip-left.show {
  clip-path: inset(0 0 0 0);
}

:root {
  --color-black: #333;
  --color-green: #1c9146;
  --color-border: #cecbbd;
  --color-blue: #00469b;
  --color-grp1: #0085d0;
  --color-grp2: #00469b;
  --color-grp3: #05bcd4;
  --color-grp4: #ee8a38;
  --color-grp5: #20a04d;
  --color-grp6: #98438a;
  --color-grp7: #e50070;
  --color-grp8: #da0439;
}

.animate__animated {
  opacity: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.7;
}

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

html {
  font-size: 0.1333333333vmin;
}

body {
  font-family: "Akshar", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: var(--color-black);
  line-height: 1.8;
  min-height: 100%;
  font-size: 15px;
}

a {
  text-decoration: none;
  color: var(--color-black);
}

.pc {
  display: none;
}

p {
  line-height: 1.7;
  color: var(--color-black);
  font-size: 30rem;
}

header {
  position: relative;
  z-index: 10;
}
header .header-logo {
  position: absolute;
  top: 30rem;
  left: 20rem;
}
header .header-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .header-logo img {
  width: 120rem;
  margin-right: 20rem;
}
header .header-logo span {
  font-size: 30rem;
  font-weight: bold;
}

footer {
  margin-top: 200rem;
  padding: 90rem 0;
  background: var(--color-blue);
}
footer .inner-footer {
  display: -ms-grid;
  display: grid;
  gap: 30rem;
}
footer .box-info {
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .box-info .logo {
  width: 200rem;
  margin-right: 50rem;
}
footer .box-info .info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
footer .box-info .info p.name {
  color: #fff;
  font-size: 32rem;
  font-weight: bold;
  margin-bottom: 10rem;
}
footer .box-info .info address {
  font-size: 24rem;
  color: #fff;
  line-height: 1.5;
}
footer .box-group {
  position: relative;
  width: 90%;
  margin: 70rem auto 0;
  padding-top: 40rem;
}
footer .box-group::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0;
}
footer .box-group h3 {
  font-size: 32rem;
  font-weight: bold;
  color: #fff;
}
footer .box-group ul.group-list {
  margin-top: 20rem;
  display: -ms-grid;
  display: grid;
  gap: 10rem;
}
footer .box-group ul.group-list li {
  color: #fff;
  font-size: 26rem;
}
footer .box-group ul.group-list li a {
  color: #fff;
  font-size: 26rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .box-group ul.group-list li a::after {
  content: "";
  display: block;
  width: 25rem;
  height: 25rem;
  background: url("../images/external-link.svg") no-repeat center;
  background-size: contain;
  margin-bottom: 5rem;
  margin-left: 10rem;
}
footer small {
  color: #fff;
  display: block;
  text-align: center;
  font-size: 24rem;
  margin-top: 80rem;
}

#hm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  right: 40rem;
  top: 35rem;
  width: 84rem;
  height: 84rem;
  vertical-align: middle;
  text-align: center;
  z-index: 21;
  border: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
#hm::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

#hm-icon {
  display: block;
  position: absolute;
  top: 43rem;
  width: 40rem;
  height: 1px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#hm-icon:before,
#hm-icon:after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-blue);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#hm-icon:before {
  margin-top: -3px;
}

#hm-icon:after {
  margin-top: 3px;
}

.clicked #hm {
  background: #fff;
}

#hm .close {
  background: transparent;
}

#hm .close:before,
#hm .close:after {
  margin-top: 0;
}

#hm .close:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

#hm .close:after {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

#sp_menu {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 20;
  width: calc(100vw - 90rem);
  height: 100%;
  background-color: rgba(0, 70, 155, 0.95);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#sp_menu.open {
  visibility: visible;
  right: 0;
}
#sp_menu .menu-inner {
  width: 440rem;
  position: relative;
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  right: -10px;
}
#sp_menu .menu-inner.show {
  opacity: 1;
  right: 0;
}
#sp_menu .menu-inner nav {
  position: relative;
  margin: 20px 0 180rem;
}
#sp_menu .menu-inner nav ul {
  display: -ms-grid;
  display: grid;
  gap: 60rem;
}
#sp_menu .menu-inner nav ul li a {
  display: block;
  line-height: 1;
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 32rem;
}
#sp_menu .menu-inner nav ul li.btn {
  margin-top: 30rem;
}
#sp_menu .menu-inner nav ul li.btn a {
  background: #fff;
  color: var(--color-blue);
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 28rem;
  height: 100rem;
  padding: 10rem 20rem;
  border-radius: 50rem;
  position: relative;
}
#sp_menu .menu-inner nav ul li.btn a::before {
  position: absolute;
  left: 40rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 20rem;
  height: 20rem;
  background: url("../images/arrow-blue.svg") no-repeat center;
  background-size: contain;
  margin-left: 10rem;
}
#sp_menu .menu-inner .logo {
  width: 130rem;
  margin-bottom: 150rem;
}

.hstyle-primary {
  text-align: center;
  margin-bottom: 80rem;
}
.hstyle-primary span.wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hstyle-primary span {
  text-align: center;
}
.hstyle-primary span.ja {
  font-size: 30rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.hstyle-primary span.en {
  font-size: 100rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(19.23%, #2773ff), color-stop(90.87%, #00d48b));
  background: linear-gradient(0deg, #2773ff 19.23%, #00d48b 90.87%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  padding-bottom: 0.1em;
}
.hstyle-primary span.en::after {
  content: "";
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#01c380), to(#2773ff));
  background: linear-gradient(90deg, #01c380 0%, #2773ff 100%);
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

main.page-404 {
  padding: 200rem 0;
  width: 90%;
  margin: 0 auto;
}
main.page-404 .hstyle-primary {
  margin-bottom: 40rem;
  display: -ms-grid;
  display: grid;
}
main.page-404 .hstyle-primary span.en {
  color: var(--color-blue);
}
main.page-404 .hstyle-primary span.en::after {
  display: none;
}
main.page-404 p.hstyle-404 {
  font-weight: bold;
  margin-bottom: 30rem;
}
main.page-404 a.btn-404 {
  margin-top: 60rem;
  display: block;
  color: var(--color-blue);
  text-decoration: underline;
}

/**********************************************************************

 * Media Query For PC

 ***********************************************************************/
@media print, screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
  body {
    font-size: 15px;
    letter-spacing: 0.04em;
  }
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  p {
    font-size: min(20px, 1.25vw);
    line-height: 1.8;
  }
  header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: absolute;
    top: min(35px, 2.19vw);
    left: 50%;
    width: 96%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  header .header-logo {
    position: static;
  }
  header .header-logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .header-logo img {
    width: min(73px, 4.56vw);
    margin-right: min(20px, 1.25vw);
  }
  header .header-logo span {
    font-size: min(28px, 1.75vw);
    font-weight: bold;
  }
  header nav.pc ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav.pc ul li {
    font-size: min(20px, 1.25vw);
    font-weight: bold;
    margin: 0 min(20px, 1.25vw);
  }
  header nav.pc ul li:not(.btn) a {
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header nav.pc ul li:not(.btn) a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: -webkit-gradient(linear, left top, right top, from(#01c380), to(#2773ff));
    background: linear-gradient(90deg, #01c380 0%, #2773ff 100%);
    position: absolute;
    bottom: min(-5px, -0.31vw);
    left: 0;
    z-index: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header nav.pc ul li:not(.btn):hover a {
    color: var(--color-blue) !important;
  }
  header nav.pc ul li:not(.btn):hover a::after {
    width: 100%;
  }
  header nav.pc ul li.btn a {
    background: var(--color-blue);
    width: min(220px, 13.75vw);
    height: min(52px, 3.25vw);
    border-radius: min(26px, 1.63vw);
    font-size: min(18px, 1.13vw);
    font-weight: bold;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-height: 1;
    position: relative;
  }
  header nav.pc ul li.btn a::before {
    content: "";
    display: block;
    width: min(10px, 0.63vw);
    height: min(10px, 0.63vw);
    margin-right: min(10px, 0.63vw);
    background: url("../images/arrow-white.svg") no-repeat center;
    background-size: contain;
  }
  header nav.pc ul li.btn a:hover {
    background: #fff;
    border: 2px solid var(--color-blue);
  }
  header nav.pc ul li.btn a:hover span {
    color: var(--color-blue);
  }
  header nav.pc ul li.btn a:hover::before {
    background: url("../images/arrow-blue.svg") no-repeat center;
    background-size: contain;
  }
  #hm,
  #sp_menu {
    display: none !important;
  }
  footer {
    margin-top: min(200px, 12.5vw);
    padding: min(90px, 5.63vw) 0;
    background: var(--color-blue);
  }
  footer .inner-footer {
    margin: 0 auto;
    max-width: min(1000px, 62.5vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
  }
  footer .box-info {
    width: min(480px, 30vw);
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .box-info .logo {
    width: min(132px, 8.25vw);
    margin-right: min(30px, 1.88vw);
  }
  footer .box-info .info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  footer .box-info .info p.name {
    font-size: min(25px, 1.56vw);
    margin-bottom: min(10px, 0.63vw);
  }
  footer .box-info .info address {
    font-size: min(18px, 1.13vw);
  }
  footer .box-group {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
    width: 90%;
    margin: 0 0 0 min(60px, 3.75vw);
    padding-top: 0;
    padding-left: min(50px, 3.13vw);
  }
  footer .box-group::before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
  }
  footer .box-group h3 {
    font-size: min(19px, 1.19vw);
  }
  footer .box-group ul.group-list {
    margin-top: min(10px, 0.63vw);
    display: -ms-grid;
    display: grid;
    gap: min(1px, 0.06vw);
  }
  footer .box-group ul.group-list li {
    font-size: min(15px, 0.94vw);
  }
  footer .box-group ul.group-list li a {
    color: #fff;
    font-size: min(15px, 0.94vw);
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .box-group ul.group-list li a:hover {
    opacity: 0.8;
  }
  footer .box-group ul.group-list li a::after {
    content: "";
    display: block;
    width: min(14px, 0.88vw);
    height: min(14px, 0.88vw);
    background: url("../images/external-link.svg") no-repeat center;
    background-size: contain;
    margin-bottom: min(2px, 0.13vw);
    margin-left: min(5px, 0.31vw);
  }
  footer small {
    font-size: min(14px, 0.88vw);
    margin-top: min(80px, 5vw);
  }
  a.pagetop {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    visibility: hidden;
    opacity: 0;
    width: min(55px, 3.44vw);
    height: min(55px, 3.44vw);
    display: block;
    position: fixed;
    bottom: min(50px, 3.13vw);
    right: min(50px, 3.13vw);
    z-index: 10;
    background: -webkit-gradient(linear, left top, left bottom, from(#00d48b), to(#2773ff));
    background: linear-gradient(180deg, #00d48b 0%, #2773ff 100%);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  a.pagetop.show {
    opacity: 1;
    visibility: visible;
  }
  a.pagetop:hover span.arrow {
    -webkit-transform: translateY(-4px) rotate(-135deg);
            transform: translateY(-4px) rotate(-135deg);
  }
  a.pagetop span.arrow {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    width: min(12px, 0.75vw);
    height: min(12px, 0.75vw);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
    margin-top: min(8px, 0.5vw);
  }
  .hstyle-primary {
    margin-bottom: min(130px, 8.13vw);
  }
  .hstyle-primary span.ja {
    font-size: min(27px, 1.69vw);
    margin-top: min(10px, 0.63vw);
    margin-bottom: min(20px, 1.25vw);
  }
  .hstyle-primary span.en {
    font-size: min(138px, 8.63vw);
  }
  .hstyle-primary span.en::after {
    content: "";
    display: block;
    background: -webkit-gradient(linear, left top, right top, from(#01c380), to(#2773ff));
    background: linear-gradient(90deg, #01c380 0%, #2773ff 100%);
    width: 100%;
    height: min(3px, 0.19vw);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
  }
  main.page-404 {
    padding: min(200px, 12.5vw) 0;
    width: 90%;
    margin: 0 auto;
  }
  main.page-404 .hstyle-primary {
    margin-bottom: min(40px, 2.5vw);
    display: -ms-grid;
    display: grid;
  }
  main.page-404 .hstyle-primary span.en {
    color: var(--color-blue);
    font-size: min(70px, 4.38vw);
  }
  main.page-404 .hstyle-primary span.en::after {
    display: none;
  }
  main.page-404 p {
    text-align: center;
  }
  main.page-404 p.hstyle-404 {
    font-weight: bold;
    margin-bottom: min(30px, 1.88vw);
    text-align: center;
  }
  main.page-404 a.btn-404 {
    text-align: center;
    margin-top: min(60px, 3.75vw);
    font-size: min(18px, 1.13vw);
    display: block;
    color: var(--color-blue);
    text-decoration: underline;
  }
}
/*# sourceMappingURL=common.css.map */