@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');


body {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
}

/* --------------------------
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%;

  /* @media (max-width: 768px) {
    top: 50%;
    transform: translate(-50%, -50%);
  } */
}
.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;
  }
}

/* --------------------------
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;

  @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;
}
.form__table {
  width: 100%;
  margin-bottom: 30px;
}
.form__item,
.form__body {
  padding: 20px;
  border: 1px solid #ccc;
}
.form__item {
  text-align: left;
  width: 30%;
  background-color: #eee;
}
.email {
  @media (max-width: 550px) {
    font-size: 12px;
  }
}
.form__body {
  width: 70%;
}
.form__text {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  max-width: 400px;
}
.form__textarea {
  display: flex;
  width: 100%;
  height: 200px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  max-width: 100%;
}
.form__contact-submit {
  width: 250px;
  background-color: #333;
  color: #FFF;
  font-weight: bold;
  display: block;
  margin: 0 auto;
  font-size: 16px;
  padding: 15px;
  border-radius: 50px;
  border: 1px solid #333;
  text-align: center;
}
.form__contact-submit:hover {
  color: #333;
  background-color: #FFF;
}

/* --------------------------
footer
-------------------------- */
.footer {
  background: #000;
  color: #FFF;
}
.footer-nav__lists {
  display: flex;
  justify-content: center;
  column-gap: 40px;
  font-size: 30px;
  padding-block: 40px;
}
.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;
}