@charset "UTF-8";

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

header, footer, nav, menu, article, aside, section, details, figcaption, figure{
  display: block;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
}
a {
  text-decoration:none;
}
a img {
  border: none;
}
strong {
  font-weight: normal;
}
i{
  font-style: normal;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.7);
  font-family: "Noto Sans JP", sans-serif;
  /*font-size: 1rem;*/
  font-weight: 350;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0;
  text-align: left;
  box-sizing: border-box;
  font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
body {
	min-width: 320px;
	width:100%;
}
}

hr {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  margin-top: 0;
  font-weight: inherit;
}

p {
  margin-bottom: 1rem;
  margin-top: 0;
}

img {
  width: 100%;
  height: auto;
  border-style: none;
  vertical-align: middle;
}

.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}

/*====================================================================
siteHeader
====================================================================*/
.siteHeader {
  width: 100%;
  min-width: 100rem;
  margin: 0 0 8rem;
  padding: 0;
  background: #f2f2f2;
}

.siteHeader__inner {
  display: flex;
  justify-content: space-between;
  width: 115rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem 0;
  background: #f2f2f2;
}

.siteHeader__logo {
  margin: 1rem 2rem 0 1rem;
  width: 28rem;
  /*flex-shrink: 0;*/
}

.siteHeader__logo img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .siteHeader {
    min-width: 100%;
    margin: 0 auto 5vw;
  }
  
  .siteHeader__inner {
    width: 100%;
  }
  
  .siteHeader__logo {
    margin: 0 0 0 3vw;
    width: 38vw;
  }
}

@media screen and (max-width: 500px) {
  .siteHeader__logo {
    margin: 1vw 0 1vw 3vw;
    width: 45vw;
  }
}

.hamburger {
  display: none;
  width: 70px;
  height: 50px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  z-index: 1000;
  margin-top: 0.2vw;
}

.hamburger .bar {
  width: 40px;
  height: 3px;
  background: #000;
  border-radius: 2px;
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: 1000;
}

.hamburger .bar-top {
  transform: translate(0, -12px);
}

.hamburger .bar-bottom {
  transform: translate(0, 12px);
}

.checkbox:checked ~ .hamburger .bar-middle {
  opacity: 0;
}

.checkbox:checked ~ .hamburger .bar-top {
  transform: translate(0, 0) rotate(45deg);
}

.checkbox:checked ~ .hamburger .bar-bottom {
  transform: translate(0, 0) rotate(-45deg);
}

.checkbox:checked ~ .hamburger {
    position: fixed;
    right: 0;
}

.checkbox {
  display: none;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
    height: 30px;
  }
}

.nav-menu {
  margin:0 1rem 0 0;
  width: 730px;
}

.nav-menu ul {
  display: flex;
  padding: 5px 0;
}

li {
  /*flex-grow: 1;*/
}

li a {
  color: #000;
}

.nav-menu a {
  text-align: center;
  font-size: 16px;
}

.checkbox:checked ~ .nav-menu {
  top: 0;
  right: 0;
}

.nav-menu__row {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-menu__line {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.nav-menu__line li {
  min-width: 170px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    width: 280px;
    height: 100%;
    margin:0;
    background: #e7e7e7;
    opacity: 0.97;
    color: #fff;
    top: 0;
    right: -150%;
    transition: all 0.5s;
    z-index: 999;
  }
  
  .nav-menu ul {
    margin-top: 80px;
    display: block;
  }
  
  .nav-menu ul:last-child {
    margin-top: -5px;
  }
  
  .nav-menu li {
    margin-bottom: 30px;
  }
  
  .nav-menu__row {
    flex-direction: column;
  }

  .nav-menu__line {
    flex-direction: column;
    gap: 0px;
  }

  .nav-menu__line li {
    min-width: auto;
    text-align: left;
    padding-left: 8vw;
  }
}

/*====================================================================
siteFooter
====================================================================*/
footer {
  margin: 0;
  width: 100%;
  min-width: 100rem;
  box-sizing: border-box;
}

.footer__link {
  display: flex;
  justify-content: space-between;
  width: 100rem;
  margin: 0 auto 4rem;
}

.footer__link__main {
  padding-top: 1rem;
  width: 48rem;
  font-size: 35px;
  letter-spacing: 0.08em;
}

.footer__link__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 46rem;
}

