@charset "UTF-8";
/* ----------------------
全体共通
----------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  font-size: 100px; }

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.16rem;
  line-height: 1.8;
  color: #2D3A40;
  background: #fff; }
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.center {
  max-width: 1092px;
  margin: 0 auto; }

@media screen and (max-width: 1092px) {
  .center {
    width: 90%; } }
.flow {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center; }

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out; }

.fade-up.show {
  opacity: 1;
  transform: translateY(0); }

.fade-up:nth-child(2).show {
  transition-delay: 0.5s; }

.dis_non {
  display: none; }

@media screen and (max-width: 667px) {
  .dis_non {
    display: block; } }
/* ----------------------
HEADER FOOTER
----------------------*/
.header {
  width: 100%;
  height: 96px;
  background-color: transparent;
  position: fixed;
  top: 0;
  right: 0;
  transition: all 0.3s;
  z-index: 3; }
  .header .header__inner {
    width: 100%;
    height: 100%;
    padding: 0 44px;
    position: relative; }
  @media screen and (max-width: 667px) {
    .header .header__inner {
      padding: 0 20px; } }
  .header h1 figure {
    width: 255px;
    height: 39.28px; }
  @media screen and (max-width: 667px) {
    .header h1 figure {
      width: 175px;
      height: auto; } }
.header h1 figure img {
  vertical-align: super;
}
@media screen and (max-width: 667px) {
.header h1 figure img {
    vertical-align: inherit;
}
}

@media screen and (max-width: 667px) {
  .header {
    height: 60px; } }
.header__hamburger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(-45deg, #27DFCE, #1F9CF6);
  padding: 3px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  cursor: pointer; }
  .header__hamburger .header__hamburgerinr {
    background: #fff;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    margin: 0 auto;
    flex-direction: column;
    gap: 5.48px;
    /* 2本線の間隔 */
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center; }
    .header__hamburger .header__hamburgerinr span {
      display: block;
      width: 50%;
      height: 2.73px;
      background: linear-gradient(-45deg, #27DFCE, #1F9CF6);
      transition: transform 0.3s ease-in-out; }
    @media screen and (max-width: 667px) {
      .header__hamburger .header__hamburgerinr span {
        height: 2px; } }
  @media screen and (max-width: 667px) {
    .header__hamburger .header__hamburgerinr {
      width: 40px;
      height: 40px; } }

@media screen and (max-width: 667px) {
  .header__hamburger {
    width: 44px;
    height: 44px;
    padding: 2px; } }
/* アニメーションを追加 */
.header__hamburger.open span:first-child {
  transform: translateY(4px) rotate(45deg); }

.header__hamburger.open span:last-child {
  transform: translateY(-4px) rotate(-45deg); }

.drawer-nav {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 96px;
  background: #fff;
  width: 100vw;
  display: none;
  padding-bottom: 64px; }
  .drawer-nav .drawer_layer {
    height: 100vh;
    width: 100%;
    z-index: -1;
    background: rgba(1, 127, 218, 0.72);
    position: absolute; }
  .drawer-nav .header__nav {
    margin: 32px auto 52px; }
    .drawer-nav .header__nav li {
      margin-bottom: 32px;
      text-align: center; }
      .drawer-nav .header__nav li a {
        font-weight: 700;
        font-size: 0.2rem;
        color: #017FDA;
        position: relative; }
      @media screen and (max-width: 667px) {
        .drawer-nav .header__nav li a {
          font-size: 0.18rem; } }
      .drawer-nav .header__nav li a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0;
        height: 3px;
        background: #017FDA;
        transition: width 0.4s ease; }
      .drawer-nav .header__nav li a:hover::after {
        width: 100%; }

@media screen and (max-width: 667px) {
  .drawer-nav {
    margin-top: 60px;
    padding-bottom: 40px; } }
.header:has(.header__hamburger.open) {
  background-color: #fff; }

footer {
  width: 100%;
  background: #017FDA;
  padding: 38px 0;
  text-align: center; }
  footer .foot__copy {
    display: inline-block;
    color: #fff;
    font-weight: 700;
    font-size: 0.13rem; }

@media screen and (max-width: 667px) {
  footer {
    padding: 24px 0; } }
/* ----------------------
BUTTON
----------------------*/
.btn {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center; }
  .btn a {
    display: block;
    width: 228px;
    height: 56px;
    background: linear-gradient(90deg, #F3C442, #FF9900);
    color: #fff;
    border-radius: 36px;
    font-size: 0.18rem;
    font-weight: 700;
    padding: 19px 26px;
    text-align: left;
    position: relative;
    line-height: 1; }
  .btn a:hover {
    opacity: 0.8; }
  .btn a::after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 54px;
    height: 56px;
    background: url(../img/arrow_btn.png);
    background-size: contain; }

/* ----------------------
TITLE
----------------------*/
.subttl {
  font-weight: 500;
  font-size: 0.24rem;
  text-align: center;
  background: linear-gradient(-45deg, #27DFCE, #1F9CF6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  display: block; }

@media screen and (max-width: 667px) {
  .subttl {
    font-size: 0.16rem; } }
h3 {
  font-weight: 700;
  font-size: 0.32rem;
  text-align: center;
  background: linear-gradient(-45deg, #27DFCE, #1F9CF6);
  color: #fff;
  display: inline-block;
  padding: 22px 20px;
  border-radius: 8px;
  line-height: 1;
  margin-bottom: 40px; }

@media screen and (max-width: 667px) {
  h3 {
    font-size: 0.24rem;
    padding: 16px;
    margin-bottom: 28px; } }
#about .subttl {
  font-weight: 700;
  font-size: 0.24rem;
  text-align: center;
  color: #fff;
  margin-bottom: 12px; }
@media screen and (max-width: 667px) {
  #about .subttl {
    font-size: 0.16rem; } }
#about .h3_blc {
  background: #fff;
  display: inline-block;
  padding: 22px 20px;
  border-radius: 8px;
  margin-bottom: 40px; }
  #about .h3_blc h3 {
    font-weight: 700;
    font-size: 0.32rem;
    text-align: center;
    background: linear-gradient(-45deg, #27DFCE, #1F9CF6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0;
    margin-bottom: 0; }
@media screen and (max-width: 667px) {
  #about .h3_blc {
    padding: 16px;
    margin-bottom: 28px; }
    #about .h3_blc h3 {
      font-size: 0.24rem;
  letter-spacing: -0.06em;} }

#entry .subttl {
  font-weight: 500;
  font-size: 0.24rem;
  text-align: center;
  color: #fff;
  margin-bottom: 12px; }
@media screen and (max-width: 667px) {
  #entry .subttl {
    font-size: 0.16rem; } }
#entry .h3_blc {
  background: #fff;
  display: inline-block;
  border-radius: 8px;
  margin-bottom: 40px; }
  #entry .h3_blc h3 {
    font-weight: 700;
    font-size: 0.32rem;
    text-align: center;
    background: linear-gradient(45deg, #FF9900, #F3C442);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0; }
@media screen and (max-width: 667px) {
  #entry .h3_blc {
    padding: 16px;
    margin-bottom: 28px; }
    #entry .h3_blc h3 {
      font-size: 0.24rem;
      padding: 0; } }

