@charset "UTF-8";
/* ===============================================
# mixins
=============================================== */
/* ===============================================
# color
=============================================== */
/* ===============================================
# common
=============================================== */
body {
  font-size: 16px;
  color: #331305;
  font-family: "Italiana", "DNP ShueiGoKinStd", serif;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: #331305;
  display: block;
}
a:hover {
  opacity: 0.7;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media (max-width: 767px) {
  .container {
    width: 86%;
  }
}

.clear::after {
  content: "";
  clear: both;
  display: block;
}
@media (max-width: 767px) {
  .clear::after {
    content: none;
  }
}

span {
  display: inline-block;
}

.br-pc {
  display: block;
}
@media (max-width: 767px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media (max-width: 767px) {
  .br-sp {
    display: block;
  }
}

/* ===============================================
# header
=============================================== */
header {
  background-color: #F2F8FC;
  position: fixed;
  width: 100%;
  height: 80px;
  z-index: 1000;
}
@media (max-width: 767px) {
  header {
    height: 64px;
  }
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-logo {
  font-size: 48px;
}
.header-logo a {
  padding: 1rem;
}
@media (max-width: 767px) {
  .header-logo {
    text-align: center;
    font-size: 2.25rem;
    padding: 0;
  }
}

.header-nav {
  margin-left: auto;
  margin-right: 0;
}

.header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .header-nav ul {
    display: block;
  }
}

.header-nav-item a {
  margin: 1rem 0;
  padding: 1rem;
}
@media (min-width: $layout-width-inner) {
  .header-nav-item + .header-nav-item {
    margin-left: 60px;
  }
}
@media (max-width: 767px) {
  .header-nav-item {
    padding: 0 2rem;
    text-align: left;
  }
}

.hamburger {
  display: none;
}
@media (max-width: 767px) {
  .hamburger {
    /*　ハンバーガーボタン　*/
    display: block;
    position: fixed;
    z-index: 3;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #555;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

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

  .hamburger span:nth-child(2) {
    top: 20px;
  }

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

  /* ナビ開いてる時のボタン */
  .hamburger.active {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    width: 0px;
  }

  .hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3) {
    background: #fff;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }

  .hamburger.active span:nth-child(1) {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }

  .hamburger.active span:nth-child(3) {
    -webkit-transform: translateY(-16px) rotate(90deg);
    transform: translateY(-16px) rotate(90deg);
  }

  nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    width: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    visibility: hidden;
  }

  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }

  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
  }

  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
  }

  nav.globalMenuSp ul li:hover {
    background: #ddd;
  }

  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1rem;
    text-decoration: none;
  }

  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    opacity: 100;
    visibility: visible;
  }
}
/* ===============================================
 section共有クラス
=============================================== */
.section-style {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .section-style {
    padding: 100px 0;
  }
}

.section-title,
.thanks-title {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .section-title,
.thanks-title {
    font-size: 36px;
  }
}

.lead {
  font-size: 20px;
  text-align: center;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .lead {
    font-size: 16px;
    padding-bottom: 20px;
  }
}

/* ===============================================
# top
=============================================== */
#top {
  background-image: url(../img/top-cat.jpg);
  background-position: center 20%;
  background-size: cover;
  width: 100%;
  height: 80vh;
  padding-top: 80px;
}

