/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 20 2025 | 05:56:21 */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/yakuhanjp@4.1.1/dist/css/yakuhanjp.css');/*ヨクハン*/

/* :rootのCSS変数の宣言 */
:root {
  --font-jp: "yakuhanjp","Noto Sans JP","Hiragino Sans","Yu Gothic","Meiryo",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  --font-en: "Heebo",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

body{
	background-color:#EBEBEB;
	color:#333333;
	font-family: var(--font-jp); 
	line-height: 1.7;
	margin:0 !important;
}

p{
	margin:0
}

h1,h2,h3,.site-title,.main-navigation a{
  font-family: var(--font-en), var(--font-jp);
  line-height: 1.2;
  letter-spacing: .02em; /* 英字の読みやすさUP */
  font-weight: 400;
}

a,a:hover,a:visited{
    color: inherit;/* 色を変えない */
	text-decoration:none;
}

li{
	list-style:none;
}

/* ローディングロゴ */
.logo_fadein{
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 999;
}
.logo_fadein div{
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 280px;
}

.logo_fadein img{
    width: 100%;
}


.logo_fadein img{
    width: 100%;
}


/* ヘッダー */

.site-header{
	width:100%;
	height:140px;
	background-color:#ffffff;
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:0 5%;
}

.site-branding{
	display:flex;
/*   margin:0;
  float:none !important;
  width:auto !important;
  flex:0 0 auto; */
}

.site-branding img{
	max-width:80px;
}

/* 不要 */
.main-navigation{
	width:auto !important;
/* 	margin-left: auto;
	float:none !important; */
/* 	  flex:0 1 auto; */
}

/* 不要 */
.main-navigation li{
	margin-right:90px;
}

@media (max-width: 1000px){
	/* 不要 */
 	 .main-navigation li{
		margin-right:30px;
	}
}


/* ハンバーガーメニュー */
.header-menu ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 30px;
}
.header-menu ul li {
/*     margin-right: 25px; */
	margin-right:90px;
}
.header-menu ul li:last-child {
    margin-right: 0;
}
.header-menu ul li a {
    text-decoration: none;
    color: #333333;
    font-size: 14px;
/*     font-weight: 700; */
}
.header-menu ul li a::after {
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    background-color: #B993D6;
}
.header-menu ul li a:hover::after {
    width: 100%;
    transition: all .4s;
}

@media screen and (max-width:1030px){
    .header-menu ul {
        margin-left: 20px;
    }
    .header-menu ul li {
        margin-right: 60px;
    }
    .header-menu ul li a {
        font-size: 14px;
    }
}
@media screen and (max-width:768px) {
	.site-header{
		height:100px;
	}
	
    .header-menu {
        display: none;
    }
	
	.site-branding img {
   		max-width: 67px;
		vertical-align: middle;
        margin-left: 10px;
	}
}

.fa-solid.fa-book-open,
.fa-solid.fa-question,
.fa-regular.fa-envelope {
    color: #333333;
}

/* humburger */
.humburger {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 999;
}
.humburger span {
    position: absolute;
    left: 50%;
    width: 30px;
    height: 2px;
    background-color: #333333;
}

.humburger.active span {
    background-color: #ffffff;
}

.humburger span:nth-child(1) {
    top: 10px;
    transform: translateX(-50%);
}

.humburger span:nth-child(2){
    top:50%;
    transform: translate(-50%,-50%);
}
.humburger span:nth-child(3) {
    bottom: 10px;
    transform: translateX(-50%);
}
.humburger.active span:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(315deg);
    transition: .3s ease-out;
}

.humburger.active span:nth-child(2){
    display: none;
}
.humburger.active span:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-315deg);
    transition: .3s ease-out;
}
/* sp-menu */
.sp-header-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 100%;
    display: inline-block;
    width: 100%;
    z-index: 99;
	height: 100%;
}

.menu-header-container {
    height: 100%;
}

