/*
Theme Name: 4plus GOLF
Theme URI: 
Author: 
Author URI: 
Description: 
Version: 1.0
License: 
License URI: 
Tags: 
*/
@charset "utf-8";

/*--------------------------------------------------
**************************************************
  ベース
**************************************************
--------------------------------------------------*/

:root {
	/* Based Colors */
	--color-base:     #444;
	--color-heading:  #222;
	--color-light:    #666;
	--color-white:    #fff;
	--color-accent-1: #333;
	--color-accent-2: #555;
	--color-accent-3: #4B80A6;
	--color-accent-4: #1E4F73;
	--color-accent-5: #53B4BD;
	
	--content-pc-width-1: 1120px;
	--content-pc-width-2: 928px;
	--content-sp-width-1: 90%;
	
	--scroll-margin-top-pc: 76px;
	--scroll-margin-top-sp: 55px;
}

html {
	scroll-behavior: smooth; /* スムーススクロール */
	font-size: 62.5%; /* ブラウザ標準16pxの62.5% → 1rem = 10px */
}
@media (max-width: 767px) {
	html {
		font-size: 2.6vw;
	}
}
body {
	margin: 0px;
	padding: 0px;
	background: none repeat scroll 0% 0%;
	background-attachment: scroll;
	font-family: "IBM Plex Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.02em;
	color: var(--color-base);
}

body.body-fixed {
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

.container {
	position: relative;
	padding: 76px 0 0;
	overflow-x: hidden;
}

.container * {
	scroll-margin-top: var(--scroll-margin-top-pc);
}

.common_bg_fixed {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100vh;
	z-index: 0;
	background: url(assets/imgs/common/bg_pattern.png) no-repeat center top / cover;
}

.wrapper {
	width: min(var(--content-sp-width-1), var(--content-pc-width-1));
	margin-inline: auto;
}

main,
.cta_box_1,
footer {
	position: relative;
	z-index: 1;
}

@media (max-width: 767px) {
	.container * {
		scroll-margin-top: var(--scroll-margin-top-sp);
	}

	.common_bg_fixed {
		background: url(assets/imgs/common/bg_pattern_sp.png) no-repeat center / 100% 100%;
	}
}

.grecaptcha-badge {
	display: none;
}


/*--------------------------------------------------
**************************************************
  リンク系
**************************************************
--------------------------------------------------*/

a {
	color: #0066CC;
	transition: all .5s ease;
}

a:hover {
	color: var(--color-accent-5);
}

@media (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
		color: var(--color-base);
	}
}

.link_1 {
	padding: 9px 42px;
	background: var(--color-accent-4);
	border-radius: 100px;
	font-size: 1.5rem;
	line-height: 1;
	color: var(--color-white);
}

.link_1:hover {
	background: var(--color-accent-5);
	color: var(--color-white);
}

.link_1 span {
	position: relative;
	padding-left: 15px;
}

.link_1 span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(30deg);
	display: block;
	width: 3px;
	height: 20px;
	background: #f0f0f0;
}

.link_2 {
	position: relative;
	padding-left: 25px;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-base);
}

.link_2::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: block;
	width: 20px;
	height: 20px;
	background: var(--color-accent-5) url(assets/imgs/common/arrow_1.svg) no-repeat center / 12px;
	border-radius: 50%;
	line-height: 1;
}

.link_3 {
	padding: 6px 24px;
	background: var(--color-accent-1);
	border: var(--color-accent-1) 1px solid;
	border-radius: 100px;
	font-size: 1.5rem;
	color: var(--color-white);
}

.link_3:hover {
	background: var(--color-white);
	color: var(--color-accent-1);
}

.link_4 {
	position: relative;
	padding-left: 1.25em;
}

.link_4::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 12px;
	height: 6px;
	background: url(assets/imgs/common/arrow_3.svg) no-repeat center / cover;
}

.link_tel_icon {
	position: relative;
	padding-left: 25px;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-base);
}

