﻿@charset "UTF-8";

:root {
  --cl-bk: #000000;
  --ff-pt: "Prata", serif;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  color: var(--cl-bk);
  font-family: "ヒラギノ角ゴ Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.body-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

a {
  color: var(--cl-bk);
}

.ff-pt {
  font-family: var(--ff-pt);
}

@media screen and (min-width: 768px) {
  body {
    min-width: 1620px;
    font-size: 1.6rem;
  }

  .block-container {
    width: 1620px;
    margin: 0 auto;
    padding: 0;
  }

  .sp-only {
    display: none !important;
  }

  a {
    transition: opacity 0.2s;
  }

  a:hover {
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
  body {
    width: 100vw;
    font-size: 1.6rem;
  }

  .pc-only {
    display: none !important;
  }
}

.block-header {
  display: flex;
  align-items: center;
  position: relative;
}

.block-header-logo {
  margin: 0;
  padding: 0;
}

.block-header-logo a,
.block-header-logo img {
  display: block;
}

@media screen and (min-width: 768px) {
  header {
    position: sticky;
    top: 0;
    left: 0;
    background-color: #ffffff;
    z-index: 9999;
  }

  .block-header {
    width: 1400px;
    height: 100px;
    margin: 0 auto;
  }

  .block-header-nav {
    margin-left: auto;
    font-family: var(--ff-pt);
  }

  .block-header-nav ul {
    display: flex;
    align-items: center;
  }

  .block-header-nav li {
    margin-left: 40px;
    list-style-type: none;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
  }

  .block-header-nav a {
    text-decoration: none;
  }

  .block-header-nav a:hover {
    opacity: 0.65;
  }
}

@media screen and (max-width: 767px) {
  header {
    position: relative;
    height: 60px;
    z-index: 9999;
  }

  .block-header {
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    width: 100vw;
    height: 60px;
    background-color: #ffffff;
  }

  .block-header-menu-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 23px;
    height: 22px;
    margin-top: -11px;
    cursor: pointer;
  }

  .block-header-menu-btn > span {
    display: block;
    position: absolute;
    left: 0;
    width: 23px;
    height: 2px;
    background-color: var(--cl-bk);
  }

  .block-header-menu-btn > span:nth-child(1) {
    top: 5px;
    transition: 0.15s;
  }

  .block-header-menu-btn > span:nth-child(2) {
    bottom: 5px;
    transition: 0.15s;
  }

  .block-header-menu-btn > span:nth-child(3) {
    bottom: 10px;
    transition: opacity 0.1s;
  }

  .block-header-menu-btn.is-open > span:nth-child(1) {
    top: 10px;
    transform: rotate(30deg);
  }

  .block-header-menu-btn.is-open > span:nth-child(2) {
    bottom: 10px;
    transform: rotate(-30deg);
  }

  .block-header-menu-btn.is-open > span:nth-child(3) {
    opacity: 0;
  }

  .block-header-menu-body {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    background-color: #ffffff;
  }

  .block-header-menu-body-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: auto;
  }

  .block-header-menu-nav {
    width: calc(100% - 80px);
    margin: 20px auto 0;
    font-size: 1.4rem;
    font-family: var(--ff-pt);
  }

  .block-header-menu-nav-items + .block-header-menu-nav-items {
    margin-top: 40px;
  }

  .block-header-menu-nav-item .item-ttl {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 60px;
    margin: 0;
    padding: 0;
    border: none;
    border-bottom: 1px solid #eaeaea;
    background-color: transparent;
    color: var(--cl-bk);
    text-decoration: none;
    letter-spacing: 0.1em;
  }

  .block-header-menu-nav-item button.item-ttl::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 6px;
    height: 11px;
    margin-top: -5px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2LjA2MSIgaGVpZ2h0PSIxMC43MDciPjxwYXRoIGQ9Im0uMzU0LjM1MyA1IDUtNSA1IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAiLz48L3N2Zz4=");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .block-header-menu-nav-item .item-brand-items li {
    border-bottom: 1px solid #eaeaea;
  }

  .block-header-menu-nav-item .item-brand-items button {
    margin: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    color: var(--cl-bk);
  }

  .block-header-menu-nav-item .item-brand-items img {
    display: block;
    width: 100%;
    height: auto;
  }

  .block-header-menu-contact {
    margin-top: auto;
  }

  .block-header-menu-contact ul {
    display: flex;
  }

  .block-header-menu-contact li {
    width: 50%;
    padding-bottom: 20px;
  }

  .block-header-menu-contact li:nth-child(1) {
    background-color: #f8f8f8;
  }

  .block-header-menu-contact li:nth-child(2) {
    background-color: #f2f2f2;
  }

  .block-header-menu-contact img {
    width: 100%;
  }

  .block-header-menu-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: calc(100% - 40px);
    height: 40px;
    margin: 0 auto;
    border: 1px solid var(--cl-bk);
    font-size: 1.4rem;
    font-family: var(--ff-pt);
    text-decoration: none;
    letter-spacing: 0.1em;
  }

  .block-header-menu-contact a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    width: 9px;
    height: 9px;
    margin-top: -5px;
    background-image: url(../img/link_outer.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.wrapper {
  overflow: hidden;
}

.block-mv,
.block-mv-slide,
.block-mv-slide a {
  position: relative;
}

.block-mv {
  overflow: hidden;
}

.block-mv-wrapper,
.block-mv-slide {
  margin: 0;
  padding: 0;
}

.block-mv-slide a,
.block-mv-slide img {
  display: block;
  width: 100%;
}

.block-mv-slide img {
  pointer-events: none;
}

.block-mv-slide .list-txt {
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 768px) {
  .block-mv .swiper-button-next {
    right: 40px;
  }

  .block-mv .swiper-button-prev {
    left: 40px;
  }

  .block-mv .swiper-button-next::after,
  .block-mv .swiper-button-prev::after {
    content: "";
    display: block;
    width: 17px;
    height: 31px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNi41OTEiIGhlaWdodD0iMzEuMDYxIj48cGF0aCBkPSJtMTYuMDYgMzAuNTMtMTUtMTUgMTUtMTUiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzJhMmEyYSIgc3Ryb2tlLXdpZHRoPSIxLjUiLz48L3N2Zz4=");
    background-position: center;
    background-repeat: no-repeat;
  }

  .block-mv .swiper-button-next::after {
    transform: rotate(180deg);
  }

  .block-mv .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: 1620px;
    margin: 24px auto 0;
  }

  .block-mv .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .block-mv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 20px;
    height: 2px;
    margin: 0 5px;
    border-radius: 0;
    background: #eaeaea;
    opacity: 1;
  }

  .block-mv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--cl-bk);
  }
}

