@charset "UTF-8";
body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  color: #656565;
  font-size: 14px;
  line-height: 2em;
  letter-spacing: 0.1em;
}

/*アニメーション要素のスタイル*/
.animation {
  opacity: 0;
  visibility: hidden;
  transition: 2s;
  transform: translateY(100px);
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  -webkit-transition: 2s;
  -moz-transition: 2s;
  -ms-transition: 2s;
  -o-transition: 2s;
}

/*アニメーション要素までスクロールした時のスタイル*/
.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ========================== 
section共通クラス
===========================*/
section {
  padding: 96px 0;
}

.container {
  width: 1080px;
  margin: auto;
}

.btn-more {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid;
  height: 48px;
  width: 240px;
  padding: 0 24px;
  text-align: left;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  cursor: pointer;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.btn-more:hover {
  background: #92B7BC;
  color: #FFFFFF;
}

.btn-more:hover::before {
  right: 16px;
  background: #FFFFFF;
}

.btn-more:hover::after {
  right: 16px;
  border-left: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}

.btn-more::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  margin: auto;
  width: 32px;
  height: 1px;
  background: #656565;
  -webkit-transition: .3s;
  transition: .3s;
}

.btn-more::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  margin: auto;
  width: 6px;
  height: 6px;
  border-left: 1px solid #656565;
  border-bottom: 1px solid #656565;
  transform: rotate(-135deg);
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
}

.section-title {
  font-size: 32px;
  line-height: 1.5em;
  letter-spacing: 0.2em;
}

.section-title-en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.2em;
  color: #92B7BC;
  margin-top: 8px;
}

@media screen and (max-width: 1079px) {
  section {
    padding: 48px 24px;
  }
  .container {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .section-title {
    text-align: center;
  }
  .section-title-en {
    text-align: center;
  }
  .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* ========================== 
ヘッダー
===========================*/
header {
  background-color: #FFFFFF;
  padding: 48px 96px;
  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;
}

header .logo {
  width: 360px;
  height: 42px;
  margin: 0;
}

header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header ul li {
  margin-left: 32px;
  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;
}

header ul li span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #FFFFFF;
  margin-bottom: 8px;
  transition: all .5s;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

header ul li a {
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  -webkit-transition: all .5s;
  transition: all .5s;
}

header ul li:hover span {
  background-color: #92B7BC;
}

header ul li:hover a {
  color: #92B7BC;
}

@media screen and (min-width: 1080px) {
  .openbtn1 {
    display: none;
  }
}

@media screen and (max-width: 1079px) {
  header {
    padding: 24px 24px;
  }
  header .nav-pc {
    display: none;
  }
  header .logo {
    width: 240px;
    margin: 0;
  }
  .openbtn1 {
    position: relative;
    /*ボタン内側の基点となるためrelativeを指定*/
    background: #92B7BC;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
  }
  .openbtn1 span {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 45%;
  }
  .openbtn1 span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn1 span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn1 span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
    /*真ん中の線は透過*/
  }
  .openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}

/* ========================== 
トップ
===========================*/
.top {
  margin: 0;
  width: 100vw;
  height: 800px;
  background-image: url("../img/23494636_m.jpg");
  background-position: 60% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.top .message {
  color: #FFFFFF;
  position: absolute;
  bottom: 96px;
  -webkit-filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.2)) drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.2)) drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}

.top .message .main-message {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 72px;
  line-height: 1.5em;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}

.top .message .sub-message {
  font-size: 24px;
  line-height: 1.5em;
  letter-spacing: 0.2em;
}

.top .reserve {
  width: 200px;
  height: 200px;
  background-color: #92B7BC;
  border-radius: 50%;
  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;
  position: fixed;
  bottom: 96px;
  right: 48px;
  z-index: 1;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.top .reserve .reserve-inner {
  text-align: center;
}

.top .reserve .reserve-inner svg {
  fill: #FFFFFF;
}

.top .reserve .reserve-inner .reserve-title {
  font-size: 24px;
  color: #FFFFFF;
  line-height: 1.5em;
  letter-spacing: 0.1em;
}

.top .reserve .reserve-inner .reserve-title-en {
  font-family: "Barlow Condensed", sans-serif;
  color: #FFFFFF;
  line-height: 1.5em;
  letter-spacing: 0.1em;
}

.top .reserve:hover {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1), 0px 0px 10px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1), 0px 0px 10px rgba(0, 0, 0, 0.04);
}

.top .reserve:hover svg {
  fill: #656565;
}

.top .reserve:hover .reserve-title {
  color: #656565;
}

.top .reserve:hover .reserve-title-en {
  color: #656565;
}

@media screen and (max-width: 1079px) {
  .top {
    height: 600px;
  }
  .top .reserve {
    width: 160px;
    height: 160px;
    bottom: 48px;
    right: 24px;
  }
  .top .message {
    top: 48px;
  }
  .top .message .main-message {
    font-size: 40px;
    line-height: 1.3em;
    margin-bottom: 8px;
  }
  .top .message .sub-message {
    font-size: 16px;
  }
}

