<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&amp;display=swap");
/*==========================================================
# colors
===========================================================*/
/*=========================================================
# font
==========================================================*/
/*==========================================================
# common - 全体に共通するスタイル
===========================================================*/
body {
  font-size: 16px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  background: #eee;
}

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

button {
  appearance: none;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: content-box;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

.section-title {
  font-size: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding-bottom: 10px;
  display: inline-block;
  position: relative;
}
.section-title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: 45%;
  height: 3px;
  transform: translateX(-50%);
  background: #000;
}
.section-title span {
  color: #fff;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .section-title {
    font-size: 41px;
  }
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 35px;
  }
}

/* splash
----------------------------------------------------------*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #eee;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo svg {
  width: 100%;
}

/*アニメーション前の指定*/
#mask path {
  fill-opacity: 0; /*最初は透過0で見えない状態*/
  transition: fill-opacity 0.5s; /*カラーがつく際のアニメーション0.5秒で変化*/
  fill: none; /*塗りがない状態*/
  stroke: #333; /*線の色*/
}

/*アニメーション後に.doneというクラス名がで付与された時の指定*/
#mask.done path {
  fill: #333; /*塗りの色*/
  fill-opacity: 1; /*透過1で見える状態*/
  stroke: none; /*線の色なし*/
}

.splashbg {
  display: none;
}

body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background: #EDD2DE;
  animation-name: PageAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/* drawer
----------------------------------------------------------*/
.drawer-icon {
  position: fixed;
  top: 34px;
  right: 4%;
  z-index: 300;
  display: none;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active {
  transform: translateX(-230px);
}
.drawer-icon.is-active .drawer-icon__bar1 {
  top: 8px;
  transform: rotate(-45deg);
  background: #fff;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  top: 8px;
  transform: rotate(45deg);
  background: #fff;
}

.drawer-icon__bars {
  width: 27px;
  height: 29px;
  display: block;
  position: relative;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 27px;
  height: 3px;
  background: #fff;
  top: 0;
  left: 0;
}
.drawer-icon__bar1.is-black,
.drawer-icon__bar2.is-black,
.drawer-icon__bar3.is-black {
  background: #000;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 10px;
}

.drawer-icon__bar3 {
  top: 20px;
}

.drawer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  width: 230px;
  background: #fff;
  height: 100vh;
  z-index: 100;
  transform: translateX(105%);
  transition: transform 0.5s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-content__items {
  text-align: center;
  width: 100%;
}

.drawer-content__item a {
  display: block;
  font-size: 20px;
  font-weight: 700;
  padding: 25px 0;
  text-decoration: none;
  color: #000;
}

.drawer-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 50;
  display: none;
}
.drawer-bg.is-active {
  display: block;
}

/* top
  ----------------------------------------------------------*/
.top {
  width: 100%;
  height: 100vh;
  color: #fff;
  position: relative;
  opacity: 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .top {
    background-position: 7% 0;
  }
}
@media screen and (max-width: 767px) {
  .top {
    background-position: 29% 0;
  }
}

.top-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #EDD2DE;
  z-index: -1;
}

.top-img__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: bg-anime 30s linear 0s infinite;
}
.top-img__item:nth-child(1) {
  background-image: url(../img/bg2.jpg);
}
.top-img__item:nth-child(2) {
  background-image: url(../img/blue-sky.jpg);
  animation-delay: 10s;
}
.top-img__item:nth-child(3) {
  background-image: url(../img/evening-sky.jpg);
  animation-delay: 20s;
}
@keyframes bg-anime {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
  }
  10% {
    transform: scale(1.1);
    opacity: 1;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

body.appear .top {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top-text {
  position: fixed;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .top-text {
    width: 90%;
    top: 22%;
  }
}

.top-title {
  font-size: 40px;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .top-title {
    font-size: 34px;
  }
}
@media screen and (max-width: 767px) {
  .top-title {
    font-size: 25px;
  }
}

.nav-list {
  display: flex;
  margin-top: 78px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .nav-list {
    margin-top: 40px;
    display: block;
    text-align: center;
  }
}

.nav-menu a {
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  width: 158px;
  text-align: center;
  padding: 15px 0;
  transition: color 0.4s;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .nav-menu a {
    font-size: 23px;
  }
}
@media screen and (max-width: 767px) {
  .nav-menu a {
    font-size: 20px;
  }
}
.nav-menu a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.47);
  border-radius: 15px;
  display: block;
  transition: all 0.4s;
  z-index: -1;
}
.nav-menu a:hover {
  color: #707070;
}
.nav-menu a:hover::before {
  height: 100%;
}
.nav-menu:not(:first-child) {
  margin-left: 23px;
}
@media screen and (max-width: 767px) {
  .nav-menu:not(:first-child) {
    margin-left: 0;
  }
}

