@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
:root {
      --base-color: #F8F5F2;
      --text-color: #111111;
      --accent-color: #007BFF;
      --sub-accent-color: #BDBDBD;
}
html{
	font-family: "Noto Sans JP", sans-serif;
}
body {
    font-family: 'Inter', sans-serif;
	background-color: var(--base-color);
    color: var(--text-color);
}
p,th,td {
    font-size: 14px;
	padding: 15px;
}
.btn {
    display: inline-block;
    border-radius: 0.25rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
	padding: 1rem 1rem
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    opacity:0.8!important;
}

.btn-outline {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
	border: 1px solid var(--accent-color);
	color: #FFF;
}

.btn-outline {
    font-weight: 500;
}

.btn-link {
    color: #000;
}

.btn-link:hover {
    text-decoration: underline;
}
.btn_header{
	padding: 1.0rem 1.5rem;
	border: 2px solid var(--accent-color);
    color: var(--accent-color);
	border-radius: 0.25rem;
}
.btn_header:hover{
	background-color : var(--accent-color);
	color: #FFF;
	transition: 0.2s;
}
a{
	text-decoration: none;
}
a:hover {
    text-decoration: inherit;
}
.container {
  	max-width: 1200px;
  	margin: 0 auto;
  	padding: 0 20px;
}
header {
    width: -webkit-fill-available;
	background-color: var(--base-color);
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
	padding: 1.0rem;
}
.logo_container p {
    color: #333;
    font-size: 12px;
    padding: 0;
}
header nav{
	width: 90%;
}
.header_inner{
	max-width: 1580px;
    margin: 0 auto;
}
header.p-4.bg-white.shadow-sm.sticky.top-0.z-50 {
	position: sticky;
    top: 0; /* スクロール時に固定 */
}
.text-btn{
		font-size: 1.35rem;
}
.md\:flex {
        display: flex;
        gap: 8px;
		width: 57%;
}
img.rounded-lg.shadow-lg {
    aspect-ratio: 1 / 1;
}

tr.table-text {
    text-align: left;
    color: #FFF;
	 border-bottom: 1px solid var(--sub-accent-color);
}

tr {
    border-bottom: 1px solid var(--sub-accent-color);
    padding: 0;
}

img.design-img {
    max-width: 60%;
    aspect-ratio: 1 / 1;
}

p.design-p {
    padding: 4px;
	color: var(--text-color);
}

a.btn.btn-link.design.mt-auto.text-primary.hover\:text-primary-dark.transition-colors {
    font-size: 14px;
}
p.testimonials-text {
    padding: 2px 0px 12px;
    font-size: 16px;
}

a.btn.btn-outline.testimonials-btn {
    font-size: 14px;
}

button.btn.btn-outline.header-contact {
    font-size: 14px;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: -webkit-fill-available;
    border: 1px solid #dbdbdb;
    padding: 7px 10px;
    font-size: 16px;
    border-radius: 5px;
}

select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
     width: -webkit-fill-available;
    border: 1px solid #dbdbdb;
    padding: 7px 10px;
    font-size: 14px;
    border-radius: 5px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: var(--accent-color);
    color: #fff;
    width: -webkit-fill-available;
    padding: 12px;
    border-radius: 5px;
    font-weight: 500;
	cursor: pointer;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
    opacity: 0.8!important;
}

.wpcf7-response-output {
    display: none;
}
strong.contact-bold {
    font-weight: 500;
}
.max-w-7xl{
	width: 94%;
} 
.max-w-7xl.mx-auto.text-center p {
    font-size: 16px;
}

br.sp-only {
    display: none;
}
	font-size: 3.0rem;
}
.table-text th {
  background-color: var(--accent-color);
  color: #fff; 
  padding: 12px;
}

.mb-8 {
    margin-bottom: 5rem;
}

.header_logo {
    width: 300px;
    height: auto;
}

/*ボタン*/
button.btn.btn-outline.header-contact {
    font-size: 14px;
    /*width: 13vw;mac*/
}

/*justify-between*/
.justify-between {
    justify-content: space-between;
}
/*グローバルメニュー*/
#menu-menu-1{
	justify-content: end;
	margin-right: 1.0rem;
}
#menu-menu-1 li a{
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 1.1rem;
	line-height:1.1rem;
}	
#menu-menu-1 li a:hover{
	color: var(--accent-color);
}
/*main*/
/*メインビジュアル*/
.hero-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
   	background: linear-gradient(
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.2)); 
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.main_ttl{
	color:#fff;
}
.main_sub_ttl{
	color:#fff;
}
.main_btn{
	background-color: var(--accent-color);
	color:  #fff;
}
a.main_btn:hover{
	background-color:#fff;
	color: var(--accent-color);
	transition: 0.2s;
}
/*理美容サロンのために作られたHPSalonPage Go（サロンページ ゴー）*/
#why-choose-us svg {
    color: var(--accent-color);
}
.md\:flex-row{
	flex-direction:row;/*mac*/
	gap:5rem;/*mac*/
}
.md\:w-1\/2 {
    justify-content: flex-end;/*mac*/
    display: flex;/*mac*/
}
img.rounded-lg.shadow-lg {
    aspect-ratio: 1 / 1;
    width: 85%;
}
/*section共通*/
.section_ttl{
	color: var(--accent-color);
}
/*プラン & 料金*/
.plan_font{
	font-size: 1.0rem;
}
.overflow-x-auto{
	border: 1px solid var(--sub-accent-color);
	overflow-x: auto;
    margin-top: 1rem;
}
table {
    width: 100%;
    border-collapse: collapse;
    color: #111111; /* 全体の文字色 */
    font-size: 1rem;
}