@media screen and (max-width: 767px) {
  .block-mv .swiper-button-next,
  .block-mv .swiper-button-prev {
    top: auto;
    bottom: 0;
    width: 12px;
    height: 60px;
  }

  .block-mv .swiper-button-next {
    right: 16px;
  }

  .block-mv .swiper-button-prev {
    left: 16px;
  }

  .block-mv .swiper-button-next::after,
  .block-mv .swiper-button-prev::after {
    content: "";
    display: block;
    width: 12px;
    height: 21px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMS41OTEiIGhlaWdodD0iMjEuMDYxIj48cGF0aCBkPSJtMTEuMDYgMjAuNTMtMTAtMTAgMTAtMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzJhMmEyYSIgc3Ryb2tlLXdpZHRoPSIxLjUiLz48L3N2Zz4=");
    background-position: center;
    background-repeat: no-repeat;
  }

  .block-mv .swiper-button-next::after {
    transform: rotate(180deg);
  }

  .block-mv .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: 60px;
  }

  .block-mv .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .block-mv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 20px;
    height: 2px;
    margin: 0 5px;
    border-radius: 0;
    background: #eaeaea;
    opacity: 1;
  }

  .block-mv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--cl-bk);
  }
}

.block-brands h2,
.block-recruit h2,
.block-company h2,
.block-privacy h2 {
  margin: 0;
  padding: 0;
  font-family: var(--ff-pt);
  font-weight: 400;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 768px) {
  .block-brands h2,
  .block-recruit h2,
  .block-company h2,
  .block-privacy h2 {
    margin-bottom: 40px;
    font-size: 8rem;
  }
}

