body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  letter-spacing: 1.1px;
  color: #333;
  min-width: 375px;
}

.inner {
  max-width: 335px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1084px;
    padding: 0 30px;
  }
}

.page-top-button {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-top-button img {
    width: 60px;
  }
}
@media screen and (min-width: 768px) {
  .page-top-button {
    display: block;
    visibility: hidden;
    position: fixed;
    opacity: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ddd;
    right: 25px;
    bottom: 30px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    z-index: 100;
  }
  .page-top-button::after {
    position: absolute;
    content: "";
    width: 70px;
    height: 70px;
    background: url(../img/Icon_contact-arrow.png) no-repeat center center/contain;
    left: 7px;
    top: 4px;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .page-top-button.is-show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .page-top-button:hover {
    opacity: 0.7;
  }
}

.heading__title {
  text-align: center;
  font-size: 36px;
  font-family: "Alata", serif;
}
@media screen and (min-width: 768px) {
  .heading__title {
    font-size: 48px;
  }
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
}

.button {
  display: inline-block;
  text-align: center;
  font-size: 16px;
  color: #333333;
  padding: 8px 26px 10px 26px;
  border-radius: 40px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background-color: #fff;
  border: none;
  -webkit-box-shadow: 0px 0px 16px -5px #333333;
          box-shadow: 0px 0px 16px -5px #333333;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.button:hover {
  -webkit-box-shadow: 0px 0px 16px -13px #333333;
          box-shadow: 0px 0px 16px -13px #333333;
}
@media screen and (min-width: 768px) {
  .button {
    font-size: 20px;
    padding: 10px 40px 12px 40px;
  }
}

.header {
  width: 100%;
  height: 74px;
  position: fixed;
  top: 0;
  background-color: #fff;
  z-index: 20;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 30px;
  z-index: 10;
  border-bottom: 2px solid #f2f2f2;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 1084px;
    margin-right: auto;
    margin-left: auto;
  }
}

.header__logo img {
  width: 90px;
}

.drawer__open {
  width: 30px;
  height: 27px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .drawer__open {
    display: none;
  }
}
.drawer__open.is-checked :nth-child(1) {
  top: 12px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}
.drawer__open.is-checked :nth-child(2) {
  display: none;
}
.drawer__open.is-checked :nth-child(3) {
  top: 12px;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}

.drawer__icon-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #333;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.drawer__icon-bar:nth-child(1) {
  top: 12px;
}
.drawer__icon-bar:nth-child(2) {
  top: 24px;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .header__nav-lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}

