@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500&family=Cormorant+Infant:ital@1&family=DM+Sans&family=Noto+Sans+JP&family=Noto+Serif+JP:wght@200&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;700&display=swap");
body {
  color: #3a3e3e;
  font-family: "Arial", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
  line-height: 1.1875;
  letter-spacing: 0.025em;
  background: #f9f8f7;
  font-weight: 400;
}

body.is-fixed {
  height: 100%;
  overflow: hidden;
}

img {
  width: 100%;
}

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

/*===============================================================
common_css
===============================================================*/
.section-title {
  font-size: 5rem;
  font-family: "Cormorant Garamond", sans-serif;
  letter-spacing: normal;
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}

.section-subTitle {
  display: block;
  position: absolute;
  font-size: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  right: -60px;
  font-family: "Noto Serif JP", serif;
}

.section-inner {
  padding: 120px 6%;
}
@media (max-width: 768px) {
  .section-inner {
    padding: 70px 5%;
  }
}

/*===============================================================
header
===============================================================*/
.header {
  background: transparent;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: 65px;
  transition: all 0.5s ease;
}
.header.fixed {
  background: #f9f8f7;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.6);
}
@media (max-width: 960px) {
  .header.fixed {
    background: transparent;
    box-shadow: none;
  }
}

.header__inner {
  padding: 0 5%;
  height: inherit;
}
@media (max-width: 960px) {
  .header__inner {
    padding: 0 3.5%;
  }
}

