@charset "UTF-8";
/* CSS Document */
/* _________________resetcss____________________________ */
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
 
/*行の高さをフォントサイズと同じにしています*/
body {
    line-height:1;
}
 
/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
 
/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
/*nav ul {
    list-style:none;
}*/
ol, ul {
    list-style: none;
}
 
/*引用符の表示が出ないようにしています*/
blockquote, q {
    quotes:none;
}
 
/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
 
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
 
/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
 
/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
 
/*テキストに打ち消し線が付くようにしています*/
del {
    text-decoration: line-through;
}
 
/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
 
/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
    border-collapse:collapse;
    border-spacing:0;
}
 
/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
 
/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
    vertical-align:middle;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
    vertical-align: top;
    font-size: 0;
    line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
h3 {
	z-index: 300;
}
/* ____________________________________________________ 画像切り替え*/
.img-sp {
	display: none;
}
.img-pc {
	display: block;
}
@media screen and (max-width: 768px) {
	.img-sp {
		display: block;
}
	.img-pc {
		display: none;
	}
}

/* _______________________________________________________リンク */
a {
	color:#0060fb;
	text-decoration: none;
}
a:link {
	color:#0060fb;
	text-decoration: none;
}
a:visited {
	color:#0060fb;
	text-decoration: none;
}
/* _______________________________________________________ローディング */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 175px;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
  }
}
/* _______________________________________________________全体色付け仮 */
.sec_mainimg {}
.sec_canlist {}
.sec_heart {background-color:#ecf3fd;}
.sec_tokucho {}
.sec_security {background-color: #fcfcfc;}
.sec_fee {background-color:#ecf3fd;}
.sec_jirei {}
.sec_link {background-color: #f6f6f6;}
.sec_dwn {background-color: #0d89ff;}
/* _______________________________________________________flex */
.fl {
	display: flex;
}
.fl_co {
	display: flex;
	flex-direction: column;
	justify-content: center;
    align-items: center;
}
@media screen and (max-width: 768px) {
	.fl{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
}
/* _______________________________________________________全体 */

body{
	font-family: 'Noto Sans JP', sans-serif;
	color: #4c4c4c;
	font-size: 12pt;
}
.font_bold {
	font-size: 14pt;
	font-weight: 600;
	letter-spacing: 1.8pt;
}
.sec_set {
	width: 100%;
	text-align: center;
	padding: 70px 0 60px 0;
}
.sec_inner {
	display: flex;
	text-align: center;
	margin: 0 auto;
	max-width: 1140px;
	padding-left: 60px;
	padding-right: 60px;
	justify-content: center;
    align-items: center;
}
.sec_inner_co {
	display: flex;
	flex-direction: column;
	text-align: center;
	margin: 0 auto;
	max-width: 1140px;
	padding-left: 60px;
	padding-right: 60px;
	justify-content: center;
    align-items: center;
}

.sec_title {
}
.left_box {
	position: relative;
	flex: 0 0 480px;
	text-align: left;
	padding: 20px;
	margin-left: 40px;
}
.right_box {
	flex: 0 0 520px;
}
@media screen and (max-width: 768px) {
	.sec_inner {
	display: flex;
	text-align: center;
	margin: 0 auto;
	max-width: 1140px;
	padding-left: 30px;
	padding-right: 30px;
	justify-content: center;
    align-items: center;
}
.sec_inner_co {
	display: flex;
	flex-direction: column;
	text-align: center;
	margin: 0 auto;
	max-width: 1140px;
	padding-left: 30px;
	padding-right: 30px;
	justify-content: center;
    align-items: center;
}

.sec_title {
}
.left_box {
	position: relative;
	flex: 0 0 480px;
	text-align: left;
	padding: 20px;
	margin-left: 40px;
}
.right_box {
	flex: 0 0 520px;
}

}
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
	img {
		image-rendering: -webkit-optimize-contrast;
	}
}
img{
	width: 100%;
}
.h3 span.br{
  display: inline-block;
}

/* _______________________________________________________セクションタイトル*/
.title_inner {
	font-family: "Zen Maru Gothic", sans-serif;
}
p.main_title{
	font-size: 20pt;
	margin-bottom: 15px;
	font-weight: 800;
	font-style: normal;
}
.sec_title {
	margin-bottom: 20px;
}
/* _______________________________________________________ナビゲーション */
.main_nav {
	font-size: 10pt;
	height: 80px;
	background-color: rgba( 255, 255, 255, 0.8 );
}
.main_nav_con {
	display: flex;
	font-weight: 600;
	padding: 10px;
	justify-content: center;
    align-items: center;
	height: 80px;
}
ul.nav_ul li.nav_li{
	display: inline-block;
	margin: 0 6px;
}
ul.nav_ul li.nav_li p.nav:hover{
	background: rgb(255, 0, 0);
	background: linear-gradient(0deg, rgba(152, 83, 238, 1) 0%,rgba(0, 149, 255, 1) 100%);
	  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav_logo {
	width: 180px;
	margin-right: 20px;
}
.main_nav ul.nav_ul a:visited{
    color: #3b3b3b;
}
.main_nav ul.nav_ul a {
	color: #3b3b3b;
	position: relative; /*アンダーラインの位置を決めるための基準 */
}

.main_nav ul.nav_ul a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
background: rgb(255, 0, 0);
background: linear-gradient(0deg, rgba(152, 83, 238, 1) 0%,rgba(0, 149, 255, 1) 100%);
bottom: -8px;       /*アンダーラインが位置する、各リストの下端からの高さ　ヘッダーの下端に合わせています*/
visibility: hidden; /*ホバー前に、アンダーラインを可視化しない*/
}

.main_nav ul.nav_ul a:hover::after {
visibility: visible; /*ホバー後、アンダーラインを可視化する*/
}
.nav_down {
}
/* _________________________________________________menu固定 */
header {
  position: relative;
}

/* 固定化後の状態 */
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

/* 固定化でコンテンツが隠れるのを防ぐ（ヘッダー高さが一定の場合） */
.fixed + main,
header.fixed + .wrapper {
  /* 例: ヘッダー高さが80pxなら */
	margin-top: 80px;
}
.menu-btn {display: none;}
#menu-btn-check {
		display: none;
	}
.menu-content {
	justify-content: center;
	align-items: center;
}
/* ------------------------------------------menu-sp */
	@media screen and (max-width: 980px) {
	.menu-btn {
		top: 10px;
		right: 10px;
		display: flex;
		height: 60px;
		width: 60px;
		justify-content: center;
		align-items: center;
		z-index: 90;
		background-color: rgba(255, 255, 255, 0);
		position: absolute;
	}
	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
		content: '';
		display: block;
		height: 3px;
		width: 25px;
		border-radius: 3px;
		background-color: #0060fb;
		position: absolute;
	}
	.menu-btn span:before {
		bottom: 8px;
	}
	.menu-btn span:after {
		top: 8px;
	}
	
	#menu-btn-check:checked ~ .menu-btn span {
		background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
	}
	#menu-btn-check:checked ~ .menu-btn span::before {
		bottom: 0;
		transform: rotate(45deg);
	}
	#menu-btn-check:checked ~ .menu-btn span::after {
		top: 0;
		transform: rotate(-45deg);
	}
	.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #0060fb;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #0060fb;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #0060fb;
    border-right: solid 2px #0060fb;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
	ul.nav_ul li.nav_li {
    	display: block;
		margin-bottom: 10px;
	}
		.nav_down {
			flex-direction: column;
		}
		.nav_down .btn_oval_pink_nav,.nav_down .btn_oval_blue_nav {
			margin: 10px;
		}
.menu-content{
    display: block;
	}
	.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #ffffff;
    transition: all 0.5s;/*アニメーション設定*/
}
	#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

}