.footer__link ul {
  margin:  0;
  font-size: 23px;
  letter-spacing: 0.05em;
}

.footer__link__main a, .footer__link ul a{
  color: #595757;
}

.insta__figure {
  width: 6rem;
}

@media screen and (max-width: 768px) {
  footer {
    min-width: 100%;
  }
  
  .footer__link {
    display: block;
    width: 85vw;
    margin: 0 auto 4vw;
  }
  
  .footer__link__main {
    padding-top: 1vw;
    width: 85vw;
    font-size: 23px;
    letter-spacing: 0.08em;
  }
  
  .footer__link__list {
    width: 85vw;
  }
  
  .footer__link ul {
    width: 70vw;
    padding: 2vw 0 0;
    font-size: 15px;
  }
  
  .footer__link ul li{
  }
  
  .insta__figure {
    width: 9vw;
  }
}

.copyright {
  width: 100%;
  margin: 0;
  padding: 0.5rem 0;
  background-color: #666;
}

.copyright p {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 12px;
}

@media screen and (max-width: 500px) {
  .copyright p {
    font-size: 10px;
  }
}

/*====================================================================
COMMON LAYOUT
====================================================================*/
html {
  font-size: 62.5%;
}

@media screen and (max-width: 768px) {
  html {
    font-size: -webkit-calc(10vw / 3.75);
    font-size: -moz-calc(10vw / 3.75);
    font-size: calc(10vw / 3.75);
  }
}

body {
  -webkit-font-feature-settings: 'palt' 1;
     -moz-font-feature-settings: 'palt' 1;
          font-feature-settings: 'palt' 1;
  -webkit-print-color-adjust: exact;
}

/*-----------------------------------------------
PC/SP
------------------------------------------------*/
.u-pcDb {
  display: block;
}

.u-pcDib {
  display: inline-block;
}

.u-pcDin {
  display: inline;
}

.u-pcDf {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.u-pcDt {
  display: table;
}

.u-pcDtc {
  display: table-cell;
}

.u-spDb,
.u-spDib,
.u-spDin,
.u-spDf,
.u-spDt,
.u-spDtc {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-pcDb,
  .u-pcDib,
  .u-pcDin,
  .u-pcDf,
  .u-pcDt,
  .u-pcDtc {
    display: none;
  }
  .u-spDb {
    display: block;
  }
  .u-spDib {
    display: inline-block;
  }
  .u-spDin {
    display: inline;
  }
  .u-spDf {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-spDt {
    display: table;
  }
  .u-spDtc {
    display: table-cell;
  }
}

#sliderImage {
  width: 100%;
  height: auto;
}

/*-----------------------------------------------
main
------------------------------------------------*/
.siteContent {
  margin: 0 auto;
  width: 100%;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .siteContent {
    width: 100%;
  }
}

.topPage {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .topPage {
   width: 100%;
  }
}

.backToTop {
  position: fixed;
  max-width: 7.7rem;
  z-index: 10;
  bottom: 2rem;
  right: 2rem;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -o-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}

@media screen and (min-width: 769px) {
  .backToTop:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 768px) {
  .backToTop {
    right: 3.3613445378vw;
    bottom: 3.3613445378vw;
    max-width: 12.9411764706vw;
  }
}

.u-shine {
  position: relative;
  overflow: hidden;
}

.u-shine2 {
  position: relative;
  overflow: hidden;
  border-radius: 7rem;
}

.u-shine::after, .u-shine2::after {
  content: '';
  width: 50%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  top: -50%;
  -webkit-transform: skew(50deg);
     -moz-transform: skew(50deg);
      -ms-transform: skew(50deg);
       -o-transform: skew(50deg);
          transform: skew(50deg);
  -webkit-animation: shine1 4s infinite;
     -moz-animation: shine1 4s infinite;
       -o-animation: shine1 4s infinite;
          animation: shine1 4s infinite;
  -webkit-animation-timing-function: ease-in-out;
     -moz-animation-timing-function: ease-in-out;
       -o-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.square {
  width: 100%;
  max-width: 22px;
  aspect-ratio: 1 / 1;
  background-color: #e60020;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .square {
    max-width: 3.0vw;
  }
}

.more__button {
  display: block;
  width: 100%;
}

.more__button a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: top;
  line-height: 1.6;
  width: 19rem;
  aspect-ratio: 4.8 / 1;
  border: 1px solid #999999;
  border-radius: 50px;
  color: #808080;
  background: #FFF;
  font-size: 20px;
  letter-spacing: 0.05em;
}