.header__wrapper {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__logo {
  position: relative;
  width: 50px;
  height: 50px;
}
@media (max-width: 960px) {
  .header__logo {
    margin-top: 15px;
  }
  .fixed .header__logo {
    display: none;
  }
}
.header__logo:before {
  content: "";
  display: block;
  background: url(../img/logo.png) no-repeat center center/cover;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.fixed .header__logo:before {
  opacity: 0;
}
.header__logo:after {
  content: "";
  display: block;
  background: url(../img/logo.png) no-repeat center center/cover;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.fixed .header__logo:after {
  opacity: 1;
}

.header__nav {
  margin-left: auto;
  height: inherit;
}
@media (max-width: 960px) {
  .header__nav {
    display: none;
  }
}

.nav__items {
  display: flex;
  margin-left: auto;
  height: inherit;
}
@media (max-width: 768px) {
  .nav__items {
    flex-direction: column;
  }
}

.nav__item {
  display: flex;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 0;
  padding: 0 1.5rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .nav__item {
    display: inline-block;
    text-align: center;
  }
  .nav__item + .nav__item {
    margin-top: 1.5rem;
  }
}

.nav__link {
  position: relative;
  display: inline-block;
  height: inherit;
  color: #f9f8f7;
  font-size: 15px;
}
.nav__link:after {
  position: absolute;
  right: 2px;
  left: 0px;
  height: 1px;
  content: "";
  z-index: 1;
  background: #f9f8f7;
  bottom: -2px;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform-origin: left center;
  transform: scaleX(0);
}
.nav__link:hover:after {
  transform: scale(1);
}
.fixed .nav__link {
  color: #3a3e3e;
}
.fixed .nav__link:after {
  background-color: #3a3e3e;
}

.drawer-icon {
  position: fixed;
  z-index: 111;
  top: 17px;
  right: 2.5%;
  background: transparent;
  display: none;
  transition: all 0.5s ease;
  padding: 10px 0;
  width: 75px;
  border: 1px solid currentColor;
  color: #f9f8f7;
  border-radius: 3px;
  outline: none;
}
@media (max-width: 960px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active {
  display: none;
}
.fixed + .drawer-icon {
  background: #f9f8f7;
  border: 1px solid currentColor;
  color: #111;
}
.is-open .drawer-icon {
  color: #111;
  border: initial;
}

.drawer-icon__list {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
}

.drawer-icon__bars {
  position: relative;
  width: 13px;
  height: 10px;
  margin-top: 6px;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 1px;
  background: #f9f8f7;
  transition: all 0.5s ease 0s;
}
.fixed + .drawer-icon .drawer-icon__bar1,
.fixed + .drawer-icon .drawer-icon__bar2,
.fixed + .drawer-icon .drawer-icon__bar3 {
  background: #111;
}
.is-open .drawer-icon__bar1,
.is-open .drawer-icon__bar2,
.is-open .drawer-icon__bar3 {
  background: #111;
}

.drawer-icon__bar1 {
  top: 0px;
}
.is-open .drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 5px;
}

.drawer-icon__bar2 {
  top: 5px;
}
.is-open .drawer-icon__bar2 {
  display: none;
}

.drawer-icon__bar3 {
  top: 10px;
}
.is-open .drawer-icon__bar3 {
  width: 100%;
  transform: rotate(45deg);
  top: 5px;
}

.drawer-icon__text {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  right: 12px;
}
.is-active .drawer-icon__text {
  color: #111;
}

.drawer-content {
  width: 80%;
  max-width: 440px;
  min-width: 150px;
  height: 100%;
  background: #f9f8f7;
  position: fixed;
  right: 0px;
  top: 0px;
  box-shadow: 0 0 3px rgba(255, 255, 255, 0.6);
  z-index: 110;
  transform: translateX(105%);
  transition: 0.5s ease 0s;
  padding: 0 25px;
}
.drawer-content.is-open {
  transform: translateX(0);
}

.drawer-content__items li {
  margin-top: 65px;
  display: block;
}
.drawer-content__items li:nth-of-type(n + 2) {
  margin-top: 40px;
}

.drawer-content__item {
  font-size: 2.2rem;
  padding: 0.5rem 0rem;
}

.drawer-background {
  z-index: 109;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
}
.drawer-background.is-open {
  display: block;
}

/*===============================================================
section mainview
===============================================================*/
.mainview {
  position: relative;
}

.mainview-copyArea {
  position: absolute;
  display: block;
  bottom: 60px;
  left: 2%;
  color: #fff;
  z-index: 20;
}
@media (max-width: 768px) {
  .mainview-copyArea {
    bottom: 12px;
  }
}

.t-copy-sub {
  font-size: 2vw;
  padding-left: 1%;
}
@media (max-width: 960px) {
  .t-copy-sub {
    font-size: 3vw;
  }
}
@media (max-width: 768px) {
  .t-copy-sub {
    font-size: 4vw;
  }
}

.t-copy {
  font-size: 13vw;
  font-family: "Public Sans", serif;
  font-weight: 500;
}

.mainview__swiper {
  width: 100%;
}

.mainview__slide {
  position: relative;
  height: 100vh;
}
@media (max-width: 768px) {
  .mainview__slide {
    padding-top: 66.484375%;
  }
}
.mainview__slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes zoomIn {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.15);
  }
}
.swiper-slide-active.mainview__slide img,
.swiper-slide-duplicate-active.mainview__slide img,
.swiper-slide-prev.mainview__slide img {
  animation: zoomIn 10s linear 0s 1 normal both;
}

/*===============================================================
section work
===============================================================*/
.work {
  background: #e6e5e1;
}

.work__items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -4.5%;
}

.work-item__wrapper {
  margin: 90px 3.5% 0;
  width: 26.333%;
  position: relative;
  display: inline-block;
}
@media (max-width: 960px) {
  .work-item__wrapper {
    margin-top: 43px;
    width: 42%;
  }
}
@media (max-width: 768px) {
  .work-item__wrapper {
    width: 100%;
  }
}

.work-item__img {
  padding-top: 131.33%;
  position: relative;
}

.img--work01 {
  background: url(../img/mongol.jpg) no-repeat top center/cover;
}

.img--work02 {
  background: url(../img/work-dental.jpg) no-repeat top center/cover;
}

