/* ============================================================= *

golf

* ============================================================= */
/* p-golf-root
============================== */
.p-golf-root {
  overflow: hidden;
  background-color: #FFFED5;
  padding-top: var(--header-height);

  --key-color: #FFFB00;
  --key-color-light: #28AF56;
  --bg-black: #101010;
  --bg-white: #fff;
  --en-font-family: "Fredericka the Great", serif;
  --inner-padding: 20px;
  --inner-width: calc(100% - var(--inner-padding) * 2);
  --slash-deg: 6.35deg;
  --slash-tan: tan(var(--slash-deg));
  --slash-height: calc(var(--vw) * 100 * var(--slash-tan));
  --slope-desktop-px: clamp(.56223px, 0px + .07321vw, 1px);
  --slope-mobile-px: calc(1px + var(--slope-1px) * 1.04533);
}

@media screen and (max-width: 767px) {
  .p-golf-root {
    --slash-deg: 8deg;
  }
}

/* p-golf-border-title
============================== */
.p-golf-border-title {
  width: fit-content;
  max-width: 100%;
  margin-block: var(--leading-trim);
  margin-inline: auto;
  padding-block: calc(16px + var(--slope-1px) * 4) calc(20px + var(--slope-1px) * 4);
  border-top: 3px solid;
  border-bottom: 3px solid;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
  font-weight: 700;
  font-size: calc(48 * var(--slope-desktop-px));
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .p-golf-border-title {
    font-size: calc(30 * var(--slope-mobile-px));
  }
}

*[data-intersection] .p-golf-border-title {
  opacity: 0;

  translate: -30px 0;
}

*[data-intersecting="true"] .p-golf-border-title {
  opacity: 1;
  transition: translate .4s cubic-bezier(.22, 1, .36, 1) .3s, opacity .3s ease-in-out .3s;

  translate: 0 0;
}

/* p-golf-en-title
============================== */
.p-golf-en-title {
  display: flex;
  flex-direction: column;
  color: var(--bg-white);
}

.p-golf-en-title.--center {
  align-items: center;
}

.p-golf-en-title.--green {
  color: var(--key-color-light);
}

.p-golf-en-title__main {
  font-size: calc(128 * var(--slope-desktop-px));
  font-family: var(--en-font-family);
  line-height: .8;
  margin-bottom: 0.25em;
}

@media screen and (max-width: 767px) {
  .p-golf-en-title__main {
    font-size: calc(72 * var(--slope-mobile-px));
    margin-bottom: 0.25em;
  }
}

*[data-intersection] .p-golf-en-title__main {
  opacity: 0;

  translate: -30px 0;
}

*[data-intersecting="true"] .p-golf-en-title__main {
  opacity: 1;
  transition: translate .4s cubic-bezier(.22, 1, .36, 1) .3s, opacity .3s ease-in-out .3s;

  translate: 0 0;
}

.p-golf-en-title__sub {
  width: fit-content;
  max-width: 100%;
  font-weight: 700;
  font-size: clamp(24px, 2.90322vw, 36px);
  line-height: 1;
  margin-bottom: 1.666em;
}

@media screen and (max-width: 767px) {
  .p-golf-en-title__sub {
    word-break: keep-all;
    overflow-wrap: anywhere;
    font-size: clamp(16px, 5.333vw, 20px);
    line-height: 1.3;
  }
}

*[data-intersection] .p-golf-en-title__sub {
  opacity: 0;

  translate: -30px 0;
}

*[data-intersecting="true"] .p-golf-en-title__sub {
  opacity: 1;
  transition: translate .4s cubic-bezier(.22, 1, .36, 1) .3s, opacity .3s ease-in-out .3s;

  translate: 0 0;
}

/* p-golf-header
============================== */
.p-golf-header {
  position: relative;
}

/* p-golf-hero
============================== */
.p-golf-hero {
  position: relative;
}

.p-golf-hero__title {
  position: absolute;
  z-index: 1;
  display: grid;
  grid-template-columns: 100%;
  gap: .5em;
  top: 41%;
  left: 51%;
  transform: translate(-50%, -50%);
  font-weight: 900;
  font-size: calc(79 * var(--slope-desktop-px));
}

