@charset "UTF-8";
/* Root
-------------------------------------------------- */
:root {
  --clr-border: #3e3a39;
  --header-height: 8rem;
  --header-height-sp: 18vw;
}

/* SCSS Mixin
-------------------------------------------------- */
/* Reset
-------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, ul, ol, li, dl, dd {
  margin: 0;
  padding: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

em {
  font-style: normal;
}

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

img, picture {
  max-width: 100%;
  display: block;
}

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

textarea:not([rows]) {
  min-height: 10em;
}

/* Layout
-------------------------------------------------- */
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}
@media screen and (max-width: 1180px) {
  html {
    font-size: min(0.805vw, 62.5%);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.2vw;
  }
}

body {
  background-color: #fff;
  line-height: 1.6;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
}

main {
  padding-top: var(--header-height);
}

.l-container--l {
  width: min(100%, 1500px);
  margin: 0 auto;
}
.l-container--m {
  width: min(90%, 1280px);
  margin: 0 auto;
}
.l-container--m:not(:first-child) {
  margin-top: min(100px, 15vw);
}
.l-container--s {
  width: min(90%, 890px);
  margin: 0 auto;
}
.l-container--s:not(:first-child) {
  margin-top: min(100px, 15vw);
}

/* Display */
@media screen and (min-width: 768px) {
  .forsp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .forpc {
    display: none !important;
  }
}
/* Space */
.sp-mt_0hem {
  margin-top: 0.5em;
}
.sp-ml_1em {
  margin-left: 1em;
}

.ind-1em {
  padding-left: 1em;
  text-indent: -1em;
}

/* Header
-------------------------------------------------- */
@media screen and (min-width: 768px) {
  .header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.3s;
  }
  .header.scrolled, .attention .header {
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  .global-nav {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    font-family: "Newsreader", "Zen Old Mincho", serif;
    font-optical-sizing: auto;
    font-feature-settings: "palt";
  }
  .global-nav > li {
    position: relative;
    font-size: 2.4rem;
  }
  .global-nav > li > span, .global-nav > li > a {
    display: flex;
    align-items: center;
    height: var(--header-height);
    padding: 20px 1em 0;
    text-align: center;
    text-decoration: none;
    border-bottom: solid 1px transparent;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
  }
  .scrolled .global-nav > li > span, .attention .global-nav > li > span, .scrolled .global-nav > li > a, .attention .global-nav > li > a {
    color: #000;
  }
  .global-nav > li > span[href*="#anchor-contact"], .global-nav > li > a[href*="#anchor-contact"] {
    font-size: calc(1em - 1px);
    padding-top: 22px;
  }
  .global-nav > li:hover > a {
    border-bottom-color: #fff;
  }
  .scrolled .global-nav > li:hover > a, .attention .global-nav > li:hover > a {
    border-bottom-color: #000;
  }
  .global-nav > li ul {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    padding: 10px;
    border-top: solid 1px #fff;
  }
  .scrolled .global-nav > li ul, .attention .global-nav > li ul {
    border-top-color: #000;
  }
  .global-nav > li ul::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #231815;
    mix-blend-mode: multiply;
    opacity: 0.5;
  }
  .global-nav > li ul li {
    position: relative;
    line-height: 1;
    font-size: 1.4rem;
    white-space: nowrap;
  }
  .global-nav > li ul li a {
    display: block;
    margin: 10px 0;
    padding: 0 10px;
    border-left: solid 3px transparent;
    text-decoration: none;
    color: #fff;
  }
  .global-nav > li ul li a:hover {
    border-left-color: #fff;
  }
}
/* SP Nav */
@media screen and (min-width: 768px) {
  .sp-nav__btn {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header {
    width: 100vw;
    overflow: hidden;
  }
  .sp-nav__base {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 100vw;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background-color: #091139;
    color: #fff;
    opacity: 0;
    transition: left 0.3s, opacity 0.3s;
  }
  .sp-nav__base.opened {
    left: 0;
    opacity: 1;
  }
  .sp-nav__btn {
    position: fixed;
    z-index: 11;
    top: 0;
    right: 0;
    width: 18vw;
    height: 18vw;
  }
  .sp-nav__btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    mix-blend-mode: multiply;
  }
  .sp-nav__btn span:first-child {
    position: relative;
    display: block;
    padding: 1rem 0 0;
    text-align: center;
    text-indent: 0.1em;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: #fff;
  }
  .sp-nav__btn span:last-child {
    position: absolute;
    display: block;
    top: calc(65% - 1px);
    left: calc(50% - 4vw);
    width: 8vw;
    height: 1px;
    background-color: #fff;
  }
  .sp-nav__btn span:last-child::before, .sp-nav__btn span:last-child::after {
    content: "";
    position: absolute;
    display: block;
    width: 8vw;
    height: 1px;
    background-color: #fff;
    transition: 0.3s;
  }
  .sp-nav__btn span:last-child::before {
    top: -1.8666666667vw;
  }
  .sp-nav__btn span:last-child::after {
    bottom: -1.8666666667vw;
  }
  .sp-nav__btn.opened span:last-child {
    background-color: transparent;
  }
  .sp-nav__btn.opened span:last-child::before {
    top: 0;
    transform: rotate(45deg);
  }
  .sp-nav__btn.opened span:last-child::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .global-nav {
    margin-top: var(--header-height-sp);
    border-top: solid 1px #fff;
  }
  .global-nav > li {
    border-bottom: solid 1px #fff;
  }
  .global-nav > li a, .global-nav > li span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
    font-size: 1.2em;
  }
  .global-nav > li a::after {
    transform: rotate(45deg);
  }
  .global-nav > li span::after {
    transform: rotate(135deg);
  }
  .global-nav > li span.opened::after {
    transform: rotate(-45deg);
  }
  .global-nav > li ul {
    display: none;
    background-color: #384b6d;
  }
  .global-nav > li ul li a {
    padding: 0.75em 1em;
    border-top: solid 1px rgba(255, 255, 255, 0.5);
  }
}
/* Footer
-------------------------------------------------- */
.to-top {
  margin-top: min(10rem, 10vw);
  text-align: center;
}
.to-top a {
  display: inline-block;
  padding: 0 0.3em 0.25em 0.5em;
  border-bottom: solid 1px var(--clr-border);
  font-family: "Cormorant", serif;
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  transition: transform 0.3s;
}
.to-top a:hover {
  transform: translateY(-0.3em);
}

.footer {
  margin-top: min(6.5rem, 7vw);
  border-top: solid 1px var(--clr-border);
  padding: 10rem 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 0 0 5vw;
  }
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em 3%;
  list-style-type: none;
}
@media screen and (max-width: 767px) {
  .footer-nav {
    border-bottom: solid 1px var(--clr-border);
    background-color: var(--clr-border);
    gap: 1px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav li {
    width: calc((100% - 1px) / 2);
  }
  .footer-nav li:nth-child(-n+3) {
    width: calc((100% - 2px) / 3);
  }
  .footer-nav li:nth-last-child(-n+2) {
    width: 100%;
  }
}
.footer-nav li a {
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .footer-nav li a {
    padding: 1em;
    justify-content: center;
  }
}
.footer-nav li a::before {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.7em;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: currentColor;
  margin-right: 0.25em;
}
.footer-nav li a:hover {
  text-decoration: underline;
  text-decoration-color: var(--clr-border);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.5em;
}
.footer-copyright {
  margin-top: min(10rem, 5vw);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

/* トップページ
-------------------------------------------------- */
.top main {
  padding-top: 0;
}

.movie {
  position: relative;
}
.movie::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #002742 0%, #005075 10%, #FFF 40%, #FFF 100%);
  mix-blend-mode: multiply;
  opacity: 0.5;
  transition: 0.3s;
}
.movie.ended::before {
  background: linear-gradient(to bottom, #002742 0%, #005075 10%, #FFF 40%, #FFF 70%, #005a78 100%);
  opacity: 0.5;
}
.movie video {
  vertical-align: bottom;
  width: 100%;
}

.sp-mv {
  position: relative;
  width: 100%;
  height: 100svh;
}
.sp-mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sp-mv__text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 7svh 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  color: #fff;
}
.sp-mv__title {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-weight: 400;
}
.sp-mv__title em {
  font-size: 3em;
  letter-spacing: 0.05em;
}
.sp-mv__title span {
  font-size: 1.6em;
  letter-spacing: 0.1em;
}
.sp-mv__subttl {
  margin-top: 1em;
  font-size: 1.3em;
  letter-spacing: 0.1em;
}
.sp-mv__logo {
  width: 45%;
  margin: auto auto 0;
}

.top-works__item {
  margin-top: min(15rem, 10vw);
  display: flex;
}
@media screen and (max-width: 767px) {
  .top-works__item {
    display: block;
  }
}
.top-works__item:first-child {
  margin-top: var(--header-height);
}
@media screen and (max-width: 767px) {
  .top-works__item:first-child {
    margin-top: 0;
    padding-top: 0;
  }
}
.top-works__item:nth-child(even) {
  flex-direction: row-reverse;
}
.top-works__item-img {
  position: relative;
  width: min(54%, 820px);
}
@media screen and (max-width: 767px) {
  .top-works__item-img {
    width: 100%;
  }
}
.top-works__item-img figcaption {
  position: absolute;
  bottom: 1em;
  right: 2em;
  font-family: sans-serif;
  font-size: 1.2rem;
  color: #c9caca;
}
@media screen and (max-width: 767px) {
  .top-works__item-img figcaption {
    display: none;
  }
}
.top-works__item-content {
  flex: 1;
  max-width: 546px;
  margin: 0 3%;
  padding-top: min(5rem, 5vw);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .top-works__item-content {
    position: relative;
    width: 90%;
    max-width: initial;
    margin: -11rem auto 0;
  }
}
.top-works__item-title {
  font-family: "Cormorant", serif;
  font-size: min(7rem, 4vw);
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 1180px) {
  .top-works__item-title {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .top-works__item-title {
    margin-bottom: 0.6em;
    letter-spacing: 0.08em;
    color: #fff;
  }
}
.top-works__item-title span {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-size: 0.4em;
  font-weight: 700;
  letter-spacing: 0.5em;
}
.top-works__item-subttl {
  font-family: "Zen Old Mincho", serif;
  font-size: min(2.3rem, 1.6vw);
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .top-works__item-subttl {
    font-size: 2rem;
  }
}
.top-works__item-text {
  margin-top: 2rem;
  font-family: "Noto Serif JP", serif;
  font-size: min(2rem, 1.2vw);
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .top-works__item-text {
    margin-top: 1.5rem;
    line-height: 1.8;
    text-align: justify;
    font-size: 1.7rem;
  }
}
.top-works__item-more {
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .top-works__item-more {
    margin-top: 1em;
  }
}
.top-works__item-more a {
  display: flex;
  align-items: center;
  font-family: "Newsreader", "Zen Old Mincho", serif;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .top-works__item-more a {
    justify-content: flex-end;
    font-size: 1.8rem;
  }
}
.top-works__item-more a::before {
  content: "";
  display: block;
  width: 3em;
  height: 0.4em;
  transform: skewX(45deg);
  border: solid currentColor;
  border-width: 0 2.5px 2px 0;
  margin: -0.25em 1em 0 0;
  transition: width 0.3s;
}
@media screen and (max-width: 767px) {
  .top-works__item-more a::before {
    width: 2em;
    border-width: 0 1.5px 1px 0;
  }
}
.top-works__item-more a:hover::before {
  width: 4em;
}

.top-section {
  margin-top: min(10rem, 15vw);
  padding-top: min(10rem, 15vw);
}
.top-section__title {
  margin-bottom: 1em;
  text-align: center;
  font-family: "Cormorant", serif;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .top-section__title {
    margin-bottom: 0;
    font-size: 3.8rem;
  }
}
.top-section__title span {
  display: block;
  margin-top: 1em;
  font-family: "Zen Old Mincho", serif;
  font-size: 0.33em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .top-section__title span {
    margin-top: 0.5em;
    font-size: 0.5em;
  }
}
.top-section__dl-item {
  min-height: 7.2em;
  padding: 1.5em 1em;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--clr-border);
}
@media screen and (max-width: 767px) {
  .top-section__dl-item {
    min-height: initial;
    padding: 1.5em 0;
    align-items: flex-start;
    gap: 0 2em;
  }
  .sp-recruit .top-section__dl-item {
    gap: 0 1em;
  }
}
.top-section__dl-item > dt {
  width: 15em;
}
@media screen and (max-width: 767px) {
  .top-section__dl-item > dt {
    width: 5em;
    text-align: justify;
    -moz-text-align-last: justify;
         text-align-last: justify;
    font-weight: 700;
  }
  .sp-recruit .top-section__dl-item > dt {
    width: 4em;
    text-align: left;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
.top-section__dl-item > dd {
  flex: 1;
}
.top-section__dl-item > dd dl {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .top-section__dl-item > dd dl {
    display: block;
  }
}
.top-section__dl-item > dd dl dt {
  width: 15em;
}
@media screen and (max-width: 767px) {
  .top-section__dl-item > dd dl dt {
    width: 100%;
  }
}
.top-section__dl-item > dd dl dt:not(:first-of-type) {
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .top-section__dl-item > dd dl dt:not(:first-of-type) {
    margin-top: 0;
  }
}
.top-section__dl-item > dd dl dd {
  width: calc(100% - 15em);
}
@media screen and (max-width: 767px) {
  .top-section__dl-item > dd dl dd {
    width: 100%;
  }
}
.top-section__dl-item > dd dl dd:not(:first-of-type) {
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .top-section__dl-item > dd dl dd:not(:first-of-type) {
    margin-top: 0;
  }
}
.top-section__dl-item > dd dl dd:not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .top-section__dl-item.sp-layout {
    padding: 1.5em 1em;
    flex-direction: column;
  }
  .top-section__dl-item.sp-layout > dt {
    width: 100%;
    margin-bottom: 1rem;
    text-align: left;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.top-history__contents {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .top-history__contents {
    flex-direction: column;
    gap: 10vw 0;
  }
}
.top-history__contents-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.top-history__title {
  display: flex;
  align-items: center;
  height: 4.5rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .top-history__title {
    height: 2em;
  }
}
.top-history__title img {
  width: auto;
  max-height: 100%;
}
.top-history__dl {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-history__dl {
    font-size: 0.96em;
  }
}
.top-history__dl > div {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
.top-history__dl dt {
  width: 8.6em;
  height: 100%;
  padding: 1em 2em 1em 0;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .top-history__dl dt {
    width: 8em;
    padding: 0.5em 1em 0.5em 0;
  }
}
.top-history__dl dd {
  width: calc(100% - 8.6em);
  height: 100%;
  padding: 1em 0 1em 2em;
  border-left: 1px solid var(--clr-border);
}
@media screen and (max-width: 767px) {
  .top-history__dl dd {
    flex: 1;
    padding: 0.5em 0 0.5em 1em;
  }
}

.top-access__subttl {
  margin-bottom: 1em;
  text-align: center;
  text-indent: 0.2em;
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .top-access__subttl {
    font-size: 2.4rem;
  }
}
.top-access__map img {
  max-width: 90%;
  margin: 0 auto;
}
.top-access__map-link {
  width: 9em;
  margin: min(5rem, 5vw) auto 0;
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: #595757;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .top-access__map-link {
    padding: 0.2em 0;
    font-size: 2.2rem;
  }
}
.top-access__map-link::before {
  content: "";
  width: 0.6em;
  height: 0.8em;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: currentColor;
  margin-right: 0.5em;
  transition: background-color 0.3s;
}
.top-access__map-link:hover {
  background-color: #595757;
  color: #fff;
}
.top-access__dl {
  margin-top: min(5rem, 5vw);
  text-align: center;
}
.top-access__dl dt {
  margin-top: -1px;
  padding: 1em 0 0.2em;
  border-bottom: solid 1px var(--clr-border);
  background-color: #fff;
  font-size: 3.6rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-access__dl dt {
    font-size: 2.2rem;
  }
}
.top-access__dl dt span {
  display: inline-block;
  margin: 0 0.5em;
}
@media screen and (max-width: 767px) {
  .top-access__dl dt span {
    margin: 0 0.2em;
  }
}
.top-access__dl dd {
  padding: 0.2em 0;
  border-bottom: dotted 1px var(--clr-border);
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .top-access__dl dd {
    font-size: 1.8rem;
  }
}
.top-access__dl dd.address span {
  display: inline-block;
  margin: 0 0.5em;
}
@media screen and (max-width: 767px) {
  .top-access__dl dd.address span {
    margin: 0 0.25em;
  }
}
.top-access__dl dd.tel span {
  font-size: 0.8em;
}
.top-access__dl dd em {
  font-size: 1.2em;
}
.top-access__img {
  display: flex;
  justify-content: center;
  gap: 0 3rem;
  margin-top: min(5rem, 5vw);
}
@media screen and (max-width: 767px) {
  .top-access__img {
    gap: 0 2rem;
  }
}
.top-access__img figure figcaption {
  margin-top: 0.25em;
  text-align: right;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .top-access__img figure {
    max-width: 40%;
  }
}

.top-recruit .top-section__dl-item dd dl dt {
  margin-bottom: 0.5em;
  font-weight: 700;
}
.top-recruit .top-section__dl-item dd dl dd > *:not(:first-child) {
  margin-top: 0.5em;
}

.top-contact {
  width: min(80%, 460px);
  margin: 0 auto;
  padding: min(15rem, 15vw) 0 min(10rem, 15vw);
  text-align: center;
}
.top-contact__title {
  display: inline-block;
  padding: 0 2em 0.5em;
  border-bottom: solid 1px var(--clr-border);
  font-size: 2.3rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .top-contact__title {
    font-size: 2rem;
  }
}
.top-contact__dl dt {
  margin-top: 3rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .top-contact__dl dt {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
}
.top-contact__dl dt:not(:first-child) {
  padding-top: 3rem;
  border-top: solid 1px var(--clr-border);
}
@media screen and (max-width: 767px) {
  .top-contact__dl dt:not(:first-child) {
    padding-top: 2rem;
  }
}
.top-contact__dl dd {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .top-contact__dl dd {
    margin-top: 1rem;
    font-size: 2rem;
  }
}
.top-contact__dl dd:not(:last-child) {
  margin-bottom: 1.5rem;
}
.top-contact__dl dd a[href^="mailto:"]:hover {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-color: #005075;
  text-underline-offset: 0.2em;
}
.top-contact__dl dd a[href^="tel:"] {
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .top-contact__dl dd a[href^="tel:"] {
    display: block;
    margin-top: -0.3em;
    font-size: 3.8rem;
  }
}
.top-contact__dl dd a[href^="tel:"]::before {
  content: "";
  display: inline-block;
  vertical-align: -0.15em;
  width: 1.2em;
  height: 1em;
  margin-right: 0.1em;
  background: url(../images/top/mark_freedial.svg) center center/contain no-repeat;
}

/* ご利用上の注意
-------------------------------------------------- */
.attention main {
  padding-top: calc(var(--header-height) + 10rem);
}
@media screen and (max-width: 767px) {
  .attention main {
    padding-top: calc(var(--header-height-sp) / 2);
  }
}
.attention-item {
  margin-top: min(10rem, 15vw);
  text-align: center;
}
.attention-item__title {
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: solid 1px var(--clr-border);
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .attention-item__title {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
  }
}
.attention-item__subttl {
  margin: 1em 0 0.5em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .attention-item__subttl {
    margin: 10vw 0 1em;
  }
}
.attention-item p {
  line-height: 1.8;
  font-size: 1.6rem;
  font-weight: 300;
}
.attention-item__logo {
  margin: min(8rem, 15vw) 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 2rem;
}
.attention-item__logo img {
  width: auto;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .attention-item__logo img {
    height: 3rem;
  }
}

/* WORKS
-------------------------------------------------- */
.works-header {
  background-color: #091139;
}
.works-header__inner figure {
  position: relative;
}
.works-header__inner figure picture {
  position: relative;
}
@media screen and (max-width: 767px) {
  .works-header__inner figure picture {
    height: 30vh;
  }
}
.works-header__inner figure picture::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #1f1f1f 0%, #7d7d7d 12%, #fff 34%, #fff 67%, #858585 82%, #1f1f1f 100%);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .works-header__inner figure picture img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.works-header__inner figure figcaption {
  position: absolute;
  bottom: 1em;
  right: 2em;
  font-family: sans-serif;
  font-size: 1.2rem;
  color: #c9caca;
}
@media screen and (max-width: 767px) {
  .works-header__inner figure figcaption {
    display: none;
  }
}
.works-title {
  text-align: center;
  font-family: "Cormorant", serif;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .works-title {
    font-size: 4.8rem;
    letter-spacing: 0.05em;
  }
}
.works-title span {
  display: block;
  margin-bottom: 0.5em;
  font-family: "Zen Old Mincho", serif;
  font-size: 0.5em;
  font-weight: 400;
}
.works-copy {
  margin-top: 0.75em;
  text-align: center;
  font-size: 4.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .works-copy {
    font-size: 2.2rem;
    letter-spacing: 0.05em;
  }
}
.works-text {
  margin-top: 2em;
  line-height: 2.8;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: min(1.7rem, 4vw);
  font-weight: 300;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .works-text {
    line-height: 2;
    letter-spacing: 0.1em;
  }
}
.works-subttl {
  margin: min(10rem, 15vw) 0 5rem;
  text-align: center;
  font-family: "Cormorant", serif;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .works-subttl {
    font-size: 3.2rem;
  }
}
.works-subttl span {
  display: block;
  margin-top: 0.5em;
  font-family: "Zen Old Mincho", serif;
  font-size: 0.5em;
}
.works-thumblist {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  list-style-type: none;
}
@media screen and (max-width: 767px) {
  .works-thumblist {
    gap: 4vw;
  }
}
.works-thumblist li {
  width: calc((100% - 6rem) / 3);
}
@media screen and (max-width: 767px) {
  .works-thumblist li {
    width: calc((100% - 4vw) / 2);
  }
}
.works-thumblist li a {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.works-thumblist li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.works-thumblist li a p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 1.5rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .works-thumblist li a p {
    display: none;
  }
}
.works-thumblist li a p::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  mix-blend-mode: multiply;
}
.works-thumblist li a p span {
  position: relative;
  font-size: 1.5rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .works-thumblist li a p span {
    font-size: 1.3rem;
  }
}
.works-thumblist li a:hover img {
  transform: scale(1.1);
}/*# sourceMappingURL=style.css.map */