@charset "UTF-8";
/*-------------------------------------------------
 common
-------------------------------------------------*/
@import "reset.css";
@import url("https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.3/animate.min.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@font-face {
  font-family: "futura-r";
  src: url(../font/texgyreadventor_regular_macroman/texgyreadventor-regular-webfont.woff) format("woff"), url(../font/texgyreadventor_regular_macroman/texgyreadventor-regular-webfont.ttf) format("truetype");
}
@font-face {
  font-family: "futura-b";
  src: url(../font/texgyreadventor_bold_macroman/texgyreadventor-bold-webfont.woff) format("woff"), url(../font/texgyreadventor_bold_macroman/texgyreadventor-bold-webfont.ttf) format("truetype");
}
html {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  height: 100%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 1000px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-weight: 300;
  margin: 0;
  padding: 0;
  position: relative;
  height: auto;
  scroll-behavior: smooth;
}

* {
  list-style-type: none;
}

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

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #111;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:hover {
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.fadein.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.logo_fadein {
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header {
  width: 100%;
  height: 82px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9;
  background: #fff;
  border-bottom: 1px solid #8C8C8C;
}
@media screen and (max-width: 1000px) {
  header {
    border-bottom: none;
    border-radius: 8px;
    width: 94%;
    height: 60px;
    top: 1rem;
    right: 0;
    margin: auto;
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
  }
}
header section {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 50px);
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  header section {
    width: calc(100% - 20px);
  }
}
header section .hamburger {
  display: none;
}
header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 101;
}
@media screen and (max-width: 1000px) {
  header .logo {
    width: 196px;
  }
}
header .logo img {
  height: 60px;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  header .logo img {
    width: 100%;
  }
}
header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
header ul li {
  position: relative;
  text-align: center;
  line-height: 1.4;
}
header ul li .sp {
  vertical-align: middle;
}
header ul li .accordion-area {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  header ul li .accordion-area {
    font-weight: normal;
  }
}
header ul li .accordion-area.active {
  text-decoration: underline;
  text-decoration-color: #193764;
  text-decoration-thickness: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header ul li .accordion-area:hover + .accordion-detail {
  display: block;
}
@media screen and (max-width: 767px) {
  header ul li .accordion-area:hover + .accordion-detail {
    display: none;
  }
}
header ul li .accordion-detail {
  display: none;
  position: absolute;
  top: 1.5em;
  left: -1rem;
  width: 200px;
  background: #fff;
  padding: 2rem 1rem 1rem;
  -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
  z-index: 9;
}
header ul li .accordion-detail:hover {
  display: block;
}
@media screen and (max-width: 767px) {
  header ul li .accordion-detail:hover {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header ul li .accordion-detail {
    left: -1rem;
    -webkit-box-shadow: none;
            box-shadow: none;
    position: static;
    display: none;
  }
}
header ul li .accordion-detail.open {
  display: block;
}
header ul li .accordion-detail li {
  margin-bottom: 2em;
}
header ul li .accordion-detail li:last-child {
  margin-bottom: 0;
}
header ul li .accordion-detail li a {
  font-size: 1em;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 1000px) {
  header ul li .accordion-detail li a:hover {
    opacity: initial;
    -webkit-transition: initial;
    transition: initial;
  }
}
header ul li a {
  text-decoration: none;
  position: relative;
}
header ul li a::before {
  content: "";
  position: absolute;
  left: -8px;
  bottom: -8px;
  width: calc(100% + 16px);
  height: 1px;
  display: block;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header ul li a.other::after {
  content: url(../img/other_ico.svg);
  vertical-align: middle;
  margin-left: 4px;
}
header ul li a:hover {
  opacity: 1;
}
header ul li a:hover::before {
  opacity: 1;
}
header ul li .headerBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #193764;
  color: #fff;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  width: 256px;
  height: 48px;
  border-radius: 30px;
  font-size: 14px;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
header ul li .headerBtn:hover {
  background-color: #D2638C;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 1000px) {
  header ul li .headerBtn {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .hamburger {
    display: block !important;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 15px;
    right: 3%;
    z-index: 100;
    border-radius: 50px;
  }
  .hamburger_bar {
    display: block;
    width: 70%;
    margin: auto;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    background: #000;
    -webkit-transition: top 0.24s, opacity 0.24s, -webkit-transform 0.24s;
    transition: top 0.24s, opacity 0.24s, -webkit-transform 0.24s;
    transition: top 0.24s, transform 0.24s, opacity 0.24s;
    transition: top 0.24s, transform 0.24s, opacity 0.24s, -webkit-transform 0.24s;
    border-radius: 10px;
  }
  .hamburger_bar:nth-child(1) {
    top: 25%;
  }
  .hamburger_bar:nth-child(2) {
    top: 50%;
    -webkit-transform: translate(-3px, -50%);
            transform: translate(-3px, -50%);
    width: 50%;
  }
  .hamburger_bar:nth-child(3) {
    top: 75%;
    -webkit-transform: translate(0%, -100%);
            transform: translate(0%, -100%);
  }
  .hamburger_bar.is_active {
    background: #000;
  }
  .hamburger_bar.is_active:nth-child(1) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
  }
  .hamburger_bar.is_active:nth-child(2) {
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
    opacity: 0;
  }
  .hamburger_bar.is_active:nth-child(3) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-135deg);
            transform: translateY(-50%) rotate(-135deg);
    width: 70%;
  }
  .nav {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 99;
    background: #fff 50% no-repeat;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    opacity: 0;
    -webkit-transition: opacity 0.24s;
    transition: opacity 0.24s;
    pointer-events: none;
    height: 100vh;
    width: 90%;
  }
}
@media screen and (max-width: 767px) and (max-width: 1000px) {
  .nav {
    height: calc(100vh + 1rem);
    width: 106%;
    left: -3%;
    top: -1rem;
  }
}
@media screen and (max-width: 767px) {
  .nav.is_active {
    opacity: 1;
    pointer-events: auto;
  }
  .nav .nav-list {
    display: block;
    gap: 20px;
    padding-top: 5rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 1000px) {
  .nav .nav-list {
    width: 75%;
    padding-top: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .nav .nav-list li {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 1000px) {
  .nav .nav-list li {
    border-bottom: 1px solid #000;
    padding: 0 0 1.5rem;
    font-size: 18px;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .nav .nav-list li:nth-child(5) {
    border-bottom: none;
  }
  .nav .nav-list li:nth-child(6) {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 1.1rem;
  }
  .nav .nav-list li:nth-child(7) {
    border-bottom: none;
  }
  .nav .nav-list li .sp {
    display: inline;
    font-weight: bold;
  }
  .nav .nav-list li i {
    margin-right: 1rem;
  }
  .nav .nav-list li.line-top {
    border-top: 2px solid #193764;
    padding-top: 1.5rem;
  }
  .nav .nav-list li.line-top label {
    font-weight: bold;
  }
  .nav .nav-list li a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) and (max-width: 1000px) {
  .nav .nav-list li a {
    font-weight: normal;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1000px) {
  .nav .nav-list li a.spBtn {
    width: 166px;
    height: 52px;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 5rem auto 0;
  }
}
@media screen and (max-width: 767px) {
  button {
    border-color: transparent;
    background: transparent;
    cursor: pointer;
  }
}
.fixed_btn_bottom {
  display: none;
}
@media screen and (max-width: 1000px) {
  .fixed_btn_bottom {
    position: fixed;
    bottom: -100px; /* 最初は隠しておく（下にずらす） */
    left: 0;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    padding-bottom: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: bottom 0.3s ease;
    transition: bottom 0.3s ease; /* スムーズなアニメーション */
    z-index: 1000;
    gap: 5px;
  }
  .fixed_btn_bottom.show {
    bottom: 0;
  }
  .fixed_btn_bottom .detail {
    width: 100%;
    color: #fff;
    background: #5e5e5e;
    text-align: center;
    padding: 5px 0;
    font-weight: bold;
  }
  .fixed_btn_bottom .btn {
    width: 48%;
    font-size: 0.9rem;
    border: 2px dotted #fff;
  }
  .fixed_btn_bottom .btn.line {
    background: #4DC764;
  }
  .fixed_btn_bottom .btn.mail {
    background: #193764;
  }
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 70px 0 24px;
}
@media screen and (max-width: 1000px) {
  footer .logo {
    margin: 0 auto;
    width: 70%;
  }
}
footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px;
  margin: 24px 0;
}
@media screen and (max-width: 1000px) {
  footer ul {
    gap: 24px;
  }
}
footer small {
  font-size: 0.8rem;
}

/* fix btn */
.fix_btn {
  width: 12px;
  position: sticky;
  bottom: 6rem;
  right: 2.2rem;
  display: block;
  margin-left: auto;
}
.fix_btn img {
  width: 100%;
}

/* 404 */
#p-404 {
  padding-top: 3rem;
}
#p-404 .content {
  text-align: center;
}
#p-404 .content h1 {
  font-family: "futura-b";
  font-size: 2rem;
  margin-bottom: 1rem;
}
#p-404 .content h1 span {
  font-size: 8rem;
  line-height: 1;
  display: inline-block;
}
#p-404 .content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
#p-404 .content a {
  font-size: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 244px;
  height: 48px;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 4px;
  margin: auto;
}
#p-404 .content a:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}