/* テーブルの見出し行 */
thead tr {
    background-color: var(--accent-color); /* サブアクセントの背景色 */
    color: #111111;            /* テキスト色 */
}
.heading{
	background-color: rgba(0, 123, 255, 0.7);
	color: #fff;
}

/* セル全般の共通スタイル */
th, td {
    padding: 1rem;
    border: 1px solid #E0E0E0;
    vertical-align: top;
    text-align: left;
}

/* 機能・構成などリストの見やすさ調整 */
td ul {
    padding-left: 1.25rem; /* ulのインデント */
    margin: 0.5rem 0;
}

td ul li {
    margin-bottom: 0.3rem;
    line-height: 1.6;
}


/*デザインテンプレート*/
.max-w-6xl {
    max-width: 80%;
}
.design-gap{
	gap: 3rem;
}
.dtl_btn {
	border: 1px solid transparent;
    background-color: var(--accent-color);
    color: #fff;
    display: inline-block;
    border-radius: 0.25rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    text-decoration: none; 
	font-size: 1.0rem;/*mac*/
    padding: 1.0rem;/*mac*/
}

.dtl_btn:hover {
	border: 1px solid var(--accent-color);
    background-color: #fff;
    color: var(--accent-color);
    text-decoration: none; 
    transition: 0.2s;
}
.custom-gap {
    gap: 10rem 6rem;/*mac*/
}

/*SalonPage Goを導入した理美容サロンの実績*/

/*サロンの集客に必要な機能を標準装備！*/
.space-y-6 svg{
	color: var(--accent-color);
}
/*FAQ*/
#faq {
  color: #111111;
  font-family: 'Helvetica Neue', sans-serif;
}
#faq button {
  padding: 1rem 0;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s ease;
  color: #111111;
}
#faq button:hover {
  color: #007BFF;
}
#faq button span {
  flex: 1;
  font-weight: 600;
}
#faq svg {
  stroke: #007BFF;
  transition: transform 0.2s ease;
}
#faq .rotate-180 {
  transform: rotate(180deg);
}
#faq .faq-answer {
  padding-top: 0.5rem;
  font-size: 0.95rem;
  color: #111111;
  line-height: 1.6;
  transition: all 0.2s ease;
}
#faq .faq-answer.closed {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
#faq .faq-answer.open {
  max-height: 300px;
  opacity: 1;
}
#faq .border-b {
  border-color: #BDBDBD;
}
.space-y-4{
	width:100%;/*mac*/
	margin: 0 auto;/*mac*/
}

/*コンタクトフォーム*/
.max-w-4xl {
    max-width: 118rem;/*mac*/
}
.wpcf7-form p:nth-of-type(5) {
	text-align: center;/*mac*/
}
.wpcf7-form{
	width: 100%;/*mac*/
	margin: 0 auto;/*mac*/
}
/* Contact Form 7 送信ボタンのカスタム */
.wpcf7 input[type="submit"] {
  background-color: #007BFF; /* アクセントカラー */
  color: #ffffff;
  font-size: 1.125rem; /* text-lg */
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 9999px; /* 丸み */
  cursor: pointer;
  display: inline-block;
   width: auto;
   max-width: 60rem;/*mac*/
}

/*footer*/
.copyright a:hover {
    opacity: 0.5;
}
/* ホバー時の効果 */
.wpcf7 input[type="submit"]:hover {
  background-color: #005FCC;
}

/* フォーカス時のアクセシビリティ対応 */
.wpcf7 input[type="submit"]:focus {
  outline: none;
}
#navTgl {
    display: none;
}
.sp_only{
	display: none;
}

