@charset "UTF-8";
/* ============================================
# breakpoint
============================================ */
/* 表示幅 inner */
/* 表示幅 container */
/* breakpoint 定義 */
/* common - 全体に共通するスタイル */
@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
  .is-tab {
    display: none;
  }
  .is-sp {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .is-pc {
    display: none;
  }
  .is-tab {
    display: block;
  }
  .is-sp {
    display: none;
  }
}
@media (min-width: 1200px) {
  .is-sp {
    display: none;
  }
  .is-tab {
    display: none;
  }
  .is-pc {
    display: block;
  }
}
/* ============================================
# color
============================================ */
/* base color */
/*text color */
/*accent color*/
/*hover color*/
/* ============================================
# font
============================================ */
/* font 種類 */
/* font 太さ */
/* ============================================
# size
============================================ */
/* 文字 サイズ */
/* 10px */
/* 行 高さ */
/* 1 */
/* 文字 間隔 */
/* 0 */
/* 表示幅 */
html {
  font-size: 62.5%;
  line-height: 1;
  letter-spacing: 0;
}

body {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #3E3E3E;
  line-height: 1.6rem;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
  text-decoration: none;
  color: #3E3E3E;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.inner {
  width: 93.75%;
}
@media (min-width: 1200px) {
  .inner {
    max-width: 1200px;
    margin: 80px auto 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .inner {
    margin: 60px auto 0;
  }
}
@media (max-width: 767px) {
  .inner {
    margin: 40px auto 0;
    width: 85%;
  }
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

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

.section__title {
  height: 77px;
  line-height: 1;
  position: relative;
  padding-left: 190px;
}
.section__title::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 150px;
  height: 1px;
  background: #3E3E3E;
}
@media (max-width: 767px) {
  .section__title {
    height: 60px;
    position: relative;
    padding-left: 95px;
  }
  .section__title::before {
    width: 75px;
    height: 1px;
  }
}

.section__title__wrap {
  display: inline-block;
  text-align: center;
}
.section__title__wrap h2 {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.6;
}
.section__title__wrap span {
  font-family: "Figtree", "ヒラギノ明朝 ProN", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .section__title__wrap h2 {
    font-size: 2.8rem;
    line-height: 1.4;
  }
  .section__title__wrap span {
    font-size: 1.6rem;
    line-height: 1;
  }
}

.to-top {
  position: fixed;
  bottom: 290px;
  right: 60px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .to-top {
    bottom: 150px;
    right: 15px;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top a img {
  width: 75px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.to-top a img:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media (max-width: 767px) {
  .to-top a img {
    width: 50px;
  }
}

.skill,
.flow,
.contact,
.footer {
  background: #ECEBEB;
}

/* ============================================
# header
============================================ */
.header {
  width: 100vw;
  height: 140px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0px 3px 6px #707070;
          box-shadow: 0px 3px 6px #707070;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.header__inner {
  height: inherit;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo {
  font-family: "Figtree", "ヒラギノ明朝 ProN", sans-serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .header__logo {
    font-size: 2.8rem;
  }
}

/* drawer  */
.drawer {
  display: block;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .drawer {
    display: none;
  }
}
.drawer__icon {
  text-align: center;
  cursor: pointer;
  position: fixed;
  top: 55px;
  right: 30px;
  z-index: 200;
}
.drawer__bars {
  display: inline-block;
  width: 30px;
  height: 25px;
  position: relative;
}
.drawer__bar {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: #707070;
  position: absolute;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.drawer__bar__top {
  top: 0;
}
.is-checked .drawer__bar__top {
  top: 10.5px;
  background: #FFFFFF;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.drawer__bar__center {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.is-checked .drawer__bar__center {
  background: transparent;
}
.drawer__bar__bottom {
  bottom: 0;
}
.is-checked .drawer__bar__bottom {
  bottom: 10.5px;
  background: #FFFFFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer__content {
  width: 70%;
  height: 100%;
  background: rgba(112, 112, 112, 0.9);
  padding: 45px 80px 45px 20px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 150;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.drawer__content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.drawer__logo {
  margin-bottom: 30px;
  padding-bottom: 5px;
  border-bottom: 2px solid #FFFFFF;
}
.drawer__logo a {
  font-family: "Figtree", "ヒラギノ明朝 ProN", sans-serif;
  font-size: 4rem;
  color: #FFFFFF;
  text-align: center;
}
.drawer__logo a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .drawer__logo a {
    font-size: 2rem;
  }
}
.drawer__nav__item {
  text-align: center;
  margin-bottom: 25px;
}
.drawer__nav__item .nav__item__link {
  font-family: "Figtree", "ヒラギノ明朝 ProN", sans-serif;
  font-size: 2rem;
  color: #FFFFFF;
  position: relative;
  padding: 5px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.drawer__nav__item .nav__item__link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #FFFFFF;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
.drawer__nav__item .nav__item__link:hover::after {
  -webkit-transform: scale(0.5, 1);
          transform: scale(0.5, 1);
}

/* header__nav  */
.header__nav {
  display: none;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .header__nav {
    display: block;
  }
}
.header__nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__nav__item {
  margin-left: 30px;
}
.header__nav__item .nav__item__link {
  font-family: "Figtree", "ヒラギノ明朝 ProN", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  position: relative;
  padding: 10px 10px 6px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header__nav__item .nav__item__link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #3E3E3E;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
.header__nav__item .nav__item__link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/* ============================================
# main-visual
============================================ */
.main-visual {
  height: 560px;
  background: #ECEBEB;
}
.main-visual__inner {
  height: inherit;
  position: relative;
}
.main-visual__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right top;
     object-position: right top;
}
.main-visual__wrap {
  width: 100%;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  position: absolute;
}
.main-visual__wrap span {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.main-visual__wrap p {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .main-visual__wrap {
    bottom: 0;
    left: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .main-visual__wrap {
    width: 500px;
    top: 70%;
    left: 5%;
  }
}
@media (min-width: 1200px) {
  .main-visual__wrap {
    width: 500px;
    top: 70%;
    left: 10%;
  }
}

/* ============================================
# works
============================================ */
.work__description {
  margin-bottom: 20px;
}
.work__description p {
  line-height: 1.5;
}
.work__description p:first-child {
  margin-bottom: 10px;
}
.work__description p:nth-child(2) span {
  display: inline-block;
  margin-top: 10px;
  padding: 8px;
  background-color: #ecebeb;
}
.work__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .work__items {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
@media (max-width: 767px) {
  .work__items {
    display: block;
  }
}
.work__item {
  width: 300px;
  aspect-ratio: 300/325;
  padding: 15px;
  border: 1px solid #707070;
  border-radius: 3%;
  -webkit-box-shadow: 0px 3px 6px #707070;
          box-shadow: 0px 3px 6px #707070;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .work__item {
    width: 31.9444444444%;
  }
}
@media (max-width: 767px) {
  .work__item {
    width: 100%;
    margin: 30px auto;
    aspect-ratio: auto;
  }
}
.work__item__link:hover {
  opacity: 0.7;
}
.work__item__wrap {
  font-size: 1.8rem;
  font-weight: 500;
  height: 115px;
  margin-bottom: 15px;
}
@media (min-width: 1200px) {
  .work__item__wrap {
    font-size: 2rem;
  }
}
.work__item__title {
  margin-bottom: 8px;
}
.work__item__category {
  font-size: 1.2rem;
  font-weight: 500;
  color: #3E3E3E;
  display: inline-block;
  padding: 6px;
  border-radius: 5px;
  margin-top: 6px;
}
.work__item__category.-demo {
  background-color: #ECEBEB;
}
.work__item__category.-company {
  background-color: #c9e6c9;
}
.work__item__category.-lp {
  background-color: #e6c9e6;
}
.work__item__category.-coding {
  background-color: #e6d8c9;
}
.work__item__category.-wp {
  background-color: #c9dbe6;
}
.work__item__WorkTime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  font-size: 1.2rem;
}
.work__item__WorkTime p {
  padding: 5px;
}
.work__item__img {
  width: 100%;
  border: 1px solid #707070;
}

/* ============================================
# skill
============================================ */
.skill__container p {
  line-height: 1.5;
}
.skill__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.skill__logo img {
  width: 60px;
}
@media (max-width: 767px) {
  .skill__logo img {
    width: 40px;
  }
}

/* ============================================
# service
============================================ */
.service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .service__items {
    row-gap: 40px;
  }
}
.service__item {
  width: 300px;
  padding: 0 10px 10px;
}
.service__item dt {
  text-align: center;
  margin-bottom: 40px;
}
.service__item dt img {
  width: 100px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
}
.service__item dt h3 {
  font-size: 2rem;
  font-weight: 500;
}
.service__item dd p {
  line-height: 1.5;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .service__item {
    width: 33.3333333333%;
  }
}
@media (max-width: 767px) {
  .service__item {
    width: 100%;
    margin: 0 auto;
  }
  .service__item dt {
    margin-bottom: 15px;
  }
  .service__item dt img {
    width: 80px;
  }
  .service__item dt h3 {
    font-size: 1.8rem;
  }
}

/* ============================================
# work flow
============================================ */
.flow__item {
  padding: 10px 20px 10px 30px;
  margin: 0 auto 30px;
  border: 1px solid #707070;
  background-color: #FFFFFF;
  position: relative;
  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;
}
.flow__item dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}
.flow__item dt p {
  position: absolute;
  top: 10px;
  left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #707070;
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 500;
}
.flow__item dt img {
  width: 40px;
  aspect-ratio: 1/1;
}
.flow__item dt h3 {
  margin: 12px;
  font-size: 1.6rem;
}
.flow__item dd p {
  line-height: 1.5;
  font-size: 1.4rem;
  display: block;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .flow__item {
    width: 90%;
  }
  .flow__item dt {
    width: 40%;
    margin: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .flow__item dt p {
    top: 50%;
    left: -24px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 2.5rem;
  }
  .flow__item dt img {
    width: 50px;
  }
  .flow__item dt h3 {
    margin: 0 0 0 18px;
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .flow__item {
    width: 90%;
    padding: 10px 40px;
  }
  .flow__item dt {
    width: 35%;
    margin: 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .flow__item dt p {
    top: 50%;
    left: -24px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 2.5rem;
  }
  .flow__item dt img {
    width: 60px;
  }
  .flow__item dt h3 {
    margin: 0 0 0 18px;
    font-size: 1.8rem;
  }
  .flow__item dd p {
    font-size: 1.6rem;
  }
}

/* ============================================
# price
============================================ */
.price__container p {
  line-height: 1.5;
}

/* ============================================
# contact
============================================ */
@media (max-width: 767px) {
  .contact__container {
    margin: 0 auto;
  }
}

.contact-form__text {
  font-size: 1.8rem;
  line-height: 1.4444444444;
}
.contact-form__text span {
  font-size: 2rem;
  color: red;
}
@media (max-width: 767px) {
  .contact-form__text {
    font-size: 1.4rem;
  }
}

.contact-form__row {
  margin-top: 45px;
}

.contact-form__label {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .contact-form__label {
    font-size: 1.4rem;
  }
}

.contact-form__input input[type=text],
.contact-form__input input[type=email],
.contact-form__input textarea {
  padding: 5px;
  background: #FBFBFB;
  border: solid 1px #707070;
}
.contact-form__input input[type=text]::-webkit-input-placeholder, .contact-form__input input[type=email]::-webkit-input-placeholder, .contact-form__input textarea::-webkit-input-placeholder {
  color: #C2C2C2;
}
.contact-form__input input[type=text]::-moz-placeholder, .contact-form__input input[type=email]::-moz-placeholder, .contact-form__input textarea::-moz-placeholder {
  color: #C2C2C2;
}
.contact-form__input input[type=text]:-ms-input-placeholder, .contact-form__input input[type=email]:-ms-input-placeholder, .contact-form__input textarea:-ms-input-placeholder {
  color: #C2C2C2;
}
.contact-form__input input[type=text]::-ms-input-placeholder, .contact-form__input input[type=email]::-ms-input-placeholder, .contact-form__input textarea::-ms-input-placeholder {
  color: #C2C2C2;
}
.contact-form__input input[type=text]::placeholder,
.contact-form__input input[type=email]::placeholder,
.contact-form__input textarea::placeholder {
  color: #C2C2C2;
}
.contact-form__input input[type=text]:hover, .contact-form__input input[type=text]:focus,
.contact-form__input input[type=email]:hover,
.contact-form__input input[type=email]:focus,
.contact-form__input textarea:hover,
.contact-form__input textarea:focus {
  outline: none;
}
.contact-form__input input[type=text],
.contact-form__input input[type=email] {
  width: 500px;
}
.contact-form__input textarea {
  width: 700px;
  height: 200px;
  resize: vertical;
}
@media (max-width: 767px) {
  .contact-form__input input[type=text],
  .contact-form__input input[type=email],
  .contact-form__input textarea {
    width: 100%;
  }
}

.contact-form__radioWrap {
  display: inline-block;
  line-height: 24px;
  margin-right: 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding-left: 32px;
  position: relative;
}

.radio-input {
  display: none;
}

.radio-original {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #707070;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.radio-original::after {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  content: "";
  border-radius: 50%;
  background: #707070;
  opacity: 0;
}

.contact-form__radioWrap input:checked + .radio-original::after {
  opacity: 1;
}

.is-required {
  position: relative;
  padding-right: 30px;
}
.is-required::after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "*";
  display: block;
  width: 26px;
  height: 26px;
  color: red;
  font-size: 2rem;
}

.contact__btn {
  margin-top: 45px;
}
.contact__btn input[type=submit] {
  font-size: 1.8rem;
  padding: 10px 35px;
  background: #FBFBFB;
  border: solid 1px #707070;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .contact__btn input[type=submit] {
    font-size: 1.4rem;
  }
}

.contact__message {
  display: none;
}
.contact__message.-error {
  color: red;
}

/* ============================================
# about
============================================ */
.about__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .about__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about__img {
  max-width: 150px;
}
.about__img img {
  width: 100%;
  height: 100%;
}
.about__img h3 {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .about__img {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .about__img {
    margin-right: 20px;
  }
}
@media (min-width: 1200px) {
  .about__img {
    margin-right: 20px;
  }
}
.about__text p {
  line-height: 1.8;
}
/* ============================================
# footer
============================================ */
.footer {
  background: #ECEBEB;
}
.footer__wrap-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding: 45px 0;
  border-bottom: 1px solid #707070;
}
.footer__logo {
  font-family: "Figtree", "ヒラギノ明朝 ProN", sans-serif;
  font-size: 4rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .footer__logo {
    font-size: 2.8rem;
  }
}

.footer__nav {
  display: none;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .footer__nav {
    display: block;
  }
}

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

.footer__nav__item {
  margin-left: 30px;
}
.footer__nav__item .nav__item__link {
  font-family: "Figtree", "ヒラギノ明朝 ProN", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
}
.footer__nav__item .nav__item__link:hover {
  opacity: 0.7;
}

.footer__wrap-bottom {
  padding: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__sns {
  width: 50px;
  height: 50px;
}
.footer__sns a img:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer__copyright {
  margin-left: auto;
  text-align: end;
}