@media screen and (max-width: 767px) {
  .p-golf-hero__title {
    top: 33%;
    left: 0;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    margin-top: 0;
    font-size: calc(40 * var(--slope-mobile-px));
    transform: translateY(-50%);
    margin-inline: 20px;
  }
}

.p-golf-hero__title ._honda,
.p-golf-hero__title ._player {
  display: inline-flex;
  transform: skewY(calc(var(--slash-deg) * -1));
  transform-origin: right top;

  --slash-width: .25em;
}

.p-golf-hero__title ._honda span,
.p-golf-hero__title ._player span {
  position: relative;
  padding-right: .1em;
  padding-bottom: .1em;
  color: #fff;
  line-height: 1.1;
}

.p-golf-hero__title ._honda span:nth-child(2),
.p-golf-hero__title ._player span:nth-child(2) {
  margin-right: var(--slash-width);
}

.p-golf-hero__title ._honda span:before,
.p-golf-hero__title ._player span:before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(var(--slash-width) * -1);
  z-index: -1;
  display: block;
  width: calc(100% + var(--slash-width) * 2);
  height: 100%;
  background: var(--bg-black);
  clip-path: polygon(var(--slash-width) 0, 100% 0, calc(100% - var(--slash-width)) 100%, 0 100%);
}

.p-golf-hero__title ._honda {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: .75em;
}

.p-golf-hero__title ._times {
  position: absolute;
  right: .4em;
  bottom: .3em;
  left: 0;
  z-index: 1;
  display: block;
  overflow: hidden;
  width: 2em;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  color: transparent;
}

.p-golf-hero__title ._times:before, .p-golf-hero__title ._times:after {
  content: "";
  position: absolute;
  width: calc(100% / cos(45deg));
  height: 3px;
  background: var(--key-color);
}

.p-golf-hero__title ._times:before {
  top: -1px;
  left: 0;
  transform: rotate(45deg);
  transform-origin: left center;
}

.p-golf-hero__title ._times:after {
  top: -1px;
  right: 0;
  transform: rotate(-45deg);
  transform-origin: right center;
}

.p-golf-hero__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1366 / 661;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 767px) {
  .p-golf-hero__image {
    aspect-ratio: unset;
    aspect-ratio: 375 / 585;
  }
}

.p-golf-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-golf-hero__image > div {
  opacity: 0;
  transition: opacity 1.5s ease-out;
}

.p-golf-hero__image > div._02 {
  transition-delay: .4s;
}

.p-golf-hero__image > div._03 {
  transition-delay: .8s;
}

.p-golf-hero__image > div._04 {
  transition-delay: 1.2s;
}

body.is-loaded .p-golf-hero__image > div._01,
body.is-loaded .p-golf-hero__image > div._02,
body.is-loaded .p-golf-hero__image > div._03,
body.is-loaded .p-golf-hero__image > div._04 {
  opacity: 1;
}


/* p-golf-lead
============================== */
.p-golf-lead {
  position: relative;
  padding-block: 2.8226%;
  overflow: hidden;
}

.p-golf-lead::after {
  position: absolute;
  content: "";
  top: -8.126%;
  left: calc(50% - 3.2943%);
  z-index: 1;
  transform: translateX(-50%);
  display: block;
  width: 120.717%;
  height: 100%;
  background: center / cover no-repeat url(../img/bg_light.png);
}

.p-golf-lead__inner {
  display: flex;
  gap: 1.048%;
  width: var(--inner-width);
  max-width: 1200px;
  margin-inline: auto;
  position: relative;
  z-index: 6;
}
@media screen and (max-width: 767px) {
  .p-golf-lead__inner {
    display: block;
  }
}

.p-golf-lead__textarea {
  display: flex;
  flex-direction: column;
  gap: 2em;
  max-width: 829px;
  font-size: calc(17px + var(--slope-1px) * 3);
}

@media screen and (max-width: 767px) {
  .p-golf-lead__textarea {
    word-break: keep-all;
    overflow-wrap: anywhere;
    font-size: calc(17 * var(--slope-mobile-px));
    margin-inline: auto;
    width: var(--inner-width);
  }
}

