@charset "UTF-8";
/* 文字コードの指定 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hina+Mincho&display=swap");
* {
  margin: 0;
  padding: 0;
}

/* Box sizing rules */
/* Box sizingの定義 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Set core body defaults */
/* bodyのデフォルトを定義 */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  color: #1C1C1C;
  overflow: hidden;
  -webkit-text-size-adjust: 100%;
  background-color: white;
}
@media screen and (max-width: 768px) {
  body {
    line-height: 1.75;
  }
}
@media screen and (min-width: 769px) {
  body {
    line-height: 1.75;
  }
}

/* Make images easier to work with */
/* img要素の扱いを簡単にする */
img, picture {
  width: 100%;
  display: block;
  vertical-align: bottom;
}

/* Inherit fonts for inputs and buttons */
/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
}

li, ol {
  list-style: none;
}

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

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-weight: inherit;
}

@media screen and (max-width: 768px) {
  .br {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .br {
    display: inline;
  }
}

.bk {
  display: block;
}

@media screen and (min-width: 1400px) {
  html,
  body {
    font-size: 11px;
  }
}
@media screen and (max-width: 1400px) {
  html,
  body {
    font-size: 10px;
  }
}
@media screen and (max-width: 960px) {
  html,
  body {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 11px;
  }
}
@media screen and (max-width: 420px) {
  html,
  body {
    font-size: 10px;
  }
}
@media screen and (max-width: 374px) {
  html,
  body {
    font-size: 9px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 769px) {
  h1 {
    font-size: 3em;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.4em;
  }
}

@media screen and (min-width: 769px) {
  h2 {
    font-size: 2.4em;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2em;
  }
}

@media screen and (min-width: 769px) {
  h3 {
    font-size: 1.6em;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 1.6em;
  }
}

@media screen and (min-width: 769px) {
  h4 {
    font-size: 2em;
  }
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 1.8em;
  }
}

@media screen and (min-width: 769px) {
  h5 {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 1.4em;
  }
}

@media screen and (min-width: 769px) {
  p,
  a {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 768px) {
  p,
  a {
    font-size: 1.4em;
  }
}

:root {
  --delay: 0.2s; /* デフォルトの遅延時間を設定 */
}

.blurUp {
  filter: blur(10px);
  opacity: 0;
}

.animated.active .blurUp {
  filter: blur(0);
  opacity: 1;
  transition-duration: 1.4s;
  transition-timing-function: ease;
  transition-property: filter, opacity;
  transition-delay: var(--delay);
}

.scaleIn {
  transform: scale(1.2);
  opacity: 0;
}

.animated.active .scaleIn {
  opacity: 1;
  transform: scale(1);
  transition-duration: 2.4s;
  transition-timing-function: ease;
  transition-property: transform, opacity;
  transition-delay: 0.2s;
}

:root {
  --borderRadius-basic: 30px;
  --borderRadius-button: 30px;
  --borderRadius-sml: 20px;
  --borderRadius-lrg: 40px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000000;
  background-color: white;
}
.header__container {
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__container {
    margin-left: 5%;
    margin-right: 5%;
    padding: 1em 0 1.5em;
  }
}
@media screen and (min-width: 769px) {
  .header__container {
    margin-left: 2%;
    margin-right: 2%;
    padding: 1.5em 0;
  }
}
.header__container .header__menu .header__menu-button {
  position: absolute;
  z-index: 1000000;
  width: 4em;
  height: 4em;
  cursor: pointer;
  left: 0;
}
@media screen and (max-width: 768px) {
  .header__container .header__menu .header__menu-button {
    top: 1.5em;
  }
}
@media screen and (min-width: 769px) {
  .header__container .header__menu .header__menu-button {
    top: 2em;
  }
}
.header__container .header__menu .header__menu-button .header__menu-text {
  letter-spacing: 0.2em;
  position: relative;
}
@media screen and (min-width: 769px) {
  .header__container .header__menu .header__menu-button .header__menu-text {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 768px) {
  .header__container .header__menu .header__menu-button .header__menu-text {
    font-size: 1em;
  }
}
.header__container .header__menu .header__menu-button .header__menu-text span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.6s ease-in-out;
}
.header__container .header__menu .header__menu-button .header__menu-text span:nth-of-type(2) {
  opacity: 0;
}
.header__container .header__menu .header__menu-button .header__menu-bar {
  position: relative;
}
.header__container .header__menu .header__menu-button .header__menu-bar span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1C1C1C;
  position: absolute;
  border-radius: 10px;
  transition: transform 0.6s ease-in-out;
}
.header__container .header__menu .header__menu-button .header__menu-bar span:first-of-type {
  top: 1.8em;
}
.header__container .header__menu .header__menu-button .header__menu-bar span:nth-of-type(2) {
  top: 2.8em;
}
.header__container .header__menu .header__menu-button .header__menu-bar span:nth-of-type(3) {
  top: 3.8em;
}
.header__container .header__menu .header__menu-button.active .header__menu-text span:nth-of-type(1) {
  opacity: 0;
}
.header__container .header__menu .header__menu-button.active .header__menu-text span:nth-of-type(2) {
  opacity: 1;
}
.header__container .header__menu .header__menu-button.active .header__menu-bar span:nth-of-type(1) {
  transform: translateY(11px) rotate(45deg);
}
.header__container .header__menu .header__menu-button.active .header__menu-bar span:nth-of-type(2) {
  opacity: 0;
}
.header__container .header__menu .header__menu-button.active .header__menu-bar span:nth-of-type(3) {
  top: 1.8em;
  transform: translateY(11px) rotate(-45deg);
}
.header__container .header__menu .header__nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: #efecec;
  height: 100vh;
  padding: 10em 5em 0 5em;
  opacity: 0;
  visibility: hidden;
  filter: blur(10px);
  transition: all 0.8s ease-in-out;
}
@media screen and (max-width: 768px) {
  .header__container .header__menu .header__nav {
    width: 80%;
  }
}
@media screen and (min-width: 769px) {
  .header__container .header__menu .header__nav {
    width: 40%;
  }
}
@media screen and (min-width: 769px) {
  .header__container .header__menu .header__nav .header__nav-list .header__nav-item {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 768px) {
  .header__container .header__menu .header__nav .header__nav-list .header__nav-item {
    font-size: 1.1em;
  }
}
.header__container .header__menu .header__nav .header__nav-list .header__nav-item .header__nav-link {
  transition: all 0.3s ease-in-out;
}
.header__container .header__menu .header__nav .header__nav-list .header__nav-item:hover .header__nav-link {
  color: #C4C4C4;
}
@media screen and (max-width: 768px) {
  .header__container .header__menu .header__nav .header__nav-list .header__nav-item + .header__nav-item {
    margin-top: 2em;
  }
}
@media screen and (min-width: 769px) {
  .header__container .header__menu .header__nav .header__nav-list .header__nav-item + .header__nav-item {
    margin-top: 2em;
  }
}
.header__container .header__menu .header__nav.active {
  visibility: visible;
  opacity: 1;
  filter: blur(0px);
}
.header__container .header__logo {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .header__container .header__logo {
    width: 6em;
  }
}
@media screen and (min-width: 769px) {
  .header__container .header__logo {
    width: 8em;
  }
}

.mv {
  padding-bottom: 10em;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-top: 8em;
  }
}
@media screen and (min-width: 769px) {
  .mv {
    margin-top: 10em;
  }
}
.mv .mv__container {
  position: relative;
}
@media screen and (min-width: 769px) {
  .mv .mv__container {
    margin-left: 1%;
    margin-right: 1%;
  }
}
.mv .mv__container .mv__catch {
  position: absolute;
  z-index: 10000;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .mv .mv__container .mv__catch {
    padding: 0 1%;
  }
}