/* frontpage */
main .sectionWrap {
  margin-bottom: 5.5rem;
}
main .sectionWrap:last-child {
  margin-bottom: 0;
  padding-bottom: 10rem;
}
@media screen and (max-width: 1000px) {
  main .sectionWrap:last-child {
    padding-bottom: 2rem;
  }
}
main .sectionWrap .content {
  max-width: 1156px;
  width: 90%;
  margin: 0 auto;
}
main .sectionWrap .content h2 {
  font-family: "futura-b";
  font-size: 6rem;
  margin-bottom: 5rem;
  border-bottom: 3px solid #000;
}
@media screen and (max-width: 1000px) {
  main .sectionWrap .content h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
}
main .sectionWrap .content h2 small {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  margin-left: 2rem;
}
main #fv {
  padding: 0;
  max-width: 1120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 570px;
  margin: 0 auto 4rem;
}
@media screen and (max-width: 1000px) {
  main #fv {
    width: 90%;
    padding: 5%;
    display: block;
    height: auto;
  }
}
@media screen and (max-width: 1000px) {
  main #fv .content {
    padding-top: 50px;
  }
}
main #fv .content .fv__copy {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}
main #fv .content .fv__tit {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1000px) {
  main #fv .content .fv__tit {
    font-size: 2rem;
  }
}
main #fv .content .fv__text {
  line-height: 1.6;
}
@media screen and (max-width: 1000px) {
  main #fv .content .fv__text {
    margin-top: 1.5rem;
    line-height: 2;
  }
}
main #fv .content .fv__text span {
  -webkit-text-emphasis: filled;
          text-emphasis: filled;
}
main #fv .center {
  display: none;
}
@media screen and (max-width: 1000px) {
  main #fv .center {
    display: block;
  }
  main #fv .center.slick-slider {
    width: 110%;
    margin-left: -5%;
  }
  main #fv .center img {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    opacity: 0.4;
  }
  main #fv .center .slick-active img {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1 !important;
  }
  main #fv .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 11px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1.1rem;
  }
  main #fv .slick-dots li {
    background: #D9D9D9;
    width: 4px;
    height: 4px;
    border-radius: 2px;
  }
  main #fv .slick-dots li button {
    display: none;
  }
  main #fv .slick-dots li.slick-active {
    background: #000;
  }
}
main #fv .slider {
  height: 100%;
  width: 400px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  main #fv .slider {
    display: none;
  }
}
main #fv .slider::after {
  content: "";
  display: block;
  height: 30px;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(22%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 22%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  bottom: 7vh;
  left: 0;
}
main #fv .slider img {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  opacity: 0.4;
  max-width: 400px;
  width: 90% !important;
  margin-left: auto;
}
main #fv .slider .is-center img {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1 !important;
}
main #fv .slider .slick-list {
  height: 100% !important;
  overflow: hidden;
  -webkit-transform: translateY(-7vh);
          transform: translateY(-7vh);
}
main #fv .slider .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main .lineBtn {
  max-width: 412px;
  width: 90%;
  margin: 3.8rem auto 6rem;
}
@media screen and (max-width: 1000px) {
  main .lineBtn {
    margin: 3rem auto 3rem;
  }
}
main .lineBtn a img {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-animation: katakata 5s infinite ease-in-out alternate;
          animation: katakata 5s infinite ease-in-out alternate;
}
@-webkit-keyframes katakata {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  22% {
    -webkit-transform: translate(0, 0) rotate(-3deg);
            transform: translate(0, 0) rotate(-3deg);
  }
  23% {
    -webkit-transform: translate(0, -1px) rotate(0deg);
            transform: translate(0, -1px) rotate(0deg);
  }
  24% {
    -webkit-transform: translate(0, -1px) rotate(3deg);
            transform: translate(0, -1px) rotate(3deg);
  }
  25% {
    -webkit-transform: translate(1px, 0) rotate(-2deg);
            transform: translate(1px, 0) rotate(-2deg);
  }
  26% {
    -webkit-transform: translate(0, 1px) rotate(0deg);
            transform: translate(0, 1px) rotate(0deg);
  }
  27% {
    -webkit-transform: translate(0, 0) rotate(3deg);
            transform: translate(0, 0) rotate(3deg);
  }
  28% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes katakata {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  22% {
    -webkit-transform: translate(0, 0) rotate(-3deg);
            transform: translate(0, 0) rotate(-3deg);
  }
  23% {
    -webkit-transform: translate(0, -1px) rotate(0deg);
            transform: translate(0, -1px) rotate(0deg);
  }
  24% {
    -webkit-transform: translate(0, -1px) rotate(3deg);
            transform: translate(0, -1px) rotate(3deg);
  }
  25% {
    -webkit-transform: translate(1px, 0) rotate(-2deg);
            transform: translate(1px, 0) rotate(-2deg);
  }
  26% {
    -webkit-transform: translate(0, 1px) rotate(0deg);
            transform: translate(0, 1px) rotate(0deg);
  }
  27% {
    -webkit-transform: translate(0, 0) rotate(3deg);
            transform: translate(0, 0) rotate(3deg);
  }
  28% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
main #news .content {
  border: 1px solid #000;
  padding: 2rem 2rem 1rem;
  max-width: 824px;
  border-radius: 6px;
}
@media screen and (max-width: 1000px) {
  main #news .content {
    width: calc(90% - 4rem);
  }
}
main #news .content h2 {
  border-bottom: none;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1.2rem;
}
main #news .content .newsList {
  max-width: 626px;
  margin: 0 auto;
}
main #news .content .newsList li {
  border-bottom: 1px solid #000;
  padding-top: 1.5rem;
}
main #news .content .newsList li:hover {
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
main #news .content .newsList li:hover a {
  color: #fff;
}
main #news .content .newsList li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding: 8px;
  text-decoration: none;
}
main #news .content .newsList li a .new {
  width: 83px;
  font-family: "futura-r";
}
main #news .content .newsList li a .tit {
  font-weight: bold;
}
main #news .content .newsList li a .date {
  color: #808080;
  margin-left: auto;
}
main #news .content .more {
  text-align: right;
  color: #808080;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 1.5rem;
}
main #about .aboutContent {
  max-width: 960px;
  margin: 0 auto 5rem;
  padding: 0 0 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  border-bottom: 1px solid #000;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}
