@charset "utf-8";



/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("slide.css");
@import url("inview.css");
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');

/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--text-color: #eee;				/*テキストカラー*/

	--primary-color: #d3e5ec;	/*テンプレートのメインとなる色*/
	--primary-text-color: #eee;		/*メインカラーの上で使うテキスト色*/
	
	--global-space: 5vw;			/*サイト内の左右へとる余白を一括管理しています。画面幅100%＝100vwです。*/
}


/*改行
---------------------------------------------------------------------------*/
.br-sp {
  display: none;
}

@media screen and (max-width: 1080px) {
  .br-pc {
    display: none;
  }

  .br-sp {
    display: inline-block;
  }
}

/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*fadeInのキーフレーム設定（テキストのフェードインに使用）
---------------------------------------------------------------------------*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.8);}
	100% {opacity: 1;transform: scale(1);}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	height: 100%;
	font-size: 13px;	/*基準となるフォントサイズ。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		html, body {
			font-size: 16px;	/*基準となるフォントサイズ。*/
		}

	}/*追加指定ここまで*/


body {
	margin: 0;padding:0;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類（ゴシック）*/
	font-optical-sizing: auto;
	/*font-weight: 300;*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
color: #403f3f;
	line-height: 2;		/*行間*/
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}
section + section {
	margin-top: 3rem;
}

 h1{
  font-size: 11px;
  font-weight: normal;
  margin-top: 10px;
  letter-spacing: 0.1em;
}
/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #5d7e55;	/*文字色。css冒頭で指定しているtext-colorを読み込みます*/
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	text-decoration: none;	/*下線を消す*/
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
}

p   {letter-spacing: 0.1em;}
/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
body:not(.home) #container {
	height: 100%;
	display: flex;
	flex-direction: column;	/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}


/*コンテンツ（フッター関連「以外」を囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
	
}

	/*画面幅600px以下の追加指定*/
	@media screen and (max-width:600px) {

	#contents {
	       margin-top: 50px;
		  
		
	}

	}/*追加指定ここまで*/


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	display: flex;					/*flexボックスを使う指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	justify-content: space-between;
	height: 90px;					/*ヘッダーの高さ*/
	padding: 1vw 3vw;				/*ヘッダー内の余白。上下、左右への順番。*/
	font-family: "Reddit Sans", "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
    position: absolute;
    z-index: 1;
    width: 100%;
	background:#ffffffbd;
	
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	
	/*ヘッダーブロック*/
	header {
		position: fixed;	
		background:#fffffff0;
	}
	
	}

/*ロゴ（※画像にする場合）*/
#logo img {
	display: block;
	width:210px;
	margin-top: 10
  
}

/*ロゴ（テキストにする場合）*/
#logo a {
	display: block;text-decoration: none;
	font-size: 1.2rem;	/*文字サイズを120%に*/
	font-weight: 800;	/*文字の太さ*/
}
.vlogo{
   position: absolute;
  width: 300px;
  top: 20%;
  left: 43%;
  background: #fff9;
  border-radius: 50%;
 padding: 1%;
  
}

/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {display: block;
right: 10px;
position: absolute;}
.small-screen #menubar.display-block {display: block;}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {display: none;}

/*ドロップダウンの親メニューのカーソル表示を変更*/
a.ddmenu {cursor: default;}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指示*/
	content: "\f078";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;	/*アイコンとテキストとの間に空けるスペース*/
}


/*大きな端末用のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
.large-screen #menubar > nav > ul {
	display: flex;		/*横並びにする*/
	font-size: 0.85rem;	/*文字サイズ。85%。*/
	gap: 0.5rem;		/*メニュー同士の間に空けるマージン的な要素*/
}

/*メニュー１個あたりの設定*/
.large-screen #menubar li a {
	border-radius: 100px;	/*角を丸くする指定。適当に大きければOKです。*/
	padding: 0.2rem 1rem;	/*上下、左右へのメニュー内の余白*/
	color: #363535;
}

/*マウスオン時*/
.large-screen #menubar li a:hover {
	color: #63a070;		/*背景色*/
}


/*大きな端末、小さな端末、共通のドロップダウンメニュー設定
---------------------------------------------------------------------------*/
/*ドロップダウンブロック*/
.large-screen #menubar ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}


/*大きな端末用のドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
.large-screen #menubar ul ul {
	position: absolute;z-index: 100;
}

/*メニュー１個あたり*/
.large-screen #menubar ul ul a {
	margin-top: 0.4rem;	/*上に空けるスペース。メニュー同士の隙間です。*/
}


/*小さな端末用の開閉ブロック
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding-top: 90px;	
    background: rgb(255 255 255 / 96%);
	animation: animation1 0.2s both;	/*animation1を実行する。0.2sは0.2秒の事。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
	margin: 1rem;			/*メニューの外側に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
	padding: 0 2rem;		/*メニュー内の余白。上下、左右へ。*/
	 background: url(../images/icon.png) no-repeat left center;
}
.small-screen #menubar a {
	padding: 1rem;	/*メニュー内の余白*/
}

/*文字色*/
.small-screen #menubar, .small-screen #menubar a {
	color: #5d9e52;
}

/*900px以下でのみ表示させるブロック*/
#menubar .sh {
	font-weight: normal;		/*文字の太さを標準にする*/
	padding: 1rem 2rem 2rem;	/*上、左右、下へのブロック内の余白*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0s 0.2s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 3vw;			/*右からの配置場所指定*/
	top: 1vw;				/*上からの配置場所指定*/
	padding: 16px 14px;		/*上下、左右への余白*/
	width: 46px;			/*幅（３本バーが出ている場合の幅になります）*/
	height: 46px;			/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）部分。flexはデフォルトで横並びになるので、それを縦並びに変更。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 1.5px solid #333;	/*線の幅、線種、色*/
}

/*×印が出ている状態の3本バーの背景色*/
#menubar_hdr.ham {
	
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 20px;						/*バーの幅*/
	border-color: #fff;					/*線の色だけ上書き*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}

/*video
---------------------------------------------------------------------------*/
video{ width: 800px;
    margin-top: 100px;}
	
	
/*main
---------------------------------------------------------------------------*/
/*h2(見出し)要素*/
main h2 {
	font-family: "Reddit Sans", "Noto Sans JP", sans-serif;
	font-size: 3rem;		/*文字サイズ。基準の3倍の大きさに。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	color: #8db972;
}

/*bg1背景の上でのh2*/

/*h2内の小文字部分*/
main h2 .hosoku {
	display: block;font-weight: normal;
	font-size: 0.3em;	/*親要素の40%のサイズに*/
}

/*h3(見出し)要素*/
main h3 {
	color: #f5a426;
  text-align: center;
  margin: 0 auto;
  font-size: 1.7em;
}



.flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  font-weight: bold;
  
}


.flex-item {
  background-color: skyblue;
  margin: 10px;
  width: 47%;
  font-size: 0.9em;
  margin-bottom: 20px;
  padding: 10px 20px;
  color: #fff;
  letter-spacing: 0.27em;

}


.shop {
    display: flex;
    justify-content: space-around; /* 画像の間に均等に余白を設定 */
	margin: 50px auto;
}
.shop img {
    width: 30%; /* 画像が3つ並ぶように設定 */
    height: auto;
}

.subtitle {
       width: 100%;
    margin: -30px auto 0;
	    position: relative;
}

/* --------------------------------------------------------
	conts
-------------------------------------------------------- */

.contsAreaL,.contsAreaR {
position: relative;
width: 1200px;
margin: 0 auto;
overflow: hidden;

}

.textAreaL {
	position: absolute;
	top: 50px;
	left: 10px;
	text-align: left;
	width: 42%;
}

.textAreaR {
	position: absolute;
	    top: 50px;
	right: 10px;
	text-align: right;
	width: 42%;
}

.numTextL,.numTextR {
	 font-family: 'Caveat', cursive;
	font-size:100px;
	color: #262626;
	position: relative;
	margin: 0 0 20px 30px;
	display: block;
	line-height: 1;
	
}

.numTextL:after {
	content: '';
	width: 100px;
	height: 10px;
	background: url(../img/num_line.png) no-repeat top center;
	position: absolute;
	bottom: -5px;
	left: 0;
}

.numTextR:after {
	content: '';
	width: 100px;
	height: 10px;
	background: url(../images/index/num_line.png) no-repeat top center;
	position: absolute;
	bottom: -5px;
	right: 0;
}

.textArea_inner {
	 padding: 30px;
	 -moz-box-sizing: border-box;
	 -webkit-box-sizing: border-box;
	 -o-box-sizing: border-box;
	 -ms-box-sizing:border-box;
	 box-sizing: border-box;
	 background-color: #ffffffc7;
}

.textArea_inner h2 {
	font-size: 24px;
	color: #5fa7c4;
	margin-bottom: 20px;
	text-align: left;

}
.textArea_inner p{
	text-align: left;
	color:#555;

}


.contsAreaL img {
	width: 700px;
	float: right;
	padding-top: 30px;
}

.contsAreaR img {
	width: 700px;
}

.space {
	clear: both;
	padding: 80px 0px 50px;
}

hr.heartLine {
	border-top: 4px double #ffd5d5;
	text-align: center;
}
hr.heartLine:after {
	content: '\002665';
	display: inline-block;
	position: relative;
	top: -15px;
	padding: 0 10px;
	background: #fff;
	color: #ffd5d5;
	font-size: 18px;
}

.icon-lic{
  width: 30%;
}

.timesc{
  column-count: 2;
  width: 650px;
  margin: 50px auto;
  background: #fff;
  padding: 2% 3%;
  color: #464444;
}
/* --------------------------------------------------------
	pp
-------------------------------------------------------- */
.pp h3 {
padding: 0.25em 0.5em;
    color: #f5a426;
    background: transparent;
    border-left: solid 5px #f5a426;
    font-size: 1.3em;
	text-align: left;
}
.pp{
    width: 1000px;
    margin: 0 auto;
}
/* --------------------------------------------------------
	ボタン
-------------------------------------------------------- */
.btn-gradient-radius {
  display: inline-block;
  padding: 7px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: #FFF;
 background:#70bbe1;
  transition: .4s;
  margin-top: 25px;
}

.btn-gradient-radius:hover {
     background: #05a8fb;
  
}

/* --------------------------------------------------------
	mobile
-------------------------------------------------------- */

@media only screen and (max-width:900px) {
	.pp{
    width: 100%;

}
	.contsAreaL,.contsAreaR {
		width: 100%;
	}
	.textAreaL,.textAreaR {
		position: static;
		text-align: left;
		width: 100%;
	}
	.numTextL,.numTextR {
		font-size:70px;
		margin: 0 0 20px 0px;
	}
	.numTextL:after,.numTextR:after {
		left: 0;
	}
	.textArea_inner {
		 padding: 10px 0;
	 }
	.contsAreaL img,.contsAreaR img {
		width: 100%;
	}
	.contsAreaL img {
  width: 100%;
  float: none;
  padding-top: 0;
}
.textArea_inner h2 {
  font-size:21px;
  text-align: center;
}

.space {
    padding: 2% 0;
}
.textArea_inner p {
  text-align: center;
   padding: 0 5%;
}
#footermenu {
  display: none;
}

}

.list-free {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10vw;
  gap: 5vw;
}
.list-free h4{
font-size: 2em;
}
.list-free .text {
  align-self: flex-start;
  flex: 1;
}
.list-free .image > div {
  background-image: linear-gradient(90deg, rgb(86, 193, 225), rgb(150, 167, 241));
  color: #fff;
  font-size: 1rem;
  padding: 10px 20px;
}
@media screen and (min-width: 600px) {
  .list-free {
    flex-direction: row;
  }
    .list-free .order1 {
    order: 1;
  }
    .list-free .order2 {
    order: 2;
  }
    .list-free .w2 {
    width: 40%;
  }
}


/*----ご利用の流れ-------------- */

 .frame.narrow {
    width: 980px;
  }

 .flowbox{
  background: #fff;
  border-radius: 35px;
  padding: 45px 80px;
  width: 1000px;
    margin: 50px auto;

}
.group {
  display: flex;
  flex-wrap: wrap;
 border-bottom: dashed 3px #f5a426;
    background-size: auto;
  background-size: 12px 6px;
  align-items: center;
  padding-bottom: 25px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.ficon {
  width: 140px;
  text-align: center;
}
.flowbox .text {
  width: calc(100% - 230px);
  margin-left: 20px;
}
 .flowbox em{
 font-style: normal;
    font-size: 13px;
    color: #5b8d70;
}
.group h3 {
  font-size: 26px;
  margin-bottom: 5px;
  color: #f5a426;
}
.group2 h3 {
  font-size: 26px;
  margin-bottom: 5px;
  color: #49b7ed;
}
.bbn{border-bottom: none !important;}

.flowbox a {
  text-decoration: none;
}
.accordion {
  margin-inline: auto;
  margin-top: 30px;
  max-width: 800px;
  position: relative;
  width: 100%;
  margin-bottom: 100px;
}

.accordion-item{
  margin-bottom: 30px;
}

.accordion-title {
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 10px 20px;
}
.accordion-content {
  display: none;
  padding: 10px 20px;
}
.accordion-content p {
  font-size: 1em;
  line-height: 2;
}

/* 矢印 */
.accordion-title {
  position: relative;
 border: 1px #a285c9 solid;
  text-align: left;
  letter-spacing: 0.15em;
  color:#ffffff;
      border-radius: 50px;
	  background: #bc92f3;
}
.accordion-title::after {
  border-right: solid 2px #fff;
  border-top: solid 2px #fff;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 38%;
  transform: rotate(135deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
  width: 8px;
}
.accordion-title.open::after {
  top: 45%;
  transform: rotate(-45deg);
}




#footer-contents{
background:#fffde4;
 padding: 5px 0 0 0;
text-align: center;
clear: both;
}

.footer-logo{
  width: 350px;
  margin: 50px auto;
  padding: 0.5%;
}
#footer-contents h3{
  text-align: center;
  font-size: 32px;
  
}
ul.icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-self: center;
  gap: 1rem;
}
.copy{
  text-align: center;
  background: #61a580;
  color: #fff;
  padding: 1% 0;
}

.copy a{
   color: #fff0b8;
       text-decoration: none;
}
/*フッターメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#footermenu {
	margin: 0 !important;
	padding: 20px;		/*ブロック内の余白*/
	text-align: center;	/*テキストを中央に*/
	font-size: 0.8rem;	/*文字サイズ。bodyのfont-sizeの80%です。*/
}

/*メニュー１個あたり*/
#footermenu li {
	display: inline-block;	/*簡易的に横並びにする*/
	padding: 0 10px;		/*上下、左右への余白*/
}

#footermenu li a{
	text-decoration: none;
}
/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}
footer {
	font-size: 0.7rem;		/*文字サイズ。bodyのfont-sizeの70%です。*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
}

/*リンクテキスト*/
footer a {color: inherit;text-decoration: none;}

/*著作部分*/
footer .pr {display: block;}


/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/* 初期状態でテキストを非表示にする */
.fade-in-text {
    visibility: hidden;
}

/* アニメーションを適用するクラス。
animationの行の「0.05s」が文字の出現のなめらかさで、大きいほどなめらかに出てきます。
１文字ずつの出現する際の時差は、js/main.jsの「テキストのフェードイン効果」の中にある「0.2」で調整できます。*/
.char {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.05s linear both;
}


/*お知らせブロック
---------------------------------------------------------------------------*/
/*記事の下に空ける余白*/
.new dt {
	    font-size: 13px;
}
.new dd {
	padding-bottom: 1rem;
	font-size: 14px;
}

/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.new dt span {
	display: inline-block;
	text-align: center;
	line-height: 1.8;		/*行間（アイコンの高さ）*/
	border-radius: 3px;		/*角を丸くする指定*/
	width: 8rem;			/*幅。６文字分。*/
	transform: scale(0.8);	/*80%のサイズに縮小*/
	background: #fff;		/*背景色*/
	color:#978ad7;				/*文字色*/
	border: 1px solid #978ad7;
}

/*icon-bg1*/
.new .icon-bg1 {
	background: #998dc5;	/*背景色*/
	color: #fff;		/*文字色*/
}

/*icon-bg2*/
.new .icon-bg2 {
	background: #ff0000;	/*背景色*/
	color: #fff;			/*文字色*/
}



	/*ブロック全体*/
	.new {
		display: grid;	/*gridを使う指定*/
		grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	    width: 1200px;
        margin: 0 auto;
        padding: 0 5%;
	}


.bg5{
    background-image: url("../images/bg1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
	    padding: 10% 0%;
	}
	.bg6 {
    background-image: url(../images/bg2.jpg);
    background-repeat:repeat-y;
    background-position: center;
    padding: 10% 0%;
}
	.bg7 {
    background-image: url(../images/bg6.jpg);
    background-repeat:repeat-y;
    background-position: center;
    padding: 10% 0%;
}
/*list-grid1
---------------------------------------------------------------------------*/
/*listブロック全体を囲むブロック*/
.list-grid1 {
	display: grid;
	color: #555;	/*文字色*/
}

/*ボックス１個あたり*/
.list-grid1 .list {
    display: grid;
}


.list-grid1 .list h3{
   text-align: center;
   font-size: 18px;
   color: #555;
}

/*list内の全ての要素のmarginとpaddingを一旦リセット*/
.list-grid1 .list * {
	margin: 0;padding: 0;
}

/*ボックス内のp要素*/
.list-grid1 .list p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	    padding: 2% 1% 5% 1%;
 text-align: center;
}

	/*画面幅500px以上の追加指定*/
	@media screen and (min-width:500px) {

	/*listブロック全体を囲むブロック*/
	.list-grid1 {
		grid-template-columns: repeat(2, 1fr);	/*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
	}

	}/*追加指定ここまで*/


	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	/*listブロック全体を囲むブロック*/
	.list-grid1 {
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
	}

	}/*追加指定ここまで*/


/*ボックス１個あたり*/
.list-grid1 .list {
	background: #fff;		/*背景色*/
    grid-template-rows: auto 1fr;	/*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のfigure画像*/
.list-grid1 .list figure img {
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
}

.list a:hover{
    opacity: 0.7;
}

/*ボックス１個あたり*/
.list2 {
}

/*ボックス内のfigure画像*/
 .list2 figure img {
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
	
}
 .list-grid2 {
display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

.list-grid2  .list2{
  padding: 1rem;
  background: #fff;
  grid-template-rows: auto 1fr auto;
  box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
}

.list2 h4{
   text-align: center;
   font-size: 15px;
}

/*list内の全ての要素のmarginとpaddingを一旦リセット*/
.list2 * {
	margin: 0;padding: 0;
}

/*ボックス内のp要素*/
.list2 p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
}

.time {
  font-size: 11px;
}


/*お問い合わせ
---------------------------------------------------------------------------*/
/*listブロック全体を囲むブロック*/
.list-grid3 {margin: 50px auto;
}

/*ボックス１個あたり*/
.list-grid3 .list3 {
	position: relative;
	margin-bottom: 2rem;	/*ボックス同士の上下間に空けるスペース*/
	padding: 20px;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
    display: grid;	/*gridを使う指定*/
    grid-template-rows: auto 1fr auto;	/*list内の上から２番目のブロック(.text)だけ伸ばし、他は自動。*/
	border: 3px dotted #6da56f;
    border-radius: 30px;
}

/*ボックス内のh4タグ*/
.list-grid3 .list3 h2 {
	margin: 0;
	color: #6da56f;		/*文字色*/
	margin: 0;
  text-align: center;
  font-size: 21px;
}

/*ボックス内のpタグ*/
.list-grid3 .list3 p{
	margin: 0;
	font-size: 0.8rem;	/*文字サイズを80%に*/
	line-height: 1.7;	/*行間を少し狭く*/
padding: 2% 0;
  text-align: center;}

/*ボックス内のfigure画像*/
.list-grid3 .lis3t figure {
	margin-bottom: 1rem;	/*下に空けるスペース*/
}
.list4{
	position: relative;
	margin-bottom: 2rem;	/*ボックス同士の上下間に空けるスペース*/
	padding: 20px;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
    display: grid;	/*gridを使う指定*/
    grid-template-rows: auto 1fr auto;	/*list内の上から２番目のブロック(.text)だけ伸ばし、他は自動。*/
	border: 3px dotted #6da56f;
    border-radius: 30px;
	width: 1000px;
    margin: 0 auto 100px;
}
/*ボタン*/
.btn1 a {
	display: block;
	text-decoration: none;
	text-align: center;		/*テキストをセンタリング*/
	background:#589365;		/*背景色*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	padding: 5px 10px;		/*ボタン内の余白*/
	margin-top: 1rem;		/*ボタンの上に空けるスペース*/
	 text-decoration: none;
	 border-radius: 30px;
	 color: #fff;
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	/*listブロック全体を囲むブロック*/
	.list-grid3 {
		display: grid;	/*gridを使う指定*/
		grid-template-columns: repeat(2, 1fr);	
		gap: 2rem;	/*マージン的な指定*/
		max-width: 1000px;
		margin-bottom: 0;
		
	}
	
	/*ボックス１個あたり*/
	.list-grid3 .lis3t {
		margin-bottom: 0;	/*ボックス同士の上下間に空けるスペースをリセット*/
	}

	}/*追加指定ここまで*/


/*ボタン（btnと、btn-border-radius）
---------------------------------------------------------------------------*/
/*ボタン共通*/
.btn a,
.btn-border-radius a {
	display: block;text-decoration: none;
	font-size: 1rem;
	text-align: center;		/*テキストをセンタリング*/
	background: var(--primary-color) !important;	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-text-color) !important;	/*文字色。css冒頭で指定しているprimary-text-colorを読み込みます*/
	padding: 0.5rem !important;		/*ボタン内の余白*/
	margin-top: 1rem !important;
}

/*ボタン共通（マウスオン時に少し明るくする）*/
.btn a:hover,
.btn-border-radius a:hover {
	filter: brightness(1.2);
}

/*btn-border-radiusの上書き*/
.btn-border-radius a {
	display: inline-block;
	padding: 0.5rem 2rem !important;	/*ボタン内の余白*/
	border-radius: 100px;	/*角丸の指定。適当に大きければOK。*/
	background: #f53e72 !important;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
}

/*サービス紹介
---------------------------------------------------------------------------*/
.box1 {
  overflow: hidden;
   color: #666;
  margin: 0 2% 20px;
 
  padding: 3%;
}

.box1 span {
    font-weight: 900;
	display:block;
	 color: #f5a426;
}

.box1 ul {
       border: 1px solid #f5a426;
	   padding: 3%;
	   background: #fff;
}

.fr, figure.fr {
  float: right;
  margin: 10px;
  text-align: right;
}
.fl, figure.fl {
  float: left;
}
.fr {
  float: right;
  margin-left: 1%;
  margin-bottom: 20px;
  text-align: left;
}
.fl {
  float: left;
  margin-right: 1%;
  margin-bottom: 20px;
}

.w65p {
  width: 65%;
}
.w30p {
  width: 30%;
}

.w56p {
  width: 56%;
}
.w40p {
  width: 40%;
}
.box1 h4 {
padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #f5a426;;/*文字色*/
  background: transparent;/*背景透明に*/
  border-left: solid 5px #f5a426;;/*左線*/
  font-size: 1.3em;
}

.box1 p {
  padding: 0 !important;
  line-height: 2;
  letter-spacing: 2px;
  text-align: left;
}


 
.box1 li{list-style:none;

font-size: 1.2em;}


.box2{
  overflow: hidden;
  color: #666;
  margin: 50px auto;
 padding: 3% 0;
background: #fff;
      padding: 45px 80px;
    width: 1000px;
    border-radius: 30px;
}
.box2 h4 {
    padding: 0.25em 0.5em;
    color: #f5a426;
    background: transparent;
    border-left: solid 5px #f5a426;
    font-size: 1.3em;
}

.box3{
    overflow: hidden;
    color: #666;
    margin: 50px auto;
    padding: 3%;
    background: #fff;
    border: 5px dotted #f5a426;
    border-radius: 30px;
}

.box3 h4{
    padding: 0.25em 0.5em;
    color: #f5a426;
    background: transparent;
    font-size: 1.3em;
}
.box4{
    overflow: hidden;
    color: #666;
    margin: 50px auto;
    padding: 3%;
   }

.box4 h2{
    padding: 0.25em 0.5em;
    color: #f5a426;
    background: transparent;
    font-size: 1.3em;
}

.bl{color: #70bbe1!important;}

h4.bl{color: #70bbe1!important;
border-left: solid 5px #70bbe1!important;}


.group2 {
    display: flex;
    flex-wrap: wrap;
    border-bottom: dashed 3px #70bbe1;
    background-size: auto;
    background-size: 12px 6px;
    align-items: center;
    padding-bottom: 25px;
    margin-bottom: 25px;
    line-height: 1.6;
}
.group3 {
    display: flex;
    flex-wrap: wrap;
    border-bottom: dashed 1px #57870d;
    background-size: auto;
    background-size: 12px 6px;
    align-items: center;
    padding-bottom: 25px;
    margin-bottom: 25px;
    line-height: 2;
}

.group3 h3{
color: #57870d;
    line-height: 1.6;
}

.ficon3 {
    width: 25%;
    text-align: center;
}
.flowbox .text3 {
    width: 70%;
  margin-left: 10px; 
}

 li.nnber{counter-reset: listnum; /* カウンターをリセット */
	list-style: none; /* 標準のスタイルは消す */}
	
.nnber span{
    display: block;
}

 .bl2 h4{color: #70bbe1!important;
    border-left: solid 5px #70bbe1!important;
	  }
	  
	  
.box5{
    background: #ffffffcc;
    padding: 5% 0%;
    width: 1000px;
    margin: 0 auto;
	text-align:center;
}


/*bg1背景色がついたブロック
---------------------------------------------------------------------------*/
.bg1 {
	position: relative;
	background-image: linear-gradient(90deg, rgb(247, 255, 247), rgb(233, 244, 227));
	padding-top: 5vw;		/*ボックス内の上に空ける余白。お好みで調整して下さい。*/
	padding-bottom: 5vw;	/*ボックス内の下に空ける余白。お好みで調整して下さい。*/
	margin-top: 10vw;		/*ボックス外の上に空ける余白。お好みで調整して下さい。*/
	margin-bottom: 10vw;	/*ボックス外の下に空ける余白。お好みで調整して下さい。*/
	

}


/*以下のheightの行が傾斜の角度です。vwという単位は画面幅に対してで、画面幅100%＝100vwになります。
つまり、画面幅に対して常に同じ傾斜具合になります。1pxの数字は時々隙間が発生するのでそれを防ぐ為の措置です。
傾斜（height）を変更したい場合は、下にある「.bg1::before」のtopと「.bg1::after」のbottomの数字も変更。*/
.bg1::before, .bg1::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: calc(5vw + 1px);
	 background-image:linear-gradient(90deg, rgb(247, 255, 247), rgb(233, 244, 227));
}

.bg1::before {
	top: -5vw;	/*上の、heightの「5vw」と数字を揃えて先頭にマイナスをつける*/
	clip-path: polygon(0 100%, 100% 0, 100% 100%);	/*三角形の形を作っています*/
}

.bg1::after {
	bottom: -5vw;	/*上の、heightの「5vw」と数字を揃えて先頭にマイナスをつける*/
	clip-path: polygon(0 0, 100% 0, 0 100%);	/*三角形の形を作っています*/
}
.bg2 {
	position: relative;
	background: #eef9ff;
	padding-top: 5vw;		/*ボックス内の上に空ける余白。お好みで調整して下さい。*/
	padding-bottom: 5vw;	/*ボックス内の下に空ける余白。お好みで調整して下さい。*/
	margin-top: 10vw;		/*ボックス外の上に空ける余白。お好みで調整して下さい。*/
	margin-bottom: 10vw;	/*ボックス外の下に空ける余白。お好みで調整して下さい。*/
	
	/*以下は変更不要*/
	margin-left: calc(-1 * var(--global-space));
	margin-right: calc(-1 * var(--global-space));
	padding-left: var(--global-space);
	padding-right: var(--global-space);
}
/*以下のheightの行が傾斜の角度です。vwという単位は画面幅に対してで、画面幅100%＝100vwになります。
つまり、画面幅に対して常に同じ傾斜具合になります。1pxの数字は時々隙間が発生するのでそれを防ぐ為の措置です。
傾斜（height）を変更したい場合は、下にある「.bg1::before」のtopと「.bg1::after」のbottomの数字も変更。*/
.bg2::before, .bg2::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: calc(5vw + 1px);
	background: #eef9ff;
}

.bg2::before {
	top: -5vw;	/*上の、heightの「5vw」と数字を揃えて先頭にマイナスをつける*/
	clip-path: polygon(0 100%, 100% 0, 100% 100%);	/*三角形の形を作っています*/
}

.bg2::after {
	bottom: -5vw;	/*上の、heightの「5vw」と数字を揃えて先頭にマイナスをつける*/
	clip-path: polygon(0 0, 100% 0, 0 100%);	/*三角形の形を作っています*/
}
/*詳細ページのサムネイル切り替えブロック
---------------------------------------------------------------------------*/
/*大きな画像が表示されるブロック*/
.thumbnail-view-parts {
	max-width: 1000px;		/*最大幅*/
	margin: 0 auto 1rem;	/*ブロック要素を中央に配置。下に1文字分のマージンをとる。*/
	text-align: center;		/*画像が小さい場合でもセンタリングされるように*/
}

/*サムネイル全体を囲むブロック*/
.thumbnail-parts {
	display: flex;				/*flexを使う指定*/
	justify-content: center;	/*並びかたの種類の指定。これはセンタリングする指定。*/
	margin-bottom: 2rem;		/*下に空けるスペース。２文字分。*/
}

/*サムネイル画像*/
.thumbnail-parts img {
	width: 100px;		/*サムネイルの幅*/
	margin: 2px;		/*サムネイル間のスペース*/
	cursor: pointer;	/*リンクタグではないが、クリックできる事をわかりやすくする為にリンクと同じポインターにしておきます。*/
	transition: 0.3s;	/*マウスオンまでにかける時間。3秒。*/
}
.thumbnail-parts img:hover {
	opacity: 0.8;	/*マウスオン時に80%だけ色を出す。つまり薄くなります。*/
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 0.5rem 1rem;	/*ボックス内の余白*/
	background: var(--primary-color);		/*背景色*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	border-top: 1px solid #ccc;	/*テーブルの一番上の線。幅、線種、色*/
	width: 850px;				/*幅*/
	margin-bottom: 5rem;		/*テーブルの下に空けるスペース。5文字分。*/
	margin: 30px auto 100px;
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom:1px solid #ccc;/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 1rem;		/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
border: 1px solid #ccc;
text-align: center;
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: center;
	background: #78c1dd;
    color: #fff;
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		/*th（左側）のみの設定*/
		.ta1 th {
			width: 20%;		/*幅*/
		}

	}/*追加指定ここまで*/

.ta2 {
  border-collapse: collapse;
  width: 100%;
  max-width: 700px;
 margin:50px auto 100px;
}
.ta2 th, .ta2 td {
  padding: 1em;
}
.ta2 th {
  color: #4d9bc1;
  font-weight: bold;
  text-align: left;
  width: 20%;
  min-width: 4em;
  position: relative;
}
.ta2 th::after {
  content: '';
  background-color: #c1c7c6;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
}
/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb100 {margin-bottom: 100px !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee;color: #333;border: 1px solid #ccc; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
.fs30{font-size: 30px;}
.b{font-weight: bold;}
.w800{max-width: 800px; margin: 0 auto;}
.pd5{padding: 0 5%;}
.fs32{font-size: 32px;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}

	}/*追加指定ここまで*/
	
	
/*「LINEこちら」ボタン
---------------------------------------------------------------------------*/

.side_line {
  top: 90px !important;
  position: fixed;
  right: -5px;
  	background-color: #5ad323;
	}
.side_reserve {
  top: 320px !important;
  position: fixed;
   right: -5px;
  	background:#f36a6a;

}
#side-btn p {padding:0;margin:0;}

#side-btn a {
	text-decoration: none;
	writing-mode: vertical-rl;	/*縦書きの指定。*/
	text-orientation: upright;	/*文字の向き*/

	color: #fff;								/*文字色*/
	display: flex;			/*flexボックスを使う指定*/
	justify-content: center;	/*並びかたの種類の指定*/
	align-items: center;	/*天地中央に配置されるようにする指定だが、縦書きなのでこの場合は左右中央になる。*/
	letter-spacing: 0.4em;	/*文字間隔*/
	text-indent: 0.4em;		/*上の行に合わせておけばOK*/
	width: 60px;			/*幅*/
	padding: 2rem 0;		/*ボタン内の余白。上下、左右への順番。*/
	
}


#side-btn i {
	transform: scale(2);	/*２倍の大きさに*/
	padding-bottom: 0.5rem;	/*下のテキストとの間の余白*/
}

#side-btn li{
  list-style:none;
}
	/*画面幅700px以下の追加指定*/	
	@media screen and (max-width:700px) {
		
			

.footer-logo {
    width: 80%;
}	
.inner {
    padding: 0 5%;
}

.new{padding: 0 5%;
width: 100%;
}
	#side-btn {
		display: none;	/*ボタンを非表示に*/
	}
#footer-contents h3 {
    font-size: 18px;
}
	}/*追加指定ここまで*/

/*メニューをページ下部に固定*/
#sp-fixed-menu{
   position: fixed;
   width: 100%;
   bottom: 0px;
   font-size: 0;
   z-index: 99;
}

/*メニューを横並びにする*/
#sp-fixed-menu ul{
   display: flex;
   list-style: none;
   padding:0;
   margin:0;
   width:100%;
}

#sp-fixed-menu li{
   justify-content: center;
   align-items: center;
   width: 50%;
   padding:0;
   margin:0;
   font-size: 16px;
   border-right: 1px solid #fff;
   letter-spacing: 0.1em;
}

/*左側メニューを緑色に*/
#sp-fixed-menu li:first-child{
  background-image: linear-gradient(90deg, rgb(18, 189, 35), rgb(4, 255, 114));

}

/*左側メニューをオレンジ色に*/
#sp-fixed-menu li:last-child{
 background: #f36a6a;
}

/*ボタンを調整*/
#sp-fixed-menu li a{
	 text-decoration: none; 
   color: #fff;
   text-align: center;
   display:block;
   width: 100%;
   padding:5px;

	}

/*PCの場合にはメニューを表示させない*/
@media (min-width: 768px) {
   .for-sp{
      display:none;
    }
}


	/*画面幅900px以下の追加指定*/
	@media screen and (max-width:900px) {
.ficon3 {
    width: 100%;
   margin-bottom: 10px;
		   }
.box5 {
      padding: 5%;
    width: 90%;
    margin: 0 auto;
    text-align: left;
}			
		
.list4 {
    width: 100%;}
	
.ta2 {
     width: 90%;

}		
  .ficon {
    width: 100%;
    margin-bottom: 10px;
  }
.flowbox .text {
    width: 100%;
    margin-left: 0px;
  }
  .accordion {
    width: 90%;
 
}		
.box2 {
    padding: 3%;
    background: #fff;
    width: 90%;

}
.flowbox {
    width: 90%;
	padding: 3% 5%;
  
}
	.w40p {
    width: 100%;
}

.w56p {
   width: 100%
}
		.flex-item {
  width: 100%;

}
.submain img{
 margin-top:90px;
}
		
.box1 {
 margin: 30px auto;}
.fr, figure.fr {
  margin: 0;
  }
.w30p {
  width: 100%;
}

.w65p {
  width: 100%;
}
.fl {
  margin-right: 2%;
  margin-bottom: 0;
}
.box1 h4 {
font-size: 1.5em;
  text-align: center;
}
.ta1 {
  width: 100%;

}
 .visual{
      position: relative;
      width: 100%;
      height: 100vh; /* ビューポート全体の高さ */
      overflow: hidden;
    }

video {
      width: 100%;
    
}	
	#logo img {
  width: 200px;
  }	
header {

}		
		
	.vlogo {
   width: 200px;
    top: 10%;
    left: 24%;
    z-index: 1;
}	
	.flex-item {
  width: 100%;
  margin-bottom: 5px;

}	
main h2 {
   font-size: 2rem;
 
}
.fs32{font-size: 2rem;}

main h2 .hosoku {
   font-size: 0.4em;
}	   

.list-grid1 .list {
  margin-bottom: 30px;
}

#sub_main {
  display: block;
 }
.list-grid2 { 
  grid-template-columns: repeat(1, 1fr);
 }
 
 #side-contents {
   width:100％;
   display: contents;
}
 
  .column {
  column-count: 1;
max-width: 100%;
 }

 }	
 
 /*画面幅450px以下の追加指定*/
	@media screen and (max-width:450px) {
	
		
.contsAreaL,.contsAreaR {
width: 100%;

}
		
	.ta1 th, .ta1 td {
	font-size: 1.1em;
}		
.list-grid3 .list3 p{font-size: 1.1em;}

.fs30 {
    font-size: 21px;
}	
 .copy {
    display: none;
}
ul.icons {
   padding-bottom: 20%;
}

p{
   font-size: 1.1em;
}
.list-grid1 .list p {
    font-size: 1.1em;
}
.list-grid1 .list * {
   
}
.accordion-title {
  padding: 10px 35px 10px 35px;
}		
		
 .column {
  column-count: 1;
  width: 100％;
 }
.column li {
padding: 1.5%;
font-size: 1.2em;
}
  main h2 .hosoku {
    font-size: 0.5em;
  }
  
  .flex-item {
  font-size: 1em;

}
.list-grid1 .list p {
  font-size: 1em;
  text-align: center;
  padding: 3%;
}
.list-free {
  flex-direction: column-reverse;

}
.list-free h4 {
  margin: 2px 0;
}
}
 
 
 .insta_btn2{/*ボタンの下地*/
  color: #FFF;/*文字・アイコン色*/
  border-radius: 7px;/*角丸に*/
  position: relative;
  display: inline-block;
  height: 50px;/*高さ*/
  width: 190px;/*幅*/
  text-align: center;/*中身を中央寄せ*/
  font-size: 25px;/*文字のサイズ*/
  line-height: 50px;/*高さと合わせる*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
  overflow: hidden;/*はみ出た部分を隠す*/
  text-decoration:none;/*下線は消す*/
}

.insta_btn2:before{/*グラデーション②*/
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;/*全体を覆う*/
  height: 100%;/*全体を覆う*/
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.insta_btn2 .fa-instagram{/*アイコン*/
  font-size: 35px;/*アイコンサイズ*/
  position: relative;
  top: 4px;/*アイコン位置の微調整*/
}

.insta_btn2 span {/*テキスト*/
  display:inline-block;
  position: relative;
  transition: .5s
}

.insta_btn2:hover span{/*ホバーで一周回転*/
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
}
 	