/*!
global > color
------------------------------
*/
:root {
  --color-font-base: #333333;
  --color-font-white: #ffffff;
  --color-font-brown: #6e3f08;
  --color-font-gold: #dfa767;
  --color-bg-base: #333333;
  --color-bg-white: #ffffff;
  --color-bg-primary: #eeedea;
  --color-bg-brown: #6e3f08;
  --color-bg-gold: #dfa767;
  --color-bg-darkblue: #141b24;
  --color-bg-red: #7b1911;
  --color-bg-gradient: #000000;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content-s: 920px;
  --width-content: 1080px;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: 'Shippori Mincho', serif;
  --font-family-english: 'Playfair Display', serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-modal: 100;
  --z-index-header: 30;
  --z-index-menu: 10;
  --z-index-default: 1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

textarea {
  resize: vertical;
  display: block;
}

select {
  cursor: pointer;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: inherit;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*!
foundation > base
------------------------------
*/
html {
  scrollbar-gutter: stable;
}

body {
  line-height: 1.7;
  font-size: 16px;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  body {
    background-color: var(--color-bg-primary);
  }
}

/*!
component > button
------------------------------
*/
.c-button {
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.c-button img {
  width: 18px;
  height: 26px;
}

.c-button-right {
  margin-left: auto;
}

.c-button-gold {
  width: 64px;
  height: 64px;
  border: 1px solid var(--color-bg-gold);
}

.c-button-brown {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-bg-brown);
}
@media screen and (min-width: 768px) {
  .c-button-brown {
    width: 72px;
    height: 72px;
  }
}

/*!
component > title
------------------------------
*/
.c-title {
  color: var(--color-font-white);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title {
    gap: 16px;
    flex-wrap: nowrap;
    text-wrap: nowrap;
  }
}

.c-title::after {
  content: "";
  display: block;
  background-image: url(../../img/c-title-icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 63px;
  height: 8px;
  position: absolute;
  bottom: -20px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-title::after {
    bottom: -24px;
  }
}

.c-title-english {
  font-family: var(--font-family-english);
  font-size: 32px;
  letter-spacing: 0.05em;
  line-height: normal;
}

.c-title-japanese {
  font-size: 14px;
  opacity: 0.6;
}

/*!
layout > container
------------------------------
*/
.l-container-s {
  width: min(90%, var(--width-content-s));
  margin-inline: auto;
}

.l-container {
  width: min(90%, var(--width-content));
  margin-inline: auto;
}

/*!
layout > header
------------------------------
*/
.l-header-logo a {
  background-color: color-mix(in srgb, var(--color-bg-gradient) 40%, transparent);
  border-radius: 100%;
  filter: drop-shadow(0 4px 0 color-mix(in srgb, var(--color-bg-gradient) 25%, transparent));
  width: 200px;
  height: 200px;
  position: absolute;
  top: -103px;
  left: 50%;
  z-index: 10;
  translate: -50% 0;
}
@media screen and (min-width: 768px) {
  .l-header-logo a {
    width: 391px;
    height: 391px;
    top: -234px;
  }
}

.l-header-logo img {
  width: 98px;
  height: 98px;
  position: absolute;
  bottom: 6px;
  left: 50%;
  translate: -50% 0;
}
@media screen and (min-width: 768px) {
  .l-header-logo img {
    width: 148px;
    height: 148px;
    bottom: 14px;
  }
}

.l-header-inner {
  width: 120px;
  height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .l-header-inner {
    position: fixed;
    top: 0;
    right: 0;
    background-color: color-mix(in srgb, var(--color-bg-gradient) 40%, transparent);
  }
}

.l-header-menu {
  border: none;
  background-color: color-mix(in srgb, var(--color-bg-gradient) 90%, transparent);
  margin: 0;
  position: fixed;
  inset: 0;
  z-index: 100;
  width: 100dvw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  padding: 0;
  display: flex;
  opacity: 0;
  visibility: hidden;
}

.l-header-menu::backdrop {
  display: none;
}

.l-header-open-button,
.l-header-close-button {
  width: 40px;
  height: 12px;
  position: absolute;
  top: 40px;
  right: 20px;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .l-header-open-button,
  .l-header-close-button {
    width: 30px;
    right: 45px;
  }
}

.hamburger-line {
  display: block;
  border: 0.5px solid var(--color-bg-white);
  width: 40px;
  position: absolute;
  right: 0;
  z-index: 10;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .hamburger-line {
    width: 30px;
  }
}

.hamburger-line1 {
  top: 0;
}

.hamburger-line2 {
  top: 12px;
}

.is-open .hamburger-line1 {
  rotate: 17deg;
  top: 50%;
  transform: translate(0 -50%);
}
@media screen and (min-width: 768px) {
  .is-open .hamburger-line1 {
    rotate: -22deg;
    width: 32px;
  }
}

.is-open .hamburger-line2 {
  rotate: -17deg;
  top: 50%;
  transform: translate(0 -50%);
}
@media screen and (min-width: 768px) {
  .is-open .hamburger-line2 {
    rotate: 22deg;
    width: 32px;
  }
}

.l-header-nav {
  width: 90%;
  max-width: 800px;
  display: flex;
  align-items: flex-start;
  padding-bottom: 64px;
  margin-top: 228px;
  margin-inline: auto;
}
@media screen and (min-width: 1080px) {
  .l-header-nav {
    width: 100%;
    margin-top: 244px;
    padding-bottom: 32px;
  }
}

.l-header-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.l-header-item a {
  color: var(--color-font-white);
  font-family: var(--font-family-english);
  font-size: 32px;
  line-height: normal;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.3s;
}

.l-header-item a:hover {
  opacity: 0.5;
}

.l-header-item span {
  font-family: var(--font-family-base);
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.6;
}

.l-header-scroll {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header-scroll {
    color: var(--color-font-gold);
    background-color: transparent;
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: auto;
    cursor: pointer;
  }
}

.l-header-scroll::after {
  content: "";
  display: block;
  background-color: var(--color-bg-gold);
  width: 1px;
  height: 50px;
}

/*!
layout > footer
------------------------------
*/
@media screen and (min-width: 768px) {
  .l-footer {
    width: calc(100% - 120px);
  }
}

.l-footer-body {
  background-color: var(--color-bg-darkblue);
  padding: 64px 20px 88px;
}
@media screen and (min-width: 768px) {
  .l-footer-body {
    padding: 80px 80px 62px;
    width: 97%;
    max-width: 1320px;
    margin-inline: auto;
  }
}

.l-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.l-footer-logo a img {
  transition: all 0.3s;
}

.l-footer-logo a:hover img {
  opacity: 0.3;
}

.l-footer-logo img {
  width: 148px;
  height: 148px;
}

.l-footer-text {
  color: var(--color-font-white);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer-text {
    text-align: right;
  }
}

.l-footer-address span {
  display: block;
}

.l-footer-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .l-footer-sns {
    justify-content: flex-end;
  }
}

.l-footer-sns a img {
  transition: all 0.3s;
}

.l-footer-sns a:hover img {
  transform: scale(1.2);
}

.l-footer-sns-instagram img {
  width: 31px;
  height: 31px;
}

.l-footer-sns-youtube img {
  width: 38px;
  height: 27px;
}

.l-footer-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 56px;
}
@media screen and (min-width: 1080px) {
  .l-footer-content {
    flex-direction: row;
    max-width: 1000px;
  }
}

.l-footer-site-map {
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .l-footer-site-map {
    max-width: 55%;
  }
}

.footer-list-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 16px;
  margin-top: 68px;
}
@media screen and (min-width: 768px) {
  .footer-list-wrap {
    grid-template-columns: repeat(3, 1fr);
    flex-wrap: nowrap;
    margin-top: 64px;
    gap: 32px;
  }
}

