@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 {
  -webkit-user-select: none;
     -moz-user-select: none;
          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;
  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;
}

.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  width: 60px;
  height: 60px;
  text-align: left;
  text-indent: -9999px;
  background-size: 19px auto;
  background-position: center center;
  padding-right: 0;
  right: 0;
  top: 0;
}

.mfp-counter {
  color: #666;
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  background-color: #fff;
  color: #1e2f4f;
  position: relative;
  font-size: 14px;
  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: #1e2f4f;
  text-decoration: none;
}

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

a {
  outline: none;
}

strong {
  font-weight: bold;
}

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

* {
  box-sizing: border-box;
}

.topSlider div {
  vertical-align: top;
}

.pcSlider div {
  vertical-align: top;
}

.onlyPc {
  display: block !important;
}

.onlyPc2 {
  display: flex !important;
}

.onlySp {
  display: none !important;
}

.onlySp2 {
  display: none !important;
}

.disable {
  pointer-events: none;
}

/*---------------------------------------------
MAIN
---------------------------------------------*/
#gg2026 {
  /*---------------------------------------------
  mainVisual
  ---------------------------------------------*/
}
#gg2026 .mainVisual {
  padding: 0 3.9vw;
}
#gg2026 .mainVisual h1.logo {
  padding: 27px 0;
}
#gg2026 .mainVisual h1.logo img {
  width: 138px;
}
#gg2026 .topSlider {
  opacity: 0;
  transition: all 2.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#gg2026 .topSlider.active {
  opacity: 1;
}
#gg2026 .topSlider.active div img.img {
  transform: scale(1);
}
#gg2026 .topSlider img.img {
  transform: scale(1.1);
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#gg2026 .conceptBox {
  text-align: center;
  padding-top: 45px;
}
#gg2026 .conceptBox .villa {
  margin-bottom: 33px;
}
#gg2026 .conceptBox .villa img {
  width: 510px;
}
#gg2026 .conceptBox .brand {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 9px;
  letter-spacing: 0.03em;
}
#gg2026 .conceptBox .season {
  font-size: 14px;
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
#gg2026 .conceptBox .concept {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
}
#gg2026 .sec {
  padding: 10vw 0 13vw 0;
}
#gg2026 .sec .captionBox {
  position: relative;
}
#gg2026 .sec .captionBox .caption {
  position: absolute;
  width: 100%;
}
#gg2026 .secFull {
  padding: 10vw 0 0 0;
}
#gg2026 .photoList {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
}
#gg2026 .photoList li {
  width: 100%;
}
#gg2026 .photoList.photoList1 {
  width: 54.6vw;
}
#gg2026 .photoList.photoList1 li {
  width: 100%;
}
#gg2026 .photoList.photoList1_4 {
  gap: 0;
  flex-wrap: wrap;
}
#gg2026 .photoList.photoList1_4.active li {
  clip-path: inset(0 0% 0 0);
}
#gg2026 .photoList.photoList1_4 li {
  width: 50%;
  clip-path: inset(0 100% 0 0);
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#gg2026 .photoList.photoList1_4 li:nth-child(4n+1) {
  transition-delay: 0s;
}
#gg2026 .photoList.photoList1_4 li:nth-child(4n+2) {
  transition-delay: 0.2s;
}
#gg2026 .photoList.photoList1_4 li:nth-child(4n+3) {
  transition-delay: 0.4s;
}
#gg2026 .photoList.photoList1_4 li:nth-child(4n+4) {
  transition-delay: 0.6s;
}
#gg2026 .photoList.photoList2 {
  width: 71.8vw;
}
#gg2026 .photoList.photoList2 li {
  width: calc(50% - 10px);
}
#gg2026 .caption {
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  padding-top: 20px;
  font-weight: 500;
}
#gg2026 .caption .disable .name {
  text-decoration: none;
}
#gg2026 .caption .name {
  text-decoration: underline;
}
#gg2026 .bigImgBox {
  position: relative;
  text-align: center;
}
#gg2026 .bigImgBox .overArea {
  position: absolute;
  top: 50%;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 54.6vw;
  margin: 0 auto;
}
#gg2026 .bigImgBox .overArea .img {
  border: 2.8px solid #1e2f4f;
  margin-bottom: 50px;
}
#gg2026 .bigImgBox .overArea .desp {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
#gg2026 .bigImgBox .bg img {
  transition: all 0.1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#gg2026 .maskParallax {
  height: 66.4vw;
  overflow: hidden;
}
#gg2026 footer {
  padding: 0 3.9vw 3.9vw 3.9vw;
}
#gg2026 .ftBox {
  position: relative;
}
#gg2026 .ftBox .creditBox {
  text-align: center;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 55%;
  transform: translate(0, -50%);
  width: 100%;
}
#gg2026 .ftBox .creditBox .conceptBox {
  padding-top: 0;
}
#gg2026 .ftBox .creditBox .conceptBox .villa {
  margin-bottom: 33px;
}
#gg2026 .ftBox .creditBox .conceptBox .villa img {
  width: 320px;
}
#gg2026 .ftBox .creditBox .conceptBox .brand {
  font-size: 16px;
  margin-bottom: 5px;
}
#gg2026 .ftBox .creditBox .conceptBox .season {
  font-size: 8.5px;
  margin-bottom: 55px;
}
#gg2026 .ftBox .creditBox h1.logo {
  padding-bottom: 20px;
}
#gg2026 .ftBox .creditBox h1.logo img {
  width: 136px;
}
#gg2026 .creditList {
  padding-bottom: 30px;
}
#gg2026 .creditList li {
  font-weight: 500;
  margin-bottom: 5px;
}
#gg2026 .creditList li .job {
  font-style: italic;
  font-size: 9px;
}
#gg2026 .creditList li .name {
  font-size: 10px;
}
#gg2026 .snsList {
  display: flex;
  gap: 15px;
  justify-content: center;
}
#gg2026 .snsList li img {
  width: 30px;
}
#gg2026 #sec13 {
  padding-bottom: 0;
}
#gg2026 #sec14 {
  padding-bottom: 25vw;
}