.img--work03 {
  background: url(../img/work-furniture.png) no-repeat top center/cover;
}

.img--work04 {
  background: url(../img/work-gym.png) no-repeat top center/cover;
}

.img--work05 {
  background: url(../img/work-sobolon.jpg) no-repeat top center/cover;
}

.work-item {
  width: 100%;
}

.work-item__mainTtl {
  font-size: 2.3rem;
  font-family: "Cormorant Garamond", sans-serif;
}

.work-item__subTtl {
  position: absolute;
  transform: rotate(90deg) translate(100%, 0);
  transform-origin: top right;
  font-size: 1.7rem;
  right: 0px;
  top: 43px;
  right: -28px;
  font-family: "Public Sans", serif;
  display: flex;
  flex-wrap: nowrap;
}

.work-item__box {
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}

.work-item__box:after {
  content: "";
  font-size: 20px;
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  align-items: center;
  justify-content: center;
}

.work-item__box:hover:after {
  display: flex;
  background-color: rgba(0, 0, 0, 0.4);
}

.basic-info {
  margin-top: 20px;
  border: 1px solid #111;
  border-radius: 3px;
  padding: 15px 20px;
  background: #f9f8f7;
}

.basic-pass {
  font-size: 15px;
  line-height: 1.7;
}

.work-btn__wrapper {
  margin-top: 20px;
}

.acd-body {
  width: 100%;
  display: none;
  padding: 15px 0px;
}

.detail-box {
  display: flex;
  padding-bottom: 10px;
  margin-top: 25px;
}

.detail-box__head {
  flex: 0 0 52%;
  padding-left: 32px;
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  margin-bottom: auto;
}
.detail-box__head:before {
  text-align: center;
  line-height: 20px;
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  color: #e6e5e1;
  background: #111;
  font-size: 1.2rem;
  margin-bottom: auto;
}
.detail-box__head.head--01:before {
  content: "01";
}
.detail-box__head.head--02:before {
  content: "02";
}
.detail-box__head.head--03:before {
  content: "03";
}
.detail-box__head.head--04:before {
  content: "04";
}

.acd-btn {
  position: relative;
  max-width: 100%;
  display: inline-block;
  padding: 0 50px 0 38px;
  background-color: #111;
  border: 3px solid transparent;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  color: #e6e5e1;
  text-align: center;
  transition: 0.25s;
  font-size: 1.5rem;
  line-height: 55px;
  border-radius: 3px;
}
.acd-btn:focus, .acd-btn:hover {
  background-color: #111;
  border-color: #111;
  color: #e6e5e1;
  cursor: pointer;
}
.acd-btn.is-open:after {
  content: "\f106";
}
.acd-btn:after {
  content: "\f107";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.83em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.detail-box__body {
  flex: 1;
  font-size: 1.5rem;
  flex-direction: column;
  padding-left: 10px;
}

.detail-box__tip {
  width: 100%;
  font-size: 1.5rem;
}
.detail-box__tip:not(:first-of-type) {
  margin-top: 10px;
}

/*===============================================================
section promise
===============================================================*/
.promise {
  position: relative;
}

.promise__itemWrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .promise__itemWrap {
    flex-direction: column;
  }
}

.promise-item {
  position: relative;
}

.promise-item__imgArea {
  width: 42%;
  position: relative;
}
@media (max-width: 768px) {
  .promise-item__imgArea {
    width: 100%;
  }
}

.promise-item__img {
  padding-top: 133%;
  background: url(../img/promise.jpg) no-repeat center center/cover;
}
@media (max-width: 768px) {
  .promise-item__img {
    padding-top: 100%;
  }
}

