@charset "UTF-8";

/*----------------------------------------
	共通部分
----------------------------------------*/
html {
  font-size: 10px;
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;

}

body {
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #231815;
  width: 100%;
  overflow-x: hidden;
  text-align: center;
}

main {
  display: block;
}

a {
  color: #222;
  outline: none;
  text-decoration: none;
  transition: 0.3s;
}

/* a:hover {
  opacity: 0.7;
} */

img {
  width: 100%;
  height: auto;
}

dt,
th {
  font-weight: bold;
}

button {
  color: #333;
}

/*----------------------------------------
	l-container
----------------------------------------*/

.l-container {
  display: block;
  position: relative;
}

/*----------------------------------------
	l-header
----------------------------------------*/
.l-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 90px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 29;
  background-color: #fff;
}

.l-header__logo {
  position: relative;
  width: 140px;
  height: auto;
  z-index: 31;

}

.l-header__logo a {
  display: block;
  width: 100%;
}

.l-header__menu {
  display: flex;
  align-items: center;
  gap: 45px;
}

.l-header__cv {
  width: 175px;
}

.l-header__cv a {
  display: block;
  padding: 40px 18px;
  background-color: #54c3f1;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}

.l-header__nav ul {
  display: flex;
  gap: 35px;
}

.l-header__nav ul a {
  display: inline-block;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2;
}
.l-header__nav ul a:hover {
  color: #54c3f1;
}

.l-header__hum {
  display: none;
}

@media screen and (max-width: 1199px) {
  .l-header__nav ul {
    gap: 2.917vw;
  }

  .l-header__nav ul a {
    font-size: 1.167vw;
  }

}

@media screen and (max-width: 767px) {
  .l-header {
    padding: 0 0 0 3.3vw;
  }

  .l-header__logo {
    position: relative;
    width: 120px;
    z-index: 31;
  }

  .l-header__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: #54c3f1;
    padding: 22.535vw 0 9.859vw;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
    z-index: 30;
    display: block;
  }

  .l-header__nav ul {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
  }

  .l-header__nav ul li {
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }

  .l-header__nav ul a {
    display: block;
    font-size: 4.1vw;
    line-height: 1;
    padding-block: 5.634vw;
    padding-inline: 11.268vw 9.859vw;
    color: #fff;
    position: relative;
  }
  .l-header__nav ul a::after {
  content: "";
  display: block;
  width: 3vw;
  height: 3vw;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  right: 12%;
  top: 50%;
}

  .l-header__hum {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 70px;
    height: 70px;
    background-color: transparent;
    cursor: pointer;
    z-index: 31;
    box-sizing: border-box;
  }

  .l-header__hum div {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 22px;
    height: 16px;
  }

  .l-header__hum span {
    display: block;
    width: 100%;
    height: 2px;
    background: #54c3f1;
    transition: 0.3s;
  }

  .l-header__hum p {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
    margin: 8px 0 0;
  }

  .l-header.active .l-header__menu {
    opacity: 1;
    visibility: visible;
  }

  .l-header.active .l-header__hum span:nth-child(1) {
    transform: translateY(7px) rotate(-45deg);
    background: #fff;
  }

  .l-header.active .l-header__hum span:nth-child(2) {
    opacity: 0;
  }

  .l-header.active .l-header__hum span:nth-child(3) {
    transform: translateY(-7px) rotate(45deg);
    background: #fff;
  }

  .l-header__cv {
    width: 81.69vw;
    margin: 27px auto 0;
  }

  .l-header__cv a {
    padding: 5.07vw 0;
    font-size: 4.1vw;
    font-weight: 600;
    line-height: 1;
    background-color: #fff;
    color: #231815;
    border-radius: 9.859vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
    .l-header__cv a::after {
    content: "";
    display: block;
    width: 3vw;
    height: 3vw;
    border-top: 1.5px solid #54c3f1;
    border-right: 1.5px solid #54c3f1;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    right: 8%;
    top: 50%;
}
}

/*----------------------------------------
	l-footer
----------------------------------------*/
.l-footer {
  width: 100%;
  background-color: #dadada;
  padding: 40px 50px 45px;
}

.l-footer__logo {
  width: 135px;
  height: auto;
}

.l-footer__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.l-footer__link {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 18px;
}

.l-footer__nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.l-footer__nav li a {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 2;
}

.l-footer__attention .item-cv {
  width: 140px;
}

.l-footer__attention .item-cv a {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #333;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
}

.l-footer__attention .item-cv a:hover {
  border: 1px solid #54c3f1;
  background-color: #54c3f1;
  color: #fff;


}
.l-footer__attention .item-insta {
  display: none;
}

.l-footer__sub {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 40px;
}

.l-footer__sub li a {
  font-size: 1.2rem;
  line-height: 2;
}

.l-footer__sub li a img {
  width: 25px;
  height: auto;
}

.l-footer__copyright {
  display: block;
  text-align: right;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .l-footer {
    padding: 9.167vw 3vw 10vw;
  }

  .l-footer__logo {
    width: 29vw;
    margin: 0 auto 35px;
  }

  .l-footer__main {
    display: block;
  }

  .l-footer__link {
    display: block;
    margin-bottom: 4.167vw;
  }

  .l-footer__nav {
    gap: 0;
    justify-content: space-between;
    margin-bottom: 4.167vw;
  }

  .l-footer__nav li a {
    font-size: 2.4vw;
  }

  .l-footer__attention {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4vw;
  }

  .l-footer__attention .item-insta {
    display: block;
    width: 7.167vw;
    height: auto;
  }

  .l-footer__attention .item-cv {
    width: 25vw;
  }

  .l-footer__attention .item-cv a {
    width: 25vw;
    padding: 2.5vw 0;
    font-size: 2vw;
    font-weight: 600;
    line-height: 1;
  }

  .l-footer__sub {
    justify-content: center;
    margin-bottom: 4.167vw;
  }

  .l-footer__sub li a {
    font-size: 2.4vw;
  }

  .l-footer__sub li:first-child {
    display: none;
  }

  .l-footer__copyright {
    display: block;
    text-align: center;
    font-size: 2vw;
  }


}

/*-----------------------------------------------
l-bg
-------------------------------------------------*/
.l-bg {
  width: 100vw;
  height: auto;
  position: relative;
}

.l-bg::before {
  content: "";
  display: block;
  background: linear-gradient(#d8effc 0%, #fffbcf 100%);
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}