.link_tel_icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: block;
	width: 20px;
	height: 20px;
	background: var(--color-accent-5) url(assets/imgs/common/tel_1.svg) no-repeat center / 10px;
	border-radius: 50%;
	line-height: 1;
}

/*-- ページ内ジャンプ --*/
.page_nav_jump {
	display: flex;
	justify-content: center;
	gap: 50px;
	margin-top: 50px;
}

.page_nav_jump a {
	font-family: "Inter", sans-serif;
	font-weight: 700;
	color: var(--color-light);
}

.page_nav_jump a:hover {
	color: var(--color-accent-5);
}

/* SP */
@media screen and (max-width: 767px) {
	.page_nav_jump {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
}


/*--------------------------------------------------
**************************************************
  ヘッダー
**************************************************
--------------------------------------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	width: 100%;
	background: #FFFFFF0D;
	backdrop-filter: blur(45px);
	border-bottom: var(--color-accent-3) 1px solid;
}

.header_logo a {
	display: block;
	max-width: 320px;
	padding: 16px 45px 21px;
	background: var(--color-accent-3);
	border-radius: 0 0 50px 0;
}

.header_nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

/* SP */
@media screen and (max-width: 767px) {
	.header_logo a {
		max-width: none;
		padding: 8px 27px 11px 16px;
		border-radius: 0 0 32px 0;
	}
}


/*--------------------------------------------------
**************************************************
  ハンバーガー
**************************************************
--------------------------------------------------*/
#menu_btn {
	display: none;
}

@media screen and (max-width: 1130px) {
	#menu_btn {
		cursor: pointer;
		display: block;
		width: 30px;
		height: 30px;
		background: none;
		border: none;
		color: var(--color-base);
	}

	#menu_btn p {
		margin-bottom: 4px;
		text-align: center;
		font-family: "Inter", sans-serif;
		font-size: 8px;
		font-weight: 700;
		line-height: 1;
	}

	#menu_btn .bar_box {
		position: relative;
		height: 15px;
	}

	#menu_btn .bar {
		position: absolute;
		left: 0;
		display: block;
		width: 100%;
		height: 1px;
		background: var(--color-base);
		transition: all 0.3s ease;
	}

	#menu_btn .bar:nth-child(1) {
		top: 0;
	}

	#menu_btn .bar:nth-child(2) {
		top: 50%;
		transform: translateY(-50%);
	}

	#menu_btn .bar:nth-child(3) {
		bottom: 0;
	}
}


/*--------------------------------------------------
**************************************************
  グロナビ
**************************************************
--------------------------------------------------*/
.header_nav nav .main_manu {
	display: flex;
	align-items: center;
	gap: 32px;
}

.header_nav nav .main_manu a {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-base);
}

.header_faq span {
	position: relative;
	padding: 8px 15px;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-accent-5);
	transition: all .5s ease;
}

.header_faq:hover span {
	color: var(--color-accent-4);
}

.header_faq span::before,
.header_faq span::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(30deg);
	display: block;
	width: 2px;
	height: 30px;
	background: var(--color-accent-5);
	transition: all .5s ease;
}

.header_faq:hover span::before,
.header_faq:hover span::after {
	background: var(--color-accent-4);
}

.header_faq span::before {
	left: 0;
}

.header_faq span::after {
	right: 0;
}

.header_cta {
	padding: 3px 40px;
	background: var(--color-accent-4);
	border: var(--color-accent-4) 1px solid;
	border-radius: 20px 0 0 20px;
	color: var(--color-white);
}

.header_cta span {
	position: relative;
	padding-left: 20px;
	font-size: 1.5rem;
	font-weight: 700;
	white-space: nowrap;
}

.header_cta span::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: block;
	width: 12px;
	height: 12px;
	background: url(assets/imgs/common/arrow_1.svg) no-repeat left top / 12px;
	transition: all .5s ease;
}