@media screen and (max-width: 767px) {
  .block-brands h2,
  .block-recruit h2,
  .block-company h2,
  .block-privacy h2 {
    margin-bottom: 24px;
    padding: 0 16px;
    font-size: 5rem;
  }
}

.block-brands-content,
.block-brands-body,
.block-brands-body > * {
  position: relative;
}

.block-brands-detail h3 {
  margin: 0;
  padding: 0;
}

.block-brands-btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--cl-bk);
  font-family: var(--ff-pt);
  text-decoration: none;
  letter-spacing: 0.1em;
}

.block-brands-btns a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 9px;
  height: 9px;
  margin-top: -5px;
  background-image: url(../img/link_outer.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.block-brands-sns {
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-brands-sns a {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -999999px;
}

.block-brands-sns a.icon-x {
  width: 24px;
  height: 24px;
  background-image: url(../img/sns_x.png);
}

.block-brands-sns a.icon-fb {
  width: 24px;
  height: 24px;
  background-image: url(../img/sns_fb.png);
}

.block-brands-sns a.icon-ig {
  width: 24px;
  height: 24px;
  background-image: url(../img/sns_ig.png);
}

.block-brands-sns a.icon-ln {
  width: 26px;
  height: 25px;
  background-image: url(../img/sns_ln.png);
}

.block-brands-sns a.icon-pr {
  width: 24px;
  height: 24px;
  background-image: url(../img/sns_pr.png);
}

.block-brands-sns a.icon-yt {
  width: 26px;
  height: 18px;
  background-image: url(../img/sns_yt.png);
}

@media screen and (min-width: 768px) {
  .block-brands {
    margin-top: 100px;
  }

  .block-brands-nicholson {
    margin-top: 120px;
  }

  .block-brands-body {
    display: flex;
    min-height: 820px;
    padding-top: 130px;
  }

  .block-brands-tenerita .block-brands-body {
    padding-left: 60px;
  }

  .block-brands-nicholson .block-brands-body {
    justify-content: flex-end;
    padding-right: 60px;
  }

  .block-brands-content::before,
  .block-brands-body::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 50%;
    height: 500px;
    background-color: #f8f8f8;
  }

  .block-brands-body::before {
    width: 1460px;
  }

  .block-brands-content.block-brands-tenerita::before,
  .block-brands-tenerita .block-brands-body::before {
    left: 0;
  }

  .block-brands-content.block-brands-nicholson::before,
  .block-brands-nicholson .block-brands-body::before {
    right: 0;
  }

  .block-brands-detail {
    width: 600px;
  }

  .block-brands-img {
    position: absolute;
    top: 100px;
  }

  .block-brands-tenerita .block-brands-img {
    left: 860px;
  }

  .block-brands-nicholson .block-brands-img {
    right: 860px;
  }

  .block-brands-img img {
    width: 960px;
    max-width: none;
    pointer-events: none;
  }

  .block-brands-detail h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 64px;
  }

  .block-brands-comment {
    margin-top: -6px;
    text-align: center;
    line-height: 2.25;
    letter-spacing: 0.1em;
  }

  .block-brands-nicholson .block-brands-comment {
    margin-top: -16px;
    line-height: 2.5;
  }

  .block-brands-comment p + p {
    margin-top: 2em;
  }

  .block-brands-items {
    margin-top: 32px;
    font-size: 1.4rem;
    text-align: center;
    letter-spacing: 0.07em;
    white-space: nowrap;
  }

  .block-brands-btns {
    display: flex;
    align-items: center;
    margin-top: 60px;
  }

  .block-brands-btns li + li {
    margin-left: 24px;
  }

  .block-brands-btns a {
    width: 184px;
    height: 44px;
    font-size: 1.4rem;
  }

  .block-brands-btns a:hover {
    opacity: 0.65;
  }

  .block-brands-sns {
    margin-top: 40px;
  }

  .block-brands-sns li + li {
    margin-left: 30px;
  }

  .block-brands-sns a:hover {
    opacity: 0.65;
  }
}