/* ------------------------------------------
smartphone
------------------------------------------ */
@media screen and (max-width: 719px) {
  .onlyPc {
    display: none !important;
  }
  .onlyPc2 {
    display: none !important;
  }
  .onlySp {
    display: block !important;
  }
  .onlySp2 {
    display: flex !important;
  }
  #gg2026 .mainVisual {
    min-height: 80vh;
    padding: 0;
  }
  #gg2026 .mainVisual h1.logo {
    padding: 15px 0 13px 0;
    margin-left: 20px;
  }
  #gg2026 .mainVisual h1.logo img {
    width: 21.3vw;
  }
  #gg2026 .conceptBox {
    padding-top: 30px;
    padding-bottom: 25px;
  }
  #gg2026 .conceptBox .villa {
    margin-bottom: 30px;
  }
  #gg2026 .conceptBox .villa img {
    width: 73vw;
  }
  #gg2026 .conceptBox .brand {
    font-size: 16px;
    margin-bottom: 8px;
  }
  #gg2026 .conceptBox .season {
    font-size: 10px;
    margin-bottom: 30px;
  }
  #gg2026 .conceptBox .concept {
    font-size: 13px;
    line-height: 1.4;
  }
  #gg2026 .photoList {
    flex-wrap: wrap;
  }
  #gg2026 .photoList.photoList1, #gg2026 .photoList.photoList2 {
    width: 75.3vw;
    gap: 10px;
  }
  #gg2026 .photoList.photoList1 li, #gg2026 .photoList.photoList2 li {
    width: 100%;
  }
  #gg2026 .photoList.photoList1_4 {
    gap: 0;
    width: 100vw;
  }
  #gg2026 .photoList.photoList1_4 li {
    width: 50vw;
    margin-bottom: -1px;
  }
  #gg2026 .photoList.photoList1Big {
    width: 100vw;
  }
  #gg2026 .caption {
    font-size: 11px;
    padding-top: 15px;
  }
  #gg2026 .sec {
    padding-bottom: 31vw;
  }
  #gg2026 #sec6 {
    padding-bottom: 53vw;
  }
  #gg2026 #sec8 {
    padding-bottom: 31vw;
  }
  #gg2026 #sec13 {
    padding-bottom: 7vw;
  }
  #gg2026 #sec14 {
    padding-bottom: 39vw;
  }
  #gg2026 .secFull .captionBox {
    position: relative;
  }
  #gg2026 .secFull .captionBox .caption {
    position: absolute;
    width: 100%;
  }
  #gg2026 .bigImgBox .overArea {
    top: 140%;
    width: 75.3vw;
  }
  #gg2026 .bigImgBox .overArea .img {
    border: 2px solid #1e2f4f;
  }
  #gg2026 footer {
    padding: 0;
  }
  #gg2026 .ftBox .creditBox .conceptBox .villa {
    margin-bottom: 20px;
  }
  #gg2026 .ftBox .creditBox .conceptBox .villa img {
    width: 59vw;
  }
  #gg2026 .ftBox .creditBox .conceptBox .brand {
    font-size: 11px;
  }
  #gg2026 .ftBox .creditBox .conceptBox .season {
    font-size: 7px;
    margin-bottom: 15px;
  }
  #gg2026 .ftBox .creditBox h1.logo img {
    width: 24.33vw;
  }
  #gg2026 .creditList {
    padding-bottom: 25px;
  }
  #gg2026 .creditList li {
    margin-bottom: 6px;
  }
  #gg2026 .creditList li .name {
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */