html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #0F0F0F;
}

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 {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.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/25;
}

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

.fv__ttlbox {
  text-align: center;
}

.fv__subttl {
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.1em;
}

.fv__ttl {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 375px) {
  .fv__ttl {
    font-size: 8vw;
  }
}

.fv__ttlbox span {
  display: block;
  width: 105px;
  border-bottom: 3px solid #1F7BC9;
  margin-inline: auto;
  padding-top: 20px;
}
@media screen and (max-width: 375px) {
  .fv__ttlbox span {
    font-size: 5vw;
  }
}

.about {
  padding-top: 165px;
}
@media screen and (max-width: 768px) {
  .about {
    padding-top: 135px;
  }
}

.about__box {
  padding-top: 90px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .about__box {
    padding-top: 80px;
    flex-direction: column;
  }
}

.about__left {
  width: 33%;
}
@media screen and (max-width: 768px) {
  .about__left {
    width: 100%;
  }
}

.about__img {
  width: 100%;
  height: auto;
}

.about__text-box {
  width: 63%;
  padding-left: 115px;
}
@media screen and (max-width: 768px) {
  .about__text-box {
    width: 100%;
    padding-left: 0;
    padding-top: 60px;
  }
}

.subttl {
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .subttl {
    font-size: 5vw;
  }
}

@media screen and (max-width: 768px) {
  .about__subttl {
    text-align: center;
  }
}

.about__text {
  padding-top: 52px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .about__text {
    padding-top: 30px;
    font-size: 12px;
  }
}

.about__link {
  position: relative;
  display: inline-block;
  margin-top: 25px;
  font-size: 18px;
  line-height: 3;
  letter-spacing: 0.1em;
  background-color: #0F0F0F;
  padding-left: 40px;
  padding-right: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .about__link {
    font-size: 14px;
  }
}

.about__link::before {
  content: url(../images/instagram-icon.png);
  width: 16px;
  height: 16px;
  position: absolute;
  top: 2px;
  left: 22px;
}

.service {
  margin-top: 150px;
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .service {
    margin-top: 120px;
  }
}

.service__inner {
  padding: 160px 0;
}
@media screen and (max-width: 768px) {
  .service__inner {
    padding: 130px 0;
  }
}

.service__box {
  padding-top: 80px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .service__box {
    flex-direction: column;
  }
}

.service__item:not(:first-child) {
  padding-left: 60px;
}
@media screen and (max-width: 768px) {
  .service__item:not(:first-child) {
    padding-left: 0;
    padding-top: 60px;
  }
}

.service__item {
  text-align: center;
}

.service__text {
  padding-top: 45px;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.1em;
}

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

.profile__box {
  padding-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .profile__box {
    flex-direction: column;
  }
}

.profile__img {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .profile__img {
    width: 100%;
  }
}

.profile__textbox {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .profile__textbox {
    width: 100%;
    padding-top: 60px;
  }
}

.profile__number {
  padding-top: 25px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .profile__number {
    padding-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .profile__number {
    padding-top: 20px;
  }
}

.profile__text {
  padding-top: 50px;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .profile__text {
    padding-top: 30px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .profile__text {
    line-height: 1.9;
  }
}

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

.footer__copyright {
  display: inline-block;
  padding: 70px 0;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    padding: 45px 0;
  }
}

.inner {
  max-width: 1080px;
  padding-left: 5%;
  padding-right: 5%;
  margin-inline: auto;
}

.ttl-box {
  text-align: center;
}

.ttl {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.ttl-box span {
  padding-top: 13.5px;
  display: block;
  width: 135px;
  border-bottom: 3px solid #1F7BC9;
  margin-inline: auto;
}/*# sourceMappingURL=style.css.map */