@charset "UTF-8";
/* RESET */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var,
optgroup {
  font-style: inherit;
  font-weight: inherit;
}

del,
ins {
  text-decoration: none;
}

li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

legend {
  color: #000;
}

input,
button,
textarea,
select,
optgroup,
option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

input,
button,
textarea,
select {
  *font-size: 100%;
}

/* RESET HTML5 */
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*---------------------------------------------
POPUP
---------------------------------------------*/
.mfp-wrap {
  user-select: none;
}

.mfp-bg {
  transition: all 0.3s ease-out;
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  background-color: #fff;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.98;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-figure:after {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mfp-figure.show:after {
  opacity: 1;
}

.mfp-img {
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mfp-img.show {
  opacity: 1;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  right: 20px;
  top: 20px;
  color: #000;
}

.mfp-arrow-left:before {
  display: none;
}

.mfp-arrow-left:after {
  display: none;
}

.mfp-arrow-right:before {
  display: none;
}

.mfp-arrow-right:after {
  display: none;
}

button.mfp-arrow-left {
  background-image: url("../images/arr_left.png");
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: left 25px center;
}

button.mfp-arrow-right {
  background-image: url("../images/arr_right.png");
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: right 25px center;
}

.slick-dots {
  bottom: -35px;
}
.slick-dots li {
  width: 7px;
}
.slick-dots li button {
  width: 7px;
}
.slick-dots li button:before {
  width: 7px;
}

/*---------------------------------------------
MOTION
---------------------------------------------*/
.fadeSimple {
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}
.fadeSimple.active {
  opacity: 1;
}

.fade {
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  position: relative;
  top: 20px;
}
.fade.active {
  opacity: 1;
  top: 0;
}

.fadeLeft {
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  position: relative;
  left: -20px;
}
.fadeLeft.active {
  opacity: 1;
  left: 0;
}

.fadeRight {
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  position: relative;
  right: -20px;
}
.fadeRight.active {
  opacity: 1;
  right: 0;
}

.fadeDelay1 {
  transition-delay: 0s;
}

.fadeDelay2 {
  transition-delay: 0.4s;
}

.fadeDelay3 {
  transition-delay: 0.8s;
}

.fadeDelay4 {
  transition-delay: 0.9s;
}

.maskRight {
  clip-path: inset(0 100% 0 0);
  transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.maskRight.active {
  clip-path: inset(0 0% 0 0);
}

.maskLeft {
  clip-path: inset(0 0 0 100%);
  transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.maskLeft.active {
  clip-path: inset(0 0% 0 0);
}

.maskTop {
  clip-path: inset(0 0 100% 0);
  transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.maskTop.active {
  clip-path: inset(0 0% 0 0);
}

.maskBottom {
  clip-path: inset(100% 0 0 0);
  transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.maskBottom.active {
  clip-path: inset(0 0% 0 0);
}

/* ------------------------------------------
smartphone
------------------------------------------ */
@media screen and (max-width: 719px) {
  .mfp-image-holder .mfp-close,
  .mfp-iframe-holder .mfp-close {
    right: 3px;
    top: 10px;
  }
  .mfp-container {
    padding-left: 35px;
    padding-right: 35px;
  }
  button.mfp-arrow-left {
    background-position: left 15px center;
  }
  button.mfp-arrow-right {
    background-position: right 15px center;
  }
}
#button_container {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 20;
  display: block;
  height: 60px;
  z-index: 40;
  width: 60px;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  visibility: visible;
  opacity: 1;
  cursor: pointer;
}
#button_container.hide {
  visibility: none;
  opacity: 0;
}
#button_container.blackMode #toggle span {
  background-color: #fff;
}

#toggle {
  position: absolute;
  left: 14px;
  top: 21px;
  width: 34px;
  z-index: 300;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  mix-blend-mode: difference;
  background-blend-mode: difference;
}
#toggle:hover {
  opacity: 0.7;
}
#toggle.active span {
  background-color: #000;
}
#toggle span {
  background-color: #000;
  border: none;
  height: 1px;
  width: 34px;
  position: absolute;
  top: 0px;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}
#toggle span:nth-of-type(2) {
  top: 8px;
}
#toggle span:nth-of-type(3) {
  top: 16px;
}

#toggle.active .top {
  transform: translateY(8px) translateX(0) rotate(45deg);
}