@media screen and (max-width: 767px) {
  .block-brands {
    margin-top: 44px;
  }

  .block-brands-nicholson {
    margin-top: 80px;
  }

  .block-brands-body {
    display: flex;
    flex-direction: column;
  }

  .block-brands-img {
    order: 10;
  }

  .block-brands-img img {
    width: 100vw;
    height: auto;
  }

  .block-brands-detail {
    position: relative;
    padding-top: 40px;
    order: 20;
  }

  .block-brands-detail::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: calc(100% - 150px);
    height: 500px;
    background-color: #f8f8f8;
  }

  .block-brands-detail > * {
    position: relative;
  }

  .block-brands-detail h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
  }

  .block-brands-detail h3 img {
    max-width: calc(100vw - 32px);
  }

  .block-brands-comment {
    margin-top: -6px;
    padding: 0 40px;
    line-height: 1.875;
    letter-spacing: 0.08em;
  }

  .block-brands-comment p + p {
    margin-top: 2em;
  }

  .block-brands-items {
    margin-top: 32px;
    padding: 0 40px;
    font-size: 1.4rem;
    line-height: 1.714;
    letter-spacing: 0.08em;
  }

  .block-brands-btns {
    margin-top: 36px;
    padding: 0 40px;
  }

  .block-brands-btns li + li {
    margin-top: 10px;
  }

  .block-brands-btns a {
    width: 100%;
    height: 44px;
    font-size: 1.4rem;
  }

  .block-brands-sns {
    margin-top: 40px;
  }

  .block-brands-sns li + li {
    margin-left: 30px;
  }
}

.block-brands-gallery-collection {
  display: flex;
  flex-wrap: wrap;
}

.block-brands-gallery-collection-ttl {
  background-repeat: no-repeat;
  text-indent: -999999px;
}

.block-brands-gallery-more {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  font-family: var(--ff-pt);
  letter-spacing: 0.1em;
}

.block-brands-gallery-more a {
  position: relative;
}

.block-brands-gallery-more a::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: 10px;
  background-image: url(../img/link_outer.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .block-brands-gallery-normal,
  .block-brands-gallery-collection {
    margin-top: 100px;
  }

  .block-brands-gallery-normal-slide,
  .block-brands-gallery-collection-slide {
    width: 320px;
    padding-left: 40px;
  }

  .block-brands-gallery-normal-slide img,
  .block-brands-gallery-collection-slide img {
    display: block;
    height: auto;
    pointer-events: none;
  }

  .block-brands-gallery-collection-ttl {
    width: 180px;
    padding-left: 100px;
    background-image: url(../img/pc/ttl_awcollection@2x.png);
    background-position: center left 100px;
    background-size: 21px 154px;
  }

  .block-brands-gallery-collection-swiper {
    width: calc(100% - 180px);
  }

  @media screen and (min-width: 1620px) {
    .block-brands-gallery-collection-ttl {
      width: calc(((100vw - 1620px) / 2 + 180px));
    }

    .block-brands-gallery-collection-swiper {
      width: calc(100% - ((100vw - 1620px) / 2 + 180px));
    }
  }

  .block-brands-gallery-more {
    margin-top: 40px;
    padding-right: 40px;
  }

  .block-brands-gallery-more a {
    font-size: 1.4rem;
  }

  .block-brands-gallery-more a::after {
    content: "";
    display: inline-block;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .block-brands-gallery-normal,
  .block-brands-gallery-collection {
    margin-top: 40px;
  }

  .block-brands-gallery-normal-slide,
  .block-brands-gallery-collection-slide {
    width: 160px;
    padding-left: 10px;
  }

  .block-brands-gallery-normal-slide img,
  .block-brands-gallery-collection-slide img {
    display: block;
    height: auto;
  }

  .block-brands-gallery-collection-ttl {
    width: 39px;
    padding-left: 16px;
    background-image: url(../img/sp/ttl_awcollection@2x.png);
    background-position: center left 16px;
    background-size: 18px 135px;
  }

  .block-brands-gallery-collection-swiper {
    width: calc(100% - 39px);
  }

  .block-brands-gallery-more {
    margin-top: 16px;
    padding-right: 16px;
  }

  .block-brands-gallery-more a {
    font-size: 1.4rem;
  }
}

.block-brands-bot-nav {
  position: relative;
  background-color: #f8f8f8;
}

.block-brands-bot-nav-item h3 {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .block-brands-bot-nav {
    height: 400px;
    margin-top: 120px;
  }

  .block-brands-bot-nav::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background-color: #f2f2f2;
  }

  .block-brands-bot-nav .block-container {
    display: flex;
  }

  .block-brands-bot-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    width: 50%;
    height: 400px;
    padding-bottom: 93px;
  }

  .block-brands-bot-nav-item .block-brands-btns {
    margin-top: 77px;
  }

  .block-brands-bot-nav-item:nth-child(2) .block-brands-btns {
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .block-brands-bot-nav {
    margin-top: 110px;
  }

  .block-brands-bot-nav-item {
    position: relative;
    width: 100%;
    padding: 40px 0;
  }

  .block-brands-bot-nav-item h3 img {
    max-width: calc(100% - 40px);
    margin: 0 auto;
  }

  .block-brands-bot-nav-item .block-brands-btns {
    margin-top: 24px;
  }

  .block-brands-bot-nav-item:nth-child(2) {
    background-color: #f2f2f2;
  }
}

.block-recruit-content {
  position: relative;
  background-color: #f8f8f8;
}

.block-recruit-content-item a {
  position: relative;
  letter-spacing: 0.1em;
}

.block-recruit-content-item a::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: 10px;
  background-image: url(../img/link_outer.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .block-recruit {
    margin-top: 140px;
  }

  .block-recruit-content::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background-color: #f2f2f2;
  }

  .block-recruit-content .block-container {
    display: flex;
  }

  .block-recruit-content-item {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 400px;
  }

  .block-recruit-content-item:nth-child(2) {
    padding-left: 100px;
  }

  .block-recruit-content-item > * {
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .block-recruit {
    margin-top: 100px;
  }

  .block-recruit-content-item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 160px;
    text-align: center;
  }

  .block-recruit-content-item:nth-child(2) {
    background-color: #f2f2f2;
  }

  .block-recruit-content-item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 160px;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.block-company-message {
  background-color: #f8f8f8;
}

.block-company-content {
  position: relative;
}

.block-company-content h3 {
  font-family: var(--ff-pt);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.block-company-message-switch {
  position: absolute;
  letter-spacing: 0.1em;
}

.block-company-message-switch li {
  display: inline;
}

.block-company-message-switch li + li {
  position: relative;
}

.block-company-message-switch li + li::before {
  content: " / ";
}

.block-company-message-switch button {
  display: inline;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  color: #afafaf;
  font-family: var(--ff-pt);
  cursor: pointer;
}

.block-company-message-switch button.is-active {
  color: var(--cl-bk);
}

.block-company-message-article p + p {
  margin-top: 2em;
}

.block-company-message-article > div,
.block-company-info .block-container > div {
  display: none;
}

.block-company-message-article > div.is-active,
.block-company-info .block-container > div.is-active {
  display: block;
}

.block-company-info .block-container > div > dl {
  border-top: 1px solid #eaeaea;
  letter-spacing: 0.1em;
}

.block-company-info a.link-map {
  position: relative;
  text-decoration: none;
}

.block-company-info a.link-map::after {
  content: "";
  display: inline-block;
  position: relative;
  width: 11px;
  height: 13px;
  margin-left: 20px;
  background-image: url(../img/icon_map.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .block-company {
    margin-top: 140px;
  }

  .block-company-message {
    padding: 126px 0 120px;
  }

  .block-company-content {
    width: 1100px;
    margin: 0 auto;
  }

  .block-company-content h3 {
    font-size: 6rem;
  }

  .block-company-message-switch {
    top: 30px;
    right: 0;
  }

  .block-company-message-article {
    margin-top: 64px;
    line-height: 2.5;
    letter-spacing: 0.1em;
  }

  .block-company-info {
    margin-top: 120px;
  }

  .block-company-info .block-container > div {
    width: 1100px;
    margin: 0 auto;
    line-height: 1.875;
    letter-spacing: 0.1em;
  }

  .block-company-info .block-container > div > dl > div {
    display: flex;
    width: 100%;
    padding: 22px 0;
    border-bottom: 1px solid #eaeaea;
  }

  .block-company-info .block-container > div > dl > div dt {
    width: 260px;
    padding-right: 20px;
  }

  .block-company-info .block-container > div > dl > div dd {
    width: calc(100% - 260px);
  }
}

@media screen and (max-width: 767px) {
  .block-company {
    margin-top: 100px;
  }

  .block-company-message {
    padding: 64px 40px;
  }

  .block-company-content h3 {
    font-size: 3rem;
  }

  .block-company-message-switch {
    top: 5px;
    right: 0;
  }

  .block-company-message-article {
    margin-top: 24px;
    line-height: 1.875;
    letter-spacing: 0.08em;
  }

  .block-company-info {
    margin-top: 80px;
    padding: 0 40px;
    letter-spacing: 0.08em;
  }

  .block-company-info .block-container > div > dl > div {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
  }

  .block-company-info .block-container > div > dl > div dd {
    margin-top: 10px;
  }
}

.block-contact {
  position: relative;
  background-color: #f8f8f8;
}

@media screen and (min-width: 768px) {
  .block-contact {
    height: 300px;
    margin-top: 140px;
  }

  .block-contact::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background-color: #f2f2f2;
  }

  .block-contact .block-container {
    display: flex;
  }

  .block-contact-content-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    width: 50%;
    height: 300px;
    padding-bottom: 76px;
  }

  .block-contact-content-item .block-brands-btns {
    margin-top: 50px;
  }

  .block-contact-content-item:nth-child(2) .block-brands-btns {
    margin-top: 65px;
  }
}

