@charset "UTF-8";
html {
  font-size: 100%;
}

body {
  color: #333333;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* メディアクエリ */
/* サイト全体のコンテンツ幅を設定 */
.container {
  width: 1296px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

/* 中のコンテンツ部分の最大幅を設定 */
.inner {
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    margin: 0 auto;
    min-width: 100%;
  }
}

.header-nav {
  width: 960px;
  max-width: 90%;
  margin: 0 auto;
}

/* ==========================================
改行 レスポンシブ
========================================== */
.sp_br {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp_br {
    display: block;
  }
}
.pc_br {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc_br {
    display: none;
  }
}
/* ==========================================
section-title
========================================== */
.section-title {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-bottom: 75px;
  font-weight: bold;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #79c8c0;
}
.section-title::before {
  content: "Work";
  font-family: serif;
  font-size: 36px;
  color: #79c8c0;
  opacity: 0.7;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: bold;
    position: relative;
  }
  .section-title::after {
    bottom: -16px;
  }
  .section-title::before {
    font-size: 30px;
    top: -30px;
    opacity: 0.3;
  }
}

/* ==========================================
header
========================================== */
.header {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 0.875rem;
  color: #333;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header {
    display: none;
  }
}

.header-nav ul {
  display: flex;
  justify-content: space-between;
  line-height: 1rem;
}

.header-nav-right {
  display: flex;
  justify-content: flex-end;
  color: #998373;
}
.header-nav-right li {
  padding: 10px 10px;
  transition: all 1s ease;
}
.header-nav-right li:not(:first-child) {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .header-nav-right li:not(:first-child) {
    margin-left: 33px;
  }
}
@media screen and (max-width: 767px) {
  .header-nav-right li:first-child {
    margin-left: 64px;
  }
}
.header-nav-right li:hover {
  border-bottom: #998373 1px solid;
  color: #79c8c0;
}

.header-nav-left {
  color: #998373;
}

/* ==========================================
ハンバーガーメニュー
========================================== */
.drawer-icon {
  display: none;
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    position: fixed;
    display: block;
    top: 20px;
    right: 15px;
    z-index: 300;
    transition: transform 0.5s ease 0s;
  }
}
.drawer-icon.is-active {
  transform: translateX(-180px);
}
.drawer-icon.is-active .drawer-icon_bar1 {
  transform: rotate(-45deg);
  top: 10px;
  background-color: #998373;
}
.drawer-icon.is-active .drawer-icon_bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon_bar3 {
  transform: rotate(45deg);
  top: 10px;
  background-color: #998373;
}

.drawer-icon_bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
}

.drawer-icon_bar1,
.drawer-icon_bar2,
.drawer-icon_bar3 {
  position: absolute;
  width: 22px;
  height: 4px;
  background-color: #333;
  top: 0;
  left: 0;
  z-index: 301;
}

.drawer-icon_bar1 {
  top: 0;
}

.drawer-icon_bar2 {
  top: 8px;
}

.drawer-icon_bar3 {
  top: 16px;
}

