@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
/* ============================================
	流用
============================================ */
body {
  background-color: #7A0012;
}

.l-container {
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .l-container {
    min-width: 1040px;
  }
}

.l-contents {
  background-color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
}

.footer__pagetop .link {
  background: rgba(255, 156, 0, 0.87);
}
.footer__pagetop .link:hover {
  background: #ff9c00;
}

.p-breadcrumb {
  margin: 0;
  background-color: #fff;
}
.p-breadcrumb__link {
  color: #7A0012;
}

.share {
  width: 400px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .share {
    width: calc(100% - 40px);
  }
}
.share__wrap {
  padding: 30px 0;
  background-color: #fff;
}
.share .c-btn__share > span {
  color: #171c21;
}

.p-breadcrumb {
  margin: 0;
  background-color: #fff;
  color: #171c21;
}

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

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

.c-fadein {
  animation: fadeup 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeup {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.c-fadeup {
  opacity: 0;
}
.c-fadeup.is-animated {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.p-title {
  color: #FF9C00;
  text-align: center;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-title {
    margin: 0 0 40px;
    font-size: 30px;
    font-size: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-title {
    margin: 0 0 80px;
    font-size: 40px;
    font-size: 4rem;
  }
}

.p-btn {
  width: 320px;
  height: 60px;
  display: flex;
  text-align: center;
  gap: 20px;
  padding: 0 20px 0 40px;
  align-items: center;
  justify-content: center;
  background-color: #FF9C00;
  border: 1px solid #FF9C00;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 768px) {
  .p-btn {
    margin: 0 auto 100px;
  }
}
@media only screen and (min-width: 768px) {
  .p-btn {
    margin: 0 auto 150px;
  }
}
.p-btn ._txt {
  color: #000;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}
.p-btn ._arrow {
  position: relative;
  display: flex;
  z-index: 10;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.p-btn ._arrow svg {
  z-index: 1;
  stroke: #FF9C00;
  transition: stroke 0.2s ease;
}
.p-btn ._arrow::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #141414;
  transition: background 0.2s ease;
}
.p-btn:hover {
  background: rgba(255, 156, 0, 0.2);
  border-color: #fff;
}
.p-btn:hover ._txt {
  color: #fff;
}
.p-btn:hover ._arrow svg {
  stroke: #996000;
}
.p-btn:hover ._arrow::before {
  background: #fff;
}
.p-btn._more {
  width: 205px;
  margin: 20px auto 0;
  background-color: #7A0012;
  border-color: #7A0012;
}
.p-btn._more ._txt {
  color: #fff;
}
.p-btn._more ._arrow svg {
  stroke: #7A0012;
}
.p-btn._more ._arrow::before {
  background: #fff;
}
.p-btn._more:hover {
  background-color: rgba(122, 0, 18, 0.2);
  border-color: #7A0012;
}
.p-btn._more:hover ._txt {
  color: #141414;
}
.p-btn._more:hover ._arrow svg {
  stroke: #f2d0d5;
}
.p-btn._more:hover ._arrow::before {
  background: #141414;
}

.l-contents {
  /* ============================================
  	p-kv // KV
  ============================================ */
}
.l-contents .p-kv {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-kv {
    aspect-ratio: 390/370;
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-kv {
    aspect-ratio: 1512/760;
    width: 100%;
    height: auto;
  }
}
.l-contents .p-kv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.l-contents .p-kv__bg ._img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-contents .p-kv__link {
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-kv__link {
    top: 15px;
    left: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-kv__link {
    top: 30px;
    left: 30px;
  }
}
.l-contents .p-kv__link ._logo {
  display: block;
  aspect-ratio: 120/34;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-kv__link ._logo {
    width: 73px;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-kv__link ._logo {
    width: 120px;
  }
}
.l-contents .p-kv__logo {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-kv__logo {
    top: 25%;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-kv__logo {
    top: 28%;
  }
}
.l-contents .p-kv__logo img {
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-kv__logo img {
    width: 52%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-kv__logo img {
    width: 500px;
    height: 251px;
  }
}
.l-contents .p-kv__title {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  color: #FF9C00;
  font-weight: 700;
  display: block;
  line-height: 1.25;
  text-shadow: 0 0 10px #141414;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-kv__title {
    bottom: 10px;
    font-size: 30px;
    font-size: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-kv__title {
    bottom: 20px;
    font-size: 48px;
    font-size: 4.8rem;
  }
}
.l-contents {
  /* ============================================
  	p-read // LEAD
  ============================================ */
}
.l-contents .p-read {
  background-size: cover;
  width: 100%;
  height: auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-read {
    margin: 0;
    padding: 40px 10px;
    aspect-ratio: 390/300;
    background-image: url("/feature/339/img/read-bg_sp.jpg");
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-read {
    margin: -1px 0 0;
    padding: 60px 0;
    background-image: url("/feature/339/img/read-bg_pc.jpg");
  }
}
.l-contents .p-read__title {
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-read__title {
    margin: 0 0 28px;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-read__title {
    margin: 0 0 20px;
  }
}
.l-contents .p-read__title ._primary {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-read__title ._primary {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-read__title ._primary {
    font-size: 46px;
    font-size: 4.6rem;
  }
}
.l-contents .p-read__title ._secondary {
  display: inline-block;
  margin: 0 0 0 0.4em;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-read__title ._secondary {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-read__title ._secondary {
    font-size: 30px;
    font-size: 3rem;
  }
}
.l-contents .p-read__txt {
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-read__txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-read__txt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.l-contents {
  /* ============================================
  		p-reviews // REVIEWS
  ============================================ */
}
.l-contents .p-reviews {
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-reviews {
    padding: 60px 0;
    background-image: url(/feature/339/img/reviews-bg_sp.jpg);
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-reviews {
    padding: 100px 0;
    background-image: url(/feature/339/img/reviews-bg_pc.jpg);
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-reviews__box {
    margin: 0 20px;
  }
}
.l-contents .p-reviews__box > li:last-child .p-btn {
  margin: 0 auto;
}
.l-contents .p-reviews__item {
  display: flex;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-reviews__item {
    margin: 0 auto 40px;
    font-size: 30px;
    font-size: 3rem;
    flex-direction: column;
    gap: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-reviews__item {
    width: 1100px;
    margin: 0 auto 80px;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-reviews__item._odd {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-reviews__info {
    width: 536px;
  }
}
.l-contents .p-reviews__name {
  color: #FF9C00;
  text-shadow: 0 0 5px rgba(20, 20, 20, 0.5);
  font-family: "Libre Baskerville";
  font-weight: 700;
  margin: 0 0 40px;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-reviews__name {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-reviews__name {
    font-size: 40px;
    font-size: 4rem;
  }
}
.l-contents .p-reviews__img-wrap {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-reviews__img-wrap {
    margin: 0 auto;
    padding: 0 68px;
    width: 320px;
    height: 452px;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-reviews__img-wrap {
    width: 500px;
    height: 706px;
  }
}
.l-contents .p-reviews__img-wrap ._img {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-reviews__img-wrap ._img {
    width: 500px;
    height: 706px;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-reviews__img-wrap ._img {
    width: 320px;
    height: 452px;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-reviews__list {
    width: 500px;
  }
}
.l-contents .p-reviews__comment {
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid #ccc;
}
.l-contents .p-reviews__comment:last-child {
  padding: 0;
  margin: 0;
  border: none;
}
.l-contents .p-reviews__comment ._txt {
  margin: 0 0 20px;
}
.l-contents .p-reviews__comment ._txt span {
  font-weight: 900;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-reviews__comment ._txt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-reviews__comment ._txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.l-contents .p-reviews__comment ._name {
  text-align: right;
  font-size: 18px;
  font-size: 1.8rem;
}
.l-contents .p-reviews__comment ._name ._honor {
  font-size: 14px;
  font-size: 1.4rem;
}
.l-contents {
  /* ============================================
  			p-series // SERIES
  	============================================ */
}
.l-contents .p-series {
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-series {
    padding: 80px 0;
    background-image: url(/feature/339/img/series-bg_sp.jpg);
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-series {
    padding: 100px 0;
    background-image: url(/feature/339/img/series-bg_pc.jpg);
  }
}
.l-contents .p-series__title {
  color: #920E14;
}
.l-contents .p-series__list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-series__list {
    gap: 80px;
    flex-direction: column;
    width: 350px;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-series__list {
    gap: 100px;
    max-width: 1100px;
    flex-wrap: wrap;
  }
}
.l-contents .p-series__item {
  color: #141414;
  text-align: center;
}
.l-contents .p-series__item ._primary {
  font-weight: 700;
  margin: 0 0 20px;
  color: #920E14;
  font-family: "Libre Baskerville";
}
@media only screen and (max-width: 768px) {
  .l-contents .p-series__item ._primary {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-series__item ._primary {
    font-size: 30px;
    font-size: 3rem;
  }
}
.l-contents .p-series__item ._secondary {
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-series__item ._secondary {
    margin: 10px 0 0;
    font-size: 20px;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-series__item ._secondary {
    margin: 20px 0 0 0;
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.l-contents .p-series__item ._text {
  margin: 10px 0 0 0;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-series__item ._text {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-series__item ._text {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.l-contents .p-series__link {
  position: relative;
  display: block;
  transition: all 0.2s ease;
  overflow: hidden;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-series__link {
    aspect-ratio: 350/205;
    max-width: 350px;
    width: calc(100vw - 20px);
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-series__link {
    width: 500px;
    height: 278px;
    padding: 60px 0 24px;
  }
}
.l-contents .p-series__link._driver {
  background: url(/feature/339/img/series-driver.jpg) center/cover no-repeat;
}
.l-contents .p-series__link._fairway {
  background: url(/feature/339/img/series-fairway.jpg) center/cover no-repeat;
}
.l-contents .p-series__link._utility {
  background: url(/feature/339/img/series-utility.jpg) center/cover no-repeat;
}
.l-contents .p-series__link._iron {
  background: url(/feature/339/img/series-iron.jpg) center/cover no-repeat;
}
.l-contents .p-series__link::before {
  content: "";
  position: absolute;
  inset: 0;
  transition: all 0.2s ease;
}
.l-contents .p-series__link:hover {
  opacity: 0.8;
}
.l-contents {
  /* ============================================
  		p-links // LINKS
  ============================================ */
}
.l-contents .p-links {
  background-color: #7A0012;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-links {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-links {
    padding: 60px 0;
  }
}
.l-contents .p-links__list {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-links__list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-links__list {
    justify-content: center;
    gap: 70px;
  }
}
.l-contents .p-links__item {
  transition: all 0.2s ease;
}
.l-contents .p-links__item:hover {
  opacity: 0.8;
}