@charset "UTF-8";
/******************************************
    リセットcss
******************************************/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
button,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

/******************************************
    全体に共通するスタイル
******************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
  font-weight: 400;
  line-height: 1.445;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #222222;
}

body {
  background: #fff;
  color: #222222;
  font-weight: 400;
  line-height: 1.448;
  font-family: "Zen Old Mincho", serif;
}

.inner {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 80px;
}
@media (max-width: 767px) {
  .inner {
    padding-inline: 40px;
  }
}
@media (max-width: 601px) {
  .inner {
    padding-inline: 20px;
  }
}

.is-md {
  display: block;
}
@media (max-width: 767px) {
  .is-md {
    display: none;
  }
}

.is-sm {
  display: block;
}
@media (min-width: 768px) {
  .is-sm {
    display: none;
  }
}

.is-sm-not {
  display: block;
}
@media (max-width: 767px) {
  .is-sm-not {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media (max-width: 601px) {
  .is-sp {
    display: block;
  }
}

.is-sp-not {
  display: block;
}
@media (max-width: 601px) {
  .is-sp-not {
    display: none;
  }
}

.is-tab {
  display: none;
}
@media (max-width: 1024px ) {
  .is-tab {
    display: block;
  }
}

.is-tab-not {
  display: block;
}
@media (max-width: 1024px ) {
  .is-tab-not {
    display: none;
  }
}

.bg-accent {
  background: transparent url(../img/bg_accent.png) no-repeat center center/cover;
}

.section__title {
  text-align: center;
  font-size: 30px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .section__title {
    font-size: 24px;
  }
}

/******************************************
  アニメーション
******************************************/
.animated__fadeInNormal {
  opacity: 0;
  translate: 0 30px;
  transition: opacity 0.3s ease, translate 0.5s ease;
}
.animated__fadeInNormal.js-show {
  opacity: 1;
  translate: 0 0;
}

.animated__fadeIn {
  opacity: 0;
  translate: 0 40px;
  transition: opacity 0.3s ease, translate 0.5s ease;
}
.animated__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
}

.animated__fadeInLeft {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: opacity 0.5s ease, clip-path 0.8s ease;
}
.animated__fadeInLeft.js-show {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

/******************************************
  ヘッダー
******************************************/
body {
  padding-top: 80px;
}
@media (max-width: 767px) {
  body {
    padding-top: 64px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-inline: 80px;
  background: #fff;
  z-index: 100;
}
@media (max-width: 1024px ) {
  .header {
    padding-inline: 40px;
  }
}

.header {
  transition: translate 0.5s ease;
}
.header.js-slide-up {
  translate: 0 -100%;
}

.header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}

.header__inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-block: 27px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .header__inner {
    height: 64px;
  }
}

.header__logo {
  width: 62px;
  height: 80px;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .header__logo:hover {
    opacity: 0.7;
  }
}
.header__logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .header__logo {
    width: 50px;
    height: 64px;
  }
}

@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__list {
  display: flex;
  justify-content: center;
  column-gap: 33px;
  font-size: 18px;
}
@media (max-width: 1024px ) {
  .header__list {
    font-size: 16px;
    column-gap: 20px;
  }
}

.header__list li a {
  display: inline-block;
  position: relative;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .header__list li a:hover {
    opacity: 0.7;
  }
}
.header__list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: #222222;
  scale: 0;
  transition: scale 0.5s ease;
}
@media (any-hover: hover) {
  .header__list li a:hover::after {
    scale: 1;
  }
}

/******************************************
  ドロワーメニュー
******************************************/
.drawer__icon {
  position: fixed;
  z-index: 102;
  right: 20px;
  width: 24px;
  height: 16px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  display: none;
}
@media (max-width: 767px) {
  .drawer__icon {
    display: flex;
    top: 24px;
  }
}

.drawer__icon {
  transition: translate 0.5s ease;
}
.drawer__icon.js-slide-up {
  translate: 0 -60px;
}
@media (any-hover: hover) {
  .drawer__icon:hover {
    cursor: pointer;
  }
}

.drawer__icon--bar {
  width: 100%;
  height: 1px;
  background: #222222;
  transition: all 0.5s ease;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 7.5px;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -7.5px;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
.drawer.js-show {
  opacity: 1;
  visibility: visible;
}

.drawer__body {
  position: absolute;
  top: 80px;
  left: 50%;
  translate: -50%;
  width: 90%;
  height: fit-content;
  min-height: 80%;
  margin-inline: auto;
  padding-block: 60px;
  padding-inline: 40px;
  background: transparent url(../img/white-bg.png) no-repeat center center/cover;
}
@media (max-width: 601px) {
  .drawer__body {
    top: 60px;
    padding-block: 32px;
    padding-inline: 24px;
  }
}

.drawer__logo {
  width: 100px;
  height: auto;
  margin-inline: auto;
  margin-bottom: 60px;
}
.drawer__logo img {
  width: 100%;
}
@media (max-width: 767px) {
  .drawer__logo {
    width: 72px;
    margin-bottom: 40px;
  }
}

.drawer__list {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 60px;
  margin-bottom: 40px;
}
.drawer__list li a {
  color: #222222;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .drawer__list li a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .drawer__list {
    font-size: 18px;
    row-gap: 32px;
  }
}