/* ========================== 
お知らせ
===========================*/
.news {
  margin-top: 96px;
}

.news-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.news-wrapper .content-l {
  width: 240px;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.news-wrapper .content-r-pc {
  width: calc(100% - 288px);
}

.news-wrapper .news-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 24px;
  border-bottom: 1px solid #656565;
}

.news-wrapper .news-group .news-date {
  width: 96px;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.2em;
  margin-right: 16px;
}

.news-wrapper .news-group .news-title {
  width: calc(100% - 96px - 48px);
}

.news-wrapper .news-group:hover {
  background: #F6F6F6;
  color: #92B7BC;
}

.news-wrapper .news-group:hover::before {
  right: 16px;
  background: #92B7BC;
}

.news-wrapper .news-group:hover::after {
  right: 16px;
  border-left: 1px solid #92B7BC;
  border-bottom: 1px solid #92B7BC;
}

.news-wrapper .news-group::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  margin: auto;
  width: 32px;
  height: 1px;
  background: #656565;
  -webkit-transition: .3s;
  transition: .3s;
}

.news-wrapper .news-group::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  margin: auto;
  width: 6px;
  height: 6px;
  border-left: 1px solid #656565;
  border-bottom: 1px solid #656565;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (min-width: 1080px) {
  .content-inner-sp {
    display: none;
  }
}

@media screen and (max-width: 1079px) {
  .news {
    margin-top: 48px;
  }
  .news-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .news-wrapper .content-r-pc {
    display: none;
  }
  .news-wrapper .content-l {
    width: 100%;
  }
  .news-wrapper .content-l .content-inner-sp {
    margin: 24px 0 48px 0;
  }
  .news-wrapper .content-l .content-inner-sp .news-group .news-date {
    width: 96px;
  }
  .news-wrapper .content-l .content-inner-sp .news-group .news-title {
    width: calc(100% - 96px - 48px);
  }
}

/* ========================== 
当院について
===========================*/
.about-wrapper {
  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;
}

.about-wrapper .content-l-pc {
  width: calc(100% / 2 - 40px);
}

.about-wrapper .content-l-pc .about-img {
  width: 100%;
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 40% 0;
     object-position: 40% 0;
}

.about-wrapper .content-r {
  width: calc(100% / 2 - 40px);
}

.about-wrapper .content-r .main-text {
  font-size: 20px;
  line-height: 2em;
  letter-spacing: 0.1em;
  margin: 24px 0 8px 0;
}

.about-wrapper .content-r .sub-text {
  margin-bottom: 48px;
}

@media screen and (min-width: 1080px) {
  .about-img-sp {
    display: none;
  }
}

@media screen and (max-width: 1079px) {
  .about-wrapper .content-l-pc {
    display: none;
  }
  .about-wrapper .content-r {
    width: 100%;
  }
  .about-wrapper .content-r .about-img-sp {
    width: 100%;
    height: 320px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 40% 24%;
       object-position: 40% 24%;
    margin-top: 24px;
  }
  .about-wrapper .content-r .main-text {
    margin: 16px 0;
  }
}

/* ========================== 
診療内容
===========================*/
.treatment-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.treatment-wrapper .content-l {
  width: 360px;
}

.treatment-wrapper .content-l .main-text {
  font-size: 20px;
  line-height: 2em;
  letter-spacing: 0.1em;
  margin: 24px 0 8px 0;
}

.treatment-wrapper .content-l .sub-text {
  margin-bottom: 48px;
}

.treatment-wrapper .content-r {
  width: calc(100% - 408px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
}

.treatment-wrapper .content-r .treatment-box {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  height: 200px;
  background-color: #F6F6F6;
  border-radius: 8px;
  cursor: pointer;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.treatment-wrapper .content-r .treatment-box svg {
  fill: #656565;
}

.treatment-wrapper .content-r .treatment-box .treatment-name {
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1.5em;
  margin-top: 8px;
}

.treatment-wrapper .content-r .treatment-box .treatment-name span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1;
  color: #92B7BC;
}

.treatment-wrapper .content-r .treatment-box:hover {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1), 0px 0px 10px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1), 0px 0px 10px rgba(0, 0, 0, 0.04);
}

.treatment-wrapper .content-r .treatment-box:hover svg {
  fill: #92B7BC;
}

.treatment-wrapper .content-r .treatment-box:hover .treatment-name {
  color: #92B7BC;
}

@media screen and (max-width: 1079px) {
  .treatment-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .treatment-wrapper .content-l {
    width: 100%;
  }
  .treatment-wrapper .content-r {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 24px;
    gap: 24px;
  }
  .treatment-wrapper .content-r .treatment-box {
    width: 152px;
    height: 152px;
  }
  .treatment-wrapper .content-r .treatment-box svg {
    width: 64px;
  }
}

/* ========================== 
イメージ
===========================*/
.sub-img {
  width: 100%;
  height: 540px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0% 30%;
     object-position: 0% 30%;
  margin: 96px 0;
}

@media screen and (max-width: 1079px) {
  .sub-img {
    height: 320px;
    margin: 48px 0;
  }
}