/* ________________________________btnお問合せ*/
.btn_oval_pink_nav {
	text-align: left;
    display: flex;
	justify-content: center;
    align-items: center;
	margin: 0 10px 0 20px;
}

p.nav_btn_p {
	color: #fff;
}
.btn_oval_pink_nav a {
	position: relative;
	z-index: 0;
	color: #fff;
	width: auto;
	height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	border-radius: 30px;
	overflow: hidden;
	transition: 0.5s;
	padding: 0 10px; 
}

.btn_oval_pink_nav a:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	left: 0;
	transition: 0.5s;
	background: rgb(225, 106, 183);
	background: linear-gradient(0deg, rgba(255, 92, 230, 1) 0%, rgba(255, 106, 183, 1) 100%);
}

.btn_oval_pink_nav a:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -2;
	left: 0;
	background: rgb(255, 0, 0);
	background: linear-gradient(0deg, rgba(152, 83, 238, 1) 0%,rgba(0, 149, 255, 1) 100%);
}

.btn_oval_pink_nav a:hover:before {
	opacity: 0;
}
.circle_pinkbtn_nav {
	position: relative;
	width: 20px;
	height: 20px;
	cursor: pointer;
	background-color: white;
	border-radius: 50%;
	margin-left: 6px;
}
.triangle_pink_btn_nav {
	position: absolute;
	top: 50%;
	left: 45%;
	width: 0.5em;
	height: 0.5em;
	border-right: 0.15em solid #fa6bc1;
	border-bottom: 0.15em solid #fa6bc1;
	transform: translate(-50%, -50%) rotate(-45deg);
}
/* ________________________________btnお問合せブルー*/
.btn_oval_blue_nav {
	text-align: left;
    display: flex;
	justify-content: center;
    align-items: center;
}
.nav_btn {

}
p.nav_btn_b {
	color: white;
}
.btn_oval_blue_nav a {
	position: relative;
	z-index: 0;
	color: #fff;
	width: auto;
	height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	border-radius: 30px;
	overflow: hidden;
	transition: 0.5s;
	padding: 0 10px; 
}

.btn_oval_blue_nav a:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	left: 0;
	transition: 0.5s;
	background: rgb(255, 0, 0);
	background: linear-gradient(0deg, rgba(152, 83, 238, 1) 0%,rgba(0, 149, 255, 1) 100%);
}

.btn_oval_blue_nav a:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -2;
	left: 0;
	background: rgb(225, 106, 183);
	background: linear-gradient(0deg, rgba(255, 92, 230, 1) 0%, rgba(255, 106, 183, 1) 100%);
}

.btn_oval_blue_nav a:hover:before {
	opacity: 0;
}
.circle_bluebtn_nav {
	position: relative;
	width: 20px;
	height: 20px;
	cursor: pointer;
	background-color: white;
	border-radius: 50%;
	margin-left: 6px;
}
.triangle_blue_btn_nav {
	position: absolute;
	top: 50%;
	left: 45%;
	width: 0.5em;
	height: 0.5em;
	border-right: 0.15em solid #0e86ff;
	border-bottom: 0.15em solid #0e86ff;
	transform: translate(-50%, -50%) rotate(-45deg);
}

/* _______________________________________________________メインイメージエリア */
.sec_contents {
}

.sec_mainimg{
	background-image: url("img/main_bk.png");
	background-size: cover;
	width: 100%;
	padding: 53% 0 0 0;
	justify-content: center;
	align-items: center;
}
.sec_mainimg .sec_inner{
	position: absolute;
	top: 25%;
	left: 50%;
	transform: translateX(-50%);
}
.sec_contents　.main_top {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
}
.left_box_coment {
	color: white;
	letter-spacing:2pt;
}
.left_box_coment p{
	margin-top: 20px;
}
.main_logoimg {

}
.main_img {

}
.artical_link_inner {
	width: 100%;
}
.artical_link {
	width: 100%;
}
.artiacl_btn_box {
	margin: 15px;
	border: .8px solid #868686;
}
.sec_articl_link .sec_contents {
    width: 100%;
}
/* _______________________________________________________記事リンク */
.artiacl_btn_box {
	width: 33%;
	height: calc(10vw * 0.75);
	text-align: left;
	display: block;
}
.artical_link_btn {
    width: 100%;
    height: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin-left: 30px;
}
.artical_link_inner p{
	color: #434242;
}
.artical_link_inner .seminar{
	background-image: url("img/artical1.png");
	background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.btn_name_logo {
	width: 110px;
}
.artical_link_inner .event{
	background-image: url("img/artical2.png");
	background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.artical_link_inner .news{
	background-image: url("img/artical3.png");
	background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
/* _______________________________________________________私たちの想い */
.left_box_heart {
	position: relative;
	flex: 0 0 300px;
	text-align: left;
	padding: 40px;
	margin-left: 40px;
}
.main_img {
}
.right_box_heart {
	flex: 0 0 600px;
	text-align: left;
	margin-top: 50px;
	line-height: normal;
}
.main_tittle {
	
}
.main_tittle br{
	display: none;
}
.main_concept {
	margin-top: 20px
}
.main_concept p{
	margin-top: 20px
}

/* ________________________________btnブルーグラデ */
.btn_oval_blue {
	text-align: left;
    margin-left: 280px;
}
.btn_oval_blue a {
	position: relative;
	z-index: 0;
	color: #fff;
	width: 170px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	text-decoration: none;
	border-radius: 30px;
	overflow: hidden;
	transition: 0.5s;
}

.btn_oval_blue a:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	left: 0;
	transition: 0.5s;
	background: rgb(0, 119, 255);
	background: linear-gradient(0deg, rgba(152, 83, 238, 1) 0%,rgba(0, 149, 255, 1) 100%);
}

.btn_oval_blue a:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -2;
	left: 0;
	background: rgb(255, 0, 0);
	background: linear-gradient(0deg, rgba(255, 92, 230, 1) 0%, rgba(255, 106, 183, 1) 100%);
}

.btn_oval_blue a:hover:before {
	opacity: 0;
}
.circle {
	position: relative;
	width: 25px;
	height: 25px;
	cursor: pointer;
	background-color: white;
	border-radius: 50%;
	margin-left: 6px;
}
.triangle {
	position: absolute;
	top: 50%;
	left: 45%;
	width: 0.5em;
	height: 0.5em;
	border-right: 0.15em solid #256ffb;
	border-bottom: 0.15em solid #256ffb;
	transform: translate(-50%, -50%) rotate(-45deg);
}

/* _______________________________________________________imedyでできること */
ul.can_list {
	display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}
ul.can_list .can_list_item {
	position: relative;
    margin: 20px 20px 0 0;
    width: calc(33.3% - 15px);
}
ul.can_list .can_list_item:nth-child(3n) {
	margin-right: 0;
}
ul.can_list .can_list_item .link{
	display: block;
	position: relative;
	height: 100%;
	border-radius: 5px;
 	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 6px 10px -2px rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.2);
 	text-decoration: none;
 	text-align: left;
 	overflow: hidden;
}
.can_list_item a{
	color: #0060fb;
}
.can_list li.can_list_item .title-set {
	display: flex;
    align-items: center;
    height: 120px;
    padding: 32px 25px;
	line-height: 16pt;
	z-index: 2;
}

.can-img {
	position: absolute;
	bottom: 0px;
    right: 0px;
    width: 190px;
}

/* _______________________________________________________imedyの特徴 */
.sec_tokucho .sec_inner_co{
	max-width: 1280px;
}
.box3_contner {
}
.box3 {
	width:100%;
    margin: 0;
    padding: 20px;
    height: auto;
}
.box3_child{
	width: calc(100% / 3);
	text-align: left;
	padding: 10px;
}
.box3_child a{
    display: block;
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 6px 6px 0px 0px rgba(205, 205, 205, 1);
    overflow: hidden;
    text-decoration: none;
	border: .8px solid #0060fb;
}
.box3_inner_no {
	font-family: Arial, Helvetica, "sans-serif";
	font-style: italic;
	color:#ff6ab7;
	font-size: 18pt;
	margin: 20px;
}
.box3_inner_con {
	color: white;
    height: 87px;
    margin-top: 125px;
    border-radius: 0 10px 10px 0;
    padding: 9px 0 0 8px;
    line-height: 21px;
}

.box3_inner_con br{
	display: none;
}
.box3_inner {
	height: 250px;
}

.box3_inner_bk1 {
	background-image: url("img/toku01.png");
	background-repeat: no-repeat;
	background-position: right;
    background-size: contain;	
}
.box3_inner_bk1 .box3_inner_con {
	
	background-image: url("img/toku01bk.png");
	background-repeat: no-repeat;
	background-size: cover;
}

.box3_inner_bk2 {
	background-image: url("img/toku02.png");
	background-repeat: no-repeat;
	background-position: right;
    background-size: contain;
}
.box3_inner_bk2 .box3_inner_con {
	background-image: url("img/toku02bk.png");
	background-repeat: no-repeat;
	background-size: cover;
}
.box3_inner_bk3 {
	background-image: url("img/toku03.png");
	background-repeat: no-repeat;
	background-position: right;
    background-size: contain;
}
.box3_inner_bk3 .box3_inner_con {
	background-image: url("img/toku03bk.png");
	background-repeat: no-repeat;
	background-size: cover;
}
/* _______________________________________________________セキュリティ */
.sec_security .sec_contents {
	width: 100%;
	max-width: 1120px;
}
.box2_child {
}
.box2_01 {
	width: 100%;
}
.box2_02 {
	width: 40%;
}
.security01 {
	width: 100%;
}
.security_title p{
	color: #0060fb;
	margin-top: 50px;
}
.security_con {
}
.security_con p{
	border-bottom: 2px solid #0060fb;
	display: inline-block;
	margin-bottom: 10px;
}
.box4_inner {
	margin: 50px 0;
	flex-direction: column;
}
.box4_inner_inner {
	display: flex;
}
.box4_inner_inner.bottom{
	margin-top: 20px;
}
.box4_inner_inner.top{
	margin-bottom: 60px;
}
.box4_child {
	display: flex;
	width: 50%;
}
.box4_left {
	flex-direction: row-reverse;
	margin-right: 90px;
}
.box4_child_right_con {
	display: flex;
	flex-direction: column;
}
.box4_child_right_con_title {
	color: #0060fb;
	font-weight: bold;
	
}
.box4_child_left_con{
	margin-top: 20px;
}

.box4_child_right_con_img {
	width: 150px;
	margin: 0 auto;
	text-align: center;
}