.promise-item__textArea {
  width: 46.5%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media (max-width: 768px) {
  .promise-item__textArea {
    width: 100%;
    position: initial;
    transform: initial;
  }
}

.promise-item__title {
  margin-top: 30px;
  font-size: 1.6rem;
}

.promise-item__lead {
  margin-top: 10px;
  font-size: 4.15vw;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
  position: relative;
}
@media (max-width: 768px) {
  .promise-item__lead {
    font-size: 2.7rem;
  }
}

.promise-item__text {
  line-height: 1.5;
  margin-top: 20px;
}

.promise-item__part--01:before {
  content: "01";
}

.promise-item__part--02:before {
  content: "02";
}

.promise-item__part--03:before {
  content: "03";
}

.checksheet {
  font-size: 1.5rem;
  text-decoration: underline;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
}
.checksheet:hover {
  opacity: 0.7;
}

.modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 100%;
  padding: 60px;
  height: 85%;
  z-index: 120;
  background: #fff;
  display: none;
}
@media (max-width: 768px) {
  .modal {
    width: 90%;
    height: 80%;
    padding: 38px 36px 20px;
  }
}
@media (max-width: 768px) {
  .modal {
    height: 90%;
    padding: 38px 24px 20px;
  }
}
.modal.is-show {
  display: block;
}

.modal__close-icon {
  text-align: center;
  position: absolute;
  right: -21px;
  top: -21px;
  cursor: pointer;
}
.modal__close-icon img {
  width: 43px;
}

.modal__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 24px;
  position: relative;
  color: #707070;
  line-height: 1;
}
.modal__title::after {
  content: "";
  width: 100px;
  height: 2px;
  background: #e6e5e1;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.modal__content {
  overflow: auto;
  margin-top: 36px;
  white-space: nowrap;
  overflow: scroll;
  height: calc(100% - 124px - 52px);
}
.modal__content > :first-child {
  margin-top: 0;
}
@media (max-width: 960px) {
  .modal__content {
    margin-top: 60px;
    height: calc(100% - 148px - 52px);
  }
}
@media (max-width: 768px) {
  .modal__content {
    margin-top: 38px;
    height: calc(100% - 128px - 52px);
  }
}

.checksheet-table {
  border-collapse: collapse;
  border: 1px solid #707070;
  background: white;
  table-layout: fixed;
  font-weight: 700;
  margin: 0 auto;
}
.checksheet-table th,
.checksheet-table td {
  padding: 0px 24px;
  line-height: 1;
  border: 1px solid #707070;
  height: 58px;
  vertical-align: middle;
}
.checksheet-table th {
  background: #999999;
  text-align: center;
  color: white;
}
.checksheet-table th:first-child {
  width: 172px;
}
@media (max-width: 768px) {
  .checksheet-table th:first-child {
    width: 112px;
  }
}
.checksheet-table td {
  text-align: left;
}
.checksheet-table td:nth-last-of-type(1) {
  width: 500px;
}

.modal__close-button {
  text-align: center;
  margin-top: 50px;
}

.modal__background {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #000;
  opacity: 0.3;
  top: 0;
  left: 0;
  z-index: 119;
  display: none;
}
.modal__background.is-show {
  display: block;
}

.button-modal {
  display: inline-block;
  background: #111;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: all 0.3s ease 0s;
  border-radius: 8px;
  width: 176px;
  padding: 14px;
  border: none;
}

/*===================================================
section skill
=====================================================*/
.skill {
  background: #fff;
}

