.common__container {
  box-sizing: content-box;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}

.news__header-title, .service__header-title, .about__header-title {
  padding-top: 110px;
  text-align: center;
  color: #141414;
  font-size: 36px;
  letter-spacing: 0.05em;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

.contact__container, .news__container, .service__container, .about__container {
  max-width: 1030px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

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

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

header, footer, article, section, aside, main, nav, menu, figure, figcaption {
  display: block;
}

span, small, strong, em, b, i {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

ul,
ol {
  list-style: none;
}

picture,
img {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
}

.common__container {
  border: 1px solid red;
}

@media screen and (max-width: 768px) {
  .pcOnly {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .spOnly {
    display: none !important;
  }
}

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input {
  border: 1px solid #141414;
  height: 30px;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

textarea {
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.header {
  background-color: #1B1310;
  border-bottom: 2px solid #FFFFFF;
  position: fixed;
  width: 100%;
  height: 74px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .header {
    border-bottom: 0px;
    width: 100%;
    background-color: none;
  }
}
.header__container {
  max-width: 1200px;
  height: 74px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header__container {
    position: relative;
    width: 100%;
    height: 74px;
    padding: 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #FFFFFF;
  }
}
@media screen and (max-width: 768px) {
  .header__menu {
    background-color: #1B1310;
    width: 100%;
    height: 100vh;
    transition: all 0.5s;
    position: absolute;
    z-index: 1500;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .header__menu.close {
    transform: translateX(100%);
  }
}
.header__site-name {
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-weight: 500;
}
.header__site-name a {
  display: block;
  padding: 10px 5px;
}
@media screen and (max-width: 768px) {
  .header__site-name {
    padding-top: 20px;
    padding-bottom: 14px;
    padding-left: 15px;
    margin-left: 0;
  }
}
@media screen and (max-width: 320px) {
  .header__site-name {
    font-size: 20px;
  }
}
.header__items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-right: -28px;
}
@media screen and (max-width: 768px) {
  .header__items {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 188px;
    margin-right: auto;
    margin-left: auto;
  }
}
.header__item a {
  display: block;
  padding: 16px 28px;
}
@media screen and (max-width: 768px) {
  .header__item a {
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .header__item {
    width: 100%;
    text-align: center;
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    position: relative;
    background-color: inherit;
    width: 74px;
    height: 73px !important;
    z-index: 2000;
  }
  .hamburger__line {
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: white;
    right: 15px;
  }
  .hamburger__line::before {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: white;
    right: 0px;
    top: -7.5px;
  }
  .hamburger__line::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: white;
    right: 0px;
    top: 8px;
  }
  .hamburger.open .hamburger__line {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin-left: auto;
    background-color: inherit;
    width: 74px;
    height: 74px;
    border: 0px;
    left: 0;
  }
  .hamburger.open .hamburger__line::before, .hamburger.open .hamburger__line::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 25px;
    background: #FFFFFF;
  }
  .hamburger.open .hamburger__line::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .hamburger.open .hamburger__line::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

.mv__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mv__photo {
  position: relative;
  width: 100%;
}
.mv__photo img {
  width: 100%;
}
.mv__site-name-box {
  width: 100%;
  height: 740px;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mv__site-name {
  font-family: "Roboto", sans-serif;
  font-size: 3.4722222222vw;
  font-weight: 500;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  padding: 35px 42px 35px 42px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .mv__site-name {
    font-size: 7.8125vw;
    padding-top: 5.7971014493%;
    padding-bottom: 5.7971014493%;
    padding-left: 8.6956521739%;
    padding-right: 8.6956521739%;
  }
}
@media screen and (max-width: 320px) {
  .mv__site-name {
    font-size: 25px;
    padding: 20px 27px 20px 27px;
  }
}

.about__copy {
  margin-top: 75px;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .about__copy {
    font-size: 20px;
    margin-top: 70px;
    line-height: 2;
  }
}
.about__txt {
  width: 100%;
  margin-top: 45px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2.1428571429;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .about__txt {
    margin-top: 30px;
  }
}

.service__header-title {
  padding-top: 150px;
}
.service__items {
  width: 100%;
}
.service__item {
  margin-top: 70px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .service__item {
    flex-direction: column-reverse;
  }
}
.service__item .service__info {
  margin-left: 6.7961165049%;
}
@media screen and (max-width: 768px) {
  .service__item .service__info {
    margin-left: 0;
  }
}
.service__item--reverse {
  margin-top: 50px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .service__item--reverse {
    flex-direction: column-reverse;
  }
}
.service__item--reverse .service__info {
  margin-right: 6.7961165049%;
}
@media screen and (max-width: 768px) {
  .service__item--reverse .service__info {
    margin-right: 0;
  }
}
.service__photo {
  width: calc((100% - 70px) / 2);
  position: relative;
}
@media screen and (max-width: 768px) {
  .service__photo {
    width: 100%;
    margin-top: 50px;
  }
}
.service__photo::before {
  content: "";
  display: block;
  padding-top: 50%;
}
@media screen and (max-width: 768px) {
  .service__photo::before {
    padding-top: 43.4%;
  }
}
.service__photo img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__info {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  flex: 1;
}
.service__copy {
  padding-left: 10px;
  font-size: 2.3300970874vw;
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: bold;
  color: #141414;
}
@media screen and (min-width: 1008px) {
  .service__copy {
    font-size: 24px;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .service__copy {
    font-size: 20px;
    padding-left: 0;
  }
}
@media screen and (max-width: 320px) {
  .service__copy {
    font-size: 18px;
  }
}
.service__txt {
  margin-top: 26px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2.1428571429;
  font-weight: bold;
  color: #141414;
}
@media screen and (max-width: 768px) {
  .service__txt {
    font-size: 13.5px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}

.news__header-title {
  margin-top: 40px;
}
.news__items {
  margin-top: 70px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .news__items {
    flex-direction: column;
    margin-top: 20px;
  }
}
.news__item {
  width: calc((100% - 70px) / 3);
  box-shadow: 0px 0px 6px rgba(27, 19, 16, 0.4);
}
@media screen and (max-width: 768px) {
  .news__item {
    margin-top: 50px;
    width: calc(100% - 24px);
  }
}
.news__photo {
  position: relative;
  width: 100%;
}
.news__photo::before {
  content: "";
  display: block;
  padding-top: 62.5%;
}
.news__photo img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__txt {
  padding-top: 25px;
  padding-left: 33px;
  padding-right: 33px;
  padding-bottom: 25px;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.9230769231;
  color: #141414;
}

.contact__header-title {
  margin-top: 150px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #141414;
}
.contact__form {
  width: 100%;
  max-width: 700px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.875;
  color: #141414;
}
.contact__form--message {
  padding-top: 20px;
  margin-top: 0 auto;
  display: flex;
  flex-direction: column;
}
.contact__form--message textarea {
  width: 100%;
  max-width: 700px;
  height: 170px;
  display: flex;
  flex-direction: column;
  border: 1px solid #141414;
}
.contact__submit-btn {
  width: 235px;
  height: 60px;
  margin: 50px auto 0 auto;
  border-radius: 60px;
  box-shadow: 0px 0px 6px rgb(27, 19, 16);
  background-color: #1B1310;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 900;
}

.footer__container {
  width: 100%;
  height: 79px;
  margin-top: 50px;
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #1B1310;
}
.footer__copyright {
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
}/*# sourceMappingURL=style.css.map */