@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  font-family: "Unbounded", "M PLUS 1", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #3d3d3d;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  position: relative;

}

.bz_box {
  content: "";
  display: block;
  background-image: url(../img/bg-yellow.png);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* filter: saturate(0); */
  z-index: -1;

}

.bz_box.show {
  filter: saturate(0);

}

/* .wrapper {
} */

/* ================================================================== */
header {
    border-bottom: 3px solid #fff;
}

header .header-inner {
    max-width: 1000px;
}


/* -----
   main
   ----- */

main .slick-fv {
  height: 100vh;
}


main .g-in-nav {
  font-size: 58px;
  margin: 100px 0;
}

main .g-in-nav ul {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 80px;
  background-color: #fff;
}

main .g-in-nav li a:hover {
  color: #155882;
  border-bottom: 3px solid #155882;
  transition: .2s;
}

main .g-in-nav li {
  margin-bottom: 60px;
}

main .g-in-nav li:last-child {
  margin-bottom: 0;
}

/* scrollbtn */
.scrollbtn{
  display: none;
  position: fixed;
  right:30px;
  bottom: 30px;
}


/* ------
   gallery
   ------- */

#gallery {
  padding: 100px 0;
}

.Portrait img {
  max-width: 200px;
}

.gallery-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.content h2 {
  font-size: 64px;
  text-align: center;
  margin-bottom: 100px;
}


.content_area {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
}

.tab-container {
  display: flex;
  flex-wrap: wrap;
  font-size: 24px;
  margin-bottom: 100px;
}

.tab {
  font-weight: 500;
  text-align: center;
  width: calc(100% / 3);
  padding: 10px;
  background-color: #f8f8f8;
  cursor: pointer;
}

.tab.active {
  background-color: lightblue;
}

.open-content {
  background-color: #fff;
  padding: 50px 40px;
  margin-bottom: 100px;
}

/* 消さない */
.content {
  display: none;
}

.content.show {
  display: block;
}

/* 消さない */
/* ======================================== */

.Portrait {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gap: 140px 130px; */
  text-align: center;
  align-items: center;
  margin-bottom: 130px;
}

.Portrait li {
  margin-bottom: 100px;
}

.Portrait li:nth-child(13),
.Portrait li:nth-child(14),
.Portrait li:nth-child(15) {
  margin-bottom: 0;
}

.Portrait img {
  max-width: 200px;
}


/*===============================================
   Bust up
  =============================================== */
.bustup {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

}

.bustup li {
  max-width: 400px;
  margin-bottom: 80px;
  text-align: center;
}
.bustup li img {
  width: 100%;
}





/* -------
   +background
   -------- */
.plus-background {
  display: grid;
  grid-template-columns: repeat(2,1fr);
}

.plus-background li {
  max-width: 400px;
  margin-bottom: 80px;
}


.plus-background li img {
  width: 100%;
  margin-bottom: 80px;
}

.square {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  align-items: center;
  margin-bottom: 80px;
}

.square li {
  max-width: 300px;
}

.square li img {
  width: 100%;
}

/* ===================================== */
.guid {
  margin: 160px 40px 100px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(1.125rem, 0.6964rem + 0.8929vw, 1.5rem);
}

.guid a:hover {
  transition: 0.5s ;
  transform:scale(1.1)
}

.guid-left,
.guid-center,
.guid-right {
  flex: 1;
  width: 100%;
  text-align: center;

}

.guid-left {
  background-image: url(../img/g-arrow-l.svg);
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center left 10px;
}

.guid-right {
  background-image: url(../img/g-arrow-r.svg);
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center right 10px;  
}


/*==========================================*/

.to-price-btn {
  display: flex;
  justify-content: center;
}

.to-price-btn  a{
  text-align: center;
  max-width: 600px;
  border: 2px solid #155882;
  border-radius: 50px;
  padding: 25px 100px;
  font-size: 24px;
  color: #155882;
  font-weight: bold;

  position: relative;
  overflow: hidden;
}

.to-price-btn a:hover {
  color: #fff;
  transition:.5s ;
}

.to-price-btn a::before {
  display: block;
  content: '';
  position: absolute;
  inset: 0;
  background-color: #155882;
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;  
}

.to-price-btn a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.u-768guid {
  display: none;
}


/* -----
    footer
    ------ */
footer {
  max-width: 1000px;
  margin: 0 auto;
  background-image: url(../img/footer-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  min-height: 260px;
  color: #fff;
  font-weight: 400;
}


/* Image style */
#scrollUp {
    background-image: url("../img/top.png");
    bottom: 20px;
    right: 20px;
    width: 38px;    /* Width of image */
    height: 38px;   /* Height of image */
}

/* Gallery内ナビ */
  .u-1000 {
    display: none;
}

@media screen and (max-width:1000px){
  .u-1000 {
    display: block;
}
}


@media screen and (max-width:768px){
main .g-in-nav {
  font-size: clamp(2rem, 1.185rem + 3.261vw, 2.75rem);
  margin: 20px 0;
}

main .g-in-nav ul {
  max-width: 700px;
  padding: 40px 0;
}

.tab-container {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(1rem, 0.728rem + 1.087vw, 1.25rem);
  margin-bottom: 80px;
}

.tab {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content_area {
  max-width: 700px;
}

.content h2 {
  font-size: clamp(1.625rem, -0.9565rem + 10.3261vw, 4rem);
}


.Portrait {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

.Portrait li {
  margin-bottom: 20px;
}

.to-price-btn {
  font-size: 20px;
  max-width: 400px;

}

.guid {
  gap:0;
  font-size: clamp(0.875rem, 0.6033rem + 1.087vw, 1.125rem);
  margin: 100px 0;
}

.guid-left,
.guid-center,
.guid-right {
  border-radius: 5px;
  background-image:none;
}

.to-price-btn {
  margin: 0 auto;
}

.to-price-btn  a{
  max-width: 400px;
  padding: 20px 100px;
  font-size: 18px;
}

.u-768guid {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
}

.u-768guid img {
  max-width: 20px;
}


.guid {
  display: none;
}

}

@media screen and (max-width:400px) {
main .g-in-nav {
  font-size: 24px;
  margin: 20px 0;
}

main .g-in-nav ul {
  max-width: 400px;
  padding: 40px 0;
}

.tab-container {
  max-width: 400px;
  margin: 0 auto;
  font-size: 12px;
  margin-bottom: 40px;
}

.content_area {
  max-width: 400px;
}

.content h2 {
  font-size: 26px;
}


.Portrait {
  grid-template-columns: repeat(1, 1fr);
  justify-content: center;
}

.Portrait li {
  margin-bottom: 40px;
}

.to-price-btn  a{
  width: 100%;
  padding: 16px 80px;
  font-size: 16px;
}


}