/* ========================== 
当院について
===========================*/
.recruit-wrapper {
  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;
}

.recruit-wrapper .content-l-pc {
  width: calc(100% / 2 - 40px);
}

.recruit-wrapper .content-l-pc .recruit-img {
  width: 100%;
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 80% 0;
     object-position: 80% 0;
}

.recruit-wrapper .content-r {
  width: calc(100% / 2 - 40px);
}

.recruit-wrapper .content-r .main-text {
  font-size: 20px;
  line-height: 2em;
  letter-spacing: 0.1em;
  margin: 24px 0 8px 0;
}

.recruit-wrapper .content-r .sub-text {
  margin-bottom: 48px;
}

@media screen and (min-width: 1080px) {
  .recruit-img-sp {
    display: none;
  }
}

@media screen and (max-width: 1079px) {
  .recruit-wrapper .content-l-pc {
    display: none;
  }
  .recruit-wrapper .content-r {
    width: 100%;
  }
  .recruit-wrapper .content-r .recruit-img-sp {
    width: 100%;
    height: 320px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 40% 24%;
       object-position: 40% 24%;
    margin-top: 24px;
  }
  .recruit-wrapper .content-r .main-text {
    margin: 16px 0;
  }
}

/* ========================== 
アクセス
===========================*/
.access {
  margin-bottom: 96px;
}

.access-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.access-wrapper .content-l {
  width: calc(100% - 648px);
}

.access-wrapper .content-l .address {
  margin-top: 48px;
  letter-spacing: 0.2em;
}

.access-wrapper .content-l .access-btn-group .access-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
}

.access-wrapper .content-l .access-btn-group .access-btn .access-icon {
  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: 32px;
  height: 32px;
  margin-right: 8px;
  border-radius: 16px;
  background-color: #92B7BC;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.access-wrapper .content-l .access-btn-group .access-btn .access-icon .icon {
  width: 16px;
  height: 16px;
  margin: 0;
}

.access-wrapper .content-l .access-btn-group .access-btn .access-btn-text {
  font-size: 20px;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  font-family: "Barlow Condensed", sans-serif;
}

.access-wrapper .content-l .access-btn-group .access-btn:hover .access-btn-text {
  color: #92B7BC;
}

.access-wrapper .content-r .map {
  width: 600px;
  height: 440px;
}

@media screen and (min-width: 1080px) {
  .map-sp {
    display: none;
  }
}

@media screen and (max-width: 1079px) {
  .access {
    margin-bottom: 48px;
  }
  .access-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .access-wrapper .content-l {
    width: 100%;
  }
  .access-wrapper .content-l .map-sp {
    margin-top: 24px;
    position: relative;
    width: 100%;
    padding-top: 75%;
  }
  .access-wrapper .content-l .map-sp iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .access-wrapper .content-l .address {
    margin-top: 24px;
    letter-spacing: 0.2em;
  }
  .access-wrapper .content-l .address br {
    display: none;
  }
  .access-wrapper .content-l .access-btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
  }
  .access-wrapper .content-l .access-btn-group .access-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .access-wrapper .content-l .access-btn-group .access-btn .access-btn-text {
    font-size: 14px;
    line-height: 1em;
  }
  .access-wrapper .content-r {
    display: none;
  }
}

/* ========================== 
フッター
===========================*/
footer {
  background-color: #F6F6F6;
  padding: 96px 0;
}

footer .logo {
  width: 400px;
  height: 73px;
  margin: 0;
}

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

.footer-wrapper .content-l {
  width: calc(100% - 456px);
  margin-top: 24px;
}

.footer-wrapper .content-l ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-wrapper .content-l ul .li-group {
  margin-right: 96px;
}

.footer-wrapper .content-l ul .li-group li {
  margin-bottom: 16px;
}

.footer-wrapper .content-l ul .li-group li a {
  line-height: 1.5em;
  letter-spacing: 0.1em;
}

.footer-wrapper .content-l ul .li-group li a:hover {
  color: #92B7BC;
}

.footer-wrapper .content-r {
  margin-top: 24px;
  width: 456px;
}

.footer-wrapper .content-r .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid;
}

.footer-wrapper .content-r .item .time {
  text-align: center;
  width: 120px;
  line-height: 1.5em;
  letter-spacing: 0.2em;
}

.footer-wrapper .content-r .item .week {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 48px;
  line-height: 1.5em;
}

.footer-wrapper .content-r .item .week span {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: #92B7BC;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.footer-wrapper .content-r .item .en {
  font-family: "Barlow Condensed", sans-serif;
}

@media screen and (max-width: 1079px) {
  footer {
    padding: 48px 24px;
  }
  footer .logo {
    width: 320px;
  }
  .footer-wrapper .content-l {
    display: none;
  }
  .footer-wrapper .content-r {
    width: 100%;
    margin-top: 16px;
  }
  .footer-wrapper .content-r .item .time {
    width: 30%;
  }
  .footer-wrapper .content-r .item .week {
    width: 10%;
  }
}
/*# sourceMappingURL=style.css.map */