/* 画面幅 調整用 */
@media screen and (max-width: 1130px) {
	.header_faq {
		display: none;
	}

	.header_nav nav {
		position: fixed;
		top: 0;
		left: 100%;
		z-index: 200;
		display: flex;
		flex-direction: column;
		width: 100%;
		height: 100dvh;
		padding: 32px 5%;
		background: #FFFFFA;
		transition: left .5s ease;
	}

	.header_nav nav.open {
		left: 0;
	}

	.header_nav nav .menu_close_btn {
		display: block;
		width: 20px;
		height: 20px;
		margin-left: auto;
	}

	.header_nav nav .main_manu {
		flex: 1 1 auto;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		min-height: 0;
	}

	.header_nav nav .main_manu > li {
		border-bottom: #BFBFBF 1px solid;
	}

	.header_nav nav .main_manu > li > a {
		display: block;
		width: 100%;
		padding: 13px 0;
		font-size: 1.5rem;
		font-weight: 700;
		color: var(--color-base);
	}

	.header_nav nav .main_manu .sub_menu {
		display: none;
	}
}

/* PC */
@media screen and (min-width: 1131px) {
	.menu_close_btn {
		display: none;
	}
	
	.main_manu > li {
		position: relative;
	}

	.header_nav nav .main_manu a:hover {
		color: var(--color-accent-5);
	}

	.main_manu .sub_menu {
		opacity: 0;
		visibility: hidden;
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		z-index: 10;
		padding-top: 24px;
		transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
		pointer-events: none;
	}

	.main_manu .display_hamburger {
		display: none;
	}

	.main_manu > li:hover .sub_menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.header_nav nav .main_manu .sub_menu a {
		white-space: nowrap;
		display: block;
		background: var(--color-accent-3);
		padding: 8px 24px;
		font-size: 1.5rem;
		font-weight: 500;
		line-height: 1.8;
		color: var(--color-white);
	}

	.header_nav nav .main_manu .sub_menu a:hover {
		background: var(--color-accent-4);
	}

	.header_cta:hover {
		background: var(--color-white);
		color: var(--color-accent-4);
	}

	.header_cta:hover span::before {
		background-image: url(assets/imgs/common/arrow_7.svg);
		transition: all .5s ease;
	}
}

/* SP */
@media screen and (max-width: 767px) {
	.header_cta {
		padding: 3px 10px 3px 15px;
	}

	.header_cta:hover {
		color: var(--color-white);
	}
}


/*--------------------------------------------------
**************************************************
  下層ページ
**************************************************
--------------------------------------------------*/
.sub_page_bg_decoration_1 {
	position: fixed;
	top: 76px;
	left: -500px;
	z-index: 0;
	width: 962px;
	height: 966px;
	background: url(assets/imgs/common/pattern_02.svg) no-repeat left top / 100%;
	mix-blend-mode: multiply;
}

.sub_page_bg_decoration_2 {
	position: fixed;
	top: 30px;
	right: -500px;
	z-index: 0;
	width: 615px;
	height: 619px;
	background: url(assets/imgs/common/pattern_02.svg) no-repeat left top / 100%;
	mix-blend-mode: multiply;
}

.sub_page_title_box {
	margin-top: 106px;
}

.sub_page_title {
	text-align: center;
	font-family: "Inter", sans-serif;
	font-size: 11.0rem;
	font-weight: 800;
	line-height: 0.95;
	color: #323232;
}

.sub_page_title .ja {
	display: block;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 2;
}

.sub_page_title_sub {
	margin-top: 24px;
	text-align: center;
	font-size: 3.4rem;
	font-weight: 600;
	line-height: 1.4;
}

.sub_page_heading_1 {
	text-align: center;
	font-family: "Inter", sans-serif;
	font-size: 4.7rem;
	font-weight: 800;
	line-height: 1;
	color: var(--color-accent-1);
	/* letter-spacing: 0.01em; */
}

.sub_page_heading_sub_1 {
	text-align: center;
	font-size: 3.4rem;
	font-weight: 600;
	color: var(--color-accent-1);
	/* letter-spacing: 0.02em; */
}

.sub_page_heading_sub_1 span {
	font-size: 2.4rem;
	font-weight: 500;
}

/* SP */
@media screen and (max-width: 767px) {
	.sub_page_bg_decoration_1 {
		display: none;
	}

	.sub_page_bg_decoration_2 {
		top: 140px;
		right: -200px;
		width: 295px;
		height: 296px;
	}

	.sub_page_title_box {
		margin-top: 40px;
	}

	.sub_page_title {
		font-size: 4.7rem;
	}

	.sub_page_title_sub {
		font-size: 2.0rem;
	}

	.sub_page_heading_1 {
		font-size: 3.8rem;
	}

	.sub_page_heading_sub_1 {
		font-size: 2.0rem;
	}

	.sub_page_heading_sub_1 span {
		font-size: 1.2rem;
		font-weight: 400;
	}
}


/*--------------------------------------------------
**************************************************
  モジュール系
**************************************************
--------------------------------------------------*/
.deco_bar_1 {
	position: relative;
	padding-top: 125px;
}

.deco_bar_1::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 3px;
	height: 80px;
	background: var(--color-accent-5);
}

.step_section {
	width: min(100%, var(--content-pc-width-2));
	margin-inline: auto;
	padding: 64px;
	background-color: #fffffa;
	border: #bfbfbf 1px solid;
	border-radius: 8px;
}

.step_section .step_section_heading {
	text-align: center;
	font-size: 3.4rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--color-accent-3);
}

.step_section .step_list {
	margin-top: 56px;
}

.step_section .step_list .step_item {
	display: flex;
}

.step_section .step_list .step_item + .step_item {
	margin-top: 48px;
}

.step_section .step_list .step_item .step_item_icon {
	width: 220px;
	border-right: #f0f0f0 3px solid;
}

.step_section .step_list .step_item .step_item_body {
	width: calc(100% - 220px);
	padding-left: 74px;
}

.step_section .step_list .step_item .step_item_body .step_item_heading {
	font-size: 2.4rem;
	font-weight: 500;
}

.step_section .step_list .step_item .step_item_body .step_item_text {
	margin-top: 10px;
	font-size: 1.4rem;
	line-height: 1.88;
}

.step_section .step_link {
	display: flex;
	justify-content: center;
	margin-top: 56px;
}

.step_section .step_item_price {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	margin-top: 56px;
}

.step_section .step_item_price + .step_item_price {
	margin-top: 24px;
	padding-top: 24px;
	border-top: var(--color-light) 1px solid;
}

.step_section .step_item_price_detail h4 {
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--color-accent-3);
}

.step_section .step_item_price_detail p {
	font-size: 1.4rem;
}

.step_section .step_item_price_detail p.caution {
	margin-top: 8px;
	font-size: 1.2rem;
}

