html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", "Roboto", 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;
}

html {
  scroll-behavior: smooth;
}

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

ul,
ol {
  list-style: none;
}

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

a {
  text-decoration: none;
}

img {
  display: block;
  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: none;
}

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

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

.header {
  width: 100%;
  height: 245px;
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
  }
}
@media screen and (max-width: 390px) {
  .header {
    height: 180px;
  }
}

.h1 h1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding-top: 30px;
  font-size: 22px;
  font-weight: 500;
  overflow-wrap: break-word;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .h1 h1 {
    font-size: 20px;
  }
}
@media screen and (max-width: 390px) {
  .h1 h1 {
    font-size: 18px;
  }
}
.h1 h1 img {
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .h1 h1 img {
    padding-right: 15px;
    width: 65px;
  }
}

.header__nav {
  margin-top: 30px;
  border-top: 3px solid #9B8872;
  border-bottom: 3px solid #9B8872;
}

.header__items,
.footer__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
  padding: 32px 40px;
}
.header__items li + li,
.footer__items li + li {
  margin-left: 20px;
}
.header__items a,
.footer__items a {
  display: flex;
  align-items: center;
  font-size: 22px;
}
.header__items span,
.footer__items span {
  margin-right: 10px;
  width: 22px;
  height: 22px;
}
@media screen and (max-width: 768px) {
  .header__items,
  .footer__items {
    height: 130px;
    padding: 0 40px;
  }
}
.header__items .nav__icon,
.footer__items .nav__icon {
  background-image: url(../images/icon_circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.header__items a.is-active,
.footer__items a.is-active {
  color: #9B8872;
  border-bottom: 1px solid #9B8872;
}

.header__items a.is-active .nav__icon,
.footer__items a.is-active .nav__icon {
  background-image: url(../images/icon_smile.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.hamburger {
  position: fixed;
  z-index: 9000;
  top: 43px;
  right: 16px;
  width: 52px;
  height: 52px;
  cursor: pointer;
}

.hamburger.is-active {
  top: 43px;
  right: 16px;
}

.hamburger span {
  position: absolute;
  right: 10px;
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #F5A100;
  transition: 0.3s transform, 0.3s background-color;
}

.hamburger.is-active span {
  background-color: #F5A100;
}

.hamburger span:nth-child(1) {
  top: 15px;
}

.hamburger span:nth-child(2) {
  top: 25px;
  transition: 0.3s opacity;
}

.hamburger span:nth-child(3) {
  top: 35px;
}

.hamburger.is-active span:nth-child(1) {
  top: 20px;
  left: 13px;
  transform: rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 20px;
  left: 13px;
  transform: rotate(45deg);
}

.js-drawer {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  transform: translate(100%);
  transition: all 0.5s;
}

.js-drawer.open {
  transform: translateZ(0);
}

.drawer-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
  background-color: #fff;
}

.drawer-menu__inner {
  width: 80%;
  margin: 20% auto;
  padding: 60px 0;
  border-top: 1px solid #9B8872;
  border-bottom: 1px solid #9B8872;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 20%;
}

.drawer-menu__item a {
  font-size: 20px;
  font-weight: 500;
  color: #575757;
  display: block;
}

.drawer-menu__link::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #F5A100;
  border-radius: 50%;
  margin-left: 16px;
  margin-right: 20px;
}

.top {
  width: 100%;
  height: 100vh;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
  display: flex;
}
@media screen and (max-width: 768px) {
  .top {
    padding-top: 80px;
  }
}
@media screen and (max-width: 390px) {
  .top {
    padding-top: 40px;
  }
}

.top__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.top__container p {
  font-weight: 400;
  text-align: center;
}
.top__container img {
  margin-top: 50px;
}

.scroll {
  color: #363636;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .scroll {
    margin-top: 80px;
  }
}
.scroll::after {
  display: block;
  content: "";
  width: 1px;
  height: 100px;
  background-color: #363636;
  margin-top: 16px;
  -webkit-animation: scroll 2.5s infinite;
          animation: scroll 2.5s infinite;
}

@-webkit-keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: center top;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: center top;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: center bottom;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: center bottom;
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: center top;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: center top;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: center bottom;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: center bottom;
  }
}
.works__inner,
.about__inner {
  padding: 100px 0 0;
}
@media screen and (max-width: 768px) {
  .works__inner,
  .about__inner {
    padding: 80px 2% 0;
  }
}