.skill__list {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.card {
  width: calc((100% - 48px) / 3);
}
.card:not(:nth-of-type(3n + 1)) {
  margin-left: 24px;
}
@media (max-width: 768px) {
  .card {
    margin-right: auto;
    margin-left: auto;
    max-width: 450px;
    width: 100%;
  }
  .card:not(:nth-of-type(3n + 1)) {
    margin-left: auto;
  }
}

.card__img {
  padding-top: 100%;
}

.card__img--html {
  background: url(../img/logo-html.png) no-repeat center center/cover;
}

.card__img--wp {
  background: url(../img/logo-wordpress.png) no-repeat center center/cover;
}

.card__img--js {
  background: url(../img/logo-javascript.png) no-repeat center center/cover;
}

.card__img--git {
  background: url(../img/logo-gulp.png) no-repeat center center/cover;
}

.card__img--design {
  background: url(../img/logo-design.png) no-repeat center center/cover;
}

.card__text-list {
  margin-top: 15px;
  display: flex;
}
.card__text-list:first-of-type {
  margin-top: 30px;
}

.card__text-number {
  flex: 0 0 20px;
  text-align: center;
  line-height: 20px;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #e6e5e1;
  background: #111;
  font-size: 1.2rem;
  margin-bottom: auto;
}

.card__text {
  flex: 1;
  font-size: 1.5rem;
  line-height: 1.5;
  padding-left: 10px;
}

.card__text-explanation {
  font-size: 1.5rem;
  padding: 0px 10px;
  margin-top: 17px;
  border-left: 1px solid #333;
}

.fa-solid {
  font-size: 2rem;
  height: 2rem;
}

/*===================================================
section price
=====================================================*/
.price {
  background-color: #e6e5e1;
}

.price__table {
  max-width: 110rem;
  width: 100%;
  margin: 0 auto;
  padding: 9rem 6%;
}
@media (max-width: 768px) {
  .price__table {
    max-width: 55rem;
  }
}

.price__block + .price__block {
  margin-top: 5rem;
}

.price__title {
  font-size: 2.2rem;
}

.price__set {
  display: flex;
  border-bottom: 1px solid #3e3e3e;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .price__set {
    flex-direction: column;
  }
}
.price__set:nth-of-type(2) {
  margin-top: 1.5rem;
  border-top: 1px solid #3e3e3e;
}

.price__heading {
  width: 120px;
  font-size: 1.5rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .price__heading {
    text-align: center;
    width: 100%;
    padding: 0.8rem 0;
  }
}

.price__value {
  width: 120px;
  font-size: 1.5rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .price__value {
    text-align: center;
    width: 100%;
    padding: 0.8rem 0;
    background-color: #f9f8f7;
  }
}

.price__text {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-left: 3rem;
}
@media (max-width: 768px) {
  .price__text {
    width: 100%;
    padding: 0.8rem 0;
    margin-left: 0rem;
  }
}

/*===================================================
section about
=====================================================*/
.about__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0px auto;
  padding: 0px 6%;
}

.about__content-list {
  margin-top: 40px;
}

.a-media {
  display: flex;
}
@media (max-width: 768px) {
  .a-media {
    flex-direction: column-reverse;
    align-items: center;
  }
}

.a-media__textArea {
  padding-right: 35px;
  flex: 1;
}
@media (max-width: 768px) {
  .a-media__textArea {
    margin-top: 35px;
    padding-right: 0px;
  }
}

.about__media {
  width: 65%;
  max-width: 100%;
}

.a-media__text {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.075em;
}

.media__img {
  width: 42%;
  position: relative;
}
@media (max-width: 768px) {
  .media__img {
    width: 80%;
  }
}
.media__img:before {
  content: "";
  display: block;
  padding-top: 110%;
}
.media__img img {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  object-fit: cover;
  object-position: 50% 20%;
}

/*===================================================
section contact
=====================================================*/
.contact-area {
  max-width: 1200px;
  width: 100%;
  background: #fff;
  padding: 90px 6%;
  margin: 0 auto;
}

.section-c-title {
  text-align: center;
  font-size: 5rem;
  font-family: "Cormorant Garamond", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1;
  position: relative;
  font-family: "Cormorant Garamond", sans-serif;
}

.section-c-subTitle {
  text-align: center;
  font-size: 2.7rem;
  font-family: "Noto Serif JP", serif;
  margin-top: 15px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.075em;
}

.section-c-message {
  font-size: 1.5rem;
  font-family: "Arial", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
  margin-top: 40px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.075em;
}

