@charset "UTF-8";
/* ===============================================
# ブレークポイント
=============================================== */
/* ===============================================
# 幅
=============================================== */
.inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (768px <= width < 1200px) {
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (width< 768px) {
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ===============================================
# color
=============================================== */
body {
  background-color: #fff;
}

/* ===============================================
# fontFamily
=============================================== */
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.bold {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}

body {
  font-family: "アルファベットに指定したいフォントファミリー", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

/* ===============================================
# 一般
=============================================== */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  color: #333333;
}

img {
  width: 100%;
}

a,
.btn,
.newsList_ItemCat,
.newsList_ItemTtl {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
a:hover,
.btn:hover,
.newsList_ItemCat:hover,
.newsList_ItemTtl:hover {
  opacity: 0.6;
}

/* ===============================================
# 共通パーツ
=============================================== */
.btn {
  background-color: #3F51B5;
  border-radius: 8px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}

.section {
  padding-top: 100px;
  padding-bottom: 120px;
}
@media screen and (width< 768px) {
  .section {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.section-title {
  font-size: 48px;
  margin-bottom: 108px;
  text-align: center;
  position: relative;
}
@media screen and (width< 768px) {
  .section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.section-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: #3F51B5;
  bottom: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (width< 768px) {
  .section-title::after {
    bottom: -2px;
    width: 45px;
  }
}

.pagetop {
  display: none;
  width: 60px;
  height: 60px;
  background-color: #3F51B5;
  color: #fff;
  position: fixed;
  bottom: 24px;
  right: 24px;
}
@media screen and (width< 768px) {
  .pagetop {
    width: 45px;
    height: 45px;
  }
}

.pagetop__arrow {
  position: relative;
  width: 60px;
  height: 60px;
  padding: 22px 20px;
}
@media screen and (width< 768px) {
  .pagetop__arrow {
    width: 45px;
    height: 45px;
    padding: 15px 12px;
  }
}
.pagetop__arrow::after {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  border-left: 6px solid #fff;
  border-bottom: 6px solid #fff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  border-radius: 3px;
}

.header {
  background-color: #3F51B5;
  height: 100px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 990;
}
@media screen and (width< 768px) {
  .header {
    height: 50px;
  }
}

.header__wrapper {
  height: 100px;
  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;
}
@media screen and (width< 768px) {
  .header__wrapper {
    display: block;
    height: 50px;
  }
}

.header__logo {
  width: 205px;
}
@media screen and (width< 768px) {
  .header__logo {
    width: 150px;
    line-height: 50px;
  }
}

.header__logo--item {
  max-width: 100%;
  vertical-align: middle;
}

@media screen and (width< 768px) {
  .header___nav {
    display: none;
  }
}

.header___nav--items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.header___nav--item a {
  color: #fff;
  line-height: 40px;
  position: relative;
}
.header___nav--item a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: transparent;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.header___nav--item a:hover:after {
  background-color: red;
}

.header___nav--item a.active ::after {
  background-color: red;
}

/* ===============================================
# hamburger
=============================================== */
.hamburger {
  display: none;
}
@media screen and (width< 768px) {
  .hamburger {
    display: block;
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 0;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  .hamburger .hamburger__item {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .hamburger.active .hamburger__item:nth-of-type(1) {
    top: 18px;
    left: 18px;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .hamburger.active .hamburger__item:nth-of-type(2) {
    opacity: 0; /*真ん中の線は透過*/
  }
  .hamburger.active .hamburger__item:nth-of-type(3) {
    top: 30px;
    left: 18px;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}

.hamburger__item {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  width: 45%;
  background-color: #fff;
}

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

.hamburger__item:nth-of-type(2) {
  top: 23px;
}

.hamburger__item:nth-of-type(3) {
  top: 31px;
}

.g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: rgba(0, 0, 0, 0.5);
  /*動き*/
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.g-nav.panelactive {
  right: 0;
}

/*ナビゲーション*/
.g-nav__items {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/
.g-nav__item {
  list-style: none;
  text-align: center;
}
.g-nav__item a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fv {
  margin-top: 100px;
  width: 100%;
  height: 0;
  padding-top: 46.875%;
  position: relative;
}
@media screen and (width< 768px) {
  .fv {
    padding-top: 140%;
    margin-top: 50px;
  }
}

.fv__wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper {
  width: 100%;
  height: inherit;
  position: relative;
}

.slide01 {
  background: url(/img/mainvisual_01@2x.jpg) no-repeat top center/cover;
  width: 100%;
  height: inherit;
}
@media screen and (width< 768px) {
  .slide01 {
    background: url(/img/mainvisual_01--sp@2x.png) no-repeat top center/cover;
  }
}

.slide02 {
  background: url(/img/mainvisual_02@2x.jpg) no-repeat top center/cover;
  width: 100%;
  height: inherit;
}
@media screen and (width< 768px) {
  .slide02 {
    background: url(/img/mainvisual_02--sp@2x.png) no-repeat top center/cover;
  }
}

.slide03 {
  background: url(/img/mainvisual_03@2x.jpg) no-repeat top center/cover;
  width: 100%;
  height: inherit;
}
@media screen and (width< 768px) {
  .slide03 {
    background: url(/img/mainvisual_03--sp@2x.png) no-repeat top center/cover;
  }
}

.fv__contents {
  z-index: 100;
  text-align: center;
  position: absolute;
}

.fv__lead {
  font-size: 64px;
}
@media screen and (width< 768px) {
  .fv__lead {
    font-size: 32px;
  }
}

.fv__lead__sub {
  font-size: 24px;
  padding-top: 28px;
}
@media screen and (width< 768px) {
  .fv__lead__sub {
    font-size: 12px;
    padding-top: 16px;
  }
}

.fv__btn {
  margin-top: 36px;
  font-size: 24px;
  padding: 24px 120px;
  width: 384px;
}
@media screen and (width< 768px) {
  .fv__btn {
    margin-top: 16px;
    font-size: 10px;
    padding: 8px;
    width: 120px;
  }
}

.card {
  background-color: #efefef;
}

.card__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (768px <= width < 1200px) {
  .card__contents {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (width< 768px) {
  .card__contents {
    display: block;
  }
}

.card__body {
  background-color: #fff;
  padding: 14px;
}
@media screen and (1200px<= width) {
  .card__body {
    width: 32%;
  }
  .card__body:not(:nth-child(3n)) {
    margin-right: 2%;
  }
  .card__body:nth-child(n+4) {
    margin-top: 20px;
  }
}
@media screen and (768px <= width < 1200px) {
  .card__body {
    width: 48%;
  }
  .card__body:not(:nth-child(2n)) {
    margin-right: 2%;
  }
  .card__body:nth-child(n+3) {
    margin-top: 20px;
  }
}
@media screen and (width< 768px) {
  .card__body {
    width: 380px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .card__body:nth-child(n+2) {
    margin-top: 20px;
  }
}
.card__body--text {
  color: #6f7579;
}

.card__body--title {
  font-size: 20px;
  padding-top: 16px;
}
@media screen and (width< 768px) {
  .card__body--title {
    font-size: 16px;
    padding-top: 8px;
  }
}

.card__body--description {
  font-size: 16px;
  padding-top: 16px;
}
@media screen and (width< 768px) {
  .card__body--description {
    font-size: 12px;
    padding-top: 8px;
  }
}

.news__wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (width< 768px) {
  .news__wrapper {
    max-width: 100%;
  }
}

.newsList_Item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 13px;
  border-bottom: 1px solid #707070;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.newsList_Item:nth-of-type(n + 2) {
  padding-top: 20px;
}
@media screen and (width< 768px) {
  .newsList_Item:nth-of-type(n + 2) {
    padding-top: 10px;
  }
}
@media screen and (width< 768px) {
  .newsList_Item {
    display: block;
  }
}
.newsList_ItemData {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.newsList_ItemDate__ff-en {
  width: 100px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (width< 768px) {
  .newsList_ItemDate__ff-en {
    font-size: 12px;
    width: auto;
  }
}

.newsList_ItemCat {
  width: 80px;
  margin-left: 20px;
  color: #fff;
  background-color: #666666;
  border-radius: 4px;
  padding: 8px;
}
@media screen and (width< 768px) {
  .newsList_ItemCat {
    font-size: 12px;
    padding: 4px;
    width: auto;
    margin-left: 10px;
  }
}

.newsList_ItemCat__blue {
  background-color: #3F51B5;
}

.newsList_ItemCat__red {
  background-color: #e81919;
}

.newsList_ItemTtl {
  width: 70%;
  max-width: 615px;
  margin-left: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (width< 768px) {
  .newsList_ItemTtl {
    width: 100%;
    margin-top: 6px;
    margin-left: 0;
    font-size: 14px;
  }
}

.news__more {
  padding-top: 60px;
  text-align: center;
}
@media screen and (width< 768px) {
  .news__more {
    padding-top: 30px;
  }
}
.news__more a {
  color: #e81919;
  position: relative;
  display: inline-block; /* または display: block; */
  height: 20px; /* 適切な高さを指定 */
}
.news__more a::after {
  content: "";
  width: 10px;
  height: 10px;
  background: url(../img/news-arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -15px;
}

.price {
  background-color: #efefef;
}

.price__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width< 768px) {
  .price__wrapper {
    display: block;
  }
}

.price__img {
  max-width: 454px;
  width: 37.83333%;
  margin-right: auto;
}
@media screen and (width< 768px) {
  .price__img {
    width: 100%;
    margin-left: auto;
  }
}
.price__img img {
  width: 100%;
}

.price__table--table,
.price__table--tr,
.price__table--th,
.price__table--td {
  border: 1px solid #707070;
  border-collapse: collapse;
}
@media screen and (width< 768px) {
  .price__table--table,
  .price__table--tr,
  .price__table--th,
  .price__table--td {
    font-size: 12px;
  }
}

.price__table--th,
.price__table--td {
  vertical-align: middle;
}

.price__table {
  max-width: 708px;
  width: 58%;
}
@media screen and (width< 768px) {
  .price__table {
    width: 100%;
    margin-top: 16px;
  }
}

.price__table--table {
  table-layout: fixed;
  width: 100%;
}

.price__table--tr {
  height: 58px;
}
@media screen and (width< 768px) {
  .price__table--tr {
    height: 32px;
  }
}

.price__table--th {
  background-color: #999999;
  text-align: center;
  color: #fff;
}
.price__table--th:nth-child(1) {
  width: 172px;
}
@media screen and (width< 768px) {
  .price__table--th:nth-child(1) {
    width: 100px;
  }
}

.price__table--td {
  background-color: #fff;
  text-align: right;
  padding: 0 24px;
  color: #333333;
}
.price__table--td strong {
  color: #e81919;
}
@media screen and (width< 768px) {
  .price__table--td strong {
    font-size: 12px;
  }
}
.price__table--td span {
  font-size: 13px;
}
@media screen and (width< 768px) {
  .price__table--td span {
    font-size: 10px;
  }
}

.price__table--info {
  padding-top: 12px;
  font-size: 14px;
}
@media screen and (width< 768px) {
  .price__table--info {
    font-size: 12px;
  }
}
.price__table--info a {
  text-decoration: underline;
  font-size: 14px;
}
@media screen and (width< 768px) {
  .price__table--info a {
    font-size: 12px;
  }
}

.access__body {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}

.access__map {
  width: 100%;
  padding-top: 50%;
  position: relative;
}
.access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access__text table th,
.access__text table td {
  padding-top: 16px;
}
@media screen and (width< 768px) {
  .access__text table th,
  .access__text table td {
    padding-top: 12px;
    font-size: 12px;
  }
}
.access__text table td {
  padding-left: 40px;
}
@media screen and (width< 768px) {
  .access__text table td {
    padding-left: 10px;
  }
}

.access__btn {
  margin-top: 30px;
  position: relative;
  text-align: center;
}
@media screen and (width< 768px) {
  .access__btn {
    margin-top: 24px;
  }
}
.access__btn button {
  display: inline-block;
  padding: 20px 76px;
}
@media screen and (width< 768px) {
  .access__btn button {
    font-size: 12px;
    padding: 12px;
  }
}
.access__btn::after {
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  background: url(../img/button-arrow.svg) center center/contain;
  right: 12px;
}

.contact {
  background-color: #efefef;
}

.contact__body {
  background-color: #ffffff;
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  padding: 60px;
}
@media screen and (width< 768px) {
  .contact__body {
    padding: 30px 10px;
  }
}

.contactTable {
  table-layout: fixed;
  width: 100%;
}

.contactTable__th,
.contactTable__td {
  height: 98px;
}
@media screen and (width< 768px) {
  .contactTable__th,
  .contactTable__td {
    display: block;
  }
}

.contactTable__th {
  line-height: 38px;
}
.contactTable__th:nth-child(1) {
  width: 160px;
}
@media screen and (width< 768px) {
  .contactTable__th {
    font-size: 12px;
    height: 30px;
    vertical-align: bottom;
  }
}

.required {
  position: relative;
}
.required::after {
  position: absolute;
  content: "必須";
  background-color: #e81919;
  color: #fff;
  width: 44px;
  height: 22px;
  font-size: 14px;
  padding: 4px 8px;
  top: 31px;
  left: 0;
  border-radius: 4px;
  line-height: 1;
}
@media screen and (width< 768px) {
  .required::after {
    top: auto;
    bottom: 3px;
    left: auto;
    font-size: 10px;
    padding: 3px;
    width: auto;
    height: auto;
    margin-left: 5px;
  }
}

@media screen and (width< 768px) {
  .contactTable__td {
    display: block;
    height: 24px;
  }
}

.contactTable__input {
  border: 1px solid #707070;
  width: 100%;
  font-size: 14px;
  padding: 10px 16px;
}
@media screen and (width< 768px) {
  .contactTable__input {
    padding: 4px;
  }
}

@media screen and (width< 768px) {
  .inquiry--td {
    height: auto;
  }
}

.inquiry--input {
  height: 240px;
  vertical-align: top;
}
@media screen and (width< 768px) {
  .inquiry--input {
    height: 120px;
  }
}

.contactTable__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent url(../img/select-arrow.svg) no-repeat center right 8px/16px 16px;
  border: 1px solid #707070;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  padding: 10px 16px;
  cursor: pointer;
}
@media screen and (width< 768px) {
  .contactTable__select {
    padding: 4px;
    font-size: 10px;
    height: 24px;
  }
}

.contact__radio {
  margin-top: 33px;
}
@media screen and (width< 768px) {
  .contact__radio {
    margin-top: 20px;
  }
}
.radio__input {
  display: none;
}

.radio__input--span {
  cursor: pointer;
  display: inline-block;
  padding-left: 20px;
  padding-right: 40px;
  position: relative;
}
@media screen and (width< 768px) {
  .radio__input--span {
    font-size: 12px;
    padding: 0 0 0 18px;
    margin-right: 32px;
  }
}
.radio__input--span::before {
  content: "";
  background: #fff;
  border: 1px solid #707070;
  border-radius: 50%;
  display: block;
  height: 16px;
  width: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (width< 768px) {
  .radio__input--span::before {
    height: 14px;
    width: 14px;
  }
}
.radio__input--span::after {
  content: "";
  background: #3F51B5;
  border: 1px solid transparent;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  left: 4px;
  opacity: 0;
  padding: 2px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
}
@media screen and (width< 768px) {
  .radio__input--span::after {
    width: 6px;
    height: 6px;
  }
}

.radio__input:checked + span::after {
  opacity: 1;
}

.contact__privacy {
  padding-top: 63px;
  text-align: center;
}
@media screen and (width< 768px) {
  .contact__privacy {
    padding-top: 30px;
  }
}

.check__input {
  display: none;
}

.check__input--span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 51px;
  position: relative;
}
@media screen and (width< 768px) {
  .check__input--span {
    padding: 0 0 0 32px;
    font-size: 14px;
  }
}
.check__input--span a {
  text-decoration: underline;
}
@media screen and (width< 768px) {
  .check__input--span a {
    font-size: 14px;
  }
}
.check__input--span::before {
  content: "";
  background: #fff;
  border: 1px solid #707070;
  border-radius: 2px;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  height: 25px;
}
@media screen and (width< 768px) {
  .check__input--span::before {
    width: 20px;
    height: 20px;
  }
}
.check__input--span::after {
  border-bottom: 3px solid #3F51B5;
  border-left: 3px solid #3F51B5;
  content: "";
  display: block;
  height: 0.6em;
  left: 4px;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
  width: 1em;
}
@media screen and (width< 768px) {
  .check__input--span::after {
    height: 0.5em;
    width: 0.8em;
    left: 3px;
  }
}

.check__input:checked + span::after {
  opacity: 1;
}

.contact__privacy--btn {
  margin-top: 35px;
  padding: 20px 76px;
  width: 304px;
  cursor: pointer;
  position: relative;
}
@media screen and (width< 768px) {
  .contact__privacy--btn {
    padding: 10px;
    width: 160px;
    font-size: 12px;
  }
}
.contact__privacy--btn::after {
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  background: url(../img/button-arrow.svg) center center/contain;
  right: 12px;
}

.footer {
  padding-top: 60px;
  padding-bottom: 24px;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#666666), to(#333333)) no-repeat padding-box;
  background: transparent linear-gradient(180deg, #666666 0%, #333333 100%) no-repeat padding-box;
}
@media screen and (width< 768px) {
  .footer {
    padding-top: 30px;
  }
}

.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (width< 768px) {
  .footer__body {
    display: block;
  }
}

.footer__logo--img {
  width: 205px;
}
@media screen and (width< 768px) {
  .footer__logo--img {
    width: 150px;
  }
}
.footer__logo--img img {
  max-width: 100%;
}

.footer__logo--text {
  padding-top: 32px;
}
@media screen and (width< 768px) {
  .footer__logo--text {
    padding-top: 8px;
  }
}
.footer__logo--text p {
  font-size: 14px;
  color: #fff;
}
@media screen and (width< 768px) {
  .footer__logo--text p {
    font-size: 12px;
  }
}
.footer__logo--text p:not(:first-child) {
  padding-top: 14px;
}
@media screen and (width< 768px) {
  .footer__logo--text p:not(:first-child) {
    padding-top: 8px;
  }
}

@media screen and (width< 768px) {
  .footer__nav {
    padding-top: 16px;
  }
}

.footer__nav--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__nav--list :not(:last-child) {
  margin-right: 40px;
}
@media screen and (width< 768px) {
  .footer__nav--list :not(:last-child) {
    margin-right: 15px;
  }
}

.footer___nav--item a {
  color: #fff;
  font-size: 14px;
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 83px;
}
.footer__sns :not(:first-child) {
  margin-left: 16px;
}
@media screen and (width< 768px) {
  .footer__sns :not(:first-child) {
    margin-left: 50px;
  }
}
@media screen and (width< 768px) {
  .footer__sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
    padding-top: 16px;
  }
}

.footer__copyright {
  margin-top: 46px;
  color: #fff;
  text-align: center;
  font-size: 14px;
}
@media screen and (width< 768px) {
  .footer__copyright {
    margin-top: 8px;
    font-size: 10px;
  }
}