.p-golf-lead__body {
  margin-block: var(--leading-trim);
  padding-top: calc(14.1em * tan(8deg));
  font-weight: 900;
  font-size: clamp(40px, 4.8387vw, 60px);
  line-height: 1.5;
  transform: skewY(-8deg);
  transform-origin: left top;
}

@media screen and (max-width: 767px) {
  .p-golf-lead__body {
    font-size: calc(40 * var(--slope-mobile-px));
    line-height: 1.4;
  }
}

.p-golf-lead__body div {
  display: flex;
  width: fit-content;
  position: relative;
  --slash-width: .25em;
}

.p-golf-lead__body div._honda,.p-golf-lead__body div._player {
  margin-bottom: 0.25em;
}

@media screen and (max-width: 767px) {
  .p-golf-lead__body div {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25em;
  }
}

.p-golf-lead__body div:before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(var(--slash-width) * -1);
  z-index: -1;
  display: block;
  width: calc(100% + var(--slash-width) * 2);
  height: 100%;
  background: var(--bg-white);
  clip-path: polygon(var(--slash-width) 0, 100% 0, calc(100% - var(--slash-width)) 100%, 0 100%);
}

@media screen and (max-width: 767px) {
  .p-golf-lead__body div:before {
    display: none;
  }
}

.p-golf-lead__body em {
  color: var(--key-color-light);
}

.p-golf-lead__body span {
  position: relative;
  --slash-width: .25em;
}

@media screen and (max-width: 767px) {
  .p-golf-lead__body span:before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(var(--slash-width) * -1);
    z-index: -1;
    display: block;
    width: calc(100% + var(--slash-width) * 2);
    height: 100%;
    background: var(--bg-white);
    clip-path: polygon(var(--slash-width) 0, 100% 0, calc(100% - var(--slash-width)) 100%, 0 100%);
  }
}

*[data-intersection] .p-golf-lead__body div {
  opacity: 0;

  translate: -30px 10px;
}

*[data-intersecting="true"] .p-golf-lead__body div {
  opacity: 1;
  transition: all .6s cubic-bezier(.22, 1, .36, 1) .3s;

  translate: 0 0;
}

*[data-intersecting="true"] .p-golf-lead__body div:nth-child(2) {
  transition-delay: .45s;
}

*[data-intersecting="true"] .p-golf-lead__body div:nth-child(3) {
  transition-delay: .6s;
}

.p-golf-lead__foot {
  margin-block: var(--leading-trim);
  font-weight: 700;
  line-height: 1.75;
  transform: skewY(-8deg);
  transform-origin: left top;
}

*[data-intersection] .p-golf-lead__foot {
  opacity: 0;

  translate: -30px 10px;
}

*[data-intersecting="true"] .p-golf-lead__foot {
  opacity: 1;
  transition: all .6s cubic-bezier(.22, 1, .36, 1) .75s;

  translate: 0 0;
}

.p-golf-lead__foot > p {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  font-size: clamp(15px, 1.37097vw, 17px);
}

@media screen and (max-width: 767px) {
  .p-golf-lead__foot > p  {
    font-size: clamp(15px, 1.37097vw, 17px);
  }
}


.p-golf-lead__img {
  width: 25.806%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 320 / 826;
}
@media screen and (max-width: 767px) {
  .p-golf-lead__img {
    display: none;
  }
}

.p-golf-lead__img img {
  object-fit: contain;
  width: 100%;
  height: auto;
}


/* p-golf-profile
============================== */
.p-golf-profile {
  position: relative;
  background: center / 33.308% repeat url(../img/shiba_center.png);
}

.p-golf-profile::after {
  position: absolute;
  content: "";
  top: calc(100vw * 100 / 1366 - 4px - 100vw * 413 / 1366);
  left: 0;
  width: 100%;
  height: calc(100vw * 413 / 1366);
  background: center / cover no-repeat url(../img/shiba_top.png);
  z-index: 3;
}

