@charset "UTF-8";
/* ------------------------

共通部分

--------------------------*/
html {
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-size: 100%;
  font-style: normal;
  font-weight: 400;
}

a {
  color: #74645c;
  font-size: 17px;
  text-decoration: none;
}

a:visited {
  color: #74645c;
  text-decoration: none;
}

p {
  color: #74645c;
  font-size: 17px;
  line-height: 1.8;
}

.sec__ttl {
  color: #74645c;
  font-family: "futura-pt", sans-serif;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 5vh;
  margin-top: 12vh;
}

.sec__ttl-sub {
  color: #74645c;
}

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
}

/* WordPressアップロード画像への適用 */
.wp-block-image img,
.wp-caption img,
figure img,
.attachment img,
.wp-image img,
.aligncenter img,
.alignleft img,
.alignright img,
.size-full img,
.size-large img,
.size-medium img,
.size-thumbnail img {
  height: auto;
  max-width: 100%;
}

.wrapper {
  box-sizing: border-box;
  max-width: 1324px;
  padding-left: 18vw;
  padding-right: 4vw;
}

body {
  margin: 0;
  width: 100vw;
}

main {
  margin: 0;
  width: 100vw;
}

.btn-p {
  color: #f4f3f6;
  margin-top: 50px;
  text-align: right;
}

.btn-p a {
  background-color: #74645c;
  border-radius: 5px;
  color: #fff;
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 400;
  padding: 5px 25px;
  width: 100%;
}

.btn a:visited {
  color: #fff;
}

/* ====================

header

======================*/
#header-nav {
  bottom: 10px;
  height: 200px;
  left: 0;
  position: fixed;
  width: 150px;
}

#header-nav li {
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 400;
  margin: 10px;
}

/* =====================


index.html

=========================*/
#mv {
  box-sizing: border-box;
}

#mv h1 {
  color: #87bfc1;
  font-family: "futura-pt", sans-serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  margin: 25vh 0 0 0;
}

#mv p {
  font-family: "futura-pt", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  padding-bottom: 0;
}

/* breadcrumb */
.breadcrumb {
  color: #74645c;
  font-family: "futura-pt", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-top: 10px;
}

.breadcrumb a {
  color: #74645c;
  text-decoration: none;
}

.breadcrumb a:hover {
  opacity: 0.7;
}

.breadcrumb .separator {
  color: #74645c;
  margin: 0 8px;
}

.breadcrumb .current {
  color: #74645c;
}

/* works */
.works {
  margin-top: 100px;
  width: 80vw;
}

.Works-box {
  word-wrap: break-word;
  margin-bottom: 3vh;
  margin-top: 50px;
  overflow-wrap: break-word;
  width: 60vw;
}

.Works-box .sec__ttl-sub {
  font-size: 22px;
  margin-top: 15px;
}

/* front-page Works-box の p タグ */
#works.works .Works-box p:first-of-type {
  line-height: 1;
  margin-top: 8px;
}

#works.works .Works-box p:last-of-type {
  line-height: 1;
  margin-top: 5px;
}

.archive-works .Works-box p:last-child {
  word-wrap: break-word;
  margin: 5px 0 0 0;
  overflow-wrap: break-word;
  white-space: normal;
}

.Works-box img {
  -o-object-fit: contain;
  height: auto;
  image-rendering: auto;
  max-width: 100%;
  object-fit: contain;
}

.zoomInText {
  position: relative; /*テキストの基点となる位置を定義*/
}

