@charset "UTF-8";
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .is-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
body {
  font-size: 16px;
  line-height: 1.6;
  color: #3e3e3e;
  font-family: "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background: #fafafa;
}
body.is-fixed {
  overflow: hidden;
}

img {
  width: 100%;
}

a {
  color: #3e3e3e;
}

.section {
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 40px 0 60px;
  }
}

.section-inner {
  max-width: 944px;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (max-width: 767px) {
  .section-inner {
    padding: 0 16px;
  }
}

.section-title {
  position: relative;
  padding-top: 0.75em;
  color: #3e3e3e;
  font-size: 30px;
  letter-spacing: 0.16em;
  z-index: 0;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .section-title {
    text-align: center;
    font-size: 22px;
  }
}
.section-title::before {
  position: absolute;
  bottom: 0.5em;
  left: 0;
  z-index: -1;
  color: #b1e0e6;
  font-size: 1.2em;
  line-height: 1;
  font-weight: normal;
  content: "私について";
  pointer-events: none;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .section-title::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.util-btn {
  margin-top: 30px;
  text-align: center;
}

.util-link {
  display: inline-block;
  width: 100%;
  max-width: 225px;
  margin: 0 auto;
  position: relative;
  color: #FC9D9D;
  font-size: 18px;
  border: 2px solid #FC9D9D;
  border-radius: 5px;
  background: #fff;
  padding: 0.8em 2em;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .util-link {
    max-width: 200px;
    font-size: 16px;
  }
}
.util-link::before {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #FC9D9D;
  border-radius: 5px;
}
.util-link:hover::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.util-link.-active {
  color: #fff;
  background: #FC9D9D;
  border: 1px solid #fff;
}

/*==============================================
#wrapper
===============================================*/
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* header
-----------------------------------------------*/
.header {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18.8%;
          flex: 0 0 18.8%;
  background: #B1E0E6;
}
@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    height: 84px;
  }
}

.header-inner {
  padding: 16px 24px;
}
@media screen and (max-width: 767px) {
  .header-inner {
    width: 100%;
    padding: 10px 16px;
    position: relative;
  }
}

.header-logo-link {
  display: inline-block;
  font-size: 28px;
  letter-spacing: 0.12em;
  font-weight: bold;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  padding: 8px 0;
}
.header-logo-link:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .header-logo-link {
    font-size: 20px;
    padding: 0;
  }
}

.header-menu-btn {
  position: absolute;
  top: 14px;
  right: 16px;
}

.openbtn {
  position: relative;
  background: #B1E0E6;
  cursor: pointer;
  width: 60px;
  height: 60px;
}

.openbtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  right: 0;
  height: 3px;
  border-radius: 2px;
  background: #3e3e3e;
  width: 55%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 26px;
}

.openbtn span:nth-of-type(3) {
  top: 38px;
}