.p-golf-profile::before {
  position: absolute;
  content: "";
  bottom: calc(2px - (100vw * 244 / 1366));
  left: 0;
  width: 100%;
  height: calc(100vw * 244 / 1366);
  background: center / cover no-repeat url(../img/shiba_bottom.png);
  z-index: 3;
}

.p-golf-profile__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 53.333%;
  z-index: 5;
  width: var(--inner-width);
  max-width: 1200px;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .p-golf-profile__inner {
    grid-template-columns: 100%;
    margin-top: calc(100vw * 413 / 1366);
  }
}

.p-golf-profile__inner:before {
  content: "Profile";
  position: absolute;
  left: 0;
  top: 0%;
  font-size: calc(72px + var(--slope-1px) * 56);
  font-family: var(--en-font-family);
  line-height: 1;
  transform: translateY(-100%);
  color: var(--bg-white);
}

@media screen and (max-width: 767px) {
  .p-golf-profile__inner:before {
    top: 0;
    bottom: auto;
    z-index: 2;
    margin-right: 0;
    transform: translateY(-60%);
  }
}

.p-golf-profile__image-container {
  max-width: 600px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-golf-profile__image-container {
    margin-top: 10%;
  }
}

.p-golf-profile__image.--large {
  height: auto;
  
  overflow: hidden;
}

.p-golf-profile__image.--large {
  max-width: 382.5px;
  aspect-ratio: 382 / 459;
  width: 63.75%;
  transform: rotate(-8deg);
  margin-left: 6%;
}

.p-golf-profile__image.--small {
  max-width: 267px;
  aspect-ratio: 267 / 321;
  width: 44.5%;
  transform: rotate(8deg);
  margin-top: -18%;
  margin-left: auto;
  margin-right: 6%;
}

.p-golf-profile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: clamp(8px, 1.3709vw, 17px) solid var(--bg-white);
}


.p-golf-profile__contents {
  position: relative;
  padding: 30% 3.333% 3.333%;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-golf-profile__contents {
    padding: 10% 0 3.333%;
  }
}

.p-golf-profile__head {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-bottom: calc(19.62px + var(--slope-1px) * 8);
  font-size: calc(15 * var(--slope-desktop-px));
  color: var(--bg-white);
}

@media screen and (max-width: 767px) {
  .p-golf-profile__head {
    font-size: calc(13 * var(--slope-mobile-px));
  }
}

*[data-intersection] .p-golf-profile__head {
  opacity: 0;
  translate: -30px 0;
}

*[data-intersecting="true"] .p-golf-profile__head {
  opacity: 1;
  transition: translate .4s cubic-bezier(.22, 1, .36, 1) .3s, opacity .3s ease-in-out .3s;

  translate: 0 0;
}

.p-golf-profile__name {
  font-weight: 900;
  font-size: calc(64 * var(--slope-desktop-px));
}

@media screen and (max-width: 767px) {
  .p-golf-profile__name {
    font-size: calc(48 * var(--slope-mobile-px));
  }
}

.p-golf-profile__ruby {
  font-weight: 700;
  font-size: calc(15px + var(--slope-1px) * 1);
}

.p-golf-profile__body-head {
  display: flex;
  gap: 2.1875em;
}

.p-golf-profile-item {
  display: grid;
  grid-template-columns: 100%;
  gap: calc(12px + var(--slope-1px) * 1);
  font-weight: 500;
}

.p-golf-profile-item.--foot {
  margin-top: 2em;
  margin-bottom: 3.25em;
}

*[data-intersection] .p-golf-profile-item {
  opacity: 0;

  translate: -30px 0;
}

*[data-intersecting="true"] .p-golf-profile-item {
  opacity: 1;
  transition: translate .4s cubic-bezier(.22, 1, .36, 1) .3s, opacity .3s ease-in-out .3s;

  translate: 0 0;
}


.p-golf-profile-item__head {
  margin-block: var(--leading-trim);
  font-size: calc(16px + var(--slope-1px) * 2);
}

.p-golf-profile-item__body {
  padding: 0 0 0 0.75em;
  border-left: 2px solid var(--key-color);
  font-size: clamp(15px, 1.6666vw, 20px);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-golf-profile-item__body {
    font-size: calc(17px + var(--slope-1px) * 3);
  }
}

