/* ----------------------------------------------------------------
  共通スタイル：フォントなど
-----------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap');

html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Serif JP', serif;
  /* font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,
    "ＭＳ Ｐゴシック", sans-serif; */
  font-size: 1.6em;
  line-height: 1.88;
  color: #1a1a1a;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* support iOS */
html {
  height: -webkit-fill-available;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

p,
h1,
h2,
h3,
ul,
li,
div {
  padding: 0;
  margin: 0;
}

a {
  color: #1a1a1a;
  transition: all 0.15s ease-out;
  opacity: 1;
  text-decoration: none;
}

a:visited {
  color: #1a1a1a;
}

a:hover {
  text-decoration: none;
  opacity: 0.8;
}

li {
  list-style-type: none;
}

img {
  vertical-align: bottom;
}

/* ----------------------------------------------------------------
  共通スタイル
-----------------------------------------------------------------*/

/* .section */
.section {
  min-height: 400px;
  padding: 120px 0;
  background-color: beige;
}

.section:nth-child(odd) {
  background-color: #ffffff;
}

.section__ttl {
  position: relative;
  text-align: center;
}

.section__ttl span.--ja {
  display: block;
  font-size: 2.4rem;
  letter-spacing: 2px;
}

.section__ttl span.--en {
  display: block;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.section__ttl:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -50px;
  left: 50%;
  width: 1px;
  height: 40px;
  background: #1a1a1a;
  margin-left: -1px;
}

.section__body {
  margin-top: 100px;
  padding: 0 50px;
}

.section__footer {
  margin-top: 80px;
}

/* .btn */
.btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  margin: 0 auto;
  padding: 15px 30px;
  background-color: #1a1a1a;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
}

.btn--l {
  padding: 30px 60px;
  border-radius: 20px;
  font-size: 2.8rem;
}

@media not all and (min-width: 768px) {

  .section {
    padding: 60px 0;
  }

  .section__ttl span.--ja {
    font-size: 2rem;
  }

  .section__ttl span.--en {
    font-size: 1.6rem;
  }

  .section__ttl:after {
    bottom: -30px;
    height: 20px;
  }

  .section__body {
    margin-top: 50px;
    padding: 0;
  }

  .section__footer {
    /* margin-top: 80px; */
  }
}


/* ----------------------------------------------------------------
  レイアウト
-----------------------------------------------------------------*/

.site {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.site-header {
  width: 15%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background: linear-gradient(to bottom, #f0c8e4 0%, #384170 100%);
}

.site-main {
  width: 100%;
  padding-right: 15%;
}

.site-footer {
  width: 100%;
}

@media not all and (min-width: 768px) {
  .site-header {
    /* display: none; */
    position: absolute;
    right: 0;
    bottom: 100px;
    justify-content: center;
    width: 25%;
  }

  .site-main {
    padding-right: 0;
  }
}



/* .site-header
----------------------------------------------------------------- */

/* .site-logo */
.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100% - 120px - 200px);
  padding: 25px 0;
}

.site-logo__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.site-logo__img {
  height: 100%;
  max-height: 360px;
}

@media not all and (min-width: 768px) {
  .site-logo {
    display: block;
    position: absolute;
    top: 20px;
    z-index: 10;
  }
}

/* .trigger */
.trigger,
.trigger__line {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-top: 40px;
  cursor: pointer;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.trigger__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 22px;
}

.trigger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1a1a1a;
}

.trigger__line:nth-of-type(1) {
  top: 0;
}

.trigger__line:nth-of-type(2) {
  top: 10px;
}

.trigger__line:nth-of-type(3) {
  bottom: 0;
}

.trigger.-active .trigger__line:nth-of-type(1) {
  transform: translateY(10px) rotate(-315deg);
}

.trigger.-active .trigger__line:nth-of-type(2) {
  opacity: 0;
}

.trigger.-active .trigger__line:nth-of-type(3) {
  bottom: 0;
  transform: translateY(-10px) rotate(315deg);
}

@media not all and (min-width: 768px) {
  .trigger {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    margin-top: 0;
    background: none;
  }

  .trigger__line {
    height: 3px;
    background-color: #ffffff;
  }
}

