@charset "UTF-8";
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

/*
 * media query
 *
 * メディアクエリ指定
　*/
@media screen and (max-width: 37.5em) {
  .mq_only_pc {
    display: none !important;
  }
}
@media screen and (min-width: 37.5em) and (max-width: 60em) {
  .mq_only_pc {
    display: none !important;
  }
}

@media screen and (min-width: 60em) {
  .mq_only_sp {
    display: none !important;
  }
}
@media screen and (min-width: 37.5em) and (max-width: 60em) {
  .mq_only_sp {
    display: none !important;
  }
}

@media screen and (max-width: 37.5em) {
  .mq_only_tab {
    display: none !important;
  }
}
@media screen and (min-width: 60em) {
  .mq_only_tab {
    display: none !important;
  }
}

@media screen and (max-width: 37.5em) {
  .mq_only_tabpc {
    display: none !important;
  }
}

html {
  overflow-y: scroll;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  position: relative;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  overflow-x: hidden;
  word-break: break-word;
  -ms-hyphens: auto;
      hyphens: auto;
  background-color: #f6f6f6;
}

.wrap {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 60px;
  text-align: left;
  background-color: #fff;
}

.about .wrap {
  padding-bottom: 60px;
}
.about p {
  line-height: 1.8;
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: clamp(15px, 14.5px + 0.125vw, 16px);
}
.about ul {
  list-style: none;
  margin-top: 1em;
  margin-bottom: 1em;
}
.about ul li {
  line-height: 1.3;
  margin-top: 1em;
  margin-bottom: 1em;
}

.hr {
  text-align: center;
  font-size: clamp(32px, 26px + 1.5vw, 44px);
  margin-top: 1em;
  margin-bottom: 1em;
}

.about__inner {
  padding: 40px;
  background-color: #eee;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
}
.about__inner h2 {
  font-weight: normal;
  font-size: clamp(18px, 17px + 0.25vw, 20px);
  margin-bottom: 1em;
}

.profile__photo {
  text-align: center;
}
.profile__photo img {
  max-width: 150px;
  width: auto;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.contact {
  padding-top: 4px;
  padding-bottom: 4px;
}
.contact .wrap {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.contact .wrap h2 {
  font-weight: normal;
  font-size: clamp(18px, 17px + 0.25vw, 20px);
  margin-bottom: 1em;
}
.contact .wrap a {
  text-decoration: none;
  color: #333;
  background-color: #eee;
  border-radius: 9999px;
  padding: 1em;
  display: block;
  text-align: center;
}

.footer .wrap {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}

.copyright {
  font-size: clamp(12px, 11px + 0.25vw, 14px);
}

.header .wrap {
  padding-top: 60px;
  padding-bottom: 60px;
}
.header .wrap h1 {
  font-weight: normal;
  text-align: center;
}

.nav--header {
  position: fixed;
  left: calc(50vw + 340px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.nav--header ul {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.nav--header ul li {
  height: auto;
  font-size: clamp(15px, 14.5px + 0.125vw, 16px);
}
.nav--header ul li ul {
  margin-top: 24px;
}
.nav--header ul li a {
  text-decoration: none;
  color: #333;
}
.nav--header ul li a img {
  display: block;
  width: 40px;
  height: auto;
}