.more__button a::before {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 17px;
  height: 1px;
  margin-top: 0px;
  background-color: #808080;
  content: "";
  transition: 0.5s;
}
.more__button a::after {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-top: 1px solid #808080;
  border-right: 1px solid #808080;
  content: "";
  display: inline-block;
  vertical-align: middle;
  transition: 0.5s;
}

.more__button:hover a::before {
  right: 8px;
  transition: 0.3s;
}

.more__button:hover a::after {
  right: 9px;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .more__button a {
    width: 37vw;
    font-size: clamp(14px, 3.3vw, 30px);
    line-height: 2.0;
  }
  
  .more__button a::before {
    right: 2vw;
    width: 13px;
    height: 1px;
  }
  
  .more__button a::after {
    right: 2.3vw;
    width: 9px;
    height: 9px;
    margin-top: -4px;
  }
  
  .more__button:hover a::before {
    right: 2vw;
  }

  .more__button:hover a::after {
    right: 2.3vw;
  }
}

@media screen and (max-width: 400px) {
  .more__button a {
    line-height: 1.8;
  }
}

/*====================================================================
下層ページ　共通
====================================================================*/
.secHead__ttl {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 100rem;
  width: 100%;
  height: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.secHead__ttl h1 {
  position: absolute;
  font-size: 66px;
  letter-spacing: 0.15em;
}

.container {
  margin: 0 auto;
  width: 100rem;
}

.container h2 {
  margin: 70px 0 0;
  color: #e60020;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 65px;
}

.container__inner {
  margin: 0 auto;
  width: 100rem;
  padding: 0 10px;
}

@media screen and (max-width: 768px) {
  .secHead__ttl {
    min-width: 100%;
    width: 100%;
    height: 26.041vw;
  }
  
  .secHead__ttl h1 {
    font-size: 5.3vw;
  }
  
  .container {
    width: 90vw;
  }
  
  .container h2 {
    margin: 3.8vw 0;
    font-size: 5.5vw;
  }
  .container__inner {
    width: 88vw;
    padding: 0;
  }
}


.fs_16 {font-size: 16px;}
.fs_12 {font-size: 12px;}


.anchor_link {
  display: block;
  position: relative;
  top: -7.5rem;
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  .anchor_link {
    top: -12.5vw;
  }
}

.dropshadow {
  -webkit-filter:drop-shadow(3px 5px 5px rgba(0, 0, 0, 0.6));
  -moz-filter:drop-shadow(3px 5px 5px rgba(0, 0, 0, 0.6));
  -ms-filter:drop-shadow(3px 5px 5px rgba(0, 0, 0, 0.6));
  filter:drop-shadow(3px 3px 5px rgba(0, 0, 0, 1.0));
}

.slideBox { position:relative; width: 100%; }

.swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  margin: 1rem 10px !important;
  background-color: #000000;
}

@media screen and (max-width: 767px) {
  .swiper-pagination .swiper-pagination-bullet {
	  width: 7px;
	  height: 7px;
	  margin: 0 5px !important;
	}
.swiper-button-next::after, .swiper-button-prev::after {
	  font-size: 2rem;
	  color: #000;
	}
}

button {
    border: none;
    background: none
}
button:focus {
    outline: none
}

.parent-element {
  overflow: visible;  /* 親要素が隠されないようにする */
}

/*====================================================================
PRINT LAYOUT
====================================================================*/
@page {
  size: A4 portrait;
  /* 横の場合はlandscape */
  margin: 0mm;
}

@media print {
  body {
    -webkit-print-color-adjust: exact;
    word-break: break-all !important;
  }
  .u-printPages__next {
    size: A4 landscape;
    page-break-before: always;
  }
  .u-printPages__box {
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
  }
}

