.caslon{
font-family: "adobe-caslon-pro", serif;
font-weight: 400;
font-style: normal;
}

.sp{
  display: none;
}

main{
  overflow: hidden;
}

.subtitle {
	position: relative;
    margin-left: 20px;
}

.subtitle::before {
    position: absolute;
    content: "";
    margin: 0 calc(50% - 50dvw);
    width: 100dvw;
    bottom: -40px;
    border-bottom: #ffffff solid 2px;
}

#golf-division .subtitle::before{
    border-bottom: #447f52 solid 2px;
}

#greeting .subtitle::before {
    border-bottom: #b09727 solid 2px;
}

.subtitle::after {
    content: '●';
    color: #fff;
    position: absolute;
    left: -20px;
    top: 9px;
    font-size: 10px;
}

#golf-division .subtitle::after {
    color: #447f52;
}

#greeting .subtitle::after {
    color: #b09727;
}

@media (max-width: 1200px) {
.subtitle::after {
    top: 7px;
}
}

@media (max-width: 750px) {
	.subtitle::after {
    top: 9px;
    font-size: 8px;
}
}

/* ヘッダー全体 */
.header-sp{
  display: none;
}

.header-nav{
    display: flex;
    justify-content: space-between;
    padding: 0 25px 0 30px;
}

.header-nav .nav-left{
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-nav .nav-left img{
    height: initial;
}

.header-nav .nav-left p{
    font-size: 30px;
}


.header-nav .nav-right{
    display: flex;
    gap: 4.6vw;
}

.header-nav .nav-right ul{
    display: flex;
    gap: 4vw;
}

.header-nav .nav-right ul li ruby rt{
    font-size: 16px;
    padding-bottom: 2px;
    color: #b09727;
}

.header-nav .nav-right .header-tell{
    position: relative;
    font-size: 20px;
    background-color: #b09727;
    border-radius: 3px;
    min-width: 190px;
    height: 60px;
    line-height: 60px;
    top: 40%;
    transform: translateY(-50%);
    padding-left: 36px;
    outline: solid 1px #fff;
    outline-offset: -6px;
    text-align: center;
	margin-top: 5px;
}

.header-nav .nav-right .header-tell:before{
    position: absolute;
    content: "";
    background-image: url(../img/tell-icon.png);
    width: 32px;
    height: 32px;
    top: 15px;
    left: 18px;
    transform: scale(0.8);
}

/* ホバーリンク */
header nav ul .has-dropdown {
  position: relative;
}

header nav ul .has-dropdown::before {
  position: absolute;
  content: "";
  background-image: url(../img/nav-drop-down.png);
  background-repeat: no-repeat;
  width: 12px;
  height: 7px;
  right: 5px;
  top: 49%;
  cursor: pointer;
  pointer-events: auto;
}

header nav ul .has-dropdown .dropdown {
  display: block;
  position: absolute;
  top: 65%;
  left: -130px;
  background-color: #ffffffe6;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
}

header nav ul .has-dropdown:hover .dropdown,
header nav ul .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .25s ease, transform .25s ease, visibility 0s;
}


header nav ul .dropdown li {
    position: relative;
    text-align: center;
    height: 50px;
    line-height: 50px;
    white-space: nowrap;
    padding: 0 20px;
}

header nav ul .dropdown li:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 85%;
  height: 3px; /* 線の太さ */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: repeating-linear-gradient(
    to right,
    #b09727 0px,
    #b09727 2px,
    transparent 3px,
    transparent 5px
  );
}


header nav ul .dropdown li a {
    color: #363636;
}

/* ハンバーガー */
.hamburger{
    display: none;
}

/* SPナビ（非表示時） */
.sp-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #152218;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;  
-webkit-overflow-scrolling: touch;
}

.sp-nav-inner h1 {
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
  color: #f0e598;
}

.sp-nav-inner {
  padding: 40px 20px 30px;
}