.drawer.js-show .drawer__list li:nth-child(1) {
  animation-name: slideIn;
  animation-fill-mode: both;
  animation-duration: 0.6s;
  animation-delay: 0.25s;
  animation-direction: normal;
  animation-timing-function: ease;
}
.drawer.js-show .drawer__list li:nth-child(2) {
  animation-name: slideIn;
  animation-fill-mode: both;
  animation-duration: 0.6s;
  animation-delay: 0.5s;
  animation-direction: normal;
  animation-timing-function: ease;
}
.drawer.js-show .drawer__list li:nth-child(3) {
  animation-name: slideIn;
  animation-fill-mode: both;
  animation-duration: 0.6s;
  animation-delay: 0.75s;
  animation-direction: normal;
  animation-timing-function: ease;
}
.drawer.js-show .drawer__list li:nth-child(4) {
  animation-name: slideIn;
  animation-fill-mode: both;
  animation-duration: 0.6s;
  animation-delay: 1s;
  animation-direction: normal;
  animation-timing-function: ease;
}
.drawer.js-show .drawer__list li:nth-child(5) {
  animation-name: slideIn;
  animation-fill-mode: both;
  animation-duration: 0.6s;
  animation-delay: 1.25s;
  animation-direction: normal;
  animation-timing-function: ease;
}
@keyframes slideIn {
  0% {
    opacity: 0;
    translate: 0 20px;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}

/******************************************
  fv
******************************************/
.fv__main {
  position: relative;
  height: 48.6111111111vw;
}
@media (min-width: 1280px) {
  .fv__main {
    height: 700px;
  }
}
@media (max-width: 767px) {
  .fv__main {
    height: 500px;
  }
}
@media (max-width: 601px) {
  .fv__main {
    height: 115vw;
  }
}

.fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.fv__message-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  font-size: 128px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}
.fv__message-text .--large {
  font-size: 180px;
  font-weight: 700;
}
@media (max-width: 1024px ) {
  .fv__message-text .--large {
    font-size: 148px;
  }
}
@media (max-width: 601px) {
  .fv__message-text .--large {
    font-size: 120px;
  }
}
@media (max-width: 1024px ) {
  .fv__message-text {
    font-size: 108px;
  }
}
@media (max-width: 601px) {
  .fv__message-text {
    font-size: 80px;
  }
}

.fv__text-wrap {
  width: 83.3333333333%;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}
@media (max-width: 767px) {
  .fv__text-wrap {
    width: 100%;
    padding-block: 60px;
  }
}

.fv__bottom-text {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.75;
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px ) {
  .fv__bottom-text {
    font-size: 2.4vw;
  }
}
@media (max-width: 767px) {
  .fv__bottom-text {
    font-size: 3.8vw;
  }
}

.fv__main-text-wrap {
  position: absolute;
  top: 42%;
  left: 50%;
  translate: -50% -50%;
}
@media (max-width: 767px) {
  .fv__main-text-wrap {
    left: 40%;
  }
}

/******************************************
  outset
******************************************/
.outset {
  padding-top: 100px;
  position: relative;
}
@media (max-width: 601px) {
  .outset {
    padding-top: 0;
  }
}

.outset__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(180deg, #fff 0%, #fff 64.9%, #F7F6F4 64.9%, #F7F6F4 100%);
}
@media (max-width: 767px) {
  .outset__bg {
    background: none;
  }
}

.outset__inner {
  position: relative;
  z-index: 1;
}
@media (max-width: 601px) {
  .outset__inner {
    padding-inline: 0;
  }
}

.outset__content {
  padding: 108px 120px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .outset__content {
    padding: 40px 28px;
  }
}

.outset__content-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #fff;
}
.outset__content-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: transparent url(../img/outset_bg.png) no-repeat center center/cover;
}

.outset__img {
  width: 205px;
  height: auto;
  position: absolute;
  top: 40px;
  right: 9%;
}
@media (max-width: 1024px ) {
  .outset__img {
    top: 28px;
    right: 4%;
  }
}
@media (max-width: 767px) {
  .outset__img {
    width: 26.4%;
    top: 20px;
    right: 28px;
  }
}
@media (max-width: 601px) {
  .outset__img {
    top: 11%;
  }
}