#toggle.active .middle {
  transform: translateY(26px) translateX(0) rotate(0);
}

#toggle.active .bottom {
  transform: translateY(-8px) translateX(0) rotate(-45deg);
}

#overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 39;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#overlay.open {
  visibility: visible;
  opacity: 1;
}
#overlay.open #overlayBox {
  opacity: 1;
}
#overlay #overlayBox {
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0.25s;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.overlay-menu {
  position: absolute;
  width: 100%;
  height: 100%;
  height: calc(100% - 120px);
  left: 0;
  top: 100px;
}

ul.lineList {
  position: relative;
  width: 100%;
  height: 100%;
}
ul.lineList > li {
  height: 11.1111111111%;
  max-height: 60px;
  position: relative;
}
ul.lineList > li > a {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  line-height: 90%;
  padding-left: 90px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
ul.lineList > li.sns {
  padding-left: 88px;
}

/* ------------------------------------------
smartphone
------------------------------------------ */
@media screen and (max-width: 719px) {
  #button_container {
    top: 0;
  }
}
html.hidden,
body.hidden {
  overflow: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  background-color: #fff;
  color: #000;
  position: relative;
  font-size: 14px;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  font-weight: 400;
  font-style: normal;
  font-family: "garamond-premier-pro-display", "Noto Serif JP", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-weight: 400;
  font-style: normal;
}