/* SPナビ開くとき */
.sp-nav.active {
  transform: translateX(0%);
}

.sp-nav .menu-parent {
  padding: 0 20px;
  border: 1px solid #f0e598;
  border-radius: 8px;
  margin:100px auto 0;
  background-color: #fff;
  max-width: 650px;
}

.sp-nav li {
  position: relative;
  padding-left: 15px;
}

/* .sp-nav .menu-parent>li::after {
  position: absolute;
  content: "";
  background-image: url(../img/sp-nav-arrow.png);
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  z-index: 1;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  pointer-events: none;
} */

/* まず、既存の li::after の矢印は accord だけ無効化 */
.sp-nav .menu-parent > li.accord::after { display: none; }

/* 見出しリンクを基準にする */
.sp-nav .menu-parent > li.accord > a {
  position: relative;
  display: block;
  padding-right: 44px; /* 矢印ぶんの余白 */
}

.menu-parent > li:not(.accord) > a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 30px;
  height: 30px;
  background: url(../img/sp-nav-arrow.png) no-repeat;
  transform:translateY(-50%) scale(0.8);
}

.sp-nav .menu-parent > li.accord > a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 30px;
  height: 30px;
  background: url(../img/sp-nav-arrow.png) no-repeat;
  transform:translateY(-50%) rotate(90deg) scale(0.8);
  transition: transform .25s;
}


/* .sp-nav .menu-parent > li.accord.open > a::after {
  transform: translateY(-50%) rotate(90deg);
}

.sp-nav .menu-parent > li.accord::after {
  transition: transform 0.3s;
}

.sp-nav .menu-parent > li.accord.open::after {
  transform: translateY(-50%) scale(0.8) rotate(90deg);
} */

.sp-nav .menu-parent > li:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: repeating-linear-gradient(
    to right,
    #b09727 0px,
    #b09727 2px,
    transparent 3px,
    transparent 5px
  );
}

.sp-nav a {
    display: block;
    padding: 20px 0;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    color: #363636;
    line-height: 1.5;
}

.sp-nav a.header-btn{
    position: relative;
    font-size: 26px;
    background-color: #b09727;
    border-radius: 3px;
    width: 270px;
    height: 80px;
    line-height: 80px;
    top: 5%;
    padding: 0 0 0 40px;
    margin: auto;
    outline: solid 1px #fff;
    outline-offset: -6px;
    text-align: center;
    display: block;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    margin-bottom: 50px;
}

.sp-nav a.header-btn:before {
    position: absolute;
    content: "";
    background-image: url(../img/tell-icon-sp.png);
    width: 45px;
    height: 45px;
    top: 18px;
    left: 32px;
    transform: scale(0.8);
}

.sp-nav .menu-child li{
    position: relative;
}

.sp-nav .menu-child li:before{
    position: absolute;
    display: block;
    content: "";
    background-color: #d2d2d2;
    width: 10px;
    height: 2px;
    top: 51%;
    transform: translateY(-50%);
    left: -5px;
}

.sp-nav .menu-child li a{
    padding: 10px 0;
}

@media (max-width: 1200px) {
#header{
position: fixed;
height: initial;
}

.header-sp{
  display: flex;
  position: relative;
  top: 0;
  width: 100%;
  height: 100px;
  line-height: 100px;
  background-color: #152218;
}

.header-sp .logo-sp{
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: 15px;
}

.header-sp .logo-sp img{
    height: initial;
}

.header-sp .logo-sp p{
    font-size: 30px;
}

.header-nav {
  display: none;
}

.hamburger {
  display: flex;
}

.sp-nav {
  display: block;
}

/* ハンバーガーのベース */
.hamburger {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: #b09727;
    cursor: pointer;
    text-align: center;
    z-index: 9999;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 20px;
    cursor: pointer;
    border-bottom: solid 2px #fff;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.hamburger >span{
  width: 40px;
  }

