@charset "UTF-8";
/* 機能とパーツごとに分けたscssファイルをcssファイルにコンパイル */
/* function
------------------------------------------------ */
/* setting
------------------------------------------------ */
/* スマホ：~519px
　 タブレット：520px~959px
　 パソコン：960px~ */
html {
  /* ルートのフォントサイズを10pxに設定 */
  font-size: 62.5%;
}

body {
  /* bodyの基本サイズを設定 */
  font-size: 1.35rem;
  font-size: 1.055vw;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  color: #231815;
  text-align: justify;
  line-height: 1.9285714286;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 3.33vw;
    font-size: 3.14vw;
    font-family: YakuHanMP, "Shippori Mincho B1", serif;
    line-height: 1.8;
  }
}

.f-kakko {
  margin-left: -1.4%;
}

/* foundation
------------------------------------------------ */
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

body {
  position: relative;
  background-size: contain;
  background-size: 100% auto;
  background-repeat: repeat;
  background-position: center 29vw;
  /* 印刷禁止 */
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

button:hover {
  opacity: 0.8;
}

img {
  font-size: 0;
  vertical-align: bottom;
  max-width: 100%;
  /* PCの右クリック禁止 */
  /* SPの長押し禁止 */
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.br-pc {
  display: block;
}
@media screen and (max-width: 959px) {
  .br-pc {
    display: none;
  }
}

.br-tab {
  display: none;
}
@media screen and (max-width: 959px) {
  .br-tab {
    display: block;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .br-sp {
    display: block;
  }
}

.nonbr-tab {
  display: block;
}
@media screen and (max-width: 959px) {
  .nonbr-tab {
    display: none;
  }
}

.nonbr-sp {
  display: block;
}
@media screen and (max-width: 1024px) {
  .nonbr-sp {
    display: none;
  }
}

.link-disable {
  pointer-events: none;
  background-color: #aaa !important;
}

@media screen and (max-width: 519px) {
  .sptop {
    overflow: hidden;
  }
}

.space-sp {
  display: none;
}
@media screen and (max-width: 519px) {
  .space-sp {
    display: inline-block;
  }
}

.anchor {
  margin-top: -10rem;
  padding-top: 10rem;
}
@media screen and (max-width: 519px) {
  .anchor {
    margin-top: -2rem;
    padding-top: 2rem;
  }
}

/* layout
------------------------------------------------ */
.l-header {
  position: fixed;
  top: 0;
  left: 0%;
  z-index: 20;
}

/*　上に上がる動き　*/
.l-header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes UpAnime {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
/*　下に下がる動き　*/
.l-header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.l-inner {
  margin: 0 auto;
  width: 100%;
  width: 70.6%;
  height: auto;
}

.l-inner--vision {
  margin: 0 auto 0 10.8rem;
  margin: 0 auto 0 8.45vw;
  width: 100%;
  max-width: none;
}

.l-main {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  padding-bottom: 20rem;
  width: 100%;
  width: 57.35vw;
}
@media screen and (max-width: 1024px) {
  .l-main {
    left: 13.3vw;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    padding-bottom: 16.5rem;
    width: 79%;
  }
}

.l-footer {
  position: fixed;
  bottom: 0;
  right: 0%;
  z-index: 2;
}

/* component
------------------------------------------------ */
.c-header__logo {
  width: 163px;
  width: 12.7vw;
}
@media screen and (max-width: 1024px) {
  .c-header__logo {
    width: 13.6vw;
  }
}

.c-header__hamburger {
  display: none;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 100;
  width: 3rem;
  height: 2rem;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media screen and (max-width: 959px) {
  .c-header__hamburger {
    display: block;
  }
}
@media screen and (max-width: 519px) {
  .c-header__hamburger {
    right: 1.5rem;
  }
}

.c-header__hamburger-border {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background-color: black;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.c-header__hamburger-border--top {
  top: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.c-header__hamburger-border--bottom {
  top: auto;
  bottom: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.c-header__hamburger--open .c-header__hamburger-border--top {
  top: calc(50% - 7.5px + 7.5px);
  -webkit-transform: translate(-50%, 0) rotate(-225deg);
          transform: translate(-50%, 0) rotate(-225deg);
}
.c-header__hamburger--open .c-header__hamburger-border--middle {
  opacity: 0;
}
.c-header__hamburger--open .c-header__hamburger-border--bottom {
  top: calc(50% + 7.5px - 7.5px);
  -webkit-transform: translate(-50%, 0) rotate(225deg);
          transform: translate(-50%, 0) rotate(225deg);
}

.c-header__drawer-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: transparent;
  opacity: 0.5;
  z-index: 40;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.c-header__drawer-modal--open {
  display: block;
}

.c-header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  padding: 0 0 1rem 3.8rem;
  width: 22%;
  height: 100vh;
  height: 100svh;
  background-color: white;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  overflow: hidden scroll;
}
@media screen and (max-width: 1200px) {
  .c-header__drawer {
    width: 24.4%;
  }
}
@media screen and (max-width: 959px) {
  .c-header__drawer {
    right: -30rem;
    width: 30rem;
  }
}
.c-header__drawer::-webkit-scrollbar {
  width: 0.5rem;
}
.c-header__drawer::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.c-header__drawer::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
}

@media screen and (max-width: 959px) {
  .c-header__drawer--open {
    right: 0;
  }
}

.c-header__drawer-head {
  margin-top: 33vh;
  font-size: 2.2rem;
  font-weight: bold;
  font-weight: inherit;
  letter-spacing: -0.02em;
}

.c-header__drawer-menus {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 3.2rem;
  letter-spacing: 0.06em;
}

.c-header__drawer-menu {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.c-header__drawer-menu:hover {
  opacity: 0.8;
}
.c-header__drawer-menu::before {
  content: "";
  display: inline-block;
  margin-right: 0.5rem;
  aspect-ratio: 8/10.6;
  width: 0.8rem;
  height: auto;
  background-image: url(../images/common/arrow_menu.png);
  background-size: contain;
}

.c-header__drawer-submenu {
  display: grid;
  grid-template-rows: 0fr;
  font-size: 1.2rem;
  line-height: 2.6rem;
  letter-spacing: 0.06em;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.c-header__drawer-submenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 1.3rem;
  list-style: none;
  overflow: hidden;
}
.c-header__drawer-submenu ul li {
  width: 40%;
}
.c-header__drawer-submenu ul li a::before {
  content: "・";
  margin-right: 0.3rem;
  color: #6bc7f1;
}

.c-header__drawer-submenu--open {
  grid-template-rows: 1fr;
  padding: 0.2rem 0 0.5rem;
}

.c-header__drawer-space {
  height: 3.3rem;
}

.c-header__drawer-discovery {
  position: absolute;
  top: 2.2rem;
  right: 1rem;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: -0.02em;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@media screen and (max-width: 959px) {
  .c-header__drawer-discovery {
    top: 5.5rem;
  }
}

.c-header__drawer-logo01 {
  position: absolute;
  top: 5rem;
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 19rem;
}

.c-header__drawer-logo02 {
  position: absolute;
  bottom: 3rem;
  right: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 19rem;
}
@media screen and (max-width: 959px) {
  .c-header__drawer-logo02 {
    width: 16rem;
  }
}
@media screen and (max-width: 519px) {
  .c-header__drawer-logo02 {
    width: 13rem;
  }
}

.c-section {
  position: relative;
  margin-top: 5rem;
  background-color: #fcfbfb;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .c-section {
    margin-top: 4rem;
  }
}

.c-section__title {
  position: absolute;
  top: 0.4rem;
  right: 1.4rem;
  font-family: "EB Garamond", serif;
  font-size: 1.8vw;
  font-weight: 400;
  letter-spacing: 1px;
}
@media screen and (max-width: 1024px) {
  .c-section__title {
    top: 0;
    right: 1.2rem;
    font-size: 5.8vw;
    letter-spacing: 0.05em;
  }
}

.c-btn {
  display: block;
  margin-top: 3.5rem;
  aspect-ratio: 513/66;
  width: 100%;
  height: auto;
  font-size: 0.95em;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #fcfbfb;
  border: solid 0.5px #231815;
  border-radius: 5rem;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media screen and (max-width: 1024px) {
  .c-btn {
    margin-top: 2.5rem;
    aspect-ratio: 229/66;
  }
}
.c-btn:hover {
  color: white;
  background-color: #231815;
  opacity: 1;
}

.c-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  z-index: 0;
}

.c-bg__slides {
  width: 100%;
  height: 100%;
}
.c-bg__slides .slick-list,
.c-bg__slides .slick-track {
  width: 100%;
  height: 100%;
}
.c-bg__slides img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-footer {
  padding: 0.2rem 0.6rem;
  font-size: 1.03rem;
  font-size: 0.8vw;
  background-color: #fcfbfb;
  letter-spacing: 0.2px;
}
@media screen and (max-width: 1024px) {
  .c-footer {
    padding: 0.3rem 0.8rem;
    font-size: 2.5vw;
  }
}

.c-creating {
  position: fixed;
  bottom: 0;
  left: 0%;
  z-index: 2;
  padding: 1.2rem 0.35rem 0;
  font-size: 1.39rem;
  font-size: 1.08vw;
  letter-spacing: 2px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  background-color: #fcfbfb;
}
@media screen and (max-width: 1024px) {
  .c-creating {
    padding: 0.9rem 0.4rem 0;
    font-size: 3.48vw;
  }
}

.c-first {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: #fcfbfb;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

/* ロゴとコピーは初期状態で透明 */
.c-first__logo,
.c-first__copyright {
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

/* ロゴ・コピーを表示 */
.c-first.is-logo-show .c-first__logo,
.c-first.is-logo-show .c-first__copyright {
  opacity: 1;
}

/* ロゴ・コピーを消す */
.c-first.is-logo-hide .c-first__logo,
.c-first.is-logo-hide .c-first__copyright {
  opacity: 0;
}

/* 全体フェードアウト */
.c-first.is-hide {
  opacity: 0;
  pointer-events: none;
}

.c-first__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 17.2vw;
}
@media screen and (max-width: 1024px) {
  .c-first__logo {
    width: 48vw;
  }
}

.c-first__copyright {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 0.76vw;
  letter-spacing: 0.2px;
}
@media screen and (max-width: 1024px) {
  .c-first__copyright {
    bottom: 5.5rem;
    font-size: 2.7vw;
  }
}

/* project
------------------------------------------------ */
.p-vision {
  margin-top: 18.7rem;
  padding: 12rem 0 11rem;
}
@media screen and (max-width: 1024px) {
  .p-vision {
    margin-top: 4rem;
    padding: 8rem 0 5rem;
  }
}

.p-vision__title {
  font-size: 3.2vw;
  font-weight: inherit;
  letter-spacing: 0.1em;
  line-height: 1.7;
  line-height: 1.65;
}
@media screen and (max-width: 1024px) {
  .p-vision__title {
    font-size: 6.6vw;
    letter-spacing: 1.5px;
    letter-spacing: 0.06em;
  }
}

.p-vision__info {
  margin-top: 8rem;
  font-size: 1.76rem;
  font-size: 1.375vw;
  letter-spacing: 0.05em;
  line-height: 2.8;
}
@media screen and (max-width: 1024px) {
  .p-vision__info {
    margin-top: 4.5rem;
    font-size: 3.8vw;
    letter-spacing: 0.3px;
    letter-spacing: 0.02em;
    line-height: 2.3;
  }
}
.p-vision__info span {
  position: relative;
}
.p-vision__info span::before {
  content: "めぐる";
  position: absolute;
  bottom: 85%;
  left: 50%;
  -webkit-transform: translateX(-41%);
          transform: translateX(-41%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 0.53em;
  line-height: 1;
  letter-spacing: 1.6vw;
}
@media screen and (max-width: 1024px) {
  .p-vision__info span::before {
    bottom: 82%;
    letter-spacing: 4.2vw;
  }
}

.p-service {
  padding: 11rem 0 10.5rem;
}
@media screen and (max-width: 1024px) {
  .p-service {
    padding: 8.5rem 0 5.8rem;
  }
}

.p-service__title {
  margin-top: 10.5rem;
  font-size: 3.5rem;
  font-size: 2.74vw;
  font-weight: inherit;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 1024px) {
  .p-service__title {
    margin-top: 0;
    font-size: 6.7vw;
    letter-spacing: 0.15em;
    line-height: 1.4;
  }
}

.p-service__title--kore {
  margin-left: -1.3%;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .p-service__title--kore {
    margin-left: -1%;
  }
}

.p-service__title--mt0 {
  margin-top: 0;
}

.p-service__info {
  margin-top: 2.1rem;
  font-size: 1.5rem;
  font-size: 1.17vw;
  letter-spacing: 0.1px;
}
@media screen and (max-width: 1024px) {
  .p-service__info {
    margin-top: 2.5rem;
    font-size: 3.5vw;
  }
}

.p-service__features h3 {
  position: relative;
  margin-top: 5.3rem;
  padding-left: 2.4rem;
  font-size: 2rem;
  font-size: 1.56vw;
  font-weight: inherit;
  letter-spacing: 1.1px;
}
@media screen and (max-width: 1024px) {
  .p-service__features h3 {
    margin-top: 3.8rem;
    padding-left: 2.1rem;
    font-size: 4.9vw;
    letter-spacing: 0.07em;
    line-height: 1.3;
  }
}
.p-service__features h3::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.4rem;
  height: 0.04rem;
  background-color: #808080;
}
@media screen and (max-width: 1024px) {
  .p-service__features h3::before {
    top: 3.4vw;
  }
}
.p-service__features p {
  margin-top: 0.6rem;
}
@media screen and (max-width: 1024px) {
  .p-service__features p {
    margin-top: 1.7rem;
  }
}

.p-service__separator {
  margin: 9rem 0;
  width: 100%;
  height: 0.5px;
  background-image: repeating-linear-gradient(90deg, #231815, #231815 1px, transparent 1px, transparent 5px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 0.5px;
}
@media screen and (max-width: 1024px) {
  .p-service__separator {
    margin: 6.5rem 0;
    background-image: repeating-linear-gradient(90deg, #231815, #231815 2px, transparent 2px, transparent 6px);
  }
}

.p-service__separator-sp {
  display: none;
  margin: 6.5rem auto;
  width: 8vw;
  height: 0;
  border-bottom: solid 0.04rem #808080;
}
@media screen and (max-width: 1024px) {
  .p-service__separator-sp {
    display: block;
  }
}

.p-service__pamphlet {
  font-size: 0.978em;
  letter-spacing: 0.1px;
}
@media screen and (max-width: 1024px) {
  .p-service__pamphlet {
    font-size: 3.2vw;
    line-height: 1.9;
  }
}

.p-contact {
  padding: 11rem 0 10.5rem;
}
@media screen and (max-width: 1024px) {
  .p-contact {
    padding: 8.5rem 0 5.8rem;
  }
}

.p-contact__info {
  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;
  gap: 4.3rem;
}
@media screen and (max-width: 1024px) {
  .p-contact__info {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.2rem;
  }
}

.p-contact__comp {
  font-size: 2.19rem;
  font-size: 1.71vw;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .p-contact__comp {
    width: 100%;
    font-size: 5.5vw;
  }
}

.p-contact__address {
  font-size: 0.86vw;
  letter-spacing: 0.8vw;
  letter-spacing: 0.5px;
  letter-spacing: 0.045em;
}
@media screen and (max-width: 1024px) {
  .p-contact__address {
    font-size: 3.3vw;
    font-size: 3.2vw;
    line-height: 2;
  }
}

.p-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 1024px) {
  .p-links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4rem;
    margin-top: 4rem;
  }
}

.p-links__instagram,
.p-links__note {
  aspect-ratio: 308/70;
  width: calc(50% - 1.25rem);
  height: auto;
  font-family: "EB Garamond", serif;
  font-size: 1.65vw;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  letter-spacing: 0.07em;
  background-color: #fcfbfb;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media screen and (max-width: 1024px) {
  .p-links__instagram,
  .p-links__note {
    width: 100%;
    font-size: 2.05rem;
    font-size: 5.7vw;
  }
}
.p-links__instagram:hover,
.p-links__note:hover {
  color: #fcfbfb;
  background-color: #231815;
  opacity: 1;
}

.p-links__instagram {
  letter-spacing: 0.07em;
}
.p-links__instagram img {
  margin: 0 1rem 0 0;
  -webkit-transform: translateY(9%);
          transform: translateY(9%);
  width: 1.7rem;
  width: 1.33vw;
  vertical-align: baseline;
}
@media screen and (max-width: 1024px) {
  .p-links__instagram img {
    width: 4.4vw;
  }
}
.p-links__instagram .white {
  display: none;
}
.p-links__instagram:hover .bl {
  display: none;
}
.p-links__instagram:hover .white {
  display: inline-block;
}

/* utility
------------------------------------------------ */
/* external
------------------------------------------------ *//*# sourceMappingURL=style.css.map */