.outset__title {
  font-size: 30px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .outset__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.outset__text {
  font-size: 18px;
}
@media (max-width: 767px) {
  .outset__text {
    font-size: 16px;
  }
}

/******************************************
  about
******************************************/
.about {
  padding-block: 100px;
  background: #F7F6F4;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .about {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 601px) {
  .about {
    padding-top: 0;
  }
}

.about__bg-decoration {
  position: absolute;
  z-index: 0;
  width: fit-content;
  height: auto;
}
.about__bg-decoration.--top {
  top: 41.5%;
  left: 34px;
}
.about__bg-decoration.--bottom {
  bottom: 8%;
  left: 58%;
  translate: -50%;
}

.about__inner {
  padding-right: 44px;
}
@media (max-width: 1024px ) {
  .about__inner {
    padding-right: 24px;
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .about__inner {
    padding-right: 0;
    padding-left: 0;
  }
}

.about__top-contents {
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .about__top-contents {
    flex-direction: column-reverse;
    row-gap: 0;
    margin-bottom: 42px;
  }
}

@media (max-width: 767px) {
  .about__top-contents .about__item:nth-child(odd) .about__item-head,
  .about__bottom-contents .about__item:nth-child(odd) .about__item-head {
    margin-right: 7.4666%;
  }
  .about__top-contents .about__item:nth-child(even) .about__item-head,
  .about__bottom-contents .about__item:nth-child(even) .about__item-head {
    margin-left: 7.4666%;
  }
}
.about__items {
  display: flex;
  flex-direction: column;
  width: 45.2887537994%;
  row-gap: 130px;
}
@media (max-width: 1024px ) {
  .about__items {
    width: 42%;
  }
}
@media (max-width: 767px) {
  .about__items {
    width: 100%;
    row-gap: 42px;
  }
}

.about__item-head {
  padding: 60px 20px;
  position: relative;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .about__item-head {
    padding: 20px 20px 20px 26px;
  }
}
@media (max-width: 601px) {
  .about__item-head {
    justify-content: flex-start;
  }
}

.about__item-head-img {
  position: absolute;
  bottom: 30px;
  right: 40px;
  width: calc(100% + 40px);
  height: 100%;
  z-index: 0;
}
@media (max-width: 767px) {
  .about__item-head-img {
    display: none;
  }
}

.about__item-head-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: transparent url(../img/about_head_bg.png) no-repeat center center/cover;
}

.about__item-title {
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: 30px;
  display: inline-block; /* 必須: ブロック要素の幅をテキストに合わせる */
  text-align: left; /* テキストを左揃え */
  color: #fff;
}
@media (max-width: 1024px ) {
  .about__item-title {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .about__item-title {
    font-size: 22px;
  }
}
@media (max-width: 601px) {
  .about__item-title {
    font-size: 5.3333vw;
  }
}

.about__item-body {
  position: relative;
  margin-top: -30px;
  padding-block: 80px;
  padding-left: 8px;
  padding-right: 6.61%;
}
@media (max-width: 767px) {
  .about__item-body {
    padding: 52px 28px 32px 28px;
    margin-top: -20px;
  }
}

.about__item-body__bg {
  position: absolute;
  top: 0;
  right: -52px;
  z-index: 0;
  width: calc(100% + 132px);
  height: 100%;
}
@media (max-width: 767px) {
  .about__item-body__bg {
    width: 100%;
    right: 0;
  }
}
.about__item-body__bg.--bg-shelf {
  background: transparent url(../img/super-shelf.jpg) no-repeat center center/cover;
}
.about__item-body__bg.--bg-shelf::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.85);
}

.about__item-text {
  position: relative;
  z-index: 1;
  font-size: 18px;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .about__item-text {
    font-size: 16px;
  }
}

.about__bottom-contents {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .about__bottom-contents {
    margin-bottom: 0;
  }
}
.about__bottom-contents .about__items {
  width: 100%;
  row-gap: 80px;
  margin-top: -40px;
}
@media (max-width: 767px) {
  .about__bottom-contents .about__items {
    margin-top: 0;
    row-gap: 42px;
  }
}
.about__bottom-contents .about__item {
  width: 45.2887537994%;
}
@media (max-width: 767px) {
  .about__bottom-contents .about__item {
    width: 100%;
  }
}
.about__bottom-contents .about__item:nth-child(odd) {
  align-self: flex-end;
}
.about__bottom-contents .about__item:nth-child(odd) .about__item-head-img {
  left: 18px;
  right: unset;
}
.about__bottom-contents .about__item:nth-child(odd) .about__item-body__bg {
  left: -80px;
  right: unset;
  z-index: 0;
  height: 100%;
  width: calc(100% + 138px);
}
@media (max-width: 767px) {
  .about__bottom-contents .about__item:nth-child(odd) .about__item-body__bg {
    left: 0;
    width: 100%;
  }
}

.about__item.--mt-up {
  margin-top: -120px;
}
@media (max-width: 767px) {
  .about__item.--mt-up {
    margin-top: 0;
  }
}