.drawer-content {
  color: #998373;
  width: 180px;
  height: 50%;
  position: fixed;
  z-index: 200;
  right: 0;
  top: 0;
  background-color: #fffaf2;
  box-shadow: 0 0 3px rgba(51, 51, 51, 0.2);
  transform: translateX(180%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-content_item:not(:last-child) {
  border-bottom: 1px dotted #998373;
}
.drawer-content_item a {
  color: #998373;
  font-size: 1.35rem;
  display: block;
  padding: 10px 40px;
}

.drawer-background {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 199;
  background-color: #fff;
  opacity: 0.6;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

/* ==========================================
top-img
========================================== */
.page-top {
  height: 450px;
}
@media screen and (max-width: 767px) {
  .page-top {
    text-align: center;
    width: 100%;
  }
}

.top-img {
  background-image: url(./img/topimg-1.jpg);
  position: relative;
  width: 70%;
  max-width: 70%;
  margin-left: auto;
  height: 450px;
  background-position: 0 -40px;
}
@media screen and (max-width: 767px) {
  .top-img {
    width: 100%;
    max-width: 100%;
    margin: 0;
    margin-bottom: 30px;
  }
}
.top-img img {
  width: 100%;
  background-position: 0 10px 0px;
}

h1.logo {
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: 118px;
  left: 15%;
}
@media screen and (max-width: 767px) {
  h1.logo {
    width: 70%;
    margin: 0 auto;
    position: absolute;
    top: 80px;
    left: 40px;
  }
}

p.lead, p.lead-sc {
  padding: 0 5px;
  background-color: #fff;
  opacity: 0.75;
  font-size: 1.1428rem;
  letter-spacing: 0.2em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  p.lead, p.lead-sc {
    top: 340px;
    text-align: center;
    padding: 2px 5px 2px 5px;
    text-align: center;
    font-size: 1.0625rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
    border-radius: 3px;
  }
}

p.lead {
  position: absolute;
  top: 340px;
  left: 15%;
}
@media screen and (max-width: 767px) {
  p.lead {
    top: 360px;
    left: 8%;
  }
}

p.lead-sc {
  position: absolute;
  top: 380px;
  left: 15%;
}
@media screen and (max-width: 767px) {
  p.lead-sc {
    top: 400px;
    left: 8%;
  }
}

/* ==========================================
work
========================================== */
.work {
  margin-bottom: 113px;
  padding-top: 160px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .work {
    padding-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .work-title {
    margin-bottom: 40px;
  }
}

.work-main {
  display: flex;
}
@media screen and (max-width: 767px) {
  .work-main {
    display: block;
    margin: 0 auto;
  }
}

.work-main-txt {
  display: flex;
  width: 50%;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .work-main-txt {
    display: block;
    width: 100%;
    margin-left: 0;
  }
}

dl.work-main-item {
  padding-top: 30px;
  padding-left: 15px;
  display: flex;
  flex-wrap: wrap;
}
dl.work-main-item dt {
  width: 38%;
}
@media screen and (max-width: 767px) {
  dl.work-main-item dt {
    width: 25%;
  }
}
dl.work-main-item dd {
  width: 62%;
}
@media screen and (max-width: 767px) {
  dl.work-main-item dd {
    width: 75%;
  }
}

.work-main-img {
  width: 50%;
  max-width: 100%;
  cursor: pointer;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .work-main-img {
    display: block;
    width: 100%;
  }
}
.work-main-img img {
  width: 524px;
  max-width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease; /* ゆっくり変化させる */
}
.work-main-img:hover img {
  transform: scale(1.1); /* 拡大 */
}

.work-sub {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .work-sub {
    display: block;
    margin-top: 80px;
    padding-bottom: 40px;
  }
}
.work-sub img {
  width: 334px;
  max-width: 100%;
  height: 213px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 5% auto;
}

.work-sub-wrapper {
  position: relative;
  transition: all 0.5s ease 0s;
  cursor: pointer;
  overflow: hidden;
}
.work-sub-wrapper img {
  transition: transform 0.6s ease; /* ゆっくり変化させる */
}
.work-sub-wrapper:hover::after {
  content: "名刺 / DTP";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  text-shadow: 0px 4px 8px #fff;
  color: #1a0f07;
}
.work-sub-wrapper:hover img {
  transform: scale(1.1); /* 拡大 */
}

.sub-img2:hover::after {
  content: "WEBデザイン";
}

.sub-img3:hover::after {
  content: "SNS / WEB画像";
}

.btn {
  display: flex;
  justify-content: center;
}

.work-btn {
  text-decoration: none;
  line-height: 1;
  display: block;
  border-radius: 4px;
  margin-top: 30px;
  color: #79c8c0;
  border: dotted 2px #79c8c0;
  transition: all 0.5s ease 0s;
  margin: 5% auto;
  min-width: 80%;
  height: 60px;
  padding: 22px 100px;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
  text-align: center;
}
.work-btn:hover {
  background: #79c8c0;
  border: none;
  cursor: pointer;
  color: #fffaf2;
}
@media screen and (max-width: 767px) {
  .work-btn {
    margin-top: 40px;
  }
}

/* ==========================================
service
========================================== */
.service-title::before {
  content: "Service";
  color: #79c8c0;
}
.service-title::after {
  background-color: #79c8c0;
}

section.service {
  font-size: 0.875rem;
  padding-bottom: 250px;
  padding-top: 80px;
  background: #fffaf2;
}
@media screen and (max-width: 767px) {
  section.service {
    padding-bottom: 40px;
  }
}

.service-wrapper {
  display: flex;
  justify-content: space-between;
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .service-wrapper {
    display: block;
  }
}

.service-item {
  width: 220px;
  height: 300px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service-item {
    margin: 0 auto 64px;
    width: 400px;
  }
}

.service-item-img {
  margin: 0 auto;
  width: 180px;
  height: 180px;
  border-radius: 10%;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service-item-img {
    margin: 0 auto;
  }
}
.service-item-img img {
  width: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-item-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #998373;
  margin-bottom: 5px;
}

.service-item-text {
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .service-item-text {
    width: 80%;
    margin: 0 auto;
  }
}

/* ==========================================
about
========================================== */
section.about {
  margin-top: 60px;
  padding-top: 80px;
}

.about-title {
  margin-bottom: 60px;
}
.about-title::before {
  content: "About";
  color: #79c8c0;
}

.about {
  margin-bottom: 120px;
}

.about-wrapper {
  display: flex;
}
@media screen and (max-width: 767px) {
  .about-wrapper {
    display: block;
  }
}

.about-img-wrapper {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .about-img-wrapper {
    display: block;
    width: 100%;
    margin: 10% auto 15%;
  }
}
.about-img-wrapper img {
  width: 90%;
}

.about-content {
  padding-top: 10px;
  width: 60%;
}
@media screen and (max-width: 767px) {
  .about-content {
    display: block;
    width: 80%;
    margin: 0 auto;
    font-size: 0.875rem;
  }
}

.about-text {
  margin-top: 50px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.sub-lead {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  margin-left: -5px;
}

/* ==========================================
contact
========================================== */
.contact-title::before {
  content: "Contact";
  color: #79c8c0;
}

.contact {
  padding-top: 120px;
  padding-bottom: 20px;
  background-color: #fffaf2;
  background-image: url(./img/main-img.png);
  background-color: rgba(255, 255, 255, 0.7);
  background-blend-mode: lighten;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
}

.contact-text {
  margin-bottom: 50px;
}

.contact-inner {
  width: 600px;
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}

label {
  display: block;
  width: 150px;
  text-align: left;
}

input[type=text],
input[type=email],
textarea {
  border: solid 1px #fff;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  padding: 5px;
  font-size: 1.25rem;
  width: 600px;
  max-width: 100%;
}

.contact-btn {
  color: #79c8c0;
  border: solid 2px #79c8c0;
  transition: all 0.5s ease 0s;
  background-color: #fff;
  opacity: 0.8;
  min-width: 50%;
}
.contact-btn:hover {
  background: #79c8c0;
  border: none;
  cursor: pointer;
  color: #fff;
}

.contact-message {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.15rem;
  display: none;
}
.contact-message.-error {
  color: rgb(216, 60, 60);
}

/* ==========================================
footer
========================================== */
.footer {
  padding-top: 30px;
  text-align: center;
  background-color: #fffaf2;
  color: #fff;
}
.footer p {
  font-size: 0.85rem;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-logo {
  width: 150px;
}
.footer-logo a {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .footer-logo {
    display: none;
  }
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer-wrapper {
    flex-direction: column;
  }
}

.footer-nav-list {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .footer-nav-list {
    margin-bottom: 35px;
  }
}

.footer-nav-item {
  padding: 5px 20px;
  transition: all 0.4s ease-out;
  color: #998373;
}
.footer-nav-item:hover {
  color: #79c8c0;
  border-bottom: 1px solid #998373;
}
@media screen and (max-width: 767px) {
  .footer-nav-item {
    padding: 5px 10px;
  }
}

@media screen and (max-width: 767px) {
  .footer-contact-btn {
    margin-bottom: 30px;
  }
}

.footer-contact-link {
  background-color: #998373;
  padding: 15px 70px;
  border-radius: 5px;
  transition: all 0.4s ease;
}
.footer-contact-link:hover {
  background-color: #79c8c0;
  color: #fff;
}

.copyright {
  color: #998373;
}

/* ==========================================
archive-Page
========================================== */
.archive_wrapper {
  background-color: #fcfcfc;
}

.hp-sample_container {
  background-color: #fffaf2;
}

.hp-sample_wrapper {
  margin: 0 auto 100px;
  text-align: center;
  max-width: 70%;
}
.hp-sample_wrapper p {
  line-height: 1.5;
}

h3.hp-sample_title {
  font-size: 0.875rem;
  margin-top: 80px;
  margin-bottom: 30px;
  position: relative;
  color: #79c8c0;
}
h3.hp-sample_title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #79c8c0;
}

.hp-sample_sitename {
  font-size: 1.35rem;
  font-weight: bold;
  padding-bottom: 30px;
}

.hp-sample_img {
  margin-bottom: 50px;
  margin-left: 40px;
  margin-top: 60px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .hp-sample_img {
    width: 100%;
    margin: 60px auto 0;
  }
}

.hp-sample {
  margin: 0 auto;
  max-width: 90%;
}

.hp-sample_wrapper-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .hp-sample_wrapper-item {
    flex-direction: column;
  }
}

.work-detail {
  display: flex;
  justify-content: space-around;
  max-width: 100%;
  text-align: left;
  margin-bottom: 60px;
  margin-left: 60px;
  margin-right: 80px;
}
@media screen and (max-width: 767px) {
  .work-detail {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    display: block;
  }
}

.work-detail_left {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .work-detail_left {
    width: 90%;
    text-align: left;
  }
}

.work-detail_right {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .work-detail_right {
    width: 100%;
    margin: 0 auto;
  }
}

dl.work-detail_item {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  dl.work-detail_item {
    display: block;
  }
}
dl.work-detail_item dt {
  width: 100%;
  margin-bottom: 0;
  color: #79c8c0;
}
@media screen and (max-width: 767px) {
  dl.work-detail_item dt {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
}
dl.work-detail_item dd {
  width: 100%;
  margin-bottom: 20px;
  line-height: 1.5;
}
dl.work-detail_item dd a {
  text-decoration: underline;
  color: #fff;
  display: inline-block;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  dl.work-detail_item dd {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.hp-sample {
  transform-origin: top left;
  transition: transform 0.3s;
}

.hp-sample:hover {
  cursor: zoom-in;
}

.hp-sample.scale {
  transform: scale(4, 4);
}

.hp-sample.scale:hover {
  cursor: zoom-out;
}

.archive_cat {
  font-size: 0.875rem;
  margin-bottom: 15px;
}

/* ==========================================
work-ct-Page
========================================== */
.work-ct-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 90px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .work-ct-wrapper {
    flex-direction: column;
  }
}

.work-ct-item-wrapper {
  display: flex;
}

.work-ct-item {
  width: 40%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .work-ct-item {
    width: 90%;
    margin: 0 auto 80px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
.work-ct-item img {
  margin-bottom: 20px;
  width: 387px;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}
.work-ct-item dl {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
}
.work-ct-item dt {
  padding: 2px 0px;
  color: #998373;
  margin-right: 20px;
  border-bottom: #998373 1px dotted;
  width: 25%;
  -moz-text-align-last: left;
       text-align-last: left;
}
.work-ct-item dd {
  width: 70%;
  margin-bottom: 10px;
}

.ct-more-btn {
  text-decoration: none;
  line-height: 1;
  display: block;
  border-radius: 4px;
  color: #79c8c0;
  background-color: #fff;
  border: dotted 1px #79c8c0;
  transition: all 0.5s ease 0s;
  margin: 5% auto;
  max-width: 80%;
  height: 60px;
  padding: 22px 100px;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
  text-align: center;
}
.ct-more-btn:hover {
  background: #79c8c0;
  border: none;
  cursor: pointer;
  color: #fffaf2;
}
@media screen and (max-width: 767px) {
  .ct-more-btn {
    margin-top: 15px;
    max-width: 90%;
  }
}

/* ==========================================
page.php
========================================== */
.title-wrapper {
  margin-bottom: 0px;
}

.page-title {
  text-align: center;
  background-color: #fffaf2;
  color: #fff;
  padding: 10px 0;
  margin-bottom: 30px;
}

/* ==========================================
single-work
========================================== */
.work-return-btn {
  text-align: center;
}
.work-return-btn a {
  font-size: 1.1rem;
  display: inline-block;
  padding: 10px 30px;
  margin-top: 40px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  color: #000;
  letter-spacing: 0.2em;
  transition: all 0.4s ease;
}
.work-return-btn a:hover {
  background-color: #000;
  color: #fff;
  border-radius: 5px;
}

/* ==========================================
archive.html
========================================== */
.hp-sample_container {
  margin-top: 70px;
  background-color: #fffaf2;
}

.ct-title_wrapper {
  padding: 30px 0px 30px;
  text-align: center;
  background: url(./img/work.jpg) no-repeat center bottom;
  background-size: cover;
  width: 80%;
  margin: 60px auto 0;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
  background-position: bottom 20% center;
}
.ct-title_wrapper p {
  font-size: 1.125rem;
  font-family: serif;
  color: #998373;
}
@media screen and (max-width: 767px) {
  .ct-title_wrapper {
    width: 100%;
  }
}

/* ==========================================
work.html
========================================== */
.to-archive-btn {
  text-decoration: none;
  line-height: 1;
  display: block;
  border-radius: 4px;
  margin-top: 30px;
  color: #79c8c0;
  border: dotted 2px #79c8c0;
  transition: all 0.5s ease 0s;
  margin: 5% auto;
  max-width: 80%;
  height: 60px;
  padding: 22px 100px;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
  text-align: center;
}
.to-archive-btn:hover {
  background: #79c8c0;
  border: none;
  cursor: pointer;
  color: #fffaf2;
}
@media screen and (max-width: 767px) {
  .to-archive-btn {
    margin-top: 40px;
    max-width: 100%;
    padding: 20px 40px;
  }
}

.work-mocup {
  width: 90%;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .work-mocup {
    display: block;
  }
}

.line-rich-terada-img img, .my-name-card-img img {
  margin-top: 40px;
}/*# sourceMappingURL=style.css.map */