@charset "UTF-8";
/* CSS Document */
/*---------------------------------------------------------------------
	ベース
---------------------------------------------------------------------*/
*:focus {
  outline: none;
}
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
:root {
  --noto: "Noto Sans JP", sans-serif;
  --serif: "Noto Serif JP", serif;
  --blue: #1D3DC4;
}
html {
  font-size: 62.5%;
}
body {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: var(--noto);
  color: #383838;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: inline-block;
}
a {
  display: inline-block;
}
.wrapper {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 100px);
}
.serif {
  font-family: var(--serif);
}
.flex {
  display: flex;
}
.ai-start {
  align-items: flex-start;
}
.ai-stretch {
  align-items: stretch;
}
.ai-center {
  align-items: center;
}
.ai-end {
  align-items: flex-end;
}
.jc-center {
  justify-content: center;
}
.jc-space {
  justify-content: space-between;
}
.jc-end {
  justify-content: flex-end;
}
.block {
  display: block;
}
.wrap {
  flex-wrap: wrap;
}
.regu {
  font-weight: 400;
}
.medi {
  font-weight: 500;
}
.semi {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.pc-none {
  display: none !important;
}
.sp-none {
  display: block !important;
}
.img-wrap {
  overflow: hidden;
  object-fit: cover;
}
.img-wrap img {
  width: 100%;
  height: 100%;
}
.pc-mb5 {
  margin-bottom: 5px !important;
}
.pc-mb10 {
  margin-bottom: 10px !important;
}
.pc-mb20 {
  margin-bottom: 20px !important;
}
.pc-mb30 {
  margin-bottom: 30px !important;
}
.pc-mb40 {
  margin-bottom: 40px !important;
}
.pc-mb50 {
  margin-bottom: 50px !important;
}
.pc-mb60 {
  margin-bottom: 60px !important;
}
/*---------------------------------------------------------------------
	header
---------------------------------------------------------------------*/
.header {
  height: 100px;
  background-color: #ffffff;
  z-index: 999;
  padding: 0 55px;
  position: relative;
}
.header-inner {
  height: inherit;
  max-width: 1440px;
  width: 100%;
  padding: 0 15px 0 20px;
  margin: 0 auto;
  justify-content: flex-end;
  align-items: center;
}
.header .logo {
  display: inline-flex;
  padding: 5px;
}
.header .logo img {
  width: 156px;
  height: auto;
}
.page-ttl {
  max-width: 440px;
  width: 100%;
  margin-top: -50px;
  margin-left: 10vw;
}
.page-ttl span {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 16px;
}
/*---------------------------------------------------------------------
	MV
---------------------------------------------------------------------*/
.mv {
  margin-bottom: 40px;
}
.mv .swiper-container {
  max-width: 1056px;
  width: 75.4%;
  aspect-ratio: 264 / 149;
  height: auto;
}
.swiper-pagination {
  position: static;
  height: 30px;
  line-height: 45px;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: solid 1px #707070;
  background-color: #ffffff;
  border-radius: 100px;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: #383838;
  border: solid 1px #383838;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.mv > .flex {
  column-gap: clamp(10px, 2.6vw, 40px);
}
.mv-right {
  flex-shrink: 0;
  margin-bottom: 30px;
  width: calc(24.6% - 40px);
  min-width: 190px;
}
.mv-right p {
  font-size: clamp(0.8rem, 1.56vw, 1.4rem);
}
.mv-right .link-pdf {
  margin-bottom: 48px;
}
.mv-right .link-pdf .img-wrap {
  border: solid 1px #383838;
}
.pamphlet-button {
  display: block;
  max-width: 250px;
  width: 100%;
  height: auto;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.16);
  transition: all 0.5s ease;
}
@media (hover: hover) and (pointer: fine) {
  .pamphlet-button:hover {
    box-shadow: unset;
    -webkit-transform: translate(5px, 5px);
    transform: translate(5px, 5px);
  }
}
.contact-button {
  color: #ffffff;
  background-color: #383838;
  letter-spacing: 0.2em;
  width: 100%;
  height: 50px;
  position: relative;
  border: solid 1px #383838;
  font-size: clamp(0.8rem, 1.56vw, 1.4rem);
}
.contact-button span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all 0.5s ease;
}
.contact-button::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #ffffff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
@media (hover: hover) and (pointer: fine) {
  .contact-button span:hover {
    color: #383838;
  }
  .contact-button:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    transform-origin: left;
  }
}
/*---------------------------------------------------------------------
	footer
---------------------------------------------------------------------*/
.announce-text {
  font-size: 4.0rem;
  letter-spacing: 0.1em;
}
.footer {
  background-color: var(--gray);
  margin-top: auto;
}
.copy {
  padding: 8px 0;
  background-color: #383838;
  color: #ffffff;
  display: block;
  text-align: center;
  font-size: 1.4rem;
}