.box4_left_con_honbun{
	text-align: left;
	line-height: 20pt;
	margin-left: 20px;
}
.box4_left_con_honbun.migi{
	text-align: right;
	margin-right: 20px;
	margin-left: 0px;
}
.box4_left_con_honbun br{
	display: none;
}
.box4_child_right_con_inner {
	width: 180px;
    height: 180px;
    border-radius: 50%;
    background: white;
    border: .8px solid #0060fb;
    box-sizing: border-box;
}
.box4_inner {
	background-image: url("img/toku_zubk.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size:contain;
}
.box4_child_right_con_title {
	font-size: 14pt;
}
/* ____________________________________pink btn */
.box4_btn {
	margin-top: 20px;
	font-size: 10pt;
	margin-left: 20px;
}
.box4_btn a {
	position: relative;
	z-index: 0;
	color: #fa6bc1;
	width: 144px;
	height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	text-decoration: none;
	border-radius: 30px;
	overflow: hidden;
	transition: 0.5s;
	border: .5px solid #fa6bc1;
}

.box4_btn a:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	left: 0;
	transition: 0.5s;
	background: white;
}

.box4_btn a:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -2;
	left: 0;
	background: rgb(255, 0, 0);
	background: linear-gradient(0deg, rgba(255, 92, 230, 1) 0%, rgba(255, 106, 183, 1) 100%);
}

.box4_btn a:hover:before {
	opacity: 0;
}
.circle_pink {
	position: relative;
	width: 25px;
	height: 25px;
	cursor: pointer;
	background-color: white;
	border-radius: 50%;
	margin-left: 6px;
	border: .5px solid #fa6bc1;
	color: white;
}
.triangle_pink {
	position: absolute;
	top: 50%;
	left: 45%;
	width: 0.5em;
	height: 0.5em;
	border-right: 0.15em solid #fa6bc1;
	border-bottom: 0.15em solid #fa6bc1;
	transform: translate(-50%, -50%) rotate(-45deg);
	color: white;
}

/* _______________________________________________________料金設定 */
.box2_child {}
.sec_fee {
	padding: 80px;
}
.sec_fee .sec_inner_co {
	border: 4px solid #fa6bc1;
	border-radius: 20px;
	padding: 30px;
	background-color: white;
}
.sec_fee .title_inner p.main_title{
	color: #0060fb;
}
.fee_child_box {
	font-size: 18pt;
	letter-spacing: 2pt;
	font-weight: bold;
	margin-left: 30px;
}
.fee_child_box_con {
	max-width: 342px;
}
.fee_child_box_con2 {
	flex: 0.3;
	max-width: 65px;
}
.fee_child_btn {
	padding: 60px 50px;
	border-radius: 10px;
	color: white;
	box-shadow: 6px 6px 0px 0px rgba(138, 138, 138, 0.2);
}
.fee_child_box_inner{
}
.fee_inner_bottm {
	display: flex;
}
.fee_child_box01{
	display: flex;
}
.fee_child_btn_cap {
	margin-top: 10px;
	font-size: 10pt;
	letter-spacing: normal;
	color: #0060fb;
}
.fee_child_btn span{
	font-size: 10pt;
	vertical-align: top;
}
.btn_blue {
	background-color: #0060fb;
}
.btn_pink {
	background-color: #ff90da;
}
.plus p{
	margin-top: 55px;
	vertical-align: middle;
	color: #0095ff;
}
.fee_child_04 {
	text-align: left;
	font-size: 20pt;
}
.fee_child_btn{
}
ul.fee_list {
}
ul.fee_list li.fee_list_con {
	background:url("img/feelist_icon.png") no-repeat 0 0;
	background-size:auto 30px;
	padding-left: 30px;
	font-size: 15pt;
	margin-bottom: 32px;
	margin-top: 10px;
}
.fee_inner_top {
	margin-bottom: 30px;
}
.line{
	border-top: 1px solid #0060fb;
}

.fee_child_box_inner {
}
.fee_inner_bottm {
	margin: 50px 0;
	letter-spacing: 2pt;
	font-size: 16pt;
	color: #0060fb;
	justify-content: center;
    align-items: center;
}
.btn-submit {
	padding: 12px 25px;
	border-radius: 20px;
	border: none;
	background: rgb(0, 119, 255);
	background: linear-gradient(0deg, rgba(152, 83, 238, 1) 0%,rgba(0, 149, 255, 1) 100%);
	font-weight: bold;
	color: #fff;
	cursor: pointer;
	appearance: none;
	box-shadow: 6px 6px 0px 0px rgba(138, 138, 138, 0.2);
	letter-spacing: 2pt;
	font-size: 12pt;
}
.btn-submit:active {
	margin-top: 3px;
	background-color: #0060fb;
	border-bottom: 2px solid #006366;
}
.fee_child_box02 select {
	color: #0060fb;
	border-color: #0060fb;
	width: 100px;
    height: 32px;
	font-size: 12pt;
	border-radius: 5px;
}
.fee_child_box01,.fee_child_box02,.fee_child_box03 {
	margin: 10px 5px;
}
/* _____________________________________________________ 事例*/
.sec_jirei .btn_oval_blue{
	margin: 0;
}
.sec_jirei .sec_inner_co{
	padding-left: 0 ;
	padding-right: 0 ;
}
/* _____________________________________________________ 記事へリンク*/
.sec_link .btn_oval_blue{
	margin: 0;
}
.sec_link {
}
.sec_link .sec_contents {
	width: 100%;
	margin: 80px 0;
}
.link_box_con {
	width: 100%;
	justify-content: center;
    align-items: center;
}
.link_box {
	text-align: left;
	background-color: white;
	padding: 20px;
	margin: 0 10px;
	box-shadow: 6px 6px 0px 0px rgba(138, 138, 138, 0.2);
}
.link_box.pink{
	width: 40%;
}
.linkblue{color: #0095ff;}
.linkpink{color: #ff66cc;}
.pink .link_box_inner .link_box_title{
	color: #ff66cc;
	text-align: center;
}
.tag_day{
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
}
.link_box.blue{
	width: 40%;
}
.blue .link_box_inner .link_box_title{
	color: #0095ff;
	text-align: center;
}
.link_box_title {
	font-size: 20pt;
	font-family: "Zen Maru Gothic", sans-serif;
	margin-bottom: 20px;
}
.link_box_tag {
	background-color: #ff66cc;
	border-radius: 17px;
}
.link_box_tag_bl {
	background-color: #0095ff;
	border-radius: 17px;
}
.link_box_tag_inner {
	color: white;
	padding: 5px;
}
.sec_link .btn_oval_blue{
	font-size: 14px;
	  display: flex;
	justify-content: center;
    align-items: center;
}
.link_box_day {
	padding: 5px;
}
.link_box_articl{
	font-size: 10pt;
	margin-bottom: 10px;
	text-align: center;
}
	.link_box.pink{
        margin-bottom: 0px;
    } 
/* ________________________________btnピンクグラデ*/
.btn_oval_pink {
	text-align: left;
	argin-top: 20px;
    display: flex;
	justify-content: center;
    align-items: center;
}
.btn_oval_pink a {
	position: relative;
	z-index: 0;
	color: #fff;
	width: 170px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	text-decoration: none;
	border-radius: 30px;
	overflow: hidden;
	transition: 0.5s;
}

.btn_oval_pink a:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	left: 0;
	transition: 0.5s;
	background: rgb(225, 106, 183);
	background: linear-gradient(0deg, rgba(255, 92, 230, 1) 0%, rgba(255, 106, 183, 1) 100%);
}

.btn_oval_pink a:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -2;
	left: 0;
	background: rgb(255, 0, 0);
	background: linear-gradient(0deg, rgba(152, 83, 238, 1) 0%,rgba(0, 149, 255, 1) 100%);
}

