@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

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

img:not([alt]) {
  filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
}
@media screen and (max-width: 768px) {
  .header {
    height: 70px;
  }
}

.header__inner {
  padding-top: 38px;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-top: 25px;
    padding-left: 30px;
  }
}

.header__logo {
  width: 147px;
  aspect-ratio: 147/50;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 117px;
    aspect-ratio: 117/20;
  }
}

.fv__title {
  background-image: url(../images/fv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title__box {
  text-align: center;
  background-color: #fff;
  padding: 72.5px 200px;
  border-radius: 117px;
  margin-left: 16px;
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .title__box {
    padding: 60px 90px;
  }
}

.fv__title-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.01em;
  color: #0093C9;
}

.fv__title-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .fv__title-name {
    line-height: 1.5;
  }
}

.profile {
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .profile {
    padding-top: 80px;
  }
}

.profile__inner {
  max-width: 512px;
  padding-left: 16px;
  padding-right: 16px;
  margin-inline: auto;
}

.profile__name {
  padding-top: 92px;
  text-align: center;
}

.profile__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  line-height: 2;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.profile__date {
  padding-top: 26px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 4.28;
  letter-spacing: 0.1em;
  color: #0F0F0F;
}

.profile__text {
  padding-top: 51px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 3;
  letter-spacing: 0.1em;
  color: #333333;
}

.about {
  padding-top: 106px;
}

.inner {
  max-width: 832px;
  padding-left: 16px;
  padding-right: 16px;
  margin-inline: auto;
}

.about__box {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.about__box dl {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #EBEBEB;
}
@media screen and (max-width: 768px) {
  .about__box dl {
    align-items: normal;
  }
}

.about__box dl:last-child {
  border-bottom: 1px solid #EBEBEB;
}

.about__box dt {
  width: 20%;
  text-align: center;
  line-height: 4.285;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .about__box dt {
    padding-top: 60px;
    line-height: 2.8;
  }
}

.about__box dd {
  width: 80%;
  padding: 60px 25px;
  line-height: 2.5;
}

.skill__list {
  counter-reset: listnum;
  padding-left: 5px;
}

.skill__list li:before {
  counter-increment: listnum; /* counter-resetと同じ文字列 */
  content: counter(listnum) "."; /* カウントした数に応じて番号を表示 */
}

.footer {
  margin-top: 120px;
  background-color: #F8FCFD;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 100px;
  }
}

.copy__right {
  display: inline-block;
  padding: 70px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .copy__right {
    padding: 40px 0;
  }
}/*# sourceMappingURL=style.css.map */