.header__nav-list {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.header__nav-list:hover {
  opacity: 0.7;
}

.drawer-content {
  position: fixed;
  top: 0;
  right: 0;
  margin-top: 74px;
  width: 70%;
  height: 100%;
  background-color: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.4s ease;
  transition: transform 0.6s ease, opacity 0.4s ease, -webkit-transform 0.6s ease;
  z-index: 10;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.drawer__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  padding-top: 146px;
}

.drawer__list {
  font-family: "Alata", serif;
}

.drawer-sns-icon {
  margin-top: 40px;
  text-align: center;
}
.drawer-sns-icon img {
  width: 30px;
}

.works {
  margin-top: 94px;
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .works {
    padding-top: 100px;
    margin-top: 74px;
  }
}

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

.works__description {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .works__description {
    font-size: 16px;
  }
}

.works__swiper {
  margin-top: 60px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .works__swiper-navigation {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 10;
    max-width: 397px;
    max-height: 569px;
    width: 36.02vw;
    height: 100%;
    pointer-events: none;
  }
}

.works__next,
.works__prev {
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .works__next,
  .works__prev {
    position: absolute;
    border-radius: 50%;
    top: 74%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: -25px;
    width: 6.36vw;
    height: 6.36vw;
    max-width: 83px;
    max-height: 83px;
    cursor: pointer;
    background-color: #ddd;
    opacity: 0.7;
  }
  .works__next::after,
  .works__prev::after {
    content: "";
    position: absolute;
    -webkit-mask-image: url(../img/swiper-arrow.svg);
            mask-image: url(../img/swiper-arrow.svg);
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: #fff;
    width: 7.36vw;
    height: 7.36vw;
    max-width: 83px;
    max-height: 83px;
    top: 50%;
    left: 53%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@media screen and (min-width: 768px) {
  .works__prev {
    left: -25px;
  }
  .works__prev::after {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
            transform: translate(-50%, -50%) rotate(180deg);
    left: 47%;
  }
}

.swipe-icon {
  position: absolute;
  z-index: 20;
  top: 30%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  padding: 26px;
  border-radius: 6px;
  -webkit-animation: swipeAnimation 2.5s infinite;
          animation: swipeAnimation 2.5s infinite;
}
@media screen and (min-width: 768px) {
  .swipe-icon {
    display: none;
  }
}
.swipe-icon img {
  width: 70px;
}

@-webkit-keyframes swipeAnimation {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  50% {
    opacity: 0.5;
    -webkit-transform: translateX(calc(-50% + 15px));
            transform: translateX(calc(-50% + 15px));
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes swipeAnimation {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  50% {
    opacity: 0.5;
    -webkit-transform: translateX(calc(-50% + 15px));
            transform: translateX(calc(-50% + 15px));
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.swipe-icon-text {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
@media screen and (min-width: 768px) {
  .swipe-icon-text {
    font-size: 16px;
  }
}

.swiper__navigation-wrapper {
  display: none;
}
@media screen and (min-width: 768px) {
  .swiper__navigation-wrapper {
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 397px;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    bottom: 0;
    border: 1px solid red;
  }
}

.works__card-box {
  position: relative;
  background-color: #f2f2f2;
  border-radius: 6px;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  overflow: hidden;
}

.swiper-slide-active .works__card-image {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.swiper-slide-shadow-left {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.15)), to(transparent));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.15), transparent);
}

.swiper-slide-shadow-right {
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.15)), to(transparent));
  background: linear-gradient(to left, rgba(0, 0, 0, 0.15), transparent);
}

.works__card-image {
  text-align: center;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.works__card-image img {
  border-radius: 10px;
}

.works__card-body {
  position: relative;
  z-index: 10;
  padding: 30px 12px 30px 12px;
  text-align: center;
  background-color: #f2f2f2;
}
@media screen and (min-width: 768px) {
  .works__card-body {
    padding: 40px 16px 40px 16px;
    background-color: #f2f2f2;
  }
}

.works__card-title {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .works__card-title {
    font-size: 18px;
  }
}

.works__card-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 9px;
  gap: 8px;
  font-family: "Alata", serif;
}

.works__card-tag {
  display: inline-block;
  border-radius: 6px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .works__card-tag {
    font-size: 14px;
  }
}

.works__card-basic-text {
  margin-top: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 11px;
}
@media screen and (min-width: 768px) {
  .works__card-basic-text {
    margin-top: 14px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
  }
}

.profile {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (min-width: 768px) {
  .profile {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.profile__container {
  margin-top: 60px;
  border-bottom: 2px solid #f2f2f2;
}
@media screen and (min-width: 768px) {
  .profile__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 50px;
    gap: 30px;
  }
}

@media screen and (min-width: 768px) {
  .profile__image {
    width: 40%;
  }
}
.profile__image img {
  border-radius: 50%;
}

.profile__body {
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .profile__body {
    width: 40%;
  }
}

.profile__name {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .profile__name {
    font-size: 20px;
  }
}

.profile__name-description {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 1.1px;
}
@media screen and (min-width: 768px) {
  .profile__name-description {
    font-size: 16px;
  }
}

.flow {
  margin-right: auto;
  margin-left: auto;
  max-width: 375px;
}
@media screen and (min-width: 768px) {
  .flow {
    max-width: 1084px;
    padding: 0 30px;
  }
}

.fow__inner {
  border-radius: 60px;
  background: #eaf5fa;
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (min-width: 768px) {
  .fow__inner {
    padding-top: 100px;
  }
}

.flow__title {
  text-align: center;
  font-size: 36px;
  font-family: "Alata", serif;
}

.flow__container {
  margin-top: 60px;
}

.flow__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
  padding: 0 20px;
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .flow__lists {
    max-width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 160px;
    padding: 0 30px;
  }
}

.flow__list {
  background: #fff;
  padding: 30px;
  border-radius: 10px 60px 10px 60px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .flow__list {
    width: 500px;
  }
}

.flow__list-text {
  position: absolute;
  font-family: "Alata", serif;
  color: #eaf5fa;
  border-radius: 50%;
  font-size: 40px;
  top: 0px;
  left: 17px;
}
@media screen and (min-width: 768px) {
  .flow__list-text {
    font-size: 60px;
    left: 23px;
  }
}

.flow__list-image {
  text-align: right;
}
.flow__list-image img {
  width: 120px;
}
@media screen and (min-width: 768px) {
  .flow__list-image img {
    width: 200px;
  }
}
@media screen and (min-width: 768px) {
  .flow__list-image {
    margin-left: auto;
  }
}

.list__body {
  text-align: center;
  border-radius: 6px 6px 60px 6px;
  background-color: #fff;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .list__body {
    margin-top: 30px;
  }
}

.list__body-lead {
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .list__body-lead {
    font-size: 18px;
  }
}

.list__body-description {
  margin-top: 7px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .list__body-description {
    font-size: 14px;
  }
}

.contact {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.contact__inner {
  margin-right: auto;
  margin-left: auto;
}
.contact__title {
  text-align: center;
  font-size: 36px;
  font-family: "Alata", serif;
}
@media screen and (min-width: 768px) {
  .contact__title {
    margin-top: 32px;
  }
}

.contact__form {
  margin-top: 26px;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-top: 43px;
  }
}

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 23px;
}

@media screen and (min-width: 768px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .form-field__head {
    min-width: 180px;
    text-align: left;
  }
}

.form-field__label {
  font-size: 14px;
  font-weight: 700;
}

.form-field__tag {
  color: #333;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #a9c6cf;
}

.form-field-item {
  margin-top: 8px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .form-field-item {
    margin-top: 0;
  }
}

.form-text {
  width: 100%;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 8px;
  border: 1px solid transparent;
  outline: none;
  height: 56px;
  -webkit-transition: border-color 0.3s linear;
  transition: border-color 0.3s linear;
}
.form-text.is-error {
  background: #fff0f7;
  border-color: #ce2073;
}
.form-text.is-error:focus {
  background: #fff0f7;
  border-color: #ce2073;
}
.form-text:focus {
  outline: none;
  background: none;
  border-color: #a9c6cf;
}

.form-text::-webkit-input-placeholder {
  font-size: 14px;
  color: #ccc;
}

.form-text::-moz-placeholder {
  font-size: 14px;
  color: #ccc;
}

.form-text:-ms-input-placeholder {
  font-size: 14px;
  color: #ccc;
}

.form-text::-ms-input-placeholder {
  font-size: 14px;
  color: #ccc;
}

.form-text::placeholder {
  font-size: 14px;
  color: #ccc;
}
@media screen and (min-width: 768px) {
  .form-text::-webkit-input-placeholder {
    font-size: 16px;
  }
  .form-text::-moz-placeholder {
    font-size: 16px;
  }
  .form-text:-ms-input-placeholder {
    font-size: 16px;
  }
  .form-text::-ms-input-placeholder {
    font-size: 16px;
  }
  .form-text::placeholder {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .form-field__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}

.form-field__radios {
  margin-top: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
}
@media screen and (min-width: 768px) {
  .form-field__radios {
    height: 56px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
  }
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:focus + .form-radio-text::before {
  border: 1px solid #ccc;
}
.form-radio__input:checked + .form-radio-text {
  font-weight: 700;
}
.form-radio__input:checked + .form-radio-text::before {
  border: 1px solid #ccc;
}
.form-radio__input:checked + .form-radio-text::after {
  opacity: 1;
}

.form-radio-text {
  position: relative;
  padding-left: 31px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .form-radio-text {
    font-size: 16px;
    padding-left: 33px;
  }
}
.form-radio-text::before, .form-radio-text::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f5f5f5;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.form-radio-text::after {
  background: #a9c6cf;
  width: 12px;
  height: 12px;
  left: 6px;
  opacity: 0;
}

.form-textarea {
  width: 100%;
  height: 160px;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f5f5f5;
  -webkit-transition: border-color 0.3s linear;
  transition: border-color 0.3s linear;
}
.form-textarea.is-error {
  background: #fff0f7;
  border-color: #ce2073;
}
.form-textarea.is-error:focus {
  background: #fff0f7;
  border-color: #ce2073;
}
.form-textarea:focus {
  outline: none;
  background-color: #fff;
  border-color: #a9c6cf;
}

@media screen and (min-width: 768px) {
  .textarea-head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form-textarea::-webkit-input-placeholder {
  font-size: 14px;
  color: #ccc;
}

.form-textarea::-moz-placeholder {
  font-size: 14px;
  color: #ccc;
}

.form-textarea:-ms-input-placeholder {
  font-size: 14px;
  color: #ccc;
}

.form-textarea::-ms-input-placeholder {
  font-size: 14px;
  color: #ccc;
}

.form-textarea::placeholder {
  font-size: 14px;
  color: #ccc;
}
@media screen and (min-width: 768px) {
  .form-textarea::-webkit-input-placeholder {
    font-size: 16px;
  }
  .form-textarea::-moz-placeholder {
    font-size: 16px;
  }
  .form-textarea:-ms-input-placeholder {
    font-size: 16px;
  }
  .form-textarea::-ms-input-placeholder {
    font-size: 16px;
  }
  .form-textarea::placeholder {
    font-size: 16px;
  }
}

.contact__button {
  text-align: center;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 55px;
  }
}

.contact-btn {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .contact-btn {
    font-size: 16px;
  }
}

.footer__wrapper {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .footer__wrapper {
    max-width: 1084px;
    padding: 0 30px;
  }
}

.footer {
  -webkit-box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}

.footer__inner {
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-top: 70px;
  }
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .footer__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 100px;
  }
}

.footer__logo img {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .footer__logo img {
    width: 130px;
  }
}

.footer__sns-icon {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.footer__sns-icon:hover {
  opacity: 0.7;
}
.footer__sns-icon img {
  width: 40px;
}
@media screen and (min-width: 768px) {
  .footer__sns-icon img {
    width: 35px;
  }
}

.footer__copyright {
  margin-top: 40px;
  font-family: "Alata", serif;
  text-align: center;
}