.glb-nav-store {
  position: relative;
  width: 100%;
  height: 200px;
  background-image: url(../images/store-bnr_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.glb-nav-store::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.glb-nav-store__site-ttl {
  display: none;
}

.glb-nav-store__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.glb-nav-store__img {
  width: 80px;
  border-radius: 50%;
}

.glb-nav-store__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  padding: 0 15px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #ffffff;
  text-align: center;
  z-index: 2;
}

.glb-nav-store__ttl span.--en {
  font-size: 1.8rem;
  letter-spacing: 5px;
  line-height: 1.2;
}

.glb-nav-store__ttl span.--ja {
  font-size: 1.2rem;
  font-weight: 500;
}


/* .glb-nav */
.glb-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  /* right: 0; */
  bottom: 0;
  left: 0;
  width: 85%;
  background-color: rgba(0, 0, 0, 0.92);
  transition: all 0.5s;
  transform: translateX(-100%);
  z-index: 20;
}

.glb-nav.-active {
  transform: translateX(0);
}

.glb-nav__link {
  display: block;
  padding: 15px;
  font-size: 2.2rem;
  letter-spacing: 2px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #ffffff !important;
  text-align: center;
}



@media not all and (min-width: 768px) {
  .glb-nav {
    width: 100%;
    transition: all 0.5s;
    z-index: 20;
  }

  .glb-nav__link {
    padding: 10px 0;
    font-size: 1.6rem;
  }

  .glb-nav-store {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 99;
  }

  .glb-nav-store__site-ttl {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30px;
    background-color: rgba(255, 255, 255, 1);
    font-size: 1.2rem;
    /* color: #ffffff; */
    color: #1a1a1a;
    letter-spacing: 2px;
    z-index: 99;
  }

  .glb-nav-store__link {
    flex-direction: row;
    top: 30px;
    height: 70px;
  }

  .glb-nav-store__ttl {
    margin-top: 0;
    padding-left: 20px;
  }
  .glb-nav-store__ttl span.--en {
    font-size: 1.6rem;
    letter-spacing: 4px;
  }
  .glb-nav-store__ttl span.--ja {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }

  .glb-nav-store__img {
    width: 50px;
  }
}