.btn_oval_pink a:hover:before {
	opacity: 0;
}
.circle_pinkbtn {
	position: relative;
	width: 25px;
	height: 25px;
	cursor: pointer;
	background-color: white;
	border-radius: 50%;
	margin-left: 6px;
}
.triangle_pink_btn {
	position: absolute;
	top: 50%;
	left: 45%;
	width: 0.5em;
	height: 0.5em;
	border-right: 0.15em solid #fa6bc1;
	border-bottom: 0.15em solid #fa6bc1;
	transform: translate(-50%, -50%) rotate(-45deg);
}
/* _____________________________________________________ ダウンロード*/
.sec_dwn {
	padding: 80px 0;
}
.sec_dwn .main_title{
	color: white;
}
.dwn_cont {
	display: flex;	
	justify-content: center;
    align-items: center;
}
.dwn_inner{
	background-color: white;
	border-radius: 10px;
	width: 780px;
	padding: 30px 0;
}
.dwn_title {
	padding: 30px 0 10px 0;
}
.pnf img{
	width: 150px;
	margin-bottom: 20px;
}
.dwn_top {
	margin: 30px;
}
.dwn_bottom {
	margin: 30px;
}
.btn_sq_blue br{display: none;}
/* ________________________________btnスクエアブルーグラデ */
.btn_sq_blue {
	text-align: left;
	font-size: 10pt;
	display: flex;	
	justify-content: center;
    align-items: center;
}
.btn_sq_blue span{
	font-size: 8pt;
	margin-left: 5px;
	vertical-align: middle;
}
.btn_sq_blue a {
	position: relative;
	z-index: 0;
	color: #fff;
	width: 220px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	text-decoration: none;
	border-radius: 5px;
	overflow: hidden;
	transition: 0.5s;
}

.btn_sq_blue a:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	left: 0;
	transition: 0.5s;
	background: rgb(0, 119, 255);
	background: linear-gradient(0deg, rgba(152, 83, 238, 1) 0%,rgba(0, 149, 255, 1) 100%);
}

.btn_sq_blue a:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -2;
	left: 0;
	background: rgb(255, 0, 0);
	background: linear-gradient(0deg, rgba(255, 92, 230, 1) 0%, rgba(255, 106, 183, 1) 100%);
}

.btn_sq_blue a:hover:before {
	opacity: 0;
}
/* _____________________________________________________ フッター*/
.fotter_nav_inner {
	text-align: center;
	margin: 0 auto;
	max-width: 1280px;
	padding: 10px 0 20px 0;
	justify-content: center;
    align-items: center;
}
ul.fot_menu li.fot_menu_li {
	background:url("img/footer_menu_icon.png") no-repeat 0 0;
	background-size:auto 15px;
	padding-left: 20px;
	padding-right: 30px;
	font-size: 12pt;
	margin-bottom: 25px;
	text-align: left;
}
.fot_left img{
	width: 200px;
	margin-right: 80px;
}
.fot_right {
	display: flex;
	margin: 0 20px;
}
.tel_contact {
	display: inline-block;
	border: 1px solid #0060fb;
	padding: 5px 20px;
}
.tel_contact img{
	width: 40px;
	margin-right: 10pt;
}
.tel{
	font-size: 14pt;
	color: #0d89ff;
	justify-content: center;
    align-items: center;
}
.tel_no {
	font-size: 22pt;
	font-weight: bold;
	margin-left: 10pt;
}
.tel {
	display: flex;
}
p.tel_time {
	text-align: left;
	font-size: 8pt;
	color: #4c4c4c;
	font-weight: bold;
	margin-left: 10pt;
}
.tel_contact_inner {
	display: flex;
}
/* _____________________________________________________ 会社情報*/
.fotter_nav {
	padding:50px 0;
}
.fotter_info{
	max-width: 1280px;
	text-align: center;
	margin: 0 auto;
	justify-content: center;
    align-items: center;
}
.fotter_info_inner{
	display: flex;
	max-width: 1280px;
	padding-left: 60px;
	padding-right: 60px;
	justify-content: center;
    align-items: center;
}
.fot_icon img.iso{
	width: 70px
}
.fot_icon img.isms{
	width: 60px;
}
.fot_box_2 {
}
.fot_box_4 {
	margin-right: 80px;
}
.fot_box_5 {
}
.fot_box_6 {
	text-align: left;
	margin-left: 30px;
}
.imedy_inc{
	width: 300px;
}
.imedy_inc_info {
	color: black;
	font-weight: 600;
}
.inc_name {
	font-size: 22pt;
	margin-bottom: 10px;
}
.inc_info {
	margin-bottom: 5px;
}
.last_menu {
	color: #00b3b8;
	margin: 30px 0;
}
ul.last_list li p.last_li:after {
  content:"　／　";
} 