@media screen and (max-width: 1000px) {
  main #about .aboutContent {
    display: block;
    padding-bottom: 0;
    margin-bottom: 3rem;
  }
}
main #about .aboutContent:nth-child(3) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
}
main #about .aboutContent:last-child {
  border-bottom: none;
}
main #about .aboutContent .aboutContent__img {
  width: 448px;
}
@media screen and (max-width: 1000px) {
  main #about .aboutContent .aboutContent__img {
    width: 100%;
  }
}
main #about .aboutContent .aboutContent__img img {
  width: 100%;
}
main #about .aboutContent .aboutContent__detail {
  width: calc(100% - 488px);
}
@media screen and (max-width: 1000px) {
  main #about .aboutContent .aboutContent__detail {
    width: 100%;
  }
}
main #about .aboutContent .aboutContent__detail p {
  color: #838383;
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 1rem;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  main #about .aboutContent .aboutContent__detail p {
    margin-top: 1rem;
  }
}
main #about .aboutContent .aboutContent__detail p span {
  font-size: 2rem;
}
main #about .aboutContent .aboutContent__detail dl {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1000px) {
  main #about .aboutContent .aboutContent__detail dl {
    margin-bottom: 3rem;
  }
}
main #about .aboutContent .aboutContent__detail dl dt {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
main #about .aboutContent .aboutContent__detail dl dd {
  line-height: 2;
}
main #about .aboutContent .aboutContent__detail dl dd ul li {
  list-style: decimal inside;
}
main #about .aboutContent .aboutContent__detail .aboutContent__detailBlock .aboutContent__detailBlock--comment {
  font-size: 0.8rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0.5rem;
}
main #about .aboutContent .aboutContent__detail .aboutContent__detailBlock .aboutContent__detailBlock--comment::before {
  content: url(../img/line_L.png);
}
main #about .aboutContent .aboutContent__detail .aboutContent__detailBlock .aboutContent__detailBlock--comment::after {
  content: url(../img/line_R.png);
}
main #about .aboutContent .aboutContent__detail .aboutContent__detailBlock a {
  background: #323232;
  color: #fff;
  border-radius: 4px;
  width: 342px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
}
main #about .aboutContent .aboutContent__detail .aboutContent__detailBlock a:hover {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
main #brand .brandContent {
  max-width: 1156px;
  margin: 0 auto;
}
main #brand .brandContent h3 {
  font-weight: bold;
  margin-bottom: 3rem;
  font-size: 1.5rem;
}
main #brand .brandContent .brandContent__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
main #brand .brandContent .brandContent__list li {
  max-width: 280px;
  width: calc(25% - 14px);
  border: 1px solid #D8D8D8;
  border-radius: 4px;
}
@media screen and (max-width: 1000px) {
  main #brand .brandContent .brandContent__list li {
    width: calc(50% - 16px);
    max-width: 100%;
  }
}
main #brand .brandContent .brandContent__list li dl {
  padding: 12px 16px;
}
main #brand .brandContent .brandContent__list li dl dt {
  color: #000;
  font-family: "futura-b";
}
main #brand .brandContent .brandContent__list li dl dd {
  color: #767676;
}
main #brand .brandContent .note {
  text-align: right;
  font-size: 0.8rem;
  margin-top: 1rem;
}
main #access .accessContent {
  max-width: 900px;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 54px;
}
@media screen and (max-width: 1000px) {
  main #access .accessContent {
    display: block;
  }
}
main #access .accessContent .accessContent__img {
  width: 100%;
  height: 342px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1000px) {
  main #access .accessContent .accessContent__img {
    width: 100%;
    height: 300px;
    margin-bottom: 1rem;
  }
}
main #access .accessContent .accessContent__img iframe {
  width: 100%;
  height: 100%;
}
main #access .accessContent .accessContent__detail h3 {
  font-weight: bold;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