/* GENERAL */
a:link,
a:visited {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a {
  outline: none;
}

strong {
  font-weight: bold;
}

img {
  vertical-align: bottom;
  user-select: none;
  width: 100%;
}

* {
  box-sizing: border-box;
}

.onlyPc {
  display: block !important;
}

.onlyPc2 {
  display: flex !important;
}

.onlySp {
  display: none !important;
}

.disable {
  pointer-events: none;
}

/*---------------------------------------------
MAIN
---------------------------------------------*/
#gg2025 {
  /*---------------------------------------------
  mainVisual
  ---------------------------------------------*/
  /*---------------------------------------------
  concept
  ---------------------------------------------*/
  /*---------------------------------------------
  photoList
  ---------------------------------------------*/
}
#gg2025 .sec {
  position: relative;
  overflow: hidden;
  padding: 15.6vw 0 0 0;
}
#gg2025 .secFull {
  padding: 0;
  margin-top: 15.6vw;
  margin-bottom: -7.8vw;
  border-top: 5px solid #000;
  border-bottom: 5px solid #000;
}
#gg2025 .secFullNoBorder {
  position: relative;
  z-index: -1;
  margin-top: 15.6vw;
  margin-bottom: -19.5vw;
  margin-bottom: -35.1vw;
}
#gg2025 .img {
  overflow: hidden;
}
#gg2025 .img .imgParallax {
  transition: all 0.1s cubic-bezier(0.215, 0.61, 0.355, 1);
  margin-bottom: -10vh;
}
#gg2025 .imgNoHidden {
  overflow: visible;
}
#gg2025 .imgNoHidden .imgParallaxNoHidden {
  transition: all 0.1s cubic-bezier(0.215, 0.61, 0.355, 1);
  margin-bottom: 0;
}
#gg2025 .mainVisual {
  position: relative;
  z-index: 2;
  color: #fff;
}
#gg2025 .mainVisual.active h1.logo {
  opacity: 1;
}
#gg2025 .mainVisual.active .libre {
  opacity: 1;
}
#gg2025 .mainVisual.active .season {
  opacity: 1;
}
#gg2025 .mainVisual.active .topSlider div img.img {
  transform: scale(1);
}
#gg2025 .mainVisual h1.logo {
  position: absolute;
  left: 76px;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10;
  opacity: 0;
  transition: all 2.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#gg2025 .mainVisual h1.logo img {
  width: 136px;
  width: 10.6vw;
}
#gg2025 .mainVisual .libre {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  opacity: 0;
  transition: all 2.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0.4s;
}
#gg2025 .mainVisual .libre img {
  width: 176px;
  width: 13.7vw;
}
#gg2025 .mainVisual .season {
  position: absolute;
  right: 52px;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10;
  opacity: 0;
  transition: all 2.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0.8s;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  padding-top: 5px;
}
#gg2025 .mainVisual .topSlider {
  opacity: 0;
  transition: all 2.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#gg2025 .mainVisual .topSlider div {
  vertical-align: top;
}
#gg2025 .mainVisual .topSlider div img.img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transform: scale(1.1);
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#gg2025 .mainVisual .topSlider.active {
  opacity: 1;
}
#gg2025 .mainVisual .topSlider.active div img.img {
  transform: scale(1);
}
#gg2025 .conceptBox {
  position: relative;
  height: 125vw;
  width: 100%;
}
#gg2025 .conceptBox .concept {
  position: sticky;
  top: 0;
  z-index: 2;
  top: 0;
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 17px;
  line-height: 1.5;
  padding-top: 10.9vw;
  padding-bottom: 10.9vw;
}
#gg2025 .conceptBox .concept.active p {
  opacity: 1;
}
#gg2025 .conceptBox .concept p {
  opacity: 0;
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#gg2025 .conceptBox .concept p:nth-child(1) {
  transition-delay: 0s;
}
#gg2025 .conceptBox .concept p:nth-child(2) {
  transition-delay: 0.2s;
}
#gg2025 .conceptBox .concept p:nth-child(3) {
  transition-delay: 0.4s;
}
#gg2025 .conceptBox .concept p:nth-child(4) {
  transition-delay: 0.6s;
}
#gg2025 .conceptBox .concept p:nth-child(5) {
  transition-delay: 0.8s;
}
#gg2025 .conceptBox .concept p:nth-child(6) {
  transition-delay: 1s;
}
#gg2025 .conceptBox .concept p:nth-child(7) {
  transition-delay: 1.2s;
}
#gg2025 .conceptBox .concept p:nth-child(8) {
  transition-delay: 1.4s;
}
#gg2025 .conceptBox .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
#gg2025 .photoList {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
}
#gg2025 .photoList1 {
  width: 54.6875%;
}
#gg2025 .photoList1 li {
  width: 100%;
}
#gg2025 .photoList2 {
  width: 66.4vw;
  flex-wrap: wrap;
}
#gg2025 .photoList2 li {
  width: calc(50% - 10px);
}
#gg2025 .photoList2 li:nth-child(2n+1) {
  transition-delay: 0s;
}
#gg2025 .photoList2 li:nth-child(2n) {
  transition-delay: 0.2s;
}
#gg2025 .photoList1Wide {
  width: 66.4vw;
  margin-bottom: 7.8vw;
}
#gg2025 .photoList3 li {
  width: 33.33%;
}
#gg2025 .photoList3 li:nth-child(3n+1) {
  transition-delay: 0s;
}
#gg2025 .photoList3 li:nth-child(3n+2) {
  transition-delay: 0.15s;
}
#gg2025 .photoList3 li:nth-child(3n) {
  transition-delay: 0.3s;
}
#gg2025 .photoListMb {
  margin-bottom: 7.81vw;
}
#gg2025 .pcSlider {
  width: 100%;
}
#gg2025 .pcSlider div {
  vertical-align: bottom;
}
#gg2025 .pcSlider div img {
  width: 100%;
}
#gg2025 .caption {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.01em;
  padding-top: 25px;
}
#gg2025 .caption span {
  padding-right: 2px;
}
#gg2025 .caption .name {
  text-decoration: underline;
}
#gg2025 .caption a {
  margin: 0 5px;
  display: inline-block;
}
#gg2025 .caption a.disable span {
  text-decoration: none;
}
#gg2025 .caption a:hover {
  text-decoration: none;
}
#gg2025 .snsList {
  display: flex;
  gap: 15px;
  justify-content: center;
  padding-bottom: 60px;
}
#gg2025 .snsList li img {
  width: 30px;
}
#gg2025 footer {
  position: relative;
  margin-top: 15.6vw;
  padding-top: 13.5vw;
  padding-bottom: 7.8vw;
  min-height: 62.5vw;
  background-image: url("../images/img_pic31.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  color: #fff;
  text-align: center;
}
#gg2025 footer .season {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 10px;
  margin-bottom: 25px;
}
#gg2025 footer .libre {
  margin-bottom: 50px;
}
#gg2025 footer .libre img {
  width: 120px;
}
#gg2025 footer .creditBox {
  text-align: center;
  letter-spacing: 0.01em;
}
#gg2025 footer .creditBox .credit {
  position: relative;
  z-index: 5;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  margin-bottom: 120px;
}
#gg2025 footer .creditBox .credit .job {
  font-size: 11px;
  font-style: italic;
  line-height: 1;
  margin-bottom: 5px;
}
#gg2025 footer .creditBox .credit .name {
  font-size: 12.5px;
  line-height: 1;
  margin-bottom: 8px;
}
#gg2025 footer h1.logo {
  margin-bottom: 30px;
}
#gg2025 footer h1.logo img {
  width: 140px;
}
#gg2025 footer .copyright {
  font-size: 11px;
  letter-spacing: 0.01em;
}
#gg2025 .blackBgBox {
  position: relative;
}
#gg2025 .blackBgBox:after {
  content: "";
  display: block;
  width: 100%;
  height: 62.5vw;
  position: absolute;
  z-index: -1;
  top: 53%;
  left: 0;
  transform: translate(0, -50%);
  background-color: #000;
}
#gg2025 .blackBox {
  background-color: #000;
  padding-top: 10.1vw;
  padding-bottom: 3.9vw;
}
#gg2025 .blackBox a {
  color: #fff;
}