.top-footer {
  margin-top: 98px;
}
@media screen and (max-width: 767px) {
  .top-footer {
    margin-top: 45px;
  }
}

.contact-btn {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  padding: 17px 10px;
  width: 326px;
  text-align: center;
  border: 3px solid #fff;
  border-radius: 50px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  transition: all 0.2s ease-in;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contact-btn {
    font-size: 25px;
    padding: 15px 10px;
    width: 292px;
  }
}
@media screen and (max-width: 767px) {
  .contact-btn {
    width: 100%;
    max-width: 267px;
    font-size: 23px;
    padding: 12px 10px;
  }
}
.contact-btn::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background: rgba(255, 255, 255, 0.47);
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  border-radius: 50%;
  display: block;
  z-index: -1;
}
.contact-btn::after {
  position: absolute;
  content: "";
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background: rgba(255, 255, 255, 0.47);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.contact-btn:hover {
  color: #707070;
  border: 3px solid rgba(255, 255, 255, 0.47);
}
.contact-btn:hover::before {
  top: -35%;
  background-color: rgba(255, 255, 255, 0.47);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.contact-btn:hover::after {
  top: -45%;
  background-color: rgba(255, 255, 255, 0.47);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/* scroll
----------------------------------------------------------*/
.scrolldown {
  position: absolute;
  bottom: 0;
  left: 3.7%;
  /*下からの距離が変化して丸の全体が上から下に動く*/
  /*上から下にかけて丸が透過→不透明→透過する*/
}
@media screen and (max-width: 767px) {
  .scrolldown {
    left: 7.5%;
  }
}
.scrolldown span {
  position: absolute;
  left: 19px;
  bottom: 65px;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .scrolldown span {
    font-size: 16px;
    left: 14px;
    bottom: 71px;
  }
}
.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -8px;
  /*丸の形状*/
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@media screen and (max-width: 767px) {
  .scrolldown::before {
    width: 16px;
    height: 16px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 110px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.scrolldown::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 119px;
  background: #eee;
}

/* main
----------------------------------------------------------*/
.main {
  background: linear-gradient(45deg, #EDD2DE, #C2D7E8, #E8EBC3);
  background-size: 600% 600%;
  animation: GradientBackground 8s ease infinite;
  position: sticky;
  z-index: 1;
}
@keyframes GradientBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* about
----------------------------------------------------------*/
.about {
  padding: 175px 0 20px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 200px;
    text-align: center;
  }
}

.title-about {
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding-right: 16px;
  position: absolute;
  font-family: "Montserrat", sans-serif;
  top: 109px;
  left: 8.1%;
  letter-spacing: 0.5em;
  z-index: 50;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .title-about {
    left: 6.1%;
  }
}
@media screen and (max-width: 767px) {
  .title-about {
    writing-mode: horizontal-tb;
    padding-bottom: 7px;
    padding-right: 0;
    top: 90.5px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.title-about::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 3px;
  height: 195px;
  transform: translateY(-50%);
  background: #000;
}
@media screen and (max-width: 767px) {
  .title-about::after {
    top: 100%;
    right: 0;
    left: 50%;
    height: 3px;
    width: 59px;
    transform: translate(-50%, 0);
  }
}

.about-contents {
  margin-left: 32.82%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about-contents {
    margin-left: 27.82%;
  }
}
@media screen and (max-width: 767px) {
  .about-contents {
    width: 85%;
    margin: 0 auto;
  }
}

.about-contents__name {
  font-size: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #707070;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about-contents__name {
    font-size: 37px;
  }
}
@media screen and (max-width: 767px) {
  .about-contents__name {
    font-size: 20px;
  }
}

.about-contents__name-living {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .about-contents__name-living {
    font-size: 14px;
  }
}

.about-contents__text {
  margin-top: 41px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about-contents__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .about-contents__text {
    font-size: 14px;
    text-align: left;
    line-height: 1.7;
  }
}

.about-bg {
  position: absolute;
  width: 29.42%;
  height: 1039px;
  top: 172px;
  left: 0;
  background-color: #F3F3E8;
  border-radius: 0 97px 97px 0;
  z-index: -10;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about-bg {
    width: 26%;
    height: 730px;
  }
}
@media screen and (max-width: 767px) {
  .about-bg {
    top: 70px;
    width: 93%;
    height: 875px;
  }
}

.about-img {
  padding-top: 1.333%;
  width: 30%;
  margin-top: 60px;
  margin-left: auto;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about-img {
    width: 37%;
  }
}
@media screen and (max-width: 767px) {
  .about-img {
    width: 60%;
  }
}
.about-img img {
  width: 100%;
  border-radius: 50px 0 0 50px;
}

/* service
----------------------------------------------------------*/
.service {
  padding-bottom: 170px;
}
@media screen and (max-width: 767px) {
  .service {
    text-align: center;
    padding: 75px 0 80px;
  }
}

.service-items {
  width: 80%;
  margin: 115px auto 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service-items {
    margin: 77px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .service-items {
    margin-top: 75px;
  }
}

.service-item {
  display: flex;
  align-items: center;
}
.service-item + .service-item {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .service-item {
    display: block;
  }
}

.service-item__left {
  flex: 0 0 17%;
}
@media screen and (max-width: 767px) {
  .service-item__left {
    display: none;
  }
}

.service-item__left-img {
  padding-top: 100%;
  position: relative;
  border-radius: 50%;
  background: #F3F3E8;
}
.service-item__left-img img {
  position: absolute;
  width: 47%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-item__right {
  flex: 0 1 100%;
  padding-left: 6%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service-item__right {
    padding-left: 6%;
  }
}
@media screen and (max-width: 767px) {
  .service-item__right {
    width: 100%;
    text-align: left;
    padding-left: 5%;
  }
}

.service-item__right-title {
  font-size: 30px;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service-item__right-title {
    font-size: 25px;
  }
}
@media screen and (max-width: 767px) {
  .service-item__right-title {
    font-size: 20px;
  }
}

.service-item__right-text {
  margin-top: 28px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .service-item__right-text {
    font-size: 14px;
    margin-top: 17px;
  }
}

/* works
----------------------------------------------------------*/
.works {
  text-align: right;
  position: relative;
}
@media screen and (max-width: 767px) {
  .works {
    text-align: center;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .inner__works {
    padding: 0 30px;
  }
}

.comment-works {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .comment-works p {
    display: inline-block;
    text-align: left;
  }
}

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

.works-items {
  margin-top: 80px;
  display: flex;
  padding-left: 5%;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .works-items {
    padding-left: 2%;
  }
}
@media screen and (max-width: 767px) {
  .works-items {
    display: block;
    margin-top: 50px;
    padding-left: 0;
  }
}

.works-item {
  width: 29.7966666667%;
  max-width: 400px;
}
.works-item + .works-item {
  margin-left: 5.3%;
}
@media screen and (max-width: 767px) {
  .works-item + .works-item {
    margin: 50px auto 0;
  }
}
.works-item:nth-child(n+4) {
  margin-top: 50px;
}
.works-item:nth-child(3n+1) {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .works-item:nth-child(3n+1) {
    margin-left: auto;
  }
}
.works-item:hover {
  cursor: pointer;
}
.works-item:hover .works-item__img &gt; img {
  transform: scale(1.05);
}
@media screen and (max-width: 767px) {
  .works-item {
    width: 100%;
    margin: 0 auto;
  }
}

.works-item__img {
  display: block;
  padding-top: 60.12%;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
}
.works-item__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.4s;
}

.works-item__contents {
  margin-top: 42px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .works-item__contents {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .works-item__contents {
    margin-top: 28px;
  }
}

.works-item__title {
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 1200px) {
  .works-item__title {
    font-size: 25px;
  }
}

.works-item__tag {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.works-item__tag-type {
  font-size: 14px;
  font-weight: 700;
  padding: 3px 16px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  margin-top: 16px;
}
@media screen and (min-width: 1200px) {
  .works-item__tag-type {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .works-item__tag-type {
    padding: 3px 13px;
  }
}
@media screen and (max-width: 767px) {
  .works-item__tag-type {
    font-size: 12px;
    padding: 3px 5%;
  }
}
.works-item__tag-type + .works-item__tag-type {
  margin-left: 2px;
}
@media screen and (min-width: 1200px) {
  .works-item__tag-type + .works-item__tag-type {
    margin-left: 5px;
  }
}
.tag-type__html {
  background: #EDD2DE;
}

.tag-type__css {
  background: #C2D7E8;
}

.tag-type__jquery {
  background: #D8D9DB;
}

.works-item__text {
  text-align: left;
  margin-top: 20px;
  font-size: 14px;
}
@media screen and (min-width: 1200px) {
  .works-item__text {
    margin-top: 27px;
    font-size: 16px;
  }
}

.works-bg {
  width: 95.16%;
  margin-left: auto;
  background: #F3F3E8;
  border-radius: 50px 0 0 50px;
  padding: 60px 0 80px;
  z-index: -100;
}

/*contact 
----------------------------------------------------------*/
.contact {
  text-align: center;
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 80px 0;
  }
}

.section-comment {
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .section-comment p {
    font-size: 13px;
  }
}
.section-comment p span {
  color: #E7728E;
}

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

.contact-form {
  margin: 50px auto 0;
  width: 100%;
  max-width: 690px;
}
@media screen and (min-width: 1200px) {
  .contact-form {
    width: 64.42%;
  }
}
@media screen and (max-width: 767px) {
  .contact-form {
    margin-top: 43px;
    max-width: 460px;
  }
}

.contact-list {
  margin-top: 60px;
}

.contact-item {
  display: flex;
}
@media screen and (max-width: 767px) {
  .contact-item:nth-of-type(3) .contact-item-input {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .contact-item {
    display: block;
  }
}
.contact-item + .contact-item {
  margin-top: 55px;
}

.contact-item-title {
  flex: 0 1 100%;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .contact-item-title {
    font-size: 14px;
  }
}

.contact-item-input {
  flex: 0 0 68%;
}
@media screen and (max-width: 767px) {
  .contact-item-input {
    margin-top: 5px;
  }
}

.contact-item-inline {
  font-size: 18px;
  color: #E7728E;
  vertical-align: super;
  line-height: 1;
}

input[type=text],
input[type=email],
textarea {
  width: 100%;
  border: 0;
  font-size: 18px;
  outline: none;
  font-family: "Noto Sans JP", sans-serif;
  padding: 5px 10px;
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=email],
  textarea {
    font-size: 14px;
    padding: 5px;
  }
}

input[type=text],
input[type=email] {
  height: 40px;
  color: rgba(62, 62, 62, 0.5);
  transition: all 0.3s;
}
input[type=text]:hover, input[type=text]:focus,
input[type=email]:hover,
input[type=email]:focus {
  color: #000;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.2);
}

textarea {
  resize: vertical;
  height: 190px;
  padding: 10px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  textarea {
    padding: 5px;
  }
}
textarea:hover, textarea:focus {
  color: #000;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.2);
}

.contact-submit {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .contact-submit {
    margin-top: 50px;
  }
}

.link-submit {
  display: block;
  padding: 14px 120px 24px;
  background: transparent;
  color: #666;
  font-size: 20px;
  font-weight: 700;
  border: 2px solid #666;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .link-submit {
    padding: 14px 5% 24px;
    width: 100%;
    max-width: 284px;
  }
}
.link-submit::after {
  content: "";
  position: absolute;
  display: block;
  height: 9px;
  width: 100%;
  background-image: repeating-linear-gradient(45deg, #666, #666 1px, transparent 2px, transparent 5px);
  backface-visibility: hidden;
  border-top: 1px solid #666;
  left: 0;
  bottom: 0;
  background-size: 7px 7px;
}
.link-submit.-active {
  background: #fff;
  cursor: pointer;
}
.link-submit.-active:hover {
  background-color: #B2B2B2;
  color: #fff;
  border-color: #000;
}
.link-submit.-active:hover::after {
  background-image: repeating-linear-gradient(45deg, #000, #000 1px, transparent 2px, transparent 5px);
  border-top: 1px solid #000;
  animation: stripe-slide 12s infinite linear forwards;
}
@keyframes stripe-slide {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.link-submit:active {
  transform: translateY(9px);
  border-bottom: 4px solid #666;
}
.link-submit:active::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .link-submit {
    font-size: 18px;
  }
}

.contact-message {
  text-align: center;
  margin-top: 60px;
  display: none;
}
@media screen and (max-width: 767px) {
  .contact-message {
    font-size: 12px;
  }
}
.contact-message.-error {
  color: #f00;
}

/* footer
----------------------------------------------------------*/
.footer {
  width: 81.99%;
  background: #F3F3E8;
  border-radius: 0 50px 0 0;
  padding: 40px 10px 130px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer {
    padding: 35px 10px 100px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 0 60px;
  }
}

.footer-copyright p {
  font-size: 14px;
  letter-spacing: 0.1em;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer-copyright p {
    font-size: 10px;
  }
}

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

.to-top-link {
  color: #000;
  font-size: 50px;
  display: block;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .to-top-link {
    font-size: 40px;
  }
}
.to-top-link:hover {
  color: rgba(0, 0, 0, 0.5);
}</pre></body></html>