main #access .accessContent .accessContent__detail dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1000px) {
  main #access .accessContent .accessContent__detail dl {
    display: block;
  }
}
main #access .accessContent .accessContent__detail dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  border: 1px #000 solid;
  height: 30px;
  width: 78px;
  font-size: 0.8rem;
}
@media screen and (max-width: 1000px) {
  main #access .accessContent .accessContent__detail dl dt {
    position: relative;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 1000px) {
  main #access .accessContent .accessContent__detail dl dt img {
    position: absolute;
    top: 4px;
    right: -30px;
    cursor: pointer;
  }
}
main #access .accessContent .accessContent__detail dl dd {
  line-height: 1.6;
}
@media screen and (max-width: 1000px) {
  main #access .accessContent .accessContent__detail dl dd.sp {
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  main #access .accessContent .accessContent__detail dl dd.sp-hidden {
    opacity: 0;
    visibility: hidden;
  }
}
main #access .accessContent .accessContent__detail dl dd img {
  display: block;
  margin-top: 0.5rem;
}
@media screen and (max-width: 1000px) {
  main #access .accessContent .accessContent__detail dl dd ul {
    position: relative;
    background: #D9D9D9;
    border-radius: 8px;
    padding: 24px 10px;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  main #access .accessContent .accessContent__detail dl dd ul::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 98px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #D9D9D9;
  }
}
main #access .accessContent .accessContent__detail dl dd ul li {
  margin-bottom: 0.7rem;
}
main #access .accessContent .accessContent__detail dl dd ul li:last-child {
  margin-bottom: 0;
}
main #access .accessContent .accessContent__detail dl dd ul li .tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
main #access .accessContent .accessContent__detail dl dd ul li .tag::before {
  content: url(../img/tag_ico.svg);
}
main #insta .instaContent {
  max-width: 980px;
  margin: 0 auto;
}
main #insta .instaContent .instaContent__list {
  margin-top: 2.5rem;
}
@media screen and (max-width: 1000px) {
  main #insta .instaContent .instaContent__list {
    overflow-x: scroll;
  }
}
@media screen and (max-width: 1000px) {
  main #insta .instaContent .instaContent__list .FeedLayout__wrapper {
    width: 980px;
  }
}
main #insta .instaContent a {
  font-size: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 244px;
  height: 48px;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 4px;
  margin-left: auto;
}
main #insta .instaContent a::after {
  content: url(../img/other_ico.svg);
  margin-left: 0.5rem;
}
@media screen and (max-width: 1000px) {
  main #insta .instaContent a {
    margin: 0;
  }
}
main #insta .instaContent a:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}
main #joins .joinsContent {
  max-width: 980px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  main #joins .joinsContent {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
    gap: 2rem;
  }
}
main #joins .joinsContent .joinsContent__detail h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
main #joins .joinsContent .joinsContent__detail p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
main #joins .joinsContent .joinsContent__detail a {
  font-size: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 279px;
  height: 48px;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 4px;
}
@media screen and (max-width: 1000px) {
  main #joins .joinsContent .joinsContent__detail a {
    margin: 0 auto;
  }
}
main #joins .joinsContent .joinsContent__detail a:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}
main #joins .joinsContent .joinsContent__img {
  width: 411px;
}
@media screen and (max-width: 1000px) {
  main #joins .joinsContent .joinsContent__img {
    width: 80%;
    margin: 0 auto;
  }
}
main #joins .joinsContent .joinsContent__img img {
  width: 100%;
}
main #newsArc .newsContent {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 182px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1000px) {
  main #newsArc .newsContent {
    gap: 1rem;
  }
}
main #newsArc .newsContent .newsContentCat {
  width: 168px;
  position: sticky;
  top: 90px;
  left: 0;
}
main #newsArc .newsContent .newsContentCat li {
  margin-bottom: 45px;
  cursor: pointer;
}
main #newsArc .newsContent .newsContentCat li.active {
  border-bottom: 1px solid #000;
}
main #newsArc .newsContent .newsContentCat li.active a {
  color: #000;
}
main #newsArc .newsContent .newsContentCat li a {
  text-decoration: none;
  font-size: 1.5rem;
  color: #8F8F8F;
}
main #newsArc .newsContent .newsContentBlock .newsContentBlock__article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  position: relative;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media screen and (max-width: 1000px) {
  main #newsArc .newsContent .newsContentBlock .newsContentBlock__article {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