/* .site-footer
----------------------------------------------------------------- */
.site-footer {
  min-height: 600px;
  background-image: url(../images/footer_bg-white.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media not all and (min-width: 768px) {
  .site-footer {
    min-height: 300px;
    margin-bottom: 100px;
  }
}


/* ----------------------------------------------------------------
  個別レイアウト
-----------------------------------------------------------------*/

/* .section--mv
----------------------------------------------------------------- */
.section--mv {
  height: 100vh;
  padding: 0;
}

/* .mv */
.mv {
  display: flex;
}

.mv__copy {
  width: 18%;
  background-color: #f0e4e8;
}

.mv__img {
  width: 82%;
  background-image: url(../images/mv-teaser.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.copy {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}


.copy__txt {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  letter-spacing: 5px;
}

.copy__txt span {
  display: block;
}


@media not all and (min-width: 768px) {
  .section--mv {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px);
  }

  .mv {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
  }

  .copy {
    display: none;
    height: 100%;
  }

  .copy__inner {
    padding: 30px;
  }

  .copy__txt {
    margin-right: 20px;
    font-size: 1.3rem;
  }

  .mv__img {
    width: 100%;
    background-image: url(../images/mv-teaser_sp.jpg);
  }

}


/* .section--about
----------------------------------------------------------------- */
.section--about {
  /* background: linear-gradient(to bottom, #23325a 0%, #384170 100%); */
  background-image: url(../images/about_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section--about * {
  color: #ffffff;
}

.section--about .section__body {
  margin-top: 0;
}

.about {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__header {
  width: 500px;
}

.about__body {
  width: 50%;
  min-width: 600px;
  padding: 80px;
  background-color: rgba(255, 255, 255, 0.92);
}

.about__body * {
  color: #1a1a1a;
}

.about__img {
  border-radius: 50%;
}

.about__txt {
  margin-top: 80px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 2;
}

/* .section--about .section__ttl:after {
  background: #ffffff;
} */

@media not all and (min-width: 768px) {
  * {
    /* border: 1px solid #384170; */
  }

  .section--about {
    /* display: none; */
  }

  .about__body {
    width: 80%;
    min-width: auto;
    padding: 40px;
  }

  .about__txt {
    font-size: 1.4rem;
  }
}



/* .section--feature
----------------------------------------------------------------- */

.section--feature .container {
  padding-left: 0;
  padding-right: 0;
}

/* .feature__item */
.feature__item {
  display: flex;
  align-items: center;
}

.feature__item:nth-of-type(2n+1) {
  margin-left: -50px;
}

.feature__item:nth-of-type(2n) {
  flex-direction: row-reverse;
  margin-right: -50px;
}

.feature__header,
.feature__body {
  width: 50%;
}

.feature__header {
  position: relative;
  min-height: 500px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.feature__item:nth-of-type(1) .feature__header {
  background-image: url(../images/feature_img1.jpg);
}

.feature__item:nth-of-type(2) .feature__header {
  background-image: url(../images/feature_img2.jpg);
}

.feature__item:nth-of-type(3) .feature__header {
  background-image: url(../images/feature_img3.jpg);
}

.feature__item:nth-of-type(2n) .feature__header {
  text-align: right;
}

.feature__list {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.feature__item:nth-of-type(2n) .feature__list {
  right: auto;
  left: 30px;
}

.feature__list li {
  margin: 0 8px;
  padding: 15px 10px;
  background-color: #ffffff;
  font-size: 1.8rem;
  font-weight: 200;
  letter-spacing: 4px;
  writing-mode: vertical-rl;
  line-height: 1;
}

.feature__body {
  padding-left: 50px;
}

.feature__item:nth-of-type(2n) .feature__body {
  padding-right: 50px;
  padding-left: 0;
}

.feature__ttl {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 3px;
}

.feature__ttl span {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 12px;
  background-color: #384170;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 2px;
}

.feature__txt {
  margin-top: 30px;
  font-family: 'Noto Sans JP', sans-serif;
}

@media not all and (min-width: 768px) {

  /* .feature__item */
  .feature__item {
    flex-direction: column !important;
    margin-top: 30px;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .feature__header {
    width: 100% !important;
  }

  .feature__body {
    position: relative;
    top: -15px;
    width: calc(100% - 30px);
    margin-right: 15px;
    margin-left: 15px;
    padding-left: 15px !important;
    padding-right: 15px !important;
    background-color: #ffffff;
  }

  .feature__header {
    min-height: 250px;
  }

  .feature__list {
    position: absolute;
    bottom: 35px;
    left: 15px !important;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;

  }

  .feature__list li {
    margin: 4px 0;
    padding: 6px 10px;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 4px;
    writing-mode: horizontal-tb;
  }

  .feature__ttl {
    margin-top: 20px;
    font-size: 1.8rem;
  }

  .feature__ttl span {
    display: inline-block;
    margin-top: 12px;
    font-size: 1.2rem;
  }

  .feature__txt {
    margin-top: 20px;
    font-size: 1.4rem;
  }

  /* * {
    border: 1px solid #575299;
  } */

}


/* .section--product
----------------------------------------------------------------- */
.section--product {
  padding: 0 0 120px 0;
  background-color: #ffffff;
}

.section--product__body {
  display: flex;
  align-items: center;
  padding: 0;
}

.section--product__body * {
  font-family: 'Noto Sans JP', sans-serif;
}

.section--product__items {
  width: 75%;
}

.section--product__recipe {
  width: 25%;
}

.items {
  display: flex;
}

.product {
  width: 50%;
}

.product__link {
  display: block;
  width: 100%;
  height: 100%;
}

.product__img {
  position: relative;
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.product--500ml .product__img {
  background-image: url(../images/product500.jpg);
}

.product--300ml .product__img {
  background-image: url(../images/product300.jpg);
}

.product__spec {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #1a1a1a;
  font-size: 1.3rem;
  color: #ffffff;
}

.product__spec span:first-of-type {
  border-bottom: 1px solid #ffffff;
  font-weight: 500;
  letter-spacing: 1px;
}

.product__btn {
  background: linear-gradient(45deg, #575299 0%, #384170 100%);
  padding: 20px;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
}

.product__btn i {
  margin-left: 10px;
}

.recipe {
  padding: 50px;
}

.recipe__txt {
  margin-top: 20px;
  font-size: 1.4rem;
}

@media not all and (min-width: 768px) {
  .section--product {
    padding-top: 0;
    padding-bottom: 60px;
  }

  .section--product__body {
    display: block;
  }

  .section--product__items {
    width: 100%;
  }

  .section--product__recipe {
    width: 100%;
  }

  .product__img {
    height: 300px;
  }

  .product__spec {
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
  }

  .product__btn {
    padding: 10px;
    font-size: 1.2rem;
    font-weight: 500;
  }
}

/* .section--story
----------------------------------------------------------------- */
.section--story {
  padding: 0 0 120px 0;
}

.storys__header {
  display: flex;
  align-items: center;
  background-color: #e0e9f1;
}

.storys__img {
  width: 60%;
}

.storys__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  font-size: 2.2rem;
  letter-spacing: 4px;
  line-height: 2.4;
}

.story__item {
  display: flex;
  align-items: center;
  margin-top: 80px;
}

.story__item:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.story__header {
  width: 50%;
}

.story__body {
  width: 50%;
  padding: 0 50px;
}

.story__ttl {
  font-size: 2.2rem;
  letter-spacing: 3px;
}

.story__txt {
  line-height: 2.2;
}

.storys__footer {
  margin-top: 80px;
  padding: 40px;
  background-color: #e0e9f1;
  border-radius: 20px;
}

/* .story-message */
.story-message {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.story-message * {
  font-family: 'Noto Sans JP', sans-serif;
}

.story-message__ttl {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #1a1a1a;
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.story-message__col-l {
  width: 65%;
  padding-right: 30px;
}

.story-message__col-r {
  width: 35%;
}

.story-message__copy {
  font-size: 2rem;
  letter-spacing: 5px;
}

.story-message__txt {
  font-size: 1.5rem;
}

.story-message__author {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #1a1a1a;
}

.story-message__author h4 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.story-message__author p {
  margin-top: 12px;
  font-size: 1.3rem;
}

@media not all and (min-width: 768px) {
  .section--story {
    padding: 0 0 60px 0;
  }

  .section--story .container {
    padding-right: 30px;
    padding-left: 30px;
  }

  .storys__header {
    position: relative;
    margin-right: -30px;
    margin-left: -30px;
    padding: 40px 0;
    position: relative;
    background-image: url(../images/storys_img1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }

  .storys__header::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }

  .storys__img {
    display: none;
  }

  .storys__lead {
    position: relative;
    width: 100%;
    font-size: 1.6rem;
    letter-spacing: 2px;
    line-height: 2;
    color: #ffffff;
    z-index: 10;
  }

  .story__item {
    display: block;
    margin-top: 40px;
  }

  .story__header {
    width: 100%;
  }

  .story__body {
    width: 100%;
    padding: 0;
  }

  .story__ttl {
    margin-bottom: 12px;
    font-size: 1.8rem;
    letter-spacing: 3px;
  }

  .story__txt {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .storys__footer {
    margin-top: 40px;
    padding: 20px;
    border-radius: 20px;
  }

  /* .story-message */
  .story-message {
    display: block;
  }

  .story-message__ttl {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }

  .story-message__col-l {
    width: 100%;
    padding-right: 0;
  }

  .story-message__col-r {
    width: 100%;
  }

  .story-message__copy {
    font-size: 2rem;
    letter-spacing: 5px;
  }

  .story-message__txt {
    font-size: 1.4rem;
  }

  .story-message__author {
    margin-top: 20px;
    padding: 15px;
  }

  .story-message__author h4 {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }

  .story-message__author p {
    margin-top: 12px;
    font-size: 1.2rem;
  }
}



/* .aside--store
----------------------------------------------------------------- */
.aside--store {
  padding: 0 80px;
}

.store__bnr {
  position: relative;
  height: 300px;
  background-image: url(../images/store-bnr_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.store__bnr::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.store__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.store__img {
  margin-left: -200px;
  margin-right: 40px;
  border-radius: 50%;
}

.store__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
  color: #ffffff;
}

.store__ttl span.--en {
  font-size: 2.8rem;
  letter-spacing: 5px;
}

.store__ttl span.--ja {
  font-size: 1.4rem;
  font-weight: 300;
}

@media not all and (min-width: 768px) {
  .aside--store {
    display: none;
  }
}


/* .section--contact
----------------------------------------------------------------- */
.section--contact {
  background-color: #ffffff;

}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
}

.contact__address {
  padding-right: 80px;
}

/* .address */
.address h3 {
  font-weight: 500;
  letter-spacing: 2px;
}

.address p {
  margin-top: 15px;
}

/* .info */
.info__item {
  margin-top: 8px;
  padding: 0 25px;
}

.info__link {
  display: flex;
  align-items: center;
}

.info__link i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 8px;
  border-radius: 50%;
  background-color: #28292b;
  color: #ffffff;
  line-height: 1;
}

.info__link span {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1;
}

@media not all and (min-width: 768px) {
  .section--contact .container {
    padding-right: 30px;
    padding-left: 30px;
  }

  .contact {
    display: block;
  }

  .contact__address {
    padding-right: 0;
  }

  /* .address */
  .address h3 {
    letter-spacing: 2px;
  }

  .address p {
    margin-top: 10px;
    font-size: 1.4rem;
  }

  /* .info */
  .contact__info {
    margin-top: 15px;
  }

  .info__item {
    margin-top: 8px;
    padding: 0;
  }

  .info__link span {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }

  .info__link i {
    width: 30px;
    height: 30px;
  }
}