.p-golf-profile-item__body dl {
  display: flex;
}

.p-golf-profile-item__body dl dt {
  min-width: 4em;
  display: inline-block;
}

/* p-golf-message
============================== */
.p-golf-message {
  position: relative;
  padding-top: 24.890%;
  padding-bottom: 24.890%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-golf-message {
    padding-bottom: 35%;
  }
}

.p-golf-message__bg {
  position: absolute;
  display: block;
  width: calc(100% - 5.8565%);
  height: auto;
  aspect-ratio: 1283 / 740;
  bottom: 10%;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-golf-message__bg {
    bottom: 5%;
    top: auto;
  }
}

.p-golf-message__bg img {
  object-fit: contain;
  width: 100%;
  height: auto;
}

.p-golf-message::before {
  position: absolute;
  content: "";
  display: block;
  width: 120.717%;
  height: calc(100vw * 1073 / 1366);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: center / contain no-repeat url(../img/bg_light_large.png);
  z-index: 0;
}

.p-golf-message__inner {
  width: var(--inner-width);
  max-width: 800px;
  margin-inline: auto;
  position: relative;
  z-index: 5;
}

.p-golf-message__head {
  margin-bottom: calc(32px + var(--slope-1px) * 18);
}

.p-golf-message__body {
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
  font-size: calc(17px + var(--slope-1px) * 3);
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-golf-message__body {
    text-align: justify;
    word-break: normal;
  }
}
.p-golf-message__body[data-intersection] {
  opacity: 0;

  translate: 0 30px;
}

.p-golf-message__body[data-intersecting="true"] {
  opacity: 1;
  transition: all .6s ease-in-out;

  translate: 0 0;
}

/* p-golf-movie
============================== */
.p-golf-movie__main {
  position: relative;
  z-index: 1;
  padding-top: 4.032%;
  background: center / 33.308% repeat url(../img/shiba_center.png);
}

@media screen and (max-width: 767px) {
  .p-golf-movie__main {
    padding-top: 35%;
    padding-bottom: 15%;
  }
}

.p-golf-movie__main::after {
  position: absolute;
  content: "";
  top: calc(100vw * 100 / 1366 - 4px - 100vw * 413 / 1366);
  left: 0;
  width: 100%;
  height: calc(100vw * 413 / 1366);
  background: center / cover no-repeat url(../img/shiba_top.png);
  z-index: 3;
}

.p-golf-movie__main::before {
  position: absolute;
  content: "";
  bottom: calc(2px - (100vw * 244 / 1366));
  left: 0;
  width: 100%;
  height: calc(100vw * 244 / 1366);
  background: center / cover no-repeat url(../img/shiba_bottom.png);
  z-index: 3;
}

/* p-golf-movie-block
============================== */
.p-golf-movie-block {
  width: var(--inner-width);
  max-width: 1200px;
  margin-inline: auto;
  color: #fff;
  position: relative;
  z-index: 5;
}

.p-golf-movie-block__head {
  position: absolute;
  top: -35%;
  left: 0;
  z-index: 6;
}
@media screen and (max-width: 767px) {
  .p-golf-movie-block__head {
  top: -70%;
}
}

.p-golf-movie-block__body {
  position: relative;
  z-index: 1;
  padding: calc(16px + var(--slope-1px) * 24);
  border-radius: calc(6px + var(--slope-1px) * 4);
  background: #fff;
}

.p-golf-movie-block__body[data-intersection] {
  opacity: 0;

  translate: 0 30px;
}

.p-golf-movie-block__body[data-intersecting="true"] {
  opacity: 1;
  transition: all .6s ease-in-out;

  translate: 0 0;
}

.p-golf-movie-block__video {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #000;
}

.p-golf-movie-block__video img {
  opacity: .8;
}

.p-golf-movie-block__button {
  position: absolute;
  inset: 0;
  width: 420px;
  height: 60px;
  margin: auto;
  border: 1px solid #fff;
  border-radius: 30px;
  background: url(../img/play.png) 0 50%/207px auto repeat-x;
  animation: playmovie 3s linear infinite;
}