.l-footer-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.l-footer-item {
  color: var(--color-font-white);
  font-size: 14px;
}

.l-footer-item a {
  display: inline-block;
  padding-bottom: 5px;
  position: relative;
}

.l-footer-item a::before {
  display: block;
  background: var(--color-bg-white);
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transition-delay: 0.1s;
}

.l-footer-item a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

@media screen and (min-width: 768px) {
  .l-footer-access {
    width: 100%;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer-access {
    max-width: 40%;
  }
}

.l-footer-map {
  aspect-ratio: 340/148;
  margin-top: 68px;
}
@media screen and (min-width: 768px) {
  .l-footer-map {
    margin-top: 72px;
  }
}

.l-footer-map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .l-footer-map iframe {
    aspect-ratio: 413/180;
  }
}

.l-footer-copyright {
  font-size: 12px;
  opacity: 0.3;
  display: block;
  text-align: center;
  padding: 24px 0;
}

/*!
page > top > top-fv
------------------------------
*/
.top-fv {
  width: 100%;
  height: 800px;
  background-image: url(../../../img/top-fv-sp.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .top-fv {
    background-image: url(../../../img/top-fv-pc.png);
  }
}

.top-fv-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.top-fv-title-english {
  color: var(--color-font-white);
  font-family: var(--font-family-english);
  font-size: 80px;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
@media screen and (min-width: 1080px) {
  .top-fv-title-english {
    font-size: 96px;
    text-align: center;
  }
}

.top-fv-title-english span {
  display: block;
}
@media screen and (min-width: 1080px) {
  .top-fv-title-english span {
    display: inline;
  }
}

.top-fv-title-japanese {
  color: var(--color-font-white);
  font-size: 18px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .top-fv-title-japanese {
    font-size: 20px;
  }
}

/*!
page > top > top-information
------------------------------
*/
.top-information {
  background-color: var(--color-bg-darkblue);
  width: 95%;
  padding: 48px 20px;
  margin-top: -56px;
}
@media screen and (min-width: 768px) {
  .top-information {
    width: calc(100% - 120px);
  }
}
@media screen and (min-width: 1080px) {
  .top-information {
    padding: 80px 120px;
  }
}

.top-information-inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1080px) {
  .top-information-inner {
    flex-direction: row;
    gap: 80px;
    max-width: 1080px;
    margin-inline: auto;
  }
}

.top-information-contents {
  display: contents;
}
@media screen and (min-width: 1080px) {
  .top-information-contents {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.top-information-body {
  width: 100%;
  margin-top: 76px;
}
@media screen and (min-width: 1080px) {
  .top-information-body {
    margin-top: 0;
  }
}

.top-information-item a {
  display: block;
  color: var(--color-font-white);
  border-bottom: 1px solid color-mix(in srgb, var(--color-bg-white) 10%, transparent);
  padding: 20px 16px 19px;
}
@media screen and (min-width: 1080px) {
  .top-information-item a {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: 16px;
    padding: 32px 16px 31px;
  }
}

.top-information-item a:first-child {
  border-top: 1px solid color-mix(in srgb, var(--color-bg-white) 10%, transparent);
}

.top-information-time {
  font-size: 18px;
  letter-spacing: 0.05em;
  font-family: var(--font-family-english);
  transition: all 0.3s;
}

.top-information-wrap {
  display: grid;
  grid-template-columns: 1fr 18px;
  align-items: first baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
}
@media screen and (min-width: 1080px) {
  .top-information-wrap {
    width: 100%;
    gap: 0;
    padding-top: 0;
  }
}

.top-information-title {
  font-weight: 500;
  transition: all 0.3s;
}

.top-information-item a:hover .top-information-time,
.top-information-item a:hover .top-information-title {
  opacity: 0.3;
}

.top-information-arrow img {
  width: 18px;
  height: 26px;
}

.top-information-button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 56px;
  order: 3;
}
@media screen and (min-width: 1080px) {
  .top-information-button {
    justify-content: flex-start;
    margin-top: 0;
  }
}

.top-information-button a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  order: 3;
}
@media screen and (min-width: 1080px) {
  .top-information-button a {
    justify-content: flex-start;
  }
}

.top-information-view {
  color: var(--color-font-gold);
  font-family: var(--font-family-english);
  font-size: 20px;
  letter-spacing: 0.05em;
  padding-bottom: 5px;
  position: relative;
}

.top-information-view::before {
  background: var(--color-bg-gold);
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transition-delay: 0.1s;
}

.top-information-button a:hover .top-information-view::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/*!
page > top > top-brands
------------------------------
*/
.top-brands {
  position: relative;
  overflow: hidden;
}

.top-brands-inner {
  background-image: url(../../../img/brands-bg-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  padding: 104px 0 120px;
}
@media screen and (min-width: 768px) {
  .top-brands-inner {
    background-image: url(../../../img/brands-bg-pc.png);
    width: calc(100% - 120px);
    padding: 176px 0 248px;
  }
}

.top-brands-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.top-brands-title--english {
  color: var(--color-font-brown);
  font-size: 56px;
  letter-spacing: 0.05em;
  line-height: normal;
  font-family: var(--font-family-english);
}
.top-brands-title--japanese {
  line-height: 2.5;
}

.top-brands-body {
  width: 100%;
  margin-top: 56px;
  counter-reset: top-brands-item;
}
@media screen and (min-width: 768px) {
  .top-brands-body {
    padding: 0 20px;
    margin-top: 80px;
  }
}
@media screen and (min-width: 1080px) {
  .top-brands-body {
    padding: 0;
  }
}

.top-brands-list01,
.top-brands-list02 {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-brands-list01,
  .top-brands-list02 {
    width: 100%;
    flex-direction: row;
  }
}
@media screen and (min-width: 1080px) {
  .top-brands-list01,
  .top-brands-list02 {
    width: 90%;
  }
}

.top-brands-list01 {
  max-width: 1080px;
}
@media screen and (min-width: 1080px) {
  .top-brands-list01 {
    gap: 80px;
  }
}

.top-brands-list02 {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .top-brands-list02 {
    gap: 40px;
    max-width: 1040px;
    margin-top: 100px;
  }
}

.top-brands-item a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 88%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-brands-item a {
    gap: 16px;
    width: 100%;
  }
}

.top-brands-item02 a {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .top-brands-item02 a {
    margin-top: 44px;
  }
}
@media screen and (min-width: 1080px) {
  .top-brands-item02 a {
    margin-top: 88px;
  }
}

.top-brands-item04 a {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .top-brands-item04 a {
    margin-top: 48px;
  }
}
@media screen and (min-width: 1080px) {
  .top-brands-item04 a {
    margin-top: 96px;
  }
}

.top-brands-img {
  counter-increment: top-brands-item;
  position: relative;
  overflow: hidden;
}

.top-brands-img-inner {
  transition: all 0.3s;
}

.top-brands-img::after {
  content: "0" counter(top-brands-item);
  font-family: var(--font-family-english);
  font-size: 96px;
  letter-spacing: 0;
  line-height: 1;
  color: var(--color-font-white);
  opacity: 0.5;
  position: absolute;
  bottom: -8px;
  right: 8px;
}
@media screen and (min-width: 1080px) {
  .top-brands-img::after {
    font-size: 152px;
    bottom: -16px;
    right: 0;
  }
}

.top-brands-item a:hover .top-brands-img-inner {
  transform: scale(1.1);
}

.top-brands-wrap {
  display: contents;
}
@media screen and (min-width: 1080px) {
  .top-brands-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.top-brands-head {
  color: var(--color-font-brown);
  font-family: var(--font-family-english);
  font-size: 24px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1080px) {
  .top-brands-head {
    font-size: 28px;
  }
}

.top-brands-text {
  font-size: 14px;
}
@media screen and (min-width: 1080px) {
  .top-brands-text {
    font-size: 16px;
    line-height: 2.5;
  }
}

.top-brands-background-text {
  color: var(--color-font-brown);
  font-family: var(--font-family-english);
  background: linear-gradient(180deg, var(--color-bg-gradient) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 152px;
  line-height: 1;
  letter-spacing: 0.05em;
  opacity: 0.05;
  text-wrap: nowrap;
  position: absolute;
  top: 8px;
  left: -405px;
}
@media screen and (min-width: 1080px) {
  .top-brands-background-text {
    font-size: 240px;
    line-height: 1;
    translate: 0;
  }
}

/*!
page > top > top-kv
------------------------------
*/
.top-kv {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-kv {
    width: calc(100% - 120px);
  }
}

@media screen and (min-width: 768px) {
  .top-kv-inner {
    width: 100%;
    max-width: 1320px;
    margin-inline: auto;
    display: flex;
    flex-direction: row-reverse;
  }
}

.top-kv-img {
  background-image: url(../../../img/top-kv.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0 20px 40px;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .top-kv-img {
    width: 50%;
  }
}
@media screen and (min-width: 1080px) {
  .top-kv-img {
    padding: 104px 80px;
  }
}

.top-kv-img-text {
  color: var(--color-font-white);
  font-family: var(--font-family-english);
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .top-kv-img-text {
    font-size: 14px;
    line-height: 2.5;
  }
}

.top-kv-img-text span {
  display: block;
}

.top-kv-body {
  background-color: var(--color-bg-red);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding: 56px 20px;
}
@media screen and (min-width: 768px) {
  .top-kv-body {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .top-kv-body {
    gap: 82px;
    padding: 112px 80px;
  }
}

.top-kv-head {
  color: var(--color-font-gold);
  font-family: var(--font-family-english);
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1080px) {
  .top-kv-head {
    font-size: 108px;
  }
}

.top-kv-head span {
  display: block;
}
@media screen and (min-width: 500px) {
  .top-kv-head span {
    display: inline;
  }
}

.top-kv-text {
  color: var(--color-font-white);
  font-size: 15px;
  line-height: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1080px) {
  .top-kv-text {
    font-size: 16px;
    line-height: 2.5;
  }
}

.top-kv-text01 span {
  display: block;
}

@media screen and (min-width: 768px) {
  .top-kv-text02 span {
    display: block;
  }
}

/*!
page > top > top-links
------------------------------
*/
.top-links {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.top-links-inner {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .top-links-inner {
    width: calc(100% - 120px);
  }
}

.top-links-body {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 38px;
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 1080px) {
  .top-links-body {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
    gap: 4%;
  }
}

.top-links-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 24px;
  position: relative;
  aspect-ratio: 340/224;
  overflow: hidden;
}
@media screen and (min-width: 500px) {
  .top-links-item {
    display: grid;
    grid-template-columns: 1fr 1fr 64px;
    grid-template-rows: fit-content(70px) fit-content(27px);
    align-items: center;
    align-content: center;
    padding: 0 40px;
    aspect-ratio: 576/336;
  }
}

.top-links-wrap {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 52px;
}
@media screen and (min-width: 500px) {
  .top-links-wrap {
    display: contents;
    margin-top: 0;
  }
}

.top-links-travel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url(../../../img/travel-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 0.3s;
}

.top-links-travel:hover::before {
  transform: scale(1.1);
}

.top-links-recruit::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url(../../../img/recruit-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 0.3s;
}

.top-links-recruit:hover::before {
  transform: scale(1.1);
}

@media screen and (min-width: 500px) {
  .top-links-title {
    grid-area: 1/1/2/3;
  }
}

.top-links-text {
  color: var(--color-font-white);
  font-size: 16px;
}
@media screen and (min-width: 500px) {
  .top-links-text {
    grid-area: 2/1/3/3;
    margin-top: 64px;
  }
}

.top-links-button {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-bg-white);
  border-radius: 50%;
}
@media screen and (min-width: 500px) {
  .top-links-button {
    width: 64px;
    height: 64px;
    grid-area: 1/3/3/4;
  }
}

.top-links-button img {
  width: 18px;
  height: 26px;
}

.top-links-background-text {
  color: var(--color-font-brown);
  background: linear-gradient(180deg, var(--color-bg-gradient) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 80px;
  line-height: 1.1;
  letter-spacing: 0.05em;
  opacity: 0.05;
  text-wrap: nowrap;
  position: absolute;
  top: 8px;
  left: -405px;
}
@media screen and (min-width: 1080px) {
  .top-links-background-text {
    font-size: 240px;
    line-height: 1;
    translate: 0;
  }
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}/*# sourceMappingURL=style.css.map */