.hamburger span:nth-child(1) {
    top: 14px;
}

.hamburger span:nth-child(2) {
    top: 26px;
}

.hamburger span:nth-child(3) {
 top:38px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(14px) rotate(45deg);
  width: 40px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  width: 40px;
}

.hamburger::after {
    position: absolute;
    bottom: -33px;
    left: 0;
    right: 0;
    content: "MENU";
    font-size: 18px;
    color: #FFF;
    font-weight: 300;
    margin: auto;
}

/* アコーディオン中身を最初は隠す */
.menu-child {
  display: block;
  padding-left: 1em;
  margin-top: -15px;
  padding-bottom: 15px;
}

/* .accord.open .menu-child {
  display: block;
  animation: slideDown 0.3s ease;
  margin-top: -15px;
  padding-bottom: 15px;
} */

/* 任意：アニメーション効果 */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
}

@media (max-width: 500px) {

  .header-sp .logo-sp {
    gap: 5px;
}

.header-sp .logo-sp img {
    height: initial;
    transform: scale(0.7);
}

.header-sp .logo-sp p {
  font-size: 20px;
}

.header-sp {
  width: 100%;
  height: 75px;
  line-height: 75px;
}

.hamburger {
    width: 60px;
    height: 60px;
    top: 7px;
    right: 6px;
}

.hamburger::after {
  bottom: -26px;
  font-size: 12px;
}

.hamburger >span {
    width: 35px;
}

.hamburger span:nth-child(1) {
    top: 13px;
}

.hamburger span:nth-child(2) {
    top: 23px;
}

.hamburger span:nth-child(3) {
 top:33px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
  width: 30px;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  width: 30px;
}

.sp-nav a {
  font-size: 14px;
}
}

/* mv */
.mv {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* 追加：画面縮小時も縦横比を維持 */
  background: url("../img/mv-pc.jpg") no-repeat center center / cover;
  overflow: hidden;
  margin-top: 40px;
    max-height: 850px;
}

.mv-content {
  width: 100%;
  height: 100%;
  position: relative;
}

.mv-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.mv .mv-inner h1{
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
    text-align: center;	
}

.mv .mv-inner h1 .mv-logo{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mv .mv-inner h1 p{
  font-size: 45px;
  margin-top: 0px;
  white-space: nowrap;

}

.mv .mv-inner .mv-text{
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  line-height: 2;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
    line-height: 1.7;
}

@media (max-width: 1200px) {
.mv {
  margin-top: 100px;
}

.mv .mv-inner h1 .mv-logo img{
    transform: scale(0.6);
}

.mv .mv-inner h1 p{
  font-size: 32px;
  margin-top: -20px;
}


.mv .mv-inner .mv-text {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    line-height: 2;
    letter-spacing: 0.01em;
    text-align: center;
}
}

@media (max-width: 750px) {
  .mv {
  position: relative;
  width: 100%;
  height:calc(100vh - 100px);
  aspect-ratio: none;
  background: url("../img/mv-sp.jpg") no-repeat center center / cover;
  overflow: hidden;
  margin-top: 100px;
}

.mv .mv-inner h1{
  top: 33%;
}

.mv .mv-inner h1 .mv-logo img {
    transform: scale(0.8);
  }

.mv .mv-inner h1 p{
  font-size: 40px;
  margin-top: -10px;
}

.mv .mv-inner .mv-text {
    top: 52%;
    font-size: 22px;
}

}

@media (max-width: 500px) {
.mv {
  height:calc(100vh - 75px);
  margin-top: 30px;
}
.mv .mv-inner h1{
    text-align: center;	
	}
 .mv .mv-inner h1 p {
    font-size: 25px;
    margin-top: 0px;
	}
.mv img {
    max-width: 100px;
  }

  .mv .mv-inner h1 p {
      font-size: 30px;
      margin-top: -20px;
  }

  .mv .mv-inner .mv-text {
      top: 56%;
            font-size: 4.5vw;
    }
}


/* supporting */



#supporting {
  background-color: #1a2b1e;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
}