.openbtn.active span:nth-of-type(1) {
  top: 20px;
  right: 0;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 50%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 32px;
  right: 0;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

.header-contents {
  background: #B1E0E6;
  height: 100vh;
}
@media screen and (max-width: 767px) {
  .header-contents {
    border-top: 1px solid #fff;
    display: none;
  }
}

.header-nav {
  padding: 60px 24px;
}
@media screen and (max-width: 767px) {
  .header-nav {
    padding: 30px 16px;
  }
}

@media screen and (max-width: 767px) {
  .header-nav-items {
    text-align: center;
  }
}

.header-nav-item + .header-nav-item {
  margin-top: 24px;
}

.header-nav-item-link {
  display: inline-block;
  font-size: 20px;
  letter-spacing: 0.12em;
  padding: 6px 6px 0px 6px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  position: relative;
}
.header-nav-item-link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #3e3e3e;
  bottom: -1px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.header-nav-item-link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media screen and (max-width: 767px) {
  .header-nav-item-link:hover {
    opacity: 0.6;
  }
  .header-nav-item-link:hover::after {
    display: none;
  }
}

.sns-link {
  font-size: 30px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.sns-link:hover {
  opacity: 0.6;
}

/*==============================================
#main
===============================================*/
main {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 81.2%;
          flex: 0 1 81.2%;
}
@media screen and (max-width: 767px) {
  main {
    margin-top: 84px;
  }
}

/* fv
-----------------------------------------------*/
.fv {
  position: relative;
  background: #e4f6f9;
  height: 80vh;
  overflow: hidden;
}

.fv-message {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.fv-message-img {
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .fv-message-img {
    width: 150px;
    height: 150px;
  }
}

.fv-message-text {
  font-size: 24px;
  margin: 30px calc(50% - 50vw) 0;
  width: 100vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fv-message-text {
    font-size: 20px;
  }
}

/**
 * ----------------------------------------
 * animation bounce-in-top
 * ----------------------------------------
 */
.bounce-in-top {
  -webkit-animation: bounce-in-top 1.1s both;
  animation: bounce-in-top 1.1s both;
}

@-webkit-keyframes bounce-in-top {
  0% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(-65px);
    transform: translateY(-65px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(-28px);
    transform: translateY(-28px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-top {
  0% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(-65px);
    transform: translateY(-65px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(-28px);
    transform: translateY(-28px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
/**
 * ----------------------------------------
 * animation text-focus-in
 * ----------------------------------------
 */
.text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
/* about
-----------------------------------------------*/
.about-title::before {
  content: "私について";
}

.about-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .about-flex {
    display: block;
    margin-top: 35px;
  }
}

.about-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
}
.about-img img {
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .about-img {
    max-width: 280px;
    margin: 0 auto;
  }
}

.about-message {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
  margin-left: 24px;
}
@media screen and (max-width: 767px) {
  .about-message {
    margin-left: 0;
    margin-top: 16px;
  }
}

.about-text {
  background: #fff;
  padding: 24px;
  border-radius: 5px;
}

/* service
-----------------------------------------------*/
.service {
  background: #fff;
  padding-bottom: 100px;
}

.service-title::before {
  content: "できること";
}

.service-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .service-items {
    display: block;
    margin-top: 35px;
  }
}

.service-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
  background: #fafafa;
  border-radius: 50px 0;
  padding: 24px 16px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service-item {
    -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
    padding: 24px 8px;
  }
}
@media screen and (max-width: 767px) {
  .service-item + .service-item {
    margin-top: 30px;
  }
}

.service-item-img {
  width: 100%;
  max-width: 100px;
  margin: auto;
}

.service-item-title {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #e4f6f9));
  background: linear-gradient(transparent 70%, #e4f6f9 70%);
  margin-top: 24px;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.service-item-text {
  margin-top: 16px;
  text-align: left;
}

/* works
-----------------------------------------------*/
.works-title::before {
  content: "制作実績";
}

.works-contents {
  margin-top: 30px;
}

.works-items {
  display: grid;
  gap: 39px 23px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .works-items {
    gap: 50px;
  }
}

.works-item-link {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.works-item-link:hover .works-img > img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.works-item-link:hover .works-head-title {
  opacity: 0.6;
}

.works-img {
  overflow: hidden;
}
.works-img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.works-head {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .works-head {
    margin-top: 6px;
  }
}

.works-head-title {
  padding: 2px;
  position: relative;
  font-size: 14px;
  white-space: nowrap;
  font-weight: bold;
}
.works-head-title::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 43%;
  height: 3px;
  background: #B1E0E6;
}

.works-footer {
  margin-top: 50px;
}

/* flow
-----------------------------------------------*/
.flow {
  background: #fff;
}

.flow-title::before {
  content: "制作の流れ";
}

.flow-lead-text {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .flow-lead-text {
    text-align: center;
  }
}

.flow-contents {
  margin-top: 50px;
}

.flow-items {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 16px;
  }
}
@media screen and (max-width: 767px) {
  .flow-items {
    grid-template-columns: repeat(1, 1fr);
    gap: 52px 0;
  }
}

.flow-item {
  text-align: center;
  padding: 46px 8px 36px;
  border: 1px solid #3e3e3e;
  border-radius: 5px;
  position: relative;
  min-height: 300px;
}
@media screen and (max-width: 767px) {
  .flow-item {
    width: 85%;
    margin: 0 auto;
    padding-bottom: 16px;
  }
}

.flow-item-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45px;
  height: 45px;
  color: #fff;
  background: #7f7f7f;
  border: 1px solid #3e3e3e;
  font-weight: bold;
  font-size: 26px;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -20px;
}
@media screen and (max-width: 767px) {
  .flow-item-num {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

.flow-item-img {
  width: 40%;
  margin: 0 auto;
  height: 30%;
}
.flow-item-img img {
  height: 100%;
}
.flow-item-img:first-child {
  width: 30%;
}

.flow-item-title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .flow-item-title {
    margin-top: 16px;
  }
}

.flow-item-text {
  text-align: left;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .flow-item-text {
    text-align: center;
    margin-top: 8px;
  }
}

/* contact
-----------------------------------------------*/
.contact-title::before {
  content: "お問い合わせ";
}

.contact-lead-text {
  margin-top: 30px;
}
.contact-lead-text span {
  color: rgb(250, 58, 58);
  display: block;
  text-align: center;
}

.contact-form {
  background: #fff;
  max-width: 600px;
  margin: 30px auto 0;
  padding: 40px 24px;
  border-radius: 5px;
}

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-item + .contact-item {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .contact-item {
    display: block;
  }
}

.contact-dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  font-weight: bold;
}

.form-title {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-title-spacing {
  letter-spacing: -0.9px;
}

.form-red {
  color: rgb(250, 58, 58);
  font-size: 12px;
  vertical-align: super;
  line-height: 1;
}

.contact-dd {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 320px;
          flex: 0 0 320px;
}
.contact-dd input[type=text],
.contact-dd input[type=email],
.contact-dd input[type=tel],
.contact-dd textarea {
  width: 100%;
  font-size: 16px;
  padding: 0.2em 0.5em;
  height: 40px;
}
.contact-dd textarea {
  min-height: 122px;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .contact-dd {
    margin-top: 3px;
  }
}

.contact-footer {
  text-align: center;
}

.contact-footer-privacy {
  margin-top: 24px;
}

.contact-privacy-checkbox {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

.contact-checkbox-input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.contact-checkbox-input:checked + .contact-checkbox-part {
  width: 10px;
  border-top: 0;
  border-left: 0;
  background: transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -5px;
  left: 5px;
}
.contact-checkbox-input:focus-visible + .contact-checkbox-part {
  outline: -webkit-focus-ring-color auto 1px;
}
.contact-checkbox-input:focus-visible:checked + .contact-checkbox-part {
  outline: none;
}

.contact-checkbox-part {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e3e;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.contact-privacy-link {
  text-decoration: underline;
  cursor: pointer;
  padding: 0.5em 0;
  margin-left: 8px;
  display: inline-block;
  line-height: 1.6875;
  padding: 0.5em 0;
  margin-left: 6px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.contact-privacy-link:hover {
  opacity: 0.6;
}

.contact-footer-link {
  letter-spacing: 0.16em;
}

.contact-message {
  text-align: center;
  margin-top: 60px;
  font-size: 20px;
  display: none;
}
.contact-message.-error {
  color: #f00;
}

/* footer
-----------------------------------------------*/
.footer {
  background: #e4f6f9;
}

.footer-copyright {
  text-align: center;
  padding: 0.5em 0;
}

.to-top {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .to-top {
    bottom: 14px;
    right: 20px;
  }
}