.last_list {
	display: flex;
	justify-content: center;
    align-items: center;
}
.copy {
	display: flex;
	justify-content: center;
    align-items: center;
	height: 50px;
	background: linear-gradient(0deg, rgba(152, 83, 238, 1) 0%,rgba(0, 149, 255, 1) 100%);
}
.copy_inner{
	color: white;
}
/* _________________________________________________________________________ sp用*/
@media screen and (max-width: 950px) {
	.sec_inner {
    display: flex;
    text-align: center;
    margin: 0 auto;
    max-width: 900px;
    padding-left: 20px;
    padding-right: 20px;
    justify-content: center;
    align-items: center;
}
	
/* ------------------------------------------imedyでできること-midle */
	ul.can_list {
		display: flex;
		flex-wrap: wrap;
		margin-top: 20px;
	}
	ul.can_list .can_list_item {
		position: relative;
		margin: 20px 20px 0 0;
		width: calc(47% - 3px);
	}
	ul.can_list .can_list_item:nth-child(3n) {
		margin-right: 20px;
	}

	ul.can_list .can_list_item .link{
		display: block;
		position: relative;
		height: 100%;
		border-radius: 12px;
		box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 6px 10px -2px rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.2);
		text-decoration: none;
		text-align: left;
		overflow: hidden;
	}
	.can_list .can_list_item .title-set {
		position: relative;
		z-index: 2;
		text-align: left;
		padding: 32px;
		line-height: 1.4em;
	}
/* ------------------------------------------私たちの想い-midle */
	.left_box_heart {
		position: relative;
		flex: 0 0 200px;
		text-align: left;
		padding: 20px;
		margin-left: 0px;
		display: flex;
        justify-content: center;
        align-items: center;
	}
	.main_img {
		width: 100%;
	}
	.right_box_heart {
		flex: 0 0 400px;
		text-align: left;
		margin-top: 50px;
	}
	.btn_oval_blue {
    text-align: left;
    margin-left: 200px;
}
/* ------------------------------------------セキュリティー-midle */
	.security_title p{
		margin-top: 0;
	}
	.security_title p {
		color: #0060fb;
		margin-top: 0px;
	}
	.box2_01 {
        width: 100%;
    }
	.box4_child_right_con_inner {
    	width: 150px;
    	height: 150px;
	}
	.box4_child_right_con_img {
    	width: 110px;
	}
	.box4_child_right_con_title {
    	font-size: 12pt;
	}
	.box4_left_con_honbun br{
		display: none;
	}

/* ______________________________料金 */
	.sec_fee {
        padding: 20px;
    }
	.fee_child_box {
		font-size: 16pt;
	}
	ul.fee_list li.fee_list_con {
    	font-size: 14pt;
	}
	.btn-submit {
		padding: 15px 20px;
		font-size: 12pt;
	}
	 .link_box.pink, .link_box.blue {
        width: 80%;
        min-width: 200px;
		 margin-bottom: 30px;
		 max-width: 350px;
    }
	.plus p {
    margin: 15px 0;
	}
	.fee_child_btn {
    padding: 39px 50px;
	}
	.fee_child_box {
    letter-spacing: 2pt;
    font-weight: bold;
    margin: 20px 0 0 0;
	}
	ul.fee_list li.fee_list_con {
    padding-left: 31px;
    font-size: 12pt;
    margin-bottom: 22px;
    margin-top: 10px;
	}
}
@media screen and (max-width: 768px) {
	.sec_set {
    width: 100%;
    text-align: center;
	}
    .sec_inner_co {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin: 0 auto;
        padding-left: 30px;
        padding-right: 30px;
        justify-content: center;
        align-items: center;
    }
	.sec_fee .sec_inner_co{
		width: 90%;
	}
	.left_box {
		position: static;
        flex: none;
        text-align: center;
        padding: 0px;
        margin-left: 0px;
    }
/* ------------------------------------------menu-sp */
	.btn_oval_blue_nav a,.btn_oval_pink_nav a  {
		min-width: 185px;
		height: 50px;
	}
/* ------------------------------------------メインイメージ-sp */
	.right_box_heart {
		flex: none;
		margin-bottom: 30px;
	}
	.left_box_heart {
		flex: none;
	}
	.sec_mainimg .sec_inner {
		position: static;
    	top: 0;
    	left: 0;
    	transform: none;
	}
	.left_box_coment p{
		margin-top: 10px;
	}
	.main_logoimg {
		width: 60%;
		margin: 0 auto;
		text-align: center;
	}
	.main_img {
		width: 60%;
		margin: 0 auto;
		text-align: center;
	}
	.sec_mainimg {
		padding-top: 38%;
	}
	.sec_canlist .sec_contents{
		width: 100%;
	}
	.font_bold br {
		display: block
	}
/* ------------------------------------------imedyでできること-sp */
ul.can_list {
	display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}
ul.can_list .can_list_item {
	position: relative;
    margin: 20px 20px 0 0;
     width: calc(49% - 8px);
}
ul.can_list .can_list_item:nth-child(2n) {
	margin-right: 0;
}
ul.can_list .can_list_item .link{
	display: block;
	position: relative;
	height: 100%;
	border-radius: 5px;
 	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 6px 10px -2px rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.2);
 	text-decoration: none;
 	text-align: left;
 	overflow: hidden;
}
.can_list_item a{
	color: #0060fb;
}
.can_list li.can_list_item .title-set {
	display: flex;
    align-items: flex-start;
    height: 120px;
    padding: 16px 16px;
	line-height: 16pt;
	z-index: 2;
	font-size: 12pt;
}

.can-img {
	position: absolute;
	bottom: 0px;
	right: 10%;
    width: 130px;
}
.h3 p{
	background: rgba(255, 255, 255, 0.85);
}
	.box3_inner_con {
    height: 70px;
	}
/* ------------------------------------------リンク-sp */
	.artiacl_btn_box {
	width: 280px;
	height:90px;
	}

/* ------------------------------------------imedyの特徴-sp */
	.box3_child {
		width: 100%;
		margin-bottom: 30px;
	}
/* ------------------------------------------セキュリティ-sp */
	.box2_inner {
		text-align: center;
	}
	.box4_child {
		justify-content: center;
        align-items: center;
	}
	.box4_inner {
	padding: 0 0px;
	}
	.box4_left {
		margin-right: 0px;
		justify-content: center;
        align-items: center;
	}
	.box4_left_con_honbun {
		text-align: center;
	}
	.box4_left_con_honbun.migi {
		text-align: center;
	}
	.box4_btn {
		display: inline-block;
		margin:10px 0;
	}
	.s_1 {flex-direction: column-reverse;}
	.s_2 {flex-direction: column-reverse;}
	.s_3 {flex-direction: column;}
	.s_4 {flex-direction: column;}
	.box4_child_left_con {
	}
	.box4_child_right_con_title {
		vertical-align: top;
	}
	.box4_left_con_honbun,.box4_left_con_honbun.migi{
		text-align: left;
        font-size: 10pt;
		line-height: 15pt;
	}
	@media screen and (max-width: 630px) {
		.box4_left {
			margin-left: 0%;
		}
		.box4_left_con_honbun,.box4_left_con_honbun.migi{
		text-align: center;
	}
	}

/*_______________________________________________________リンク-sp */
	.tag_day{
		flex-direction: row;
		margin-bottom: 10px;
    }
	.link_box_title {
		font-size: 18pt;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.link_box_tag {
	}
/*_______________________________________________________ダウンロード-sp */
	section.sec_dwn .fl {
		display: flex;
		flex-direction: row;
	}
	section.sec_dwn .sec_contents {
    width: 100%;
	}
	.dwn_inner {
    	background-color: white;
    	border-radius: 10px;
    	width: 100%;
    	padding: 30px 0;
	}
	.dwn_top {
    	margin: 10px;
		flex: 1;
	}
	.dwn_bottom {
    	margin: 10px;
		flex: 1;
	}
	.dwn_title {
    padding: 26px;
    line-height: 24px;
	}
	.btn_sq_blue span {
    font-size: 8pt;
    margin: 5px 0 0 0 ;
    vertical-align: middle;
    display: block;
	}
	.sec_fee {
	padding: 110px 40px;
	}
	.pnf img {
		width: 100%;
		max-width: 150px;
		min-width: 80px;
	}
	.btn_sq_blue a {
		width: 80%;
		height: 50px;
	}
/*_______________________________________________________footer-sp */
	.fot_left img {
	    width: 100%;
	}
	.fot_left{
		width: 50%;
		margin-bottom: 20px;
	}
	.fot_right {
    margin: 0 5px;
	}
	ul.fot_menu li.fot_menu_li {
    padding-left: 12px;
    padding-right: 6px;
    font-size: 9pt;
    margin-bottom: 25px;
    text-align: left;
	}
	.fotter_nav_inner {
		text-align: center;
		margin: 0 auto;
		padding: 10px 0 20px 0;
		justify-content: center;
		align-items: center;
	}
	.tel_contact {
		padding: 10px 20px;
	}
	.icon{
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.tel {
		display: block;
	}
	.tel_com {
		font-size: 10pt;
	}
	.tel_time br{
		display: none;
	}
	.tel_no {
		font-size: 20pt;
		font-weight: bold;
		margin: 5pt 0;
	}
	p.tel_time {
		font-size: 10pt;
		color: #4c4c4c;
		font-weight: bold;
	}
	.fotter_info_inner {
		display: flex;
		flex-direction: column;
		padding-left: 10px;
		padding-right: 10px;
		justify-content: center;
		align-items: center;
	}
	.fot_box_4 {
		flex-direction: row;
		margin: 0 0 10px 0;
	}
	.fot_icon img.iso {
		width: 55px;
	}
	.fot_icon img .isms {
		width: 40px;
	}
	.fot_box_5 {
		margin-bottom: 20px;
	}
	.fot_box_6 {
		margin: 0 0 20px;
	}
	.inc_name {
    font-size: 14pt;
	}
	.inc_info p{
    font-size: 10pt;
	}
	.last_list {
    font-size: 8pt;
	}
	.fotter_info {
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
	}
	.imedy_inc {
    width: 60%;
    margin: 0 auto;
	}
	 .fotter_info_inner {
		display: flex;
		flex-direction: column;
		padding-left: 0px;
		padding-right: 0px; 
		justify-content: center;
		align-items: center;
    }
}
@media screen and (max-width: 430px) {
/* ________________________________________全体 */
	p.main_title {
		font-size: 16pt;
		margin-bottom: 20px;
		font-weight: 800;
		font-style: normal;
	}
	.font_bold {
		font-size: 14pt;
		font-weight: 600;
		letter-spacing: 1.2pt;
		line-height: normal;
	}
	body.home .sec_set {
		width: 100%;
		text-align: center;
		padding: 60px 0 60px 0;
	}
	.sec_inner_co {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin: 0 auto;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 30px;
        justify-content: center;
        align-items: center;
    }
	.sec_inner {
        display: flex;
        text-align: center;
        margin: 0 auto;
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
        justify-content: center;
        align-items: center;
    }
/* ______________________________私たちの想い */
	.btn_oval_blue {
		display: flex;
        justify-content: center;
        align-items: center;
		margin: 30px 0 0;
		padding: 0;
	}
	.main_concept p {
    margin-top: 15px;
	}
/* ______________________________imedyの特徴 */	
	.box3 {
		padding: 0px;
	}
/* ______________________________セキュリティ */	
	.box2_02 {
		width: 100%;
	}
	.box4_inner {
    margin: 50px 0 0 0;
	}
	.sec_link .sec_contents {
    	margin: 0;
	}
}

/* ____________________________________________________________slide */	
.loop-splide {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.loop-splide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* スライド間のギャップを設定 */
.splide__slide {
    margin-right: 30px;
}
.b_img {
}
.b_img img{
	border-radius: 10px;
}
.b_name p{
	font-size: 12pt;
}
.b_name {
	margin: 16px 0;
}
ul .b_tag_list,ul .cap{
	display: flex;
	font-size: 6pt;
		justify-content: center;
        align-items: center;
}
.splide__arrow {
    background: rgba(255, 106, 183, 1);
}
.splide__arrow svg {
    fill: white;
}
.splide__slide p{
	color: #4c4c4c;
}
.b_tag li{
	background-color: #0060fb;
	margin: 10px 3px 0 0;
	border-radius: 8px;
}
.b_tag li p{
	color: white;
	margin: 3px;
	justify-content: center;
        align-items: center;
}
.b_inner {
	text-align: center;
	margin: 0 auto;
}

.splide__arrow svg {
	fill: #fff !important;
}
.splide__arrow {
	background: #fa6bc1 !important;}
.splide__arrow--next {
    right: 2em !important;
}
.splide__arrow--prev {
    left: 2em !important;
}
#link01,#link02,#link03,#link04 {
	margin-top: 80px;
}
.btn_oval_blue_sl {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 90px;
}
.btn_oval_blue_sl a {
	position: relative;
	z-index: 0;
	color: #fff;
	width: 170px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	text-decoration: none;
	border-radius: 30px;
	overflow: hidden;
	transition: 0.5s;
}
.btn_oval_blue_sl a:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	left: 0;
	transition: 0.5s;
	background: rgb(0, 119, 255);
	background: linear-gradient(0deg, rgba(152, 83, 238, 1) 0%,rgba(0, 149, 255, 1) 100%);
	}

.btn_oval_blue_sl a:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -2;
	left: 0;
	background: rgb(255, 0, 0);
	background: linear-gradient(0deg, rgba(255, 92, 230, 1) 0%, rgba(255, 106, 183, 1) 100%);
}

	.btn_oval_blue_sl a:hover:before {
		opacity: 0;
	}
@media screen and (max-width: 900px) {
	#link01,#link02,#link03,#link04 {
	margin-top: 20px;
	}
}
@media screen and (max-width: 430px) {
	section.sec_jirei {
	}
	section.sec_jirei .slideinner {
		padding: 0;
		margin-bottom: 30px;
	}
	#splide.splide__slide img {
		width: 80%;
		margin: 0 auto;
	}
	#splide.splide__arrow--next {
		top: 38% !important;
		height: 3em !important;
		width: 3em !important;
	}
	#splide.splide__arrow--prev {
		top: 38% !important;
		height: 3em !important;
		width: 3em !important;
	}
}
/* ____________________________________________________________slide */	
#splide .loop-splide {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#splide .loop-splide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* スライド間のギャップを設定 */
#splide .splide__slide {
    margin-right: 30px;
}
#splide .b_img {
}
#splide .b_img img{
	border-radius: 10px;
}
#splide .b_name p{
	font-size: 12pt;
}
#splide .b_name {
	margin: 16px 0;
}
#splide ul .b_tag_list,ul .cap{
	display: flex;
	font-size: 6pt;
		justify-content: center;
        align-items: center;
}
#splide .splide__arrow {
    background: rgba(255, 106, 183, 1);
}
#splide .splide__arrow svg {
    fill: white;
}
#splide .splide__slide p{
	color: #4c4c4c;
}
#splide .b_tag li{
	background-color: #0060fb;
	margin: 10px 3px 0 0;
	border-radius: 8px;
}
#splide .b_tag li p{
	color: white;
	margin: 3px;
	justify-content: center;
        align-items: center;
}
#splide .b_inner {
	text-align: center;
	margin: 0 auto;
}

#splide .splide__arrow svg {
	fill: #fff !important;
}
#splide .splide__arrow {
	background: #fa6bc1 !important;}
#splide .splide__arrow--next {
    right: 2em !important;
}
#splide .splide__arrow--prev {
    left: 2em !important;
}

#slider2 .splide__arrow {
	background:white !important;
}

/*—————— top　ボタン——————*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 77%;
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0s linear 0.5s; /* 消える時だけ遅延 */
}

#page-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0s;
}

#page-top a {
  background: rgba(255, 255, 255, 1);
  text-decoration: none;
  color: #fff;
  width: 70px;
  padding: 12px 0;
  text-align: center;
  display: block;
  border-radius: 90%;
}
#page-top a::before {
  content: "";
  position: absolute;
  inset: -5px;               /* ← 縁の太さ */
  border-radius: inherit;
  background: linear-gradient(
    140deg,
    rgba(255, 106, 183, 1),
    rgba(152, 83, 238, 1),
    rgba(0, 149, 255, 1)
  );
  z-index: -1;
}
#page-top a:hover {
  text-decoration: none;
  background: #999;
}

#page-top img {
  width: 45px;
}
@media screen and (max-width: 430px) {
	#page-top a {
		width: 60px;
		padding: 12px 0;
	}
	#page-top img {
		width: 35px;
	}
	
}
section.sup {
	line-height: normal;
}
.box3_inner_con_mini {
	font-size: 10pt;
}

#splide-banner .artiacl_btn_box {
    width: 94%;
	height: calc(10vw * 0.85);
	max-height: 100px;
	
}
/* ボタンの見た目 */
#splide-banner .splide__toggle{
	width: 30px;
	height: 30px;
	border-radius: 999px;
	border: none;
	color: white;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: rgba(255, 106, 183, 0.6);
}
@media screen and (max-width:900px) {
	#splide-banner .artiacl_btn_box {
		height: 100px;
	}
	#splide-banner .splide__arrow--next {
		top: 40% !important;
	}
	#splide-banner .splide__arrow--prev {
		top: 40% !important;
	}
}
@media screen and (max-width: 480px) {
	#splide-banner .artiacl_btn_box {
		height: 100px;
	}
	#splide-banner .slide-grid {
		width: 80%;
		margin: 0 auto;
	}
	#splide-banner .splide__arrow--next {
		top: 40% !important;
		height: 2em !important;
		width: 2em !important;
	}
	#splide-banner .splide__arrow--prev {
		top: 40% !important;
		height: 2em !important;
		width: 2em !important;
	}
	#splide-banner .splide__slide img {
		width: 40%;
		margin: 0;
	}
}

/* 既存の中身（Play/Pause文字やSVGなど）を隠す */
#splide-banner .splide__toggle__play,
#splide-banner .splide__toggle__pause{
	font-size: 0;        /* 文字を消す */
	line-height: 0;
}

/* ▶（再生） */
#splide-banner .splide__toggle__play::before{
	content: "▶";
	font-size: 14px;
	line-height: 1;
	font-weight: normal;
}

/* ⏸（一時停止） */
#splide-banner .splide__toggle__pause::before{
	content: "⏸";
	font-size: 16px;
	line-height: 1;
	font-weight: normal;
}


#splide-banner .splide__pagination__page.is-active {
	background: pink;
}

/* スライダーを基準にする */
#splide-banner {
  position: relative;
}

/* 矢印全体 */
#splide-banner .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: rgba(0,0,0,0.4);
  border-radius: 999px;
}

/* 左右の位置 */
#splide-banner .splide__arrow--prev {
  left: 12px;
}

#splide-banner .splide__arrow--next {
  right: 12px;
}