.top-message {
  -webkit-filter: drop-shadow(5px 5px 10px #331305);
          filter: drop-shadow(5px 5px 10px #331305);
  padding-top: 20vh;
  text-align: center;
}
.top-message .top-title {
  font-size: 84px;
  margin-bottom: 15px;
  color: #F2F8FC;
}
@media (max-width: 767px) {
  .top-message .top-title {
    font-size: 48px;
    margin-bottom: 15px;
  }
}
.top-message .top-subtitle {
  font-size: 24px;
  color: #F2F8FC;
  letter-spacing: 0.4rem;
}
@media (max-width: 767px) {
  .top-message .top-subtitle {
    font-size: 20px;
  }
}

/* ===============================================
# about
=============================================== */
#about {
  background-color: #F2F8FC;
}

.about-message {
  padding: 40px 60px;
  line-height: 2;
}
@media (max-width: 767px) {
  .about-message {
    padding: 20px 0;
  }
}

.btn-area {
  text-align: center;
}

/* ===============================================
# service
=============================================== */
.service-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.service-card {
  width: 315px;
  height: 230px;
  background-color: #F2F8FC;
  border-radius: 20px;
  margin-bottom: 50px;
  -webkit-box-shadow: 0px 5px 5px rgba(45, 101, 138, 0.25);
          box-shadow: 0px 5px 5px rgba(45, 101, 138, 0.25);
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
.service-card a {
  padding: 90px 0;
}
.service-card:hover {
  opacity: 0.7;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-box-shadow: 0 0 0 #331305;
          box-shadow: 0 0 0 #331305;
}
@media (max-width: 767px) {
  .service-card {
    height: 100px;
    margin-bottom: 30px;
  }
  .service-card a {
    padding: 30px 0;
  }
}

.service-title {
  font-size: 32px;
  margin-bottom: 8px;
  text-align: center;
}
@media (max-width: 767px) {
  .service-title {
    font-size: 24px;
  }
}

.service-sub-title {
  text-align: center;
}

.service-message {
  text-align: center;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .service-message p {
    text-align: left;
  }
}

.btn {
  /* こっちをdisplay: block;にしてもかかるけど共通の仕様にしたいので */
  /*テキストの基点とするためrelativeを指定*/
  position: relative;
  background: #F8FAB4;
  border-radius: 30px;
  padding: 25px 120px;
  font-size: 20px;
  min-width: 160px;
  font-family: "Italiana", serif;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: #331305;
  outline: none;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.btn:hover {
  background: #331305;
  color: #fff;
}

.btn span {
  /*絶対配置でテキストの位置を決める*/
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /*アニメーションの指定*/
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /*ブロック要素にしてテキスト折り返しなし*/
  display: block;
  white-space: nowrap;
}

/*差し替わるテキストの設定*/
.btn span:nth-child(2) {
  opacity: 0;
  /*透過0に*/
}

/*hoverするとテキストが入れ替わる設定*/
.btn:hover span:nth-child(1) {
  opacity: 0;
  /*透過0に*/
}

.btn:hover span:nth-child(2) {
  opacity: 1;
  /*不透明に*/
}

.btn-contact {
  margin-top: 40px;
}

/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
  position: fixed;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #F2F8FC;
  color: #331305;
  border-radius: 15px;
  width: 630px;
  height: 460px;
  padding: 70px 100px;
  z-index: 100;
}
@media (max-width: 767px) {
  .modalWrapper {
    width: 300px;
    height: 450px;
    padding: 50px 20px;
  }
}
.modalWrapper .service-text {
  padding-top: 50px;
  line-height: 1.7;
}

.closeModal {
  position: absolute;
  top: 2rem;
  right: 1rem;
  cursor: pointer;
}
.closeModal .fa-xmark {
  z-index: 10000;
  width: 30px;
  height: 30px;
}

.is-open {
  display: block;
}

/* ===============================================
# 	works
=============================================== */
#works {
  background-color: #F2F8FC;
}

.work-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.work-wrapper::after {
  content: "";
  display: block;
  width: 30%;
}
@media (max-width: 767px) {
  .work-wrapper {
    display: block;
    margin-top: 1rem;
  }
}

.work-item {
  width: 300px;
  height: 300px;
  margin-bottom: 60px;
  border-radius: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .work-item {
    width: 275px;
    height: 275px;
    margin: 0 auto 20px;
  }
}
.work-item img {
  overflow: hidden;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  background-color: #fff;
}
.work-item .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  /* 絶対位置指定 */
  top: 0;
  left: 0;
  opacity: 0;
  /* マスクを表示しない */
  background-color: rgba(6, 69, 71, 0.8);
  /* マスクは半透明 */
  border-radius: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.work-item .mask .caption {
  padding: 50px 30px 0;
  color: #fff;
}
.work-item:hover .mask {
  opacity: 1;
  /* マスクを表示する */
}

.work-title {
  font-size: 24px;
  margin-bottom: 16px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .work-title {
    padding-top: 10px;
    margin-bottom: 8px;
    text-align: center;
  }
}

.work-sub-title {
  line-height: 1.6;
}

.work-more {
  color: #fff;
}

.work-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  background-color: #fff;
  border-radius: 15px;
  padding: 5px 10px;
}