.contact-area__form {
  border-top: 1px solid #cecac5;
  margin-top: 65px;
  padding-top: 60px;
}

.contact__items {
  display: block;
  width: 90%;
  margin: 0 auto;
}

.contact__list:nth-of-type(n + 2) {
  margin-top: 35px;
}

.contact__label {
  max-width: 500px;
  font-size: 1.5rem;
}

input[type=text],
input[type=email] {
  max-width: 500px;
  width: 100%;
  margin-top: 12px;
  font-size: 1.5rem;
  padding: 15px 18px;
  border: 1px solid #cecac5;
  appearance: none;
  outline: none;
}
input[type=text]:hover, input[type=text]:focus,
input[type=email]:hover,
input[type=email]:focus {
  border: 1px solid #333;
}

textarea {
  width: 100%;
  min-height: 250px;
  margin-top: 12px;
  outline: none;
  appearance: none;
  box-shadow: none;
  border: 1px solid #cecac5;
  font-size: 1.5rem;
  padding: 15px 18px;
  resize: vertical;
}
textarea:hover, textarea:focus {
  border: 1px solid #333;
}

.submit-button {
  display: block;
  width: 45%;
  max-width: 250px;
  font-size: 15px;
  font-weight: 400;
  line-height: 55px;
  letter-spacing: 0.075em;
  text-align: center;
  margin: 0 2%;
  padding: 0;
  border-radius: 3px;
  transition: all 0.3s ease;
  background: #f9f8f7;
  color: #111;
  border: none;
  box-shadow: none;
  border: 1px solid currentColor;
  cursor: pointer;
  margin: 25px auto 0px;
}
.submit-button.-active {
  background: #111;
  color: #f9f8f7;
  border: 1px solid #111;
}

.mandatory {
  display: inline-block;
  font-size: 1.2rem;
  color: #f9f8f7;
  padding: 0.3em 0.6em;
  background-color: #ffc979;
  margin-left: 10px;
}

.c-button {
  display: inline-block;
  font-size: 1.5rem;
  background: #ffc979;
  color: #f9f8f7;
  padding: 1rem 0.8rem;
}

.contact-message {
  text-align: center;
  margin-top: 30px;
  display: none;
  font-family: "Noto Serif JP", serif;
}
.contact-message p {
  font-size: 1.8rem;
  padding: 6px 0px;
}

.contact-message--error {
  color: #ffc979;
}

/*===============================================================
section footer
===============================================================*/
.footer {
  background: #2c2a2a;
  padding: 35px 0 20px;
}

.footer__inner {
  padding: 0 6%;
}

.footer__copyright {
  text-align: center;
  margin-top: 130px;
  color: #f9f8f7;
}
@media (max-width: 768px) {
  .footer__copyright {
    margin-top: 80px;
  }
}
.footer__copyright p {
  display: inline-block;
  font-size: 14px;
}

.totop {
  padding-top: 40px;
  text-align: center;
  position: fixed;
  z-index: 101;
  bottom: 17px;
  right: 2.5%;
  background: #f9f8f7;
  display: none;
  transition: all 0.5s ease;
  height: 70px;
  width: 60px;
  border: 1px solid #111;
  border-radius: 3px;
  outline: none;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.totop.is-show {
  display: block;
}

/* スライダーのwrapper */
.infinite-slider .swiper-wrapper {
  transition-timing-function: linear;
}

.infinite-slider .swiper-slide {
  width: 25% !important;
  height: 40px !important;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .infinite-slider .swiper-slide {
    margin-left: 10px;
  }
}

.slide-01 {
  background: red;
}

.slide-02 {
  background: blue;
}

.slide-03 {
  background: yellow;
}

.slide-04 {
  background: green;
}

/* スライド内の画像 */
.infinite-slider .swiper-slide img {
  width: auto;
  height: 100%;
}

/*# sourceMappingURL=style.css.map */