.zoomInText span.mask {
  display: block; /*画像をくくるspanタグをブロック要素にする*/
  line-height: 0; /*行の高さを0にする*/
  overflow: hidden; /*拡大してはみ出る要素を隠す*/
  position: relative;
  transition: 0.3s ease-in-out; /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomInText:hover span.mask::before {
  background: rgba(116, 100, 92, 0.5); /*背景色*/
  content: ""; /*hoverした時の変化*/
  height: calc(100% - 20px);
  left: 10px;
  position: absolute;
  top: 10px;
  width: calc(100% - 20px);
  z-index: 2;
}

.zoomInText img {
  -webkit-transform: scale(1);
  filter: blur(0);
  height: auto;
  image-rendering: auto;
  margin: 0 auto;
  max-width: 100%;
  transform: scale(1);
  transition: 0.3s ease-in-out; /*移り変わる速さを変更したい場合はこの数値を変更*/
  will-change: transform;
}

.zoomInText:hover img {
  -webkit-transform: scale(1.2); /*hoverした時の変化*/
  filter: blur(2px); /*ぼかし具合を変更したい場合はこの数値を変更*/
  transform: scale(1.2); /*拡大の値を変更したい場合はこの数値を変更*/
}

.zoomInText span.cap {
  -webkit-transform: translate(-50%, -50%);
  color: #f4f3f6; /*テキストの色を変えたい場合はここを修正*/
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 400;
  left: 50%;
  line-height: 1.5; /*行の高さを1.5にする*/
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s ease-in-out; /*移り変わる速さを変更したい場合はこの数値を変更*/
  z-index: 3; /*テキストを前面に出す*/
}

.zoomInText:hover span.cap {
  opacity: 1; /*hoverした時の変化*/
}

/*========= レイアウトのためのCSS ===============*/
.lead {
  padding: 50px 20px;
  text-align: center;
}

/*画像のレスポンシブ*/
img {
  height: auto;
  width: 100%;
}

/*　横幅　*/
.zoomInText {
  margin: 0 auto; /*中央揃え*/
  width: 100%;
}

.archive-works .Works-box p {
  margin: 8px 0;
}

/* skill  */
.skill {
  margin-top: 100px;
}

.skill .sec__ttl-sub {
  color: #74645c;
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 700;
  margin-top: 15px;
}

.skill-box-item p {
  margin-top: 5px;
}

.skill-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
  max-width: 1152px;
  width: 70vw;
}

.skill-box-item {
  height: 250px;
  margin: 0;
  text-align: center;
  width: 150px;
}

.skill-box p {
  font-size: 15px;
  line-height: 1.5;
}

.skill-box img {
  height: 100px;
  margin: 0 auto;
  width: 100px;
}

/* service */
.service {
  margin-top: 100px;
}

.service-box {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.service-box-item {
  margin: 0;
  width: 30vw;
}

.service-box-item .sec__ttl-sub {
  margin-bottom: 15px;
  text-align: center;
}

.service-box-item p:nth-child(2) {
  display: flex;
  justify-content: center;
  text-align: center;
}

.service-box-item p:last-child {
  margin-top: 10px;
}

.service-box img {
  height: auto;
  width: 250px;
}

.service-box div:nth-child(2) img {
  margin: 13px 0;
}

/* service LP links */
.service-lp-links {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.service-lp-card {
  background: #f9f8f6;
  border: 1px solid #e5e0da;
  border-radius: 8px;
  flex: 1;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-lp-card:hover {
  -webkit-transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-lp-card__inner {
  padding: 32px 28px;
}

.service-lp-card__label {
  background: #74645c;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding: 4px 12px;
  text-transform: uppercase;
}

.service-lp-card .sec__ttl-sub {
  margin-bottom: 12px;
  text-align: left;
}

.service-lp-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}

.service-lp-card .btn-p {
  margin-top: 20px;
  text-align: left;
}

.service-lp-card .btn-p a {
  font-size: 14px;
  font-weight: 600;
}

/* contact */
#contact {
  margin-bottom: 12vh;
  margin-top: 2vh;
}

#contact .wpcf7-response-output {
  border: none;
  color: #dc3232;
}

#contact .wpcf7 {
  width: 400px;
}

#contact .wpcf7-text {
  display: block;
  margin-bottom: 20px;
  padding: 12px;
  width: 100%;
}

#contact .wpcf7-textarea {
  display: block;
  margin-bottom: 20px;
  padding: 12px;
  width: 100%;
}

#contact .wpcf7-submit {
  background-color: #87bfc1;
  border: none;
  border-radius: 5px;
  color: #f4f3f6;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  padding: 8px 25px;
}

/* ======================

背景アニメーション

======================== */
.area {
  background: #f4f3f6;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -10;
}

.area .circles {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}

.area .circles li {
  animation: animate 25s linear infinite;
  background: url("../image/dandelion.png");
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -150px;
  display: block;
  height: 20px;
  list-style: none;
  position: absolute;
  width: 20px;
}

.area .circles li:nth-child(1) {
  animation-delay: 0s;
  height: 80px;
  left: 25%;
  width: 80px;
}

.area .circles li:nth-child(2) {
  -webkit-animation-delay: 2s;
  -webkit-animation-duration: 12s;
  animation-delay: 2s;
  animation-duration: 12s;
  height: 20px;
  left: 10%;
  width: 20px;
}

.circles li:nth-child(3) {
  animation-delay: 4s;
  height: 20px;
  left: 70%;
  width: 20px;
}