@media screen and (max-width: 767px) {
  .p-golf-movie-block__button {
    width: 215px;
    height: 40px;
    background-size: 133px auto;
    animation: playmovie_mobile 3s linear infinite;
  }
}

@keyframes playmovie {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: -207px 50%;
  }
}

@keyframes playmovie_mobile {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: -133px 50%;
  }
}

/* p-golf-car
============================== */
.p-golf-car {
  padding-top: 24.890%;
  padding-bottom: 7.6866%;
  background: url(../img/car-bg.jpg) bottom center/cover no-repeat;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-golf-car {
    background: url(../img/car-bg_sp.jpg) center/cover no-repeat;
  }
}

.p-golf-car__inner {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 43.57%;
  gap: 30px 20px;
  width: var(--inner-width);
  max-width: 1240px;
  margin-inline: auto;
}

.p-golf-car__inner[data-intersection] {
  opacity: 0;

  translate: 30px 0;
}

.p-golf-car__inner[data-intersecting="true"] {
  opacity: 1;
  transition: all .4s ease-in-out;

  translate: 0 0;
}

@media screen and (max-width: 767px) {
  .p-golf-car__inner {
    grid-template-columns: 100%;
    gap: 40px;
  }
}

.p-golf-car__contents {
  display: grid;
  grid-template-columns: 100%;
  gap: calc(40px + var(--slope-1px) * 8);
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .p-golf-car__contents {
    width: 100%;
  }
}

.p-golf-car__head {
  display: flex;
  align-items: center;
  gap: 20px clamp(20px, 4.6801vw, 30px);
}

@media screen and (max-width: 767px) {
  .p-golf-car__head {
    flex-direction: column;
  }
}

.p-golf-car__main {
  font-size: clamp(60px, 13.5483vw, 168px);
  font-family: var(--en-font-family);
  line-height: .9;
  color: #FFFED5;
}

@media screen and (max-width: 767px) {
  .p-golf-car__main {
    font-size: calc(72 * var(--slope-mobile-px));
  }
}

.p-golf-car__sub {
  margin-block: var(--leading-trim);
  font-weight: 900;
  font-size: clamp(20px, 2.7419vw, 34px);
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .p-golf-car__sub {
    text-align: center;
    font-size: clamp(20px, 6.9333vw, 26px);
    line-height: 1.3;
  }
}

.p-golf-car__body {
  margin-block: var(--leading-trim);
  font-size: clamp(17px, 1.58730vw, 20px);
  line-height: 2;
  width: 100%;
  max-width: 521px;
}

@media screen and (max-width: 767px) {
  .p-golf-car__body {
    text-align: center;
    line-height: 1.8;
    max-width: 100%;
  }
}



.p-golf-car__body span {
  display: inline-block;
}

.p-golf-car__image figcaption {
  top: -1em;
  text-align: right;
  font-size: calc(10px + var(--slope-1px) * 2);
  line-height: 1.5;
}

/* p-golf-topics
============================== */
.p-golf-topics {
  padding-top: calc(40px + var(--slope-1px) * 40);
  padding-bottom: calc(40px + var(--slope-1px) * 16);
  background-color: var(--bg-white);
  position: relative;
}

.p-golf-topics::before {
  background: center / cover no-repeat url(../img/taikai_light.png);
  position: absolute;
  content: "";
  display: block;
  width: 40.556%;
  height: 31.844vw;
  top: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-golf-topics::before {
    width: 88.5714%;
    height: 58.4vw;
  }
}

.p-golf-topics::after {
  background: center / cover no-repeat url(../img/taikai_light-02.png);
  position: absolute;
  content: "";
  display: block;
  width: 24.2313%;
  height: 22.693vw;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-golf-topics::after {
    width: 51.2%;
    height: 48vw;
  }
}

.p-golf-topics__inner {
  width: var(--inner-width);
  max-width: 1000px;
  margin-inline: auto;
  position: relative;
  z-index: 5;
}

.p-golf-topics__head {
  margin-bottom: calc(32px + var(--slope-1px) * 16);
}

