@charset "UTF-8";

html {
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
  scroll-behavior: smooth;
}
* {
  font-family:  "Josefin Sans", "Noto Sans JP", sans-serif;
  font-weight: 400;
}

/* --------------------------
common
-------------------------- */
/* PC、 SPの非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media (min-width:768px ) {
  .sp {
    display: none !important;
  }
}
img {
  width: 100%;
  height: auto;
  display: block;
}
.inner {
  max-width: 1080px;
  padding-inline: 30px;
  margin-inline: auto;
}
.section-title {
  text-align: center;
}
.section-title h2 {
  font-size: 40px;
  color: #f1bc1e;
  padding-top: 50px;
}
.section-bg {
  background-color: #e8e8e8;
}

/* --------------------------
header
-------------------------- */
.header {
  padding-inline: 30px;
  color: #FFF;
  background-color: #000;
  height: 60px;
  display: flex;
  position: fixed;
  z-index: 999;
  width: 100%;
}
.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header__logo {
  font-size: 26px;

  @media (max-width: 768px) {
    display: flex;
    margin-inline: auto;
  }
}
.header-nav__lists {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.header-nav__list a {
  transition: 0.3s;
}
.header-nav__list a:hover {
  color: #19ece1;
}

/* --------------------------
fv
-------------------------- */
.fv {
  padding-top: 60px;
  width: 100%;
  position: relative;
}
.fv__image {
  width: 100%;
  height: 600px;
}
.fv__image img {
  object-fit: cover;

  @media (max-width: 768px) {
    height: 100vh;
  }
}
.fv__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 46px;
  text-align: center;
  display: inline-block;
  background-color: rgba(255 255 255 / 0.5);
  width: 100%;
}
.fv__text p {
  padding-block: 10px;
  font-weight: 600;

  @media (max-width: 768px) {
    line-height: 40px;
  }
}
.font-size {
  @media (max-width: 768px) {
    font-size: 35px;
  }
}
.wt350 {
  @media (min-width:350px) {
    display: none;
  }
}

/* --------------------------
about
-------------------------- */
.about__contents {
  padding-block: 30px;
  display: flex;
  align-items: center;
  column-gap: 50px;

  @media (max-width: 768px) {
    flex-direction: column;
    padding-top: 20px;
  }
}
.about__image {
  margin-top: 20px;
}
.about__image img {
  border-radius: 50%;
  width: 500px;
}
.about__textarea {
  width: 70%;

  @media (max-width: 768px) {
    margin-top: 30px;
    width: 100%;
  }
}
.about__title {
  font-size: 50px;
}
.about__text {
  margin-top: 20px;
}

/* --------------------------
Service
-------------------------- */
.service__contents {
  max-width: 1080px;
  width: 100%;
  padding-block: 30px;
}
.service__items {
  display: flex;
  justify-content: center;
  column-gap: 30px;
  text-align: center;

  @media (max-width: 540px) {
    flex-direction: column;
  }
}
.service__img img {
  width: 300px;

  @media (max-width: 540px) {
    width: 100%;
  }
}
.service__text {
  font-size: 30px;
  background-color: #FFF;
  border-radius: 10px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;

  @media (max-width: 768px) {
    font-size: 20px;
  }
}

/* --------------------------
Works
-------------------------- */
.works__contents {
  margin-block: 30px;
}
.works__left,
.works__right {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.works__left {
  @media (max-width: 767px) {
    flex-direction: column;
  }
}
.works__right {
  @media (max-width: 767px) {
    flex-direction: column-reverse;
  }
}
.works__left-item,
.works__right-item{
  width: 50%;

  @media (max-width: 767px) {
    width: 100%;
  }
}
.works__right-item {
  margin-top: 50px;
}
.works__left-text,
.works__right-text {
  background-color: rgba(241 188 30 / 0.6);
  padding: 40px;
  border-radius: 50px;
  color: #333333;
  font-size: 15px;
  width: 50%;

  @media (max-width: 767px) {
    width: 100%;
    max-width: 500px;
    margin-top: -30px;
  }
}

/* --------------------------
News
-------------------------- */
.news {
  padding-bottom: 20px;
}
.news__contents {
  margin-block: 30px;
}
.news-item__lists {
  padding-top: 20px;
}
.news-item__lists time,
.news-item__lists p {
  display: inline-block;
  font-size: 10px;
  background-color: #ddd;
  padding: 2px 4px;
}
.news-item__lists time {
  margin-left: 20px;
}
.news-item__lists p {
  margin-left: 10px;
}
.news-item__title {
  margin-top: 5px;
  margin-left: 10px;
  font-size: 20px;
  font-weight: bold;
}
.news-item__text {
  margin-top: 7px;
  padding: 0 10px 10px;
  border-bottom: solid 1px #000;
}

/* --------------------------
contact
-------------------------- */
.contact__contents {
  margin-block: 30px;
}
iframe {
  border: none;
}

/* --------------------------
footer
-------------------------- */
.footer {
  background: #000;
  color: #FFF;
  padding-bottom: 30px;
}
.footer__contents {
  text-align: center;
}
.footer__nav {
  border-bottom: 1px solid #FFF;
  margin-bottom: 30px;
  display: inline-block;
}
.footer-nav__lists {
  display: flex;
  justify-content: center;
  column-gap: 40px;
  font-size: 30px;
  padding-block: 40px 20px;
}
.footer-nav__list a {
  transition: 0.3s;
}
.footer-nav__list a:hover {
  color: #19ece1;
}
.footer__copyright {
  text-align: center;
  padding-bottom: 10px;
  font-size: 10px;

  @media (max-width: 768px) {
    padding-top: 30px;
  }
}
.sns {
  display: flex;
  align-items: center;
  justify-content: end;
  column-gap: 12px;
  margin-top: 16px;
  @media (max-width: 768px) {
    justify-content: center;
    column-gap: 20px;
  }
}
.sns__list {
  list-style: none;
  line-height: 0;
}
.sns__link img {
  width: 24px;
  
  @media (max-width: 768px) {
    width: 35px;
  }
}
.sns__link--x img {
  width: 20px;

  @media (max-width: 768px) {
    width: 30px;
  }
}