.swiper-container {
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  padding: 0;
  z-index: 1;
}
.swiper-container .main-visual_slide {
  overflow: hidden;
}
.swiper-container .main-visual_slide .swiper-slide {
  overflow: hidden;
  transform: translateZ(0);
}
.swiper-container .main-visual_slide .swiper-slide .slide__img-elm {
  height: calc(100vh - 120px);
}
@media screen and (max-width: 768px) {
  .swiper-container .main-visual_slide .swiper-slide .slide__img-elm {
    height: 425px;
  }
}
@media screen and (min-width: 769px) {
  .swiper-container .main-visual_slide .swiper-slide .slide__img-elm {
    height: 825px;
  }
}
.swiper-container .main-visual_slide .swiper-slide .slide__img-elm.mv__slide01 {
  background: url(/images/2023-0606-0129.jpg) center center no-repeat;
  background-size: cover;
}
.swiper-container .main-visual_slide .swiper-slide .slide__img-elm.mv__slide02 {
  background: url(/images/2023-0606-0136.jpg) center center no-repeat;
  background-size: cover;
}
.swiper-container .main-visual_slide .swiper-slide .slide__img-elm.mv__slide05 {
  background: url(/images/DSC04733.jpg) center center no-repeat;
  background-size: cover;
}
.swiper-container .main-visual_slide .swiper-slide .slide__img-elm.mv__slide06 {
  background: url(/images/DSC05114.jpg) center center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .news {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}
@media screen and (min-width: 769px) {
  .news {
    padding-top: 10em;
    padding-bottom: 10em;
  }
}
.news__container {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .news__container {
    width: 90%;
  }
}
@media screen and (min-width: 769px) {
  .news__container {
    width: 90%;
    max-width: 1080px;
  }
}
@media screen and (min-width: 769px) {
  .news__container {
    display: flex;
  }
  .news__container .heading {
    width: 40%;
  }
  .news__container .content {
    padding-top: 0.8em;
    padding-left: 2em;
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .news__container .news__heading {
    margin-bottom: 4em;
  }
}
@media screen and (min-width: 769px) {
  .news__container .news__heading {
    margin-bottom: 6em;
  }
}
.news__container .news__heading .news__heading-elem {
  display: block;
  position: relative;
  color: #C4C4C4;
  font-weight: 500;
  letter-spacing: 0.15em;
}
.news__container .news__heading .news__heading-elem::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5em;
  width: 1.5em;
  height: 1.2px;
  background-color: #C4C4C4;
}
.news__container .news__content .news__lists .news__lists-list .news__lists-listDate {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.8em;
       column-gap: 0.8em;
}
@media screen and (min-width: 769px) {
  .news__container .news__content .news__lists .news__lists-list .news__lists-listDate {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 768px) {
  .news__container .news__content .news__lists .news__lists-list .news__lists-listDate {
    font-size: 1.4em;
  }
}
.news__container .news__content .news__lists .news__lists-list .news__lists-listDate::before {
  content: "";
  width: 0.8em;
  height: 1.5px;
  background-color: #C4C4C4;
}
.news__container .news__content .news__lists .news__lists-list .news__lists-listTitle {
  margin-left: 1.6em;
}

@media screen and (max-width: 768px) {
  .release {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}
@media screen and (min-width: 769px) {
  .release {
    padding-top: 10em;
    padding-bottom: 10em;
  }
}
.release__container {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .release__container {
    width: 90%;
  }
}
@media screen and (min-width: 769px) {
  .release__container {
    width: 90%;
    max-width: 1080px;
  }
}
@media screen and (min-width: 769px) {
  .release__container {
    display: flex;
  }
  .release__container .heading {
    width: 40%;
  }
  .release__container .content {
    padding-top: 0.8em;
    padding-left: 2em;
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .release__container .release__heading {
    margin-bottom: 4em;
  }
}
@media screen and (min-width: 769px) {
  .release__container .release__heading {
    margin-bottom: 6em;
  }
}
.release__container .release__heading .release__heading-elem {
  color: #C4C4C4;
  font-weight: 500;
  letter-spacing: 0.15em;
  display: block;
  position: relative;
}
.release__container .release__heading .release__heading-elem::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5em;
  width: 1.5em;
  height: 1.2px;
  background-color: #C4C4C4;
}
.release__container .release__lists {
  display: grid;
}
@media screen and (max-width: 768px) {
  .release__container .release__lists {
    grid-template-columns: repeat(2, minmax(9em, max-content));
    -moz-column-gap: 2em;
         column-gap: 2em;
    row-gap: 2em;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 769px) {
  .release__container .release__lists {
    grid-template-columns: minmax(0, 15em) minmax(0, 15em) minmax(0, 15em);
    -moz-column-gap: 2em;
         column-gap: 2em;
    row-gap: 2em;
  }
}
.release__container .release__lists .release__lists-item .release__img {
  overflow: hidden;
}
.release__container .release__lists .release__lists-item .release__img img {
  aspect-ratio: 2/2;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .release__container .release__lists .release__lists-item .release__name {
    margin-top: 0.8em;
  }
}
@media screen and (min-width: 769px) {
  .release__container .release__lists .release__lists-item .release__name {
    margin-top: 0.8em;
  }
}
.release__container .release__lists .release__lists-item .release__title {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.8em;
       column-gap: 0.8em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .release__container .release__lists .release__lists-item .release__title {
    margin-top: 0.8em;
  }
}
@media screen and (min-width: 769px) {
  .release__container .release__lists .release__lists-item .release__title {
    margin-top: 0.8em;
  }
}
.release__container .release__lists .release__lists-item .release__title::before {
  content: "";
  width: 0.8em;
  height: 1.5px;
  background-color: #C4C4C4;
}
.release__container .release__lists .release__lists-item .release__download {
  display: block;
  border: 1px solid #1C1C1C;
  border-radius: 40px;
  padding: 0.5em 1em;
  width: 90%;
  max-width: 100px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .release__container .release__lists .release__lists-item .release__download {
    font-size: 1em;
  }
}
@media screen and (max-width: 768px) {
  .release__container .release__lists .release__lists-item .release__download {
    font-size: 1em;
  }
}
@media screen and (max-width: 768px) {
  .release__container .release__lists .release__lists-item .release__download {
    margin-top: 2em;
  }
}
@media screen and (min-width: 769px) {
  .release__container .release__lists .release__lists-item .release__download {
    margin-top: 2em;
  }
}
.release__container .release__lists .release__lists-item .release__download:hover {
  background-color: #1C1C1C;
  color: white;
}

@media screen and (max-width: 768px) {
  .artist {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}
@media screen and (min-width: 769px) {
  .artist {
    padding-top: 10em;
    padding-bottom: 10em;
  }
}
.artist .artist__container {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .artist .artist__container {
    width: 90%;
  }
}
@media screen and (min-width: 769px) {
  .artist .artist__container {
    width: 90%;
    max-width: 1080px;
  }
}
@media screen and (min-width: 769px) {
  .artist .artist__container {
    display: flex;
  }
  .artist .artist__container .heading {
    width: 40%;
  }
  .artist .artist__container .content {
    padding-top: 0.8em;
    padding-left: 2em;
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .artist .artist__container .artist__heading {
    margin-bottom: 4em;
  }
}
@media screen and (min-width: 769px) {
  .artist .artist__container .artist__heading {
    margin-bottom: 6em;
  }
}
.artist .artist__container .artist__heading .artist__heading-elem {
  color: #C4C4C4;
  font-weight: 500;
  letter-spacing: 0.15em;
  display: block;
  position: relative;
}
.artist .artist__container .artist__heading .artist__heading-elem::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5em;
  width: 1.5em;
  height: 1.2px;
  background-color: #C4C4C4;
}
.artist .artist__container .artist__lists {
  display: grid;
}
@media screen and (max-width: 768px) {
  .artist .artist__container .artist__lists {
    grid-template-columns: repeat(2, minmax(9em, 1fr));
    -moz-column-gap: 2em;
         column-gap: 2em;
    row-gap: 2em;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 769px) {
  .artist .artist__container .artist__lists {
    grid-template-columns: minmax(0, 20em) minmax(0, 20em);
    -moz-column-gap: 2em;
         column-gap: 2em;
    row-gap: 2em;
  }
}
.artist .artist__container .artist__lists .artist__lists-artist .artist__img {
  overflow: hidden;
}
.artist .artist__container .artist__lists .artist__lists-artist .artist__img img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .artist .artist__container .artist__lists .artist__lists-artist .artist__name {
    margin-top: 0.8em;
  }
}
@media screen and (min-width: 769px) {
  .artist .artist__container .artist__lists .artist__lists-artist .artist__name {
    margin-top: 0.8em;
  }
}
.artist .artist__container .artist__lists .artist__lists-artist .artist__name .artist__link {
  transition: color 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .artist .artist__container .artist__lists .artist__lists-artist .artist__name .artist__link {
    font-size: 1em;
  }
}
@media screen and (max-width: 768px) {
  .artist .artist__container .artist__lists .artist__lists-artist .artist__name .artist__link {
    font-size: 1em;
  }
}
.artist .artist__container .artist__lists .artist__lists-artist .artist__name .artist__link .linkArrow {
  position: relative;
  display: block;
  width: 2em;
}
.artist .artist__container .artist__lists .artist__lists-artist .artist__name .artist__link .linkArrow::before {
  content: "";
  position: absolute;
  bottom: 8px;
  right: -3.5em;
  width: 85%;
  height: 1px;
  background: #333;
  transition: all 0.3s ease-in-out;
}
.artist .artist__container .artist__lists .artist__lists-artist .artist__name .artist__link .linkArrow::after {
  content: "";
  position: absolute;
  bottom: 12px;
  right: -3.6em;
  width: 15px;
  height: 1px;
  background: #333;
  transform: rotate(35deg);
  transition: all 0.3s ease-in-out;
}
.artist .artist__container .artist__lists .artist__lists-artist .artist__name .artist__link:hover {
  color: #C4C4C4;
}
.artist .artist__container .artist__lists .artist__lists-artist .artist__name .artist__link:hover .linkArrow::before {
  right: -4em;
  width: 100%;
}
.artist .artist__container .artist__lists .artist__lists-artist .artist__name .artist__link:hover .linkArrow::after {
  right: -4.1em;
}
.artist .artist__container .artist__lists .artist__lists-artist .artist__sns {
  display: flex;
  -moz-column-gap: 2em;
       column-gap: 2em;
}
@media screen and (max-width: 768px) {
  .artist .artist__container .artist__lists .artist__lists-artist .artist__sns {
    margin-top: 0.8em;
  }
}
@media screen and (min-width: 769px) {
  .artist .artist__container .artist__lists .artist__lists-artist .artist__sns {
    margin-top: 0.8em;
  }
}
.artist .artist__container .artist__lists .artist__lists-artist .artist__sns .artist__sns-link .fa-brands {
  transition: color 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .artist .artist__container .artist__lists .artist__lists-artist .artist__sns .artist__sns-link .fa-brands {
    width: 1.4em;
  }
}
@media screen and (max-width: 768px) {
  .artist .artist__container .artist__lists .artist__lists-artist .artist__sns .artist__sns-link .fa-brands {
    width:  1.4em;
  }
}
.artist .artist__container .artist__lists .artist__lists-artist .artist__sns .artist__sns-link:hover .fa-brands {
  color: #C4C4C4;
}

@media screen and (max-width: 768px) {
  .information {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}
@media screen and (min-width: 769px) {
  .information {
    padding-top: 10em;
    padding-bottom: 10em;
  }
}
.information .information__container {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .information .information__container {
    width: 90%;
  }
}
@media screen and (min-width: 769px) {
  .information .information__container {
    width: 90%;
    max-width: 1080px;
  }
}
@media screen and (min-width: 769px) {
  .information .information__container {
    display: flex;
  }
  .information .information__container .heading {
    width: 40%;
  }
  .information .information__container .content {
    padding-top: 0.8em;
    padding-left: 2em;
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .information .information__container .information__heading {
    margin-bottom: 4em;
  }
}
@media screen and (min-width: 769px) {
  .information .information__container .information__heading {
    margin-bottom: 6em;
  }
}
.information .information__container .information__heading .information__heading-elem {
  color: #C4C4C4;
  font-weight: 500;
  letter-spacing: 0.15em;
  display: block;
  position: relative;
}
.information .information__container .information__heading .information__heading-elem::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5em;
  width: 1.5em;
  height: 1.2px;
  background-color: #C4C4C4;
}
.information .information__container .information__content .information__paragraph .information__subHead {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.8em;
       column-gap: 0.8em;
}
.information .information__container .information__content .information__paragraph .information__subHead::before {
  content: "";
  width: 0.8em;
  height: 1.5px;
  background-color: #C4C4C4;
}
@media screen and (max-width: 768px) {
  .information .information__container .information__content .information__paragraph .information__subHead {
    margin-bottom: 0.2em;
  }
}
@media screen and (min-width: 769px) {
  .information .information__container .information__content .information__paragraph .information__subHead {
    margin-bottom: 0.2em;
  }
}
.information .information__container .information__content .information__paragraph ul li {
  padding-left: 1.8em;
}
@media screen and (min-width: 769px) {
  .information .information__container .information__content .information__paragraph ul li {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 768px) {
  .information .information__container .information__content .information__paragraph ul li {
    font-size: 1.4em;
  }
}
.information .information__container .information__content .information__paragraph .information__textList .information__infoText a {
  transition: color 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .information .information__container .information__content .information__paragraph .information__textList .information__infoText a {
    font-size: 1em;
  }
}
@media screen and (max-width: 768px) {
  .information .information__container .information__content .information__paragraph .information__textList .information__infoText a {
    font-size: 1em;
  }
}
.information .information__container .information__content .information__paragraph .information__textList .information__infoText:hover a {
  color: #C4C4C4;
}
@media screen and (max-width: 768px) {
  .information .information__container .information__content .information__paragraph .information__textList .information__infoText + .information__infoText {
    margin-top: 0.8em;
  }
}
@media screen and (min-width: 769px) {
  .information .information__container .information__content .information__paragraph .information__textList .information__infoText + .information__infoText {
    margin-top: 0.8em;
  }
}
@media screen and (max-width: 768px) {
  .information .information__container .information__content .information__paragraph + .information__paragraph {
    margin-top: 2em;
  }
}
@media screen and (min-width: 769px) {
  .information .information__container .information__content .information__paragraph + .information__paragraph {
    margin-top: 2em;
  }
}

.footer__container {
  position: relative;
  border-top: 1px solid #C4C4C4;
}
@media screen and (max-width: 768px) {
  .footer__container {
    margin-top: 8em;
    padding: 4em 0 4em;
  }
}
@media screen and (min-width: 769px) {
  .footer__container {
    margin-top: 12em;
    padding: 12em 0 4em;
  }
}
@media screen and (max-width: 768px) {
  .footer__container {
    margin-left: 2%;
    margin-right: 2%;
  }
}
@media screen and (min-width: 769px) {
  .footer__container {
    margin-left: 5%;
    margin-right: 5%;
  }
}
.footer__container .footer__company-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .footer__container .footer__company-logo {
    width: 8em;
  }
}
@media screen and (min-width: 769px) {
  .footer__container .footer__company-logo {
    width: 8em;
  }
}
@media screen and (max-width: 768px) {
  .footer__container .footer__nav {
    margin-top: 4em;
  }
}
@media screen and (min-width: 769px) {
  .footer__container .footer__nav {
    margin-top: 6em;
  }
}
.footer__container .footer__nav .footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 3em;
       column-gap: 3em;
  row-gap: 1.8em;
  line-height: 1;
}
.footer__container .footer__nav .footer__nav-list .footer__nav-item .footer__nav-link {
  transition: color 0.3s ease-in-out;
}
.footer__container .footer__nav .footer__nav-list .footer__nav-item:hover .footer__nav-link {
  color: #C4C4C4;
}
.footer__container .footer__copyright {
  margin-top: 12em;
  text-align: center;
  display: block;
}
.footer__container .top__btn {
  position: absolute;
  right: 1%;
}
@media screen and (min-width: 769px) {
  .footer__container .top__btn {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 768px) {
  .footer__container .top__btn {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 768px) {
  .footer__container .top__btn {
    right: 1%;
    bottom: 2em;
  }
}
@media screen and (min-width: 769px) {
  .footer__container .top__btn {
    right: -1%;
    bottom: 4em;
  }
}
.footer__container .top__btn::before {
  content: "";
  width: 1.3px;
  height: 4em;
  background-color: #C4C4C4;
  position: absolute;
  top: -4em;
  display: block;
  left: 50%;
  transform: translateX(-50%);
}/*# sourceMappingURL=style.css.map */