.sp-header-menu ul {
    list-style: none;
    margin: 0;
	padding: 0;
    padding-top: 100px;
	padding-bottom: 100px;
    text-align: center;
    background-color: rgba(51, 51, 51, .9);
	height: 100%;
}
.sp-header-menu ul li {
    padding: 20px;
/*     border-bottom: 1px solid #c7c7c7; */
}
.sp-header-menu ul li:first-child {
    margin-top: 0;
/*     border-top: 1px solid #FFFFFF; */
}
.sp-header-menu ul li a {
    text-decoration: none;
    color: #FFFFFF;
}
.sp-header-menu.show {
    left: 0;
    transition: .4s ease-out;
}
@media screen and (max-width: 768px) {
    .sp-header-menu {
        display: block;
    }
    .humburger {
        display: block;
    }
    .sp-header-menu ul {
/*         margin-top: 100px; */
    }
}
@media screen and (max-width:520px) {
    .sp-header-menu ul {
/*         margin-top: 77px; */
    }
}


/* メイン */
main{
	margin-bottom:100px;
}

.entry-content{
	margin-top:0 !important;
}

.entry-content figure{
	margin-top:0 !important;
}

/* フッター */

.site-footer{
/* 	height:350px; */
	background-color:#ffffff;
	padding:5% 5% 1% 5%;
}

/* 2カラム */
.footer-grid{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap; /* 狭い幅では折り返す */
/*   height:135px; */
  padding-bottom: 50px;
}

/* 左：縦に並べる */
.footer-left{ 
	display:flex;
	flex-direction:column;
	gap:12px;
	font-size:14px;
}

/* フッターメニュー */
.footer-menu{ 
	display:flex; 
	flex-wrap:wrap; 
	gap:16px; 
	margin:0; 
	padding:0; 
	list-style:none;
	font-size:14px;
}

.footer-menu li{
	margin-right:55px;
}