.work-audio {
  position: absolute;
  width: 250px;
  margin: 0 auto;
  display: block;
  bottom: 15px;
  left: 22px;
}
@media (max-width: 767px) {
  .work-audio {
    bottom: 40px;
    left: 15px;
  }
}

/* 	tag color */
.tag-illustration {
  background-color: #FAB4B4;
}

.tag-web-design,
.tag-banner {
  background-color: #B4FAE1;
}

.tag-paper,
.tag-logo {
  background-color: #B4F6FA;
}

.tag-web-design-cording {
  background: #020024;
  background: -webkit-gradient(linear, left top, right top, from(#020024), color-stop(0%, #b4fae1), to(#e8b4fa));
  background: linear-gradient(90deg, #020024 0%, #b4fae1 0%, #e8b4fa 100%);
}

.tag-narration {
  background-color: #FAB4DA;
}

.and-more {
  text-align: center;
}

/* ===============================================
# 	work flow
=============================================== */
.work-flow-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px auto 60px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .work-flow-wrapper {
    display: block;
    margin: 20px auto 40px;
  }
}

.work-flow-item {
  width: calc(100% - 350px);
}
@media (max-width: 767px) {
  .work-flow-item {
    width: 100%;
  }
}
.work-flow-item p {
  line-height: 1.5;
  font-family: "DNP ShueiGoKinStd", serif;
}
@media (max-width: 767px) {
  .work-flow-item p {
    margin-bottom: 1rem;
  }
}

.work-flow-title {
  font-size: 20px;
  margin-bottom: 1rem;
  line-height: 1.3;
  background: #F2F8FC;
  padding: 3px 10px;
}
@media (min-width: 768px) and (max-width: {$layout-width-inner - 1px}) {
  .work-flow-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .work-flow-title {
    font-size: 18px;
    margin-bottom: 0.5rem;
  }
}

.work-flow-number {
  font-size: 30px;
}
@media (min-width: 768px) and (max-width: {$layout-width-inner - 1px}) {
  .work-flow-number {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .work-flow-number {
    font-size: 22px;
  }
}

.work-flow-photo {
  width: 350px;
  margin-right: 60px;
}
@media (max-width: 767px) {
  .work-flow-photo {
    width: 100%;
  }
}

/* ===============================================
# 	profile
=============================================== */
#profile {
  background-color: #F2F8FC;
}

.profile-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .profile-wrapper {
    display: block;
  }
}
.profile-wrapper .profile-photo {
  width: 30%;
}
@media (max-width: 767px) {
  .profile-wrapper .profile-photo {
    width: 100%;
  }
}

.profile-text {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .profile-text {
    margin-left: 0;
  }
}
.profile-text .profile-name {
  font-size: 1.5rem;
  margin-bottom: 1.25px;
}
.profile-text p {
  line-height: 1.7;
}

/* --------------------------
contact
--------------------------*/
.contact-message {
  text-align: center;
  margin-bottom: 1rem;
}

.labels {
  width: 700px;
  display: block;
  text-align: left;
  margin: 20px auto 5px;
}
@media (max-width: 767px) {
  .labels {
    width: 280px;
  }
}

input[type=text],
input[type=mail],
textarea {
  display: block;
  font-size: 16px;
  width: 700px;
  margin: auto;
  padding: 16px;
  background-color: #F2F8FC;
  border: 2px dashed #7dbfee;
  border-radius: 25px;
}
@media (max-width: 767px) {
  input[type=text],
input[type=mail],
textarea {
    width: 280px;
  }
}

.end-message {
  display: none;
}

.false-message {
  display: none;
}

.submit-btn {
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #E80344;
  color: #fff;
  font-size: 20px;
  margin: 40px auto 0;
  padding: 8px 48px;
  border: none;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .submit-btn {
    font-size: 18px;
  }
}

.submit-btn:hover {
  opacity: 0.7;
}

/* --------------------------
footer
--------------------------*/
footer {
  padding: 20px 0;
}

.copyright {
  text-align: center;
  font-family: "Cinzel", serif;
}

/* --------------------------
thanks
--------------------------*/
.thanks {
  background: url(../img/fi-asiato.png);
  background-position: 80% 70%;
  background-size: 70%;
  background-repeat: no-repeat;
  height: 90vh;
  width: 800px;
}
@media (max-width: 767px) {
  .thanks {
    background-size: 100%;
    width: 100%;
  }
}

.thanks-box {
  padding-top: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .thanks-box {
    display: block;
    padding-top: 100px;
  }
}

@media (min-width: 768px) and (max-width: {$layout-width-inner - 1px}) {
  .thanks-photo {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .thanks-photo {
    width: 50%;
    margin: 0 auto 16px;
  }
}

.thanks-title {
  font-size: 32px;
}
@media (min-width: 768px) and (max-width: {$layout-width-inner - 1px}) {
  .thanks-title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .thanks-title {
    font-size: 24px;
  }
}

.thanks-message {
  font-size: 20px;
  text-align: center;
  margin-top: 16px;
}
@media (min-width: 768px) and (max-width: {$layout-width-inner - 1px}) {
  .thanks-message {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .thanks-message {
    font-size: 14px;
  }
}

.btn-home {
  display: block;
  margin: 30px auto 0;
  font-size: 16px;
}

/* --------------------------
work-detail-page
--------------------------*/
#work-detail {
  padding: 120px 0 60px;
}
@media (max-width: 767px) {
  #work-detail {
    padding: 120px 0 30px;
  }
}

.work-detail-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .work-detail-wrapper {
    display: block;
  }
}