/* ------------------------------------------
smartphone
------------------------------------------ */
@media screen and (max-width: 719px) {
  .onlyPc {
    display: none !important;
  }
  .onlyPc2 {
    display: none !important;
  }
  .onlySp {
    display: block !important;
  }
  #gg2025 .sec {
    padding-top: 16.66vw;
    padding-bottom: 16.66vw;
  }
  #gg2025 .mainVisual h1.logo {
    left: 50%;
    transform: translate(-50%, 0);
    top: initial;
    bottom: 15.66vw;
  }
  #gg2025 .mainVisual h1.logo img {
    width: 21.3vw;
    width: 24.3vw;
  }
  #gg2025 .mainVisual .libre {
    transition-delay: 0.6s;
  }
  #gg2025 .mainVisual .libre img {
    width: 26.66vw;
    width: 29.5vw;
  }
  #gg2025 .mainVisual .season {
    top: 16.66vw;
    right: initial;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 8px;
    letter-spacing: 0.02em;
    transition-delay: 1.2s;
  }
  #gg2025 .conceptBox {
    height: initial;
  }
  #gg2025 .conceptBox .concept {
    color: #000;
    position: relative;
    font-size: 14px;
    padding-top: 16.66vw;
    padding-bottom: 16.66vw;
  }
  #gg2025 .conceptBox .bg {
    position: relative;
    left: initial;
    top: initial;
  }
  #gg2025 .photoList li:nth-child(2n+1) {
    transition-delay: 0s;
  }
  #gg2025 .photoList li:nth-child(2n) {
    transition-delay: 0s;
  }
  #gg2025 .photoList li:nth-child(3n+1) {
    transition-delay: 0s;
  }
  #gg2025 .photoList li:nth-child(3n+2) {
    transition-delay: 0s;
  }
  #gg2025 .photoList li:nth-child(3n) {
    transition-delay: 0s;
  }
  #gg2025 .photoList1 {
    width: 75.33%;
  }
  #gg2025 .photoList2 {
    width: 75.33%;
    gap: 10px;
  }
  #gg2025 .photoList2 li {
    width: 100%;
  }
  #gg2025 .photoListSp4 {
    width: 100%;
    gap: 10px;
  }
  #gg2025 .photoListSp4 li {
    width: calc(50% - 5px);
  }
  #gg2025 .photoListSp100 {
    width: 100%;
  }
  #gg2025 .photoListMb {
    margin-bottom: 16.66vw;
  }
  #gg2025 .secFull {
    margin-top: 16.66vw;
    margin-bottom: 0vw;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
  }
  #gg2025 .imgYoko {
    position: relative;
    height: 125vw;
    overflow: hidden;
  }
  #gg2025 .imgYoko .imgParallaxYoko {
    width: auto;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-30%, 0);
  }
  #gg2025 .blackBgBox:after {
    display: none;
  }
  #gg2025 .blackBgBoxSp {
    background-color: #000;
    padding-top: 16.66vw;
    padding-bottom: 16.66vw;
  }
  #gg2025 .blackBox {
    padding: 0;
    background-color: transparent;
  }
  #gg2025 .blackBox a {
    color: #000;
  }
  #gg2025 footer {
    margin-top: 16.66vw;
    padding-top: 28.33vw;
    padding-bottom: 0;
  }
  #gg2025 footer .creditBox .credit {
    margin-bottom: 100px;
  }
}/*# sourceMappingURL=style.css.map */