main #newsArc .newsContent .newsContentBlock .newsContentBlock__article.show {
  opacity: 1;
  visibility: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* flex はもとのレイアウトに合わせて */
}
main #newsArc .newsContent .newsContentBlock .newsContentBlock__article .newsContentBlock__article--link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
main #newsArc .newsContent .newsContentBlock .newsContentBlock__article .newsContentBlock__article--link:hover {
  background: rgba(255, 255, 255, 0.7);
}
main #newsArc .newsContent .newsContentBlock .newsContentBlock__article .newsContentBlock__article--detail {
  width: calc(100% - 277px);
}
@media screen and (max-width: 1000px) {
  main #newsArc .newsContent .newsContentBlock .newsContentBlock__article .newsContentBlock__article--detail {
    width: 100%;
  }
}
main #newsArc .newsContent .newsContentBlock .newsContentBlock__article .newsContentBlock__article--detail .tit {
  display: inline-block;
  border-radius: 30px;
  border: 1px solid #000;
  font-weight: 600;
  padding: 4px 16px;
  margin-bottom: 14px;
}
main #newsArc .newsContent .newsContentBlock .newsContentBlock__article .newsContentBlock__article--detail dl dt {
  margin-bottom: 14px;
  font-size: 1.3rem;
  font-weight: 600;
}
main #newsArc .newsContent .newsContentBlock .newsContentBlock__article .newsContentBlock__article--detail dl dd {
  margin-bottom: 14px;
  font-size: 0.9rem;
}
main #newsArc .newsContent .newsContentBlock .newsContentBlock__article .newsContentBlock__article--detail .date {
  color: #808080;
}
main #newsArc .newsContent .newsContentBlock .newsContentBlock__article .newsContentBlock__thum {
  width: 277px;
  height: 190px;
}
@media screen and (max-width: 1000px) {
  main #newsArc .newsContent .newsContentBlock .newsContentBlock__article .newsContentBlock__thum {
    width: 100%;
    height: 100px;
  }
}
main #newsArc .newsContent .newsContentBlock .newsContentBlock__article .newsContentBlock__thum img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1000px) {
  html {
    line-height: 1.5;
    margin: 0;
    padding: 0;
  }
  body {
    color: #333;
    font-weight: 200;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: initial;
    font-size: 0.8rem;
  }
  .pc {
    display: none;
  }
  .sp {
    display: inherit;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}