.supporting__innner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.supporting__bg-wrapper {
  position: relative;
  margin: 0 calc(50% - 50dvw);
  width: 100dvw;
  background: linear-gradient(to top right, #273e2c 50%, transparent 50%);
  color: #fff;
  padding: 80px 20px;
  overflow: hidden;
}
.supporting__head {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.supporting__title {
  font-size: 120px;
  margin-bottom: 4px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.supporting__subtitle {
  position: relative;
  font-size: 20px;
  margin-bottom: 20px;
  color: #ffffff;
    margin-top: -25px;
}

.supporting__content {
  display: flex;
  justify-content: center;
  gap: 90px;
  max-width: 1450px;
  margin: 100px auto 0;
  padding: 0 20px;
}

.supporting__left {
  position: relative;
}

.supporting__img-box {
  position: relative;
}

.supporting__img-box img {
  display: block;
}

.player-img {
  position: relative;
  z-index: 1;
}

.vertical-name-img {
  position: absolute;
  width:10%;
  height: 90%;
  bottom: 43px;
  left: 4.5vw;
}

.supporting__right {
  margin-top: 100px;
}
@media (max-width: 600px) {
.supporting__right {
  margin-top: 40px;
}	
}

.player-label {
  font-size: 90px;
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
  white-space: nowrap;
  letter-spacing: 0.1em;
}

.player-name {
  font-size: 30px;
  line-height: 1.6;
}

.player-name-ruby {
  font-size: 20px;
}

.supporting__table-box {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
}
h4{
    font-size: 33px;
    text-align: center;
    margin-top: 50px;
    font-weight: 500;	
}

.supporting__table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
}



.supporting__table th,
.supporting__table td {
  padding: 12px;
  border-bottom: 1px solid #ccc;
  text-align: left;
}

.supporting__table th {
  width: 30%;
  font-size: 18px;
  white-space: nowrap;
    font-weight: 500;
}

.supporting__table td{
  font-size: 17px;
  white-space: nowrap;
}





.supporting__table02 {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
}
.supporting__table02 th,
.supporting__table02 td {
  padding: 12px;
  border-bottom: 1px solid #ccc;
  text-align: left;
}

.supporting__table02 th {
  width: 30%;
  font-size: 18px;
  white-space: nowrap;
    font-weight: 500;
}

.supporting__table02 td{
  font-size: 17px;
  white-space: nowrap;
}




/* スマホ時にカード化 */
@media (max-width: 750px) {
  .supporting__table02 {
    border-collapse: separate;
    border-spacing: 0 12px; /* 行間 */
  }
  .supporting__table02 thead { display: none; }

  .supporting__table02 tr {
    display: block;
    padding: 10px 12px;
	border-bottom: solid 1px #fff;
  }

  .supporting__table02 th,
  .supporting__table02 td {
    display: block;
    width: 100%;
    white-space: normal;
    border: none;
    padding: 6px 0;

  }

  /* ラベル（tdの data-label を表示） */
  .supporting__table02 td::before {
    content: attr(data-label);
    display: block;
    color: #a5d6a7;                  /* 薄いグリーン */
    font-weight: 600;
    margin-bottom: 2px;
  }
}





.supporting__banner {
  margin: 0 calc(50% - 50dvw);
  width: 100dvw;
}

.supporting__banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* responsive */
@media (max-width: 1200px) {
.supporting__title {
    font-size: 80px;
    margin-bottom: 4px;
    font-weight: 500;
  }

.supporting__subtitle {
    font-size: 18px;
}
.supporting__content {
    flex-direction: column;
    gap: 0;
}

.supporting__left {
    margin: auto;
}
.player-label {
    font-size: 70px;
}

.player-name {
    font-size: 28px;
    line-height: 1.6;
    margin-top: 30px;
}

.player-name-ruby {
    font-size: 16px;
}
}

@media (max-width: 750px) {
 .supporting__table {
    width: 100%;
  }

.supporting__table tr {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

.supporting__table th{
    display: block;
    width: 100%;
  }
  
.supporting__table td {
    display: block;
    width: 100%;
    padding: 8px 0;
    text-align: left;
    border: none;
  }
}

@media (max-width: 500px) {
.supporting__title {
        font-size: 50px;
    }

.supporting__subtitle {
    font-size: 14px;
}

.vertical-name-img {
		position: absolute;
        height: 90%;
        bottom: initial;
        left: 5.5vw;
        top: 15px;
  }  

.player-label {
    font-size: 40px;
}
  
 .supporting__table-box {
    margin: 50px auto;
    padding: 0;
}

.player-name {
      font-size: 20px;
      line-height: 1.6;
      margin-top: 20px;
  }

.player-name-ruby {
      font-size: 14px;
  }

.supporting__table th{
    font-size: 17px;
    white-space: normal;
  }
  
.supporting__table td {
    font-size: 16px;
    white-space: normal;
  }
}

@media (max-width: 375px) {
.supporting__title {
        font-size: 45px;
    }
}

/* golf division */
section#golf-division {
      position: relative;
    margin: 0 calc(50% - 50dvw);
    width: 100dvw;
    background: linear-gradient(to top left, #dbe0df 50%, transparent 50%);
    background-color: #ebebeb;
    padding: 80px 0px;
    overflow: hidden;
}

#golf-division .golf__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

#golf-division .golf__head {
  text-align: left;
  margin-bottom: 60px;
}

#golf-division .golf__title {
  font-size: 120px;
  margin-bottom: 4px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color:#c6d3c2;
}

#golf-division .golf__title span {
  color:#447f52;
}