@media screen and (max-width: 1280px) {
	/*justify-between*/
	.justify-between {
    	padding: 0;
	}
	/*header*/
	.header_logo {
  		width: 260px;
	}
	.md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
	.text-lg {
    	font-size: 1rem;
    	line-height: 1.125rem;
	}
	.py-16 {
    	padding-top: 4rem;
    	padding-bottom: 4rem;
	}
	/*理美容サロンのために作られたHP Salon Page Go*/
	img.rounded-lg.shadow-lg {
    	aspect-ratio: 1 / 1;
		width: 100%;
	}
	/*デザインテンプレート*/
	.dtl_btn {
		font-size: 1.0rem;
	}
	.custom-gap{
		gap: 8rem 4rem;
	}
	/*faq*/
	.space-y-4{
		width:85%;
		margin: 0 auto;/*mac*/
	}
	/*コンタクトフォーム*/
	input.wpcf7-form-control.wpcf7-submit.has-spinner {
		font-size: 1.0rem;
	}
	input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    font-size: 16px;/*mac*/
	}
	
	select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
		font-size: 14px;
	}
	strong.contact-bold {
    	font-weight: 500;
		font-size:16px;
	}
	.wpcf7-form{
		width: 85%;/*mac*/
		margin: 0 auto;/*mac*/
	}
	/*footer*/
	.max-w-7xl.mx-auto.text-center p {
    	font-size: 16px;
	}
}
@media screen and (max-width: 820px) {
	.pc_only{
		display:none;
	}
	.sp_only{
		display:block;
	}
	/*section共通*/
	.text-3xl{
		/*font-size: 2.7vw;s*/
		/*line-height: 2.7vw;s*/
		/*letter-spacing: 0.05em;s*/
		font-size: 1.4rem;
		line-height: 2.0rem;
		letter-spacing: 0.05em;
	}
	.mb-8 {
    	margin-bottom: 1.3rem;
	}
	.container {
    	max-width: 1200px;
    	margin: 0 auto;
    	padding: 0;
	}
	/*header*/
	.sp_nav_wrapper{
		display:flex;
		align-items:center;
	}
	.w-full {
    background-attachment: scroll;
  }
	.header_logo {
    	width: 200px;
 	 }
	label.open {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 3;
        width: 60px;
        height: 94px;
		display: flex;
        align-items: center;
        justify-content: center;
    }
	.open span,
    .open::before,
    .open::after {
        content: "";
        position: absolute;
        width: 32px;
        border-bottom: 2px solid #1F2222;
    }
	.open::before {
        transform: translateY(-8px);
    }
    .open::after {
        transform: translateY(8px);
    }
	 #navTgl:checked+.open span {
        opacity: 0;
    }
	#navTgl:checked+.open::before {
        transform: rotate(45deg);
    }
    #navTgl:checked+.open::after {
        transform: rotate(-45deg);
    }
	open::before,
    .open::after,
    #navTgl:checked+.open::before,
    #navTgl:checked+.open::after {
        transition: all 0.2s;
    }
	.gv_menu {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        z-index: 2;
        transition: all 0.2s;
        background-color: rgba(255, 255, 255, 0.8);
		padding-top: 56px;
    }
	#navTgl:checked~.gv_menu {
        left: 0;
    }
	/* メニュー項目 */
	.gv_menu ul {
	  list-style: none;
	  gap: 1.0rem;
	  margin: 0;
	  text-align: center;
	  padding: 1.0rem 0;
	}
	.gv_menu a {
	  text-decoration: none;
	  font-size: 18px;
	  color: #333;
	  transition: color 0.2s;
	  font-family: "Noto Sans JP", sans-serif;
      font-weight: 700;
	}

	.gv_menu a:hover {
	  color: #007BFF;
	}
	/*デザインテンプレート*/
	.gap-8 {
    gap: 5rem 2rem;
	}
	/* お問い合わせボタン */
	.gv_menu .sp_nav_btn{
	  display: inline-block;
	  padding: 10px 24px;
	  border: 2px solid var(--accent-color);
	  color: var(--accent-color);
	  font-weight: bold;
	  text-align: center;
	  border-radius: 6px;
	}

	.gv_menu .sp_nav_btn:hover {
	  background-color: var(--accent-color);
	  color: #fff;
	  transition: 0.2s;
	}
	.sp_nav_btn_wrapper{
		text-align: center;
	}
	/*main*/
	/*メインビジュアル*/
	h1.text-3xl {
    	font-size: 1.9rem;
    	letter-spacing: 0;
    	line-height: 1.9rem;
	}
	/*理美容サロンのために作られたHPSalonPage Go（サロンページ ゴー）*/
	#why-choose-us .gap-8 {
        gap: 3.0rem
    }
	table.w-full {
    overflow-y: auto; 
    width: 767px; 
    border-collapse: collapse;
	}
	/*サロンの集客に必要な機能を標準装備！*/
	#features .gap-8{
		gap: 3.0rem;
	}
	/*faq*/
	.a_font {
        font-size: 0.67rem;
    }
}

@media screen and (max-width: 600px) {
	.max-w-6xl {
    max-width: 85%;
	}
	br.sp-only {
    	display: block;
	}
	.md\:text-2xl {
        font-size: 1.0rem;
        line-height: 1.2rem;
    }
	/*理美容サロンのために作られたHPSalonPage Go（サロンページ ゴー）*/
	#why-choose-us .gap-8 {
        flex-direction: column;
		gap: 0.5rem;
 	}
	.custom-gap {
    	gap: 3rem 4rem;
	}
	h1.text-3xl {
		font-size: 1.5rem;
		line-height: 1.5rem;
	}
	.text-3xl{
		font-size: 1.2rem;
		line-height: 1.2rem;
		letter-spacing: 0.05em;
	}
	/*サロンの集客に必要な機能を標準装備！*/
	#features .gap-8{
		gap: 0.5rem;
	}
	/*faq*/

	.a_font {
        font-size: 0.8rem;
    }
}