.about__item-list {
  position: relative;
  z-index: 1;
  padding-inline: 80px;
  font-size: 18px;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .about__item-list {
    font-size: 16px;
  }
}
@media (max-width: 601px) {
  .about__item-list {
    padding-inline: 0;
  }
}

/******************************************
  年表
******************************************/
.chronology {
  margin-top: 136px;
  padding-block: 40px;
  padding-inline: 32px;
  background: #fff;
  flex: 0 0 520px;
}
@media (max-width: 1279px ) {
  .chronology {
    flex: 0 0 45%;
  }
}
@media (max-width: 1024px ) {
  .chronology {
    padding-inline: 24px;
  }
}
@media (max-width: 767px) {
  .chronology {
    margin-top: 0;
    padding-inline: 50px;
    padding-block: 60px;
    background: #F8F8F8;
  }
}
@media (max-width: 601px) {
  .chronology {
    margin-top: 0;
    padding-inline: 28px;
  }
}

.chronology__title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .chronology__title {
    margin-bottom: 24px;
  }
}

.chronology__contents {
  display: flex;
  flex-direction: column;
  position: relative;
}

.chronology__item {
  position: relative;
  padding-bottom: 32px;
}

.chronology__center-line {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  background: #4C5564;
  width: 1px;
  height: 100%;
  z-index: 0;
}

.chronology__item-title {
  font-size: 18px;
  width: 96px;
  padding: 8px;
  text-align: center;
  background: #4C5564;
  color: #fff;
  margin-inline: auto;
}

.chronology__info {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  column-gap: 20%;
  position: relative;
}
.chronology__info.--left {
  justify-content: left;
}
.chronology__info.--right {
  justify-content: right;
}

.chronology__circle {
  display: block;
  padding-top: 3px;
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -50%;
  z-index: 1;
  width: 16px;
  height: auto;
  aspect-ratio: 1;
  background: #fff;
}
@media (max-width: 767px) {
  .chronology__circle {
    background: #F8F8F8;
  }
}

.chronology__img {
  width: 40%;
  height: auto;
  object-fit: contain;
}

.chronology__text {
  width: 40%;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.chronology__text.ml-20 {
  translate: -16px;
}
@media (max-width: 1024px ) {
  .chronology__text.ml-20 {
    translate: 0;
  }
}

.chronology__text--grid {
  display: grid;
  grid-template-columns: 70px max-content;
  font-size: 1.2vw;
}
@media (min-width: 1280px) {
  .chronology__text--grid {
    font-size: 16px;
  }
}
@media (max-width: 1024px ) {
  .chronology__text--grid {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    font-size: 16px;
    line-height: 1.2;
    white-space: nowrap;
  }
}

/******************************************
  representative
******************************************/
.representative__content {
  max-width: 1050px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  column-gap: 40px;
}
@media (max-width: 767px) {
  .representative__content {
    flex-direction: column-reverse;
    row-gap: 24px;
    background: #fff;
    padding-inline: 28px;
    padding-top: 42px;
    padding-bottom: 40px;
  }
}

.representative__text {
  flex: 1;
  font-size: 18px;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .representative__text {
    font-size: 16px;
  }
}

.representative__img-wrap {
  flex: 0 0 340px;
}
.representative__img-wrap img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .representative__img-wrap {
    flex: auto;
    width: 260px;
  }
}