#golf-division .golf__subtitle {
  position: relative;
  font-size: 20px;
  margin-bottom: 20px;
  color: #363636;
    margin-top: -25px;
}

#golf-division .golf__subtitle span{
  color: #447f52;
}

#golf-division .golf__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- 左カラム：画像関連 ---------- */
#golf-division .golf__image-wrapper {
  position: relative;
  width: 45%;
  padding: 0 0 90px 50px;
}

#golf-division .golf__image-inner {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
}

#golf-division .golf__img-01,
#golf-division .golf__img-02{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

#golf-division .golf__img-02{
  transform: translateY(60px);
}

/* 三角背景 */
#golf-division .golf__image-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 618px solid #7da487;
  border-top: 480px solid transparent;
  z-index: 0;
}

/* ---------- 右カラム：テキストボックス ---------- */
#golf-division .golf__text-box {
  width: 50%;
  background-color: #fff;
  border: 1px solid #cfcfcf;
  outline: solid 1px #d4d2b0;
  outline-offset: -16px;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  position: relative;
  z-index: 1;
}

#golf-division .golf__catch {
  background-color: #447f52;
  color: #fff;
  height: 65px;
  line-height: 65px;
  font-size: 20px;
  margin-bottom: 24px;
  text-align: center;
    white-space: nowrap;
}

#golf-division .golf__description p {
  color: #333;
  margin-bottom: 20px;
}

#golf-division .golf__description{
  padding: 22px;
}


@media (max-width: 1300px) {
  #golf-division .golf__image-wrapper{
    width: 100%;
    max-width: 650px;
  }

  #golf-division .golf__image-wrapper::before {
    border-left: 680px solid #7da487;
    border-top: 400px solid transparent;
}

  #golf-division .golf__text-box {
    width: 100%;
  }

  #golf-division .golf__content {
    flex-direction: column;
    gap: 60px;
  }

  #golf-division .golf__image-inner {
    flex-direction: row;
    gap: 12px;
  }

}

@media (max-width: 1200px) {
  #golf-division .golf__title {
    font-size: 60px;
    margin-bottom: 4px;
    font-weight: 500;
  }

  #golf-division .supporting__subtitle {
  font-size: 18px;
}
}

@media (max-width: 750px) {
#golf-division .sp{
  display: block;
}

#golf-division .golf__inner {
  padding: 0;
}

#golf-division .golf__subtitle {
    font-size: 17px;
}

  #golf-division .golf__content {
    gap: 80px;
    padding: 0 10px;
  }

  #golf-division .golf__image-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  #golf-division .golf__image-inner {
    gap: 8px;
    justify-content: center;
  }

  #golf-division .golf__img-01,
  #golf-division .golf__img-02 {
    width: 45%; 
    height: auto;
  }

  #golf-division .golf__img-02 {
    transform: translateY(15px);
  }

  #golf-division .golf__image-wrapper::before {
        bottom: -30px;
        border-left: 85vw solid #7da487;
        border-top: 230px solid transparent;
  }

  #golf-division .golf__text-box {
    width: 100%;
    padding: 24px;
  }

  #golf-division .golf__catch {
    font-size: 18px;
    height: auto;
    line-height: 1.6;
    padding: 12px 16px;
    white-space: normal;
  }

  #golf-division .golf__description {
    padding: 16px;
  }

  #golf-division .golf__description p {

  }
}

@media (max-width: 500px) {
  #golf-division .golf__title {
    font-size: 50px;
  }
}

@media (max-width: 375px) {
  #golf-division .golf__title {
    font-size: 50px;
    line-height: 1.1;
}
}


/* introduction */
#introduction {
  background: url("../img/Introduction-bg.jpg") center center / cover no-repeat;
  padding: 100px 20px;
}

.introduction__inner {
  position: relative;
  background-color: #f8fbf9;
  max-width: 1200px;
  width: 90%;
  margin: auto;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  outline: solid 1px #d4d2b0;
  outline-offset: -18px;
}

.introduction__inner:before{
  position: absolute;
  content: "";
  width: 75%;
  height: 2px;
  top:40%;
  left: 50%;
  transform: translateX(-50%);
  background-color:#d4d2b0
}


/* タイトル・サブタイトル */
 .introduction__title {
  font-size: 90px;
  color: #7e847c;
  font-weight: 500;
  margin-bottom: -30px;
  letter-spacing: 0.1em;
}

.introduction__subtitle {
  position: relative;
  font-size: 20px;
  color: #363636;
  margin-bottom: 80px;
  display: inline-block;
  letter-spacing: 0.05em;
margin-top: -25px;
}

/* リスト */
.introduction__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 500px;
    margin: auto;
}

.introduction__list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  color: #333;
}

.introduction__list li::before {
    content: '●';
    color: #62926e;
    position: absolute;
    left: 0;
    top: 7px;
	 font-size: 9px;
}

@media (max-width: 750px) {
.introduction__inner:before {
    width: 70%;
    top: 38%;
}

.introduction__title {
  font-size: 50px;
  margin-bottom: -10px;
}

.introduction__subtitle {
    font-size: 18px;
}
}

@media (max-width: 500px) {
.introduction__title {
  font-size: 35px;
}

.introduction__inner:before {
    top: 31%;
}
	.introduction__inner{
	    outline-offset: -10px;	
	}
	.introduction__inner{
    padding: 60px 30px;		
	}
#golf-division .golf__text-box {
	outline-offset: -10px;
	}
.introduction__subtitle {
    font-size: 16px;
    margin-bottom: 30px;
}

#introduction {
    padding: 100px 0;
}
.introduction__list {
    margin-top: 15px;
}

.introduction__list li::before {
    top: 5px;
}
}

/* link-area */
#link-area{
  background-color: #ffffff;
  padding: 100px 2.5vw;
}

.link-area__inner{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1700px;
  margin: auto;
  gap: 4vw;
}

.flex-item{
  display: block;
  flex: 1 1 0;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.thumb{
  position: relative;
  width: 100%;
  aspect-ratio: 17 / 10;
  background-size: cover;
  background-position: center;
}

.company .thumb{ background-image: url("https://fade-draw.net/wp-content/themes/golfthemes/img/link-area-01.jpg"); }
.access  .thumb{ background-image: url("https://fade-draw.net/wp-content/themes/golfthemes/img/link-area-02.jpg"); }

.thumb::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(#00000026, #00000026);
}

#link-area .text-box{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1.2;
  z-index: 1;
  color: #ffffff;
}

#link-area .text-box .en{
  font-size: clamp(20px, 4.2vw, 56px);
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  font-weight: 700;
}

#link-area .text-box .jp{
  font-size:18px;
  margin: 0;
}

#link-area .flex-item:hover .thumb::after{
  background: linear-gradient(#00000040, #00000040);
}

/* --- SP調整 --- */
@media (max-width: 750px) {
  #link-area{
    background-color: #ffffff;
    padding: 50px 2.5vw;
  }

  #link-area .link-area__inner{
    flex-direction: column;
  }

  #link-area .link-area__inner .flex-item{
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    flex:none;
  }

  #link-area .text-box .en{
    letter-spacing: 0.08em;
  }
}


/* greeting */
#greeting .greeting__bg-wrapper {
    position: relative;
    margin: 0 calc(50% - 50dvw);
    width: 100dvw;
    background: linear-gradient(to top right, #273e2c 50%, transparent 50%);
    color: #fff;
    padding: 80px 20px;
    overflow: hidden;
}
.greeting__image-wrapper img{
    max-width: 380px;
    width: 100%;
	
}

#greeting .greeting__innner{
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

#greeting h2{
    font-size: 90px;
    margin-bottom: 4px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

#greeting  .greeting__subtitle {
    position: relative;
    font-size: 20px;
    margin-bottom: 20px;
	    margin-top: -25px;
}

#greeting  .greeting__subtitle span{
  color: #b09727;
}

#greeting .greeting__content{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 150px auto 0;
    gap: 5vw;
}

#greeting .greeting__text-box{
  max-width: 600px;
}

#greeting .greeting__catch{
background-color:#b09727;
    color: #fff;
    height: 65px;
    line-height: 65px;
    font-size: 20px;
    margin-bottom: 40px;
    text-align: center;
    white-space: nowrap;
}

#greeting .greeting__text-box p{
  letter-spacing: 0.1em;
}

#greeting .greeting__text-box .representative-name{
    margin-top: 40px;
    font-size: 20px;
    text-align: right;
}

#greeting .greeting__text-box .main-text{
    color: #fff;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
  #greeting .greeting__content{
    margin: 50px auto 0;
    flex-direction: column-reverse;
  }

  #greeting .greeting__text-box {
    width: 100%;
    max-width: initial;
}

    #greeting .greeting__image-wrapper {
      max-width: 650px;
      margin: auto;
  }
}

@media (max-width: 750px) {
  #greeting .sp{
    display: block;
  }

  #greeting h2 {
    font-size: 60px;
}

#greeting .greeting__subtitle {
    font-size: 17px;
}

  #greeting .greeting__catch {
    height: auto;
    line-height: 1.6;
    padding: 12px 16px;
    white-space: normal;
    margin-bottom: 40px;
}

  #greeting .greeting__image-wrapper {
      width: 70%;
  }

#greeting .greeting__text-box .main-text{
    color: #fff;
    margin-bottom: 20px;
}

#greeting .greeting__text-box .representative-name {
    font-size: 18px;
}
}

@media (max-width: 500px) {
#greeting .greeting__innner {
  padding: 0;
}

    #greeting h2 {
    font-size: 50px;
}


	#greeting .greeting__catch{

    font-size: 18px;		
	}
}