/* SP */
@media screen and (max-width: 767px) {
	.deco_bar_1 {
		padding-top: 80px;
	}

	.deco_bar_1::before {
		height: 48px;
	}

	.step_section {
		padding: 40px 16px;
	}

	.step_section .step_section_heading {
		font-size: 2.0rem;
	}

	.step_section .step_list {
		margin-top: 16px;
	}

	.step_section .step_list .step_item {
		flex-direction: column;
		gap: 16px;
	}

	.step_section .step_list .step_item + .step_item {
		margin-top: 16px;
	}

	.step_section .step_list .step_item .step_item_icon {
		display: flex;
		justify-content: center;
		width: 100%;
		border-right: none;
	}

	.step_section .step_list .step_item .step_item_body {
		width: 100%;
		padding-left: 0;
	}

	.step_section .step_list .step_item .step_item_body .step_item_heading {
		text-align: center;
		font-size: 1.8rem;
	}
	
	.step_section .step_link {
		margin-top: 48px;
	}

	.step_section .step_item_price {
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		gap: 40px;
		margin-top: 40px;
	}

	.step_section .step_item_price_detail h4 {
		font-size: 1.8rem;
	}

	.step_section .step_item_price_link {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
}


/*--------------------------------------------------
**************************************************
  CTA
**************************************************
--------------------------------------------------*/
.cta_box_1 {
	width: min(var(--content-sp-width-1), 1030px);
	margin: 120px auto 0;
	padding: 40px 40px 60px;
	background: var(--color-accent-3);
	border-radius: 8px;
}

.cta_box_1 .catch {
	text-align: center;
	font-size: 3.4rem;
	font-weight: 600;
	line-height: 1.4;
	color: #F0F0F0;
}

.cta_box_1 .catch span {
	color: #FFF45E;
}

.cta_box_1 .link_box {
	width: min(100%, 843px);
	margin: 38px auto 0;
	padding: 32px 50px 40px;
	background: #E3E3E3;
	border-radius: 8px;
}

.cta_box_1 .link_box > p {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.6;
	color: var(--color-accent-5);
}

.cta_box_1 .link_box > ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	margin-top: 24px;
}

/* SP */
@media screen and (max-width: 767px) {
	.cta_box_1 {
		margin-top: 60px;
		padding-inline: 30px;
	}

	.cta_box_1 .catch {
		font-size: 1.87rem;
	}

	.cta_box_1 .link_box {
		padding-inline: 20px;
	}

	.cta_box_1 .link_box > ul {
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: center;
	}

	.cta_box_1 .link_box > ul a {
		font-size: 1.48rem;
	}
}


/*--------------------------------------------------
**************************************************
  フッター
**************************************************
--------------------------------------------------*/
footer {
	margin-top: 130px;
	padding: 50px 0;
	background: #FFFFFA;
}

footer .footer_flex {
	display: flex;
	max-width: 1120px;
	margin: 0 auto;
	/*justify-content: space-around;*/
	justify-content: space-between;
	align-items: center;
	/*gap: 100px;*/
}

footer .copyright {
	font-size: 1.2rem;
}

footer .footer_sns {
	display: flex;
	gap: 16px;
}

footer .footer_sns li {
	width: 30px;
}

footer .footer_sns li a {
	display: block;
	width: 30px;
	height: 30px;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
}

footer .footer_sns_facebook {
	background-image: url(assets/imgs/common/sns_facebook.svg);
}

footer .footer_sns_facebook:hover {
	background-image: url(assets/imgs/common/sns_facebook_hover.svg);
}

footer .footer_sns_instagram {
	background-image: url(assets/imgs/common/sns_instagram.svg);
}

footer .footer_sns_instagram:hover {
	background-image: url(assets/imgs/common/sns_instagram_hover.svg);
}

footer .footer_sns_tiktok {
	background-image: url(assets/imgs/common/sns_tiktok.svg);
}

footer .footer_sns_tiktok:hover {
	background-image: url(assets/imgs/common/sns_tiktok_hover.svg);
}

footer .footer_menu {
	display: flex;
	justify-content: center;
	gap: 32px;
}

footer .footer_menu a {
	font-size: 1.2rem;
	color: var(--color-base);
}

footer .footer_menu a:hover {
	color: var(--color-accent-5);
}

/* SP */
@media screen and (max-width: 767px) {
	footer {
		margin-top: 60px;
		padding: 16px;
	}

	footer .footer_flex {
		justify-content: space-between;
		gap: 10px;
	}

	footer .footer_menu {
		flex-direction: column;
		justify-content: flex-start;
		gap: 0;
	}

	footer .copyright {
		margin-top: 10px;
	}

	footer .footer_sns {
		justify-content: center;
		width: var(--content-sp-width-1);
		margin-inline: auto;
	}

	footer .footer_sns li {
		width: 25px;
	}

	footer .footer_cta {
		margin-top: 24px;
	}
}
