@charset "utf-8";
/* =============================================================
    common 共通
============================================*/
:root {
	--color_BLK : #252525;
	--color_GRN : #03914c;
	--color_LGR : #bae937;
	--color_RED : #f40b00;
	--color_BLU : #0856f5;
	--color_YLW : #ffff00;
	--gap_96px : clamp(32px, 12vw, 96px);
	--gap_80px : clamp(27px, 10vw, 80px);
	--gap_64px : clamp(21px, 8vw, 64px);
	--gap_48px : clamp(16px, 6vw, 48px);
	--gap_32px : clamp(11px, 4vw, 32px);
	--gap_24px : clamp(8px, 3vw, 24px);
	--gap_16px : clamp(5px, 2vw, 16px);
	--gap_8px : clamp(3px, 1vw, 8px);
}

body {
	width: 100%;
	position: relative;
}

body,figure,h1,h2,h3,h4,h5,h6,li,ol,p,ul,dl,dt,dd {
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5,h6,p {
	font-size: inherit;
	font-weight: 500;
}
li,ol,ul {
	list-style-type: none;
}
table {
	width: 100%;
}

#page {
	font-size: clamp(18px, 2.2vw, 20px);
	color: var(--color_BLK);
	font-family: "Noto Sans CJK JP", Lato, "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.6;
	margin: 0 auto;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
	position: relative;
}

.top__bg {
	position: relative;
	padding-bottom: var(--gap_64px);
}

.top__bg::before {
	content: "";
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background: url(/event/golfbag_cup2026/images/bg.jpg) no-repeat top center / cover;
	z-index: -2;
}


#page * {
	box-sizing: border-box;
}
#page img {
	max-width: 100%;
-o-object-fit: cover;
object-fit: cover;
}

#page a {
	color: #252525;
	transition: all 0.3s;
	text-decoration: none;
}
#page a[tabindex*="-1"] {
	pointer-events: none;
}
#page a[tabindex*="-1"]:hover {
	opacity: 1;
}
/* リンクとボタンのoutlineを非表示にする */
#page a,
#page button {
	outline: none;
	cursor: pointer;
}
/* ボタンとリンクにフォーカスした時にoutlineが表示されるようにする */
#page a:focus-visible {
	outline: #3683BF solid 2px;
	outline-offset: 2px;
}
#page button:focus-visible {
	outline: #3683BF solid 2px;
	outline-offset: 1px;
}
#page a:hover {
	cursor: pointer;
	text-decoration: none;
	opacity: 0.7;
}
#page label {
	cursor: pointer;
}

#page em {
	font-style: normal;
	font-weight: bold;
}

#page picture { display: block;}

.pc {
display: block !important;
}

.sp {
display: none !important;
}

.ib {
	font-size: inherit !important;
	display: inline-block;
}

#page_top {
position: fixed;
right: 1.5%;
bottom: 2%;
display: block;
width: min(20vw,100px);
z-index: 999;
}

#page_top img { width: 100%;}

.top__movie {
	margin: var(--gap_24px) auto;
}

.movie {
position: relative;
max-width: 900px;
aspect-ratio: 16/9;
margin: 0 auto var(--gap_32px);
overflow: hidden;
}

.tver_area {
	text-align: center;
	text-shadow: 0 0 0.2em #fff,0 0 0.2em #fff,0 0 0.3em #fff,0 0 0.3em #fff,0 0 0.3em #fff;
}

.tver_info {
	margin-bottom: var(--gap_8px);
}

.tver_info em {
	font-size: 1.3em;
}

.tver_area .tver_info_btm {
	color: inherit;
	margin: var(--gap_16px) auto 0;
	text-align: center;
	line-height: 1.2;
}

.tvo-video {
position: absolute;
width: 100%;
height: 100%;
top: 0;
right: 0;
}

	@media not screen and (min-width: 767px) {
	#page_top {
		z-index: 800;
	}
}

/*================================
アニメーションcss
================================*/
.animated {
    animation-fill-mode: both;
    animation-duration: 0.5s;
}

.fadeIn{
    opacity:0;
}


/* その場で */
.fadeIn.animated {
    animation-name:fadeInAnime;
}
    