.title__heading {
  width: 110px;
  height: 110px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/title_bg.svg);
}

.sub-title {
  margin-left: 30px;
  display: block;
}
@media screen and (max-width: 768px) {
  .sub-title {
    margin-left: 15px;
  }
}

.works__items {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.works__items figure {
  max-width: 760px;
  width: 100%;
  height: 100%;
  border: 2px solid #E1D7C3;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.25);
}
.works__items figure a:hover {
  opacity: 1;
}
.works__items figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.works__item {
  display: flex;
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
}
.works__item p {
  margin-left: 9%;
  width: 36%;
}
@media screen and (max-width: 768px) {
  .works__item p {
    margin-left: 5%;
    width: 45%;
  }
}
@media screen and (max-width: 390px) {
  .works__item p {
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 390px) {
  .works__item {
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 30px;
  }
}

.works__item::after {
  content: "";
  width: 69.4%;
  height: 2px;
  background-color: #9B8872;
  position: absolute;
  bottom: 1px;
  left: 0;
}

.works__item2 {
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
}
.works__item2 p {
  margin-right: 9%;
  width: 36%;
}
@media screen and (max-width: 390px) {
  .works__item2 p {
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 390px) {
  .works__item2 {
    flex-direction: column-reverse;
  }
}

.works__item-r::after {
  content: "";
  width: 69.4%;
  height: 2px;
  background-color: #9B8872;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-top: 60px;
}

.works__design {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
}
.works__design figure {
  width: 100%;
  height: 100%;
}
.works__design figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .works__design {
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 30px;
  }
}

.works__design::after {
  content: "";
  width: 69.4%;
  height: 2px;
  background-color: #9B8872;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-top: 60px;
}

.design__item {
  min-width: 470px;
}
@media screen and (max-width: 768px) {
  .design__item {
    padding: 0 2%;
    min-width: 100%;
  }
}

.design__item p {
  margin-top: 20px;
  margin-bottom: 40px;
}

.name-en {
  font-size: 16px;
  padding-left: 10px;
  display: flex;
  align-items: center;
}
.name-en::before, .name-en::after {
  content: "";
  width: 15px;
  height: 1px;
  margin: 0 10px;
  background-color: #363636;
  display: flex;
}
@media screen and (max-width: 768px) {
  .name-en {
    padding-left: 0;
    font-size: 13px;
  }
}

.skills,
.biography {
  position: relative;
}

.skill__container {
  width: 100%;
  max-width: 849px;
  margin: 0 auto;
  padding-bottom: 120px;
  overflow: hidden;
}

.skills::after {
  content: "";
  width: 69.4%;
  height: 2px;
  background-color: #9B8872;
  position: absolute;
  bottom: 0;
  right: 0;
}

.skill__items {
  display: flex;
  align-items: center;
  height: auto;
}
@media screen and (max-width: 390px) {
  .skill__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}

.skill__items:first-of-type {
  margin-top: 50px;
}
@media screen and (max-width: 390px) {
  .skill__items:first-of-type {
    margin-top: 30px;
  }
}

.skill__items:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (max-width: 390px) {
  .skill__items:not(:first-of-type) {
    margin-top: 0;
  }
}

.skill__item {
  width: 188px;
  height: 73px;
  padding: 23px 0;
  text-align: center;
  font-size: 18px;
  border-radius: 5px;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .skill__item {
    font-size: 16px;
  }
}
@media screen and (max-width: 390px) {
  .skill__item {
    margin-bottom: 20px;
    width: 100%;
  }
}

.item1 {
  border: 3px solid #E1D7C3;
}

.item2 {
  border: 3px solid rgba(115, 197, 158, 0.38);
}

.skill__item:not(:first-of-type) {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .skill__item:not(:first-of-type) {
    margin-left: 0;
  }
}

.biography__title {
  width: 100%;
  max-width: 849px;
  margin: 0 auto;
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  .biography__title {
    padding: 30px 0;
  }
}

.biography__container {
  position: relative;
}

.biography__image {
  position: relative;
  display: flex;
  width: 100%;
  padding-top: 170px;
}

.roadmap__img {
  transform: translateX(-15%);
  max-width: 1018px;
  max-height: 520px;
}

.career {
  position: absolute;
  bottom: 20vw;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .career {
    bottom: 38vw;
    right: 0;
  }
}
@media screen and (max-width: 390px) {
  .career {
    bottom: 42vw;
    right: 0;
  }
}
.career li {
  color: #363636;
  margin-bottom: 7%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .career li {
    margin-bottom: 4%;
    font-size: 14px;
  }
}
@media screen and (max-width: 390px) {
  .career li {
    font-size: 13px;
  }
}
.career span {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-right: 20px;
}
@media screen and (max-width: 390px) {
  .career span {
    width: 14px;
    height: 14px;
  }
}

.dot1 {
  background-color: #6D614C;
}

.dot2 {
  background-color: #9B8872;
}

.dot3 {
  background-color: #7C9765;
}

.dot4 {
  background-color: #87C551;
}

.dot5 {
  background-color: #4DC0AF;
}

.dot6 {
  background-color: #F8BE4D;
}

footer {
  border-top: 2px solid #9B8872;
}

small {
  background-color: #9B8872;
  height: 30px;
  display: block;
  padding-top: 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.05em;
}

.post {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .post {
    padding-top: 40px;
  }
}

.post__inner {
  padding: 70px 0 120px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .post__inner {
    padding-bottom: 80px;
  }
}

.posts__items {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 50px;
}

.posts__image {
  border: 2px solid #E1D7C3;
}

.posts__text-wrapper {
  font-size: 16px;
  font-weight: normal;
}

.posts__information {
  display: flex;
  margin-top: 12px;
}
.posts__information .posts__category {
  font-size: 14px;
  padding: 5px;
  border-radius: 3px;
  background-color: #f1ece1;
  color: #9B8872;
}
.posts__information .posts__category + .posts__category {
  margin-left: 5px;
}

.posts__image {
  max-width: 658px;
  max-height: 370px;
}

.posts__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.posts__video {
  min-width: 658px;
  min-height: 370px;
}

.detail__body {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .detail__body {
    padding: 30px 0;
  }
}

.detail__content p {
  padding: 0 3%;
}
.detail__content a {
  color: #9B8872;
}

.wp-block-heading {
  color: #575757;
  padding-top: 16px;
}
@media screen and (max-width: 768px) {
  .wp-block-heading {
    padding-top: 10px;
  }
}

.wp-block-video {
  max-width: 1040px;
}

.wp-block-image {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .wp-block-image {
    margin: 0 auto;
  }
}

body .is-layout-flex {
  margin: 30px auto;
}
@media screen and (max-width: 768px) {
  body .is-layout-flex {
    display: flex;
    flex-direction: column;
    margin: 20px auto;
  }
}

.is-layout-flex {
  justify-content: center;
}

.article__btn {
  margin: 80px auto;
  background-color: #F5A100;
  border-radius: 6px;
  width: 240px;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .article__btn {
    margin-top: 80px;
  }
}

.btn-return {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s;
  text-decoration: none;
  color: #fff;
}

.btn:hover,
.btn-return:hover {
  color: #F5A100;
  background-color: #fff;
}

.wp-block-video video {
  border: 2px solid #E1D7C3;
}

.wp-block-image img {
  border: 2px solid #E1D7C3;
  margin: 0 auto;
}

.ttl-cont {
  position: relative;
  z-index: 0;
  padding-top: 80px;
}

.form__message {
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
  bottom: 60px;
}
@media screen and (max-width: 768px) {
  .form__message {
    bottom: 20px;
  }
}
.form__message p {
  line-height: 2;
}

.form__container {
  padding: 100px 0 130px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .form__container {
    padding: 40px 2% 80px;
  }
}

@media screen and (max-width: 768px) {
  .form__list {
    min-width: 343px;
  }
}
@media screen and (max-width: 390px) {
  .form__list {
    min-width: initial;
    max-width: 343px;
  }
}

.form__field + .form__field {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .form__field + .form__field {
    margin-top: 30px;
  }
}

.form__beside, .form__field {
  width: 100%;
}

input, textarea {
  -webkit-appearance: revert;
     -moz-appearance: revert;
          appearance: revert;
  height: inherit;
  width: 100%;
}

.form__label {
  display: flex;
  min-width: 20vw;
}
.form__label label {
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: #363636;
}
@media screen and (max-width: 768px) {
  .form__label label {
    align-items: baseline;
  }
}

.form__required {
  font-family: "Noto Sans JP";
  font-size: 13px;
  color: red;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .form__required {
    margin-left: 10px;
  }
}

.form__block {
  width: 100%;
}

.form__data, .form__input {
  height: 57px;
  width: 100%;
  color: #363636;
  margin-top: 24px;
  padding: 16px 7px;
  border-radius: 4px;
  border: 1px solid #575757;
}
@media screen and (max-width: 768px) {
  .form__data, .form__input {
    margin-top: 10px;
  }
}

.form__textarea {
  height: 180px;
  width: 100%;
  color: #363636;
  margin-top: 24px;
  padding: 16px 7px;
  border-radius: 4px;
  border: 1px solid #575757;
}
@media screen and (max-width: 768px) {
  .form__textarea {
    margin-top: 10px;
  }
}

input, textarea {
  -webkit-appearance: revert;
     -moz-appearance: revert;
          appearance: revert;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  height: inherit;
}

input[type=checkbox] {
  width: 15px;
  height: 15px;
}

.wpcf7 input::-moz-placeholder, .wpcf7 textarea::-moz-placeholder {
  color: #acacac;
}

.wpcf7 input::placeholder, .wpcf7 textarea::placeholder {
  color: #acacac;
}

.wpcf7-list-item-label {
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: #363636;
}

.submit__button {
  margin-top: 40px;
  background-color: #F5A100;
  border-radius: 6px;
}

.btn {
  width: 100%;
  height: 70px;
  border-radius: 6px;
  border: 1px solid #F5A100;
  font-size: 16px;
  position: relative;
  display: inline-block;
  padding: 22px 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  color: #fff;
}

.privacy__inner {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .privacy__inner {
    padding: 60px 0;
  }
}

.privacy__title {
  line-height: 1.2;
}

.privacy__text {
  width: 100%;
  max-width: 65.277vw;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .privacy__text {
    max-width: 78.125vw;
  }
}

section {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  section {
    margin-top: 30px;
  }
}

h1, h2, .header__items, .footer__items {
  font-weight: 700;
  font-family: "Roboto";
  color: #575757;
  letter-spacing: 0.05em;
}
h1 a, h2 a, .header__items a, .footer__items a {
  color: #575757;
  letter-spacing: 0.05em;
}

h2 {
  font-size: 28px;
  text-align: center;
  text-align: right;
  padding-top: 45px;
  padding-right: 8px;
}
@media screen and (max-width: 390px) {
  h2 {
    font-size: 22px;
    padding-top: 50px;
    padding-right: 5px;
  }
}

h3 {
  font-weight: 400;
  color: #575757;
  letter-spacing: 0.05em;
  font-size: 24px;
  overflow-wrap: break-word;
  padding-top: 30px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 390px) {
  h3 {
    font-size: 18px;
  }
}

#inner {
  width: calc(100% - 240px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  #inner {
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .header__inner {
    padding-top: 40px;
  }
}
@media screen and (max-width: 390px) {
  .header__inner {
    padding-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .header__inner .bg-color {
    background-color: #FFFCFA;
  }
}

main,
body {
  background-color: #FFFCFA;
}
main p, main div,
body p,
body div {
  color: #363636;
  letter-spacing: 0.05em;
}

.title {
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
  padding-bottom: 50px;
}

.title__container {
  position: relative;
}

.title__container::after {
  content: "";
  width: 69.4%;
  height: 2px;
  background-color: #9B8872;
  position: absolute;
  bottom: 0;
  right: 0;
}

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

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

/*# sourceMappingURL=style.css.map */