@media (max-width: 350px) {
    #greeting h2 {
        font-size: 45px;
    }
}

/* map */
#map .map-wrapper iframe{
    margin: 0 calc(50% - 50dvw);
    width: 100dvw;
}
#map{
height: 380px;	
}
/* footer */
footer .c-floatbnr {
    position: fixed;
    bottom: 20px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 998;
    transform: translateY(110px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

footer .c-floatbnr.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

footer .c-floatbnr li {
    list-style: none;
}

footer .tel-icon {
    display: block;
    font-size: 20px;
    color: #fff;
    background-color: #b09727;
    width: 230px;
    height: 70px;
    line-height: 70px;
    outline: solid 1px #fff;
    outline-offset: -6px;
    padding-left: 28px;
    border-radius: 3px;
	display: flex;
    justify-content: center;
    align-items: center;
}
footer .tel-icon p{
font-size:24px;	
}
footer .tel-icon::before {
    position: absolute;
    content: "";
    background-image: url(../img/tell-icon.png);
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    top: 24px;
    left: 14px;
}
.c-pagetop img{
    max-width: 60px;
}
@media screen and (max-width: 1200px) {
.c-floatbnr .footer-btn {
    transform: scale(0.8);
}

  footer .c-floatbnr .c-pagetop img {
  transform: scale(0.7);
}

footer .c-floatbnr {
    gap: 0;
}

footer .tel-icon::before {
    top: 20px;
}
}

@media (max-width: 750px) {
footer{
  height: auto;
}

footer .sp{
  display: block;
}

footer p:not(.tel-box-text) {
  font-size: 12px;
    line-height: 1.2;
    padding: 10px 0 15px;
}

footer .c-floatbnr {
    right: 0px;
    bottom: 0px;
  }

.c-floatbnr .footer-btn {
    transform: scale(0.7);
    margin-right:-30px;
}
}

/* ローディングアニメーション */
/* 画面全体のオーバーレイ */
.loader-overlay{
  position: fixed; inset: 0; z-index: 9999;
  background: #152218;                 /* 背景色（指定どおり） */
  display: grid; place-items: center;
  opacity: 1; visibility: visible;
  transition: opacity .38s ease, visibility 0s linear .38s;
}
.loader-overlay.hide{
  opacity: 0; visibility: hidden;
}

/* スクロールロック（ローダー中だけ） */
html.is-loading { overflow: hidden; }

/* ====== ドットアニメ（指定コードを色対応&微調整） ====== */
.loader{
  width: 15px;
  aspect-ratio: 1;
  border-radius: 50%;
  clip-path: inset(-45px);
  color: #b09727; 
  background: none; 
  box-shadow: -60px 15px,-60px 15px,-60px 15px;
  transform: translateY(-15px);
  animation: l19 1.5s infinite linear;
}

@keyframes l19{ 
  16.67% {box-shadow:-60px 15px,-60px 15px, 19px 15px}
  33.33% {box-shadow:-60px 15px,  0px 15px, 19px 15px}
  40%,60%{box-shadow:-19px 15px,  0px 15px, 19px 15px}
  66.67% {box-shadow:-19px 15px,  0px 15px, 60px 15px}
  83.33% {box-shadow:-19px 15px, 60px 15px, 60px 15px}
  100%   {box-shadow: 60px 15px, 60px 15px, 60px 15px}
}
/* 初期は透明。レイアウトは維持されるのでCLSは起きない */
.mv-fade {
  opacity: 0;
  transition: opacity .6s ease; /* 好みで0.4〜0.8s程度 */
}
/* 表示状態 */
.mv-fade.is-visible {
  opacity: 1;
}

/* 動きが苦手な方へ配慮 */
@media (prefers-reduced-motion: reduce){
  .loader { animation: none; }
  .loader-overlay { transition: opacity .2s ease; }
}