/******************************************
  message
******************************************/
.message {
  padding-top: 108px;
  padding-bottom: 160px;
  background: linear-gradient(180deg, #fff 0px, #fff 367px, #E1E1E3 367px, #E1E1E3 100%);
}
@media (max-width: 767px) {
  .message {
    padding-top: 40px;
    padding-bottom: 0;
    background: linear-gradient(180deg, #fff 0px, #fff 500px, #E1E1E3 500px, #E1E1E3 100%);
  }
}

@media (max-width: 767px) {
  .message__inner {
    padding-inline: 0;
  }
}

.message__top-wrap {
  background: transparent url(../img/message_bg.png) no-repeat center center/cover;
  padding: 108px 120px;
  margin-bottom: 100px;
  color: #E1E1E3;
}
@media (max-width: 767px) {
  .message__top-wrap {
    padding: 60px 16px;
    margin-bottom: 60px;
    width: 93.6%;
    margin-inline: auto;
  }
}

.message__top-title {
  font-size: 30px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .message__top-title {
    margin-bottom: 32px;
  }
}

.message__top-text {
  font-size: 18px;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .message__top-text {
    font-size: 16px;
  }
}

.message__items {
  display: flex;
  flex-direction: column;
  row-gap: 120px;
  max-width: 1020px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .message__items {
    row-gap: 60px;
    padding-inline: 28px;
    padding-bottom: 60px;
  }
}

.message__item.--small {
  padding-inline: 30px;
}
@media (max-width: 767px) {
  .message__item.--small {
    padding-inline: 0;
  }
}

.message__item-title {
  font-size: 30px;
  margin-bottom: 32px;
}
.message__item-title.--center {
  text-align: center;
}
.message__item-title.--large {
  font-weight: 700;
  font-size: 42px;
}
.message__item-title.--large span {
  position: relative;
}
.message__item-title.--large span::before {
  content: "「";
  position: absolute;
  top: -5px;
  left: -1em;
  width: 1em;
  height: 1em;
}
.message__item-title.--large span::after {
  content: "」";
  position: absolute;
  bottom: 4px;
  right: -1em;
  width: 1em;
  height: 1em;
}

.message__item-title.--list {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: max-content;
  margin-inline: auto;
}
.message__item-title.--list span {
  display: inline-block;
  width: max-content;
  position: relative;
}
.message__item-title.--list span::before {
  content: "・";
  position: absolute;
  top: 0.5em;
  left: -1em;
  translate: 0 -50%;
  width: 1em;
  height: 1em;
}

.message__item-text {
  font-size: 18px;
}
.message__item-text.--center {
  text-align: center;
}
.message__item-text.--line-height-large {
  line-height: 1.7778;
}
@media (max-width: 767px) {
  .message__item-text {
    font-size: 16px;
  }
}

/******************************************
  media
******************************************/
.media {
  padding-block: 160px;
  background: #F7F6F4;
}
@media (max-width: 767px) {
  .media {
    padding-top: 60px;
    padding-bottom: 74px;
  }
}

.media__title {
  margin-bottom: 40px;
}

.media__vide-wrap {
  max-width: 900px;
  width: 100%;
  height: auto;
  aspect-ratio: 900/573;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}
.media__vide-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/******************************************
  introduction
******************************************/
.introduction {
  background: #F7F6F4;
  padding-bottom: 100px;
  overflow: hidden;
}

.introduction__inner {
  padding-inline: 48px;
}
@media (max-width: 601px) {
  .introduction__inner {
    padding-inline: 28px;
  }
}

.introduction__top {
  padding-block: 100px;
  padding-left: 110px;
  padding-right: 80px;
  position: relative;
  margin-bottom: 100px;
}
@media (max-width: 1024px ) {
  .introduction__top {
    padding-top: 60px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .introduction__top {
    margin-bottom: 80px;
  }
}
@media (max-width: 601px) {
  .introduction__top {
    padding-inline: 0;
  }
}

.introduction__bg--pink {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: 100%;
  margin-right: calc(50% - 50vw);
  border-radius: 360px 0 0 360px;
  background: transparent url(../img/introduction_pink.png) no-repeat center center/cover;
}
@media (max-width: 601px) {
  .introduction__bg--pink {
    margin-left: calc(50% - 50vw);
    border-radius: 160px 0 0 160px;
  }
}

.introduction__item {
  position: relative;
  z-index: 1;
  max-width: 938px;
  width: 100%;
  margin-inline: auto;
}

.introduction__title {
  margin-bottom: 74px;
}
@media (max-width: 767px) {
  .introduction__title {
    margin-bottom: 40px;
  }
}

.introduction__head {
  display: flex;
  align-items: center;
  column-gap: 106px;
  margin-bottom: 100px;
}
@media (max-width: 1024px ) {
  .introduction__head {
    column-gap: 60px;
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .introduction__head {
    flex-direction: column;
    row-gap: 16px;
    margin-bottom: 32px;
  }
}

.introduction__img-wrap {
  flex: 0 0 197px;
}
.introduction__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .introduction__img-wrap img {
    width: 165px;
    margin-inline: auto;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .introduction__img-wrap {
    flex: auto;
  }
}

.introduction__info {
  flex: 1;
  align-self: flex-end;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .introduction__info {
    margin-bottom: 0;
  }
}

.introduction__info-title {
  font-size: 30px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .introduction__info-title {
    text-align: center;
    font-size: 20px;
  }
}
.introduction__info-title.--large {
  font-size: 40px;
  font-weight: 700;
}
@media (max-width: 1024px ) {
  .introduction__info-title.--large {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .introduction__info-title.--large {
    font-size: 24px;
    text-align: left;
  }
}
@media (max-width: 601px) {
  .introduction__info-title.--large {
    font-size: 6.3vw;
  }
}

@media (max-width: 767px) {
  .introduction__info-title.--under-line {
    position: relative;
    padding-bottom: 16px;
  }
  .introduction__info-title.--under-line::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
  }
}

@media (max-width: 767px) {
  .introduction__info-title.--under-line.--black::after {
    background: #222222;
  }
}

.introduction__info-text {
  font-size: 18px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .introduction__info-text {
    font-size: 16px;
    margin-bottom: 0;
  }
}

.introduction__info-text.--under-line {
  padding-bottom: 20px;
  position: relative;
}
.introduction__info-text.--under-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}
@media (max-width: 767px) {
  .introduction__info-text.--under-line::after {
    content: none;
  }
}
@media (max-width: 767px) {
  .introduction__info-text.--under-line {
    padding-bottom: 0;
  }
}

.introduction__info-text.--under-line.--black::after {
  background: #222222;
}

.introduction__info-name {
  font-size: 22px;
}
.introduction__info-name span {
  font-size: 18px;
  display: inline-block;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .introduction__info-name span {
    font-size: 16px;
    margin-left: 8px;
  }
}
@media (max-width: 767px) {
  .introduction__info-name {
    font-size: 16px;
  }
}

.introduction__text-wrap {
  margin-bottom: 40px;
}
.introduction__text-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .introduction__text-wrap {
    margin-bottom: 32px;
  }
}

.introduction__heading {
  font-size: 22px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .introduction__heading {
    margin-bottom: 16px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .introduction__heading.--sm-center {
    text-align: center;
  }
}

.introduction__heading.--question {
  position: relative;
  padding-left: 1.2em;
}
.introduction__heading.--question::before {
  content: "Q.";
  position: absolute;
  top: 0.5em;
  left: 0;
  translate: 0 -50%;
  width: 1em;
  height: 1em;
}
@media (max-width: 601px) {
  .introduction__heading.--question {
    font-size: 4.6vw;
  }
}

@media (max-width: 767px) {
  .introduction__heading.--under-line {
    position: relative;
    padding-bottom: 16px;
  }
  .introduction__heading.--under-line::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
  }
}

.introduction__text {
  font-size: 18px;
}
@media (max-width: 767px) {
  .introduction__text {
    font-size: 16px;
  }
}

.introduction__bottom {
  padding-block: 128px;
  padding-left: 100px;
  padding-right: 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}
@media (max-width: 1024px ) {
  .introduction__bottom {
    padding-left: 20px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .introduction__bottom {
    padding-block: 60px;
  }
}
@media (max-width: 601px) {
  .introduction__bottom {
    padding-right: 0;
    padding-left: 0;
  }
}
.introduction__bottom .introduction__item {
  background: #FDFBFC;
  padding: 80px 82px;
  max-width: 1100px;
}
@media (max-width: 1024px ) {
  .introduction__bottom .introduction__item {
    padding: 60px;
  }
}
@media (max-width: 601px) {
  .introduction__bottom .introduction__item {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-left: 28px;
    padding-right: 28px;
  }
}
.introduction__bottom .introduction__head {
  margin-bottom: 0;
}
.introduction__bottom .introduction__info-text::before {
  background: #222222;
}
.introduction__bottom .introduction__info-name {
  font-size: 18px;
}
@media (max-width: 767px) {
  .introduction__bottom .introduction__info-name {
    font-size: 16px;
    text-align: center;
  }
}

.introduction__bg--gray {
  position: absolute;
  top: 0;
  right: 0;
  background: #707C91;
  z-index: 0;
  width: 100vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
  border-radius: 0 360px 360px 0;
}
@media (max-width: 767px) {
  .introduction__bg--gray {
    border-radius: 0 130px 130px 0;
  }
}
@media (max-width: 601px) {
  .introduction__bg--gray {
    margin-right: calc(50% - 50vw);
  }
}

.introduction__head.--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .introduction__head.--reverse {
    flex-direction: column;
  }
}

.introduction__item.--bottom-top {
  border-top-right-radius: 240px;
}
@media (max-width: 767px) {
  .introduction__item.--bottom-top {
    border-top-right-radius: 160px;
  }
}

.introduction__item.--bottom-last {
  border-bottom-right-radius: 240px;
}
@media (max-width: 767px) {
  .introduction__item.--bottom-last {
    padding-bottom: 80px;
  }
}

/******************************************
  recruit
******************************************/
.recruit {
  padding-block: 120px;
  background: #E1E1E3;
}
@media (max-width: 767px) {
  .recruit {
    padding-block: 60px;
  }
}

@media (max-width: 767px) {
  .recruit__inner {
    padding-inline: 28px;
  }
}

.recruit__title {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .recruit__title {
    margin-bottom: 32px;
  }
}

.recruit__contents {
  max-width: 1100px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 66px;
  margin-bottom: 80px;
}
@media (max-width: 1024px ) {
  .recruit__contents {
    padding-inline: 0;
  }
}
@media (max-width: 767px) {
  .recruit__contents {
    margin-bottom: 40px;
  }
}

.recruit__requirements {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .recruit__requirements {
    row-gap: 16px;
  }
}
@media (max-width: 601px) {
  .recruit__requirements {
    margin-bottom: 40px;
  }
}

.recruit__item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  column-gap: 32px;
}
@media (max-width: 767px) {
  .recruit__item {
    column-gap: 20px;
  }
}
@media (max-width: 601px) {
  .recruit__item {
    flex-direction: column;
    row-gap: 4px;
  }
}
.recruit__item span {
  background: #FFFFFF;
  padding-block: 9px;
  font-size: 20px;
}
@media (max-width: 767px) {
  .recruit__item span {
    font-size: 16px;
  }
}
.recruit__item span:first-child {
  flex: 0 0 152px;
  text-align: center;
}
@media (max-width: 767px) {
  .recruit__item span:first-child {
    flex: 0 0 100px;
  }
}
@media (max-width: 601px) {
  .recruit__item span:first-child {
    flex: auto;
    background: transparent;
    padding-block: 0;
    line-height: 1.445;
  }
}
.recruit__item span:nth-child(2) {
  flex: 1 1 auto;
  padding-inline: 32px;
}
@media (max-width: 601px) {
  .recruit__item span:nth-child(2) {
    flex: auto;
    width: 100%;
    padding-inline: 16px;
  }
}

.recruit__text {
  font-size: 18px;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .recruit__text {
    font-size: 16px;
  }
}

.representative-message {
  max-width: 1100px;
  width: 100%;
  margin-inline: auto;
  padding: 80px 66px;
  margin-bottom: 40px;
  background: #FDFBFC;
}
@media (max-width: 767px) {
  .representative-message {
    padding: 60px 24px;
  }
}
@media (max-width: 601px) {
  .representative-message {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.representative-message__title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .representative-message__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
@media (max-width: 601px) {
  .representative-message__title {
    text-align: left;
  }
}

.representative-message__text {
  font-size: 18px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .representative-message__text {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

.representative-message__name {
  font-size: 18px;
  text-align: right;
}
@media (max-width: 767px) {
  .representative-message__name {
    font-size: 16px;
  }
}
@media (max-width: 601px) {
  .representative-message__name {
    text-align: left;
  }
}

.recruit__bottom-wrap {
  max-width: 1100px;
  width: 100%;
  margin-inline: auto;
}

.recruit__bottom-text {
  padding-inline: 66px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .recruit__bottom-text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .recruit__bottom-text {
    padding-inline: 16px;
  }
}

/******************************************
  cta 
******************************************/
.cta {
  padding-block: 100px;
  background: #000;
  background: transparent url(../img/cta_bg.png) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .cta {
    padding-block: 40px;
  }
}

.cta__content {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 32px;
}
@media (max-width: 767px) {
  .cta__content {
    flex-direction: column;
    row-gap: 10px;
  }
}

.cta__img-wrap {
  width: 130px;
  height: auto;
  aspect-ratio: 1;
}
@media (max-width: 767px) {
  .cta__img-wrap {
    width: 80px;
  }
}
.cta__img-wrap img {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .cta__img-wrap img:hover {
    opacity: 0.7;
  }
}

.cta__text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta__text {
  font-size: 18px;
  letter-spacing: 0.08em;
}
.cta__text.--medium {
  font-size: 24px;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .cta__text.--medium {
    font-size: 20px;
  }
}
.cta__text.--large {
  font-size: 50px;
  letter-spacing: -0.03em;
}
@media (max-width: 767px) {
  .cta__text.--large {
    font-size: 32px;
    line-height: 1;
  }
}
.cta__text .en {
  font-size: 26px;
}
@media (max-width: 767px) {
  .cta__text .en {
    font-size: 20px;
  }
}
.cta__text .diagonal-line {
  position: relative;
}
.cta__text .diagonal-line::before, .cta__text .diagonal-line::after {
  content: "";
  position: absolute;
  top: 54%;
  translate: 0 -50%;
  background: #222222;
  height: 2px;
  width: 13px;
}
@media (max-width: 767px) {
  .cta__text .diagonal-line::before, .cta__text .diagonal-line::after {
    height: 1px;
  }
}
.cta__text .diagonal-line::before {
  left: -16px;
  rotate: 60deg;
}
.cta__text .diagonal-line::after {
  right: -12px;
  rotate: 110deg;
}

/******************************************
  process
******************************************/
.process {
  padding-block: 80px;
  background: transparent url(../img/process_bg.png) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .process {
    padding-block: 60px;
    background: transparent url(../img/process_bg_sp.png) no-repeat center center/cover;
  }
}

.process__inner {
  padding-inline: 28px;
}

.process__title {
  color: #fff;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .process__title {
    margin-bottom: 40px;
  }
}

.process__list {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 40px;
  color: #fff;
}
@media (max-width: 1024px ) {
  .process__list {
    column-gap: 28px;
  }
}
@media (max-width: 767px) {
  .process__list {
    flex-direction: column;
    row-gap: 40px;
  }
}
.process__list li {
  position: relative;
  font-size: 20px;
}
@media (max-width: 1024px ) {
  .process__list li {
    font-size: 2vw;
  }
}
@media (max-width: 767px) {
  .process__list li {
    font-size: 18px;
  }
}
.process__list li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 20px);
  translate: -50% -50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 8px solid #ffffff;
  border-right: 0;
}
@media (max-width: 1024px ) {
  .process__list li::after {
    left: calc(100% + 14px);
  }
}
@media (max-width: 767px) {
  .process__list li::after {
    left: 50%;
    top: calc(100% + 20px);
    border-top: 6px solid #fff;
    border-bottom: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
  }
}
.process__list li:last-child::after {
  content: none;
}

/******************************************
  partner
******************************************/
.partner {
  padding-block: 80px;
  background: transparent url(../img/partner_bg.png) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .partner {
    padding-block: 40px;
  }
}

.partner__title {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .partner__title {
    margin-bottom: 24px;
  }
}

.partner__list {
  font-size: 18px;
  line-height: 1.5555;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .partner__list.is-sm-not {
    display: none;
  }
}

.partner__list div {
  display: flex;
  flex-direction: row;
  column-gap: 1em;
}
@media (max-width: 601px) {
  .partner__list div {
    flex-direction: column;
  }
}
.partner__list div span {
  position: relative;
}
.partner__list div span::before {
  content: "/";
  position: absolute;
  top: 50%;
  left: calc(100% + 0.25em);
  translate: 0 -50%;
}
@media (max-width: 601px) {
  .partner__list div span::before {
    content: none;
  }
}
.partner__list div span:last-child::before {
  content: none;
}

.partner__slide-container {
  display: none;
  position: relative;
  max-width: 520px;
  width: 100%;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .partner__slide-container {
    display: block;
  }
}

.partner__swiper-slide {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.partner__swiper-slide {
  position: relative;
  padding-inline: 24px;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  translate: 0 -50%;
  width: 24px;
  height: 24px;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
}

.swiper-button-prev {
  left: -12px;
}

.swiper-button-next {
  right: -12px;
}

/******************************************
  faq
******************************************/
.faq {
  padding-block: 100px;
  background: #fff;
}
@media (max-width: 767px) {
  .faq {
    padding-block: 60px;
  }
}

@media (max-width: 767px) {
  .faq__inner {
    padding-inline: 28px;
  }
}

.faq__title {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .faq__title {
    margin-bottom: 40px;
  }
}

.faq__contents {
  max-width: 970px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
@media (max-width: 767px) {
  .faq__contents {
    row-gap: 24px;
  }
}

summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}
@media (any-hover: hover) {
  summary:hover {
    cursor: pointer;
  }
}

.faq__summary {
  border-bottom: 1px solid #222222;
}

.faq__question,
.faq__answer {
  padding: 20px 20px 30px 78px;
  position: relative;
}
@media (max-width: 767px) {
  .faq__question,
  .faq__answer {
    padding: 16px 6px 16px 44px;
  }
}

.faq__answer {
  padding-top: 30px;
}
@media (max-width: 767px) {
  .faq__answer {
    padding-top: 16px;
  }
}

.faq__question-text,
.faq__answer-text {
  font-size: 18px;
}
@media (max-width: 767px) {
  .faq__question-text,
  .faq__answer-text {
    font-size: 16px;
  }
}

.faq__question {
  display: block;
}
.faq__question::before {
  font-family: "Zen Maru Gothic", serif;
  content: "Q";
  position: absolute;
  top: 0.75em;
  left: 0;
  translate: 0 -50%;
  font-size: 40px;
  width: 1em;
  height: 1em;
  line-height: 1;
  color: #4C5564;
}
@media (max-width: 767px) {
  .faq__question::before {
    font-size: 30px;
    top: 0.85em;
  }
}

.faq__answer::before {
  font-family: "Zen Maru Gothic", serif;
  content: "A";
  position: absolute;
  top: 1em;
  left: 0;
  translate: 0 -50%;
  font-size: 40px;
  width: 1em;
  height: 1em;
  line-height: 1;
  color: #E8C0AC;
}
@media (max-width: 767px) {
  .faq__answer::before {
    font-size: 30px;
    top: 0.9em;
  }
}

/******************************************
  footer
******************************************/
.footer {
  padding-block: 60px;
  background: #4C5564;
}

.footer__content {
  max-width: 972px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 767px) {
  .footer__info-wrap {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 60px;
    margin-inline: auto;
  }
}

.footer__info {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .footer__info {
    margin-bottom: 0;
  }
}

.footer__info-text {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.03em;
  color: #FDFBFC;
}

.footer__logo {
  width: 60px;
  height: auto;
}
@media (max-width: 767px) {
  .footer__logo {
    margin-inline: auto;
    width: 60px;
  }
}
.footer__logo img {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .footer__logo img:hover {
    opacity: 0.7;
  }
}

.footer__text {
  text-align: center;
  margin-bottom: 24px;
}
.footer__text a {
  color: #fff;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .footer__text a:hover {
    opacity: 0.7;
  }
}

.footer__copy-right {
  color: #FDFBFC;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__copy-right {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */