/*Questrial*/
@import url(https://fonts.googleapis.com/css?family=Questrial);

/*Kosugi Maru*/
@import url(https://fonts.googleapis.com/css?family=Kosugi+Maru&display=swap);

@media only screen and 
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx) {
  *{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}


/************************************************************************/
/*すべての要素に対して共通の設定*/
*{
	text-align:justify;
	text-align:justify-all;
	text-justify:inter-character;
	box-sizing: border-box;
	word-wrap: break-word;
	text-overflow:ellipsis;
}

/************************************************************************/
/*HTML*/
html{
	color:#666;
	margin:0;
	padding:0;
	font-size:19px;
	font-family:'Century Gothic' , "Questrial" , "Kosugi Maru" ,  sans-serif;
	line-height:1.4;
	width:100%;
	height:100%;
	scroll-behavior:smooth;
}


/************************************************************************/
/*ブラウザに表示する内容全体のタグ*/
body{
	margin:0;
	padding:0;
	overflow: auto;
	overflow: scroll-y;
	overflow-y: scroll;
	overflow: -moz-scrollabars-vertical;
	width:100%;
	height:100%;
}

/************************************************************************/
/*コンテンツのヘッダー情報をまとめるタグ*/
header{
	display:block;
	margin:0;
	padding:0;
	position:relative;
}

/************************************************************************/
/*主要な内容*/
main{
	display:block;
	margin:0;
	padding:0;
}

/************************************************************************/
/*リンクをまとめるセクションのタグ*/
nav{
	display:block;
	margin:0;
	padding:0;
}

/************************************************************************/
/*見出しと内容をまとめるセクションのタグ*/
section{
	display:block;
	margin:0;
	padding:0;
}
/************************************************************************/
/*単独で扱える記事のようなセクションのタグ*/
article{
	display:block;
	margin:0;
	padding:0;
}

/************************************************************************/
/*本筋から逸れる解説などのセクションのタグ*/
aside{
	display:block;
	margin:0;
	padding:0;
}

/************************************************************************/
/*コンテンツのフッター情報をまとめるタグ*/
footer{
	display:block;
	margin:0;
	padding:0;
}

/************************************************************************/
/*特定の意味を持たないブロックのタグ*/
div{
	display:block;
	margin:0;
	padding:0;
}


/************************************************************************/
/*見出しのタグ*/
hgroup{/*二つ以上の見出しをまとめるタグ*/}
h1,h2,h3,h4,h5,h6{
	margin:0;
	padding:0;
	font-size:1em;
	font-weight:300;
	color:#000;
	line-height:1.4;
}

/************************************************************************/
/*リンクのタグ*/
a{
	text-decoration:none;
}

a:visited{
	text-decoration:none;
}

a:hover{
	text-decoration:underline;
}

a:active{
	text-decoration:underline double red;
}

p a[target="_blank"]{
	position:relative;
}

p a[target="_blank"]::before{
	/*content:"\02197";*/
	display:inline-block;
	color:#0000AA;
	font-weight:800;
}

p a[target="_blank"]:hover::after{
	display:inline-block;
	padding:0.25em;
	position:absolute;
	top:-1.8em;
	left:0;
	z-index:100;
	font-size:0.8em;
	content:"\02197";
	background:#ffffee;
	border-radius:0.2em;
	white-space:nowrap;
}

/************************************************************************/
/*直近の祖先要素となるarticle要素、またはbody要素に対する連絡先情報*/
address{}

/************************************************************************/
/*ページ内に音声ファイルを埋め込むタグ*/
audio{}

/************************************************************************/
/*ページ内に動画ファイルを埋め込むタグ*/
video{
	width:100%;
	height:auto;
	overflow:hidden;
	display:block;
	border:none;
}

/************************************************************************/
/*動画や音声と同期するテキストトラックのタグ*/
track{}

/************************************************************************/
/*ページ内に画像や音声、動画を埋め込むタグ*/
object{
	display:block;
	margin:0;
	padding:0;
	}

/*objectタグのコンテンツのパラメータのタグ*/
param{
	display:block;
	margin:0;
	padding:0;
}

/*ページ内に主にFlash等を埋め込むタグ*/
embed{}

/*ページ内に埋め込む動画や音声を指定するタグ*/
source{}

/************************************************************************/
/*ページ内にcanvasを埋め込むタグ*/
canvas{}

/************************************************************************/
/*ページ内にフレームを埋め込むタグ*/
iframe{}

/************************************************************************/
/*引用するコンテンツのタグ*/
blockquote{
	margin:1em 0 1em 1em;
	padding:1em;
	position:relative;
}


/************************************************************************/
/*作品の出典（タイトル）用タグ*/
cite{}

/************************************************************************/
command{/*右クリックメニューやキーボード操作の内容のタグ*//*HTML5の仕様から削除される予定*/}

/************************************************************************/
/*後から削除するコンテンツのタグ*/
del{}

/************************************************************************/
/*クリックすると見られる詳細情報のタグ*//*Microsoft Edge ・IE11 未対応*/
details{}

/*detailタグにつけるラベルのタグ*/
summary{cursor:pointer;}

/************************************************************************/
/*項目に関する記述リストのタグ*/
dl{

}

/*項目に関する記述リストの項目のタグ*/
dt{
	font-weight:bold;
}


/*項目に関する記述リストの記述のタグ*/
dd{
	
}

/************************************************************************/
/*リスト*/
ul{
	
}

ul li{
	
}

/************************************************************************/
/*番号リスト*/
ol{

}

ol li{

}


/************************************************************************/
/*図表や画像とその説明をまとめるタグ*/
figure{
	margin:0;
	padding:0;
	width:auto;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}

/*図表や画像につける説明のタグ*/
figcaption{
	margin:0;
	padding:0;
	text-align:center;
	font-size:0.8em;
}

/************************************************************************/
/*写真や画像のタグ*/
img{
	margin:0;
	padding:0;
	max-width:100%;
	height:auto;
	vertical-align:bottom;
	border:none;
}

a:hover img{
	opacity: 0.6;
}

figure img{
	display:block;
	margin:0;
	padding:0;
}

/************************************************************************/
/*フォームのタグ*/
form{
	margin:0;
	padding:0;
	display:block;
}

/*フォーム内の入力項目のタグ*/
input{
	font-family:monospace;
	display:inline-block;
}

/*画面上は表示されない隠しデータを指定する*/
input[type="hidden"]{}

/*一行テキストボックスを作成する*/
input[type="text"]{
	width:100%;
	height:40px;
	margin:0;
	padding:0.5em;
	display:block;
	color:#000;
}

/*検索テキストの入力欄を作成するHTML5から追加*/
input[type="search"]{
	width:100%;
	height:40px;
	margin:0;
	padding:0.5em;
	display:block;
	color:#000;
	font-family:monospace;
}

/*電話番号の入力欄を作成するHTML5から追加*/
input[type="tel"]{
	width:100%;
	height:40px;
	margin:0;
	padding:0.5em;
	display:block;
	color:#000;
	font-family:monospace;
}

/*URLの入力欄を作成するHTML5から追加*/
input[type="url"]{
	width:100%;
	height:40px;
	margin:0;
	padding:0.5em;
	display:block;
	color:#000;
}

/*メールアドレスの入力欄を作成するHTML5から追加*/
input[type="email"]{
	width:100%;
	height:40px;
	margin:0;
	padding:0.5em;
	display:block;
	color:#000;
}

/*パスワード入力欄を作成する*/
input[type="password"]{
	width:100%;
	height:40px;
	margin:0;
	padding:0.5em;
	display:block;
	color:#000;
}

/*UTC（協定世界時）による日時の入力欄を作成するHTML5から追加*/
input[type="datetime"]{
	width:100%;
	height:40px;
	margin:0;
	padding:0.5em;
	display:block;
	color:#000;
}

/*日付の入力欄を作成するHTML5から追加*/
input[type="date"]{
	width:auto;
	height:40px;
	margin:0;
	padding:0.5em;
	display:block;
	color:#000;
}

/*月の入力欄を作成するHTML5から追加*/
input[type="date"]{
	width:auto;
	height:40px;
	margin:0;
	padding:0.5em;
	display:block;
	color:#000;
}

/*月の入力欄を作成するHTML5から追加*/

input[type="month"]{
	width:auto;
	height:40px;
	margin:0;
	padding:0.5em;
	display:block;
	color:#000;
}

/*週の入力欄を作成するHTML5から追加*/
input[type="week"]{
	width:auto;
	height:40px;
	margin:0;
	padding:0.5em;
	display:block;
	color:#000;
}

/*時間の入力欄を作成するHTML5から追加*/
input[type="time"]{
	width:auto;
	height:40px;
	margin:0;
	padding:0.5em;
	display:block;
	color:#000;
}


/*UTC（協定世界時）によらないローカル日時の入力欄を作成するHTML5から追加*/
input[type="datetime-local"]{
	width:auto;
	height:40px;
	margin:0;
	padding:0.5em;
	display:block;
	color:#000;
}

/*数値の入力欄を作成するHTML5から追加*/
input[type="number"]{
	width:auto;
	height:40px;
	margin:0;
	padding:0.5em;
	display:block;
	color:#000;
	text-align:right;
}

/*レンジの入力欄を作成するHTML5から追加*/
input[type="range"]{
	width:auto;
	height:40px;
	margin:0;
	padding:0.5em;
	display:block;
	color:#000;
}


/*色の入力欄を作成するHTML5から追加*/

input[type="color"]{
	margin:0;
	padding:0;
	border:none;
}


/*チェックボックスを作成する*/

input[type="checkbox"]{
	border:none;
	width:1em;
	height:1em;
	margin:0;
	padding:0;
}

/*ラジオボタンを作成する*/

input[type="radio"]{
	border:none;
	width:1em;
	height:1em;
	margin:0;
	padding:0;
}

/*サーバーへファイルを送信する*/
input[type="file"]{
	border:none;
	display:block;
	margin:0;
	padding:0;
}


/*送信ボタンを作成する*/
input[type="submit"]{
	all:initial;
	display:inline-block;
	background-color: transparent;
	cursor: pointer;
	outline: none;
	margin:0 auto 0 auto;
	padding:0;
	appearance: none;
	text-align:center;
	font-size:1em;
	line-height:40px;
	border: none;
	border:solid 1px #000;
	min-width:120px;
	min-height:40px;
	vertical-align:bottom;
}

/*画像ボタンを作成する*/
input[type="image"]{
	all:initial;
	display:inline-block;
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	margin:0 auto 0 auto;
	padding:0;
	appearance: none;
	text-align:center;
	font-size:1em;
	line-height:1;
	border:solid 1px #000;
	border-radius:0.25em;
	vertical-align:bottom;
}

/*リセットボタンを作成する*/
input[type="reset"]{
	all:initial;
	font-family:monospace;
	display:inline-block;
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	margin:0 auto 0 auto;
	padding:0;
	appearance: none;
	text-align:center;
	font-size:1em;
	line-height:40px;
	border:solid 1px #000;
	border-radius:0.25em;
	min-width:120px;
	min-height:40px;
	vertical-align:bottom;
	letter-spacing: 0.5em;
	margin-right: -0.5em;
}

/*汎用ボタンを作成する*/

input[type="button"]{
	display:inline-block;
	background-color:#f8f8f8;
	border: none;
	cursor: pointer;
	outline: none;
	margin:0 auto 0 auto;
	padding:0;
	appearance: none;
	text-align:center;
	font-size:1em;
	line-height:40px;
	border:solid 1px #000;
	min-width:160px;
	min-height:40px;
	vertical-align:bottom;
	letter-spacing: 0.5em;
	margin-right: -0.5em;
}

input[type="button"]:hover{
	background:#fff;
}

input[type="button"]:active{
	background:#ccc;
}


/*フォーム内のボタンのタグ*/
button{
	display:inline-block;
	background-color:#f8f8f8;
	border: none;
	cursor: pointer;
	outline: none;
	margin:0 auto 0 auto;
	padding:0;
	appearance: none;
	text-align:center;
	font-size:1em;
	line-height:40px;
	border:solid 1px #000;
	min-width:160px;
	min-height:40px;
	vertical-align:bottom;
	letter-spacing: 0.5em;
	margin-right: -0.5em;
}

/*フォーム内の文章の入力項目のタグ*/
textarea{
	display:block;
	resize: vertical;
	width: 100%;
	min-height:10em;
}

/*フォーム内のメニューのタグ*/
select{
	font-family:monospace;
	margin:0;
	padding:0;
	border:solid 1px #999;
	color:#000;
	cursor:pointer;
	background:#fff;
	vertical-align:middle;
	width:100%;
	height:40px;
}

/*フォーム内の複数のoptionタグをまとめるタグ*/
optgroup{}

/*フォーム内のメニューの選択肢のタグ*/
option{}
option:nth-child(odd){
	background:#eee;
}

/*フォーム内の計算結果の出力のタグ*/
output{
	display:block;
}

output::before{
	content:"\02234";
}

/*フォーム内の内容をまとめるタグ*/
fieldset{
	margin:0;
	padding:0;
	border:none;
}

/*fieldsetタグにつけるタイトルのタグ*/
legend{
	margin:0;
	padding:0;
	border:none;
	font-size:1.2em;
}

/*フォーム内の入力項目に選択肢をつけるタグ*/
datalist{}

/*フォーム内で暗号になるキーを作るタグ*/
keygen{}

/*フォーム内の項目にラベルを付けるタグ*/
label{}

/************************************************************************/
/*画像のクリックする場所を決めるタグ*/
map{}
area	{}

/************************************************************************/
/*ツールバーや右クリックメニューを埋め込むタグ（非推奨要素）*/
menu{}

/************************************************************************/
/*予め数値の決まったゲージのタグ*/
meter{}


/************************************************************************/
/*段落のタグ*/
p{
	margin:0;
	padding:0;
	margin-bottom:1em;
}

/************************************************************************/
/*段落と段落の区切りのタグ*/

hr{
	display:block!important;
	width:100%!important;
	height:1px!important;
	margin:0 0 1em 0!important;
	padding:0;!important
	border:none!important;
	background:#eee!important;
	clear:both!important;
}

.wp-block-separator{
	display:block!important;
	width:100%!important;
	height:1px!important;
	margin:2rem 0 2rem 0!important;
	padding:0!important;
	border:none!important;
	background:#ccc!important;
	clear:both!important;
}
/************************************************************************/
/*書いたままのテキストを表示するタグ*/
pre{}

/************************************************************************/
/*処理の進捗状況などのゲージのタグ*/
progress{}

/************************************************************************/
/*文章内の略称や頭字語のテキストのタグ*/
abbr{}
/************************************************************************/
/*文章内の引用部分のテキストのタグ*/
q{}

/************************************************************************/
/*文章内の後から追記されたコンテンツのタグ*/
ins{}
/************************************************************************/
/*文章内のプログラムなどのコードのタグ*/
code{}
/************************************************************************/
/*文章内の定義する用語のテキストのタグ*/
dfn{}
/************************************************************************/
/*文章内の慣習上斜体にするテキストのタグ*/
i{}
/************************************************************************/
/*文章内の入力テキストかキーボードのキーのタグ*/
kbd{}
/************************************************************************/
/*文章内の書く方向を独立させるテキストのタグ*/
bdi{}

/************************************************************************/
/*文章内の書く方向を決めるテキストのタグ*/
bdo{}
/************************************************************************/
/*文章内の改行のタグ*/
br{}

/************************************************************************/
/*文章内の目立たせたテキストのタグ*/
mark{}

/************************************************************************/
/*文章内のルビを付けるテキストのタグ*/
ruby{}

/*ルビが表示されない場合のカッコのタグ*/
rp{}

/*ルビとして付くテキストのタグ*/
rt{}

/************************************************************************/
/*文章内の打ち消し線のついたテキストのタグ*/
s{}

/************************************************************************/
/*文章内のプログラムで出力するテキストのタグ*/
samp{}

/************************************************************************/
/*文章内の補足や細目のテキストのタグ*/
small{}

/************************************************************************/
/*文章内の特定の意味を持たないテキストのタグ*/
span{}

/************************************************************************/
/*文章内の重要性の高いテキストのタグ*/
strong{}

/************************************************************************/
/*文章内の特に強調するテキストのタグ*/
em{}

/************************************************************************/
/*文章内の慣習上太字にするテキストのタグ*/
b{}

/************************************************************************/
/*文章内の慣習上下線を引くテキストのタグ*/
u{}

/************************************************************************/
/*文章内の上下に付くテキストのタグ*/
sub{}

/************************************************************************/
/*文章内の下上に付くテキストのタグ*/
sup{}

/************************************************************************/
/*テーブル関連*/

/*テーブル内の縦列をまとめるタグ(表の縦列の属性やスタイルを指定する)*/
col{}
/*colタグをまとめるタグ*/
colgroup{}

table{
	display:table;
	border-collapse:collapse;
	border-spacing:0;
	font-size:0.9em;
	line-height:1.2;
	margin-left:auto;
	margin-right:auto;
}

caption{
	display:table-caption;
	padding:0.5em 0.5em 0.5em 0;
	text-align:left;
}

thead{
	display:table-header-group;
	background:#f0f0f0;
}

tbody{
	display:table-row-group;
}

tfoot{}


tr{
	display:table-row;
	width:100%;
}

th{
	display:table-cell;
	border:solid 1px #ccc;
	padding:0.5em;
	font-weight:bold;
}

td{
	display:table-cell;
	border:solid 1px #ccc;
	padding:0.5em;
}

tbody tr:nth-child(even){
	background:#f8f8f8;
}

/*Tableモバイル用*/
@media screen and (max-width: 768px){
	table{
		width:90%;
		display:block;
		overflow:scroll-x;
		overflow-x:scroll;
		-webkit-overflow-scrolling: touch;
	}
	
	caption{
		display:block;
		width:100%;
		position:sticky;
		top:0;
		left:0;
	}

	tr{}
	
	th{}
	
	td{}
	
	thead{}
	
	thead th{}

	tbody{
		width:100%;
		position:relative;
	}
	
	tbody th{
		position: sticky;
		top:0;
		left:0;
		z-index:5;
	}

	tbody tr:nth-child(even){
		background:#f8f8f8;
	}
}

/************************************************************************/
/*文章内の日時のタグ*/
time{}

/************************************************************************/

/*文章内の変数のテキストのタグ*/
var{}

/************************************************************************/
/*文章内の改行可能な位置のタグ*/
wbr{}


/************************************************************************/
/*回り込み解除*/
.clearfix::after{
  content: "";
  display: block;
  clear: both;
  margin-bottom:2rem;
}

/*メインビジュアル*/
.section1__main--image{
	width:100%;
	max-width:1280px;
	margin:0 auto 0 auto;
	padding:0 3em;
	min-height:calc(100vh - 100px);
}@media screen and (max-width:768px){
	.section1__main--image{
	min-height:calc(100vh - 65px);
	}
}

.image-wrap{
	position: relative;
	margin:0;
	padding:0;
	width:100%;
	height:100%;
	overflow:hidden;
	display:flex;
	justify-content: center;
	align-items: center;
}

.maintitle{
	margin:0 auto 0 auto;
	padding:0 0 3em 0;
	width:90%;
	height:auto;
}

.maintitle h1{
	margin:0;
	padding:0;
	font-size:1em;
	font-weight:100;
}

.maintitle p{
	margin:0;
	padding:0;
	font-size:1.3em;
	font-weight:800;
	color:#313131;
	text-shadow:1px 1px 0 #FFF , -1px 1px 0 #FFF , 1px -1px 0 #FFF , -1px -1px 0 #FFF , 0 0 10px #FFF;
	text-align:center;
}

.maintitle p strong{
	font-weight:100;
}

.maintitle p.large{
	font-size:3em;
	font-weight:600;
	color:#FFF;
	text-shadow:1px 1px 0 #313131 , -1px 1px 0 #313131 , 1px -1px 0 #313131 , -1px -1px 0 #313131 , 0 0 10px #313131;
}

@media screen and (min-width: 769px){
	br.mb{
		display:none;
	}
}

/************************************************************************/
/*お問合せフォーム*/
/************************************************************************/

.wrap__form--standard{
	width:100%;
	max-width:1280px;
	height:auto;
	margin:0 auto 0 auto;
	padding:0;
}

.wrap__form--standard dl{
	display:flex;
	flex-wrap: wrap;
	width:100%;
	font-size:1em;
	margin:0 0 0.5em 0;
	padding:0.25em;
}

.wrap__form--standard dt{
	background:#EEE;
	border:solid 1px #CCC;
	flex:1 1 25%;
	margin:0.25rem;
	padding:0.25rem;
	color:#000;
	font-weight:bold;
}

.wrap__form--standard dt label{
	display:block;
	margin:0;
	padding:0.25rem 0.25rem 0.25rem 0.5rem;
	width:auto;
	height:100%;
	text-align:left;
	text-indent:-0.6em;
}


.wrap__form--standard dd{
	border:solid 1px #CCC;
	flex:1 1 65%;
	margin:0.25rem;
	padding:0;
}

.wrap__form--standard dd.border-none{
	border:none;
	
}

.wrap__form--standard p{
	text-align:left;
	margin:0 0 1em 0;
	margin:0;
	padding:0;
	font-size:0.9em;
}

.wrap__form--standard input[type="checkbox"]{
	margin:0;
	padding:0;
}

.wrap__form--standard span{
	margin:0;
	padding:0;
}


.wrap__form--standard input[type="tel"]{
	margin:0;
	padding:0.5em;
	display:inline-block;
	width:100%;
	height:100%;
	border:none;
	background-color:#fff;
}

.wrap__form--standard input[type="text"]{
	margin:0;
	padding:0.5em;
	display:inline-block;
	width:100%;
	min-height:100%;
	border:none;
	background-color:#fff;
}

.wrap__form--standard input[type="number"]{
	display:inline-block;
	margin:1em 0.5em 1em 0.5em;
	border:solid 1px #ccc;
	font-family:serif;
}


.wrap__form--standard input[type="email"]{
	margin:0;
	padding:0.5em;
	display:inline-block;
	width:100%;
	min-height:100%;
	border:none;
	background-color:#fff;
}


.wrap__form--standard input[type="radio"]::before{
	width:1em;
	height:1em;
	margin:0;
	padding:1em;
}


.wrap__form--standard span.wpcf7-list-item{
	margin:0;
	padding:0;
	display:block;
}


.wrap__form--standard textarea{
	display:block;
	margin:0;
	padding:0.5em;
	border:none;
	width:100%;
	min-height:100px;
}

.wrap__form--standard input[type="date"]{
	display:inline-block;
	margin:1em 0.5em 1em 0.5em;
	border:solid 1px #CCC;
	font-family:serif;
}

.wrap__form--standard select{
	display:inline-block;
	margin:1em 0.5em 1em 0.5em;
	border:solid 1px #CCC;
	font-size:1em;
	font-family:serif;
}


.wrap__form--standard input[type="submit"]{
	display:block;
	font-weight:bold;
	margin:auto;
	border:solid 1px #CCC;
	color:#FFF;
	background:#EE6600;
	filter: drop-shadow(1px 1px 3px rgba(0, 0, 0,0.5));
	text-align:center;
}

.wrap__form--standard input[type="submit"]:hover{
	background:#EE5500;
	transition:all 0.25s ease-in;
	filter: drop-shadow(3px 3px 5px rgba(0, 0, 0,0.5));
}

/*recaptcha非表示*/
.grecaptcha-badge{
	visibility: hidden;
}

/*ブロック*/
.block_box{
 /*border:solid 3px #ffa500;*/
 background:#ffdab9;
 padding:1.2em;
 margin:1.5em;
}

/*下線*/
strong.marker{
	border-bottom:solid 5px #8ED1FC;
}

/*リスト間隔*/
li.space_li{
	margin-bottom:1em;
}

/*ボタンデザイン*/
a.wp-block-button__link{
	display: block;
	position: relative;
	margin: 0 auto;
	text-align:center;
	padding: 1em 2em;
	width: 380px;
	color: #FFF;
	font-size: 18px;
	font-weight: 700;
	background-color: #cccccc;
	border-radius: 50vh;
	transition: 0.3s;
}@media screen and (max-width: 768px){
	a.wp-block-button__link{
	font-size:0.9em;
	width:250px;
	}
}


a.wp-block-button__link::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background-color: #f2f2f2;
	border-radius: 50vh;
}@media screen and (max-width: 768px){
	a.wp-block-button__link::before {
	width: 30px;
	height: 30px;
	}
}


a.wp-block-button__link::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 32px;
	transform: translateY(-50%) rotate(45deg);
	width: 5px;
	height: 5px;
	border-top: 3px solid #333333;
	border-right: 3px solid #333333;
}@media screen and (max-width: 768px){
	a.wp-block-button__link::after {
	right:22px;
	}
}


a.wp-block-button__link:hover {
	text-decoration: none;
	background-color: #cccccc;
}


/***********追加*************/
.flex{
	display:flex;
	justify-content: space-around;
	align-items: center;
	margin:0 0 2em 0;
	padding:0;
}@media screen and (max-width: 768px){
	.flex{
	display:block;
	text-align:center;
	}
}

.solution_box{
	max-width:650px;
	height:auto;
	margin:0;
}@media screen and (max-width: 768px){
	.solution_box{
	max-width:100%;
	margin:0 1.3em;
	}
}

.solution_box h1{
	color:#EE6600;
	font-size:2.3em;
	font-weight:600;
}@media screen and (max-width: 768px){
	.solution_box h1{
	text-align:center;
	font-size:1.4em;
	}
}

.solution_box p{
	margin:2em 0 3em 0;
}@media screen and (max-width: 768px){
	.solution_box p{
	text-align:center;
	}
}

@media screen and (max-width: 768px){
	.main_visual{
	text-align:center;
	}
}

.top_contact{
}@media screen and (max-width: 768px){
	.top_contact{
	text-align:center;
	margin:0 0 2em 0;
	}
}

.top_contact a:hover{
	background:#f4a460;
}

.top_contact a{
	color:#FFF;
	background:#EE6600;
	padding:1em 2em;
	text-decoration:none;
}@media screen and (max-width: 768px){
	.top_contact a{
	text-align:center;
	}
}

.content{
	display:flex;
	justify-content: space-between;
	align-items: center;
	margin:0 0.5em;
	padding:0;
}@media screen and (max-width: 768px){
	.content{
	
	display:block;
	text-align:center;
	margin:0 0 3em 0;
	/*
	
	display:none;
	*/
	}
}

.content_box p{
	max-width:450px;
	margin-top:1em;
	padding:0;
}@media screen and (max-width: 768px){
	.content_box p{
	text-align:center;
	max-width:100%;
	font-size:0.9em;
	margin:0.5em 2em;
	}
}

.content_box{
	margin-left:2em;
}@media screen and (max-width: 768px){
	.content_box{
	text-align:center;
	margin:0 0.8em;
	}
}

.content_box h2{
	font-weight:bold;
	min-width:280px;
	font-size:1.2em;
}@media screen and (max-width: 768px){
	.content_box h2{
	font-size:1em;
	min-width:auto;
	margin:0.5em 0;
	}
}

a.button_design{
/*
	background:#CCC;
	border-radius:50px;
	padding:0.2em 0.5em 0.5em 0.5em;
	margin:0 2em;
	border:solid 1px #696969;
*/
}@media screen and (max-width: 768px){
	a.button_design{
	/*
	margin:0 0 0 1em;
	*/
	}
}

@media screen and (max-width: 768px){
	a.button_design img{
	width:20px;
	height:20px;
	}
}

@media screen and (max-width: 768px){
	.mobile_title{
	display:flex;
	text-align:center;
	}
}

.title_box{
	display:flex;
	align-items:center;
}@media screen and (max-width: 768px){
	.title_box{
	justify-content:center;
	}
}


