@charset "UTF-8";
body {
  line-height: 1.6;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
}

.inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

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

.section__title {
  text-align: center;
}

.title--en {
  font-family: "Zen Maru Gothic", serif;
  font-size: 40px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .title--en {
    font-size: 64px;
  }
}

.title--ja {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .title--ja {
    font-size: 20px;
  }
}

.button {
  font-weight: 500;
  letter-spacing: 0.48px;
  padding: 5px 10px;
  display: inline-block;
  border-radius: 60px;
  background: #79a8e6;
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  min-width: 150px;
  text-align: center;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.button:hover {
  color: #fff;
  background-color: #3764f9;
}

.fade-in {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 1.5s ease-in-out, -webkit-transform 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out, -webkit-transform 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out, -webkit-transform 1.5s ease-in-out;
}
.fade-in.is-show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.header {
  width: 100%;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  background: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.header.is-checked {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
}

.header__inner {
  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;
  padding: 22px 15px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.header__logo a img {
  width: 87px;
  display: block;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}

@media screen and (min-width: 768px) {
  .header__link {
    position: relative;
    font-size: 28px;
    font-family: "Zen Maru Gothic", serif;
  }
  .header__link::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: #79a8e6;
    bottom: 0;
    left: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  }
  .header__link:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

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

.drawer-icon {
  width: 36px;
  height: 24px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #fff;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: #fff;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 6px;
  background: #111;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 12px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 24px;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: rgb(63, 145, 239);
  color: #fff;
  z-index: 40;
  padding: 150px 40px 40px 40px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__link {
  display: block;
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 600;
  font-size: 26px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.main-visual {
  padding: 250px 0px 80px 0px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .main-visual {
    padding: 350px 0px 80px 0px;
  }
}

.main-visual__inner {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.main-visual__content {
  position: relative;
}

.main-visual__circle1 {
  position: absolute;
  top: -90px;
  left: 10.6666666667%;
  width: 19.556714472vw;
  height: 19.556714472vw;
  border-radius: 50%;
  background-color: #def1ff;
  opacity: 0.5;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .main-visual__circle1 {
    width: 200px;
    height: 200px;
    top: -200px;
    left: 4.3859649123%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .main-visual__circle1 {
    width: 17.5438596vw;
    height: 17.5438596vw;
  }
}

.main-visual__circle2 {
  position: absolute;
  top: -70px;
  left: 4%;
  width: 19.556714472vw;
  height: 19.556714472vw;
  border-radius: 50%;
  background-color: rgba(195, 220, 250, 0.3);
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .main-visual__circle2 {
    width: 200px;
    height: 200px;
    top: -170px;
    left: 0.0877192982%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .main-visual__circle2 {
    width: 17.5438596vw;
    height: 17.5438596vw;
  }
}

.main-visual__title {
  margin-left: auto;
  margin-right: auto;
  font-family: "Zen Maru Gothic", serif;
  font-size: 26px;
  overflow: hidden; /*必須*/
  white-space: nowrap; /*必須*/
  -webkit-text-decoration: underline solid rgba(172, 220, 255, 0.8) 5px;
          text-decoration: underline solid rgba(172, 220, 255, 0.8) 5px;
  z-index: 30;
  border-right: 3px solid #000; /*点滅バー*/
  -webkit-animation: typing 3s steps(23), blink 0.4s step-end infinite alternate;
          animation: typing 3s steps(23), blink 0.4s step-end infinite alternate; /*アニメーション関連*/
  width: 23ch;
}
@media screen and (min-width: 768px) {
  .main-visual__title {
    font-size: 60px;
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .main-visual__title {
    font-size: 5.86510264vw;
  }
}
@media (max-width: 375px) {
  .main-visual__title {
    font-size: 22px;
  }
}

@-webkit-keyframes typing {
  from {
    width: 0;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
}
@-webkit-keyframes blink {
  50% {
    border-color: transparent; /*点滅風に見せる*/
  }
}
@keyframes blink {
  50% {
    border-color: transparent; /*点滅風に見せる*/
  }
}
.main-visual__text {
  margin-top: 10px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .main-visual__text {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .main-visual__text {
    font-size: 2.10526316vw;
  }
}

.main-visual__description {
  position: relative;
  right: 40%;
}

.main-visual__description-circle {
  position: relative;
  top: 10px;
  left: 61.3333333333%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #def1ff;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-visual__description-circle::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(195, 220, 250, 0.3);
}
@media screen and (min-width: 768px) {
  .main-visual__description-circle {
    width: 300px;
    height: 300px;
    left: 65.7894736842%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .main-visual__description-circle {
    width: 26.3157895vw;
    height: 26.3157895vw;
  }
}

.main-visual__description-text {
  font-size: 11px;
  width: 50%;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .main-visual__description-text {
    font-size: 15px;
    width: 70%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .main-visual__description-text {
    font-size: 1.5vw;
  }
}

.about {
  padding-top: 35px;
  padding-bottom: 80px;
  background: rgba(210, 229, 252, 0.45);
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}

@media screen and (min-width: 768px) {
  .about__inner {
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
  }
}

.about__content {
  margin-top: 45px;
}
@media screen and (min-width: 768px) {
  .about__content {
    margin-top: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.about__image {
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__image {
    width: 39.4736842105%;
    padding: 0;
  }
}
.about__image img {
  border-radius: 10px;
  width: 280px;
}
@media screen and (min-width: 768px) {
  .about__image img {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .about__block {
    max-width: 60%;
    margin-left: 40px;
  }
}

.about__name {
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .about__name {
    text-align: left;
    margin-top: 0;
  }
}

.name--en {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .name--en {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .name--en {
    font-size: 20px;
  }
}

.name--ja {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .name--ja {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .name--ja {
    font-size: 26px;
  }
}

.about__text {
  font-size: 14px;
  margin-top: 23px;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 20px;
    text-align: left;
    padding: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about__text {
    font-size: 16px;
  }
}

.about__text p {
  margin-top: 15px;
}
.about__text p:first-child {
  margin-top: 0;
}

.about__button {
  text-align: center;
  margin-top: 23px;
}
@media screen and (min-width: 768px) {
  .about__button {
    text-align: right;
    margin-top: 55px;
  }
}

.about__description {
  position: relative;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .about__description {
    margin-top: 0;
    top: -650px;
    margin-left: 70%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about__description {
    top: -550px;
  }
}

.about__description-circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__description-circle {
    width: 240px;
    height: 240px;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about__description-circle {
    width: 21.5053763vw;
    height: 21.5053763vw;
  }
}
.about__description-circle::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
}
.about__description-circle::after {
  content: "";
  position: absolute;
  left: -25%;
  top: 130px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
}

.about__description-text {
  font-size: 11px;
  width: 60%;
}
@media screen and (min-width: 768px) {
  .about__description-text {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about__description-text {
    font-size: 1.5vw;
    width: 70%;
  }
}

.works {
  padding-top: 35px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .works {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

.works__inner {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.works__slider {
  margin-top: 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .works__slider::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(195, 220, 250, 0.3);
    width: 350px;
    height: 350px;
    left: 60%;
    top: -70px;
    z-index: -1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .works__slider::after {
    width: 29.3255132vw;
    height: 29.3255132vw;
  }
}
.works__slider::before {
  content: "";
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background: rgba(195, 220, 250, 0.3);
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .works__slider::before {
    width: 350px;
    height: 350px;
    top: 30px;
    left: 20%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .works__slider::before {
    top: 100px;
    width: 29.3255132vw;
    height: 29.3255132vw;
  }
}

.works__swiper {
  padding-bottom: 30px;
}

.works__slide img {
  border-radius: 3%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.works__slide img:hover {
  opacity: 0.8;
}

.works__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  bottom: 0 !important;
}

.works__button {
  text-align: center;
  margin-top: 30px;
}

.works__description {
  position: relative;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .works__description {
    margin-top: 40px;
  }
}

.works__description-circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-color: #def1ff;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .works__description-circle {
    width: 230px;
    height: 230px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .works__description-circle {
    width: 21.5053763vw;
    height: 21.5053763vw;
  }
}
.works__description-circle::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 130px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(195, 220, 250, 0.3);
}
@media screen and (min-width: 768px) {
  .works__description-circle::before {
    top: 150px;
  }
}
.works__description-circle::after {
  content: "";
  position: absolute;
  left: -25%;
  top: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(195, 220, 250, 0.3);
}

.works__description-text {
  font-size: 11px;
  width: 65%;
}
@media screen and (min-width: 768px) {
  .works__description-text {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .works__description-text {
    font-size: 1.5vw;
    width: 70%;
  }
}

.contact {
  padding-top: 35px;
  padding-bottom: 35px;
  background: rgba(210, 229, 252, 0.45);
}
@media screen and (min-width: 768px) {
  .contact {
    padding-bottom: 50px;
  }
}

.contact__inner {
  text-align: center;
}

.contact__link {
  display: inline-block;
  margin-top: 20px;
  font-size: 22px;
  font-weight: 600;
  position: relative;
  padding-left: 30px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.contact__link:hover {
  color: #3764f9;
}
@media screen and (min-width: 768px) {
  .contact__link {
    margin-top: 25px;
    font-size: 40px;
    padding-left: 60px;
  }
}
.contact__link::before {
  content: "";
  position: absolute;
  background: url(../img/contact-icon.png) no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .contact__link::before {
    width: 48px;
    height: 48px;
  }
}

.footer {
  background: rgba(210, 229, 252, 0.45);
  padding-top: 8px;
  padding-bottom: 12px;
  text-align: center;
}

.pagetop {
  position: fixed;
  right: 10px;
  bottom: 25px;
  width: 60px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .pagetop {
    right: 16px;
    bottom: 30px;
    width: 85px;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.about-detail {
  padding-top: 100px;
  padding-bottom: 80px;
  background: rgba(210, 229, 252, 0.45);
}
@media screen and (min-width: 768px) {
  .about-detail {
    padding-top: 100px;
    padding-bottom: 30px;
  }
}

@media screen and (min-width: 768px) {
  .about-detail__inner {
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
  }
}

.about-detail__content {
  margin-top: 45px;
}
@media screen and (min-width: 768px) {
  .about-detail__content {
    margin-top: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.about-detail__image {
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about-detail__image {
    width: 39.4736842105%;
    padding: 0;
  }
}
.about-detail__image img {
  border-radius: 10px;
  width: 280px;
}
@media screen and (min-width: 768px) {
  .about-detail__image img {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .about-detail__block {
    max-width: 60%;
    margin-left: 40px;
  }
}

.about-detail__name {
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .about-detail__name {
    text-align: left;
    margin-top: 0;
  }
}

.name--en {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .name--en {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .name--en {
    font-size: 20px;
  }
}

.name--ja {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .name--ja {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .name--ja {
    font-size: 26px;
  }
}

.about-detail__text {
  font-size: 14px;
  margin-top: 23px;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (min-width: 768px) {
  .about-detail__text {
    font-size: 20px;
    text-align: left;
    padding: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about-detail__text {
    font-size: 16px;
  }
}

.about-detail__text p {
  margin-top: 15px;
}
.about-detail__text p:first-child {
  margin-top: 0;
}

.about-detail__description {
  position: relative;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .about-detail__description {
    margin-top: 0;
    top: -650px;
    margin-left: 70%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about-detail__description {
    top: -550px;
  }
}

.about-detail__description-circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about-detail__description-circle {
    width: 240px;
    height: 240px;
    top: 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about-detail__description-circle {
    width: 21.5053763vw;
    height: 21.5053763vw;
  }
}
.about-detail__description-circle::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
}
.about-detail__description-circle::after {
  content: "";
  position: absolute;
  left: -25%;
  top: 130px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
}

.about-detail__description-text {
  font-size: 11px;
  width: 60%;
}
@media screen and (min-width: 768px) {
  .about-detail__description-text {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about-detail__description-text {
    font-size: 1.5vw;
    width: 70%;
  }
}

.about-strength {
  padding-top: 35px;
  padding-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .about-strength {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

.about-strength__inner {
  position: relative;
  max-width: 1220px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.about-strength__content {
  margin-top: 80px;
  position: relative;
}
.about-strength__content::before {
  content: "";
  position: absolute;
  left: 70%;
  top: -60px;
  width: 19.5567145vw;
  height: 19.5567145vw;
  border-radius: 50%;
  background-color: #def1ff;
}
@media screen and (min-width: 768px) {
  .about-strength__content::before {
    width: 200px;
    height: 200px;
    top: -203px;
    left: 80%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about-strength__content::before {
    width: 14.6627566vw;
    height: 14.6627566vw;
    top: -180px;
  }
}
.about-strength__content::after {
  content: "";
  position: absolute;
  left: 60%;
  top: -30px;
  width: 6.51890482vw;
  height: 6.51890482vw;
  border-radius: 50%;
  background-color: rgba(195, 220, 250, 0.3);
}
@media screen and (min-width: 768px) {
  .about-strength__content::after {
    width: 60px;
    height: 60px;
    top: -80px;
    left: 75%;
  }
}
@media screen and (min-width: 768px) {
  .about-strength__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.about-strength__card {
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 8px solid #b6d7ff;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.about-strength__card:nth-of-type(2) {
  border: 8px solid #79a8e6;
}
@media (max-width: 355px) {
  .about-strength__card {
    width: 84.5070423vw;
    height: 84.5070423vw;
  }
}
@media screen and (min-width: 768px) {
  .about-strength__card {
    margin-left: 0;
    margin-right: 0;
    height: 390px;
    border-radius: 40px;
    padding: 0 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about-strength__card {
    height: 500px;
  }
}

.card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .card__head {
    margin-top: 35px;
  }
}

.card__head-text {
  font-size: 17px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .card__head-text {
    font-size: 22px;
  }
}

.card__head-image {
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .card__head-image {
    margin-top: 3px;
  }
}
.card__head-image img {
  width: 24px;
}
@media screen and (min-width: 768px) {
  .card__head-image img {
    width: 30px;
  }
}

.card__body {
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 52%;
  width: 80%;
  top: 20%;
}
@media screen and (min-width: 768px) {
  .card__body {
    width: 95%;
    left: 50%;
  }
}

.card__text {
  font-size: 14px;
  margin-top: 10px;
}
@media (max-width: 355px) {
  .card__text {
    font-size: 3.33333331vw;
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) {
  .card__text {
    font-size: 16px;
    margin-top: 16px;
  }
}

.about-strength__circle1 {
  position: absolute;
  width: 16.9491525vw;
  height: 16.9491525vw;
  border-radius: 50%;
  background-color: #def1ff;
  bottom: -60px;
  left: 15%;
  z-index: -3;
}
@media screen and (min-width: 768px) {
  .about-strength__circle1 {
    width: 100px;
    height: 100px;
    bottom: -110px;
    left: 5%;
  }
}

.about-strength__circle2 {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(195, 220, 250, 0.3);
  bottom: -54px;
  left: 10%;
}
@media screen and (min-width: 768px) {
  .about-strength__circle2 {
    width: 100px;
    height: 100px;
    bottom: -104px;
    left: 10%;
  }
}

.about-skill {
  padding-top: 35px;
  padding-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .about-skill {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

.about-skill__inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .about-skill__inner {
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
  }
}

.about-skill__content {
  margin-top: 80px;
  position: relative;
}
.about-skill__content::before {
  content: "";
  position: absolute;
  left: 20%;
  top: -5%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #def1ff;
}
@media screen and (min-width: 768px) {
  .about-skill__content::before {
    width: 60px;
    height: 60px;
    top: -10%;
    left: 10%;
  }
}
.about-skill__content::after {
  content: "";
  position: absolute;
  left: 25%;
  top: -8%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(195, 220, 250, 0.3);
}
@media screen and (min-width: 768px) {
  .about-skill__content::after {
    width: 70px;
    height: 70px;
    top: -16%;
    left: 17%;
  }
}
@media screen and (min-width: 768px) {
  .about-skill__content {
    margin-top: 100px;
  }
}

.about-skill__card {
  width: 100%;
  height: auto;
  border-radius: 40px;
  border: 8px solid #79a8e6;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 25px 10px;
}
.about-skill__card:nth-of-type(2) {
  border: 8px solid #b6d7ff;
}
@media screen and (min-width: 768px) {
  .about-skill__card {
    width: 100%;
    height: auto;
    border-radius: 40px;
    padding: 25px 25px;
  }
}

.about-skill__card + .about-skill__card {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .about-skill__card + .about-skill__card {
    margin-top: 15px;
  }
}

.skill-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.skill-card__logo {
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .skill-card__logo {
    width: 60px;
  }
}
.skill-card__logo img {
  width: 100%;
  height: auto;
}

.skill-card__head-text {
  margin-left: 15px;
}
@media screen and (min-width: 768px) {
  .skill-card__head-text {
    margin-left: 40px;
  }
}

.skill-card__main {
  font-size: 17px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .skill-card__main {
    font-size: 30px;
  }
}

.skill-card__sub {
  font-size: 16px;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .skill-card__sub {
    font-size: 20px;
  }
}

.skill-card__body {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .skill-card__body {
    margin-top: 30px;
  }
}

.skill-card__details {
  font-size: 15px;
  -webkit-text-decoration: underline solid rgba(172, 220, 255, 0.8) 5px;
          text-decoration: underline solid rgba(172, 220, 255, 0.8) 5px;
}
@media screen and (min-width: 768px) {
  .skill-card__details {
    font-size: 20px;
  }
}

.skill-card__text {
  font-size: 14px;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .skill-card__text {
    font-size: 20px;
  }
}

.about-skill__circle1 {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #def1ff;
  bottom: -40px;
  left: 70%;
  z-index: -3;
}
@media screen and (min-width: 768px) {
  .about-skill__circle1 {
    width: 60px;
    height: 60px;
    bottom: -80px;
    left: 70%;
  }
}

.about-skill__circle2 {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(195, 220, 250, 0.3);
  bottom: -65px;
  left: 65%;
}
@media screen and (min-width: 768px) {
  .about-skill__circle2 {
    width: 80px;
    height: 80px;
    bottom: -95px;
    left: 73%;
  }
}

.works__archive {
  padding-top: 100px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .works__archive {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.works-archive__inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .works-archive__inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) {
  .works__archive-content {
    position: relative;
  }
  .works__archive-content::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background-color: rgba(195, 220, 250, 0.3);
    top: -80px;
    left: -5%;
    z-index: -5;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1023px) {
  .works__archive-content::before {
    width: 27.370479vw;
    height: 27.370479vw;
  }
}
@media screen and (min-width: 768px) {
  .works__archive-content::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(195, 220, 250, 0.3);
    top: -100px;
    left: 15%;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1023px) {
  .works__archive-content::after {
    width: 9.7751711vw;
    height: 9.7751711vw;
  }
}

.works__tabs {
  margin-top: 45px;
}

.works__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5.3333333333%;
}

.works__tab-item {
  font-weight: 500;
  letter-spacing: 0.48px;
  padding: 3px 10px;
  display: inline-block;
  border-radius: 60px;
  border: 3px solid #79a8e6;
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  min-width: 72px;
  text-align: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.works__tab-item:hover, .works__tab-item.is-active {
  background-color: #def1ff;
}
.works__tab-item a {
  display: block;
}
@media screen and (min-width: 768px) {
  .works__tab-item {
    font-size: 18px;
    min-width: 100px;
    background: #fff;
  }
}

.works__list {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .works__list {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px 60px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 530px) and (max-width: 767px) {
  .works__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
}

.works__item a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.works__item a:hover {
  opacity: 0.8;
}

.works__item + .works__item {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .works__item + .works__item {
    margin-top: 0;
  }
}
@media screen and (min-width: 530px) and (max-width: 767px) {
  .works__item + .works__item {
    margin-top: 0;
  }
}

.works__item-image {
  max-width: 500px;
}
.works__item-image img {
  width: 100%;
  border-radius: 3%;
}

.works__item-info {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .works__item-info {
    text-align: center;
    font-size: 18px;
  }
}

.works__item-tag {
  font-weight: 500;
  letter-spacing: 0.48px;
  padding: 3px 10px;
  display: inline-block;
  border-radius: 60px;
  border: 3px solid #79a8e6;
  font-size: 15px;
  line-height: 1.7;
  color: #111;
  min-width: 60px;
  text-align: center;
}

.works__item-name {
  margin-left: 10px;
}

.works-archive__button {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .works-archive__button {
    margin-top: 60px;
  }
}

.works-archive__description {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .works-archive__description {
    margin-top: 40px;
  }
}

.works-archive__description-circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-color: #def1ff;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .works-archive__description-circle {
    width: 230px;
    height: 230px;
    margin-left: 0;
    margin-right: 0;
    left: 20%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .works-archive__description-circle {
    width: 21.5053763vw;
    height: 21.5053763vw;
  }
}
.works-archive__description-circle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 70px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: rgba(195, 220, 250, 0.3);
  z-index: -4;
}
@media screen and (min-width: 768px) {
  .works-archive__description-circle::before {
    left: 70%;
  }
}
.works-archive__description-circle::after {
  content: "";
  position: absolute;
  left: -25%;
  top: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #def1ff;
}
.works-archive__description-text {
  font-size: 11px;
  width: 65%;
}
@media screen and (min-width: 768px) {
  .works-archive__description-text {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .works-archive__description-text {
    font-size: 1.5vw;
    width: 70%;
  }
}

@media screen and (min-width: 768px) {
  .works-archive__circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(195, 220, 250, 0.3);
    position: absolute;
    bottom: 100px;
    left: 70%;
  }
}

.works__detail {
  padding-top: 100px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .works__detail {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 768px) {
  .works-detail__inner {
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
  }
}

.works-detail__content {
  margin-top: 30px;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (min-width: 768px) {
  .works-detail__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    margin-top: 100px;
    padding: 0;
    position: relative;
  }
  .works-detail__content::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background-color: #def1ff;
    top: -80px;
    left: -5%;
    z-index: -5;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1023px) {
  .works-detail__content::before {
    width: 27.370479vw;
    height: 27.370479vw;
  }
}
@media screen and (min-width: 768px) {
  .works-detail__content::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(195, 220, 250, 0.3);
    top: -100px;
    left: 15%;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1023px) {
  .works-detail__content::after {
    width: 9.7751711vw;
    height: 9.7751711vw;
  }
}

@media screen and (min-width: 768px) {
  .works-detail__block1 {
    max-width: 600px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.works-detail__image img {
  width: 100%;
  border-radius: 3%;
}

.works-detail__block2 {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .works-detail__block2 {
    max-width: 600px;
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.works-detail__item-tag {
  font-weight: 500;
  letter-spacing: 0.48px;
  padding: 3px 10px;
  display: inline-block;
  border-radius: 60px;
  border: 3px solid #79a8e6;
  font-size: 15px;
  line-height: 1.7;
  color: #111;
  min-width: 60px;
  text-align: center;
}

.works-detail__item-name {
  margin-left: 10px;
}

.works-detail__summary {
  background: rgba(195, 220, 250, 0.3);
  border-radius: 3%;
  padding: 15px 12px 20px 12px;
  margin-top: 20px;
}

.summary-title {
  -webkit-text-decoration: underline solid #000 1px;
          text-decoration: underline solid #000 1px;
}

.summary__items {
  margin-top: 5px;
}

.summary__item {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .summary__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.summary__text {
  margin-left: 15px;
}

.summary__url {
  text-decoration: underline;
}

.works-detail__purpose {
  background: rgba(195, 220, 250, 0.3);
  border-radius: 3%;
  margin-top: 15px;
  padding: 15px 12px 20px 12px;
}

.purpose__title {
  -webkit-text-decoration: underline solid #000 1px;
          text-decoration: underline solid #000 1px;
}

.purpose__text {
  margin-top: 5px;
}

.works-detail__technology {
  background: rgba(195, 220, 250, 0.3);
  border-radius: 3%;
  margin-top: 15px;
  padding: 15px 12px 20px 12px;
}

.technology__title {
  -webkit-text-decoration: underline solid #000 1px;
          text-decoration: underline solid #000 1px;
}

.technology__text {
  margin-top: 5px;
}

.works-detail__point {
  background: rgba(195, 220, 250, 0.3);
  border-radius: 3%;
  margin-top: 20px;
  padding: 15px 12px 20px 12px;
}

.point__title {
  -webkit-text-decoration: underline solid #000 1px;
          text-decoration: underline solid #000 1px;
}

.point__text {
  margin-top: 5px;
}

.works-detail__button {
  margin-top: 25px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .works-detail__button {
    margin-top: 35px;
  }
}

.works-detail__description {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .works-detail__description {
    margin-top: 60px;
  }
}

.works-detail__description-circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-color: rgba(195, 220, 250, 0.3);
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .works-detail__description-circle {
    width: 230px;
    height: 230px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .works-detail__description-circle {
    width: 21.5053763vw;
    height: 21.5053763vw;
  }
}
.works-detail__description-circle::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 80px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #def1ff;
}
@media screen and (min-width: 768px) {
  .works-detail__description-circle::before {
    left: 105%;
    top: 114px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .works-detail__description-circle::before {
    left: 105%;
    top: 45%;
    width: 4.8875855327vw;
    height: 4.8875855327vw;
  }
}
.works-detail__description-circle::after {
  content: "";
  position: absolute;
  left: -30%;
  top: 80px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #def1ff;
  z-index: -6;
}
@media screen and (min-width: 768px) {
  .works-detail__description-circle::after {
    left: -28%;
    top: 114px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .works-detail__description-circle::after {
    left: -30%;
    top: 45%;
    width: 4.8875855327vw;
    height: 4.8875855327vw;
  }
}

.works-detail__description-text {
  font-size: 16px;
  font-weight: bold;
  width: 65%;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .works-detail__description-text {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .works-detail__description-text {
    font-size: 18px;
    width: 70%;
  }
}

.works-detail__point-image {
  margin-top: -30px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .works-detail__point-image {
    margin-top: -60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .works-detail__point-image {
    margin-top: -40px;
  }
}
.works-detail__point-image img {
  border-radius: 10px;
  width: 90%;
}

.works-detail__related {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .works-detail__related {
    margin-top: 40px;
  }
}

.related__title {
  font-family: "Zen Maru Gothic", serif;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .related__title {
    font-size: 28px;
  }
}

.related__list {
  margin-top: 20px;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (min-width: 768px) {
  .related__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    padding: 0;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .related__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
}

.related__item a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.related__item a:hover {
  opacity: 0.8;
}

.related__item + .related__item {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .related__item + .related__item {
    margin-top: 0;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .related__item + .related__item {
    margin-top: 0;
  }
}

.related__item-info {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .related__item-info {
    text-align: center;
    font-size: 18px;
  }
}

.related__item-tag {
  font-weight: 500;
  letter-spacing: 0.48px;
  padding: 3px 10px;
  display: inline-block;
  border-radius: 60px;
  border: 3px solid #79a8e6;
  font-size: 15px;
  line-height: 1.7;
  color: #111;
  min-width: 60px;
  text-align: center;
}

.related__item-name {
  margin-left: 10px;
}

.m_404 {
  padding: 200px 40px 200px 40px;
}

.entry-404 {
  padding-bottom: 85px;
  text-align: center;
}

.entry-404-head {
  color: rgba(172, 220, 255, 0.8);
  font-family: "Lato", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 36px;
}

.entry-404-head span::after {
  content: " ";
}

.entry-404-lead {
  color: #808080;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 24px;
}

.entry-404-lead .m_sp {
  display: none;
}

.entry-404-content {
  color: #808080;
}

.entry-404-btn {
  margin-top: 58px;
}

.entry-404-btn .btn {
  background: #ebebeb;
  color: #8d8d8d;
}

.entry-404-btn .btn:hover {
  background: #ccc;
  opacity: 1;
}