.circles li:nth-child(4) {
  -webkit-animation-delay: 0s;
  -webkit-animation-duration: 18s;
  animation-delay: 0s;
  animation-duration: 18s;
  height: 60px;
  left: 40%;
  width: 60px;
}

.circles li:nth-child(5) {
  animation-delay: 0s;
  height: 20px;
  left: 65%;
  width: 20px;
}

.circles li:nth-child(6) {
  animation-delay: 3s;
  height: 110px;
  left: 75%;
  width: 110px;
}

.circles li:nth-child(7) {
  animation-delay: 7s;
  height: 150px;
  left: 35%;
  width: 150px;
}

.circles li:nth-child(8) {
  -webkit-animation-delay: 15s;
  -webkit-animation-duration: 45s;
  animation-delay: 15s;
  animation-duration: 45s;
  height: 25px;
  left: 50%;
  width: 25px;
}

.circles li:nth-child(9) {
  -webkit-animation-delay: 2s;
  -webkit-animation-duration: 35s;
  animation-delay: 2s;
  animation-duration: 35s;
  height: 15px;
  left: 20%;
  width: 15px;
}

.circles li:nth-child(10) {
  -webkit-animation-delay: 0s;
  -webkit-animation-duration: 11s;
  animation-delay: 0s;
  animation-duration: 11s;
  height: 150px;
  left: 85%;
  width: 150px;
}
@keyframes animate {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    border-radius: 0;
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-1000px) rotate(720deg);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(-1000px) rotate(720deg);
  }
}
/* ==================

works.html

====================== */
.works-body #mv {
  margin-bottom: 10vh;
}

.works-body #works {
  margin-bottom: 10vh;
}

.archive-works .Works-box h3 {
  text-align: center;
}

.archive-works .Works-box p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
  white-space: normal;
}

.archive-works .Works-box p:nth-child(3) {
  line-height: 1;
  margin: 15px 0 0 0;
}

.archive-works .Works-box p:last-child {
  line-height: 1;
  margin: 8px 0 5vh 0;
}

/* works filter */
.works-filter {
  margin: 40px 0 50px 0;
}

.works-filter form {
  align-items: center;
  display: flex;
  gap: 15px;
}

.works-filter select {
  background-color: #f4f3f6;
  border: 1px solid #74645c;
  border-radius: 5px;
  color: #74645c;
  cursor: pointer;
  font-family: "futura-pt", sans-serif;
  font-size: 16px;
  padding: 8px 15px;
}

.works-filter select:focus {
  border-color: #87bfc1;
  outline: none;
}

.filter-reset {
  color: #74645c;
  font-family: "futura-pt", sans-serif;
  font-size: 14px;
  text-decoration: underline;
}

.filter-reset:hover {
  opacity: 0.7;
}

#pagenation {
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 400;
  margin: 0 auto 10vh auto;
  text-align: center;
  width: 80vw;
}

.pagination .page-numbers {
  background: #f4f3f6;
  border: 1px solid #87bfc1;
  border-radius: 3px;
  color: #87bfc1;
  display: inline-block;
  margin-right: 10px;
  padding: 1px 10px;
}

.pagination .current {
  background: #87bfc1;
  color: #fff;
}

.pagination .prev,
.pagination .next {
  background: transparent;
  border: none;
  box-shadow: none;
  color: #87bfc1;
}

.pagination .dots {
  background: transparent;
  border: none;
  box-shadow: none;
}

/* ====================

detail.html

=================== */
.single-main .sec__ttl {
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 600;
}

.Works-box p:nth-child(4) {
  margin-top: 30px;
}

.single-main p {
  line-height: 1.3;
}

.single-main .mask {
  margin-bottom: 15px;
}

.single-main .Works-box img {
  display: block;
  margin: 0 auto;
  margin-bottom: 15px;
}

.single-main .Works-box {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.single-main .Works-box p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
  white-space: normal;
  word-break: break-word;
}

.single-main .Works-box p:last-child {
  margin: 0 0 10vh 0;
}

.single-main .Works-box p.u-mt30 {
  margin-top: 30px;
}

/* ================

footer

============ */
.footer {
  background-color: #74645c;
  margin: 0;
  padding: 1px;
  width: 100vw;
}