@keyframes fadeInAnime{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 下から */
.fadeUp {
    opacity:0;
}
.fadeUp.animated{
    animation:fadeUpAnime 1.3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeUpAnime{
    0% {
		transform: translateY(30px);
		opacity: 0;
	}
	80% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 上から */

.fadeDown {
    opacity:0;
}

.fadeDown.animated{
    animation-name:fadeDownAnime;
}

@keyframes fadeDownAnime{
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 左から */

.fadeLeft {
    opacity:0;
}

.fadeLeft.animated{
    animation-name:fadeLeftAnime;
}

@keyframes fadeLeftAnime{
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 右から */

.fadeRight {
    opacity:0;
}

.fadeRight.animated {
    animation-name:fadeRightAnime;
}

@keyframes fadeRightAnime{
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.text-focus-in {
	opacity:0;
}

/* text出現 fuwa */
.text-focus-in.animated {
	-webkit-animation: text-focus-in 0.6s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	animation: text-focus-in 0.6s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@-webkit-keyframes text-focus-in {
	0% {
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}
@keyframes text-focus-in {
	0% {
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}

/* text出現 hirogaru */
.tracking-in-expand {
	opacity:0;
}

.tracking-in-expand.animated {
	-webkit-animation:tracking-in-expand .7s cubic-bezier(.215,.61,.355,1.000) both;
	animation:tracking-in-expand .7s cubic-bezier(.215,.61,.355,1.000) both
}

@-webkit-keyframes tracking-in-expand {
	0% {
		letter-spacing:-.5em;
		opacity:0
	}
	40% {
		opacity:.6
	}
	100% {
		opacity:1
	}
}
	@keyframes tracking-in-expand {
		0% {
			letter-spacing:-.5em;
			opacity:0
		}
		40% {
			opacity:.6
		}
		100% {
			opacity:1
		}
	}

/* 右傾く */
.fadeRotateRight {
	opacity: 0;
}
.fadeRotateRight.animated {
	animation:fadeRotateRight 1s ease-in-out both;
}

@keyframes fadeRotateRight {
	0% {
		opacity: 0;
		rotate: 0deg;
	}
	25% {
		opacity: 1;
	}
	50% {
		rotate: -20deg;
	}
	100% {
		rotate: 0deg;
		opacity: 1;
	}
}

/* 左傾く */
.fadeRotateLeft {
	opacity: 0;
}
.fadeRotateLeft.animated {
	animation:fadeRotateLeft 1s ease-in-out both;
}

@keyframes fadeRotateLeft {
	0% {
		opacity: 0;
		rotate: 0deg;
	}
	25% {
		opacity: 1;
	}
	50% {
		rotate: 20deg;
	}
	100% {
		rotate: 0deg;
		opacity: 1;
	}
}

/* 滑らかに変形して出現 */
.smoothTrigger {
	opacity:0;
}

.smoothTrigger.animated{
	animation-name:smoothAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	transform-origin: left;
}

@keyframes smoothAnime{
	from {
		transform: translate3d(0, 60%, 0) skewY(12deg);
		opacity:0;
	}

	to {
		transform: translate3d(0, 0, 0) skewY(0);
		opacity:1;
	}
}

/*背景→text出現 （span）*/

.bgextend {
	opacity: 0;
}
.bgextend.animated{
	animation-name:bgextendAnimeBase;
	animation-timing-function: ease-in-out;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
}
@keyframes bgextendAnimeBase{
	0% { opacity:0; }
	50% { opacity:0; }
	100% { opacity:1; }
}

/*左から*/

.bgLRextend.animated::before{
	--band-padding: 0.25em;
	animation-name:bgLRextendAnime;
	animation-duration: 0.8s;
	animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
	animation-fill-mode: both;
	content: "";
	position: absolute;
	width: 100%;
	height: calc(100% + var(--band-padding)* 2);
	top: calc(var(--band-padding)* -1);
	background-color: #fff;/*伸びる背景色の設定*/
	z-index: 1;
}
@keyframes bgLRextendAnime{
	0% {
	transform-origin:left;
	transform:scaleX(0);
	}
	50% {
	transform-origin:left;
	transform:scaleX(1);
	}
	50.001% {
	transform-origin:right;
	}
	100% {
	transform-origin:right;
	transform:scaleX(0);
	}
}

/*右から*/
.bgRLextend::before{
	animation-name:bgRLextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;/*伸びる背景色の設定*/
}
@keyframes bgRLextendAnime{
	0% {
	transform-origin:right;
	transform:scaleX(0);
	}
	50% {
	transform-origin:right;
	transform:scaleX(1);
	}
	50.001% {
	transform-origin:left;
	}
	100% {
	transform-origin:left;
	transform:scaleX(0);
	}
}

/*下から*/
.bgDUextend::before{
	animation-name:bgDUextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;/*伸びる背景色の設定*/
}
@keyframes bgDUextendAnime{
	0% {
	transform-origin:bottom;
	transform:scaleY(0);
	}
	50% {
	transform-origin:bottom;
	transform:scaleY(1);
	}
	50.001% {
	transform-origin:top;
	}
	100% {
	transform-origin:top;
	transform:scaleY(0);
	}
}

/*上から*/
.bgUDextend::before{
	animation-name:bgUDextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #666;/*伸びる背景色の設定*/
}
@keyframes bgUDextendAnime{
	0% {
	transform-origin:top;
	transform:scaleY(0);
	}
	50% {
	transform-origin:top;
	transform:scaleY(1);
	}
	50.001% {
	transform-origin:bottom;
	}
	100% {
	transform-origin:bottom;
	transform:scaleY(0);
	}
}

/*text左から右*/
.leftAnime {
    opacity: 0;
    overflow: hidden;
    display: inline-block;
}

.leftAnimeInner {
	display: inline-block;
}

.slideAnimeLeftRight {
    animation-name: slideTextX100;
    animation-duration: 1s;
    animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes slideTextX100 {
	from {
	transform: translateX(-100%);
	/*要素を左の枠外に移動*/
	opacity: 0;
	}

	to {
	transform: translateX(0);
	/*要素を元の位置に移動*/
	opacity: 1;
	}
}

/*================================
共通パーツ
================================*/
.inner_wide {
	padding-inline: min(5vw,80px);
}

.inner_contents {
	max-width: min(85vw,1355px);
	margin-inline: auto;
	padding-inline: 25px;
}

@media not screen and (min-width: 768px) {
	.inner {
	width: 94%;
	padding-inline: calc((16/750)*100vw);
	}

	.inner_wide, .inner_contents {
	max-width: 94%;
	padding-inline: 3vw;
	margin-inline: auto;
	}

	.pc {
	display: none !important;
	}
	
	.sp {
	display: block !important;
	}
}

.sub_title {
	width: fit-content;
	font-size: 1.4em;
	font-weight: 700;
	margin: 0 auto var(--gap_48px);
	padding-bottom: var(--gap_16px);
	position: relative;
}

.sub_title::after {
	content: '';
	display: block;
	background: var(--color_GRN);
	width: 80px;
	height: 3px;
	position: absolute;
	bottom: 0;
	left: 50%;
    transform: translateX(-50%);
}

.mt30 {
	margin-top: var(--gap_32px);
}

.mb60 {
	margin-bottom: var(--gap_64px);
}

/* =============================================================
	main コンテンツ
============================================*/
.mv__img img {
	width: 100%;
	display: block;
}

.date {
	width: min(70%,1240px);
	margin: var(--gap_64px) auto; 
}

.date.mb80 {
	margin-bottom: var(--gap_80px);
}

.shadow {
	text-shadow: 0 0 0.2em #fff,0 0 0.2em #fff,0 0 0.3em #fff,0 0 0.3em #fff,0 0 0.3em #fff;
}

/*================================
contents
================================*/
.contents {
	background-image: url("/event/golfbag_cup2026/images/main_bg.png");
	background-attachment: fixed;
	background-size: 100% auto;
	background-position: center;
	padding: var(--gap_80px) 0 0;
}

.contents__bg {
	background:  rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 20px #696969;
	padding: var(--gap_64px) var(--gap_48px);
	margin: 0 auto var(--gap_80px);
}

@media only screen and (max-width: 767px) {
	.contents {
		background-size: cover;
	}

	.contents__bg {
		padding: var(--gap_64px) var(--gap_32px);
	}
}

/*================================
about
================================*/
.about {
	background: #e9e5b5;
	padding: var(--gap_64px) 0;
	margin-bottom: var(--gap_64px);
}

.about__text--img {
	margin: 0 auto;
	text-align: center;
}

.about__text01{
	line-height: 1.7em;
	text-align: center;
	margin-bottom: var(--gap_32px);
	/* text-shadow: 0 0 0.2em #fff,0 0 0.2em #fff,0 0 0.3em #fff,0 0 0.3em #fff,0 0 0.3em #fff; */
}

.about__text01.red {
	font-size: 1.2em;
	font-weight: 700;
	color: var(--color_RED);
}

.about__text01.green {
	font-size: 1.2em;
	font-weight: 700;
	color: var(--color_GRN);
}

.about__ticket {
	width: fit-content;
	margin: 0 auto var(--gap_48px);
	text-align: center;
}

.ticket__btn > img {
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
	margin-bottom: var(--gap_8px);
}

.ticket__text {
	font-size: 1.2em;
	font-weight: 700;
	margin-bottom: var(--gap_16px);
}

.ticket__text.red {
	color: var(--color_RED);
}

.about__text02 {
	line-height: 1.7em;
	text-align: center;
}

.about__text02 > em {
	font-size: 1.2em;
}

.about__text02 > em.green {
	color: var(--color_GRN);
}

.about__streaming {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: var(--gap_48px);
	margin: var(--gap_64px) auto var(--gap_80px);
}

.tver_area {
	width: clamp(250px, 50vw, 450px);
}

.entry__btn {
	text-align: center;
	margin-bottom: var(--gap_32px);
}

.entry__btn--item {
	display: block;
	width: min(100%,430px);
	margin: 0 auto;
	font-size: 1.4em;
	font-weight: 700;
	line-height: 1.4em;
	letter-spacing: .1em;
	background-image: linear-gradient(90deg, #f02222, #ff6313);
	color: #fff !important;
	padding: .55em var(--gap_24px);
	border-radius: 50px;
	box-shadow: 0 0 var(--gap_8px) #575757;
}

.entry__btn--item .btn_icon {
	padding-left: .5em;
}

/*================================
caddy
================================*/
.caddy__flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--gap_24px);
}

.caddy__list {
	width: 23%;
}

.caddy__contents {
	font-size: .8em;
}

.caddy__name {
	font-size: 1.15em;
	font-weight: 700;
	border-bottom: 1px solid var(--color_LGR);
	margin-bottom: .2em;
	padding-bottom: .2em;
}

@media only screen and (max-width: 767px) {
	.caddy__list {
		width: 46%;
	}
}

/*================================
outline
================================*/
.outline__list {
	width: 90%;
	max-width: 1000px;
	display: flex;
	margin: 0 auto;
	line-height: 1.3em;
}

.outline__list > dt {
	font-weight: 700;
	width: 12em;
	border-bottom: 2px solid var(--color_LGR);
	padding: 1em .4em;
	padding-left: var(--gap_16px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.outline__list.not_flex {
	flex-direction: column;
}

.outline__list > dd {
	width: calc(100% - 12em);
	border-bottom: 2px solid #ccc;
	padding: 1em 0;
	padding-left: var(--gap_16px);
}

.outline__link {
	font-size: .8em;
}

.outline__list > dd > a {
	display: inline-block;
	color: #fff !important;
	background: var(--color_GRN);
	padding: .15em 1em;
	border-radius: 30px;
	margin: .2em auto;
}

.outline__list > dd > a .icon {
    margin-left: .5em;
}

.outline__list.not_flex > dt {
	width: 100%;
	border-bottom: 0;
	padding-bottom: 0;
}

.outline__list.not_flex > dd {
	width: 100%;
	margin: 0 auto;
	border-bottom: 0;
	padding: 0;
}

.outline__contents01 {
	line-height: 1.2em;
	height: 300px;
    overflow-y: scroll;
    margin-top: var(--gap_16px);
	padding: 1em;
    box-shadow: 0 0 5px #a1a1a1;
}

.outline__contents01 > p {
	font-size: .85em;
	font-weight: 700;
}

.outline__contents01 > ul {
	margin-bottom: var(--gap_16px);
	font-size: .8em;
}

.indent > li {
	text-indent: -1em;
	padding-left: 1em;
}

.indent.dotted > li::before {
	content: "・";
	padding-right: .3em;
}

/*================================
faq
================================*/
.faq__title {
	font-size: 1.2em;
	font-weight: 700;
	margin-bottom: var(--gap_16px);
	padding-left: 1.4em;
	position: relative;
}

.faq__title::before {
	content: '';
	display: block;
	background: url(/event/golfbag_cup2026/images/item01.svg) no-repeat center / contain;
	width: 1em;
	height: 100%;
	position: absolute;
	left: 0;
	top: 50%;
    transform: translateY(-50%);
}

.faq__list {
	margin-bottom: var(--gap_32px);
	border-radius: var(--gap_16px);
	box-shadow: 0 0 var(--gap_8px) #ccc;
}

.faq__list:last-child {
	margin-bottom: var(--gap_64px);
}

/*================================
accordion style
================================*/
.module-accordion{
	margin: 0 auto;
}

.module-accordion:not(:last-child){
	margin-bottom: .2rem;
}

.module-accordion_title{
	margin-bottom: .1rem;
}

.module-accordion_btn{
	font-size: .85em;
	cursor: pointer;
	padding: var(--gap_16px) clamp(24px, 2.2em, 50px) var(--gap_16px) var(--gap_16px);
	font-weight: bold;
	line-height: 1.4;
	background: var(--color_LGR);
	position: relative;
	display: flex;
	align-items: center;
}

.module-accordion_btn::after{
	font-size: 1.2em;
	color: var(--color_RED);
	content: '\f107';
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
	position: absolute;
	right: .8em;
	margin: auto;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.module-accordion_btn.is-open::after{
	-ms-transform: rotate(180deg);
    transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}

.module-accordion_contents{
	font-size: .85em;
	line-height: 1.4em;
	display: none;
	padding: var(--gap_24px) clamp(24px,6vw,40px) var(--gap_24px) var(--gap_16px);
	background: #fff;
}

.module-accordion_contents > div {
	display: flex;
}

.module-accordion_text {
	line-height: 1.8;
	position: relative;
	padding: var(--gap_24px) 0 var(--gap_24px) var(--gap_24px);
}

.module-accordion_btn > span, .module-accordion_contents > div > span {
	font-size: 1.2em;
    font-weight: 700;
    color: var(--color_RED);
    width: min(10vw, 30px);
    height: min(10vw, 30px);
    margin-right: .3em;
    border-radius: var(--gap_64px);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1em;
}

@media not screen and (min-width: 768px) {
	.module-accordion_contents{
		padding: var(--gap_24px) var(--gap_16px);
	}
}

/*================================
contact
================================*/
.contact {
	text-align: center;
}

.contact__text01 {
	margin-bottom: var(--gap_16px);
}

.contact__text02 > a {
	text-decoration: underline !important;
}



@media not screen and (min-width: 768px) {
	/*================================
	about
	================================*/
	.about__text01 {
		font-size: 1.1em !important;
		line-height: 1.5em;
	}

	.about__text01 .red {
		font-size: 1.1em;
	}
	.about__text02 {
		font-size: 1em;
		line-height: 1.5em;
	}
	.about__streaming {
		display: block;
		margin: var(--gap_64px) auto var(--gap_80px);
	}

	.tver_area, .youtube_area {
		width: 80%;
		margin-inline: auto;
	}

	.tver_area {
		margin-bottom: var(--gap_48px);
	}

	.about__lieup {
		display: block;
	}

	.about__lieup > li {
		width: 80%;
		margin-inline: auto;
	}

	.about__lieup > li:not(:last-child) {
		margin-bottom: var(--gap_32px);
	}

	/*================================
	outline
	================================*/
	.outline__list {
		flex-direction: column;
		width: 100%;
	}

	.outline__list > dt {
		display: block;
		width: 100%;
		border-bottom: none;
		border-left: 3px solid var(--color_LGR);
		padding: 0 0 0 .5em;
	}

	.outline__list > dd {
		font-size: .85em;
		width: 100%;
		padding: .4em 0 .5em .4em;
		margin-bottom: var(--gap_32px);
	}

	.outline__list:last-of-type > dd {
		margin-bottom: 0;
	}

	.outline__list.not_flex > dd > div {
		margin-top: 1em;
	}


}