@media screen and (max-width: 767px) {
  .block-contact {
    margin-top: 100px;
  }

  .block-contact-content-item {
    padding: 40px 0;
  }

  .block-contact-content-item:nth-child(2) {
    background-color: #f2f2f2;
  }

  .block-contact-content-item h3 img {
    max-width: calc(100% - 40px);
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  footer .block-container {
    position: relative;
  }

  .block-footer-privacy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    font-size: 1.2rem;
    font-family: var(--ff-pt);
    letter-spacing: 0.1em;
  }

  .block-footer-privacy p {
    display: flex;
    align-items: center;
    height: 100px;
    width: 1400px;
    margin: 0 auto;
  }

  .block-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    font-size: 1.2rem;
    font-family: var(--ff-pt);
    letter-spacing: 0.1em;
  }
}

@media screen and (max-width: 767px) {
  .block-footer-nav {
    margin-top: 40px;
    padding: 0 40px;
  }

  .block-footer-nav li {
    border-bottom: 1px solid #eaeaea;
  }

  .block-footer-nav a {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 60px;
    padding: 0 40px 0 10px;
    font-size: 1.4rem;
    font-family: var(--ff-pt);
    text-decoration: none;
    letter-spacing: 0.1em;
  }

  .block-footer-nav a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 6px;
    height: 11px;
    margin-top: -5px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2LjA2MSIgaGVpZ2h0PSIxMC43MDciPjxwYXRoIGQ9Im0uMzU0LjM1MyA1IDUtNSA1IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAiLz48L3N2Zz4=");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .block-footer-privacy {
    margin: 40px 0 0;
    font-size: 1.2rem;
    font-family: var(--ff-pt);
    text-align: center;
  }

  .block-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0;
    font-size: 1.2rem;
    font-family: var(--ff-pt);
    letter-spacing: 0.1em;
  }
}

.block-privacy-list + .block-privacy-list {
  margin-top: 40px;
}

.block-privacy h3,
.block-privacy-content p,
.block-privacy-comment,
.block-privacy-content {
  margin-top: 1em;
}

.block-privacy h3 {
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  .block-privacy {
    margin-bottom: 100px;
    padding-top: 24px;
  }

  .block-privacy-container {
    width: 1400px;
    margin-right: auto;
    margin-left: auto;
  }

  .block-privacy-list {
    display: flex;
    justify-content: space-between;
  }

  .block-privacy-list-item {
    width: 680px;
  }

  .block-privacy-content + h3 {
    margin-top: calc(40px + 1em);
  }
}

@media screen and (max-width: 767px) {
  .block-privacy {
    margin-bottom: 64px;
    padding: 16px 30px 0;
  }

  .block-privacy-content + h3 {
    margin-top: 40px;
  }
}