.footer p {
  color: #f4f3f6;
  font-family: "futura-pt", sans-serif;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sec__ttl {
    font-size: 34px;
  }
  .wrapper {
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    width: 80vw;
  }
  .skill-box-item {
    height: 180px;
    margin: 15px auto;
    text-align: center;
    width: 100%;
  }
  .wrapper {
    margin: 0 auto;
    max-width: 700px;
  }
  /* ハンバーガーメニュー */
  .humburger {
    background-color: #74645c;
    cursor: pointer;
    height: 60px;
    position: fixed;
    right: 10px;
    top: 10px;
    transition: 0.3s;
    width: 60px;
    z-index: 30;
  }
  .humburger:hover {
    opacity: 0.7;
  }
  .humburger span {
    background: #f4f3f6;
    border-radius: 2px;
    height: 3px;
    left: 14px;
    position: absolute;
    transition: all 0.4s;
    width: 50%;
  }
  .humburger span:nth-child(1) {
    top: 13px;
  }
  .humburger span:nth-child(2) {
    top: 28px;
  }
  .humburger span:nth-child(3) {
    top: 43px;
  }
  .humburger.active span:nth-child(1) {
    -webkit-transform: translateY(6px) rotate(-135deg);
    left: 18px;
    top: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 50%;
  }
  .humburger.active span:nth-child(2) {
    opacity: 0;
  }
  .humburger.active span:nth-child(3) {
    -webkit-transform: translateY(-6px) rotate(135deg);
    left: 18px;
    top: 30px;
    transform: translateY(-6px) rotate(135deg);
    width: 50%;
  }
  #header-nav {
    background-color: #74645c;
    color: #fff;
    height: 70vh;
    left: 0;
    opacity: 0;
    padding: 20px 0;
    position: fixed;
    text-align: center;
    top: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    visibility: hidden;
    width: 100%;
    z-index: 1;
  }
  #header-nav.active {
    opacity: 1;
    visibility: visible;
  }
  #header-nav a {
    color: #f4f3f6;
    font-size: 1.4rem;
  }
  #header-nav li {
    border-bottom: 1px solid #f4f3f6;
    margin: 0 auto;
    padding: 20px 0 10px;
    width: 50%;
  }
  #header-nav a:visited {
    color: #f4f3f6;
  }
  #nav-list {
    padding: 0;
  }
  .sec__ttl {
    margin: 10vh 0 4vh 0;
  }
  /* mv */
  #mv {
    margin-bottom: 6vh;
    padding: 0;
  }
  #mv h1 {
    margin-top: 10vh;
    text-align: left;
  }
  /* works */
  #works {
    margin-bottom: 8vh;
    padding: 0;
  }
  .work-box {
    margin: 30px auto 0;
    width: 80vw;
  }
  .Works-box {
    margin: 40px 0 0 0;
    padding: 0;
    width: 100%;
  }
  .Works-box p:last-child {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
  /* skill tool */
  #skill {
    margin-bottom: 8vh;
    padding: 0;
    width: 80vw;
  }
  .skill-box {
    gap: 15px;
    width: 80vw;
  }
  .skill-box-item {
    margin: 10px auto;
    text-align: center;
    width: 100%;
  }
  .skill-box-item.item-content {
    align-items: center;
    display: flex;
    gap: 15px;
    justify-content: center;
    text-align: left;
  }
  .item-content__box {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
  }
  .skill-box-item.item-content p {
    margin: 0;
  }
  /* service */
  #service {
    margin-bottom: 8vh;
    padding: 0;
    width: 80vw;
  }
  .service-box {
    display: block;
  }
  .service-box-item {
    margin: 50px auto;
    width: 100%;
  }
  .service-lp-links {
    display: block;
  }
  .service-lp-card {
    margin-bottom: 20px;
  }
  /* contact */
  #contact {
    margin: 0 auto 12vh auto;
    padding: 0;
    width: 80vw;
  }
  #contact .wpcf7 {
    margin: 0 auto;
    width: 100%;
  }
  #contact .wpcf7-submit {
    background-color: #87bfc1;
    border: none;
    /* padding: 8px 25px; */
    border-radius: 5px;
    color: #f4f3f6;
    display: block;
    margin: 10px auto 0;
    width: 100px;
  }
  /* 背景調整 */
  .circles li:nth-child(7) {
    animation-delay: 7s;
    height: 150px;
    left: 0;
    width: 150px;
  }
  .circles li:nth-child(10) {
    -webkit-animation-delay: 0s;
    -webkit-animation-duration: 11s;
    animation-delay: 0s;
    animation-duration: 11s;
    height: 20px;
    left: -20%;
    width: 20px;
  }
  .area {
    height: 100%;
  }
  .circles {
    margin: 0;
    padding: 0;
  }
  /* works */
}
/*# sourceMappingURL=sourcemaps/style.css.map */