.work-detail-item {
  margin: 0 auto;
}

.work-detail-message {
  width: 500px;
}
@media (max-width: 767px) {
  .work-detail-message {
    width: 100%;
  }
}

.btn-work-link {
  font-size: 20px;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .page-link {
    text-align: center;
  }
}

.work-img-area {
  background-color: #F2F8FC;
}

.sc-normal {
  margin: 0 auto;
  padding: 50px 0;
  width: 100%;
}
@media (max-width: 767px) {
  .sc-normal {
    width: 100%;
  }
}

.all-sc {
  margin: 0 auto;
  padding: 50px 0;
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .all-sc {
    display: block;
    width: 100%;
  }
}

.design-text {
  margin-bottom: 16px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .design-text {
    margin-top: 32px;
  }
}

.src {
  width: 80%;
  text-align: center;
}
@media (max-width: 767px) {
  .src {
    width: 100%;
  }
}
.src img {
  margin: 20px auto;
}
.src iframe {
  width: 560px;
  height: 315px;
  margin: 20px auto;
}
@media (max-width: 767px) {
  .src iframe {
    width: 300px;
    height: 200px;
  }
}

.pc-src {
  width: 80%;
}
@media (max-width: 767px) {
  .pc-src {
    width: 100%;
  }
}

.pc-src-wide {
  width: 100%;
}

.sp-src {
  width: 20%;
  margin-left: 50px;
}
@media (max-width: 767px) {
  .sp-src {
    width: 100%;
    margin-left: 0;
  }
}

.page-back {
  margin: 20px 0;
  text-align: right;
}
@media (max-width: 767px) {
  .page-back {
    text-align: center;
  }
}

.btn-back {
  padding: 20px;
  font-size: 20px;
  background: #fff;
  border: solid 1px #331305;
}
@media (max-width: 767px) {
  .btn-back {
    padding: 20px 5px;
    font-size: 16px;
  }
}

.btn-link {
  padding: 10px;
  font-size: 16px;
  background: #fff;
  border: solid 1px #331305;
}
@media (max-width: 767px) {
  .btn-link {
    padding: 10px 5px;
    font-size: 14px;
  }
}

.nare-img {
  -webkit-box-shadow: 0px 0px 5px -3px #331305;
          box-shadow: 0px 0px 5px -3px #331305;
}

.attention {
  font-size: 12px;
}