.footer-menu a{ text-decoration:none; color:#111827; font-size:14px; }
.footer-menu a:hover{ text-decoration:underline; }

/* SNSメニュー（テキストでもOK） */
.social-menu{ display:flex; flex-wrap:wrap; gap:12px; margin:0; padding:0; list-style:none; }
.social-menu a{ text-decoration:none; font-size:14px; color:#111827; opacity:.9; }
.social-menu a:hover{ opacity:1; text-decoration:underline; }

/* 右：右寄せ（PC） */
.footer-right{	
	font-size:14px; 
	line-height:2;
}
.footer-right .org-name{ display:block; margin-bottom:6px; font-weight:400; }
.footer-right .org-address{ font-style:normal; margin:0 0 6px;}

.copyright{
	width:100%;
	height:auto;
	text-align:center;
	font-size:12px;
	letter-spacing:0.1em;
/* 	margin-top: auto; */
	margin-bottom:10px;
}

/* スマホは縦積み＋左寄せ */
@media (max-width: 768px){
	
	.footer-left{ 
		display:none;
	}

  .footer-right{ 
	  text-align:left;
	  font-size:12px;
	  margin-top: 20px;
      margin-left: 20px;
	}
}

/* トップページ */
.more-bt a{
	font-family: var(--font-en);
	font-size:14px;
	border:1px solid #333333;
	width:150px !important;
	height:40px;
	padding:0;
}

.more-bt-wh{
	position:absolute;
	left:100px;
	bottom:200px;
}

.more-bt-wh a{
	font-family: var(--font-en);
	font-size:14px;
	border:1px solid #ffffff;
	width:150px !important;
	height:40px;
	padding:0;
	background-color:#EBEBEB;
	color:#333333;
}

.form-bt a{
	font-family: var(--font-en);
	font-size:14px;
	border:1px solid #ffffff;
	width:150px !important;
	height:40px;
	padding:0;
	background-color:#EBEBEB;
	color:#333333;
}

/* TOP-About */

.top-about{
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.top-about-grid{
	margin-top:50px;
    margin-bottom:0 !important;
}

.top-about-left{
  font-family: var(--font-jp);
  line-height: 1.7;
  letter-spacing: 0.1em;
  font-size:58px;
  font-weight: 300;
  max-width: 530px;
}

.top-about-right{
  font-family: var(--font-jp);
  line-height: 4;
  letter-spacing: 0em;
  font-size:20px;
  font-weight: 400;
}

.top-about-right strong{
	font-size:28px;
}

/* TOP-Business */

.top-business{
    max-width: 1240px;
    margin: 200px auto 0 auto;
    padding: 0 40px;
}

.top-business-grid{
	align-items:baseline !important;
}

.top-business h2{
	font-family: var(--font-en);
	font-size:130px;
	font-weight: 100;
	letter-spacing:0;
	margin:0;
}

.top-business em{
	font-family: var(--font-jp);
	font-size:20px;
	font-style:normal;
	font-weight:400 !important;
	letter-spacing:0;
	margin-left:30px;
}

.top-business-right {
    max-width: 200px;
}

.top-business p{
	font-family: var(--font-jp);
	font-size:24px;
	line-height: 2.5;
	letter-spacing:0.1em;
	margin:80px 0;
}

/* TOP-News */
.top-news{
    max-width: 1160px;
    margin: 100px auto 0 auto;
    padding: 0 40px;
	background-color:#333333;
	border-radius:30px;
	height:528px;
	color:#ffffff;
	padding:100px;
	position:relative;
}

.top-news-grid{
	margin-top:auto;
	margin-bottom:auto;

}

.top-news h2{
	font-family: var(--font-en);
	font-size:80px;
	font-weight: 100;
	letter-spacing:0;
	margin:0;
	color:#ffffff;
}

.top-news em{
	font-family: var(--font-jp);
	font-size:20px;
	font-style:normal;
	font-weight:400 !important;
	font-weight: 100;
	letter-spacing:0;
	margin-left:20px;
	color:#ffffff;
}

.top-news-left {
    max-width: 400px;
}

.top-news ul{
	margin:0;
	padding:0;
	
}

.top-news li{
	border-top:1px solid #7E7E7E;
	padding:30px;
	font-size:16px;
}

.top-news li:last-child {
	border-bottom:1px solid #7E7E7E;
}

.top-news-date{
	margin-right:60px;
	font-size:15px;
}

.sp-br{
	display:none;
}

/* TOP-Note */
.top-note{
    max-width: 1240px;
    margin: 200px auto 0 auto;
    padding: 0 40px;
}

.top-note-grid{
	align-items:baseline !important;
}

.top-note h2{
	font-family: var(--font-en);
	font-size:130px;
	font-weight: 100;
	letter-spacing:0;
	margin:0;
}

.top-note em{
	font-family: var(--font-jp);
	font-size:20px;
	font-style:normal;
	font-weight:400 !important;
	font-weight: 100;
	letter-spacing:0;
	margin-left:30px;
}

.top-note-right {
    max-width: 200px;
}

.top-note p{
	font-family: var(--font-jp);
	font-size:24px;
	line-height: 2.5;
	letter-spacing:0.1em;
	margin:80px 0;
}

/* TOP-Contact */
.top-contact{
    max-width: 1160px;
    margin: 100px auto 0 auto;
    padding: 0 40px;
	background-color:#333333;
	border-radius:30px;
	height:528px;
	color:#ffffff;
	padding:100px;
	position:relative;
}

.top-contact-grid{
	margin-top:auto;
	margin-bottom:auto;
	align-items:end !important;
}

.top-contact h2{
	font-family: var(--font-en);
	font-size:80px;
	font-weight: 100;
	letter-spacing:0;
	margin:0;
	color:#ffffff;
}

.top-contact em{
	font-family: var(--font-jp);
	font-size:20px;
	font-style:normal;
	font-weight:400 !important;
	font-weight: 100;
	letter-spacing:0;
	margin-left:20px;
	color:#ffffff;
}

.top-contact-left {
    max-width: 400px;
}

.top-contact p{
	margin:80px 0 0 0;
	line-height:2.8;
}

@media (max-width: 768px){
	.more-bt {
	  justify-content:center !important;
	  margin-top:20px;
	}
	
	.more-bt-wh{
		position:absolute;
		left:calc(50% - 75px);
		bottom:50px;
    }
	
	.form-bt{
	  justify-content:center !important;
	  margin-top:20px;
    }
	
	/* TOP-About-SP */
	
	.top-about{
		margin: 0 auto;
		padding: 0 20px;
	}
	
	.top-about-grid{
	  margin-top:0;
      gap:1em !important;
	}
	
	.top-about-left{
	  line-height: 1.5;
	  letter-spacing: 0.1em;
	  font-size:32px;
	}
	.top-about-left p{
	  margin:10px 0;
	}
		
	.top-about-right{
	  font-size:14px;
	  line-height: 2.8;
	  letter-spacing: 0em;
	}

	.top-about-right strong{
		font-size:16px;
	}
	
	/* TOP-Business-SP */
	.top-business{
		margin: 65px auto 0 auto;
		padding: 0 20px;
	}
	
	.top-business h2{
	    font-size:40px;
	}

	.top-business em{
		font-size:14px;
		margin-left:15px;
	}

	.top-business-right {
		margin: 0 auto !important;
	}

	.top-business p{
		font-size:14px;
		margin:30px 0;
	}
	
	.top-business img{
/* 		width:80%; */
		display:block;
		margin:0 auto;
	}
	
	/* TOP-News-SP */
	.top-news{
		margin: 65px 20px 0 20px;
		padding: 0 0 120px 0;
		height:auto;
		min-height:400px;
	}
	.top-news h2{
	    font-size:40px;
	}

	.top-news em{
		font-size:14px;
		margin-left:15px;
	}
	
	.top-news-grid{
		padding-top: 50px;
		padding-left: 30px;
        padding-right: 30px;
	}
	
	.sp-br{
	    display:block;
    }
	
	.top-business{
		margin: 65px auto 0 auto;
		padding: 0 20px;
	}
	
	/* TOP-Note-SP */
	.top-note{
		margin: 65px auto 0 auto;
		padding: 0 20px;
	}
	
	.top-note h2{
	    font-size:40px;
	}

	.top-note em{
		font-size:14px;
		margin-left:15px;
	}

	.top-note-right {
		margin: 0 auto !important;
	}

	.top-note p{
		font-size:14px;
		margin:30px 0;
	}
	
	/* TOP-Contact-SP */
	.top-contact{
		margin: 65px 20px 0 20px;
		padding: 50px 30px 30px 30px;
		height:auto;
	}
	
	.top-contact h2{
	    font-size:40px;
	}

	.top-contact em{
		font-size:14px;
		margin-left:15px;
	}
	
	.top-contact-grid{
		padding-top: 50px;
	}

	.top-contact-right {
		margin: 0 auto !important;
	}

	.top-contact p{
		font-size:14px;
		margin:0;
		line-height:2.8;
	}

}

/* 一時非表示 */

.none,.menu-item-57,.menu-item-62,.menu-item-65,.menu-item-67,.menu-item-68{
	display:none !important;
}

/* 個別ページ 共通*/
.page-title,.page-grid{
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.page-title{
	text-align:center;
	margin-top:130px;
	margin-bottom:100px;
}

.page-title h2{
	font-family: var(--font-en);
	font-size:50px;
	font-weight: 100;
	letter-spacing:0.1em;
	margin:0;
}

.page-title p{
	font-family: var(--font-jp);
	font-size:20px;
	letter-spacing:0.1em;
}

@media (max-width: 768px){
	.page-title,.page-grid{
		padding: 0 20px;
	}

	.page-title{
		margin-top:50px;
		margin-bottom:50px;
	}

	.page-title h2{
		font-size:40px;
	}

	.page-title p{
		font-size:14px;
	}
}

/* ABOUT */

.page-about-left{
  font-family: var(--font-jp);
  line-height: 1.7;
  letter-spacing: 0.1em;
  font-size:58px;
  font-weight: 300;
  max-width: 530px;
}

.page-about-right{
  font-family: var(--font-jp);
  line-height: 2.6;
  letter-spacing: 0em;
  font-size:20px;
  font-weight: 400;
}

.page-about-right strong{
	font-size:28px;
}

/* ABOUT-Company */

.page-about-company{
    max-width: 1160px;
    margin: 200px auto 100px auto;
    padding: 0 40px;
	background-color:#333333;
	border-radius:30px;
/* 	height:528px; */
	height:auto;
	color:#ffffff;
	padding:100px;
	position:relative;
}

.page-about-company h2{
	font-family: var(--font-en);
	font-size:80px;
	font-weight: 100;
	letter-spacing:0;
	margin:0;
	color:#ffffff;
}

.page-about-company em{
	font-family: var(--font-jp);
	font-size:20px;
	font-style:normal;
	font-weight:400 !important;
	font-weight: 100;
	letter-spacing:0;
	margin-left:20px;
	color:#ffffff;
}

.page-about-company table{
	margin:80px auto;
	letter-spacing:0.1em;
}

.page-about-company figure {
	margin:0 80px;
 
}

.page-about-company th,.page-about-company td{
	border:none;
}

.page-about-company th{
	width:200px;
	padding:30px;
	border-top:1px solid #7E7E7E;
	border-bottom:1px solid #7E7E7E;
}

.page-about-company td{
	border-top:1px solid #7E7E7E;
	border-bottom:1px solid #7E7E7E;
}


@media (max-width: 1160px){
	.page-about-company{
		margin-left:40px;
		margin-right:40px;
	}
}

@media (max-width: 768px){

	.page-about-left{
	  line-height: 1.5;
	  letter-spacing: 0.1em;
	  font-size:32px;
	  margin:0 !important;
	}
		
	.page-about-right{
	  font-size:14px;
	  line-height: 2.8;
	  letter-spacing: 0em;
	  margin:0 !important;
	}

	.page-about-right strong{
		font-size:16px;
	}
	
	/* ABOUT-Company-SP */

	.page-about-company{
		margin: 65px 20px 0 20px;
		padding: 50px 30px 30px 30px;
		height:auto;
	}

	.page-about-company h2{
	    font-size:40px;
	}

	.page-about-company em{
		font-size:14px;
		margin-left:15px;
	}

	.page-about-company table{
		margin:40px auto;
		letter-spacing:0em;
		font-size:14px;
		line-height:1.4;
	}

	.page-about-company figure {
		margin:0 0px;

	}

	.page-about-company th{
		width:50px;
		padding:30px 0 30px 0 !important;
/* 		padding-left:0; */
	}	
	
}

/* BUSINESS */
.page-business-1{
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
	text-align:center;
}

.page-business-1 h3{
	font-family: var(--font-jp);
	font-size:40px;
	font-weight: 400;
	letter-spacing:0.1em;
	margin:0;
}

.page-business-1 p{
	font-family: var(--font-jp);
	font-size:24px;
	font-weight: 400;
	letter-spacing:0.1em;
	margin:20px 0;
}

.business-1-img img{
	border-radius:30px;
}

.business-1-img-sp{
	display:none;
}

.business-1-img-sp img{
	border-radius:30px;
}

.triangle {
    width: 300px;
    margin:100px auto 50px auto;
    clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
}

.page-business-2 {
    max-width: 1160px;
    margin: 100px auto 100px auto;
    padding: 0 40px;
	background-color:#ffffff;
	border-radius:30px;
	height:auto;
	color:#333333;
	padding:100px;
}

/* 下矢印 */

.box-triangle {
	position: relative;
}
.box-triangle::before {
	content: '';
	position: absolute;
	bottom: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 50px 150px 0 150px;
	border-color: #ffffff transparent transparent transparent;
	left: 50%;
	transform: translateX(-50%) translateY(100%);
}

.page-business-2 h3{
	font-family: var(--font-jp);
	font-size:58px;
	font-weight: 600;
	letter-spacing:0.1em;
	margin:0;
	text-align:center;
}

.page-business-2 li{
	font-family: var(--font-jp);
	font-size:24px;
	font-weight: 400;
	letter-spacing:0.1em;
	margin:50px 0;
}

.page-business-2 strong{
	font-size:36px;
	font-weight: 600;
}

/* olのスタイル */
.page-business-2 ol {
  margin: 0;
  padding: 50px;
  list-style: none; /* デフォルトの数字を非表示に */
  counter-reset: li;
}

/* ol内のliのスタイル */
.page-business-2 ol li {
  position: relative;
/*   font-size: 16px; */
  padding-left: 80px;
}

/* 2つ目以降のliにmargin-topを指定 */
.page-business-2 ol li:not(:first-child) {
  margin-top: 0.5em;
}

/* 数字のスタイル */
.page-business-2 ol li::before {
  counter-increment: li;
  content: counter(li);
  position: absolute;
  left: 0;
  top: 50%; /* 数字のY軸線上の位置を調整 */
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 0%;
  background-color: #000;
  font-size: 22px;
  color: #fff;
  line-height: 50px;
  text-align: center;
  transform: translate(0%, -50%);
}

.page-business-2 em {
  font-style:normal;
  font-weight: 600;
  background: linear-gradient(transparent 70%, #ffff3c 70%);
}

.page-business-3 {
    max-width: 1160px;
    margin: 100px auto 100px auto;
    padding: 0 40px;
	height:auto;
	color:#333333;
}

.page-business-3 h3{
	font-family: var(--font-jp);
	font-size:58px;
	font-weight: 400;
	letter-spacing:0.1em;
	margin:100px 0;
	text-align:center;
	line-height:1.5;
}

.point-blue{
	background-color:#0874BB;
	height:100px;
	padding:0 20px;
	border-radius:50px;
	font-size:40px;
	text-align:center;
	line-height:100px;
	color:#ffffff;
	width:650px;
	margin-left:auto;
	margin-right:auto;
}

.merit-grid{
	margin:100px 0;	
}

.merit-box{
	background-color:#ffffff;
	border-radius:30px;
	text-align:center;
	padding:50px 10px;
}

.merit-box h4{
	font-size:22px;	
}

.merit-box strong{
	background-color:#0874BB;
	padding:10px;
	color:#ffffff;
}

.page-business-4 {
    max-width: 1160px;
    margin: 100px auto 100px auto;
    padding: 0 40px;
	height:auto;
	color:#333333;
	text-align:center;
}

.link-grid{
	margin:50px 0;
}

.qr-grid{
	
}

.qr img{
	width:300px;
	height:auto;
}

.qr-text{
	align-self: center !important;
}

.qr-text p{
	padding:50px;
}

.plus-icon{
	text-align:center;
	margin:50px 0;
}

.plus-icon img{
	width:100px;
	height:auto;
}

.page-business-5 {
    max-width: 1160px;
    margin: 100px auto 100px auto;
    padding: 0 40px;
	height:auto;
	color:#333333;
	text-align:center;
}

.page-business-5 h4{
	font-size:22px;	
}

@media (max-width: 768px){
	.business-1-img{
		display:none;
	}
	
	.business-1-img-sp{
		display:block;
	}

	
	.page-business-1 h3 {
		font-size:24px;
	}
	
	.page-business-1 p {
		font-size:16px;
	}
	
	.page-business-2 {
		margin:80px 20px;
		padding:20px;
	}
	
	.box-triangle::before {
		border-width: 30px 80px 0 80px;
	}
		
	.page-business-2 ol {
		padding:0;
	}
	
	.page-business-2 li{
		font-size:14px;
		letter-spacing:0.1em;
		margin:20px 0;
		padding-left:60px !important;
	}

	.page-business-2 strong{
		font-size:16px;
	}
	
	.page-business-2 h3 {
		font-size:24px;		
	}
	
	.page-business-3 h3{
		font-size:28px;
		margin:50px 0;
		line-height:1.5;
	}
	
	.merit-grid{
		margin:50px 0;	
	}
	
	.point-blue{
		height:60px;
		padding:0 20px;
		border-radius:30px;
		font-size:22px;
		line-height:60px;
		width:100%;
		margin-left:auto;
		margin-right:auto;
	}
	
	.qr-text p {
		padding: 20px;
	}
	
	.qr img {
		width: 250px;
	}
	
	.plus-icon img {
		width: 50px;
		height: auto;
	}	
}

/* CONTACT */
.page-contact-1{
	margin:50px;
	font-family: var(--font-jp);
	font-size:16px;
}

/*　Webフォーム　*/
.wpcf7-form {
    background: #fff;
}

.wpcf7 {
    background: #fff;
    border: none;
	max-width: 1160px;
    margin: 100px auto 0 auto;
	background-color:#ffffff;
	border-radius:30px;
	color:#333333;
	padding:150px;
	font-family: var(--font-jp);
	font-size:16px;
}

.wpcf7-text,.wpcf7-email,.wpcf7-tel,.wpcf7-textarea {
/*     border: 1px solid #333333; */
    border-radius: 5px;
    color:#333;
    background: #EBEBEB;
	margin:0px 0px 20px 0px;
	width: 100%!important

}

p:has(.wpcf7-submit ){
	text-align:center;
}

.wpcf7-submit {
	width:300px;
	height:60px;
    border-radius: 30px !important;
    margin: 50px auto;
    background: #333 !important;
    text-align:center;
	color:#fff !important;
}

.wpcf7-spinner{
	display:block;
}

@media (max-width: 768px){
	.wpcf7 {
		margin: 65px 20px 0 20px;
		padding:50px 20px;
		font-size:14px;
	}
}