/* p-golf-topics-list
============================== */
.p-golf-topics-list__item {
  --bg-color: transparent;
}

.p-golf-topics-list__item:nth-child(2n+1) {
  --bg-color: #FFFED5;
}

*[data-intersection] .p-golf-topics-list__item {
  opacity: 0;

  translate: 0 30px;
}

*[data-intersecting="true"] .p-golf-topics-list__item {
  opacity: 1;
  transition: all .6s ease-in-out;

  translate: 0 0;
}

/* p-golf-topics-item
============================== */
.p-golf-topics-item {
  display: grid;
  align-items: center;
  grid-template-columns: 4em 4.2em 1fr;
  gap: 20px;
  padding: calc(24px + var(--slope-1px) * 6) calc(16px + var(--slope-1px) * 8);
  border-radius: 5px;
  background: var(--bg-color);
  text-decoration: none;
  font-weight: 500;
  font-size: calc(17px + var(--slope-1px) * 3);

  --label-color: var(--bg-black);
}

.p-golf-topics-item._event {
  --label-color: var(--key-color);
}

@media screen and (max-width: 767px) {
  .p-golf-topics-item {
    justify-content: start;
    grid-template-columns: auto 1fr;
    gap: 16px 12px;
  }
}

.p-golf-topics-item__label {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 6px 10px;
  border-radius: 3px;
  background: var(--label-color);
  color: #fff;
  font-size: calc(16px + var(--slope-1px) * 2);
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .p-golf-topics-item__label {
    justify-self: start;
    width: 4.875em;
  }
}

@media screen and (max-width: 767px) {
  .p-golf-topics-item__text {
    grid-column: span 2;
  }
}

a.p-golf-topics-item:hover .p-golf-topics-item__text {
  text-decoration: underline;
}

/* p-golf-instagram
============================== */
.p-golf-instagram {
  position: relative;
  padding-top: calc(60px + var(--slope-1px) * 80);
  padding-bottom: calc(48px + var(--slope-1px) * 16);
}

.p-golf-instagram::before {
  position: absolute;
  content: "";
  display: block;
  width: 120.717%;
  height: calc(100vw * 1073 / 1366);
  bottom: 20.4978%;
  left: 50%;
  transform: translateX(-50%);
  background: center / contain no-repeat url(../img/bg_light_large.png);
  z-index: 0;
}

.p-golf-instagram__inner {
  position: relative;
  width: var(--inner-width);
  max-width: 1200px;
  margin-inline: auto;
  color: #fff;
  z-index: 5;
}

.p-golf-instagram__body {
  position: relative;
  z-index: 1;
}

.p-golf-instagram__foot {
  margin-top: calc(32px + var(--slope-1px) * 8);
}

.p-golf-instagram__button {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: calc(16px + var(--slope-1px) * 2) 60px calc(20px + var(--slope-1px) * 2);
  border-radius: 50px;
  background: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: calc(16px + var(--slope-1px) * 2);
  line-height: 1;
  transition: all .2s ease-out;
}

.p-golf-instagram__button:hover {
  opacity: .7;
}

.p-golf-instagram__button > i {
  content: "";
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  display: block;
  width: calc(20px + var(--slope-1px) * 2);
  height: calc(20px + var(--slope-1px) * 2);
  margin-block: auto;
}

/* p-golf-instagram-image
============================== */
.p-golf-instagram-image {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

@media screen and (max-width: 560px) {
  .p-golf-instagram-image {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-golf-instagram-image__item {
  transition: all .5s ease-in-out .3s;
}

.p-golf-instagram-image__item:nth-child(2) {
  transition-delay: .5s;
}

.p-golf-instagram-image__item:nth-child(3) {
  transition-delay: .7s;
}

.p-golf-instagram-image__item:nth-child(4) {
  transition-delay: .9s;
}

.p-golf-instagram-image[data-intersection] .p-golf-instagram-image__item {
  opacity: 0;
  transform: translateY(10px);
}

.p-golf-instagram-image[data-intersecting="true"] .p-golf-instagram-image__item {
  opacity: 1;
  transform: translateY(0);
}
